]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/cp/pt.c
thunk2.C: Add return 0.
[thirdparty/gcc.git] / gcc / cp / pt.c
CommitLineData
8d08fdba 1/* Handle parameterized types (templates) for GNU C++.
06ceef4e
RK
2 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
3 Free Software Foundation, Inc.
8d08fdba 4 Written by Ken Raeburn (raeburn@cygnus.com) while at Watchmaker Computing.
fc378698 5 Rewritten by Jason Merrill (jason@cygnus.com).
8d08fdba
MS
6
7This file is part of GNU CC.
8
9GNU CC is free software; you can redistribute it and/or modify
10it under the terms of the GNU General Public License as published by
11the Free Software Foundation; either version 2, or (at your option)
12any later version.
13
14GNU CC is distributed in the hope that it will be useful,
15but WITHOUT ANY WARRANTY; without even the implied warranty of
16MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17GNU General Public License for more details.
18
19You should have received a copy of the GNU General Public License
20along with GNU CC; see the file COPYING. If not, write to
e9fa0c7c
RK
21the Free Software Foundation, 59 Temple Place - Suite 330,
22Boston, MA 02111-1307, USA. */
8d08fdba
MS
23
24/* Known bugs or deficiencies include:
e92cc029 25
e92cc029
MS
26 all methods must be provided in header files; can't use a source
27 file that contains only the method templates and "just win". */
8d08fdba
MS
28
29#include "config.h"
8d052bc7 30#include "system.h"
8d08fdba
MS
31#include "obstack.h"
32
33#include "tree.h"
34#include "flags.h"
35#include "cp-tree.h"
36#include "decl.h"
37#include "parse.h"
f0e01782 38#include "lex.h"
e8abc66f 39#include "output.h"
a9aedbc2 40#include "defaults.h"
49c249e1 41#include "except.h"
54f92bfb 42#include "toplev.h"
3dcaad8b 43#include "rtl.h"
091f9839 44#include "defaults.h"
9cd64686 45#include "ggc.h"
6dfbb909 46#include "hashtab.h"
297a5329 47#include "timevar.h"
49c249e1 48
050367a3
MM
49/* The type of functions taking a tree, and some additional data, and
50 returning an int. */
158991b7 51typedef int (*tree_fn_t) PARAMS ((tree, void*));
050367a3 52
8d08fdba 53extern struct obstack permanent_obstack;
8d08fdba 54
0aafb128
MM
55/* The PENDING_TEMPLATES is a TREE_LIST of templates whose
56 instantiations have been deferred, either because their definitions
57 were not yet available, or because we were putting off doing the
58 work. The TREE_PURPOSE of each entry is a SRCLOC indicating where
59 the instantiate request occurred; the TREE_VALUE is a either a DECL
60 (for a function or static data member), or a TYPE (for a class)
61 indicating what we are hoping to instantiate. */
62static tree pending_templates;
5566b478
MS
63static tree *template_tail = &pending_templates;
64
0aafb128 65static tree maybe_templates;
73aad9b9
JM
66static tree *maybe_template_tail = &maybe_templates;
67
67ffc812 68int processing_template_parmlist;
386b8a85
JM
69static int template_header_count;
70
75650646 71static tree saved_trees;
3dcaad8b
MM
72static varray_type inline_parm_levels;
73static size_t inline_parm_levels_used;
75650646 74
3ae18eaf
JM
75tree current_tinst_level;
76
6dfbb909
MM
77/* A map from local variable declarations in the body of the template
78 presently being instantiated to the corresponding instantiated
79 local variables. */
80static htab_t local_specializations;
81
8d08fdba
MS
82#define obstack_chunk_alloc xmalloc
83#define obstack_chunk_free free
84
830bfa74
MM
85#define UNIFY_ALLOW_NONE 0
86#define UNIFY_ALLOW_MORE_CV_QUAL 1
87#define UNIFY_ALLOW_LESS_CV_QUAL 2
88#define UNIFY_ALLOW_DERIVED 4
161c12b0 89#define UNIFY_ALLOW_INTEGER 8
830bfa74 90
4393e105
MM
91#define GTB_VIA_VIRTUAL 1 /* The base class we are examining is
92 virtual, or a base class of a virtual
93 base. */
94#define GTB_IGNORE_TYPE 2 /* We don't need to try to unify the current
95 type with the desired type. */
96
158991b7 97static int resolve_overloaded_unification PARAMS ((tree, tree, tree, tree,
4393e105 98 unification_kind_t, int));
158991b7 99static int try_one_overload PARAMS ((tree, tree, tree, tree, tree,
4393e105 100 unification_kind_t, int));
158991b7
KG
101static int unify PARAMS ((tree, tree, tree, tree, int));
102static void add_pending_template PARAMS ((tree));
103static int push_tinst_level PARAMS ((tree));
3ae18eaf 104static void reopen_tinst_level PARAMS ((tree));
158991b7
KG
105static tree classtype_mangled_name PARAMS ((tree));
106static char *mangle_class_name_for_template PARAMS ((char *, tree, tree));
fd74ca0b 107static tree tsubst_initializer_list PARAMS ((tree, tree));
158991b7
KG
108static int list_eq PARAMS ((tree, tree));
109static tree get_class_bindings PARAMS ((tree, tree, tree));
110static tree coerce_template_parms PARAMS ((tree, tree, tree, int, int));
111static void tsubst_enum PARAMS ((tree, tree, tree));
112static tree add_to_template_args PARAMS ((tree, tree));
113static tree add_outermost_template_args PARAMS ((tree, tree));
114static void maybe_adjust_types_for_deduction PARAMS ((unification_kind_t, tree*,
830bfa74 115 tree*));
158991b7 116static int type_unification_real PARAMS ((tree, tree, tree, tree,
4393e105 117 int, unification_kind_t, int));
158991b7
KG
118static void note_template_header PARAMS ((int));
119static tree maybe_fold_nontype_arg PARAMS ((tree));
120static tree convert_nontype_argument PARAMS ((tree, tree));
121static tree convert_template_argument PARAMS ((tree, tree, tree, int,
8b5b8b7c 122 int , tree));
158991b7
KG
123static tree get_bindings_overload PARAMS ((tree, tree, tree));
124static int for_each_template_parm PARAMS ((tree, tree_fn_t, void*));
125static tree build_template_parm_index PARAMS ((int, int, int, tree, tree));
126static int inline_needs_template_parms PARAMS ((tree));
127static void push_inline_template_parms_recursive PARAMS ((tree, int));
128static tree retrieve_specialization PARAMS ((tree, tree));
6dfbb909 129static tree retrieve_local_specialization PARAMS ((tree));
158991b7 130static tree register_specialization PARAMS ((tree, tree, tree));
6dfbb909 131static tree register_local_specialization PARAMS ((tree, tree));
158991b7
KG
132static int unregister_specialization PARAMS ((tree, tree));
133static tree reduce_template_parm_level PARAMS ((tree, tree, int));
134static tree build_template_decl PARAMS ((tree, tree));
135static int mark_template_parm PARAMS ((tree, void *));
136static tree tsubst_friend_function PARAMS ((tree, tree));
137static tree tsubst_friend_class PARAMS ((tree, tree));
138static tree get_bindings_real PARAMS ((tree, tree, tree, int));
139static int template_decl_level PARAMS ((tree));
140static tree maybe_get_template_decl_from_type_decl PARAMS ((tree));
141static int check_cv_quals_for_unify PARAMS ((int, tree, tree));
142static tree tsubst_template_arg_vector PARAMS ((tree, tree, int));
143static tree tsubst_template_parms PARAMS ((tree, tree, int));
144static void regenerate_decl_from_template PARAMS ((tree, tree));
145static tree most_specialized PARAMS ((tree, tree, tree));
146static tree most_specialized_class PARAMS ((tree, tree));
669ec2b4 147static void set_mangled_name_for_template_decl PARAMS ((tree));
158991b7
KG
148static int template_class_depth_real PARAMS ((tree, int));
149static tree tsubst_aggr_type PARAMS ((tree, tree, int, tree, int));
150static tree tsubst_decl PARAMS ((tree, tree, tree, tree));
151static tree tsubst_arg_types PARAMS ((tree, tree, int, tree));
152static tree tsubst_function_type PARAMS ((tree, tree, int, tree));
153static void check_specialization_scope PARAMS ((void));
154static tree process_partial_specialization PARAMS ((tree));
155static void set_current_access_from_decl PARAMS ((tree));
156static void check_default_tmpl_args PARAMS ((tree, tree, int, int));
157static tree tsubst_call_declarator_parms PARAMS ((tree, tree, int, tree));
158static tree get_template_base_recursive PARAMS ((tree, tree,
4393e105 159 tree, tree, tree, int));
158991b7
KG
160static tree get_template_base PARAMS ((tree, tree, tree, tree));
161static tree try_class_unification PARAMS ((tree, tree, tree, tree));
162static int coerce_template_template_parms PARAMS ((tree, tree, int,
4393e105 163 tree, tree));
158991b7
KG
164static tree determine_specialization PARAMS ((tree, tree, tree *, int));
165static int template_args_equal PARAMS ((tree, tree));
166static void print_template_context PARAMS ((int));
167static void tsubst_default_arguments PARAMS ((tree));
168static tree for_each_template_parm_r PARAMS ((tree *, int *, void *));
db9b2174 169static tree instantiate_clone PARAMS ((tree, tree));
36a117a5 170
9cd64686
MM
171/* Called once to initialize pt.c. */
172
173void
174init_pt ()
175{
176 ggc_add_tree_root (&pending_templates, 1);
177 ggc_add_tree_root (&maybe_templates, 1);
178 ggc_add_tree_root (&saved_trees, 1);
3ae18eaf 179 ggc_add_tree_root (&current_tinst_level, 1);
9cd64686
MM
180}
181
e1467ff2
MM
182/* Do any processing required when DECL (a member template declaration
183 using TEMPLATE_PARAMETERS as its innermost parameter list) is
184 finished. Returns the TEMPLATE_DECL corresponding to DECL, unless
185 it is a specialization, in which case the DECL itself is returned. */
186
187tree
61a127b3 188finish_member_template_decl (decl)
e1467ff2
MM
189 tree decl;
190{
93cdc044
JM
191 if (decl == NULL_TREE || decl == void_type_node)
192 return NULL_TREE;
3ddfb0e6
MM
193 else if (decl == error_mark_node)
194 /* By returning NULL_TREE, the parser will just ignore this
195 declaration. We have already issued the error. */
196 return NULL_TREE;
93cdc044
JM
197 else if (TREE_CODE (decl) == TREE_LIST)
198 {
5f311aec 199 /* Assume that the class is the only declspec. */
93cdc044 200 decl = TREE_VALUE (decl);
8d019cef 201 if (IS_AGGR_TYPE (decl) && CLASSTYPE_TEMPLATE_INFO (decl)
370af2d5 202 && ! CLASSTYPE_TEMPLATE_SPECIALIZATION (decl))
93cdc044
JM
203 {
204 tree tmpl = CLASSTYPE_TI_TEMPLATE (decl);
205 check_member_template (tmpl);
206 return tmpl;
207 }
8d019cef 208 return NULL_TREE;
93cdc044 209 }
07c88314
MM
210 else if (TREE_CODE (decl) == FIELD_DECL)
211 cp_error ("data member `%D' cannot be a member template", decl);
a1da6cba 212 else if (DECL_TEMPLATE_INFO (decl))
e1467ff2 213 {
a1da6cba
MM
214 if (!DECL_TEMPLATE_SPECIALIZATION (decl))
215 {
216 check_member_template (DECL_TI_TEMPLATE (decl));
217 return DECL_TI_TEMPLATE (decl);
218 }
219 else
220 return decl;
221 }
222 else
8251199e 223 cp_error ("invalid member template declaration `%D'", decl);
e1467ff2 224
a1da6cba 225 return error_mark_node;
f84b4be9 226}
e1467ff2 227
f84b4be9
JM
228/* Returns the template nesting level of the indicated class TYPE.
229
230 For example, in:
231 template <class T>
232 struct A
233 {
234 template <class U>
235 struct B {};
236 };
237
39c01e4c
MM
238 A<T>::B<U> has depth two, while A<T> has depth one.
239 Both A<T>::B<int> and A<int>::B<U> have depth one, if
240 COUNT_SPECIALIZATIONS is 0 or if they are instantiations, not
241 specializations.
242
243 This function is guaranteed to return 0 if passed NULL_TREE so
244 that, for example, `template_class_depth (current_class_type)' is
245 always safe. */
f84b4be9 246
e9659ab0 247static int
39c01e4c 248template_class_depth_real (type, count_specializations)
f84b4be9 249 tree type;
39c01e4c 250 int count_specializations;
f84b4be9 251{
93cdc044 252 int depth;
f84b4be9 253
2c73f9f5 254 for (depth = 0;
ed44da02
MM
255 type && TREE_CODE (type) != NAMESPACE_DECL;
256 type = (TREE_CODE (type) == FUNCTION_DECL)
4f1c5b7d 257 ? CP_DECL_CONTEXT (type) : TYPE_CONTEXT (type))
ed44da02
MM
258 {
259 if (TREE_CODE (type) != FUNCTION_DECL)
260 {
261 if (CLASSTYPE_TEMPLATE_INFO (type)
262 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type))
263 && ((count_specializations
370af2d5 264 && CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
ed44da02
MM
265 || uses_template_parms (CLASSTYPE_TI_ARGS (type))))
266 ++depth;
267 }
268 else
269 {
270 if (DECL_TEMPLATE_INFO (type)
271 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (type))
272 && ((count_specializations
273 && DECL_TEMPLATE_SPECIALIZATION (type))
274 || uses_template_parms (DECL_TI_ARGS (type))))
275 ++depth;
276 }
277 }
f84b4be9
JM
278
279 return depth;
e1467ff2 280}
98c1c668 281
39c01e4c
MM
282/* Returns the template nesting level of the indicated class TYPE.
283 Like template_class_depth_real, but instantiations do not count in
284 the depth. */
285
286int
287template_class_depth (type)
288 tree type;
289{
290 return template_class_depth_real (type, /*count_specializations=*/0);
291}
292
cae40af6
JM
293/* Returns 1 if processing DECL as part of do_pending_inlines
294 needs us to push template parms. */
295
296static int
297inline_needs_template_parms (decl)
298 tree decl;
299{
300 if (! DECL_TEMPLATE_INFO (decl))
301 return 0;
f84b4be9 302
36a117a5 303 return (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (most_general_template (decl)))
cae40af6
JM
304 > (processing_template_decl + DECL_TEMPLATE_SPECIALIZATION (decl)));
305}
306
307/* Subroutine of maybe_begin_member_template_processing.
308 Push the template parms in PARMS, starting from LEVELS steps into the
309 chain, and ending at the beginning, since template parms are listed
310 innermost first. */
311
312static void
313push_inline_template_parms_recursive (parmlist, levels)
314 tree parmlist;
315 int levels;
316{
317 tree parms = TREE_VALUE (parmlist);
318 int i;
319
320 if (levels > 1)
321 push_inline_template_parms_recursive (TREE_CHAIN (parmlist), levels - 1);
786b5245 322
98c1c668 323 ++processing_template_decl;
cae40af6 324 current_template_parms
98c1c668
JM
325 = tree_cons (build_int_2 (0, processing_template_decl),
326 parms, current_template_parms);
cae40af6
JM
327 TEMPLATE_PARMS_FOR_INLINE (current_template_parms) = 1;
328
786b5245 329 pushlevel (0);
98c1c668
JM
330 for (i = 0; i < TREE_VEC_LENGTH (parms); ++i)
331 {
786b5245 332 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
2f939d94 333 my_friendly_assert (DECL_P (parm), 0);
cae40af6 334
98c1c668
JM
335 switch (TREE_CODE (parm))
336 {
786b5245 337 case TYPE_DECL:
73b0fce8 338 case TEMPLATE_DECL:
98c1c668
JM
339 pushdecl (parm);
340 break;
786b5245
MM
341
342 case PARM_DECL:
343 {
fc03edb3
MM
344 /* Make a CONST_DECL as is done in process_template_parm.
345 It is ugly that we recreate this here; the original
346 version built in process_template_parm is no longer
347 available. */
786b5245
MM
348 tree decl = build_decl (CONST_DECL, DECL_NAME (parm),
349 TREE_TYPE (parm));
c727aa5e 350 DECL_ARTIFICIAL (decl) = 1;
786b5245 351 DECL_INITIAL (decl) = DECL_INITIAL (parm);
cd9f6678 352 SET_DECL_TEMPLATE_PARM_P (decl);
786b5245
MM
353 pushdecl (decl);
354 }
cae40af6 355 break;
786b5245 356
98c1c668
JM
357 default:
358 my_friendly_abort (0);
359 }
360 }
361}
362
cae40af6
JM
363/* Restore the template parameter context for a member template or
364 a friend template defined in a class definition. */
365
366void
367maybe_begin_member_template_processing (decl)
368 tree decl;
369{
370 tree parms;
3dcaad8b 371 int levels = 0;
cae40af6 372
3dcaad8b
MM
373 if (inline_needs_template_parms (decl))
374 {
375 parms = DECL_TEMPLATE_PARMS (most_general_template (decl));
376 levels = TMPL_PARMS_DEPTH (parms) - processing_template_decl;
cae40af6 377
3dcaad8b
MM
378 if (DECL_TEMPLATE_SPECIALIZATION (decl))
379 {
380 --levels;
381 parms = TREE_CHAIN (parms);
382 }
cae40af6 383
3dcaad8b 384 push_inline_template_parms_recursive (parms, levels);
cae40af6
JM
385 }
386
3dcaad8b
MM
387 /* Remember how many levels of template parameters we pushed so that
388 we can pop them later. */
389 if (!inline_parm_levels)
390 VARRAY_INT_INIT (inline_parm_levels, 4, "inline_parm_levels");
391 if (inline_parm_levels_used == inline_parm_levels->num_elements)
392 VARRAY_GROW (inline_parm_levels, 2 * inline_parm_levels_used);
393 VARRAY_INT (inline_parm_levels, inline_parm_levels_used) = levels;
394 ++inline_parm_levels_used;
cae40af6
JM
395}
396
98c1c668
JM
397/* Undo the effects of begin_member_template_processing. */
398
399void
b370501f 400maybe_end_member_template_processing ()
98c1c668 401{
3dcaad8b
MM
402 int i;
403
404 if (!inline_parm_levels_used)
98c1c668
JM
405 return;
406
3dcaad8b
MM
407 --inline_parm_levels_used;
408 for (i = 0;
409 i < VARRAY_INT (inline_parm_levels, inline_parm_levels_used);
410 ++i)
cae40af6
JM
411 {
412 --processing_template_decl;
413 current_template_parms = TREE_CHAIN (current_template_parms);
414 poplevel (0, 0, 0);
415 }
98c1c668
JM
416}
417
cae40af6 418/* Returns non-zero iff T is a member template function. We must be
f84b4be9 419 careful as in
75650646
MM
420
421 template <class T> class C { void f(); }
422
423 Here, f is a template function, and a member, but not a member
424 template. This function does not concern itself with the origin of
425 T, only its present state. So if we have
426
427 template <class T> class C { template <class U> void f(U); }
428
429 then neither C<int>::f<char> nor C<T>::f<double> is considered
f181d4ae
MM
430 to be a member template. But, `template <class U> void
431 C<int>::f(U)' is considered a member template. */
98c1c668 432
cae40af6
JM
433int
434is_member_template (t)
98c1c668
JM
435 tree t;
436{
f181d4ae 437 if (!DECL_FUNCTION_TEMPLATE_P (t))
75650646 438 /* Anything that isn't a function or a template function is
aa5f3bad
MM
439 certainly not a member template. */
440 return 0;
441
cae40af6 442 /* A local class can't have member templates. */
4f1c5b7d 443 if (decl_function_context (t))
cae40af6
JM
444 return 0;
445
f181d4ae 446 return (DECL_FUNCTION_MEMBER_P (DECL_TEMPLATE_RESULT (t))
f84b4be9
JM
447 /* If there are more levels of template parameters than
448 there are template classes surrounding the declaration,
449 then we have a member template. */
f181d4ae 450 && (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (t)) >
4f1c5b7d 451 template_class_depth (DECL_CONTEXT (t))));
f84b4be9 452}
98c1c668 453
ba4f4e5d 454#if 0 /* UNUSED */
2ee4e084
MM
455/* Returns non-zero iff T is a member template class. See
456 is_member_template for a description of what precisely constitutes
457 a member template. */
458
459int
460is_member_template_class (t)
461 tree t;
462{
463 if (!DECL_CLASS_TEMPLATE_P (t))
464 /* Anything that isn't a class template, is certainly not a member
465 template. */
466 return 0;
467
468 if (!DECL_CLASS_SCOPE_P (t))
469 /* Anything whose context isn't a class type is surely not a
470 member template. */
471 return 0;
472
473 /* If there are more levels of template parameters than there are
474 template classes surrounding the declaration, then we have a
475 member template. */
36a117a5 476 return (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (t)) >
2ee4e084
MM
477 template_class_depth (DECL_CONTEXT (t)));
478}
ba4f4e5d 479#endif
2ee4e084 480
36a117a5 481/* Return a new template argument vector which contains all of ARGS,
f9a7ae04 482 but has as its innermost set of arguments the EXTRA_ARGS. */
e6f1275f
JM
483
484static tree
36a117a5
MM
485add_to_template_args (args, extra_args)
486 tree args;
487 tree extra_args;
e6f1275f 488{
36a117a5
MM
489 tree new_args;
490 int extra_depth;
491 int i;
492 int j;
e6f1275f 493
36a117a5 494 extra_depth = TMPL_ARGS_DEPTH (extra_args);
f31c0a32 495 new_args = make_tree_vec (TMPL_ARGS_DEPTH (args) + extra_depth);
e6f1275f 496
36a117a5
MM
497 for (i = 1; i <= TMPL_ARGS_DEPTH (args); ++i)
498 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (args, i));
e6f1275f 499
36a117a5
MM
500 for (j = 1; j <= extra_depth; ++j, ++i)
501 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (extra_args, j));
502
e6f1275f
JM
503 return new_args;
504}
505
36a117a5
MM
506/* Like add_to_template_args, but only the outermost ARGS are added to
507 the EXTRA_ARGS. In particular, all but TMPL_ARGS_DEPTH
508 (EXTRA_ARGS) levels are added. This function is used to combine
509 the template arguments from a partial instantiation with the
510 template arguments used to attain the full instantiation from the
511 partial instantiation. */
98c1c668 512
4966381a 513static tree
36a117a5 514add_outermost_template_args (args, extra_args)
98c1c668
JM
515 tree args;
516 tree extra_args;
517{
518 tree new_args;
519
e4a84209
MM
520 /* If there are more levels of EXTRA_ARGS than there are ARGS,
521 something very fishy is going on. */
522 my_friendly_assert (TMPL_ARGS_DEPTH (args) >= TMPL_ARGS_DEPTH (extra_args),
523 0);
524
525 /* If *all* the new arguments will be the EXTRA_ARGS, just return
526 them. */
527 if (TMPL_ARGS_DEPTH (args) == TMPL_ARGS_DEPTH (extra_args))
528 return extra_args;
529
36a117a5
MM
530 /* For the moment, we make ARGS look like it contains fewer levels. */
531 TREE_VEC_LENGTH (args) -= TMPL_ARGS_DEPTH (extra_args);
532
533 new_args = add_to_template_args (args, extra_args);
98c1c668 534
36a117a5
MM
535 /* Now, we restore ARGS to its full dimensions. */
536 TREE_VEC_LENGTH (args) += TMPL_ARGS_DEPTH (extra_args);
98c1c668
JM
537
538 return new_args;
539}
5566b478 540
f9a7ae04
MM
541/* Return the N levels of innermost template arguments from the ARGS. */
542
543tree
544get_innermost_template_args (args, n)
545 tree args;
546 int n;
547{
548 tree new_args;
549 int extra_levels;
550 int i;
551
552 my_friendly_assert (n >= 0, 20000603);
553
554 /* If N is 1, just return the innermost set of template arguments. */
555 if (n == 1)
556 return TMPL_ARGS_LEVEL (args, TMPL_ARGS_DEPTH (args));
557
558 /* If we're not removing anything, just return the arguments we were
559 given. */
560 extra_levels = TMPL_ARGS_DEPTH (args) - n;
561 my_friendly_assert (extra_levels >= 0, 20000603);
562 if (extra_levels == 0)
563 return args;
564
565 /* Make a new set of arguments, not containing the outer arguments. */
566 new_args = make_tree_vec (n);
567 for (i = 1; i <= n; ++i)
568 SET_TMPL_ARGS_LEVEL (new_args, i,
569 TMPL_ARGS_LEVEL (args, i + extra_levels));
570
571 return new_args;
572}
573
5566b478
MS
574/* We've got a template header coming up; push to a new level for storing
575 the parms. */
8d08fdba 576
8d08fdba
MS
577void
578begin_template_parm_list ()
579{
6757edfe
MM
580 /* We use a non-tag-transparent scope here, which causes pushtag to
581 put tags in this scope, rather than in the enclosing class or
582 namespace scope. This is the right thing, since we want
583 TEMPLATE_DECLS, and not TYPE_DECLS for template classes. For a
584 global template class, push_template_decl handles putting the
585 TEMPLATE_DECL into top-level scope. For a nested template class,
586 e.g.:
587
588 template <class T> struct S1 {
589 template <class T> struct S2 {};
590 };
591
592 pushtag contains special code to call pushdecl_with_scope on the
593 TEMPLATE_DECL for S2. */
74b846e0 594 begin_scope (sk_template_parms);
5156628f 595 ++processing_template_decl;
67ffc812 596 ++processing_template_parmlist;
386b8a85
JM
597 note_template_header (0);
598}
599
6c30752f
MM
600/* This routine is called when a specialization is declared. If it is
601 illegal to declare a specialization here, an error is reported. */
602
e9659ab0 603static void
6c30752f
MM
604check_specialization_scope ()
605{
606 tree scope = current_scope ();
3ddfb0e6 607
6c30752f
MM
608 /* [temp.expl.spec]
609
610 An explicit specialization shall be declared in the namespace of
611 which the template is a member, or, for member templates, in the
612 namespace of which the enclosing class or enclosing class
613 template is a member. An explicit specialization of a member
614 function, member class or static data member of a class template
615 shall be declared in the namespace of which the class template
616 is a member. */
617 if (scope && TREE_CODE (scope) != NAMESPACE_DECL)
8251199e 618 cp_error ("explicit specialization in non-namespace scope `%D'",
6c30752f 619 scope);
3ddfb0e6 620
6c30752f
MM
621 /* [temp.expl.spec]
622
623 In an explicit specialization declaration for a member of a class
624 template or a member template that appears in namespace scope,
625 the member template and some of its enclosing class templates may
626 remain unspecialized, except that the declaration shall not
627 explicitly specialize a class member template if its enclosing
628 class templates are not explicitly specialized as well. */
629 if (current_template_parms)
fd4de5ff 630 cp_error ("enclosing class templates are not explicitly specialized");
6c30752f
MM
631}
632
386b8a85
JM
633/* We've just seen template <>. */
634
635void
636begin_specialization ()
637{
74b846e0 638 begin_scope (sk_template_spec);
386b8a85 639 note_template_header (1);
6c30752f 640 check_specialization_scope ();
386b8a85
JM
641}
642
386b8a85
JM
643/* Called at then end of processing a declaration preceeded by
644 template<>. */
645
646void
647end_specialization ()
648{
74b846e0 649 finish_scope ();
386b8a85
JM
650 reset_specialization ();
651}
652
386b8a85
JM
653/* Any template <>'s that we have seen thus far are not referring to a
654 function specialization. */
655
656void
657reset_specialization ()
658{
659 processing_specialization = 0;
660 template_header_count = 0;
661}
662
386b8a85
JM
663/* We've just seen a template header. If SPECIALIZATION is non-zero,
664 it was of the form template <>. */
665
4966381a 666static void
386b8a85
JM
667note_template_header (specialization)
668 int specialization;
669{
670 processing_specialization = specialization;
671 template_header_count++;
672}
673
75650646 674/* We're beginning an explicit instantiation. */
386b8a85 675
75650646
MM
676void
677begin_explicit_instantiation ()
386b8a85 678{
75650646
MM
679 ++processing_explicit_instantiation;
680}
386b8a85 681
386b8a85 682
75650646
MM
683void
684end_explicit_instantiation ()
685{
686 my_friendly_assert(processing_explicit_instantiation > 0, 0);
687 --processing_explicit_instantiation;
688}
386b8a85 689
36a117a5
MM
690/* The TYPE is being declared. If it is a template type, that means it
691 is a partial specialization. Do appropriate error-checking. */
692
693void
694maybe_process_partial_specialization (type)
695 tree type;
696{
697 if (IS_AGGR_TYPE (type) && CLASSTYPE_USE_TEMPLATE (type))
698 {
699 if (CLASSTYPE_IMPLICIT_INSTANTIATION (type)
d0f062fb 700 && !COMPLETE_TYPE_P (type))
36a117a5 701 {
700466c2
JM
702 if (current_namespace
703 != decl_namespace_context (CLASSTYPE_TI_TEMPLATE (type)))
704 {
705 cp_pedwarn ("specializing `%#T' in different namespace", type);
706 cp_pedwarn_at (" from definition of `%#D'",
707 CLASSTYPE_TI_TEMPLATE (type));
708 }
370af2d5 709 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
36a117a5
MM
710 if (processing_template_decl)
711 push_template_decl (TYPE_MAIN_DECL (type));
712 }
713 else if (CLASSTYPE_TEMPLATE_INSTANTIATION (type))
8251199e 714 cp_error ("specialization of `%T' after instantiation", type);
36a117a5 715 }
20496fa2
JM
716 else if (processing_specialization)
717 cp_error ("explicit specialization of non-template `%T'", type);
36a117a5
MM
718}
719
75650646
MM
720/* Retrieve the specialization (in the sense of [temp.spec] - a
721 specialization is either an instantiation or an explicit
722 specialization) of TMPL for the given template ARGS. If there is
723 no such specialization, return NULL_TREE. The ARGS are a vector of
724 arguments, or a vector of vectors of arguments, in the case of
725 templates with more than one level of parameters. */
726
727static tree
728retrieve_specialization (tmpl, args)
729 tree tmpl;
730 tree args;
731{
732 tree s;
733
734 my_friendly_assert (TREE_CODE (tmpl) == TEMPLATE_DECL, 0);
735
36a117a5
MM
736 /* There should be as many levels of arguments as there are
737 levels of parameters. */
738 my_friendly_assert (TMPL_ARGS_DEPTH (args)
739 == TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl)),
740 0);
741
75650646
MM
742 for (s = DECL_TEMPLATE_SPECIALIZATIONS (tmpl);
743 s != NULL_TREE;
744 s = TREE_CHAIN (s))
745 if (comp_template_args (TREE_PURPOSE (s), args))
746 return TREE_VALUE (s);
747
748 return NULL_TREE;
386b8a85
JM
749}
750
6dfbb909 751/* Like retrieve_speciailization, but for local declarations. */
9188c363
MM
752
753static tree
6dfbb909 754retrieve_local_specialization (tmpl)
9188c363 755 tree tmpl;
9188c363 756{
6dfbb909 757 return (tree) htab_find (local_specializations, tmpl);
9188c363
MM
758}
759
6757edfe
MM
760/* Returns non-zero iff DECL is a specialization of TMPL. */
761
762int
763is_specialization_of (decl, tmpl)
764 tree decl;
765 tree tmpl;
766{
767 tree t;
768
769 if (TREE_CODE (decl) == FUNCTION_DECL)
770 {
771 for (t = decl;
772 t != NULL_TREE;
773 t = DECL_TEMPLATE_INFO (t) ? DECL_TI_TEMPLATE (t) : NULL_TREE)
774 if (t == tmpl)
775 return 1;
776 }
777 else
778 {
779 my_friendly_assert (TREE_CODE (decl) == TYPE_DECL, 0);
780
781 for (t = TREE_TYPE (decl);
782 t != NULL_TREE;
783 t = CLASSTYPE_USE_TEMPLATE (t)
784 ? TREE_TYPE (CLASSTYPE_TI_TEMPLATE (t)) : NULL_TREE)
9edc3913 785 if (same_type_ignoring_top_level_qualifiers_p (t, TREE_TYPE (tmpl)))
6757edfe
MM
786 return 1;
787 }
386b8a85 788
6757edfe
MM
789 return 0;
790}
75650646
MM
791
792/* Register the specialization SPEC as a specialization of TMPL with
36a117a5
MM
793 the indicated ARGS. Returns SPEC, or an equivalent prior
794 declaration, if available. */
75650646 795
36a117a5 796static tree
75650646
MM
797register_specialization (spec, tmpl, args)
798 tree spec;
799 tree tmpl;
800 tree args;
801{
802 tree s;
803
804 my_friendly_assert (TREE_CODE (tmpl) == TEMPLATE_DECL, 0);
805
36a117a5
MM
806 if (TREE_CODE (spec) == FUNCTION_DECL
807 && uses_template_parms (DECL_TI_ARGS (spec)))
808 /* This is the FUNCTION_DECL for a partial instantiation. Don't
809 register it; we want the corresponding TEMPLATE_DECL instead.
810 We use `uses_template_parms (DECL_TI_ARGS (spec))' rather than
811 the more obvious `uses_template_parms (spec)' to avoid problems
812 with default function arguments. In particular, given
813 something like this:
814
815 template <class T> void f(T t1, T t = T())
816
817 the default argument expression is not substituted for in an
818 instantiation unless and until it is actually needed. */
819 return spec;
75650646 820
36a117a5
MM
821 /* There should be as many levels of arguments as there are
822 levels of parameters. */
823 my_friendly_assert (TMPL_ARGS_DEPTH (args)
824 == TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl)),
825 0);
826
75650646
MM
827 for (s = DECL_TEMPLATE_SPECIALIZATIONS (tmpl);
828 s != NULL_TREE;
829 s = TREE_CHAIN (s))
22e9174f
MM
830 {
831 tree fn = TREE_VALUE (s);
832
833 /* We can sometimes try to re-register a specialization that we've
834 already got. In particular, regenerate_decl_from_template
835 calls duplicate_decls which will update the specialization
836 list. But, we'll still get called again here anyhow. It's
837 more convenient to simply allow this than to try to prevent it. */
838 if (fn == spec)
839 return spec;
840 else if (comp_template_args (TREE_PURPOSE (s), args))
841 {
842 if (DECL_TEMPLATE_SPECIALIZATION (spec))
843 {
844 if (DECL_TEMPLATE_INSTANTIATION (fn))
845 {
846 if (TREE_USED (fn)
847 || DECL_EXPLICIT_INSTANTIATION (fn))
848 {
849 cp_error ("specialization of %D after instantiation",
850 fn);
851 return spec;
852 }
853 else
854 {
855 /* This situation should occur only if the first
856 specialization is an implicit instantiation,
857 the second is an explicit specialization, and
858 the implicit instantiation has not yet been
859 used. That situation can occur if we have
860 implicitly instantiated a member function and
861 then specialized it later.
862
863 We can also wind up here if a friend
864 declaration that looked like an instantiation
865 turns out to be a specialization:
866
867 template <class T> void foo(T);
868 class S { friend void foo<>(int) };
869 template <> void foo(int);
870
871 We transform the existing DECL in place so that
872 any pointers to it become pointers to the
873 updated declaration.
874
875 If there was a definition for the template, but
876 not for the specialization, we want this to
877 look as if there is no definition, and vice
878 versa. */
879 DECL_INITIAL (fn) = NULL_TREE;
880 duplicate_decls (spec, fn);
881
882 return fn;
883 }
884 }
885 else if (DECL_TEMPLATE_SPECIALIZATION (fn))
886 {
887 duplicate_decls (spec, fn);
888 return fn;
889 }
890 }
891 }
75650646
MM
892 }
893
894 DECL_TEMPLATE_SPECIALIZATIONS (tmpl)
e1b3e07d 895 = tree_cons (args, spec, DECL_TEMPLATE_SPECIALIZATIONS (tmpl));
36a117a5
MM
896
897 return spec;
898}
899
900/* Unregister the specialization SPEC as a specialization of TMPL.
901 Returns nonzero if the SPEC was listed as a specialization of
902 TMPL. */
903
904static int
905unregister_specialization (spec, tmpl)
906 tree spec;
907 tree tmpl;
908{
909 tree* s;
910
911 for (s = &DECL_TEMPLATE_SPECIALIZATIONS (tmpl);
912 *s != NULL_TREE;
913 s = &TREE_CHAIN (*s))
914 if (TREE_VALUE (*s) == spec)
915 {
916 *s = TREE_CHAIN (*s);
917 return 1;
918 }
919
920 return 0;
75650646
MM
921}
922
6dfbb909
MM
923/* Like register_specialization, but for local declarations. We are
924 registering SPEC, an instantiation of TMPL. */
9188c363
MM
925
926static tree
6dfbb909 927register_local_specialization (spec, tmpl)
9188c363
MM
928 tree spec;
929 tree tmpl;
9188c363 930{
6dfbb909
MM
931 void **slot;
932
933 slot = htab_find_slot (local_specializations, tmpl, INSERT);
934 *slot = spec;
9188c363
MM
935
936 return spec;
937}
938
e1467ff2
MM
939/* Print the list of candidate FNS in an error message. */
940
104bf76a 941void
e1467ff2
MM
942print_candidates (fns)
943 tree fns;
944{
945 tree fn;
946
d8e178a0 947 const char *str = "candidates are:";
e1467ff2
MM
948
949 for (fn = fns; fn != NULL_TREE; fn = TREE_CHAIN (fn))
950 {
d6479fe7
MM
951 tree f;
952
953 for (f = TREE_VALUE (fn); f; f = OVL_NEXT (f))
954 cp_error_at ("%s %+#D", str, OVL_CURRENT (f));
e1467ff2
MM
955 str = " ";
956 }
957}
958
75650646 959/* Returns the template (one of the functions given by TEMPLATE_ID)
e1467ff2 960 which can be specialized to match the indicated DECL with the
03017874
MM
961 explicit template args given in TEMPLATE_ID. The DECL may be
962 NULL_TREE if none is available. In that case, the functions in
963 TEMPLATE_ID are non-members.
964
965 If NEED_MEMBER_TEMPLATE is non-zero the function is known to be a
966 specialization of a member template.
967
968 The template args (those explicitly specified and those deduced)
969 are output in a newly created vector *TARGS_OUT.
970
971 If it is impossible to determine the result, an error message is
bf8f3f93 972 issued. The error_mark_node is returned to indicate failure. */
75650646 973
e9659ab0 974static tree
e1467ff2 975determine_specialization (template_id, decl, targs_out,
bf8f3f93 976 need_member_template)
386b8a85 977 tree template_id;
e1467ff2 978 tree decl;
386b8a85
JM
979 tree* targs_out;
980 int need_member_template;
386b8a85 981{
03017874
MM
982 tree fns;
983 tree targs;
984 tree explicit_targs;
985 tree candidates = NULL_TREE;
986 tree templates = NULL_TREE;
386b8a85 987
e1467ff2
MM
988 *targs_out = NULL_TREE;
989
f2e48b67
BK
990 if (template_id == error_mark_node)
991 return error_mark_node;
992
993 fns = TREE_OPERAND (template_id, 0);
03017874 994 explicit_targs = TREE_OPERAND (template_id, 1);
f2e48b67 995
27fafc8d
JM
996 if (fns == error_mark_node)
997 return error_mark_node;
998
2c73f9f5 999 /* Check for baselinks. */
91e490ab 1000 if (BASELINK_P (fns))
2c73f9f5 1001 fns = TREE_VALUE (fns);
386b8a85 1002
91e490ab
MM
1003 if (!is_overloaded_fn (fns))
1004 {
9dfce8fd 1005 cp_error ("`%D' is not a function template", fns);
91e490ab
MM
1006 return error_mark_node;
1007 }
1008
2c73f9f5 1009 for (; fns; fns = OVL_NEXT (fns))
386b8a85 1010 {
75650646
MM
1011 tree tmpl;
1012
9dfce8fd 1013 tree fn = OVL_CURRENT (fns);
03017874
MM
1014
1015 if (TREE_CODE (fn) == TEMPLATE_DECL)
1016 /* DECL might be a specialization of FN. */
1017 tmpl = fn;
1018 else if (need_member_template)
1019 /* FN is an ordinary member function, and we need a
1020 specialization of a member template. */
1021 continue;
1022 else if (TREE_CODE (fn) != FUNCTION_DECL)
1023 /* We can get IDENTIFIER_NODEs here in certain erroneous
1024 cases. */
1025 continue;
1026 else if (!DECL_FUNCTION_MEMBER_P (fn))
1027 /* This is just an ordinary non-member function. Nothing can
1028 be a specialization of that. */
1029 continue;
75650646 1030 else
03017874
MM
1031 {
1032 tree decl_arg_types;
386b8a85 1033
03017874
MM
1034 /* This is an ordinary member function. However, since
1035 we're here, we can assume it's enclosing class is a
1036 template class. For example,
1037
1038 template <typename T> struct S { void f(); };
1039 template <> void S<int>::f() {}
1040
1041 Here, S<int>::f is a non-template, but S<int> is a
1042 template class. If FN has the same type as DECL, we
1043 might be in business. */
1044 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
1045 TREE_TYPE (TREE_TYPE (fn))))
1046 /* The return types differ. */
1047 continue;
1048
1049 /* Adjust the type of DECL in case FN is a static member. */
1050 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
1051 if (DECL_STATIC_FUNCTION_P (fn)
1052 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1053 decl_arg_types = TREE_CHAIN (decl_arg_types);
1054
1055 if (compparms (TYPE_ARG_TYPES (TREE_TYPE (fn)),
1056 decl_arg_types))
1057 /* They match! */
1058 candidates = tree_cons (NULL_TREE, fn, candidates);
1059
1060 continue;
1061 }
386b8a85 1062
bf8f3f93
MM
1063 /* See whether this function might be a specialization of this
1064 template. */
1065 targs = get_bindings (tmpl, decl, explicit_targs);
03017874
MM
1066
1067 if (!targs)
bf8f3f93 1068 /* We cannot deduce template arguments that when used to
03017874
MM
1069 specialize TMPL will produce DECL. */
1070 continue;
1071
1072 /* Save this template, and the arguments deduced. */
e1b3e07d 1073 templates = tree_cons (targs, tmpl, templates);
386b8a85 1074 }
03017874 1075
bf8f3f93 1076 if (templates && TREE_CHAIN (templates))
386b8a85 1077 {
03017874
MM
1078 /* We have:
1079
1080 [temp.expl.spec]
1081
1082 It is possible for a specialization with a given function
1083 signature to be instantiated from more than one function
1084 template. In such cases, explicit specification of the
1085 template arguments must be used to uniquely identify the
1086 function template specialization being specialized.
1087
1088 Note that here, there's no suggestion that we're supposed to
1089 determine which of the candidate templates is most
1090 specialized. However, we, also have:
1091
1092 [temp.func.order]
1093
1094 Partial ordering of overloaded function template
1095 declarations is used in the following contexts to select
1096 the function template to which a function template
1097 specialization refers:
1098
1099 -- when an explicit specialization refers to a function
1100 template.
1101
1102 So, we do use the partial ordering rules, at least for now.
1103 This extension can only serve to make illegal programs legal,
1104 so it's safe. And, there is strong anecdotal evidence that
1105 the committee intended the partial ordering rules to apply;
1106 the EDG front-end has that behavior, and John Spicer claims
1107 that the committee simply forgot to delete the wording in
1108 [temp.expl.spec]. */
1109 tree tmpl = most_specialized (templates, decl, explicit_targs);
1110 if (tmpl && tmpl != error_mark_node)
1111 {
1112 targs = get_bindings (tmpl, decl, explicit_targs);
e1b3e07d 1113 templates = tree_cons (targs, tmpl, NULL_TREE);
03017874 1114 }
e1467ff2
MM
1115 }
1116
03017874 1117 if (templates == NULL_TREE && candidates == NULL_TREE)
e1467ff2 1118 {
bf8f3f93
MM
1119 cp_error_at ("template-id `%D' for `%+D' does not match any template declaration",
1120 template_id, decl);
03017874 1121 return error_mark_node;
386b8a85 1122 }
03017874 1123 else if ((templates && TREE_CHAIN (templates))
bf8f3f93
MM
1124 || (candidates && TREE_CHAIN (candidates))
1125 || (templates && candidates))
386b8a85 1126 {
bf8f3f93
MM
1127 cp_error_at ("ambiguous template specialization `%D' for `%+D'",
1128 template_id, decl);
1129 chainon (candidates, templates);
1130 print_candidates (candidates);
03017874 1131 return error_mark_node;
386b8a85
JM
1132 }
1133
1134 /* We have one, and exactly one, match. */
03017874
MM
1135 if (candidates)
1136 {
1137 /* It was a specialization of an ordinary member function in a
1138 template class. */
1139 *targs_out = copy_node (DECL_TI_ARGS (TREE_VALUE (candidates)));
1140 return DECL_TI_TEMPLATE (TREE_VALUE (candidates));
1141 }
1142
1143 /* It was a specialization of a template. */
17aec3eb 1144 targs = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (TREE_VALUE (templates)));
03017874
MM
1145 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (targs))
1146 {
1147 *targs_out = copy_node (targs);
1148 SET_TMPL_ARGS_LEVEL (*targs_out,
1149 TMPL_ARGS_DEPTH (*targs_out),
1150 TREE_PURPOSE (templates));
1151 }
1152 else
1153 *targs_out = TREE_PURPOSE (templates);
e1467ff2 1154 return TREE_VALUE (templates);
8d08fdba 1155}
6757edfe 1156
386b8a85 1157/* Check to see if the function just declared, as indicated in
75650646
MM
1158 DECLARATOR, and in DECL, is a specialization of a function
1159 template. We may also discover that the declaration is an explicit
1160 instantiation at this point.
1161
e1467ff2 1162 Returns DECL, or an equivalent declaration that should be used
03017874
MM
1163 instead if all goes well. Issues an error message if something is
1164 amiss. Returns error_mark_node if the error is not easily
1165 recoverable.
75650646 1166
75650646
MM
1167 FLAGS is a bitmask consisting of the following flags:
1168
75650646
MM
1169 2: The function has a definition.
1170 4: The function is a friend.
75650646
MM
1171
1172 The TEMPLATE_COUNT is the number of references to qualifying
1173 template classes that appeared in the name of the function. For
1174 example, in
1175
1176 template <class T> struct S { void f(); };
1177 void S<int>::f();
1178
1179 the TEMPLATE_COUNT would be 1. However, explicitly specialized
1180 classes are not counted in the TEMPLATE_COUNT, so that in
1181
1182 template <class T> struct S {};
1183 template <> struct S<int> { void f(); }
36a117a5 1184 template <> void S<int>::f();
75650646
MM
1185
1186 the TEMPLATE_COUNT would be 0. (Note that this declaration is
1187 illegal; there should be no template <>.)
1188
1189 If the function is a specialization, it is marked as such via
1190 DECL_TEMPLATE_SPECIALIZATION. Furthermore, its DECL_TEMPLATE_INFO
1191 is set up correctly, and it is added to the list of specializations
1192 for that template. */
386b8a85 1193
e1467ff2 1194tree
27bb8339 1195check_explicit_specialization (declarator, decl, template_count, flags)
386b8a85
JM
1196 tree declarator;
1197 tree decl;
1198 int template_count;
1199 int flags;
1200{
75650646
MM
1201 int have_def = flags & 2;
1202 int is_friend = flags & 4;
1203 int specialization = 0;
e1467ff2 1204 int explicit_instantiation = 0;
fd4de5ff 1205 int member_specialization = 0;
75650646
MM
1206 tree ctype = DECL_CLASS_CONTEXT (decl);
1207 tree dname = DECL_NAME (decl);
74b846e0 1208 tmpl_spec_kind tsk;
386b8a85 1209
74b846e0 1210 tsk = current_tmpl_spec_kind (template_count);
75650646 1211
74b846e0
MM
1212 switch (tsk)
1213 {
1214 case tsk_none:
1215 if (processing_specialization)
75650646 1216 {
fd4de5ff
MM
1217 specialization = 1;
1218 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
75650646 1219 }
74b846e0 1220 else if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
386b8a85 1221 {
74b846e0
MM
1222 if (is_friend)
1223 /* This could be something like:
75650646 1224
74b846e0
MM
1225 template <class T> void f(T);
1226 class S { friend void f<>(int); } */
1227 specialization = 1;
1228 else
1229 {
1230 /* This case handles bogus declarations like template <>
1231 template <class T> void f<int>(); */
1232
1233 cp_error ("template-id `%D' in declaration of primary template",
1234 declarator);
1235 return decl;
1236 }
1237 }
1238 break;
1239
1240 case tsk_invalid_member_spec:
1241 /* The error has already been reported in
1242 check_specialization_scope. */
1243 return error_mark_node;
1244
1245 case tsk_invalid_expl_inst:
1246 cp_error ("template parameter list used in explicit instantiation");
1247
1248 /* Fall through. */
1249
1250 case tsk_expl_inst:
fd4de5ff
MM
1251 if (have_def)
1252 cp_error ("definition provided for explicit instantiation");
74b846e0 1253
fd4de5ff 1254 explicit_instantiation = 1;
74b846e0 1255 break;
fd4de5ff 1256
74b846e0
MM
1257 case tsk_excessive_parms:
1258 cp_error ("too many template parameter lists in declaration of `%D'",
1259 decl);
1260 return error_mark_node;
75650646 1261
74b846e0
MM
1262 /* Fall through. */
1263 case tsk_expl_spec:
1264 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
1265 if (ctype)
1266 member_specialization = 1;
1267 else
1268 specialization = 1;
1269 break;
1270
1271 case tsk_insufficient_parms:
fd4de5ff
MM
1272 if (template_header_count)
1273 {
74b846e0
MM
1274 cp_error("too few template parameter lists in declaration of `%D'",
1275 decl);
fd4de5ff 1276 return decl;
c6f2ed0d 1277 }
74b846e0
MM
1278 else if (ctype != NULL_TREE
1279 && !TYPE_BEING_DEFINED (ctype)
1280 && CLASSTYPE_TEMPLATE_INSTANTIATION (ctype)
1281 && !is_friend)
1282 {
1283 /* For backwards compatibility, we accept:
fd4de5ff 1284
74b846e0
MM
1285 template <class T> struct S { void f(); };
1286 void S<int>::f() {} // Missing template <>
fd4de5ff 1287
74b846e0
MM
1288 That used to be legal C++. */
1289 if (pedantic)
1290 cp_pedwarn
1291 ("explicit specialization not preceded by `template <>'");
1292 specialization = 1;
1293 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
1294 }
1295 break;
1296
1297 case tsk_template:
1298 if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
c6f2ed0d 1299 {
fd4de5ff
MM
1300 /* This case handles bogus declarations like template <>
1301 template <class T> void f<int>(); */
75650646 1302
655dc6ee
JM
1303 if (uses_template_parms (declarator))
1304 cp_error ("partial specialization `%D' of function template",
1305 declarator);
1306 else
1307 cp_error ("template-id `%D' in declaration of primary template",
1308 declarator);
fd4de5ff 1309 return decl;
386b8a85 1310 }
74b846e0
MM
1311
1312 if (ctype && CLASSTYPE_TEMPLATE_INSTANTIATION (ctype))
1313 /* This is a specialization of a member template, without
1314 specialization the containing class. Something like:
1315
1316 template <class T> struct S {
1317 template <class U> void f (U);
1318 };
1319 template <> template <class U> void S<int>::f(U) {}
1320
1321 That's a specialization -- but of the entire template. */
1322 specialization = 1;
1323 break;
1324
1325 default:
1326 my_friendly_abort (20000309);
75650646 1327 }
386b8a85 1328
670960ac
JM
1329 if (specialization || member_specialization)
1330 {
1331 tree t = TYPE_ARG_TYPES (TREE_TYPE (decl));
1332 for (; t; t = TREE_CHAIN (t))
1333 if (TREE_PURPOSE (t))
1334 {
8251199e
JM
1335 cp_pedwarn
1336 ("default argument specified in explicit specialization");
670960ac
JM
1337 break;
1338 }
f3400fe2
JM
1339 if (current_lang_name == lang_name_c)
1340 cp_error ("template specialization with C linkage");
670960ac
JM
1341 }
1342
e1467ff2 1343 if (specialization || member_specialization || explicit_instantiation)
75650646
MM
1344 {
1345 tree tmpl = NULL_TREE;
1346 tree targs = NULL_TREE;
75650646
MM
1347
1348 /* Make sure that the declarator is a TEMPLATE_ID_EXPR. */
386b8a85
JM
1349 if (TREE_CODE (declarator) != TEMPLATE_ID_EXPR)
1350 {
1351 tree fns;
1352
1353 my_friendly_assert (TREE_CODE (declarator) == IDENTIFIER_NODE,
1354 0);
1355 if (!ctype)
30394414 1356 fns = IDENTIFIER_NAMESPACE_VALUE (dname);
386b8a85
JM
1357 else
1358 fns = dname;
1359
75650646
MM
1360 declarator =
1361 lookup_template_function (fns, NULL_TREE);
386b8a85
JM
1362 }
1363
f2e48b67
BK
1364 if (declarator == error_mark_node)
1365 return error_mark_node;
1366
75650646
MM
1367 if (ctype != NULL_TREE && TYPE_BEING_DEFINED (ctype))
1368 {
8ec2ac34 1369 if (!explicit_instantiation)
6c30752f
MM
1370 /* A specialization in class scope. This is illegal,
1371 but the error will already have been flagged by
1372 check_specialization_scope. */
1373 return error_mark_node;
8ec2ac34 1374 else
b370501f
KG
1375 {
1376 /* It's not legal to write an explicit instantiation in
1377 class scope, e.g.:
8ec2ac34 1378
b370501f 1379 class C { template void f(); }
8ec2ac34 1380
b370501f
KG
1381 This case is caught by the parser. However, on
1382 something like:
8ec2ac34 1383
b370501f 1384 template class C { void f(); };
8ec2ac34 1385
b370501f
KG
1386 (which is illegal) we can get here. The error will be
1387 issued later. */
1388 ;
1389 }
8ec2ac34 1390
e1467ff2 1391 return decl;
75650646 1392 }
8f032717
MM
1393 else if (TREE_CODE (TREE_OPERAND (declarator, 0)) == LOOKUP_EXPR)
1394 {
1395 /* A friend declaration. We can't do much, because we don't
1396 know what this resolves to, yet. */
1397 my_friendly_assert (is_friend != 0, 0);
1398 my_friendly_assert (!explicit_instantiation, 0);
1399 SET_DECL_IMPLICIT_INSTANTIATION (decl);
1400 return decl;
1401 }
75650646
MM
1402 else if (ctype != NULL_TREE
1403 && (TREE_CODE (TREE_OPERAND (declarator, 0)) ==
1404 IDENTIFIER_NODE))
386b8a85 1405 {
75650646
MM
1406 /* Find the list of functions in ctype that have the same
1407 name as the declared function. */
1408 tree name = TREE_OPERAND (declarator, 0);
03017874
MM
1409 tree fns = NULL_TREE;
1410 int idx;
1411
75650646
MM
1412 if (name == constructor_name (ctype)
1413 || name == constructor_name_full (ctype))
386b8a85 1414 {
75650646
MM
1415 int is_constructor = DECL_CONSTRUCTOR_P (decl);
1416
1417 if (is_constructor ? !TYPE_HAS_CONSTRUCTOR (ctype)
1418 : !TYPE_HAS_DESTRUCTOR (ctype))
1419 {
1420 /* From [temp.expl.spec]:
e1467ff2 1421
75650646
MM
1422 If such an explicit specialization for the member
1423 of a class template names an implicitly-declared
1424 special member function (clause _special_), the
e1467ff2
MM
1425 program is ill-formed.
1426
1427 Similar language is found in [temp.explicit]. */
8251199e 1428 cp_error ("specialization of implicitly-declared special member function");
03017874 1429 return error_mark_node;
75650646 1430 }
386b8a85 1431
42da2fd8 1432 name = is_constructor ? ctor_identifier : dtor_identifier;
75650646 1433 }
42da2fd8 1434
421844e7 1435 if (!DECL_CONV_FN_P (decl))
03017874
MM
1436 {
1437 idx = lookup_fnfields_1 (ctype, name);
1438 if (idx >= 0)
1439 fns = TREE_VEC_ELT (CLASSTYPE_METHOD_VEC (ctype), idx);
1440 }
1441 else
1442 {
1443 tree methods;
1444
1445 /* For a type-conversion operator, we cannot do a
1446 name-based lookup. We might be looking for `operator
1447 int' which will be a specialization of `operator T'.
1448 So, we find *all* the conversion operators, and then
1449 select from them. */
1450 fns = NULL_TREE;
1451
1452 methods = CLASSTYPE_METHOD_VEC (ctype);
1453 if (methods)
1454 for (idx = 2; idx < TREE_VEC_LENGTH (methods); ++idx)
1455 {
1456 tree ovl = TREE_VEC_ELT (methods, idx);
1457
1458 if (!ovl || !DECL_CONV_FN_P (OVL_CURRENT (ovl)))
1459 /* There are no more conversion functions. */
1460 break;
1461
1462 /* Glue all these conversion functions together
1463 with those we already have. */
1464 for (; ovl; ovl = OVL_NEXT (ovl))
1465 fns = ovl_cons (OVL_CURRENT (ovl), fns);
1466 }
1467 }
1468
386b8a85
JM
1469 if (fns == NULL_TREE)
1470 {
b3f738da
MM
1471 cp_error ("no member function `%D' declared in `%T'",
1472 name, ctype);
03017874 1473 return error_mark_node;
386b8a85
JM
1474 }
1475 else
1476 TREE_OPERAND (declarator, 0) = fns;
1477 }
75650646 1478
e1467ff2
MM
1479 /* Figure out what exactly is being specialized at this point.
1480 Note that for an explicit instantiation, even one for a
38e01259 1481 member function, we cannot tell apriori whether the
e1467ff2 1482 instantiation is for a member template, or just a member
36a117a5
MM
1483 function of a template class. Even if a member template is
1484 being instantiated, the member template arguments may be
1485 elided if they can be deduced from the rest of the
1486 declaration. */
e1467ff2
MM
1487 tmpl = determine_specialization (declarator, decl,
1488 &targs,
bf8f3f93 1489 member_specialization);
386b8a85 1490
03017874
MM
1491 if (!tmpl || tmpl == error_mark_node)
1492 /* We couldn't figure out what this declaration was
1493 specializing. */
1494 return error_mark_node;
1495 else
386b8a85 1496 {
25aab5d0 1497 tree gen_tmpl = most_general_template (tmpl);
36a117a5 1498
e1467ff2
MM
1499 if (explicit_instantiation)
1500 {
03d0f4af 1501 /* We don't set DECL_EXPLICIT_INSTANTIATION here; that
25aab5d0
MM
1502 is done by do_decl_instantiation later. */
1503
1504 int arg_depth = TMPL_ARGS_DEPTH (targs);
1505 int parm_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
1506
1507 if (arg_depth > parm_depth)
1508 {
1509 /* If TMPL is not the most general template (for
1510 example, if TMPL is a friend template that is
1511 injected into namespace scope), then there will
1512 be too many levels fo TARGS. Remove some of them
1513 here. */
1514 int i;
1515 tree new_targs;
1516
f31c0a32 1517 new_targs = make_tree_vec (parm_depth);
25aab5d0
MM
1518 for (i = arg_depth - parm_depth; i < arg_depth; ++i)
1519 TREE_VEC_ELT (new_targs, i - (arg_depth - parm_depth))
1520 = TREE_VEC_ELT (targs, i);
1521 targs = new_targs;
1522 }
1523
74b846e0 1524 return instantiate_template (tmpl, targs);
e1467ff2 1525 }
74b846e0 1526
f9a7ae04
MM
1527 /* If this is a specialization of a member template of a
1528 template class. In we want to return the TEMPLATE_DECL,
1529 not the specialization of it. */
74b846e0
MM
1530 if (tsk == tsk_template)
1531 {
1532 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
f9a7ae04 1533 DECL_INITIAL (DECL_TEMPLATE_RESULT (tmpl)) = NULL_TREE;
74b846e0
MM
1534 return tmpl;
1535 }
1536
36a117a5
MM
1537 /* If we though that the DECL was a member function, but it
1538 turns out to be specializing a static member function,
1539 make DECL a static member function as well. */
1540 if (DECL_STATIC_FUNCTION_P (tmpl)
1541 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
366c0f1e 1542 {
3afb32a4 1543 revert_static_member_fn (decl);
366c0f1e
MM
1544 last_function_parms = TREE_CHAIN (last_function_parms);
1545 }
e1467ff2 1546
36a117a5 1547 /* Set up the DECL_TEMPLATE_INFO for DECL. */
e1b3e07d 1548 DECL_TEMPLATE_INFO (decl) = tree_cons (tmpl, targs, NULL_TREE);
36a117a5 1549
e1467ff2
MM
1550 /* Mangle the function name appropriately. Note that we do
1551 not mangle specializations of non-template member
1552 functions of template classes, e.g. with
36a117a5 1553
e1467ff2 1554 template <class T> struct S { void f(); }
36a117a5 1555
e1467ff2 1556 and given the specialization
36a117a5 1557
e1467ff2 1558 template <> void S<int>::f() {}
36a117a5 1559
e1467ff2
MM
1560 we do not mangle S<int>::f() here. That's because it's
1561 just an ordinary member function and doesn't need special
36a117a5 1562 treatment. We do this here so that the ordinary,
74b846e0 1563 non-template, name-mangling algorithm will not be used
36a117a5 1564 later. */
669ec2b4
JM
1565 if ((is_member_template (tmpl) || ctype == NULL_TREE)
1566 && name_mangling_version >= 1)
1567 set_mangled_name_for_template_decl (decl);
386b8a85
JM
1568
1569 if (is_friend && !have_def)
36a117a5
MM
1570 /* This is not really a declaration of a specialization.
1571 It's just the name of an instantiation. But, it's not
1572 a request for an instantiation, either. */
fbf1c34b 1573 SET_DECL_IMPLICIT_INSTANTIATION (decl);
75650646 1574
36a117a5
MM
1575 /* Register this specialization so that we can find it
1576 again. */
1577 decl = register_specialization (decl, gen_tmpl, targs);
386b8a85
JM
1578 }
1579 }
75650646 1580
e1467ff2 1581 return decl;
386b8a85 1582}
75650646 1583
39c01e4c
MM
1584/* TYPE is being declared. Verify that the use of template headers
1585 and such is reasonable. Issue error messages if not. */
1586
1587void
1588maybe_check_template_type (type)
1589 tree type;
1590{
1591 if (template_header_count)
1592 {
1593 /* We are in the scope of some `template <...>' header. */
1594
1595 int context_depth
1596 = template_class_depth_real (TYPE_CONTEXT (type),
1597 /*count_specializations=*/1);
1598
1599 if (template_header_count <= context_depth)
1600 /* This is OK; the template headers are for the context. We
1601 are actually too lenient here; like
1602 check_explicit_specialization we should consider the number
1603 of template types included in the actual declaration. For
1604 example,
1605
1606 template <class T> struct S {
1607 template <class U> template <class V>
1608 struct I {};
1609 };
1610
1611 is illegal, but:
1612
1613 template <class T> struct S {
1614 template <class U> struct I;
1615 };
1616
1617 template <class T> template <class U.
1618 struct S<T>::I {};
1619
1620 is not. */
1621 ;
1622 else if (template_header_count > context_depth + 1)
1623 /* There are two many template parameter lists. */
8251199e 1624 cp_error ("too many template parameter lists in declaration of `%T'", type);
39c01e4c
MM
1625 }
1626}
1627
75650646
MM
1628/* Returns 1 iff PARMS1 and PARMS2 are identical sets of template
1629 parameters. These are represented in the same format used for
1630 DECL_TEMPLATE_PARMS. */
1631
1632int comp_template_parms (parms1, parms2)
1633 tree parms1;
1634 tree parms2;
1635{
1636 tree p1;
1637 tree p2;
1638
1639 if (parms1 == parms2)
1640 return 1;
1641
1642 for (p1 = parms1, p2 = parms2;
1643 p1 != NULL_TREE && p2 != NULL_TREE;
1644 p1 = TREE_CHAIN (p1), p2 = TREE_CHAIN (p2))
1645 {
1646 tree t1 = TREE_VALUE (p1);
1647 tree t2 = TREE_VALUE (p2);
1648 int i;
1649
1650 my_friendly_assert (TREE_CODE (t1) == TREE_VEC, 0);
1651 my_friendly_assert (TREE_CODE (t2) == TREE_VEC, 0);
1652
1653 if (TREE_VEC_LENGTH (t1) != TREE_VEC_LENGTH (t2))
1654 return 0;
1655
1656 for (i = 0; i < TREE_VEC_LENGTH (t2); ++i)
1657 {
1658 tree parm1 = TREE_VALUE (TREE_VEC_ELT (t1, i));
1659 tree parm2 = TREE_VALUE (TREE_VEC_ELT (t2, i));
1660
1661 if (TREE_CODE (parm1) != TREE_CODE (parm2))
1662 return 0;
1663
1664 if (TREE_CODE (parm1) == TEMPLATE_TYPE_PARM)
1665 continue;
3bfdc719 1666 else if (!same_type_p (TREE_TYPE (parm1), TREE_TYPE (parm2)))
75650646
MM
1667 return 0;
1668 }
1669 }
1670
1671 if ((p1 != NULL_TREE) != (p2 != NULL_TREE))
1672 /* One set of parameters has more parameters lists than the
1673 other. */
1674 return 0;
1675
1676 return 1;
1677}
1678
f3400fe2
JM
1679/* Complain if DECL shadows a template parameter.
1680
1681 [temp.local]: A template-parameter shall not be redeclared within its
1682 scope (including nested scopes). */
1683
1684void
1685check_template_shadow (decl)
1686 tree decl;
1687{
8f032717
MM
1688 tree olddecl;
1689
b5d9b9ab
MM
1690 /* If we're not in a template, we can't possibly shadow a template
1691 parameter. */
1692 if (!current_template_parms)
1693 return;
1694
1695 /* Figure out what we're shadowing. */
8f032717
MM
1696 if (TREE_CODE (decl) == OVERLOAD)
1697 decl = OVL_CURRENT (decl);
1698 olddecl = IDENTIFIER_VALUE (DECL_NAME (decl));
f3400fe2 1699
b5d9b9ab
MM
1700 /* If there's no previous binding for this name, we're not shadowing
1701 anything, let alone a template parameter. */
1702 if (!olddecl)
1703 return;
1704
1705 /* If we're not shadowing a template parameter, we're done. Note
1706 that OLDDECL might be an OVERLOAD (or perhaps even an
1707 ERROR_MARK), so we can't just blithely assume it to be a _DECL
1708 node. */
2f939d94 1709 if (!DECL_P (olddecl) || !DECL_TEMPLATE_PARM_P (olddecl))
b5d9b9ab
MM
1710 return;
1711
1712 /* We check for decl != olddecl to avoid bogus errors for using a
1713 name inside a class. We check TPFI to avoid duplicate errors for
1714 inline member templates. */
1715 if (decl == olddecl
1716 || TEMPLATE_PARMS_FOR_INLINE (current_template_parms))
1717 return;
1718
1719 cp_error_at ("declaration of `%#D'", decl);
1720 cp_error_at (" shadows template parm `%#D'", olddecl);
f3400fe2 1721}
22a7be53 1722
f3400fe2 1723/* Return a new TEMPLATE_PARM_INDEX with the indicated INDEX, LEVEL,
f84b4be9
JM
1724 ORIG_LEVEL, DECL, and TYPE. */
1725
1726static tree
1727build_template_parm_index (index, level, orig_level, decl, type)
1728 int index;
1729 int level;
1730 int orig_level;
1731 tree decl;
1732 tree type;
1733{
1734 tree t = make_node (TEMPLATE_PARM_INDEX);
1735 TEMPLATE_PARM_IDX (t) = index;
1736 TEMPLATE_PARM_LEVEL (t) = level;
1737 TEMPLATE_PARM_ORIG_LEVEL (t) = orig_level;
1738 TEMPLATE_PARM_DECL (t) = decl;
1739 TREE_TYPE (t) = type;
1740
1741 return t;
1742}
1743
f84b4be9 1744/* Return a TEMPLATE_PARM_INDEX, similar to INDEX, but whose
93cdc044 1745 TEMPLATE_PARM_LEVEL has been decreased by LEVELS. If such a
f84b4be9
JM
1746 TEMPLATE_PARM_INDEX already exists, it is returned; otherwise, a
1747 new one is created. */
1748
1749static tree
93cdc044 1750reduce_template_parm_level (index, type, levels)
f84b4be9
JM
1751 tree index;
1752 tree type;
93cdc044 1753 int levels;
f84b4be9
JM
1754{
1755 if (TEMPLATE_PARM_DESCENDANTS (index) == NULL_TREE
1756 || (TEMPLATE_PARM_LEVEL (TEMPLATE_PARM_DESCENDANTS (index))
93cdc044 1757 != TEMPLATE_PARM_LEVEL (index) - levels))
f84b4be9
JM
1758 {
1759 tree decl
1760 = build_decl (TREE_CODE (TEMPLATE_PARM_DECL (index)),
1761 DECL_NAME (TEMPLATE_PARM_DECL (index)),
1762 type);
1763 tree t
1764 = build_template_parm_index (TEMPLATE_PARM_IDX (index),
93cdc044 1765 TEMPLATE_PARM_LEVEL (index) - levels,
f84b4be9
JM
1766 TEMPLATE_PARM_ORIG_LEVEL (index),
1767 decl, type);
1768 TEMPLATE_PARM_DESCENDANTS (index) = t;
cae40af6
JM
1769
1770 /* Template template parameters need this. */
1771 DECL_TEMPLATE_PARMS (decl)
1772 = DECL_TEMPLATE_PARMS (TEMPLATE_PARM_DECL (index));
f84b4be9
JM
1773 }
1774
1775 return TEMPLATE_PARM_DESCENDANTS (index);
1776}
1777
8d08fdba 1778/* Process information from new template parameter NEXT and append it to the
5566b478 1779 LIST being built. */
e92cc029 1780
8d08fdba
MS
1781tree
1782process_template_parm (list, next)
1783 tree list, next;
1784{
1785 tree parm;
1786 tree decl = 0;
a292b002 1787 tree defval;
5566b478 1788 int is_type, idx;
f84b4be9 1789
8d08fdba
MS
1790 parm = next;
1791 my_friendly_assert (TREE_CODE (parm) == TREE_LIST, 259);
a292b002
MS
1792 defval = TREE_PURPOSE (parm);
1793 parm = TREE_VALUE (parm);
1794 is_type = TREE_PURPOSE (parm) == class_type_node;
5566b478
MS
1795
1796 if (list)
1797 {
1798 tree p = TREE_VALUE (tree_last (list));
1799
1899c3a4 1800 if (TREE_CODE (p) == TYPE_DECL || TREE_CODE (p) == TEMPLATE_DECL)
5566b478
MS
1801 idx = TEMPLATE_TYPE_IDX (TREE_TYPE (p));
1802 else
f84b4be9 1803 idx = TEMPLATE_PARM_IDX (DECL_INITIAL (p));
5566b478
MS
1804 ++idx;
1805 }
1806 else
1807 idx = 0;
1808
8d08fdba
MS
1809 if (!is_type)
1810 {
a292b002 1811 my_friendly_assert (TREE_CODE (TREE_PURPOSE (parm)) == TREE_LIST, 260);
8d08fdba 1812 /* is a const-param */
a292b002 1813 parm = grokdeclarator (TREE_VALUE (parm), TREE_PURPOSE (parm),
c11b6f21 1814 PARM, 0, NULL_TREE);
d490621d
MM
1815
1816 /* [temp.param]
1817
1818 The top-level cv-qualifiers on the template-parameter are
1819 ignored when determining its type. */
1820 TREE_TYPE (parm) = TYPE_MAIN_VARIANT (TREE_TYPE (parm));
1821
8d08fdba
MS
1822 /* A template parameter is not modifiable. */
1823 TREE_READONLY (parm) = 1;
c91a56d2 1824 if (IS_AGGR_TYPE (TREE_TYPE (parm))
410c2fba
KL
1825 && TREE_CODE (TREE_TYPE (parm)) != TEMPLATE_TYPE_PARM
1826 && TREE_CODE (TREE_TYPE (parm)) != TYPENAME_TYPE)
8d08fdba 1827 {
8251199e 1828 cp_error ("`%#T' is not a valid type for a template constant parameter",
c91a56d2
MS
1829 TREE_TYPE (parm));
1830 if (DECL_NAME (parm) == NULL_TREE)
8251199e 1831 error (" a template type parameter must begin with `class' or `typename'");
8d08fdba
MS
1832 TREE_TYPE (parm) = void_type_node;
1833 }
37c46b43
MS
1834 else if (pedantic
1835 && (TREE_CODE (TREE_TYPE (parm)) == REAL_TYPE
1836 || TREE_CODE (TREE_TYPE (parm)) == COMPLEX_TYPE))
8251199e 1837 cp_pedwarn ("`%T' is not a valid type for a template constant parameter",
eb66be0e 1838 TREE_TYPE (parm));
8d08fdba 1839 decl = build_decl (CONST_DECL, DECL_NAME (parm), TREE_TYPE (parm));
f84b4be9
JM
1840 DECL_INITIAL (parm) = DECL_INITIAL (decl)
1841 = build_template_parm_index (idx, processing_template_decl,
1842 processing_template_decl,
1843 decl, TREE_TYPE (parm));
8d08fdba
MS
1844 }
1845 else
1846 {
73b0fce8
KL
1847 tree t;
1848 parm = TREE_VALUE (parm);
1849
1850 if (parm && TREE_CODE (parm) == TEMPLATE_DECL)
1851 {
33848bb0 1852 t = make_aggr_type (TEMPLATE_TEMPLATE_PARM);
73b0fce8
KL
1853 /* This is for distinguishing between real templates and template
1854 template parameters */
1855 TREE_TYPE (parm) = t;
1856 TREE_TYPE (DECL_TEMPLATE_RESULT (parm)) = t;
1857 decl = parm;
1858 }
1859 else
1860 {
33848bb0 1861 t = make_aggr_type (TEMPLATE_TYPE_PARM);
73b0fce8
KL
1862 /* parm is either IDENTIFIER_NODE or NULL_TREE */
1863 decl = build_decl (TYPE_DECL, parm, t);
1864 }
1865
d2e5ee5c
MS
1866 TYPE_NAME (t) = decl;
1867 TYPE_STUB_DECL (t) = decl;
a292b002 1868 parm = decl;
f84b4be9
JM
1869 TEMPLATE_TYPE_PARM_INDEX (t)
1870 = build_template_parm_index (idx, processing_template_decl,
1871 processing_template_decl,
1872 decl, TREE_TYPE (parm));
8d08fdba 1873 }
c727aa5e 1874 DECL_ARTIFICIAL (decl) = 1;
cd9f6678 1875 SET_DECL_TEMPLATE_PARM_P (decl);
8d08fdba 1876 pushdecl (decl);
a292b002 1877 parm = build_tree_list (defval, parm);
8d08fdba
MS
1878 return chainon (list, parm);
1879}
1880
1881/* The end of a template parameter list has been reached. Process the
1882 tree list into a parameter vector, converting each parameter into a more
1883 useful form. Type parameters are saved as IDENTIFIER_NODEs, and others
1884 as PARM_DECLs. */
1885
1886tree
1887end_template_parm_list (parms)
1888 tree parms;
1889{
5566b478 1890 int nparms;
8d08fdba 1891 tree parm;
5566b478
MS
1892 tree saved_parmlist = make_tree_vec (list_length (parms));
1893
5566b478
MS
1894 current_template_parms
1895 = tree_cons (build_int_2 (0, processing_template_decl),
1896 saved_parmlist, current_template_parms);
8d08fdba 1897
91e490ab
MM
1898 for (parm = parms, nparms = 0;
1899 parm;
1900 parm = TREE_CHAIN (parm), nparms++)
66191c20 1901 TREE_VEC_ELT (saved_parmlist, nparms) = parm;
a292b002 1902
67ffc812
MM
1903 --processing_template_parmlist;
1904
8d08fdba
MS
1905 return saved_parmlist;
1906}
1907
5566b478
MS
1908/* end_template_decl is called after a template declaration is seen. */
1909
8d08fdba 1910void
5566b478 1911end_template_decl ()
8d08fdba 1912{
386b8a85
JM
1913 reset_specialization ();
1914
5156628f 1915 if (! processing_template_decl)
73aad9b9
JM
1916 return;
1917
5566b478 1918 /* This matches the pushlevel in begin_template_parm_list. */
74b846e0 1919 finish_scope ();
8d08fdba 1920
5566b478
MS
1921 --processing_template_decl;
1922 current_template_parms = TREE_CHAIN (current_template_parms);
5566b478 1923}
8d08fdba 1924
36a117a5
MM
1925/* Given a template argument vector containing the template PARMS.
1926 The innermost PARMS are given first. */
9a3b49ac
MS
1927
1928tree
1929current_template_args ()
5566b478 1930{
36a117a5 1931 tree header;
b370501f 1932 tree args = NULL_TREE;
36a117a5 1933 int length = TMPL_PARMS_DEPTH (current_template_parms);
98c1c668
JM
1934 int l = length;
1935
36a117a5
MM
1936 /* If there is only one level of template parameters, we do not
1937 create a TREE_VEC of TREE_VECs. Instead, we return a single
1938 TREE_VEC containing the arguments. */
1939 if (length > 1)
1940 args = make_tree_vec (length);
1941
1942 for (header = current_template_parms; header; header = TREE_CHAIN (header))
8d08fdba 1943 {
5566b478 1944 tree a = copy_node (TREE_VALUE (header));
36a117a5
MM
1945 int i;
1946
5566b478 1947 TREE_TYPE (a) = NULL_TREE;
36a117a5 1948 for (i = TREE_VEC_LENGTH (a) - 1; i >= 0; --i)
5566b478 1949 {
98c1c668
JM
1950 tree t = TREE_VEC_ELT (a, i);
1951
36a117a5 1952 /* T will be a list if we are called from within a
98c1c668
JM
1953 begin/end_template_parm_list pair, but a vector directly
1954 if within a begin/end_member_template_processing pair. */
1955 if (TREE_CODE (t) == TREE_LIST)
1956 {
1957 t = TREE_VALUE (t);
1958
73b0fce8
KL
1959 if (TREE_CODE (t) == TYPE_DECL
1960 || TREE_CODE (t) == TEMPLATE_DECL)
98c1c668
JM
1961 t = TREE_TYPE (t);
1962 else
1963 t = DECL_INITIAL (t);
36a117a5 1964 TREE_VEC_ELT (a, i) = t;
98c1c668 1965 }
5566b478 1966 }
36a117a5
MM
1967
1968 if (length > 1)
1969 TREE_VEC_ELT (args, --l) = a;
1970 else
1971 args = a;
8d08fdba
MS
1972 }
1973
9a3b49ac
MS
1974 return args;
1975}
75650646 1976
e1467ff2
MM
1977/* Return a TEMPLATE_DECL corresponding to DECL, using the indicated
1978 template PARMS. Used by push_template_decl below. */
1979
75650646
MM
1980static tree
1981build_template_decl (decl, parms)
1982 tree decl;
1983 tree parms;
1984{
1985 tree tmpl = build_lang_decl (TEMPLATE_DECL, DECL_NAME (decl), NULL_TREE);
1986 DECL_TEMPLATE_PARMS (tmpl) = parms;
1987 DECL_CONTEXT (tmpl) = DECL_CONTEXT (decl);
1988 if (DECL_LANG_SPECIFIC (decl))
1989 {
4f1c5b7d 1990 DECL_VIRTUAL_CONTEXT (tmpl) = DECL_VIRTUAL_CONTEXT (decl);
8f032717
MM
1991 DECL_STATIC_FUNCTION_P (tmpl) = DECL_STATIC_FUNCTION_P (decl);
1992 DECL_CONSTRUCTOR_P (tmpl) = DECL_CONSTRUCTOR_P (decl);
11f98788 1993 DECL_NONCONVERTING_P (tmpl) = DECL_NONCONVERTING_P (decl);
1f6e1acc
AS
1994 DECL_ASSIGNMENT_OPERATOR_P (tmpl) = DECL_ASSIGNMENT_OPERATOR_P (decl);
1995 if (DECL_OVERLOADED_OPERATOR_P (decl))
1996 SET_OVERLOADED_OPERATOR_CODE (tmpl,
1997 DECL_OVERLOADED_OPERATOR_P (decl));
75650646
MM
1998 }
1999
2000 return tmpl;
2001}
2002
050367a3
MM
2003struct template_parm_data
2004{
6c30752f
MM
2005 /* The level of the template parameters we are currently
2006 processing. */
050367a3 2007 int level;
6c30752f
MM
2008
2009 /* The index of the specialization argument we are currently
2010 processing. */
2011 int current_arg;
2012
2013 /* An array whose size is the number of template parameters. The
2014 elements are non-zero if the parameter has been used in any one
2015 of the arguments processed so far. */
050367a3 2016 int* parms;
6c30752f
MM
2017
2018 /* An array whose size is the number of template arguments. The
2019 elements are non-zero if the argument makes use of template
2020 parameters of this level. */
2021 int* arg_uses_template_parms;
050367a3
MM
2022};
2023
2024/* Subroutine of push_template_decl used to see if each template
2025 parameter in a partial specialization is used in the explicit
2026 argument list. If T is of the LEVEL given in DATA (which is
2027 treated as a template_parm_data*), then DATA->PARMS is marked
2028 appropriately. */
2029
2030static int
2031mark_template_parm (t, data)
2032 tree t;
2033 void* data;
2034{
2035 int level;
2036 int idx;
2037 struct template_parm_data* tpd = (struct template_parm_data*) data;
2038
2039 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
2040 {
2041 level = TEMPLATE_PARM_LEVEL (t);
2042 idx = TEMPLATE_PARM_IDX (t);
2043 }
2044 else
2045 {
2046 level = TEMPLATE_TYPE_LEVEL (t);
2047 idx = TEMPLATE_TYPE_IDX (t);
2048 }
2049
2050 if (level == tpd->level)
6c30752f
MM
2051 {
2052 tpd->parms[idx] = 1;
2053 tpd->arg_uses_template_parms[tpd->current_arg] = 1;
2054 }
050367a3
MM
2055
2056 /* Return zero so that for_each_template_parm will continue the
2057 traversal of the tree; we want to mark *every* template parm. */
2058 return 0;
2059}
2060
6c30752f
MM
2061/* Process the partial specialization DECL. */
2062
e9659ab0 2063static tree
6c30752f
MM
2064process_partial_specialization (decl)
2065 tree decl;
2066{
2067 tree type = TREE_TYPE (decl);
2068 tree maintmpl = CLASSTYPE_TI_TEMPLATE (type);
2069 tree specargs = CLASSTYPE_TI_ARGS (type);
f9a7ae04 2070 tree inner_args = INNERMOST_TEMPLATE_ARGS (specargs);
6c30752f
MM
2071 tree inner_parms = INNERMOST_TEMPLATE_PARMS (current_template_parms);
2072 tree main_inner_parms = DECL_INNERMOST_TEMPLATE_PARMS (maintmpl);
2073 int nargs = TREE_VEC_LENGTH (inner_args);
2074 int ntparms = TREE_VEC_LENGTH (inner_parms);
2075 int i;
2076 int did_error_intro = 0;
6c30752f
MM
2077 struct template_parm_data tpd;
2078 struct template_parm_data tpd2;
2079
6c30752f
MM
2080 /* We check that each of the template parameters given in the
2081 partial specialization is used in the argument list to the
2082 specialization. For example:
2083
2084 template <class T> struct S;
2085 template <class T> struct S<T*>;
2086
2087 The second declaration is OK because `T*' uses the template
2088 parameter T, whereas
2089
2090 template <class T> struct S<int>;
2091
2092 is no good. Even trickier is:
2093
2094 template <class T>
2095 struct S1
2096 {
2097 template <class U>
2098 struct S2;
2099 template <class U>
2100 struct S2<T>;
2101 };
2102
2103 The S2<T> declaration is actually illegal; it is a
2104 full-specialization. Of course,
2105
2106 template <class U>
2107 struct S2<T (*)(U)>;
2108
2109 or some such would have been OK. */
2110 tpd.level = TMPL_PARMS_DEPTH (current_template_parms);
2111 tpd.parms = alloca (sizeof (int) * ntparms);
1ddb2906 2112 bzero ((PTR) tpd.parms, sizeof (int) * ntparms);
6c30752f
MM
2113
2114 tpd.arg_uses_template_parms = alloca (sizeof (int) * nargs);
1ddb2906 2115 bzero ((PTR) tpd.arg_uses_template_parms, sizeof (int) * nargs);
6c30752f
MM
2116 for (i = 0; i < nargs; ++i)
2117 {
2118 tpd.current_arg = i;
2119 for_each_template_parm (TREE_VEC_ELT (inner_args, i),
2120 &mark_template_parm,
2121 &tpd);
2122 }
2123 for (i = 0; i < ntparms; ++i)
2124 if (tpd.parms[i] == 0)
2125 {
2126 /* One of the template parms was not used in the
f9a7ae04 2127 specialization. */
6c30752f
MM
2128 if (!did_error_intro)
2129 {
8251199e 2130 cp_error ("template parameters not used in partial specialization:");
6c30752f
MM
2131 did_error_intro = 1;
2132 }
2133
8251199e 2134 cp_error (" `%D'",
6c30752f
MM
2135 TREE_VALUE (TREE_VEC_ELT (inner_parms, i)));
2136 }
2137
2138 /* [temp.class.spec]
2139
2140 The argument list of the specialization shall not be identical to
2141 the implicit argument list of the primary template. */
f9a7ae04
MM
2142 if (comp_template_args
2143 (inner_args,
2144 INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE
2145 (maintmpl)))))
8251199e 2146 cp_error ("partial specialization `%T' does not specialize any template arguments", type);
6c30752f
MM
2147
2148 /* [temp.class.spec]
2149
2150 A partially specialized non-type argument expression shall not
2151 involve template parameters of the partial specialization except
2152 when the argument expression is a simple identifier.
2153
2154 The type of a template parameter corresponding to a specialized
2155 non-type argument shall not be dependent on a parameter of the
2156 specialization. */
2157 my_friendly_assert (nargs == DECL_NTPARMS (maintmpl), 0);
2158 tpd2.parms = 0;
2159 for (i = 0; i < nargs; ++i)
2160 {
2161 tree arg = TREE_VEC_ELT (inner_args, i);
2162 if (/* These first two lines are the `non-type' bit. */
2f939d94 2163 !TYPE_P (arg)
6c30752f
MM
2164 && TREE_CODE (arg) != TEMPLATE_DECL
2165 /* This next line is the `argument expression is not just a
2166 simple identifier' condition and also the `specialized
2167 non-type argument' bit. */
2168 && TREE_CODE (arg) != TEMPLATE_PARM_INDEX)
2169 {
2170 if (tpd.arg_uses_template_parms[i])
8251199e 2171 cp_error ("template argument `%E' involves template parameter(s)", arg);
6c30752f
MM
2172 else
2173 {
2174 /* Look at the corresponding template parameter,
2175 marking which template parameters its type depends
2176 upon. */
2177 tree type =
2178 TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (main_inner_parms,
2179 i)));
2180
2181 if (!tpd2.parms)
2182 {
2183 /* We haven't yet initialized TPD2. Do so now. */
2184 tpd2.arg_uses_template_parms
2185 = (int*) alloca (sizeof (int) * nargs);
104bf76a 2186 /* The number of parameters here is the number in the
76a83782
RH
2187 main template, which, as checked in the assertion
2188 above, is NARGS. */
6c30752f
MM
2189 tpd2.parms = (int*) alloca (sizeof (int) * nargs);
2190 tpd2.level =
2191 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (maintmpl));
2192 }
2193
104bf76a 2194 /* Mark the template parameters. But this time, we're
6c30752f
MM
2195 looking for the template parameters of the main
2196 template, not in the specialization. */
2197 tpd2.current_arg = i;
2198 tpd2.arg_uses_template_parms[i] = 0;
1ddb2906 2199 bzero ((PTR) tpd2.parms, sizeof (int) * nargs);
6c30752f
MM
2200 for_each_template_parm (type,
2201 &mark_template_parm,
2202 &tpd2);
2203
2204 if (tpd2.arg_uses_template_parms [i])
2205 {
2206 /* The type depended on some template parameters.
2207 If they are fully specialized in the
2208 specialization, that's OK. */
2209 int j;
2210 for (j = 0; j < nargs; ++j)
2211 if (tpd2.parms[j] != 0
2212 && tpd.arg_uses_template_parms [j])
2213 {
104bf76a 2214 cp_error ("type `%T' of template argument `%E' depends on template parameter(s)",
6c30752f
MM
2215 type,
2216 arg);
2217 break;
2218 }
2219 }
2220 }
2221 }
2222 }
2223
2224 if (retrieve_specialization (maintmpl, specargs))
2225 /* We've already got this specialization. */
2226 return decl;
2227
d8b64f80 2228 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)
e1b3e07d
MM
2229 = tree_cons (inner_args, inner_parms,
2230 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl));
6c30752f
MM
2231 TREE_TYPE (DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)) = type;
2232 return decl;
2233}
2234
6ba89f8e
MM
2235/* Check that a template declaration's use of default arguments is not
2236 invalid. Here, PARMS are the template parameters. IS_PRIMARY is
2237 non-zero if DECL is the thing declared by a primary template.
2238 IS_PARTIAL is non-zero if DECL is a partial specialization. */
2239
2240static void
2241check_default_tmpl_args (decl, parms, is_primary, is_partial)
2242 tree decl;
2243 tree parms;
2244 int is_primary;
2245 int is_partial;
2246{
d8e178a0 2247 const char *msg;
66191c20
MM
2248 int last_level_to_check;
2249 tree parm_level;
6ba89f8e
MM
2250
2251 /* [temp.param]
2252
2253 A default template-argument shall not be specified in a
2254 function template declaration or a function template definition, nor
2255 in the template-parameter-list of the definition of a member of a
2256 class template. */
2257
4f1c5b7d 2258 if (TREE_CODE (CP_DECL_CONTEXT (decl)) == FUNCTION_DECL)
e0942dcd
MM
2259 /* You can't have a function template declaration in a local
2260 scope, nor you can you define a member of a class template in a
2261 local scope. */
2262 return;
2263
6ba89f8e
MM
2264 if (current_class_type
2265 && !TYPE_BEING_DEFINED (current_class_type)
3d7de1fa 2266 && DECL_LANG_SPECIFIC (decl)
5937a6f9
MM
2267 /* If this is either a friend defined in the scope of the class
2268 or a member function. */
4f1c5b7d
MM
2269 && ((DECL_CONTEXT (decl)
2270 && same_type_p (DECL_CONTEXT (decl), current_class_type))
2271 || (DECL_FRIEND_CONTEXT (decl)
2272 && same_type_p (DECL_FRIEND_CONTEXT (decl),
2273 current_class_type)))
5937a6f9
MM
2274 /* And, if it was a member function, it really was defined in
2275 the scope of the class. */
2276 && (!DECL_FUNCTION_MEMBER_P (decl) || DECL_DEFINED_IN_CLASS_P (decl)))
6ba89f8e 2277 /* We already checked these parameters when the template was
5937a6f9
MM
2278 declared, so there's no need to do it again now. This function
2279 was defined in class scope, but we're processing it's body now
2280 that the class is complete. */
6ba89f8e
MM
2281 return;
2282
66191c20
MM
2283 /* [temp.param]
2284
2285 If a template-parameter has a default template-argument, all
2286 subsequent template-parameters shall have a default
2287 template-argument supplied. */
2288 for (parm_level = parms; parm_level; parm_level = TREE_CHAIN (parm_level))
2289 {
2290 tree inner_parms = TREE_VALUE (parm_level);
2291 int ntparms = TREE_VEC_LENGTH (inner_parms);
2292 int seen_def_arg_p = 0;
2293 int i;
2294
2295 for (i = 0; i < ntparms; ++i)
2296 {
2297 tree parm = TREE_VEC_ELT (inner_parms, i);
2298 if (TREE_PURPOSE (parm))
2299 seen_def_arg_p = 1;
2300 else if (seen_def_arg_p)
2301 {
2302 cp_error ("no default argument for `%D'", TREE_VALUE (parm));
2303 /* For better subsequent error-recovery, we indicate that
2304 there should have been a default argument. */
2305 TREE_PURPOSE (parm) = error_mark_node;
2306 }
2307 }
2308 }
2309
6ba89f8e
MM
2310 if (TREE_CODE (decl) != TYPE_DECL || is_partial || !is_primary)
2311 /* For an ordinary class template, default template arguments are
2312 allowed at the innermost level, e.g.:
2313 template <class T = int>
2314 struct S {};
2315 but, in a partial specialization, they're not allowed even
2316 there, as we have in [temp.class.spec]:
2317
2318 The template parameter list of a specialization shall not
2319 contain default template argument values.
2320
2321 So, for a partial specialization, or for a function template,
2322 we look at all of them. */
2323 ;
2324 else
2325 /* But, for a primary class template that is not a partial
2326 specialization we look at all template parameters except the
2327 innermost ones. */
2328 parms = TREE_CHAIN (parms);
2329
2330 /* Figure out what error message to issue. */
2331 if (TREE_CODE (decl) == FUNCTION_DECL)
2332 msg = "default argument for template parameter in function template `%D'";
2333 else if (is_partial)
2334 msg = "default argument in partial specialization `%D'";
2335 else
2336 msg = "default argument for template parameter for class enclosing `%D'";
2337
2338 if (current_class_type && TYPE_BEING_DEFINED (current_class_type))
2339 /* If we're inside a class definition, there's no need to
104bf76a 2340 examine the parameters to the class itself. On the one
6ba89f8e
MM
2341 hand, they will be checked when the class is defined, and,
2342 on the other, default arguments are legal in things like:
2343 template <class T = double>
2344 struct S { template <class U> void f(U); };
2345 Here the default argument for `S' has no bearing on the
2346 declaration of `f'. */
2347 last_level_to_check = template_class_depth (current_class_type) + 1;
2348 else
2349 /* Check everything. */
2350 last_level_to_check = 0;
2351
66191c20
MM
2352 for (parm_level = parms;
2353 parm_level && TMPL_PARMS_DEPTH (parm_level) >= last_level_to_check;
2354 parm_level = TREE_CHAIN (parm_level))
6ba89f8e 2355 {
66191c20
MM
2356 tree inner_parms = TREE_VALUE (parm_level);
2357 int i;
2358 int ntparms;
6ba89f8e
MM
2359
2360 ntparms = TREE_VEC_LENGTH (inner_parms);
2361 for (i = 0; i < ntparms; ++i)
2362 if (TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)))
2363 {
2364 if (msg)
2365 {
2366 cp_error (msg, decl);
2367 msg = 0;
2368 }
2369
2370 /* Clear out the default argument so that we are not
2371 confused later. */
2372 TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)) = NULL_TREE;
2373 }
2374
2375 /* At this point, if we're still interested in issuing messages,
2376 they must apply to classes surrounding the object declared. */
2377 if (msg)
2378 msg = "default argument for template parameter for class enclosing `%D'";
2379 }
2380}
2381
3ac3d9ea 2382/* Creates a TEMPLATE_DECL for the indicated DECL using the template
f84b4be9
JM
2383 parameters given by current_template_args, or reuses a
2384 previously existing one, if appropriate. Returns the DECL, or an
6757edfe
MM
2385 equivalent one, if it is replaced via a call to duplicate_decls.
2386
2387 If IS_FRIEND is non-zero, DECL is a friend declaration. */
3ac3d9ea
MM
2388
2389tree
6757edfe 2390push_template_decl_real (decl, is_friend)
9a3b49ac 2391 tree decl;
6757edfe 2392 int is_friend;
9a3b49ac
MS
2393{
2394 tree tmpl;
f84b4be9 2395 tree args;
9a3b49ac 2396 tree info;
f84b4be9
JM
2397 tree ctx;
2398 int primary;
6ba89f8e 2399 int is_partial;
cfe507be 2400 int new_template_p = 0;
6ba89f8e
MM
2401
2402 /* See if this is a partial specialization. */
9188c363 2403 is_partial = (DECL_IMPLICIT_TYPEDEF_P (decl)
6ba89f8e 2404 && TREE_CODE (TREE_TYPE (decl)) != ENUMERAL_TYPE
370af2d5 2405 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)));
6757edfe
MM
2406
2407 is_friend |= (TREE_CODE (decl) == FUNCTION_DECL && DECL_FRIEND_P (decl));
f84b4be9
JM
2408
2409 if (is_friend)
2410 /* For a friend, we want the context of the friend function, not
2411 the type of which it is a friend. */
2412 ctx = DECL_CONTEXT (decl);
4f1c5b7d
MM
2413 else if (CP_DECL_CONTEXT (decl)
2414 && TREE_CODE (CP_DECL_CONTEXT (decl)) != NAMESPACE_DECL)
f84b4be9
JM
2415 /* In the case of a virtual function, we want the class in which
2416 it is defined. */
4f1c5b7d 2417 ctx = CP_DECL_CONTEXT (decl);
f84b4be9
JM
2418 else
2419 /* Otherwise, if we're currently definining some class, the DECL
2420 is assumed to be a member of the class. */
9188c363 2421 ctx = current_scope ();
f84b4be9 2422
2c73f9f5
ML
2423 if (ctx && TREE_CODE (ctx) == NAMESPACE_DECL)
2424 ctx = NULL_TREE;
2425
2426 if (!DECL_CONTEXT (decl))
cb0dbb9a 2427 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
2c73f9f5 2428
6ba89f8e 2429 /* See if this is a primary template. */
74b846e0 2430 primary = template_parm_scope_p ();
9a3b49ac 2431
83566abf
JM
2432 if (primary)
2433 {
2434 if (current_lang_name == lang_name_c)
8251199e 2435 cp_error ("template with C linkage");
4ce3d537
MM
2436 else if (TREE_CODE (decl) == TYPE_DECL
2437 && ANON_AGGRNAME_P (DECL_NAME (decl)))
8251199e 2438 cp_error ("template class without a name");
2aaf816d
JM
2439 else if ((DECL_IMPLICIT_TYPEDEF_P (decl)
2440 && CLASS_TYPE_P (TREE_TYPE (decl)))
2441 || (TREE_CODE (decl) == VAR_DECL && ctx && CLASS_TYPE_P (ctx))
2442 || TREE_CODE (decl) == FUNCTION_DECL)
2443 /* OK */;
2444 else
4ce3d537 2445 cp_error ("template declaration of `%#D'", decl);
83566abf
JM
2446 }
2447
6ba89f8e
MM
2448 /* Check to see that the rules regarding the use of default
2449 arguments are not being violated. */
2450 check_default_tmpl_args (decl, current_template_parms,
2451 primary, is_partial);
73aad9b9 2452
6ba89f8e
MM
2453 if (is_partial)
2454 return process_partial_specialization (decl);
d32789d8 2455
9a3b49ac
MS
2456 args = current_template_args ();
2457
f84b4be9
JM
2458 if (!ctx
2459 || TREE_CODE (ctx) == FUNCTION_DECL
2460 || TYPE_BEING_DEFINED (ctx)
2461 || (is_friend && !DECL_TEMPLATE_INFO (decl)))
8d08fdba 2462 {
75650646 2463 if (DECL_LANG_SPECIFIC (decl)
f84b4be9
JM
2464 && DECL_TEMPLATE_INFO (decl)
2465 && DECL_TI_TEMPLATE (decl))
2466 tmpl = DECL_TI_TEMPLATE (decl);
1c10870d
AS
2467 /* If DECL is a TYPE_DECL for a class-template, then there won't
2468 be DECL_LANG_SPECIFIC. The information equivalent to
2469 DECL_TEMPLATE_INFO is found in TYPE_TEMPLATE_INFO instead. */
2470 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
2471 && TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
2472 && TYPE_TI_TEMPLATE (TREE_TYPE (decl)))
2473 {
2474 /* Since a template declaration already existed for this
2475 class-type, we must be redeclaring it here. Make sure
2476 that the redeclaration is legal. */
2477 redeclare_class_template (TREE_TYPE (decl),
2478 current_template_parms);
2479 /* We don't need to create a new TEMPLATE_DECL; just use the
2480 one we already had. */
2481 tmpl = TYPE_TI_TEMPLATE (TREE_TYPE (decl));
2482 }
f84b4be9 2483 else
786b5245 2484 {
f84b4be9 2485 tmpl = build_template_decl (decl, current_template_parms);
cfe507be
MM
2486 new_template_p = 1;
2487
f84b4be9
JM
2488 if (DECL_LANG_SPECIFIC (decl)
2489 && DECL_TEMPLATE_SPECIALIZATION (decl))
2490 {
2491 /* A specialization of a member template of a template
2492 class. */
2493 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
2494 DECL_TEMPLATE_INFO (tmpl) = DECL_TEMPLATE_INFO (decl);
2495 DECL_TEMPLATE_INFO (decl) = NULL_TREE;
2496 }
786b5245 2497 }
8d08fdba
MS
2498 }
2499 else
2500 {
e1a5ccf7 2501 tree a, t, current, parms;
ba4f4e5d 2502 int i;
6633d636 2503
6b9ab5cc
MM
2504 if (TREE_CODE (decl) == TYPE_DECL)
2505 {
ed44da02
MM
2506 if ((IS_AGGR_TYPE_CODE (TREE_CODE (TREE_TYPE (decl)))
2507 || TREE_CODE (TREE_TYPE (decl)) == ENUMERAL_TYPE)
2508 && TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
2509 && TYPE_TI_TEMPLATE (TREE_TYPE (decl)))
2510 tmpl = TYPE_TI_TEMPLATE (TREE_TYPE (decl));
6b9ab5cc
MM
2511 else
2512 {
8251199e 2513 cp_error ("`%D' does not declare a template type", decl);
6b9ab5cc
MM
2514 return decl;
2515 }
2516 }
fc378698 2517 else if (! DECL_TEMPLATE_INFO (decl))
c91a56d2 2518 {
8251199e 2519 cp_error ("template definition of non-template `%#D'", decl);
3ac3d9ea 2520 return decl;
c91a56d2 2521 }
8d08fdba 2522 else
5566b478 2523 tmpl = DECL_TI_TEMPLATE (decl);
98c1c668 2524
e1a5ccf7
JM
2525 if (is_member_template (tmpl)
2526 && DECL_FUNCTION_TEMPLATE_P (tmpl)
2527 && DECL_TEMPLATE_INFO (decl) && DECL_TI_ARGS (decl)
2528 && DECL_TEMPLATE_SPECIALIZATION (decl))
98c1c668 2529 {
e1a5ccf7
JM
2530 tree new_tmpl;
2531
2532 /* The declaration is a specialization of a member
2533 template, declared outside the class. Therefore, the
2534 innermost template arguments will be NULL, so we
2535 replace them with the arguments determined by the
2536 earlier call to check_explicit_specialization. */
2537 args = DECL_TI_ARGS (decl);
2538
2539 new_tmpl
2540 = build_template_decl (decl, current_template_parms);
2541 DECL_TEMPLATE_RESULT (new_tmpl) = decl;
2542 TREE_TYPE (new_tmpl) = TREE_TYPE (decl);
2543 DECL_TI_TEMPLATE (decl) = new_tmpl;
2544 SET_DECL_TEMPLATE_SPECIALIZATION (new_tmpl);
e1b3e07d
MM
2545 DECL_TEMPLATE_INFO (new_tmpl)
2546 = tree_cons (tmpl, args, NULL_TREE);
e1a5ccf7 2547
f9a7ae04
MM
2548 register_specialization (new_tmpl,
2549 most_general_template (tmpl),
2550 args);
e1a5ccf7 2551 return decl;
98c1c668 2552 }
98c1c668 2553
e1a5ccf7 2554 /* Make sure the template headers we got make sense. */
6633d636 2555
e1a5ccf7
JM
2556 parms = DECL_TEMPLATE_PARMS (tmpl);
2557 i = TMPL_PARMS_DEPTH (parms);
2558 if (TMPL_ARGS_DEPTH (args) != i)
98c1c668 2559 {
e1a5ccf7
JM
2560 cp_error ("expected %d levels of template parms for `%#D', got %d",
2561 i, decl, TMPL_ARGS_DEPTH (args));
98c1c668 2562 }
e1a5ccf7
JM
2563 else
2564 for (current = decl; i > 0; --i, parms = TREE_CHAIN (parms))
2565 {
2566 a = TMPL_ARGS_LEVEL (args, i);
2567 t = INNERMOST_TEMPLATE_PARMS (parms);
2568
2569 if (TREE_VEC_LENGTH (t) != TREE_VEC_LENGTH (a))
2570 {
2571 if (current == decl)
2572 cp_error ("got %d template parameters for `%#D'",
2573 TREE_VEC_LENGTH (a), decl);
2574 else
2575 cp_error ("got %d template parameters for `%#T'",
2576 TREE_VEC_LENGTH (a), current);
2577 cp_error (" but %d required", TREE_VEC_LENGTH (t));
2578 }
98c1c668 2579
e1a5ccf7
JM
2580 /* Perhaps we should also check that the parms are used in the
2581 appropriate qualifying scopes in the declarator? */
6633d636 2582
e1a5ccf7
JM
2583 if (current == decl)
2584 current = ctx;
2585 else
2586 current = TYPE_CONTEXT (current);
2587 }
5566b478 2588 }
8d08fdba 2589
5566b478
MS
2590 DECL_TEMPLATE_RESULT (tmpl) = decl;
2591 TREE_TYPE (tmpl) = TREE_TYPE (decl);
8d08fdba 2592
36a117a5
MM
2593 /* Push template declarations for global functions and types. Note
2594 that we do not try to push a global template friend declared in a
2595 template class; such a thing may well depend on the template
39c01e4c 2596 parameters of the class. */
cfe507be 2597 if (new_template_p && !ctx
36a117a5 2598 && !(is_friend && template_class_depth (current_class_type) > 0))
2c73f9f5 2599 tmpl = pushdecl_namespace_level (tmpl);
8d08fdba 2600
5566b478 2601 if (primary)
6757edfe 2602 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
5566b478 2603
e1b3e07d 2604 info = tree_cons (tmpl, args, NULL_TREE);
5566b478 2605
9188c363 2606 if (DECL_IMPLICIT_TYPEDEF_P (decl))
8d08fdba 2607 {
ed44da02
MM
2608 SET_TYPE_TEMPLATE_INFO (TREE_TYPE (tmpl), info);
2609 if ((!ctx || TREE_CODE (ctx) != FUNCTION_DECL)
2610 && TREE_CODE (TREE_TYPE (decl)) != ENUMERAL_TYPE)
75650646 2611 DECL_NAME (decl) = classtype_mangled_name (TREE_TYPE (decl));
51c184be 2612 }
2aaf816d 2613 else if (DECL_LANG_SPECIFIC (decl))
5566b478 2614 DECL_TEMPLATE_INFO (decl) = info;
3ac3d9ea
MM
2615
2616 return DECL_TEMPLATE_RESULT (tmpl);
8d08fdba
MS
2617}
2618
6757edfe
MM
2619tree
2620push_template_decl (decl)
2621 tree decl;
2622{
2623 return push_template_decl_real (decl, 0);
2624}
2625
2626/* Called when a class template TYPE is redeclared with the indicated
2627 template PARMS, e.g.:
7fe6899f
MM
2628
2629 template <class T> struct S;
2630 template <class T> struct S {}; */
2631
2632void
6757edfe 2633redeclare_class_template (type, parms)
7fe6899f 2634 tree type;
6757edfe 2635 tree parms;
7fe6899f 2636{
3d7de1fa 2637 tree tmpl;
6757edfe 2638 tree tmpl_parms;
7fe6899f
MM
2639 int i;
2640
3d7de1fa
MM
2641 if (!TYPE_TEMPLATE_INFO (type))
2642 {
2643 cp_error ("`%T' is not a template type", type);
2644 return;
2645 }
2646
2647 tmpl = TYPE_TI_TEMPLATE (type);
7fe6899f
MM
2648 if (!PRIMARY_TEMPLATE_P (tmpl))
2649 /* The type is nested in some template class. Nothing to worry
2650 about here; there are no new template parameters for the nested
2651 type. */
2652 return;
2653
6757edfe
MM
2654 parms = INNERMOST_TEMPLATE_PARMS (parms);
2655 tmpl_parms = DECL_INNERMOST_TEMPLATE_PARMS (tmpl);
2656
7fe6899f
MM
2657 if (TREE_VEC_LENGTH (parms) != TREE_VEC_LENGTH (tmpl_parms))
2658 {
8251199e
JM
2659 cp_error_at ("previous declaration `%D'", tmpl);
2660 cp_error ("used %d template parameter%s instead of %d",
7fe6899f
MM
2661 TREE_VEC_LENGTH (tmpl_parms),
2662 TREE_VEC_LENGTH (tmpl_parms) == 1 ? "" : "s",
2663 TREE_VEC_LENGTH (parms));
2664 return;
2665 }
2666
2667 for (i = 0; i < TREE_VEC_LENGTH (tmpl_parms); ++i)
2668 {
2669 tree tmpl_parm = TREE_VALUE (TREE_VEC_ELT (tmpl_parms, i));
2670 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
2671 tree tmpl_default = TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i));
2672 tree parm_default = TREE_PURPOSE (TREE_VEC_ELT (parms, i));
2673
2674 if (TREE_CODE (tmpl_parm) != TREE_CODE (parm))
2675 {
8251199e
JM
2676 cp_error_at ("template parameter `%#D'", tmpl_parm);
2677 cp_error ("redeclared here as `%#D'", parm);
7fe6899f
MM
2678 return;
2679 }
2680
2681 if (tmpl_default != NULL_TREE && parm_default != NULL_TREE)
2682 {
2683 /* We have in [temp.param]:
2684
2685 A template-parameter may not be given default arguments
2686 by two different declarations in the same scope. */
8251199e
JM
2687 cp_error ("redefinition of default argument for `%#D'", parm);
2688 cp_error_at (" original definition appeared here", tmpl_parm);
7fe6899f
MM
2689 return;
2690 }
2691
2692 if (parm_default != NULL_TREE)
2693 /* Update the previous template parameters (which are the ones
2694 that will really count) with the new default value. */
2695 TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i)) = parm_default;
7ce74c5e
MM
2696 else if (tmpl_default != NULL_TREE)
2697 /* Update the new parameters, too; they'll be used as the
2698 parameters for any members. */
2699 TREE_PURPOSE (TREE_VEC_ELT (parms, i)) = tmpl_default;
7fe6899f
MM
2700 }
2701}
75650646 2702
75650646
MM
2703/* Attempt to convert the non-type template parameter EXPR to the
2704 indicated TYPE. If the conversion is successful, return the
2705 converted value. If the conversion is unsuccesful, return
2706 NULL_TREE if we issued an error message, or error_mark_node if we
2707 did not. We issue error messages for out-and-out bad template
2708 parameters, but not simply because the conversion failed, since we
2709 might be just trying to do argument deduction. By the time this
2710 function is called, neither TYPE nor EXPR may make use of template
2711 parameters. */
2712
2713static tree
e1467ff2 2714convert_nontype_argument (type, expr)
75650646
MM
2715 tree type;
2716 tree expr;
2717{
2718 tree expr_type = TREE_TYPE (expr);
2719
2720 /* A template-argument for a non-type, non-template
2721 template-parameter shall be one of:
2722
2723 --an integral constant-expression of integral or enumeration
2724 type; or
2725
2726 --the name of a non-type template-parameter; or
2727
2728 --the name of an object or function with external linkage,
2729 including function templates and function template-ids but
86052cc3 2730 excluding non-static class members, expressed as id-expression;
75650646
MM
2731 or
2732
2733 --the address of an object or function with external linkage,
2734 including function templates and function template-ids but
2735 excluding non-static class members, expressed as & id-expression
2736 where the & is optional if the name refers to a function or
2737 array; or
2738
2739 --a pointer to member expressed as described in _expr.unary.op_. */
2740
638dd8fc
MM
2741 /* An integral constant-expression can include const variables or
2742 enumerators. Simplify things by folding them to their values,
2743 unless we're about to bind the declaration to a reference
2744 parameter. */
fc611ce0 2745 if (INTEGRAL_TYPE_P (expr_type)
638dd8fc 2746 && TREE_CODE (type) != REFERENCE_TYPE)
86052cc3
JM
2747 expr = decl_constant_value (expr);
2748
7bf2682f
MM
2749 if (is_overloaded_fn (expr))
2750 /* OK for now. We'll check that it has external linkage later.
2751 Check this first since if expr_type is the unknown_type_node
2752 we would otherwise complain below. */
2753 ;
e08a8f45
MM
2754 else if (TYPE_PTRMEM_P (expr_type)
2755 || TYPE_PTRMEMFUNC_P (expr_type))
2756 {
2757 if (TREE_CODE (expr) != PTRMEM_CST)
2758 goto bad_argument;
2759 }
f3400fe2 2760 else if (TYPE_PTR_P (expr_type)
e08a8f45 2761 || TYPE_PTRMEM_P (expr_type)
f3400fe2
JM
2762 || TREE_CODE (expr_type) == ARRAY_TYPE
2763 || TREE_CODE (type) == REFERENCE_TYPE
75650646
MM
2764 /* If expr is the address of an overloaded function, we
2765 will get the unknown_type_node at this point. */
2766 || expr_type == unknown_type_node)
2767 {
2768 tree referent;
49bf0d6f
MM
2769 tree e = expr;
2770 STRIP_NOPS (e);
75650646 2771
0dc09a61
MM
2772 if (TREE_CODE (expr_type) == ARRAY_TYPE
2773 || (TREE_CODE (type) == REFERENCE_TYPE
2774 && TREE_CODE (e) != ADDR_EXPR))
f3400fe2
JM
2775 referent = e;
2776 else
75650646 2777 {
f3400fe2
JM
2778 if (TREE_CODE (e) != ADDR_EXPR)
2779 {
2780 bad_argument:
2781 cp_error ("`%E' is not a valid template argument", expr);
e08a8f45
MM
2782 if (TYPE_PTR_P (expr_type))
2783 {
2784 if (TREE_CODE (TREE_TYPE (expr_type)) == FUNCTION_TYPE)
2785 cp_error ("it must be the address of a function with external linkage");
2786 else
2787 cp_error ("it must be the address of an object with external linkage");
2788 }
2789 else if (TYPE_PTRMEM_P (expr_type)
2790 || TYPE_PTRMEMFUNC_P (expr_type))
2791 cp_error ("it must be a pointer-to-member of the form `&X::Y'");
2792
f3400fe2
JM
2793 return NULL_TREE;
2794 }
2795
2796 referent = TREE_OPERAND (e, 0);
2797 STRIP_NOPS (referent);
75650646
MM
2798 }
2799
75650646
MM
2800 if (TREE_CODE (referent) == STRING_CST)
2801 {
b4f4233d 2802 cp_error ("string literal %E is not a valid template argument because it is the address of an object with static linkage",
75650646 2803 referent);
75650646
MM
2804 return NULL_TREE;
2805 }
2806
2807 if (is_overloaded_fn (referent))
2808 /* We'll check that it has external linkage later. */
2809 ;
2810 else if (TREE_CODE (referent) != VAR_DECL)
2811 goto bad_argument;
2812 else if (!TREE_PUBLIC (referent))
2813 {
8251199e 2814 cp_error ("address of non-extern `%E' cannot be used as template argument", referent);
75650646
MM
2815 return error_mark_node;
2816 }
2817 }
f3400fe2
JM
2818 else if (INTEGRAL_TYPE_P (expr_type)
2819 || TYPE_PTRMEM_P (expr_type)
2820 || TYPE_PTRMEMFUNC_P (expr_type)
2821 /* The next two are g++ extensions. */
2822 || TREE_CODE (expr_type) == REAL_TYPE
2823 || TREE_CODE (expr_type) == COMPLEX_TYPE)
75650646 2824 {
f3400fe2
JM
2825 if (! TREE_CONSTANT (expr))
2826 {
2827 non_constant:
2828 cp_error ("non-constant `%E' cannot be used as template argument",
2829 expr);
2830 return NULL_TREE;
2831 }
75650646 2832 }
75650646
MM
2833 else
2834 {
8251199e 2835 cp_error ("object `%E' cannot be used as template argument", expr);
75650646
MM
2836 return NULL_TREE;
2837 }
2838
2839 switch (TREE_CODE (type))
2840 {
2841 case INTEGER_TYPE:
2842 case BOOLEAN_TYPE:
2843 case ENUMERAL_TYPE:
2844 /* For a non-type template-parameter of integral or enumeration
2845 type, integral promotions (_conv.prom_) and integral
2846 conversions (_conv.integral_) are applied. */
2847 if (!INTEGRAL_TYPE_P (expr_type))
2848 return error_mark_node;
2849
2850 /* It's safe to call digest_init in this case; we know we're
2851 just converting one integral constant expression to another. */
db02b6b9 2852 expr = digest_init (type, expr, (tree*) 0);
75650646 2853
db02b6b9 2854 if (TREE_CODE (expr) != INTEGER_CST)
f3400fe2 2855 /* Curiously, some TREE_CONSTANT integral expressions do not
db02b6b9
MM
2856 simplify to integer constants. For example, `3 % 0',
2857 remains a TRUNC_MOD_EXPR. */
2858 goto non_constant;
2859
2860 return expr;
2861
abff8e06
JM
2862 case REAL_TYPE:
2863 case COMPLEX_TYPE:
2864 /* These are g++ extensions. */
2865 if (TREE_CODE (expr_type) != TREE_CODE (type))
2866 return error_mark_node;
2867
db02b6b9
MM
2868 expr = digest_init (type, expr, (tree*) 0);
2869
2870 if (TREE_CODE (expr) != REAL_CST)
2871 goto non_constant;
2872
2873 return expr;
abff8e06 2874
75650646
MM
2875 case POINTER_TYPE:
2876 {
2877 tree type_pointed_to = TREE_TYPE (type);
2878
2879 if (TYPE_PTRMEM_P (type))
93aa462d
MM
2880 {
2881 tree e;
2882
2883 /* For a non-type template-parameter of type pointer to data
2884 member, qualification conversions (_conv.qual_) are
2885 applied. */
2886 e = perform_qualification_conversions (type, expr);
2887 if (TREE_CODE (e) == NOP_EXPR)
87533b37
MM
2888 /* The call to perform_qualification_conversions will
2889 insert a NOP_EXPR over EXPR to do express conversion,
2890 if necessary. But, that will confuse us if we use
2891 this (converted) template parameter to instantiate
2892 another template; then the thing will not look like a
2893 valid template argument. So, just make a new
2894 constant, of the appropriate type. */
2895 e = make_ptrmem_cst (type, PTRMEM_CST_MEMBER (expr));
93aa462d
MM
2896 return e;
2897 }
75650646
MM
2898 else if (TREE_CODE (type_pointed_to) == FUNCTION_TYPE)
2899 {
2900 /* For a non-type template-parameter of type pointer to
2901 function, only the function-to-pointer conversion
2902 (_conv.func_) is applied. If the template-argument
2903 represents a set of overloaded functions (or a pointer to
2904 such), the matching function is selected from the set
2905 (_over.over_). */
2906 tree fns;
2907 tree fn;
2908
7bf2682f 2909 if (TREE_CODE (expr) == ADDR_EXPR)
75650646
MM
2910 fns = TREE_OPERAND (expr, 0);
2911 else
2912 fns = expr;
2913
a05273d4 2914 fn = instantiate_type (type_pointed_to, fns, 0);
75650646
MM
2915
2916 if (fn == error_mark_node)
2917 return error_mark_node;
2918
2919 if (!TREE_PUBLIC (fn))
2920 {
2921 if (really_overloaded_fn (fns))
2922 return error_mark_node;
2923 else
2924 goto bad_argument;
2925 }
2926
2927 expr = build_unary_op (ADDR_EXPR, fn, 0);
2928
3bfdc719 2929 my_friendly_assert (same_type_p (type, TREE_TYPE (expr)),
75650646
MM
2930 0);
2931 return expr;
2932 }
2933 else
2934 {
2935 /* For a non-type template-parameter of type pointer to
2936 object, qualification conversions (_conv.qual_) and the
2937 array-to-pointer conversion (_conv.array_) are applied.
2938 [Note: In particular, neither the null pointer conversion
2939 (_conv.ptr_) nor the derived-to-base conversion
2940 (_conv.ptr_) are applied. Although 0 is a valid
2941 template-argument for a non-type template-parameter of
2942 integral type, it is not a valid template-argument for a
e1467ff2
MM
2943 non-type template-parameter of pointer type.]
2944
2945 The call to decay_conversion performs the
2946 array-to-pointer conversion, if appropriate. */
2947 expr = decay_conversion (expr);
75650646
MM
2948
2949 if (expr == error_mark_node)
2950 return error_mark_node;
2951 else
2952 return perform_qualification_conversions (type, expr);
2953 }
2954 }
2955 break;
2956
2957 case REFERENCE_TYPE:
2958 {
2959 tree type_referred_to = TREE_TYPE (type);
2960
0dc09a61
MM
2961 /* If this expression already has reference type, get the
2962 underling object. */
2963 if (TREE_CODE (expr_type) == REFERENCE_TYPE)
2964 {
2965 my_friendly_assert (TREE_CODE (expr) == ADDR_EXPR, 20000604);
2966 expr = TREE_OPERAND (expr, 0);
2967 expr_type = TREE_TYPE (expr);
2968 }
2969
75650646
MM
2970 if (TREE_CODE (type_referred_to) == FUNCTION_TYPE)
2971 {
2972 /* For a non-type template-parameter of type reference to
39c01e4c
MM
2973 function, no conversions apply. If the
2974 template-argument represents a set of overloaded
2975 functions, the matching function is selected from the
2976 set (_over.over_). */
75650646
MM
2977 tree fn;
2978
0dc09a61 2979 fn = instantiate_type (type_referred_to, expr, 0);
e6e174e5
JM
2980
2981 if (fn == error_mark_node)
2982 return error_mark_node;
75650646
MM
2983
2984 if (!TREE_PUBLIC (fn))
2985 {
0dc09a61 2986 if (really_overloaded_fn (expr))
75650646
MM
2987 /* Don't issue an error here; we might get a different
2988 function if the overloading had worked out
2989 differently. */
2990 return error_mark_node;
2991 else
2992 goto bad_argument;
2993 }
2994
3bfdc719
MM
2995 my_friendly_assert (same_type_p (type_referred_to,
2996 TREE_TYPE (fn)),
75650646
MM
2997 0);
2998
0dc09a61 2999 expr = fn;
75650646
MM
3000 }
3001 else
3002 {
3003 /* For a non-type template-parameter of type reference to
3004 object, no conversions apply. The type referred to by the
3005 reference may be more cv-qualified than the (otherwise
3006 identical) type of the template-argument. The
3007 template-parameter is bound directly to the
3008 template-argument, which must be an lvalue. */
0dc09a61
MM
3009 if (!same_type_p (TYPE_MAIN_VARIANT (expr_type),
3010 TYPE_MAIN_VARIANT (type_referred_to))
91063b51
MM
3011 || !at_least_as_qualified_p (type_referred_to,
3012 expr_type)
75650646 3013 || !real_lvalue_p (expr))
fd74ca0b 3014 return error_mark_node;
75650646 3015 }
0dc09a61
MM
3016
3017 mark_addressable (expr);
3018 return build1 (ADDR_EXPR, type, expr);
75650646
MM
3019 }
3020 break;
3021
3022 case RECORD_TYPE:
3023 {
410c2fba
KL
3024 if (!TYPE_PTRMEMFUNC_P (type))
3025 /* This handles templates like
3026 template<class T, T t> void f();
3027 when T is substituted with any class. The second template
3028 parameter becomes invalid and the template candidate is
3029 rejected. */
3030 return error_mark_node;
75650646
MM
3031
3032 /* For a non-type template-parameter of type pointer to member
3033 function, no conversions apply. If the template-argument
3034 represents a set of overloaded member functions, the
3035 matching member function is selected from the set
3036 (_over.over_). */
3037
3038 if (!TYPE_PTRMEMFUNC_P (expr_type) &&
3039 expr_type != unknown_type_node)
3040 return error_mark_node;
3041
e08a8f45 3042 if (TREE_CODE (expr) == PTRMEM_CST)
75650646
MM
3043 {
3044 /* A ptr-to-member constant. */
3bfdc719 3045 if (!same_type_p (type, expr_type))
75650646
MM
3046 return error_mark_node;
3047 else
3048 return expr;
3049 }
3050
3051 if (TREE_CODE (expr) != ADDR_EXPR)
3052 return error_mark_node;
3053
d8f8dca1 3054 expr = instantiate_type (type, expr, 0);
75650646 3055
d8f8dca1 3056 if (expr == error_mark_node)
75650646
MM
3057 return error_mark_node;
3058
3bfdc719 3059 my_friendly_assert (same_type_p (type, TREE_TYPE (expr)),
75650646
MM
3060 0);
3061 return expr;
3062 }
3063 break;
3064
3065 default:
3066 /* All non-type parameters must have one of these types. */
3067 my_friendly_abort (0);
3068 break;
3069 }
3070
3071 return error_mark_node;
3072}
3073
744fac59
KL
3074/* Return 1 if PARM_PARMS and ARG_PARMS matches using rule for
3075 template template parameters. Both PARM_PARMS and ARG_PARMS are
3076 vectors of TREE_LIST nodes containing TYPE_DECL, TEMPLATE_DECL
3077 or PARM_DECL.
3078
3079 ARG_PARMS may contain more parameters than PARM_PARMS. If this is
3080 the case, then extra parameters must have default arguments.
3081
3082 Consider the example:
3083 template <class T, class Allocator = allocator> class vector;
3084 template<template <class U> class TT> class C;
3085
3086 C<vector> is a valid instantiation. PARM_PARMS for the above code
3087 contains a TYPE_DECL (for U), ARG_PARMS contains two TYPE_DECLs (for
3088 T and Allocator) and OUTER_ARGS contains the argument that is used to
3089 substitute the TT parameter. */
3090
3091static int
4393e105
MM
3092coerce_template_template_parms (parm_parms, arg_parms, complain,
3093 in_decl, outer_args)
3094 tree parm_parms, arg_parms;
3095 int complain;
3096 tree in_decl, outer_args;
744fac59
KL
3097{
3098 int nparms, nargs, i;
3099 tree parm, arg;
3100
3101 my_friendly_assert (TREE_CODE (parm_parms) == TREE_VEC, 0);
3102 my_friendly_assert (TREE_CODE (arg_parms) == TREE_VEC, 0);
3103
3104 nparms = TREE_VEC_LENGTH (parm_parms);
3105 nargs = TREE_VEC_LENGTH (arg_parms);
3106
3107 /* The rule here is opposite of coerce_template_parms. */
3108 if (nargs < nparms
3109 || (nargs > nparms
3110 && TREE_PURPOSE (TREE_VEC_ELT (arg_parms, nparms)) == NULL_TREE))
3111 return 0;
3112
3113 for (i = 0; i < nparms; ++i)
3114 {
3115 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
3116 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
3117
3118 if (arg == NULL_TREE || arg == error_mark_node
3119 || parm == NULL_TREE || parm == error_mark_node)
3120 return 0;
3121
3122 if (TREE_CODE (arg) != TREE_CODE (parm))
3123 return 0;
3124
3125 switch (TREE_CODE (parm))
3126 {
3127 case TYPE_DECL:
3128 break;
3129
3130 case TEMPLATE_DECL:
3131 /* We encounter instantiations of templates like
3132 template <template <template <class> class> class TT>
3133 class C; */
700466c2
JM
3134 {
3135 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
3136 tree argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
3137
3138 if (!coerce_template_template_parms (parmparm, argparm,
4393e105
MM
3139 complain, in_decl,
3140 outer_args))
700466c2
JM
3141 return 0;
3142 }
3143 break;
744fac59
KL
3144
3145 case PARM_DECL:
3146 /* The tsubst call is used to handle cases such as
3147 template <class T, template <T> class TT> class D;
3148 i.e. the parameter list of TT depends on earlier parameters. */
4393e105
MM
3149 if (!same_type_p (tsubst (TREE_TYPE (parm), outer_args,
3150 complain, in_decl),
3bfdc719 3151 TREE_TYPE (arg)))
744fac59
KL
3152 return 0;
3153 break;
3154
3155 default:
3156 my_friendly_abort (0);
3157 }
3158 }
3159 return 1;
3160}
3161
8b5b8b7c
MM
3162/* Convert the indicated template ARG as necessary to match the
3163 indicated template PARM. Returns the converted ARG, or
3164 error_mark_node if the conversion was unsuccessful. Error messages
3165 are issued if COMPLAIN is non-zero. This conversion is for the Ith
3166 parameter in the parameter list. ARGS is the full set of template
3167 arguments deduced so far. */
3168
3169static tree
3170convert_template_argument (parm, arg, args, complain, i, in_decl)
3171 tree parm;
3172 tree arg;
3173 tree args;
3174 int complain;
3175 int i;
3176 tree in_decl;
3177{
3178 tree val;
3179 tree inner_args;
3180 int is_type, requires_type, is_tmpl_type, requires_tmpl_type;
3181
f9a7ae04 3182 inner_args = INNERMOST_TEMPLATE_ARGS (args);
8b5b8b7c
MM
3183
3184 if (TREE_CODE (arg) == TREE_LIST
3185 && TREE_TYPE (arg) != NULL_TREE
3186 && TREE_CODE (TREE_TYPE (arg)) == OFFSET_TYPE)
3187 {
3188 /* The template argument was the name of some
3189 member function. That's usually
3190 illegal, but static members are OK. In any
3191 case, grab the underlying fields/functions
3192 and issue an error later if required. */
3193 arg = TREE_VALUE (arg);
3194 TREE_TYPE (arg) = unknown_type_node;
3195 }
3196
3197 requires_tmpl_type = TREE_CODE (parm) == TEMPLATE_DECL;
3198 requires_type = (TREE_CODE (parm) == TYPE_DECL
3199 || requires_tmpl_type);
3200
3201 /* Check if it is a class template. If REQUIRES_TMPL_TYPE is true,
3202 we also accept implicitly created TYPE_DECL as a valid argument.
3203 This is necessary to handle the case where we pass a template name
3204 to a template template parameter in a scope where we've derived from
3205 in instantiation of that template, so the template name refers to that
3206 instantiation. We really ought to handle this better. */
3207 is_tmpl_type
3208 = ((TREE_CODE (arg) == TEMPLATE_DECL
3209 && TREE_CODE (DECL_TEMPLATE_RESULT (arg)) == TYPE_DECL)
3210 || (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
7ddedda4 3211 && !TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (arg))
8b5b8b7c
MM
3212 || (TREE_CODE (arg) == RECORD_TYPE
3213 && CLASSTYPE_TEMPLATE_INFO (arg)
3214 && TREE_CODE (TYPE_NAME (arg)) == TYPE_DECL
3215 && DECL_ARTIFICIAL (TYPE_NAME (arg))
3216 && requires_tmpl_type
b54ccf71 3217 && is_base_of_enclosing_class (arg, current_class_type)));
8b5b8b7c
MM
3218 if (is_tmpl_type && TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
3219 arg = TYPE_STUB_DECL (arg);
3220 else if (is_tmpl_type && TREE_CODE (arg) == RECORD_TYPE)
3221 arg = CLASSTYPE_TI_TEMPLATE (arg);
3222
2f939d94 3223 is_type = TYPE_P (arg) || is_tmpl_type;
8b5b8b7c
MM
3224
3225 if (requires_type && ! is_type && TREE_CODE (arg) == SCOPE_REF
3226 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_TYPE_PARM)
3227 {
b4f4233d 3228 cp_pedwarn ("to refer to a type member of a template parameter, use `typename %E'", arg);
8b5b8b7c
MM
3229
3230 arg = make_typename_type (TREE_OPERAND (arg, 0),
3baa501d
MM
3231 TREE_OPERAND (arg, 1),
3232 complain);
8b5b8b7c
MM
3233 is_type = 1;
3234 }
3235 if (is_type != requires_type)
3236 {
3237 if (in_decl)
3238 {
3239 if (complain)
3240 {
8251199e 3241 cp_error ("type/value mismatch at argument %d in template parameter list for `%D'",
8b5b8b7c
MM
3242 i + 1, in_decl);
3243 if (is_type)
8251199e 3244 cp_error (" expected a constant of type `%T', got `%T'",
8b5b8b7c
MM
3245 TREE_TYPE (parm),
3246 (is_tmpl_type ? DECL_NAME (arg) : arg));
3247 else
8251199e 3248 cp_error (" expected a type, got `%E'", arg);
8b5b8b7c
MM
3249 }
3250 }
3251 return error_mark_node;
3252 }
3253 if (is_tmpl_type ^ requires_tmpl_type)
3254 {
3255 if (in_decl && complain)
3256 {
8251199e 3257 cp_error ("type/value mismatch at argument %d in template parameter list for `%D'",
8b5b8b7c
MM
3258 i + 1, in_decl);
3259 if (is_tmpl_type)
8251199e 3260 cp_error (" expected a type, got `%T'", DECL_NAME (arg));
8b5b8b7c 3261 else
8251199e 3262 cp_error (" expected a class template, got `%T'", arg);
8b5b8b7c
MM
3263 }
3264 return error_mark_node;
3265 }
3266
3267 if (is_type)
3268 {
3269 if (requires_tmpl_type)
3270 {
3271 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
3272 tree argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
3273
4393e105 3274 if (coerce_template_template_parms (parmparm, argparm, complain,
8b5b8b7c
MM
3275 in_decl, inner_args))
3276 {
3277 val = arg;
3278
3279 /* TEMPLATE_TEMPLATE_PARM node is preferred over
3280 TEMPLATE_DECL. */
3281 if (val != error_mark_node
3282 && DECL_TEMPLATE_TEMPLATE_PARM_P (val))
3283 val = TREE_TYPE (val);
3284 }
3285 else
3286 {
3287 if (in_decl && complain)
3288 {
8251199e 3289 cp_error ("type/value mismatch at argument %d in template parameter list for `%D'",
8b5b8b7c 3290 i + 1, in_decl);
8251199e 3291 cp_error (" expected a template of type `%D', got `%D'", parm, arg);
8b5b8b7c
MM
3292 }
3293
3294 val = error_mark_node;
3295 }
3296 }
3297 else
3298 {
3299 val = groktypename (arg);
3300 if (! processing_template_decl)
3301 {
3302 /* [basic.link]: A name with no linkage (notably, the
3303 name of a class or enumeration declared in a local
3304 scope) shall not be used to declare an entity with
3305 linkage. This implies that names with no linkage
3306 cannot be used as template arguments. */
3307 tree t = no_linkage_check (val);
3308 if (t)
3309 {
3310 if (ANON_AGGRNAME_P (TYPE_IDENTIFIER (t)))
8251199e
JM
3311 cp_pedwarn
3312 ("template-argument `%T' uses anonymous type", val);
8b5b8b7c 3313 else
8251199e
JM
3314 cp_error
3315 ("template-argument `%T' uses local type `%T'",
8b5b8b7c
MM
3316 val, t);
3317 return error_mark_node;
3318 }
3319 }
3320 }
3321 }
3322 else
3323 {
4393e105 3324 tree t = tsubst (TREE_TYPE (parm), args, complain, in_decl);
8b5b8b7c
MM
3325
3326 if (processing_template_decl)
3327 arg = maybe_fold_nontype_arg (arg);
3328
3329 if (!uses_template_parms (arg) && !uses_template_parms (t))
3330 /* We used to call digest_init here. However, digest_init
3331 will report errors, which we don't want when complain
3332 is zero. More importantly, digest_init will try too
3333 hard to convert things: for example, `0' should not be
3334 converted to pointer type at this point according to
3335 the standard. Accepting this is not merely an
3336 extension, since deciding whether or not these
3337 conversions can occur is part of determining which
3338 function template to call, or whether a given epxlicit
3339 argument specification is legal. */
3340 val = convert_nontype_argument (t, arg);
3341 else
3342 val = arg;
3343
3344 if (val == NULL_TREE)
3345 val = error_mark_node;
3346 else if (val == error_mark_node && complain)
8251199e 3347 cp_error ("could not convert template argument `%E' to `%T'",
8b5b8b7c
MM
3348 arg, t);
3349 }
3350
3351 return val;
3352}
3353
3354/* Convert all template arguments to their appropriate types, and
3355 return a vector containing the innermost resulting template
3356 arguments. If any error occurs, return error_mark_node, and, if
3357 COMPLAIN is non-zero, issue an error message. Some error messages
3358 are issued even if COMPLAIN is zero; for instance, if a template
3359 argument is composed from a local class.
75650646
MM
3360
3361 If REQUIRE_ALL_ARGUMENTS is non-zero, all arguments must be
3362 provided in ARGLIST, or else trailing parameters must have default
3363 values. If REQUIRE_ALL_ARGUMENTS is zero, we will attempt argument
6dfbb909 3364 deduction for any unspecified trailing arguments. */
de575009 3365
8d08fdba 3366static tree
8b5b8b7c 3367coerce_template_parms (parms, args, in_decl,
75650646 3368 complain,
744fac59 3369 require_all_arguments)
8b5b8b7c 3370 tree parms, args;
8d08fdba 3371 tree in_decl;
75650646
MM
3372 int complain;
3373 int require_all_arguments;
8d08fdba 3374{
a292b002 3375 int nparms, nargs, i, lost = 0;
e4a84209 3376 tree inner_args;
8b5b8b7c
MM
3377 tree new_args;
3378 tree new_inner_args;
a292b002 3379
f9a7ae04 3380 inner_args = INNERMOST_TEMPLATE_ARGS (args);
e4a84209 3381 nargs = NUM_TMPL_ARGS (inner_args);
a292b002
MS
3382 nparms = TREE_VEC_LENGTH (parms);
3383
3384 if (nargs > nparms
3385 || (nargs < nparms
75650646 3386 && require_all_arguments
a292b002 3387 && TREE_PURPOSE (TREE_VEC_ELT (parms, nargs)) == NULL_TREE))
8d08fdba 3388 {
75650646
MM
3389 if (complain)
3390 {
8251199e 3391 cp_error ("wrong number of template arguments (%d, should be %d)",
e4a84209 3392 nargs, nparms);
75650646
MM
3393
3394 if (in_decl)
8251199e 3395 cp_error_at ("provided for `%D'", in_decl);
75650646
MM
3396 }
3397
8d08fdba
MS
3398 return error_mark_node;
3399 }
3400
f31c0a32 3401 new_inner_args = make_tree_vec (nparms);
8b5b8b7c
MM
3402 new_args = add_outermost_template_args (args, new_inner_args);
3403 for (i = 0; i < nparms; i++)
8d08fdba 3404 {
8b5b8b7c
MM
3405 tree arg;
3406 tree parm;
e4a84209 3407
8b5b8b7c
MM
3408 /* Get the Ith template parameter. */
3409 parm = TREE_VEC_ELT (parms, i);
75650646 3410
8b5b8b7c
MM
3411 /* Calculate the Ith argument. */
3412 if (inner_args && TREE_CODE (inner_args) == TREE_LIST)
8d08fdba 3413 {
8b5b8b7c
MM
3414 arg = TREE_VALUE (inner_args);
3415 inner_args = TREE_CHAIN (inner_args);
8d08fdba 3416 }
8b5b8b7c
MM
3417 else if (i < nargs)
3418 arg = TREE_VEC_ELT (inner_args, i);
3419 /* If no template argument was supplied, look for a default
3420 value. */
3421 else if (TREE_PURPOSE (parm) == NULL_TREE)
3422 {
3423 /* There was no default value. */
3424 my_friendly_assert (!require_all_arguments, 0);
3425 break;
3426 }
3427 else if (TREE_CODE (TREE_VALUE (parm)) == TYPE_DECL)
4393e105 3428 arg = tsubst (TREE_PURPOSE (parm), new_args, complain, in_decl);
8b5b8b7c 3429 else
4393e105
MM
3430 arg = tsubst_expr (TREE_PURPOSE (parm), new_args, complain,
3431 in_decl);
e4a84209 3432
8b5b8b7c 3433 /* Now, convert the Ith argument, as necessary. */
75650646
MM
3434 if (arg == NULL_TREE)
3435 /* We're out of arguments. */
3436 {
3437 my_friendly_assert (!require_all_arguments, 0);
3438 break;
3439 }
8b5b8b7c 3440 else if (arg == error_mark_node)
75650646 3441 {
8251199e 3442 cp_error ("template argument %d is invalid", i + 1);
8b5b8b7c 3443 arg = error_mark_node;
8d08fdba 3444 }
8b5b8b7c
MM
3445 else
3446 arg = convert_template_argument (TREE_VALUE (parm),
3447 arg, new_args, complain, i,
3448 in_decl);
3449
3450 if (arg == error_mark_node)
8d08fdba 3451 lost++;
8b5b8b7c 3452 TREE_VEC_ELT (new_inner_args, i) = arg;
8d08fdba 3453 }
8b5b8b7c 3454
8d08fdba
MS
3455 if (lost)
3456 return error_mark_node;
8b5b8b7c
MM
3457
3458 return new_inner_args;
8d08fdba
MS
3459}
3460
34016c81
JM
3461/* Returns 1 if template args OT and NT are equivalent. */
3462
d8e178a0 3463static int
34016c81
JM
3464template_args_equal (ot, nt)
3465 tree ot, nt;
3466{
3467 if (nt == ot)
3468 return 1;
3469 if (TREE_CODE (nt) != TREE_CODE (ot))
3470 return 0;
3471 if (TREE_CODE (nt) == TREE_VEC)
3472 /* For member templates */
3473 return comp_template_args (ot, nt);
2f939d94 3474 else if (TYPE_P (ot))
3bfdc719 3475 return same_type_p (ot, nt);
34016c81
JM
3476 else
3477 return (cp_tree_equal (ot, nt) > 0);
3478}
3479
3480/* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets
f84b4be9
JM
3481 of template arguments. Returns 0 otherwise. */
3482
6757edfe 3483int
5566b478
MS
3484comp_template_args (oldargs, newargs)
3485 tree oldargs, newargs;
3486{
3487 int i;
3488
386b8a85
JM
3489 if (TREE_VEC_LENGTH (oldargs) != TREE_VEC_LENGTH (newargs))
3490 return 0;
3491
5566b478
MS
3492 for (i = 0; i < TREE_VEC_LENGTH (oldargs); ++i)
3493 {
3494 tree nt = TREE_VEC_ELT (newargs, i);
3495 tree ot = TREE_VEC_ELT (oldargs, i);
3496
34016c81 3497 if (! template_args_equal (ot, nt))
61a127b3 3498 return 0;
5566b478
MS
3499 }
3500 return 1;
3501}
3502
8d08fdba
MS
3503/* Given class template name and parameter list, produce a user-friendly name
3504 for the instantiation. */
e92cc029 3505
8d08fdba 3506static char *
36a117a5 3507mangle_class_name_for_template (name, parms, arglist)
8d08fdba
MS
3508 char *name;
3509 tree parms, arglist;
3510{
3511 static struct obstack scratch_obstack;
3512 static char *scratch_firstobj;
3513 int i, nparms;
8d08fdba
MS
3514
3515 if (!scratch_firstobj)
fc378698 3516 gcc_obstack_init (&scratch_obstack);
8d08fdba
MS
3517 else
3518 obstack_free (&scratch_obstack, scratch_firstobj);
fc378698 3519 scratch_firstobj = obstack_alloc (&scratch_obstack, 1);
8d08fdba 3520
8d08fdba 3521#define ccat(c) obstack_1grow (&scratch_obstack, (c));
8d08fdba 3522#define cat(s) obstack_grow (&scratch_obstack, (s), strlen (s))
8d08fdba
MS
3523
3524 cat (name);
3525 ccat ('<');
3526 nparms = TREE_VEC_LENGTH (parms);
f9a7ae04 3527 arglist = INNERMOST_TEMPLATE_ARGS (arglist);
8d08fdba
MS
3528 my_friendly_assert (nparms == TREE_VEC_LENGTH (arglist), 268);
3529 for (i = 0; i < nparms; i++)
3530 {
a292b002
MS
3531 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
3532 tree arg = TREE_VEC_ELT (arglist, i);
8d08fdba
MS
3533
3534 if (i)
3535 ccat (',');
3536
a292b002 3537 if (TREE_CODE (parm) == TYPE_DECL)
8d08fdba 3538 {
9e93bc9d 3539 cat (type_as_string (arg, TS_CHASE_TYPEDEFS));
8d08fdba
MS
3540 continue;
3541 }
73b0fce8
KL
3542 else if (TREE_CODE (parm) == TEMPLATE_DECL)
3543 {
3544 if (TREE_CODE (arg) == TEMPLATE_DECL)
2c73f9f5
ML
3545 {
3546 /* Already substituted with real template. Just output
3547 the template name here */
cb0dbb9a 3548 tree context = DECL_CONTEXT (arg);
ec4f972f
AS
3549 if (context)
3550 {
3551 /* The template may be defined in a namespace, or
3552 may be a member template. */
3553 my_friendly_assert (TREE_CODE (context) == NAMESPACE_DECL
3554 || CLASS_TYPE_P (context),
3555 980422);
2c73f9f5
ML
3556 cat(decl_as_string (DECL_CONTEXT (arg), 0));
3557 cat("::");
3558 }
3559 cat (IDENTIFIER_POINTER (DECL_NAME (arg)));
3560 }
73b0fce8
KL
3561 else
3562 /* Output the parameter declaration */
9e93bc9d 3563 cat (type_as_string (arg, TS_CHASE_TYPEDEFS));
73b0fce8
KL
3564 continue;
3565 }
8d08fdba
MS
3566 else
3567 my_friendly_assert (TREE_CODE (parm) == PARM_DECL, 269);
3568
3569 if (TREE_CODE (arg) == TREE_LIST)
3570 {
3571 /* New list cell was built because old chain link was in
3572 use. */
3573 my_friendly_assert (TREE_PURPOSE (arg) == NULL_TREE, 270);
3574 arg = TREE_VALUE (arg);
3575 }
3576 /* No need to check arglist against parmlist here; we did that
3577 in coerce_template_parms, called from lookup_template_class. */
3578 cat (expr_as_string (arg, 0));
3579 }
3580 {
3581 char *bufp = obstack_next_free (&scratch_obstack);
3582 int offset = 0;
3583 while (bufp[offset - 1] == ' ')
3584 offset--;
3585 obstack_blank_fast (&scratch_obstack, offset);
3586
3587 /* B<C<char> >, not B<C<char>> */
3588 if (bufp[offset - 1] == '>')
3589 ccat (' ');
3590 }
3591 ccat ('>');
3592 ccat ('\0');
3593 return (char *) obstack_base (&scratch_obstack);
8d08fdba
MS
3594}
3595
bd6dd845 3596static tree
5566b478
MS
3597classtype_mangled_name (t)
3598 tree t;
3599{
3600 if (CLASSTYPE_TEMPLATE_INFO (t)
36a117a5
MM
3601 /* Specializations have already had their names set up in
3602 lookup_template_class. */
370af2d5 3603 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (t))
9fbf56f7
MM
3604 {
3605 tree tmpl = most_general_template (CLASSTYPE_TI_TEMPLATE (t));
3606
36a117a5
MM
3607 /* For non-primary templates, the template parameters are
3608 implicit from their surrounding context. */
9fbf56f7
MM
3609 if (PRIMARY_TEMPLATE_P (tmpl))
3610 {
3611 tree name = DECL_NAME (tmpl);
3612 char *mangled_name = mangle_class_name_for_template
3613 (IDENTIFIER_POINTER (name),
3614 DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
3615 CLASSTYPE_TI_ARGS (t));
3616 tree id = get_identifier (mangled_name);
3617 IDENTIFIER_TEMPLATE (id) = name;
3618 return id;
3619 }
5566b478 3620 }
9fbf56f7
MM
3621
3622 return TYPE_IDENTIFIER (t);
5566b478
MS
3623}
3624
3625static void
3626add_pending_template (d)
3627 tree d;
3628{
3ae18eaf
JM
3629 tree ti = (TYPE_P (d)
3630 ? CLASSTYPE_TEMPLATE_INFO (d)
3631 : DECL_TEMPLATE_INFO (d));
3632 int level;
e92cc029 3633
824b9a4c 3634 if (TI_PENDING_TEMPLATE_FLAG (ti))
5566b478
MS
3635 return;
3636
3ae18eaf
JM
3637 /* We are called both from instantiate_decl, where we've already had a
3638 tinst_level pushed, and instantiate_template, where we haven't.
3639 Compensate. */
3640 level = !(current_tinst_level && TINST_DECL (current_tinst_level) == d);
3641
3642 if (level)
3643 push_tinst_level (d);
3644
3645 *template_tail = tree_cons (current_tinst_level, d, NULL_TREE);
5566b478 3646 template_tail = &TREE_CHAIN (*template_tail);
824b9a4c 3647 TI_PENDING_TEMPLATE_FLAG (ti) = 1;
3ae18eaf
JM
3648
3649 if (level)
3650 pop_tinst_level ();
5566b478
MS
3651}
3652
386b8a85
JM
3653
3654/* Return a TEMPLATE_ID_EXPR corresponding to the indicated FNS (which
3655 may be either a _DECL or an overloaded function or an
3656 IDENTIFIER_NODE), and ARGLIST. */
3657
3658tree
3659lookup_template_function (fns, arglist)
3660 tree fns, arglist;
3661{
2c73f9f5 3662 tree type;
050367a3 3663
386b8a85
JM
3664 if (fns == NULL_TREE)
3665 {
8251199e 3666 cp_error ("non-template used as template");
386b8a85
JM
3667 return error_mark_node;
3668 }
3669
2c73f9f5
ML
3670 type = TREE_TYPE (fns);
3671 if (TREE_CODE (fns) == OVERLOAD || !type)
3672 type = unknown_type_node;
3673
672476cb
MM
3674 if (processing_template_decl)
3675 return build_min (TEMPLATE_ID_EXPR, type, fns, arglist);
3676 else
3677 return build (TEMPLATE_ID_EXPR, type, fns, arglist);
386b8a85
JM
3678}
3679
a2b60a0e
MM
3680/* Within the scope of a template class S<T>, the name S gets bound
3681 (in build_self_reference) to a TYPE_DECL for the class, not a
3682 TEMPLATE_DECL. If DECL is a TYPE_DECL for current_class_type,
3683 or one of its enclosing classes, and that type is a template,
3684 return the associated TEMPLATE_DECL. Otherwise, the original
3685 DECL is returned. */
3686
e9659ab0 3687static tree
a2b60a0e
MM
3688maybe_get_template_decl_from_type_decl (decl)
3689 tree decl;
3690{
3691 return (decl != NULL_TREE
3692 && TREE_CODE (decl) == TYPE_DECL
3693 && DECL_ARTIFICIAL (decl)
511b60ff 3694 && CLASS_TYPE_P (TREE_TYPE (decl))
a2b60a0e
MM
3695 && CLASSTYPE_TEMPLATE_INFO (TREE_TYPE (decl)))
3696 ? CLASSTYPE_TI_TEMPLATE (TREE_TYPE (decl)) : decl;
3697}
386b8a85 3698
8d08fdba
MS
3699/* Given an IDENTIFIER_NODE (type TEMPLATE_DECL) and a chain of
3700 parameters, find the desired type.
3701
3702 D1 is the PTYPENAME terminal, and ARGLIST is the list of arguments.
36a117a5
MM
3703 (Actually ARGLIST may be either a TREE_LIST or a TREE_VEC. It will
3704 be a TREE_LIST if called directly from the parser, and a TREE_VEC
0a2c2fd1 3705 otherwise.) Since ARGLIST is build on the temp_decl_obstack, we must
36a117a5
MM
3706 copy it here to keep it from being reclaimed when the decl storage
3707 is reclaimed.
8d08fdba
MS
3708
3709 IN_DECL, if non-NULL, is the template declaration we are trying to
75650646
MM
3710 instantiate.
3711
36a117a5
MM
3712 If ENTERING_SCOPE is non-zero, we are about to enter the scope of
3713 the class we are looking up.
3714
75650646
MM
3715 If the template class is really a local class in a template
3716 function, then the FUNCTION_CONTEXT is the function in which it is
3717 being instantiated. */
e92cc029 3718
8d08fdba 3719tree
36a117a5 3720lookup_template_class (d1, arglist, in_decl, context, entering_scope)
8d08fdba
MS
3721 tree d1, arglist;
3722 tree in_decl;
e1467ff2 3723 tree context;
36a117a5 3724 int entering_scope;
8d08fdba 3725{
a703fb38 3726 tree template = NULL_TREE, parmlist;
dbfe2124 3727 tree t;
5566b478
MS
3728
3729 if (TREE_CODE (d1) == IDENTIFIER_NODE)
3730 {
f181d4ae
MM
3731 if (IDENTIFIER_VALUE (d1)
3732 && DECL_TEMPLATE_TEMPLATE_PARM_P (IDENTIFIER_VALUE (d1)))
3733 template = IDENTIFIER_VALUE (d1);
73b0fce8
KL
3734 else
3735 {
2c73f9f5
ML
3736 if (context)
3737 push_decl_namespace (context);
3ebc5c52
MM
3738 template = lookup_name (d1, /*prefer_type=*/0);
3739 template = maybe_get_template_decl_from_type_decl (template);
2c73f9f5
ML
3740 if (context)
3741 pop_decl_namespace ();
73b0fce8 3742 }
8d019cef
JM
3743 if (template)
3744 context = DECL_CONTEXT (template);
5566b478 3745 }
c91a56d2
MS
3746 else if (TREE_CODE (d1) == TYPE_DECL && IS_AGGR_TYPE (TREE_TYPE (d1)))
3747 {
802dbc34
JM
3748 tree type = TREE_TYPE (d1);
3749
3750 /* If we are declaring a constructor, say A<T>::A<T>, we will get
3751 an implicit typename for the second A. Deal with it. */
3752 if (TREE_CODE (type) == TYPENAME_TYPE && TREE_TYPE (type))
3753 type = TREE_TYPE (type);
3754
3755 if (CLASSTYPE_TEMPLATE_INFO (type))
f3400fe2 3756 {
802dbc34 3757 template = CLASSTYPE_TI_TEMPLATE (type);
f3400fe2
JM
3758 d1 = DECL_NAME (template);
3759 }
c91a56d2 3760 }
ed44da02 3761 else if (TREE_CODE (d1) == ENUMERAL_TYPE
2f939d94 3762 || (TYPE_P (d1) && IS_AGGR_TYPE (d1)))
5566b478 3763 {
ed44da02 3764 template = TYPE_TI_TEMPLATE (d1);
5566b478
MS
3765 d1 = DECL_NAME (template);
3766 }
93cdc044 3767 else if (TREE_CODE (d1) == TEMPLATE_DECL
17aec3eb 3768 && TREE_CODE (DECL_TEMPLATE_RESULT (d1)) == TYPE_DECL)
93cdc044
JM
3769 {
3770 template = d1;
3771 d1 = DECL_NAME (template);
3772 context = DECL_CONTEXT (template);
3773 }
5566b478
MS
3774 else
3775 my_friendly_abort (272);
8d08fdba 3776
8d08fdba 3777 /* With something like `template <class T> class X class X { ... };'
f181d4ae
MM
3778 we could end up with D1 having nothing but an IDENTIFIER_VALUE.
3779 We don't want to do that, but we have to deal with the situation,
3780 so let's give them some syntax errors to chew on instead of a
3781 crash. */
8d08fdba 3782 if (! template)
f3400fe2
JM
3783 {
3784 cp_error ("`%T' is not a template", d1);
3785 return error_mark_node;
3786 }
2c73f9f5 3787
c3baf4b5
JM
3788 if (context == NULL_TREE)
3789 context = global_namespace;
2c73f9f5 3790
8d08fdba
MS
3791 if (TREE_CODE (template) != TEMPLATE_DECL)
3792 {
8251199e 3793 cp_error ("non-template type `%T' used as a template", d1);
8d08fdba 3794 if (in_decl)
8251199e 3795 cp_error_at ("for template declaration `%D'", in_decl);
8d08fdba
MS
3796 return error_mark_node;
3797 }
8d08fdba 3798
73b0fce8
KL
3799 if (DECL_TEMPLATE_TEMPLATE_PARM_P (template))
3800 {
3801 /* Create a new TEMPLATE_DECL and TEMPLATE_TEMPLATE_PARM node to store
3802 template arguments */
3803
1899c3a4 3804 tree parm;
73b0fce8
KL
3805 tree arglist2;
3806
73b0fce8
KL
3807 parmlist = DECL_INNERMOST_TEMPLATE_PARMS (template);
3808
744fac59 3809 arglist2 = coerce_template_parms (parmlist, arglist, template, 1, 1);
73b0fce8
KL
3810 if (arglist2 == error_mark_node)
3811 return error_mark_node;
3812
1899c3a4 3813 parm = copy_template_template_parm (TREE_TYPE (template), arglist2);
73b0fce8
KL
3814 TYPE_SIZE (parm) = 0;
3815 return parm;
3816 }
36a117a5 3817 else
8d08fdba 3818 {
36a117a5 3819 tree template_type = TREE_TYPE (template);
7ac7b28f 3820 tree gen_tmpl;
36a117a5
MM
3821 tree type_decl;
3822 tree found = NULL_TREE;
3823 int arg_depth;
3824 int parm_depth;
dbfe2124 3825 int is_partial_instantiation;
830bfa74 3826
7ac7b28f
MM
3827 gen_tmpl = most_general_template (template);
3828 parmlist = DECL_TEMPLATE_PARMS (gen_tmpl);
36a117a5
MM
3829 parm_depth = TMPL_PARMS_DEPTH (parmlist);
3830 arg_depth = TMPL_ARGS_DEPTH (arglist);
3831
3832 if (arg_depth == 1 && parm_depth > 1)
3833 {
39c01e4c 3834 /* We've been given an incomplete set of template arguments.
36a117a5
MM
3835 For example, given:
3836
3837 template <class T> struct S1 {
3838 template <class U> struct S2 {};
3839 template <class U> struct S2<U*> {};
3840 };
3841
3842 we will be called with an ARGLIST of `U*', but the
3843 TEMPLATE will be `template <class T> template
3844 <class U> struct S1<T>::S2'. We must fill in the missing
3845 arguments. */
7ac7b28f
MM
3846 arglist
3847 = add_outermost_template_args (TYPE_TI_ARGS (TREE_TYPE (template)),
3848 arglist);
36a117a5
MM
3849 arg_depth = TMPL_ARGS_DEPTH (arglist);
3850 }
5566b478 3851
7ac7b28f 3852 /* Now we should enough arguments. */
36a117a5
MM
3853 my_friendly_assert (parm_depth == arg_depth, 0);
3854
7ac7b28f
MM
3855 /* From here on, we're only interested in the most general
3856 template. */
3857 template = gen_tmpl;
3858
36a117a5
MM
3859 /* Calculate the BOUND_ARGS. These will be the args that are
3860 actually tsubst'd into the definition to create the
3861 instantiation. */
3862 if (parm_depth > 1)
830bfa74
MM
3863 {
3864 /* We have multiple levels of arguments to coerce, at once. */
830bfa74 3865 int i;
e4a84209 3866 int saved_depth = TMPL_ARGS_DEPTH (arglist);
36a117a5 3867
f31c0a32 3868 tree bound_args = make_tree_vec (parm_depth);
830bfa74 3869
e4a84209 3870 for (i = saved_depth,
830bfa74 3871 t = DECL_TEMPLATE_PARMS (template);
e4a84209 3872 i > 0 && t != NULL_TREE;
830bfa74 3873 --i, t = TREE_CHAIN (t))
e4a84209
MM
3874 {
3875 tree a = coerce_template_parms (TREE_VALUE (t),
3876 arglist, template, 1, 1);
3877 SET_TMPL_ARGS_LEVEL (bound_args, i, a);
3878
3879 /* We temporarily reduce the length of the ARGLIST so
3880 that coerce_template_parms will see only the arguments
3881 corresponding to the template parameters it is
3882 examining. */
3883 TREE_VEC_LENGTH (arglist)--;
3884 }
3885
3886 /* Restore the ARGLIST to its full size. */
3887 TREE_VEC_LENGTH (arglist) = saved_depth;
3888
36a117a5 3889 arglist = bound_args;
830bfa74
MM
3890 }
3891 else
36a117a5
MM
3892 arglist
3893 = coerce_template_parms (INNERMOST_TEMPLATE_PARMS (parmlist),
f9a7ae04 3894 INNERMOST_TEMPLATE_ARGS (arglist),
36a117a5
MM
3895 template, 1, 1);
3896
3897 if (arglist == error_mark_node)
3898 /* We were unable to bind the arguments. */
5566b478 3899 return error_mark_node;
5566b478 3900
36a117a5
MM
3901 /* In the scope of a template class, explicit references to the
3902 template class refer to the type of the template, not any
3903 instantiation of it. For example, in:
3904
3905 template <class T> class C { void f(C<T>); }
3906
3907 the `C<T>' is just the same as `C'. Outside of the
3908 class, however, such a reference is an instantiation. */
ed44da02 3909 if (comp_template_args (TYPE_TI_ARGS (template_type),
36a117a5
MM
3910 arglist))
3911 {
3912 found = template_type;
3913
3914 if (!entering_scope && PRIMARY_TEMPLATE_P (template))
5566b478 3915 {
36a117a5
MM
3916 tree ctx;
3917
3918 /* Note that we use DECL_CONTEXT, rather than
3919 CP_DECL_CONTEXT, so that the termination test is
3920 always just `ctx'. We're not interested in namepace
3921 scopes. */
3922 for (ctx = current_class_type;
3923 ctx;
2f939d94 3924 ctx = (TYPE_P (ctx)) ? TYPE_CONTEXT (ctx) : DECL_CONTEXT (ctx))
3bfdc719 3925 if (same_type_p (ctx, template_type))
36a117a5
MM
3926 break;
3927
3928 if (!ctx)
3929 /* We're not in the scope of the class, so the
3930 TEMPLATE_TYPE is not the type we want after
3931 all. */
3932 found = NULL_TREE;
5566b478
MS
3933 }
3934 }
36a117a5
MM
3935
3936 if (!found)
75650646 3937 {
36a117a5
MM
3938 for (found = DECL_TEMPLATE_INSTANTIATIONS (template);
3939 found; found = TREE_CHAIN (found))
3940 if (comp_template_args (TREE_PURPOSE (found), arglist))
3941 break;
75650646 3942
36a117a5
MM
3943 if (found)
3944 found = TREE_VALUE (found);
8d08fdba 3945 }
3ebc5c52 3946
36a117a5 3947 if (found)
f31c0a32 3948 return found;
5566b478 3949
dbfe2124 3950 /* This type is a "partial instantiation" if any of the template
486e4077
MM
3951 arguments still inolve template parameters. Note that we set
3952 IS_PARTIAL_INSTANTIATION for partial specializations as
3953 well. */
dbfe2124
MM
3954 is_partial_instantiation = uses_template_parms (arglist);
3955
3ebc5c52
MM
3956 if (!is_partial_instantiation
3957 && !PRIMARY_TEMPLATE_P (template)
3958 && TREE_CODE (CP_DECL_CONTEXT (template)) == NAMESPACE_DECL)
3959 {
3ebc5c52
MM
3960 found = xref_tag_from_type (TREE_TYPE (template),
3961 DECL_NAME (template),
3962 /*globalize=*/1);
3963 return found;
3964 }
3ebc5c52 3965
36a117a5 3966 /* Create the type. */
ed44da02
MM
3967 if (TREE_CODE (template_type) == ENUMERAL_TYPE)
3968 {
dbfe2124 3969 if (!is_partial_instantiation)
61a127b3 3970 t = start_enum (TYPE_IDENTIFIER (template_type));
ed44da02 3971 else
dbfe2124 3972 /* We don't want to call start_enum for this type, since
ed44da02
MM
3973 the values for the enumeration constants may involve
3974 template parameters. And, no one should be interested
3975 in the enumeration constants for such a type. */
3976 t = make_node (ENUMERAL_TYPE);
3977 }
3978 else
3979 {
33848bb0 3980 t = make_aggr_type (TREE_CODE (template_type));
ed44da02
MM
3981 CLASSTYPE_DECLARED_CLASS (t)
3982 = CLASSTYPE_DECLARED_CLASS (template_type);
3983 CLASSTYPE_GOT_SEMICOLON (t) = 1;
3984 SET_CLASSTYPE_IMPLICIT_INSTANTIATION (t);
f668f160 3985 TYPE_FOR_JAVA (t) = TYPE_FOR_JAVA (template_type);
ae673f14
JM
3986
3987 /* A local class. Make sure the decl gets registered properly. */
3988 if (context == current_function_decl)
3989 pushtag (DECL_NAME (template), t, 0);
ed44da02
MM
3990 }
3991
ae673f14
JM
3992 /* If we called start_enum or pushtag above, this information
3993 will already be set up. */
ed44da02
MM
3994 if (!TYPE_NAME (t))
3995 {
3996 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
36a117a5 3997
9188c363 3998 type_decl = create_implicit_typedef (DECL_NAME (template), t);
ed44da02 3999 DECL_CONTEXT (type_decl) = TYPE_CONTEXT (t);
9188c363 4000 TYPE_STUB_DECL (t) = type_decl;
ed44da02
MM
4001 DECL_SOURCE_FILE (type_decl)
4002 = DECL_SOURCE_FILE (TYPE_STUB_DECL (template_type));
4003 DECL_SOURCE_LINE (type_decl)
4004 = DECL_SOURCE_LINE (TYPE_STUB_DECL (template_type));
ed44da02
MM
4005 }
4006 else
4007 type_decl = TYPE_NAME (t);
36a117a5 4008
9fbf56f7
MM
4009 /* Set up the template information. We have to figure out which
4010 template is the immediate parent if this is a full
4011 instantiation. */
4012 if (parm_depth == 1 || is_partial_instantiation
4013 || !PRIMARY_TEMPLATE_P (template))
4014 /* This case is easy; there are no member templates involved. */
4015 found = template;
4016 else
4017 {
4018 /* This is a full instantiation of a member template. There
4019 should be some partial instantiation of which this is an
4020 instance. */
4021
4022 for (found = DECL_TEMPLATE_INSTANTIATIONS (template);
4023 found; found = TREE_CHAIN (found))
4024 {
4025 int success;
4026 tree tmpl = CLASSTYPE_TI_TEMPLATE (TREE_VALUE (found));
4027
4028 /* We only want partial instantiations, here, not
4029 specializations or full instantiations. */
370af2d5 4030 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_VALUE (found))
9fbf56f7
MM
4031 || !uses_template_parms (TREE_VALUE (found)))
4032 continue;
4033
4034 /* Temporarily reduce by one the number of levels in the
4035 ARGLIST and in FOUND so as to avoid comparing the
4036 last set of arguments. */
4037 TREE_VEC_LENGTH (arglist)--;
4038 TREE_VEC_LENGTH (TREE_PURPOSE (found)) --;
4039
4040 /* See if the arguments match. If they do, then TMPL is
4041 the partial instantiation we want. */
4042 success = comp_template_args (TREE_PURPOSE (found), arglist);
4043
4044 /* Restore the argument vectors to their full size. */
4045 TREE_VEC_LENGTH (arglist)++;
4046 TREE_VEC_LENGTH (TREE_PURPOSE (found))++;
4047
4048 if (success)
4049 {
4050 found = tmpl;
4051 break;
4052 }
4053 }
4054
4055 if (!found)
4056 my_friendly_abort (0);
4057 }
4058
ed44da02 4059 SET_TYPE_TEMPLATE_INFO (t,
9fbf56f7 4060 tree_cons (found, arglist, NULL_TREE));
dbfe2124
MM
4061 DECL_TEMPLATE_INSTANTIATIONS (template)
4062 = tree_cons (arglist, t,
4063 DECL_TEMPLATE_INSTANTIATIONS (template));
4064
4065 if (TREE_CODE (t) == ENUMERAL_TYPE
4066 && !is_partial_instantiation)
61a127b3
MM
4067 /* Now that the type has been registered on the instantiations
4068 list, we set up the enumerators. Because the enumeration
4069 constants may involve the enumeration type itself, we make
4070 sure to register the type first, and then create the
4071 constants. That way, doing tsubst_expr for the enumeration
4072 constants won't result in recursive calls here; we'll find
4073 the instantiation and exit above. */
4074 tsubst_enum (template_type, t, arglist);
dbfe2124 4075
36a117a5
MM
4076 /* Reset the name of the type, now that CLASSTYPE_TEMPLATE_INFO
4077 is set up. */
ed44da02
MM
4078 if (TREE_CODE (t) != ENUMERAL_TYPE)
4079 DECL_NAME (type_decl) = classtype_mangled_name (t);
36a117a5 4080 DECL_ASSEMBLER_NAME (type_decl) = DECL_NAME (type_decl);
dbfe2124 4081 if (!is_partial_instantiation)
36a117a5 4082 {
669ec2b4
JM
4083 if (flag_new_abi)
4084 DECL_ASSEMBLER_NAME (type_decl) = mangle_decl (type_decl);
4085 else
4086 DECL_ASSEMBLER_NAME (type_decl)
4087 = get_identifier (build_overload_name (t, 1, 1));
50a6dbd7
JM
4088
4089 /* For backwards compatibility; code that uses
4090 -fexternal-templates expects looking up a template to
4091 instantiate it. I think DDD still relies on this.
4092 (jason 8/20/1998) */
ed44da02
MM
4093 if (TREE_CODE (t) != ENUMERAL_TYPE
4094 && flag_external_templates
36a117a5
MM
4095 && CLASSTYPE_INTERFACE_KNOWN (TREE_TYPE (template))
4096 && ! CLASSTYPE_INTERFACE_ONLY (TREE_TYPE (template)))
4097 add_pending_template (t);
4098 }
4099 else
077e7015
MM
4100 /* If the type makes use of template parameters, the
4101 code that generates debugging information will crash. */
4102 DECL_IGNORED_P (TYPE_STUB_DECL (t)) = 1;
8d08fdba 4103
36a117a5
MM
4104 return t;
4105 }
8d08fdba
MS
4106}
4107\f
8dfaeb63 4108struct pair_fn_data
8d08fdba 4109{
8dfaeb63
MM
4110 tree_fn_t fn;
4111 void *data;
4112};
4113
4114/* Called from for_each_template_parm via walk_tree. */
581d38d0 4115
8dfaeb63
MM
4116static tree
4117for_each_template_parm_r (tp, walk_subtrees, d)
4118 tree *tp;
4119 int *walk_subtrees;
4120 void *d;
4121{
4122 tree t = *tp;
4123 struct pair_fn_data *pfd = (struct pair_fn_data *) d;
4124 tree_fn_t fn = pfd->fn;
4125 void *data = pfd->data;
4126
2f939d94 4127 if (TYPE_P (t)
581d38d0 4128 && for_each_template_parm (TYPE_CONTEXT (t), fn, data))
8dfaeb63 4129 return error_mark_node;
581d38d0 4130
8d08fdba
MS
4131 switch (TREE_CODE (t))
4132 {
8d08fdba 4133 case RECORD_TYPE:
b7484fbe 4134 if (TYPE_PTRMEMFUNC_FLAG (t))
8dfaeb63 4135 break;
ed44da02
MM
4136 /* Fall through. */
4137
8d08fdba 4138 case UNION_TYPE:
ed44da02 4139 case ENUMERAL_TYPE:
8dfaeb63
MM
4140 if (!TYPE_TEMPLATE_INFO (t))
4141 *walk_subtrees = 0;
4142 else if (for_each_template_parm (TREE_VALUE (TYPE_TEMPLATE_INFO (t)),
4143 fn, data))
4144 return error_mark_node;
4145 break;
4146
588c2d1c 4147 case METHOD_TYPE:
8dfaeb63
MM
4148 /* Since we're not going to walk subtrees, we have to do this
4149 explicitly here. */
588c2d1c 4150 if (for_each_template_parm (TYPE_METHOD_BASETYPE (t), fn, data))
8dfaeb63 4151 return error_mark_node;
588c2d1c
MM
4152
4153 case FUNCTION_TYPE:
8dfaeb63
MM
4154 /* Check the return type. */
4155 if (for_each_template_parm (TREE_TYPE (t), fn, data))
4156 return error_mark_node;
4157
588c2d1c
MM
4158 /* Check the parameter types. Since default arguments are not
4159 instantiated until they are needed, the TYPE_ARG_TYPES may
4160 contain expressions that involve template parameters. But,
4161 no-one should be looking at them yet. And, once they're
4162 instantiated, they don't contain template parameters, so
4163 there's no point in looking at them then, either. */
4164 {
4165 tree parm;
4166
4167 for (parm = TYPE_ARG_TYPES (t); parm; parm = TREE_CHAIN (parm))
4168 if (for_each_template_parm (TREE_VALUE (parm), fn, data))
8dfaeb63 4169 return error_mark_node;
5566b478 4170
8dfaeb63
MM
4171 /* Since we've already handled the TYPE_ARG_TYPES, we don't
4172 want walk_tree walking into them itself. */
4173 *walk_subtrees = 0;
4174 }
4175 break;
3ac3d9ea 4176
8d08fdba 4177 case FUNCTION_DECL:
5566b478 4178 case VAR_DECL:
5566b478 4179 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t)
050367a3 4180 && for_each_template_parm (DECL_TI_ARGS (t), fn, data))
8dfaeb63
MM
4181 return error_mark_node;
4182 /* Fall through. */
4183
4184 case CONST_DECL:
8d08fdba 4185 case PARM_DECL:
050367a3
MM
4186 if (DECL_CONTEXT (t)
4187 && for_each_template_parm (DECL_CONTEXT (t), fn, data))
8dfaeb63
MM
4188 return error_mark_node;
4189 break;
8d08fdba 4190
73b0fce8 4191 case TEMPLATE_TEMPLATE_PARM:
744fac59 4192 /* Record template parameters such as `T' inside `TT<T>'. */
7ddedda4
MM
4193 if (TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (t)
4194 && for_each_template_parm (TYPE_TI_ARGS (t), fn, data))
8dfaeb63
MM
4195 return error_mark_node;
4196 /* Fall through. */
4197
744fac59 4198 case TEMPLATE_TYPE_PARM:
f84b4be9 4199 case TEMPLATE_PARM_INDEX:
8dfaeb63
MM
4200 if (fn && (*fn)(t, data))
4201 return error_mark_node;
4202 else if (!fn)
4203 return error_mark_node;
4204 break;
5156628f 4205
8dfaeb63
MM
4206 case TEMPLATE_DECL:
4207 /* A template template parameter is encountered */
4208 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t)
4209 && for_each_template_parm (TREE_TYPE (t), fn, data))
4210 return error_mark_node;
db5ae43f 4211
8dfaeb63
MM
4212 /* Already substituted template template parameter */
4213 *walk_subtrees = 0;
4214 break;
b8865407 4215
4699c561 4216 case TYPENAME_TYPE:
8dfaeb63
MM
4217 if (!fn || for_each_template_parm (TYPENAME_TYPE_FULLNAME (t), fn, data))
4218 return error_mark_node;
4219 break;
4699c561 4220
8dfaeb63
MM
4221 case CONSTRUCTOR:
4222 if (TREE_TYPE (t) && TYPE_PTRMEMFUNC_P (TREE_TYPE (t))
4223 && for_each_template_parm (TYPE_PTRMEMFUNC_FN_TYPE
4224 (TREE_TYPE (t)), fn, data))
4225 return error_mark_node;
4226 break;
4227
b8865407
MM
4228 case INDIRECT_REF:
4229 case COMPONENT_REF:
4699c561 4230 /* If there's no type, then this thing must be some expression
b8865407 4231 involving template parameters. */
4699c561 4232 if (!fn && !TREE_TYPE (t))
8dfaeb63
MM
4233 return error_mark_node;
4234 break;
b8865407 4235
42976354
BK
4236 case MODOP_EXPR:
4237 case CAST_EXPR:
4238 case REINTERPRET_CAST_EXPR:
4239 case CONST_CAST_EXPR:
4240 case STATIC_CAST_EXPR:
4241 case DYNAMIC_CAST_EXPR:
42976354
BK
4242 case ARROW_EXPR:
4243 case DOTSTAR_EXPR:
4244 case TYPEID_EXPR:
b8865407 4245 case LOOKUP_EXPR:
40242ccf 4246 case PSEUDO_DTOR_EXPR:
b8865407 4247 if (!fn)
8dfaeb63
MM
4248 return error_mark_node;
4249 break;
abff8e06 4250
8d08fdba 4251 default:
8dfaeb63 4252 break;
8d08fdba 4253 }
8dfaeb63
MM
4254
4255 /* We didn't find any template parameters we liked. */
4256 return NULL_TREE;
4257}
4258
4259/* For each TEMPLATE_TYPE_PARM, TEMPLATE_TEMPLATE_PARM, or
4260 TEMPLATE_PARM_INDEX in T, call FN with the parameter and the DATA.
4261 If FN returns non-zero, the iteration is terminated, and
4262 for_each_template_parm returns 1. Otherwise, the iteration
4263 continues. If FN never returns a non-zero value, the value
4264 returned by for_each_template_parm is 0. If FN is NULL, it is
4265 considered to be the function which always returns 1. */
4266
4267static int
4268for_each_template_parm (t, fn, data)
4269 tree t;
4270 tree_fn_t fn;
4271 void* data;
4272{
4273 struct pair_fn_data pfd;
4274
4275 /* Set up. */
4276 pfd.fn = fn;
4277 pfd.data = data;
4278
4279 /* Walk the tree. */
4280 return walk_tree (&t, for_each_template_parm_r, &pfd) != NULL_TREE;
8d08fdba
MS
4281}
4282
050367a3
MM
4283int
4284uses_template_parms (t)
4285 tree t;
4286{
4287 return for_each_template_parm (t, 0, 0);
4288}
4289
27fafc8d 4290static int tinst_depth;
e9f32eb5 4291extern int max_tinst_depth;
5566b478 4292#ifdef GATHER_STATISTICS
27fafc8d 4293int depth_reached;
5566b478 4294#endif
8dfaeb63
MM
4295static int tinst_level_tick;
4296static int last_template_error_tick;
8d08fdba 4297
7bae46f4 4298/* Print out all the template instantiations that we are currently
27fafc8d
JM
4299 working on. If ERR, we are being called from cp_thing, so do
4300 the right thing for an error message. */
7bae46f4 4301
27fafc8d
JM
4302static void
4303print_template_context (err)
4304 int err;
7bae46f4 4305{
3ae18eaf 4306 tree p = current_tinst_level;
7bae46f4 4307 int line = lineno;
3b304f5b 4308 const char *file = input_filename;
7bae46f4 4309
49e04385 4310 if (err && p)
27fafc8d 4311 {
3ae18eaf 4312 if (current_function_decl != TINST_DECL (p)
49e04385
MM
4313 && current_function_decl != NULL_TREE)
4314 /* We can get here during the processing of some synthesized
3ae18eaf 4315 method. Then, TINST_DECL (p) will be the function that's causing
49e04385
MM
4316 the synthesis. */
4317 ;
27fafc8d 4318 else
27fafc8d 4319 {
3ae18eaf 4320 if (current_function_decl == TINST_DECL (p))
49e04385
MM
4321 /* Avoid redundancy with the the "In function" line. */;
4322 else
4323 fprintf (stderr, "%s: In instantiation of `%s':\n",
3ae18eaf
JM
4324 file, decl_as_string (TINST_DECL (p),
4325 TS_DECL_TYPE | TS_FUNC_NORETURN));
49e04385 4326
3ae18eaf
JM
4327 line = TINST_LINE (p);
4328 file = TINST_FILE (p);
4329 p = TREE_CHAIN (p);
27fafc8d
JM
4330 }
4331 }
4332
3ae18eaf 4333 for (; p; p = TREE_CHAIN (p))
7bae46f4 4334 {
038fb86f 4335 fprintf (stderr, "%s:%d: instantiated from `%s'\n", file, line,
3ae18eaf
JM
4336 decl_as_string (TINST_DECL (p),
4337 TS_DECL_TYPE | TS_FUNC_NORETURN));
4338 line = TINST_LINE (p);
4339 file = TINST_FILE (p);
7bae46f4 4340 }
038fb86f 4341 fprintf (stderr, "%s:%d: instantiated from here\n", file, line);
7bae46f4
JM
4342}
4343
27fafc8d
JM
4344/* Called from cp_thing to print the template context for an error. */
4345
4346void
4347maybe_print_template_context ()
4348{
4349 if (last_template_error_tick == tinst_level_tick
4350 || current_tinst_level == 0)
4351 return;
4352
4353 last_template_error_tick = tinst_level_tick;
4354 print_template_context (1);
4355}
4356
3ae18eaf
JM
4357/* We're starting to instantiate D; record the template instantiation context
4358 for diagnostics and to restore it later. */
4359
bd6dd845 4360static int
5566b478
MS
4361push_tinst_level (d)
4362 tree d;
8d08fdba 4363{
3ae18eaf 4364 tree new;
8d08fdba 4365
7215f9a0
MS
4366 if (tinst_depth >= max_tinst_depth)
4367 {
8adf5b5e
JM
4368 /* If the instantiation in question still has unbound template parms,
4369 we don't really care if we can't instantiate it, so just return.
4370 This happens with base instantiation for implicit `typename'. */
4371 if (uses_template_parms (d))
4372 return 0;
4373
1139b3d8 4374 last_template_error_tick = tinst_level_tick;
b4f4233d
GDR
4375 cp_error ("template instantiation depth exceeds maximum of %d (use -ftemplate-depth-NN to increase the maximum) instantiating `%D'",
4376 max_tinst_depth, d);
5566b478 4377
27fafc8d 4378 print_template_context (0);
5566b478 4379
7215f9a0
MS
4380 return 0;
4381 }
4382
3ae18eaf
JM
4383 new = build_expr_wfl (d, input_filename, lineno, 0);
4384 TREE_CHAIN (new) = current_tinst_level;
8d08fdba 4385 current_tinst_level = new;
5566b478 4386
7215f9a0 4387 ++tinst_depth;
5566b478
MS
4388#ifdef GATHER_STATISTICS
4389 if (tinst_depth > depth_reached)
4390 depth_reached = tinst_depth;
4391#endif
4392
27fafc8d 4393 ++tinst_level_tick;
7215f9a0 4394 return 1;
8d08fdba
MS
4395}
4396
3ae18eaf
JM
4397/* We're done instantiating this template; return to the instantiation
4398 context. */
4399
8d08fdba
MS
4400void
4401pop_tinst_level ()
4402{
3ae18eaf 4403 tree old = current_tinst_level;
8d08fdba 4404
ae58fa02
MM
4405 /* Restore the filename and line number stashed away when we started
4406 this instantiation. */
3ae18eaf
JM
4407 lineno = TINST_LINE (old);
4408 input_filename = TINST_FILE (old);
5f2c99c4 4409 extract_interface_info ();
ae58fa02 4410
3ae18eaf 4411 current_tinst_level = TREE_CHAIN (old);
7215f9a0 4412 --tinst_depth;
27fafc8d 4413 ++tinst_level_tick;
8d08fdba
MS
4414}
4415
3ae18eaf
JM
4416/* We're instantiating a deferred template; restore the template
4417 instantiation context in which the instantiation was requested, which
4418 is one step out from LEVEL. */
4419
4420static void
4421reopen_tinst_level (level)
4422 tree level;
4423{
4424 tree t;
4425
4426 tinst_depth = 0;
4427 for (t = level; t; t = TREE_CHAIN (t))
4428 ++tinst_depth;
4429
4430 current_tinst_level = level;
4431 pop_tinst_level ();
4432}
4433
4434/* Return the outermost template instantiation context, for use with
4435 -falt-external-templates. */
4436
4437tree
8d08fdba
MS
4438tinst_for_decl ()
4439{
3ae18eaf 4440 tree p = current_tinst_level;
8d08fdba
MS
4441
4442 if (p)
3ae18eaf 4443 for (; TREE_CHAIN (p) ; p = TREE_CHAIN (p))
8d08fdba
MS
4444 ;
4445 return p;
4446}
4447
f84b4be9
JM
4448/* DECL is a friend FUNCTION_DECL or TEMPLATE_DECL. ARGS is the
4449 vector of template arguments, as for tsubst.
4450
4451 Returns an appropriate tsbust'd friend declaration. */
4452
4453static tree
4454tsubst_friend_function (decl, args)
4455 tree decl;
4456 tree args;
4457{
4458 tree new_friend;
27fafc8d 4459 int line = lineno;
3b304f5b 4460 const char *file = input_filename;
27fafc8d
JM
4461
4462 lineno = DECL_SOURCE_LINE (decl);
4463 input_filename = DECL_SOURCE_FILE (decl);
4464
f84b4be9
JM
4465 if (TREE_CODE (decl) == FUNCTION_DECL
4466 && DECL_TEMPLATE_INSTANTIATION (decl)
4467 && TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
4468 /* This was a friend declared with an explicit template
4469 argument list, e.g.:
4470
4471 friend void f<>(T);
4472
4473 to indicate that f was a template instantiation, not a new
4474 function declaration. Now, we have to figure out what
4475 instantiation of what template. */
4476 {
4477 tree template_id;
4478 tree new_args;
4479 tree tmpl;
f84b4be9
JM
4480
4481 template_id
4482 = lookup_template_function (tsubst_expr (DECL_TI_TEMPLATE (decl),
4393e105
MM
4483 args, /*complain=*/1,
4484 NULL_TREE),
f84b4be9 4485 tsubst (DECL_TI_ARGS (decl),
4393e105
MM
4486 args, /*complain=*/1,
4487 NULL_TREE));
4393e105 4488 new_friend = tsubst (decl, args, /*complain=*/1, NULL_TREE);
36a117a5
MM
4489 tmpl = determine_specialization (template_id, new_friend,
4490 &new_args,
bf8f3f93 4491 /*need_member_template=*/0);
27fafc8d
JM
4492 new_friend = instantiate_template (tmpl, new_args);
4493 goto done;
f84b4be9 4494 }
36a117a5 4495
4393e105 4496 new_friend = tsubst (decl, args, /*complain=*/1, NULL_TREE);
f84b4be9 4497
36a117a5 4498 /* The NEW_FRIEND will look like an instantiation, to the
f84b4be9
JM
4499 compiler, but is not an instantiation from the point of view of
4500 the language. For example, we might have had:
4501
4502 template <class T> struct S {
4503 template <class U> friend void f(T, U);
4504 };
4505
4506 Then, in S<int>, template <class U> void f(int, U) is not an
4507 instantiation of anything. */
4508 DECL_USE_TEMPLATE (new_friend) = 0;
4509 if (TREE_CODE (decl) == TEMPLATE_DECL)
655dc6ee
JM
4510 {
4511 DECL_USE_TEMPLATE (DECL_TEMPLATE_RESULT (new_friend)) = 0;
4512 DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (new_friend))
4513 = DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (decl));
4514 }
36a117a5
MM
4515
4516 /* The mangled name for the NEW_FRIEND is incorrect. The call to
669ec2b4
JM
4517 tsubst will have resulted in a call to
4518 set_mangled_name_for_template_decl. But, the function is not a
4519 template instantiation and should not be mangled like one.
4520 Therefore, we remangle the function name. We don't have to do
4521 this if the NEW_FRIEND is a template since
36a117a5
MM
4522 set_mangled_name_for_template_decl doesn't do anything if the
4523 function declaration still uses template arguments. */
4524 if (TREE_CODE (new_friend) != TEMPLATE_DECL)
4525 {
4526 set_mangled_name_for_decl (new_friend);
4527 DECL_RTL (new_friend) = 0;
4528 make_decl_rtl (new_friend, NULL_PTR, 1);
4529 }
4530
6eb3bb27 4531 if (DECL_NAMESPACE_SCOPE_P (new_friend))
f84b4be9 4532 {
36a117a5 4533 tree old_decl;
fbf1c34b
MM
4534 tree new_friend_template_info;
4535 tree new_friend_result_template_info;
92da7074 4536 tree ns;
fbf1c34b
MM
4537 int new_friend_is_defn;
4538
4539 /* We must save some information from NEW_FRIEND before calling
4540 duplicate decls since that function will free NEW_FRIEND if
4541 possible. */
4542 new_friend_template_info = DECL_TEMPLATE_INFO (new_friend);
f84b4be9 4543 if (TREE_CODE (new_friend) == TEMPLATE_DECL)
fbf1c34b
MM
4544 {
4545 /* This declaration is a `primary' template. */
4546 DECL_PRIMARY_TEMPLATE (new_friend) = new_friend;
4547
4548 new_friend_is_defn
17aec3eb 4549 = DECL_INITIAL (DECL_TEMPLATE_RESULT (new_friend)) != NULL_TREE;
fbf1c34b 4550 new_friend_result_template_info
17aec3eb 4551 = DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (new_friend));
fbf1c34b
MM
4552 }
4553 else
4554 {
4555 new_friend_is_defn = DECL_INITIAL (new_friend) != NULL_TREE;
4556 new_friend_result_template_info = NULL_TREE;
4557 }
36a117a5 4558
1c227897
MM
4559 /* Inside pushdecl_namespace_level, we will push into the
4560 current namespace. However, the friend function should go
4561 into the namespace of the template. */
92da7074
ML
4562 ns = decl_namespace_context (new_friend);
4563 push_nested_namespace (ns);
36a117a5 4564 old_decl = pushdecl_namespace_level (new_friend);
92da7074 4565 pop_nested_namespace (ns);
36a117a5
MM
4566
4567 if (old_decl != new_friend)
4568 {
4569 /* This new friend declaration matched an existing
4570 declaration. For example, given:
4571
4572 template <class T> void f(T);
4573 template <class U> class C {
4574 template <class T> friend void f(T) {}
4575 };
4576
4577 the friend declaration actually provides the definition
4578 of `f', once C has been instantiated for some type. So,
4579 old_decl will be the out-of-class template declaration,
4580 while new_friend is the in-class definition.
4581
4582 But, if `f' was called before this point, the
4583 instantiation of `f' will have DECL_TI_ARGS corresponding
4584 to `T' but not to `U', references to which might appear
4585 in the definition of `f'. Previously, the most general
4586 template for an instantiation of `f' was the out-of-class
4587 version; now it is the in-class version. Therefore, we
4588 run through all specialization of `f', adding to their
4589 DECL_TI_ARGS appropriately. In particular, they need a
4590 new set of outer arguments, corresponding to the
4591 arguments for this class instantiation.
4592
4593 The same situation can arise with something like this:
4594
4595 friend void f(int);
4596 template <class T> class C {
4597 friend void f(T) {}
4598 };
4599
4600 when `C<int>' is instantiated. Now, `f(int)' is defined
4601 in the class. */
4602
fbf1c34b
MM
4603 if (!new_friend_is_defn)
4604 /* On the other hand, if the in-class declaration does
4605 *not* provide a definition, then we don't want to alter
4606 existing definitions. We can just leave everything
4607 alone. */
36a117a5 4608 ;
fbf1c34b 4609 else
36a117a5 4610 {
fbf1c34b
MM
4611 /* Overwrite whatever template info was there before, if
4612 any, with the new template information pertaining to
4613 the declaration. */
4614 DECL_TEMPLATE_INFO (old_decl) = new_friend_template_info;
4615
4616 if (TREE_CODE (old_decl) != TEMPLATE_DECL)
4617 /* duplicate_decls will take care of this case. */
4618 ;
4619 else
36a117a5 4620 {
fbf1c34b
MM
4621 tree t;
4622 tree new_friend_args;
4623
17aec3eb 4624 DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (old_decl))
fbf1c34b
MM
4625 = new_friend_result_template_info;
4626
4627 new_friend_args = TI_ARGS (new_friend_template_info);
4628 for (t = DECL_TEMPLATE_SPECIALIZATIONS (old_decl);
4629 t != NULL_TREE;
4630 t = TREE_CHAIN (t))
4631 {
4632 tree spec = TREE_VALUE (t);
36a117a5 4633
fbf1c34b
MM
4634 DECL_TI_ARGS (spec)
4635 = add_outermost_template_args (new_friend_args,
4636 DECL_TI_ARGS (spec));
fbf1c34b
MM
4637 }
4638
4639 /* Now, since specializations are always supposed to
4640 hang off of the most general template, we must move
4641 them. */
4642 t = most_general_template (old_decl);
4643 if (t != old_decl)
4644 {
4645 DECL_TEMPLATE_SPECIALIZATIONS (t)
4646 = chainon (DECL_TEMPLATE_SPECIALIZATIONS (t),
4647 DECL_TEMPLATE_SPECIALIZATIONS (old_decl));
4648 DECL_TEMPLATE_SPECIALIZATIONS (old_decl) = NULL_TREE;
4649 }
36a117a5
MM
4650 }
4651 }
4652
4653 /* The information from NEW_FRIEND has been merged into OLD_DECL
4654 by duplicate_decls. */
4655 new_friend = old_decl;
4656 }
f84b4be9 4657 }
d0f062fb 4658 else if (COMPLETE_TYPE_P (DECL_CONTEXT (new_friend)))
f84b4be9
JM
4659 {
4660 /* Check to see that the declaration is really present, and,
4661 possibly obtain an improved declaration. */
4662 tree fn = check_classfn (DECL_CONTEXT (new_friend),
4663 new_friend);
4664
4665 if (fn)
4666 new_friend = fn;
4667 }
4668
27fafc8d
JM
4669 done:
4670 lineno = line;
4671 input_filename = file;
f84b4be9
JM
4672 return new_friend;
4673}
4674
1aed5355
MM
4675/* FRIEND_TMPL is a friend TEMPLATE_DECL. ARGS is the vector of
4676 template arguments, as for tsubst.
6757edfe
MM
4677
4678 Returns an appropriate tsbust'd friend type. */
4679
4680static tree
1aed5355
MM
4681tsubst_friend_class (friend_tmpl, args)
4682 tree friend_tmpl;
6757edfe
MM
4683 tree args;
4684{
1aed5355 4685 tree friend_type;
25aab5d0 4686 tree tmpl;
6757edfe 4687
25aab5d0
MM
4688 /* First, we look for a class template. */
4689 tmpl = lookup_name (DECL_NAME (friend_tmpl), /*prefer_type=*/0);
4690
4691 /* But, if we don't find one, it might be because we're in a
4692 situation like this:
4693
4694 template <class T>
4695 struct S {
4696 template <class U>
4697 friend struct S;
4698 };
4699
4700 Here, in the scope of (say) S<int>, `S' is bound to a TYPE_DECL
4701 for `S<int>', not the TEMPLATE_DECL. */
bc639f90 4702 if (!tmpl || !DECL_CLASS_TEMPLATE_P (tmpl))
25aab5d0
MM
4703 {
4704 tmpl = lookup_name (DECL_NAME (friend_tmpl), /*prefer_type=*/1);
4705 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
4706 }
6757edfe 4707
25aab5d0 4708 if (tmpl && DECL_CLASS_TEMPLATE_P (tmpl))
6757edfe
MM
4709 {
4710 /* The friend template has already been declared. Just
36a117a5
MM
4711 check to see that the declarations match, and install any new
4712 default parameters. We must tsubst the default parameters,
4713 of course. We only need the innermost template parameters
4714 because that is all that redeclare_class_template will look
4715 at. */
4716 tree parms
4717 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_tmpl),
4393e105 4718 args, /*complain=*/1);
36a117a5 4719 redeclare_class_template (TREE_TYPE (tmpl), parms);
6757edfe
MM
4720 friend_type = TREE_TYPE (tmpl);
4721 }
4722 else
4723 {
4724 /* The friend template has not already been declared. In this
4725 case, the instantiation of the template class will cause the
4726 injection of this template into the global scope. */
4393e105 4727 tmpl = tsubst (friend_tmpl, args, /*complain=*/1, NULL_TREE);
6757edfe
MM
4728
4729 /* The new TMPL is not an instantiation of anything, so we
4730 forget its origins. We don't reset CLASSTYPE_TI_TEMPLATE for
4731 the new type because that is supposed to be the corresponding
4732 template decl, i.e., TMPL. */
4733 DECL_USE_TEMPLATE (tmpl) = 0;
4734 DECL_TEMPLATE_INFO (tmpl) = NULL_TREE;
4735 CLASSTYPE_USE_TEMPLATE (TREE_TYPE (tmpl)) = 0;
4736
4737 /* Inject this template into the global scope. */
4738 friend_type = TREE_TYPE (pushdecl_top_level (tmpl));
4739 }
4740
4741 return friend_type;
4742}
f84b4be9 4743
8d08fdba 4744tree
5566b478
MS
4745instantiate_class_template (type)
4746 tree type;
8d08fdba 4747{
61a127b3 4748 tree template, args, pattern, t;
36a117a5 4749 tree typedecl;
8d08fdba 4750
5566b478 4751 if (type == error_mark_node)
8d08fdba
MS
4752 return error_mark_node;
4753
d0f062fb 4754 if (TYPE_BEING_DEFINED (type) || COMPLETE_TYPE_P (type))
5566b478
MS
4755 return type;
4756
6bdb985f 4757 /* Figure out which template is being instantiated. */
36a117a5 4758 template = most_general_template (CLASSTYPE_TI_TEMPLATE (type));
5566b478 4759 my_friendly_assert (TREE_CODE (template) == TEMPLATE_DECL, 279);
73aad9b9 4760
6bdb985f
MM
4761 /* Figure out which arguments are being used to do the
4762 instantiation. */
4763 args = CLASSTYPE_TI_ARGS (type);
4c571114 4764 PARTIAL_INSTANTIATION_P (type) = uses_template_parms (args);
6bdb985f 4765
4c571114
MM
4766 if (pedantic && PARTIAL_INSTANTIATION_P (type))
4767 /* If this is a partial instantiation, then we can't instantiate
4768 the type; there's no telling whether or not one of the
4769 template parameters might eventually be instantiated to some
4770 value that results in a specialization being used. For
4771 example, consider:
4772
4773 template <class T>
4774 struct S {};
4775
4776 template <class U>
4777 void f(S<U>);
4778
4779 template <>
4780 struct S<int> {};
4781
4782 Now, the `S<U>' in `f<int>' is the specialization, not an
5db698f6 4783 instantiation of the original template. */
f31c0a32 4784 return type;
4c571114
MM
4785
4786 /* Determine what specialization of the original template to
4787 instantiate. */
4788 if (PARTIAL_INSTANTIATION_P (type))
6bdb985f
MM
4789 /* There's no telling which specialization is appropriate at this
4790 point. Since all peeking at the innards of this partial
4791 instantiation are extensions (like the "implicit typename"
4792 extension, which allows users to omit the keyword `typename' on
4793 names that are declared as types in template base classes), we
4794 are free to do what we please.
4795
4796 Trying to figure out which partial instantiation to use can
4797 cause a crash. (Some of the template arguments don't even have
4798 types.) So, we just use the most general version. */
4799 t = NULL_TREE;
4800 else
73aad9b9 4801 {
6bdb985f
MM
4802 t = most_specialized_class (template, args);
4803
4804 if (t == error_mark_node)
73aad9b9 4805 {
d8e178a0 4806 const char *str = "candidates are:";
6bdb985f
MM
4807 cp_error ("ambiguous class template instantiation for `%#T'", type);
4808 for (t = DECL_TEMPLATE_SPECIALIZATIONS (template); t;
4809 t = TREE_CHAIN (t))
73aad9b9 4810 {
6bdb985f
MM
4811 if (get_class_bindings (TREE_VALUE (t), TREE_PURPOSE (t),
4812 args))
4813 {
4814 cp_error_at ("%s %+#T", str, TREE_TYPE (t));
4815 str = " ";
4816 }
73aad9b9 4817 }
6bdb985f 4818 TYPE_BEING_DEFINED (type) = 1;
f31c0a32 4819 return error_mark_node;
73aad9b9 4820 }
73aad9b9 4821 }
6bdb985f
MM
4822
4823 if (t)
73aad9b9
JM
4824 pattern = TREE_TYPE (t);
4825 else
4826 pattern = TREE_TYPE (template);
5566b478 4827
4c571114
MM
4828 /* If the template we're instantiating is incomplete, then clearly
4829 there's nothing we can do. */
d0f062fb 4830 if (!COMPLETE_TYPE_P (pattern))
f31c0a32 4831 return type;
5566b478 4832
4c571114
MM
4833 /* If this is a partial instantiation, don't tsubst anything. We will
4834 only use this type for implicit typename, so the actual contents don't
4835 matter. All that matters is whether a particular name is a type. */
4836 if (PARTIAL_INSTANTIATION_P (type))
4837 {
4838 /* The fields set here must be kept in sync with those cleared
4839 in begin_class_definition. */
4840 TYPE_BINFO_BASETYPES (type) = TYPE_BINFO_BASETYPES (pattern);
4841 TYPE_FIELDS (type) = TYPE_FIELDS (pattern);
4842 TYPE_METHODS (type) = TYPE_METHODS (pattern);
4843 CLASSTYPE_TAGS (type) = CLASSTYPE_TAGS (pattern);
1ddd4323
NS
4844 CLASSTYPE_VBASECLASSES (type) = CLASSTYPE_VBASECLASSES (pattern);
4845
4c571114
MM
4846 /* Pretend that the type is complete, so that we will look
4847 inside it during name lookup and such. */
867580ce 4848 TYPE_SIZE (type) = bitsize_zero_node;
f31c0a32 4849 return type;
4c571114
MM
4850 }
4851
4852 /* If we've recursively instantiated too many templates, stop. */
4853 if (! push_tinst_level (type))
f31c0a32 4854 return type;
4c571114
MM
4855
4856 /* Now we're really doing the instantiation. Mark the type as in
4857 the process of being defined. */
4858 TYPE_BEING_DEFINED (type) = 1;
4859
4860 maybe_push_to_top_level (uses_template_parms (type));
4c571114 4861
73aad9b9 4862 if (t)
36a117a5
MM
4863 {
4864 /* This TYPE is actually a instantiation of of a partial
4865 specialization. We replace the innermost set of ARGS with
4866 the arguments appropriate for substitution. For example,
4867 given:
4868
4869 template <class T> struct S {};
4870 template <class T> struct S<T*> {};
4871
4872 and supposing that we are instantiating S<int*>, ARGS will
4873 present be {int*} but we need {int}. */
4874 tree inner_args
4875 = get_class_bindings (TREE_VALUE (t), TREE_PURPOSE (t),
4876 args);
4877
4878 /* If there were multiple levels in ARGS, replacing the
4879 innermost level would alter CLASSTYPE_TI_ARGS, which we don't
4880 want, so we make a copy first. */
4881 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
4882 {
4883 args = copy_node (args);
4884 SET_TMPL_ARGS_LEVEL (args, TMPL_ARGS_DEPTH (args), inner_args);
4885 }
4886 else
4887 args = inner_args;
4888 }
8d019cef 4889
5566b478
MS
4890 if (flag_external_templates)
4891 {
4892 if (flag_alt_external_templates)
4893 {
4894 CLASSTYPE_INTERFACE_ONLY (type) = interface_only;
4895 SET_CLASSTYPE_INTERFACE_UNKNOWN_X (type, interface_unknown);
4896 CLASSTYPE_VTABLE_NEEDS_WRITING (type)
2604412d
JM
4897 = (! CLASSTYPE_INTERFACE_ONLY (type)
4898 && CLASSTYPE_INTERFACE_KNOWN (type));
5566b478
MS
4899 }
4900 else
4901 {
4902 CLASSTYPE_INTERFACE_ONLY (type) = CLASSTYPE_INTERFACE_ONLY (pattern);
4903 SET_CLASSTYPE_INTERFACE_UNKNOWN_X
4904 (type, CLASSTYPE_INTERFACE_UNKNOWN (pattern));
4905 CLASSTYPE_VTABLE_NEEDS_WRITING (type)
2604412d
JM
4906 = (! CLASSTYPE_INTERFACE_ONLY (type)
4907 && CLASSTYPE_INTERFACE_KNOWN (type));
5566b478
MS
4908 }
4909 }
4910 else
8d08fdba 4911 {
5566b478
MS
4912 SET_CLASSTYPE_INTERFACE_UNKNOWN (type);
4913 CLASSTYPE_VTABLE_NEEDS_WRITING (type) = 1;
8d08fdba
MS
4914 }
4915
f7da6097
MS
4916 TYPE_HAS_CONSTRUCTOR (type) = TYPE_HAS_CONSTRUCTOR (pattern);
4917 TYPE_HAS_DESTRUCTOR (type) = TYPE_HAS_DESTRUCTOR (pattern);
f7da6097
MS
4918 TYPE_OVERLOADS_CALL_EXPR (type) = TYPE_OVERLOADS_CALL_EXPR (pattern);
4919 TYPE_OVERLOADS_ARRAY_REF (type) = TYPE_OVERLOADS_ARRAY_REF (pattern);
4920 TYPE_OVERLOADS_ARROW (type) = TYPE_OVERLOADS_ARROW (pattern);
834c6dff
MM
4921 TYPE_HAS_NEW_OPERATOR (type) = TYPE_HAS_NEW_OPERATOR (pattern);
4922 TYPE_HAS_ARRAY_NEW_OPERATOR (type) = TYPE_HAS_ARRAY_NEW_OPERATOR (pattern);
f7da6097
MS
4923 TYPE_GETS_DELETE (type) = TYPE_GETS_DELETE (pattern);
4924 TYPE_VEC_DELETE_TAKES_SIZE (type) = TYPE_VEC_DELETE_TAKES_SIZE (pattern);
4925 TYPE_HAS_ASSIGN_REF (type) = TYPE_HAS_ASSIGN_REF (pattern);
4926 TYPE_HAS_CONST_ASSIGN_REF (type) = TYPE_HAS_CONST_ASSIGN_REF (pattern);
4927 TYPE_HAS_ABSTRACT_ASSIGN_REF (type) = TYPE_HAS_ABSTRACT_ASSIGN_REF (pattern);
4928 TYPE_HAS_INIT_REF (type) = TYPE_HAS_INIT_REF (pattern);
4929 TYPE_HAS_CONST_INIT_REF (type) = TYPE_HAS_CONST_INIT_REF (pattern);
f7da6097
MS
4930 TYPE_HAS_DEFAULT_CONSTRUCTOR (type) = TYPE_HAS_DEFAULT_CONSTRUCTOR (pattern);
4931 TYPE_HAS_CONVERSION (type) = TYPE_HAS_CONVERSION (pattern);
4c6b7393
MM
4932 TYPE_BASE_CONVS_MAY_REQUIRE_CODE_P (type)
4933 = TYPE_BASE_CONVS_MAY_REQUIRE_CODE_P (pattern);
f7da6097
MS
4934 TYPE_USES_MULTIPLE_INHERITANCE (type)
4935 = TYPE_USES_MULTIPLE_INHERITANCE (pattern);
4936 TYPE_USES_VIRTUAL_BASECLASSES (type)
4937 = TYPE_USES_VIRTUAL_BASECLASSES (pattern);
4938 TYPE_PACKED (type) = TYPE_PACKED (pattern);
4939 TYPE_ALIGN (type) = TYPE_ALIGN (pattern);
11cf4d18 4940 TYPE_USER_ALIGN (type) = TYPE_USER_ALIGN (pattern);
eff71ab0 4941 TYPE_FOR_JAVA (type) = TYPE_FOR_JAVA (pattern); /* For libjava's JArray<T> */
6bdb8141
JM
4942 if (ANON_AGGR_TYPE_P (pattern))
4943 SET_ANON_AGGR_TYPE_P (type);
f7da6097 4944
3fd71a52
MM
4945 if (TYPE_BINFO_BASETYPES (pattern))
4946 {
4947 tree base_list = NULL_TREE;
4948 tree pbases = TYPE_BINFO_BASETYPES (pattern);
4949 int i;
5566b478 4950
3fd71a52
MM
4951 /* Substitute into each of the bases to determine the actual
4952 basetypes. */
4953 for (i = 0; i < TREE_VEC_LENGTH (pbases); ++i)
4954 {
4955 tree base;
4956 tree access;
4957 tree pbase;
5566b478 4958
3fd71a52 4959 pbase = TREE_VEC_ELT (pbases, i);
711734a9 4960
3fd71a52
MM
4961 /* Substitue to figure out the base class. */
4962 base = tsubst (BINFO_TYPE (pbase), args,
4963 /*complain=*/1, NULL_TREE);
4964 if (base == error_mark_node)
4965 continue;
711734a9 4966
3fd71a52
MM
4967 /* Calculate the correct access node. */
4968 if (TREE_VIA_VIRTUAL (pbase))
4969 {
4970 if (TREE_VIA_PUBLIC (pbase))
4971 access = access_public_virtual_node;
4972 else if (TREE_VIA_PROTECTED (pbase))
4973 access = access_protected_virtual_node;
d6479fe7 4974 else
3fd71a52
MM
4975 access = access_private_virtual_node;
4976 }
4977 else
4978 {
4979 if (TREE_VIA_PUBLIC (pbase))
4980 access = access_public_node;
4981 else if (TREE_VIA_PROTECTED (pbase))
4982 access = access_protected_node;
d6479fe7 4983 else
3fd71a52
MM
4984 access = access_private_node;
4985 }
dfbcd65a 4986
3fd71a52
MM
4987 base_list = tree_cons (access, base, base_list);
4988 }
dfbcd65a 4989
3fd71a52
MM
4990 /* The list is now in reverse order; correct that. */
4991 base_list = nreverse (base_list);
4992
4993 /* Now call xref_basetypes to set up all the base-class
4994 information. */
4995 xref_basetypes (TREE_CODE (pattern) == RECORD_TYPE
4996 ? (CLASSTYPE_DECLARED_CLASS (pattern)
4997 ? class_type_node : record_type_node)
4998 : union_type_node,
4999 DECL_NAME (TYPE_NAME (pattern)),
5000 type,
5001 base_list);
5002 }
5566b478 5003
b74a0560
MM
5004 /* Now that our base classes are set up, enter the scope of the
5005 class, so that name lookups into base classes, etc. will work
5006 corectly. This is precisely analagous to what we do in
5007 begin_class_definition when defining an ordinary non-template
5008 class. */
5009 pushclass (type, 1);
5010
5566b478 5011 for (t = CLASSTYPE_TAGS (pattern); t; t = TREE_CHAIN (t))
8d08fdba 5012 {
5566b478 5013 tree tag = TREE_VALUE (t);
36a117a5
MM
5014 tree name = TYPE_IDENTIFIER (tag);
5015 tree newtag;
5566b478 5016
4393e105 5017 newtag = tsubst (tag, args, /*complain=*/1, NULL_TREE);
61a127b3 5018 if (TREE_CODE (newtag) != ENUMERAL_TYPE)
ed44da02 5019 {
486e4077
MM
5020 if (TYPE_LANG_SPECIFIC (tag) && CLASSTYPE_IS_TEMPLATE (tag))
5021 /* Unfortunately, lookup_template_class sets
5022 CLASSTYPE_IMPLICIT_INSTANTIATION for a partial
5023 instantiation (i.e., for the type of a member template
5024 class nested within a template class.) This behavior is
5025 required for maybe_process_partial_specialization to work
5026 correctly, but is not accurate in this case; the TAG is not
5027 an instantiation of anything. (The corresponding
5028 TEMPLATE_DECL is an instantiation, but the TYPE is not.) */
5029 CLASSTYPE_USE_TEMPLATE (newtag) = 0;
5030
ed44da02
MM
5031 /* Now, we call pushtag to put this NEWTAG into the scope of
5032 TYPE. We first set up the IDENTIFIER_TYPE_VALUE to avoid
5033 pushtag calling push_template_decl. We don't have to do
5034 this for enums because it will already have been done in
5035 tsubst_enum. */
5036 if (name)
5037 SET_IDENTIFIER_TYPE_VALUE (name, newtag);
5038 pushtag (name, newtag, /*globalize=*/0);
5039 }
8d08fdba
MS
5040 }
5041
5566b478
MS
5042 /* Don't replace enum constants here. */
5043 for (t = TYPE_FIELDS (pattern); t; t = TREE_CHAIN (t))
8dd3f57a 5044 if (TREE_CODE (t) != CONST_DECL)
5566b478 5045 {
ae58fa02
MM
5046 tree r;
5047
5048 /* The the file and line for this declaration, to assist in
5049 error message reporting. Since we called push_tinst_level
5050 above, we don't need to restore these. */
5051 lineno = DECL_SOURCE_LINE (t);
5052 input_filename = DECL_SOURCE_FILE (t);
5053
4393e105 5054 r = tsubst (t, args, /*complain=*/1, NULL_TREE);
5566b478
MS
5055 if (TREE_CODE (r) == VAR_DECL)
5056 {
fa8d6e85
MM
5057 tree init;
5058
94c82a77 5059 if (DECL_DEFINED_IN_CLASS_P (r))
fa8d6e85
MM
5060 init = tsubst_expr (DECL_INITIAL (t), args,
5061 /*complain=*/1, NULL_TREE);
5062 else
5063 init = NULL_TREE;
5064
5065 finish_static_data_member_decl (r, init,
5066 /*asmspec_tree=*/NULL_TREE,
fa8d6e85
MM
5067 /*flags=*/0);
5068
6ba89f8e
MM
5069 if (DECL_DEFINED_IN_CLASS_P (r))
5070 check_static_variable_definition (r, TREE_TYPE (r));
5566b478 5071 }
61a127b3
MM
5072
5073 /* R will have a TREE_CHAIN if and only if it has already been
5074 processed by finish_member_declaration. This can happen
5075 if, for example, it is a TYPE_DECL for a class-scoped
5076 ENUMERAL_TYPE; such a thing will already have been added to
5077 the field list by tsubst_enum above. */
5078 if (!TREE_CHAIN (r))
5079 {
5080 set_current_access_from_decl (r);
5081 finish_member_declaration (r);
5082 }
5566b478 5083 }
8d08fdba 5084
61a127b3
MM
5085 /* Set up the list (TYPE_METHODS) and vector (CLASSTYPE_METHOD_VEC)
5086 for this instantiation. */
5087 for (t = TYPE_METHODS (pattern); t; t = TREE_CHAIN (t))
5088 {
4393e105 5089 tree r = tsubst (t, args, /*complain=*/1, NULL_TREE);
61a127b3
MM
5090 set_current_access_from_decl (r);
5091 finish_member_declaration (r);
5092 }
8d08fdba 5093
2604412d
JM
5094 /* Construct the DECL_FRIENDLIST for the new class type. */
5095 typedecl = TYPE_MAIN_DECL (type);
5096 for (t = DECL_FRIENDLIST (TYPE_MAIN_DECL (pattern));
5097 t != NULL_TREE;
5098 t = TREE_CHAIN (t))
f84b4be9 5099 {
2604412d 5100 tree friends;
f84b4be9 5101
2604412d
JM
5102 for (friends = TREE_VALUE (t);
5103 friends != NULL_TREE;
5104 friends = TREE_CHAIN (friends))
0c0aac2f
MM
5105 if (TREE_PURPOSE (friends) == error_mark_node)
5106 add_friend (type,
5107 tsubst_friend_function (TREE_VALUE (friends),
5108 args));
5109 else
4f1c5b7d 5110 my_friendly_abort (20000216);
2604412d 5111 }
5566b478 5112
6757edfe
MM
5113 for (t = CLASSTYPE_FRIEND_CLASSES (pattern);
5114 t != NULL_TREE;
5115 t = TREE_CHAIN (t))
5116 {
5117 tree friend_type = TREE_VALUE (t);
1aed5355 5118 tree new_friend_type;
6757edfe 5119
36a117a5
MM
5120 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
5121 new_friend_type = tsubst_friend_class (friend_type, args);
5122 else if (uses_template_parms (friend_type))
4393e105
MM
5123 new_friend_type = tsubst (friend_type, args, /*complain=*/1,
5124 NULL_TREE);
36a117a5 5125 else
61fc8c9e
MM
5126 {
5127 tree ns = decl_namespace_context (TYPE_MAIN_DECL (friend_type));
36a117a5 5128
61fc8c9e
MM
5129 /* The call to xref_tag_from_type does injection for friend
5130 classes. */
5131 push_nested_namespace (ns);
5132 new_friend_type =
5133 xref_tag_from_type (friend_type, NULL_TREE, 1);
5134 pop_nested_namespace (ns);
5135 }
1aed5355
MM
5136
5137 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
5138 /* Trick make_friend_class into realizing that the friend
5139 we're adding is a template, not an ordinary class. It's
5140 important that we use make_friend_class since it will
5141 perform some error-checking and output cross-reference
5142 information. */
5143 ++processing_template_decl;
5144
5145 make_friend_class (type, new_friend_type);
fc378698 5146
1aed5355
MM
5147 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
5148 --processing_template_decl;
6757edfe 5149 }
fc378698 5150
2604412d
JM
5151 for (t = TYPE_FIELDS (type); t; t = TREE_CHAIN (t))
5152 if (TREE_CODE (t) == FIELD_DECL)
5153 {
5154 TREE_TYPE (t) = complete_type (TREE_TYPE (t));
5155 require_complete_type (t);
5156 }
5566b478 5157
61a127b3
MM
5158 /* Set the file and line number information to whatever is given for
5159 the class itself. This puts error messages involving generated
5160 implicit functions at a predictable point, and the same point
5161 that would be used for non-template classes. */
5162 lineno = DECL_SOURCE_LINE (typedecl);
5163 input_filename = DECL_SOURCE_FILE (typedecl);
5164
5165 unreverse_member_declarations (type);
9f33663b 5166 finish_struct_1 (type);
2604412d 5167 CLASSTYPE_GOT_SEMICOLON (type) = 1;
e92cc029 5168
5524676d
JM
5169 /* Clear this now so repo_template_used is happy. */
5170 TYPE_BEING_DEFINED (type) = 0;
2604412d 5171 repo_template_used (type);
8d08fdba 5172
9188c363
MM
5173 /* Now that the class is complete, instantiate default arguments for
5174 any member functions. We don't do this earlier because the
5175 default arguments may reference members of the class. */
5176 if (!PRIMARY_TEMPLATE_P (template))
5177 for (t = TYPE_METHODS (type); t; t = TREE_CHAIN (t))
5178 if (TREE_CODE (t) == FUNCTION_DECL
5179 /* Implicitly generated member functions will not have tmplate
5180 information; they are not instantiations, but instead are
5181 created "fresh" for each instantiation. */
5182 && DECL_TEMPLATE_INFO (t))
5183 tsubst_default_arguments (t);
5184
b74a0560 5185 popclass ();
5566b478
MS
5186 pop_from_top_level ();
5187 pop_tinst_level ();
5188
5189 return type;
8d08fdba
MS
5190}
5191
5192static int
5193list_eq (t1, t2)
5194 tree t1, t2;
5195{
5196 if (t1 == NULL_TREE)
5197 return t2 == NULL_TREE;
5198 if (t2 == NULL_TREE)
5199 return 0;
5200 /* Don't care if one declares its arg const and the other doesn't -- the
5201 main variant of the arg type is all that matters. */
5202 if (TYPE_MAIN_VARIANT (TREE_VALUE (t1))
5203 != TYPE_MAIN_VARIANT (TREE_VALUE (t2)))
5204 return 0;
5205 return list_eq (TREE_CHAIN (t1), TREE_CHAIN (t2));
5206}
5207
00d3396f
JM
5208/* If arg is a non-type template parameter that does not depend on template
5209 arguments, fold it like we weren't in the body of a template. */
5210
5211static tree
5212maybe_fold_nontype_arg (arg)
5213 tree arg;
5214{
7610f2ce
JM
5215 /* If we're not in a template, ARG is already as simple as it's going to
5216 get, and trying to reprocess the trees will break. */
5217 if (! processing_template_decl)
5218 return arg;
5219
2f939d94 5220 if (!TYPE_P (arg) && !uses_template_parms (arg))
00d3396f
JM
5221 {
5222 /* Sometimes, one of the args was an expression involving a
5223 template constant parameter, like N - 1. Now that we've
5224 tsubst'd, we might have something like 2 - 1. This will
5225 confuse lookup_template_class, so we do constant folding
5226 here. We have to unset processing_template_decl, to
5227 fool build_expr_from_tree() into building an actual
5228 tree. */
5229
5230 int saved_processing_template_decl = processing_template_decl;
5231 processing_template_decl = 0;
5232 arg = fold (build_expr_from_tree (arg));
5233 processing_template_decl = saved_processing_template_decl;
5234 }
5235 return arg;
5236}
5237
830bfa74
MM
5238/* Substitute ARGS into the vector of template arguments T. */
5239
e9659ab0 5240static tree
4393e105 5241tsubst_template_arg_vector (t, args, complain)
830bfa74
MM
5242 tree t;
5243 tree args;
4393e105 5244 int complain;
830bfa74
MM
5245{
5246 int len = TREE_VEC_LENGTH (t), need_new = 0, i;
5247 tree *elts = (tree *) alloca (len * sizeof (tree));
5248
5249 bzero ((char *) elts, len * sizeof (tree));
5250
5251 for (i = 0; i < len; i++)
5252 {
5253 if (TREE_VEC_ELT (t, i) != NULL_TREE
5254 && TREE_CODE (TREE_VEC_ELT (t, i)) == TREE_VEC)
4393e105
MM
5255 elts[i] = tsubst_template_arg_vector (TREE_VEC_ELT (t, i),
5256 args, complain);
830bfa74
MM
5257 else
5258 elts[i] = maybe_fold_nontype_arg
4393e105
MM
5259 (tsubst_expr (TREE_VEC_ELT (t, i), args, complain,
5260 NULL_TREE));
830bfa74
MM
5261
5262 if (elts[i] != TREE_VEC_ELT (t, i))
5263 need_new = 1;
5264 }
5265
5266 if (!need_new)
5267 return t;
5268
f31c0a32 5269 t = make_tree_vec (len);
830bfa74
MM
5270 for (i = 0; i < len; i++)
5271 TREE_VEC_ELT (t, i) = elts[i];
5272
5273 return t;
5274}
5275
36a117a5
MM
5276/* Return the result of substituting ARGS into the template parameters
5277 given by PARMS. If there are m levels of ARGS and m + n levels of
5278 PARMS, then the result will contain n levels of PARMS. For
5279 example, if PARMS is `template <class T> template <class U>
5280 template <T*, U, class V>' and ARGS is {{int}, {double}} then the
5281 result will be `template <int*, double, class V>'. */
5282
e9659ab0 5283static tree
4393e105 5284tsubst_template_parms (parms, args, complain)
36a117a5
MM
5285 tree parms;
5286 tree args;
4393e105 5287 int complain;
36a117a5 5288{
f71f87f9
MM
5289 tree r = NULL_TREE;
5290 tree* new_parms;
36a117a5
MM
5291
5292 for (new_parms = &r;
5293 TMPL_PARMS_DEPTH (parms) > TMPL_ARGS_DEPTH (args);
5294 new_parms = &(TREE_CHAIN (*new_parms)),
5295 parms = TREE_CHAIN (parms))
5296 {
5297 tree new_vec =
5298 make_tree_vec (TREE_VEC_LENGTH (TREE_VALUE (parms)));
5299 int i;
5300
5301 for (i = 0; i < TREE_VEC_LENGTH (new_vec); ++i)
5302 {
5303 tree default_value =
5304 TREE_PURPOSE (TREE_VEC_ELT (TREE_VALUE (parms), i));
5305 tree parm_decl =
5306 TREE_VALUE (TREE_VEC_ELT (TREE_VALUE (parms), i));
5307
5308 TREE_VEC_ELT (new_vec, i)
4393e105
MM
5309 = build_tree_list (tsubst (default_value, args, complain,
5310 NULL_TREE),
5311 tsubst (parm_decl, args, complain,
5312 NULL_TREE));
36a117a5
MM
5313 }
5314
5315 *new_parms =
5316 tree_cons (build_int_2 (0, (TMPL_PARMS_DEPTH (parms)
5317 - TMPL_ARGS_DEPTH (args))),
5318 new_vec, NULL_TREE);
5319 }
5320
5321 return r;
5322}
5323
ed44da02
MM
5324/* Substitute the ARGS into the indicated aggregate (or enumeration)
5325 type T. If T is not an aggregate or enumeration type, it is
5326 handled as if by tsubst. IN_DECL is as for tsubst. If
5327 ENTERING_SCOPE is non-zero, T is the context for a template which
5328 we are presently tsubst'ing. Return the subsituted value. */
36a117a5 5329
e9659ab0 5330static tree
4393e105 5331tsubst_aggr_type (t, args, complain, in_decl, entering_scope)
36a117a5
MM
5332 tree t;
5333 tree args;
4393e105 5334 int complain;
36a117a5
MM
5335 tree in_decl;
5336 int entering_scope;
5337{
5338 if (t == NULL_TREE)
5339 return NULL_TREE;
5340
5341 switch (TREE_CODE (t))
5342 {
5343 case RECORD_TYPE:
5344 if (TYPE_PTRMEMFUNC_P (t))
5345 {
5346 tree r = build_ptrmemfunc_type
4393e105 5347 (tsubst (TYPE_PTRMEMFUNC_FN_TYPE (t), args, complain, in_decl));
adecb3f4
MM
5348 return cp_build_qualified_type_real (r, TYPE_QUALS (t),
5349 complain);
36a117a5
MM
5350 }
5351
5352 /* else fall through */
ed44da02 5353 case ENUMERAL_TYPE:
36a117a5 5354 case UNION_TYPE:
5db698f6 5355 if (TYPE_TEMPLATE_INFO (t))
36a117a5
MM
5356 {
5357 tree argvec;
5358 tree context;
5359 tree r;
5360
5361 /* First, determine the context for the type we are looking
5362 up. */
5363 if (TYPE_CONTEXT (t) != NULL_TREE)
5364 context = tsubst_aggr_type (TYPE_CONTEXT (t), args,
4393e105 5365 complain,
36a117a5
MM
5366 in_decl, /*entering_scope=*/1);
5367 else
5368 context = NULL_TREE;
5369
5370 /* Then, figure out what arguments are appropriate for the
5371 type we are trying to find. For example, given:
5372
5373 template <class T> struct S;
5374 template <class T, class U> void f(T, U) { S<U> su; }
5375
5376 and supposing that we are instantiating f<int, double>,
5377 then our ARGS will be {int, double}, but, when looking up
5378 S we only want {double}. */
4393e105
MM
5379 argvec = tsubst_template_arg_vector (TYPE_TI_ARGS (t), args,
5380 complain);
36a117a5
MM
5381
5382 r = lookup_template_class (t, argvec, in_decl, context,
5383 entering_scope);
5384
adecb3f4
MM
5385 return cp_build_qualified_type_real (r, TYPE_QUALS (t),
5386 complain);
36a117a5
MM
5387 }
5388 else
5389 /* This is not a template type, so there's nothing to do. */
5390 return t;
5391
5392 default:
4393e105 5393 return tsubst (t, args, complain, in_decl);
36a117a5
MM
5394 }
5395}
5396
9188c363
MM
5397/* Substitute into the default argument ARG (a default argument for
5398 FN), which has the indicated TYPE. */
5399
5400tree
5401tsubst_default_argument (fn, type, arg)
5402 tree fn;
5403 tree type;
5404 tree arg;
5405{
5406 /* This default argument came from a template. Instantiate the
5407 default argument here, not in tsubst. In the case of
5408 something like:
5409
5410 template <class T>
5411 struct S {
5412 static T t();
5413 void f(T = t());
5414 };
5415
5416 we must be careful to do name lookup in the scope of S<T>,
5417 rather than in the current class. */
5418 if (DECL_CLASS_SCOPE_P (fn))
4f1c5b7d 5419 pushclass (DECL_CONTEXT (fn), 2);
9188c363
MM
5420
5421 arg = tsubst_expr (arg, DECL_TI_ARGS (fn), /*complain=*/1, NULL_TREE);
5422
5423 if (DECL_CLASS_SCOPE_P (fn))
5424 popclass ();
5425
5426 /* Make sure the default argument is reasonable. */
5427 arg = check_default_argument (type, arg);
5428
5429 return arg;
5430}
5431
5432/* Substitute into all the default arguments for FN. */
5433
5434static void
5435tsubst_default_arguments (fn)
5436 tree fn;
5437{
5438 tree arg;
5439 tree tmpl_args;
5440
5441 tmpl_args = DECL_TI_ARGS (fn);
5442
5443 /* If this function is not yet instantiated, we certainly don't need
5444 its default arguments. */
5445 if (uses_template_parms (tmpl_args))
5446 return;
5447
5448 for (arg = TYPE_ARG_TYPES (TREE_TYPE (fn));
5449 arg;
5450 arg = TREE_CHAIN (arg))
5451 if (TREE_PURPOSE (arg))
5452 TREE_PURPOSE (arg) = tsubst_default_argument (fn,
5453 TREE_VALUE (arg),
5454 TREE_PURPOSE (arg));
5455}
5456
ae58fa02
MM
5457/* Substitute the ARGS into the T, which is a _DECL. TYPE is the
5458 (already computed) substitution of ARGS into TREE_TYPE (T), if
5459 appropriate. Return the result of the substitution. IN_DECL is as
5460 for tsubst. */
00d3396f 5461
e9659ab0 5462static tree
ae58fa02
MM
5463tsubst_decl (t, args, type, in_decl)
5464 tree t;
5465 tree args;
5466 tree type;
8d08fdba
MS
5467 tree in_decl;
5468{
ae58fa02 5469 int saved_lineno;
3b304f5b 5470 const char *saved_filename;
b370501f 5471 tree r = NULL_TREE;
830bfa74 5472
ae58fa02
MM
5473 /* Set the filename and linenumber to improve error-reporting. */
5474 saved_lineno = lineno;
5475 saved_filename = input_filename;
5476 lineno = DECL_SOURCE_LINE (t);
5477 input_filename = DECL_SOURCE_FILE (t);
b7484fbe 5478
8d08fdba
MS
5479 switch (TREE_CODE (t))
5480 {
98c1c668
JM
5481 case TEMPLATE_DECL:
5482 {
5483 /* We can get here when processing a member template function
5484 of a template class. */
98c1c668 5485 tree decl = DECL_TEMPLATE_RESULT (t);
386b8a85 5486 tree spec;
db2767b6 5487 int is_template_template_parm = DECL_TEMPLATE_TEMPLATE_PARM_P (t);
98c1c668 5488
db2767b6
MM
5489 if (!is_template_template_parm)
5490 {
36a117a5
MM
5491 /* We might already have an instance of this template.
5492 The ARGS are for the surrounding class type, so the
5493 full args contain the tsubst'd args for the context,
5494 plus the innermost args from the template decl. */
5495 tree tmpl_args = DECL_CLASS_TEMPLATE_P (t)
5496 ? CLASSTYPE_TI_ARGS (TREE_TYPE (t))
17aec3eb 5497 : DECL_TI_ARGS (DECL_TEMPLATE_RESULT (t));
7ddedda4
MM
5498 tree full_args;
5499
4393e105
MM
5500 full_args = tsubst_template_arg_vector (tmpl_args, args,
5501 /*complain=*/1);
36a117a5
MM
5502
5503 /* tsubst_template_arg_vector doesn't copy the vector if
5504 nothing changed. But, *something* should have
5505 changed. */
5506 my_friendly_assert (full_args != tmpl_args, 0);
5507
5508 spec = retrieve_specialization (t, full_args);
db2767b6 5509 if (spec != NULL_TREE)
ae58fa02
MM
5510 {
5511 r = spec;
5512 break;
5513 }
db2767b6 5514 }
98c1c668
JM
5515
5516 /* Make a new template decl. It will be similar to the
5517 original, but will record the current template arguments.
5518 We also create a new function declaration, which is just
5519 like the old one, but points to this new template, rather
5520 than the old one. */
0acf7199 5521 r = copy_decl (t);
ae58fa02
MM
5522 my_friendly_assert (DECL_LANG_SPECIFIC (r) != 0, 0);
5523 TREE_CHAIN (r) = NULL_TREE;
db2767b6
MM
5524
5525 if (is_template_template_parm)
5526 {
4393e105 5527 tree new_decl = tsubst (decl, args, /*complain=*/1, in_decl);
17aec3eb 5528 DECL_TEMPLATE_RESULT (r) = new_decl;
ae58fa02
MM
5529 TREE_TYPE (r) = TREE_TYPE (new_decl);
5530 break;
db2767b6
MM
5531 }
5532
ae58fa02 5533 DECL_CONTEXT (r)
4f1c5b7d 5534 = tsubst_aggr_type (DECL_CONTEXT (t), args,
4393e105
MM
5535 /*complain=*/1, in_decl,
5536 /*entering_scope=*/1);
4f1c5b7d
MM
5537 DECL_VIRTUAL_CONTEXT (r)
5538 = tsubst_aggr_type (DECL_VIRTUAL_CONTEXT (t), args,
5539 /*complain=*/1, in_decl,
5540 /*entering_scope=*/1);
ae58fa02 5541 DECL_TEMPLATE_INFO (r) = build_tree_list (t, args);
93cdc044
JM
5542
5543 if (TREE_CODE (decl) == TYPE_DECL)
5544 {
4393e105
MM
5545 tree new_type = tsubst (TREE_TYPE (t), args,
5546 /*complain=*/1, in_decl);
ae58fa02
MM
5547 TREE_TYPE (r) = new_type;
5548 CLASSTYPE_TI_TEMPLATE (new_type) = r;
17aec3eb 5549 DECL_TEMPLATE_RESULT (r) = TYPE_MAIN_DECL (new_type);
ae58fa02 5550 DECL_TI_ARGS (r) = CLASSTYPE_TI_ARGS (new_type);
93cdc044
JM
5551 }
5552 else
5553 {
4393e105 5554 tree new_decl = tsubst (decl, args, /*complain=*/1, in_decl);
17aec3eb
RK
5555
5556 DECL_TEMPLATE_RESULT (r) = new_decl;
ae58fa02
MM
5557 DECL_TI_TEMPLATE (new_decl) = r;
5558 TREE_TYPE (r) = TREE_TYPE (new_decl);
5559 DECL_TI_ARGS (r) = DECL_TI_ARGS (new_decl);
93cdc044
JM
5560 }
5561
ae58fa02
MM
5562 SET_DECL_IMPLICIT_INSTANTIATION (r);
5563 DECL_TEMPLATE_INSTANTIATIONS (r) = NULL_TREE;
5564 DECL_TEMPLATE_SPECIALIZATIONS (r) = NULL_TREE;
98c1c668
JM
5565
5566 /* The template parameters for this new template are all the
5567 template parameters for the old template, except the
5568 outermost level of parameters. */
ae58fa02 5569 DECL_TEMPLATE_PARMS (r)
4393e105
MM
5570 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
5571 /*complain=*/1);
98c1c668 5572
93cdc044 5573 if (PRIMARY_TEMPLATE_P (t))
ae58fa02 5574 DECL_PRIMARY_TEMPLATE (r) = r;
93cdc044 5575
8d019cef 5576 /* We don't partially instantiate partial specializations. */
93cdc044 5577 if (TREE_CODE (decl) == TYPE_DECL)
ae58fa02 5578 break;
93cdc044 5579
75650646 5580 /* Record this partial instantiation. */
ae58fa02 5581 register_specialization (r, t,
17aec3eb 5582 DECL_TI_ARGS (DECL_TEMPLATE_RESULT (r)));
75650646 5583
98c1c668 5584 }
ae58fa02 5585 break;
8d08fdba
MS
5586
5587 case FUNCTION_DECL:
5588 {
386b8a85 5589 tree ctx;
87603ed0 5590 tree argvec = NULL_TREE;
cf38f48a 5591 tree *friends;
36a117a5 5592 tree gen_tmpl;
5566b478 5593 int member;
d8c4447d
MM
5594 int args_depth;
5595 int parms_depth;
5566b478 5596
36a117a5
MM
5597 /* Nobody should be tsubst'ing into non-template functions. */
5598 my_friendly_assert (DECL_TEMPLATE_INFO (t) != NULL_TREE, 0);
5599
5600 if (TREE_CODE (DECL_TI_TEMPLATE (t)) == TEMPLATE_DECL)
5601 {
5602 tree spec;
5603
5604 /* Calculate the most general template of which R is a
5605 specialization, and the complete set of arguments used to
5606 specialize R. */
5607 gen_tmpl = most_general_template (DECL_TI_TEMPLATE (t));
7ddedda4
MM
5608 argvec
5609 = tsubst_template_arg_vector (DECL_TI_ARGS
5610 (DECL_TEMPLATE_RESULT (gen_tmpl)),
4393e105 5611 args, /*complain=*/1);
36a117a5
MM
5612
5613 /* Check to see if we already have this specialization. */
5614 spec = retrieve_specialization (gen_tmpl, argvec);
7ddedda4 5615
36a117a5 5616 if (spec)
ae58fa02
MM
5617 {
5618 r = spec;
5619 break;
5620 }
d8c4447d 5621
f9a7ae04
MM
5622 /* We can see more levels of arguments than parameters if
5623 there was a specialization of a member template, like
5624 this:
5625
5626 template <class T> struct S { template <class U> void f(); }
5627 template <> template <class U> void S<int>::f(U);
5628
5629 Here, we'll be subtituting into the specialization,
5630 because that's where we can find the code we actually
5631 want to generate, but we'll have enough arguments for
5632 the most general template.
5633
5634 We also deal with the peculiar case:
d8c4447d
MM
5635
5636 template <class T> struct S {
5637 template <class U> friend void f();
5638 };
74b846e0 5639 template <class U> void f() {}
d8c4447d
MM
5640 template S<int>;
5641 template void f<double>();
5642
5643 Here, the ARGS for the instantiation of will be {int,
5644 double}. But, we only need as many ARGS as there are
5645 levels of template parameters in CODE_PATTERN. We are
5646 careful not to get fooled into reducing the ARGS in
5647 situations like:
5648
5649 template <class T> struct S { template <class U> void f(U); }
5650 template <class T> template <> void S<T>::f(int) {}
5651
5652 which we can spot because the pattern will be a
5653 specialization in this case. */
5654 args_depth = TMPL_ARGS_DEPTH (args);
5655 parms_depth =
5656 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (t)));
5657 if (args_depth > parms_depth
5658 && !DECL_TEMPLATE_SPECIALIZATION (t))
f9a7ae04 5659 args = get_innermost_template_args (args, parms_depth);
36a117a5
MM
5660 }
5661 else
5662 {
5663 /* This special case arises when we have something like this:
5664
5665 template <class T> struct S {
5666 friend void f<int>(int, double);
5667 };
5668
5669 Here, the DECL_TI_TEMPLATE for the friend declaration
39c01e4c
MM
5670 will be a LOOKUP_EXPR or an IDENTIFIER_NODE. We are
5671 being called from tsubst_friend_function, and we want
5672 only to create a new decl (R) with appropriate types so
5673 that we can call determine_specialization. */
5674 my_friendly_assert ((TREE_CODE (DECL_TI_TEMPLATE (t))
5675 == LOOKUP_EXPR)
5676 || (TREE_CODE (DECL_TI_TEMPLATE (t))
5677 == IDENTIFIER_NODE), 0);
36a117a5
MM
5678 gen_tmpl = NULL_TREE;
5679 }
5680
6eb3bb27 5681 if (DECL_CLASS_SCOPE_P (t))
8d08fdba 5682 {
5566b478
MS
5683 if (DECL_NAME (t) == constructor_name (DECL_CONTEXT (t)))
5684 member = 2;
5685 else
5686 member = 1;
4f1c5b7d 5687 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args,
4393e105 5688 /*complain=*/1, t,
36a117a5 5689 /*entering_scope=*/1);
5566b478
MS
5690 }
5691 else
5692 {
5693 member = 0;
4f1c5b7d 5694 ctx = DECL_CONTEXT (t);
5566b478 5695 }
4393e105 5696 type = tsubst (type, args, /*complain=*/1, in_decl);
b3da7bb1
MM
5697 if (type == error_mark_node)
5698 return error_mark_node;
8d08fdba 5699
5566b478
MS
5700 /* We do NOT check for matching decls pushed separately at this
5701 point, as they may not represent instantiations of this
5702 template, and in any case are considered separate under the
312e7d50 5703 discrete model. Instead, see add_maybe_template. */
0acf7199 5704 r = copy_decl (t);
e1467ff2 5705 DECL_USE_TEMPLATE (r) = 0;
5566b478
MS
5706 TREE_TYPE (r) = type;
5707
4f1c5b7d
MM
5708 DECL_CONTEXT (r) = ctx;
5709 DECL_VIRTUAL_CONTEXT (r)
5710 = tsubst_aggr_type (DECL_VIRTUAL_CONTEXT (t), args,
5711 /*complain=*/1, t,
4393e105 5712 /*entering_scope=*/1);
5566b478 5713
1f6e1acc 5714 if (member && DECL_CONV_FN_P (r))
669ec2b4
JM
5715 {
5716 /* Type-conversion operator. Reconstruct the name, in
5717 case it's the name of one of the template's parameters. */
5718 if (flag_new_abi)
5719 DECL_NAME (r) = mangle_conv_op_name_for_type (TREE_TYPE (type));
5720 else
5721 DECL_NAME (r) = build_typename_overload (TREE_TYPE (type));
5722 }
5566b478 5723
4393e105
MM
5724 DECL_ARGUMENTS (r) = tsubst (DECL_ARGUMENTS (t), args,
5725 /*complain=*/1, t);
17aec3eb 5726 DECL_TEMPLATE_RESULT (r) = NULL_TREE;
711734a9
JM
5727
5728 TREE_STATIC (r) = 0;
5729 TREE_PUBLIC (r) = TREE_PUBLIC (t);
5730 DECL_EXTERNAL (r) = 1;
5731 DECL_INTERFACE_KNOWN (r) = 0;
5732 DECL_DEFER_OUTPUT (r) = 0;
5733 TREE_CHAIN (r) = NULL_TREE;
5734 DECL_PENDING_INLINE_INFO (r) = 0;
59026e79 5735 DECL_PENDING_INLINE_P (r) = 0;
655dc6ee 5736 DECL_SAVED_TREE (r) = NULL_TREE;
711734a9 5737 TREE_USED (r) = 0;
db9b2174
MM
5738 if (DECL_CLONED_FUNCTION (r))
5739 {
5740 DECL_CLONED_FUNCTION (r) = tsubst (DECL_CLONED_FUNCTION (t),
5741 args, /*complain=*/1, t);
5742 TREE_CHAIN (r) = TREE_CHAIN (DECL_CLONED_FUNCTION (r));
5743 TREE_CHAIN (DECL_CLONED_FUNCTION (r)) = r;
5744 }
711734a9 5745
36a117a5
MM
5746 /* Set up the DECL_TEMPLATE_INFO for R and compute its mangled
5747 name. There's no need to do this in the special friend
5748 case mentioned above where GEN_TMPL is NULL. */
5749 if (gen_tmpl)
386b8a85 5750 {
36a117a5 5751 DECL_TEMPLATE_INFO (r)
e1b3e07d 5752 = tree_cons (gen_tmpl, argvec, NULL_TREE);
36a117a5
MM
5753 SET_DECL_IMPLICIT_INSTANTIATION (r);
5754 register_specialization (r, gen_tmpl, argvec);
5755
5756 /* Set the mangled name for R. */
669ec2b4
JM
5757 if (DECL_DESTRUCTOR_P (t))
5758 {
5759 if (flag_new_abi)
5760 set_mangled_name_for_decl (r);
5761 else
5762 DECL_ASSEMBLER_NAME (r) = build_destructor_name (ctx);
5763 }
5764 else
5765 {
5766 /* Instantiations of template functions must be mangled
5767 specially, in order to conform to 14.5.5.1
5768 [temp.over.link]. */
5769 tree tmpl = DECL_TI_TEMPLATE (t);
5770
5771 /* TMPL will be NULL if this is a specialization of a
5772 member function of a template class. */
5773 if (name_mangling_version < 1
5774 || tmpl == NULL_TREE
5775 || (member && !is_member_template (tmpl)
5776 && !DECL_TEMPLATE_INFO (tmpl)))
5777 set_mangled_name_for_decl (r);
5778 else
5779 set_mangled_name_for_template_decl (r);
5780 }
36a117a5
MM
5781
5782 DECL_RTL (r) = 0;
5783 make_decl_rtl (r, NULL_PTR, 1);
5784
5785 /* Like grokfndecl. If we don't do this, pushdecl will
5786 mess up our TREE_CHAIN because it doesn't find a
5787 previous decl. Sigh. */
5788 if (member
c36ae80f 5789 && ! uses_template_parms (r)
36a117a5
MM
5790 && (IDENTIFIER_GLOBAL_VALUE (DECL_ASSEMBLER_NAME (r))
5791 == NULL_TREE))
5792 SET_IDENTIFIER_GLOBAL_VALUE (DECL_ASSEMBLER_NAME (r), r);
9188c363
MM
5793
5794 /* We're not supposed to instantiate default arguments
5795 until they are called, for a template. But, for a
5796 declaration like:
5797
5798 template <class T> void f ()
5799 { extern void g(int i = T()); }
5800
5801 we should do the substitution when the template is
5802 instantiated. We handle the member function case in
5803 instantiate_class_template since the default arguments
5804 might refer to other members of the class. */
5805 if (!member
5806 && !PRIMARY_TEMPLATE_P (gen_tmpl)
5807 && !uses_template_parms (argvec))
5808 tsubst_default_arguments (r);
386b8a85 5809 }
f181d4ae 5810
cf38f48a
MM
5811 /* Copy the list of befriending classes. */
5812 for (friends = &DECL_BEFRIENDING_CLASSES (r);
5813 *friends;
5814 friends = &TREE_CHAIN (*friends))
5815 {
5816 *friends = copy_node (*friends);
5817 TREE_VALUE (*friends) = tsubst (TREE_VALUE (*friends),
5818 args, /*complain=*/1,
5819 in_decl);
5820 }
5821
212e7048 5822 if (DECL_CONSTRUCTOR_P (r) || DECL_DESTRUCTOR_P (r))
f181d4ae
MM
5823 {
5824 maybe_retrofit_in_chrg (r);
212e7048
MM
5825 if (DECL_CONSTRUCTOR_P (r))
5826 grok_ctor_properties (ctx, r);
f181d4ae 5827 }
596ea4e5 5828 else if (IDENTIFIER_OPNAME_P (DECL_NAME (r)))
f181d4ae 5829 grok_op_properties (r, DECL_VIRTUAL_P (r), DECL_FRIEND_P (r));
8d08fdba 5830 }
ae58fa02 5831 break;
8d08fdba
MS
5832
5833 case PARM_DECL:
5834 {
ae58fa02 5835 r = copy_node (t);
5566b478 5836 TREE_TYPE (r) = type;
1b8899d1
MM
5837 c_apply_type_quals_to_decl (CP_TYPE_QUALS (type), r);
5838
db2767b6
MM
5839 if (TREE_CODE (DECL_INITIAL (r)) != TEMPLATE_PARM_INDEX)
5840 DECL_INITIAL (r) = TREE_TYPE (r);
5841 else
4393e105
MM
5842 DECL_INITIAL (r) = tsubst (DECL_INITIAL (r), args,
5843 /*complain=*/1, in_decl);
db2767b6 5844
5566b478 5845 DECL_CONTEXT (r) = NULL_TREE;
fa56377d
JJ
5846 if (PROMOTE_PROTOTYPES
5847 && (TREE_CODE (type) == INTEGER_TYPE
5848 || TREE_CODE (type) == ENUMERAL_TYPE)
f83b0cb6
JM
5849 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
5850 DECL_ARG_TYPE (r) = integer_type_node;
8d08fdba 5851 if (TREE_CHAIN (t))
4393e105
MM
5852 TREE_CHAIN (r) = tsubst (TREE_CHAIN (t), args,
5853 /*complain=*/1, TREE_CHAIN (t));
8d08fdba 5854 }
ae58fa02 5855 break;
8d08fdba 5856
5566b478
MS
5857 case FIELD_DECL:
5858 {
0acf7199 5859 r = copy_decl (t);
1b8899d1
MM
5860 TREE_TYPE (r) = type;
5861 c_apply_type_quals_to_decl (CP_TYPE_QUALS (type), r);
5862
5863 /* We don't have to set DECL_CONTEXT here; it is set by
5864 finish_member_declaration. */
4393e105
MM
5865 DECL_INITIAL (r) = tsubst_expr (DECL_INITIAL (t), args,
5866 /*complain=*/1, in_decl);
5566b478 5867 TREE_CHAIN (r) = NULL_TREE;
4393e105 5868 if (TREE_CODE (type) == VOID_TYPE)
8251199e 5869 cp_error_at ("instantiation of `%D' as type void", r);
5566b478 5870 }
ae58fa02 5871 break;
5566b478
MS
5872
5873 case USING_DECL:
5874 {
ae58fa02 5875 r = copy_node (t);
5566b478 5876 DECL_INITIAL (r)
4393e105 5877 = tsubst_copy (DECL_INITIAL (t), args, /*complain=*/1, in_decl);
5566b478 5878 TREE_CHAIN (r) = NULL_TREE;
5566b478 5879 }
ae58fa02 5880 break;
5566b478 5881
9188c363 5882 case TYPE_DECL:
88e1b92a
JM
5883 if (TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM
5884 || t == TYPE_MAIN_DECL (TREE_TYPE (t)))
9188c363 5885 {
88e1b92a
JM
5886 /* If this is the canonical decl, we don't have to mess with
5887 instantiations, and often we can't (for typename, template
5888 type parms and such). Note that TYPE_NAME is not correct for
5889 the above test if we've copied the type for a typedef. */
b9f39201 5890 r = TYPE_NAME (type);
9188c363
MM
5891 break;
5892 }
5893
5894 /* Fall through. */
5895
5566b478
MS
5896 case VAR_DECL:
5897 {
1cea0434
KG
5898 tree argvec = NULL_TREE;
5899 tree gen_tmpl = NULL_TREE;
36a117a5 5900 tree spec;
1cea0434 5901 tree tmpl = NULL_TREE;
9188c363 5902 tree ctx;
6dfbb909 5903 int local_p;
9188c363 5904
6dfbb909
MM
5905 /* Assume this is a non-local variable. */
5906 local_p = 0;
5566b478 5907
de96bf57 5908 if (TYPE_P (CP_DECL_CONTEXT (t)))
9188c363
MM
5909 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args,
5910 /*complain=*/1,
5911 in_decl, /*entering_scope=*/1);
5912 else
6dfbb909
MM
5913 {
5914 /* Subsequent calls to pushdecl will fill this in. */
5915 ctx = NULL_TREE;
5916 if (!DECL_NAMESPACE_SCOPE_P (t))
5917 local_p = 1;
5918 }
9188c363 5919
36a117a5 5920 /* Check to see if we already have this specialization. */
6dfbb909
MM
5921 if (!local_p)
5922 {
5923 tmpl = DECL_TI_TEMPLATE (t);
5924 gen_tmpl = most_general_template (tmpl);
5925 argvec = tsubst (DECL_TI_ARGS (t), args, /*complain=*/1, in_decl);
5926 spec = retrieve_specialization (gen_tmpl, argvec);
5927 }
9188c363 5928 else
6dfbb909 5929 spec = retrieve_local_specialization (t);
9188c363 5930
36a117a5 5931 if (spec)
ae58fa02
MM
5932 {
5933 r = spec;
5934 break;
5935 }
5566b478 5936
0acf7199 5937 r = copy_decl (t);
5566b478 5938 TREE_TYPE (r) = type;
1b8899d1 5939 c_apply_type_quals_to_decl (CP_TYPE_QUALS (type), r);
5566b478 5940 DECL_CONTEXT (r) = ctx;
d11ad92e
MS
5941
5942 /* Don't try to expand the initializer until someone tries to use
5943 this variable; otherwise we run into circular dependencies. */
5944 DECL_INITIAL (r) = NULL_TREE;
5566b478 5945 DECL_RTL (r) = 0;
06ceef4e 5946 DECL_SIZE (r) = DECL_SIZE_UNIT (r) = 0;
5566b478 5947
f9817201
MM
5948 /* For __PRETTY_FUNCTION__ we have to adjust the initializer. */
5949 if (DECL_PRETTY_FUNCTION_P (r))
5950 {
5951 DECL_INITIAL (r) = tsubst (DECL_INITIAL (t),
5952 args,
5953 /*complain=*/1,
5954 NULL_TREE);
5955 TREE_TYPE (r) = TREE_TYPE (DECL_INITIAL (r));
5956 }
5957
e0942dcd
MM
5958 /* Even if the original location is out of scope, the newly
5959 substituted one is not. */
5960 if (TREE_CODE (r) == VAR_DECL)
5961 DECL_DEAD_FOR_LOCAL (r) = 0;
5962
6dfbb909
MM
5963 if (!local_p)
5964 {
5965 /* A static data member declaration is always marked
5966 external when it is declared in-class, even if an
5967 initializer is present. We mimic the non-template
5968 processing here. */
5969 DECL_EXTERNAL (r) = 1;
fa8d6e85 5970
6dfbb909
MM
5971 register_specialization (r, gen_tmpl, argvec);
5972 DECL_TEMPLATE_INFO (r) = tree_cons (tmpl, argvec, NULL_TREE);
5973 SET_DECL_IMPLICIT_INSTANTIATION (r);
5974 }
9188c363 5975 else
6dfbb909 5976 register_local_specialization (r, t);
5566b478 5977
5566b478 5978 TREE_CHAIN (r) = NULL_TREE;
9188c363 5979 if (TREE_CODE (r) == VAR_DECL && TREE_CODE (type) == VOID_TYPE)
8251199e 5980 cp_error_at ("instantiation of `%D' as type void", r);
5566b478 5981 }
ae58fa02 5982 break;
5566b478 5983
ae58fa02
MM
5984 default:
5985 my_friendly_abort (0);
5986 }
5987
5988 /* Restore the file and line information. */
5989 lineno = saved_lineno;
5990 input_filename = saved_filename;
5991
5992 return r;
5993}
5994
cabc336a
MM
5995/* Substitue into the ARG_TYPES of a function type. */
5996
e9659ab0 5997static tree
4393e105 5998tsubst_arg_types (arg_types, args, complain, in_decl)
cabc336a
MM
5999 tree arg_types;
6000 tree args;
4393e105 6001 int complain;
cabc336a
MM
6002 tree in_decl;
6003{
6004 tree remaining_arg_types;
cabc336a
MM
6005 tree type;
6006
6007 if (!arg_types || arg_types == void_list_node)
6008 return arg_types;
6009
6010 remaining_arg_types = tsubst_arg_types (TREE_CHAIN (arg_types),
4393e105
MM
6011 args, complain, in_decl);
6012 if (remaining_arg_types == error_mark_node)
6013 return error_mark_node;
6014
6015 type = tsubst (TREE_VALUE (arg_types), args, complain, in_decl);
6016 if (type == error_mark_node)
6017 return error_mark_node;
cabc336a 6018
4393e105
MM
6019 /* Do array-to-pointer, function-to-pointer conversion, and ignore
6020 top-level qualifiers as required. */
6021 type = TYPE_MAIN_VARIANT (type_decays_to (type));
cabc336a
MM
6022
6023 /* Note that we do not substitute into default arguments here. The
6024 standard mandates that they be instantiated only when needed,
6025 which is done in build_over_call. */
51632249
JM
6026 return hash_tree_cons (TREE_PURPOSE (arg_types), type,
6027 remaining_arg_types);
cabc336a
MM
6028
6029}
6030
4393e105
MM
6031/* Substitute into a FUNCTION_TYPE or METHOD_TYPE. This routine does
6032 *not* handle the exception-specification for FNTYPE, because the
6033 initial substitution of explicitly provided template parameters
6034 during argument deduction forbids substitution into the
6035 exception-specification:
6036
6037 [temp.deduct]
6038
6039 All references in the function type of the function template to the
6040 corresponding template parameters are replaced by the specified tem-
6041 plate argument values. If a substitution in a template parameter or
6042 in the function type of the function template results in an invalid
6043 type, type deduction fails. [Note: The equivalent substitution in
6044 exception specifications is done only when the function is instanti-
6045 ated, at which point a program is ill-formed if the substitution
6046 results in an invalid type.] */
6047
6048static tree
6049tsubst_function_type (t, args, complain, in_decl)
6050 tree t;
6051 tree args;
6052 int complain;
6053 tree in_decl;
6054{
6055 tree return_type;
6056 tree arg_types;
6057 tree fntype;
6058
8dd3f57a 6059 /* The TYPE_CONTEXT is not used for function/method types. */
4393e105
MM
6060 my_friendly_assert (TYPE_CONTEXT (t) == NULL_TREE, 0);
6061
6062 /* Substitue the return type. */
6063 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
6064 if (return_type == error_mark_node)
6065 return error_mark_node;
6066
6067 /* Substitue the argument types. */
6068 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args,
6069 complain, in_decl);
6070 if (arg_types == error_mark_node)
6071 return error_mark_node;
6072
6073 /* Construct a new type node and return it. */
6074 if (TREE_CODE (t) == FUNCTION_TYPE)
6075 fntype = build_function_type (return_type, arg_types);
6076 else
6077 {
6078 tree r = TREE_TYPE (TREE_VALUE (arg_types));
6079 if (! IS_AGGR_TYPE (r))
6080 {
6081 /* [temp.deduct]
6082
6083 Type deduction may fail for any of the following
6084 reasons:
6085
6086 -- Attempting to create "pointer to member of T" when T
6087 is not a class type. */
6088 if (complain)
6089 cp_error ("creating pointer to member function of non-class type `%T'",
6090 r);
6091 return error_mark_node;
6092 }
6093
6094 fntype = build_cplus_method_type (r, return_type, TREE_CHAIN
6095 (arg_types));
6096 }
6097 fntype = build_qualified_type (fntype, TYPE_QUALS (t));
ada846eb 6098 fntype = build_type_attribute_variant (fntype, TYPE_ATTRIBUTES (t));
4393e105
MM
6099
6100 return fntype;
6101}
6102
297e73d8
MM
6103/* Substitute into the PARMS of a call-declarator. */
6104
e9659ab0 6105static tree
4393e105 6106tsubst_call_declarator_parms (parms, args, complain, in_decl)
297e73d8
MM
6107 tree parms;
6108 tree args;
4393e105 6109 int complain;
297e73d8
MM
6110 tree in_decl;
6111{
6112 tree new_parms;
6113 tree type;
6114 tree defarg;
6115
6116 if (!parms || parms == void_list_node)
6117 return parms;
6118
6119 new_parms = tsubst_call_declarator_parms (TREE_CHAIN (parms),
4393e105 6120 args, complain, in_decl);
297e73d8
MM
6121
6122 /* Figure out the type of this parameter. */
4393e105 6123 type = tsubst (TREE_VALUE (parms), args, complain, in_decl);
297e73d8
MM
6124
6125 /* Figure out the default argument as well. Note that we use
4393e105
MM
6126 tsubst_expr since the default argument is really an expression. */
6127 defarg = tsubst_expr (TREE_PURPOSE (parms), args, complain, in_decl);
297e73d8
MM
6128
6129 /* Chain this parameter on to the front of those we have already
6130 processed. We don't use hash_tree_cons because that function
6131 doesn't check TREE_PARMLIST. */
6132 new_parms = tree_cons (defarg, type, new_parms);
6133
6134 /* And note that these are parameters. */
6135 TREE_PARMLIST (new_parms) = 1;
6136
6137 return new_parms;
6138}
6139
4393e105
MM
6140/* Take the tree structure T and replace template parameters used
6141 therein with the argument vector ARGS. IN_DECL is an associated
6142 decl for diagnostics. If an error occurs, returns ERROR_MARK_NODE.
6143 An appropriate error message is issued only if COMPLAIN is
6144 non-zero. Note that we must be relatively non-tolerant of
6145 extensions here, in order to preserve conformance; if we allow
6146 substitutions that should not be allowed, we may allow argument
6147 deductions that should not succeed, and therefore report ambiguous
6148 overload situations where there are none. In theory, we could
6149 allow the substitution, but indicate that it should have failed,
6150 and allow our caller to make sure that the right thing happens, but
6151 we don't try to do this yet.
6152
6153 This function is used for dealing with types, decls and the like;
6154 for expressions, use tsubst_expr or tsubst_copy. */
ae58fa02
MM
6155
6156tree
4393e105 6157tsubst (t, args, complain, in_decl)
ae58fa02 6158 tree t, args;
4393e105 6159 int complain;
ae58fa02
MM
6160 tree in_decl;
6161{
0ecfe0b4 6162 tree type, r;
ae58fa02
MM
6163
6164 if (t == NULL_TREE || t == error_mark_node
6165 || t == integer_type_node
6166 || t == void_type_node
6167 || t == char_type_node
6168 || TREE_CODE (t) == NAMESPACE_DECL)
6169 return t;
6170
6171 if (TREE_CODE (t) == IDENTIFIER_NODE)
6172 type = IDENTIFIER_TYPE_VALUE (t);
6173 else
6174 type = TREE_TYPE (t);
6175 if (type == unknown_type_node)
6176 my_friendly_abort (42);
6177
6178 if (type && TREE_CODE (t) != FUNCTION_DECL
6179 && TREE_CODE (t) != TYPENAME_TYPE
6180 && TREE_CODE (t) != TEMPLATE_DECL
4393e105
MM
6181 && TREE_CODE (t) != IDENTIFIER_NODE
6182 && TREE_CODE (t) != FUNCTION_TYPE
6183 && TREE_CODE (t) != METHOD_TYPE)
6184 type = tsubst (type, args, complain, in_decl);
6185 if (type == error_mark_node)
6186 return error_mark_node;
ae58fa02 6187
2f939d94 6188 if (DECL_P (t))
ae58fa02
MM
6189 return tsubst_decl (t, args, type, in_decl);
6190
6191 switch (TREE_CODE (t))
6192 {
6193 case RECORD_TYPE:
6194 case UNION_TYPE:
6195 case ENUMERAL_TYPE:
4393e105
MM
6196 return tsubst_aggr_type (t, args, complain, in_decl,
6197 /*entering_scope=*/0);
ae58fa02
MM
6198
6199 case ERROR_MARK:
6200 case IDENTIFIER_NODE:
6201 case OP_IDENTIFIER:
6202 case VOID_TYPE:
6203 case REAL_TYPE:
6204 case COMPLEX_TYPE:
6205 case BOOLEAN_TYPE:
6206 case INTEGER_CST:
6207 case REAL_CST:
6208 case STRING_CST:
6209 return t;
6210
6211 case INTEGER_TYPE:
6212 if (t == integer_type_node)
6213 return t;
6214
6215 if (TREE_CODE (TYPE_MIN_VALUE (t)) == INTEGER_CST
6216 && TREE_CODE (TYPE_MAX_VALUE (t)) == INTEGER_CST)
6217 return t;
d2e5ee5c 6218
5566b478 6219 {
ddce3528 6220 tree max, omax = TREE_OPERAND (TYPE_MAX_VALUE (t), 0);
7ddedda4 6221
ddce3528 6222 max = tsubst_expr (omax, args, complain, in_decl);
4393e105
MM
6223 if (max == error_mark_node)
6224 return error_mark_node;
6225
8dd3f57a
MM
6226 /* See if we can reduce this expression to something simpler. */
6227 max = maybe_fold_nontype_arg (max);
fc611ce0 6228 if (!processing_template_decl)
8dd3f57a
MM
6229 max = decl_constant_value (max);
6230
856216bb
MM
6231 if (processing_template_decl
6232 /* When providing explicit arguments to a template
6233 function, but leaving some arguments for subsequent
6234 deduction, MAX may be template-dependent even if we're
c95cd22e
JM
6235 not PROCESSING_TEMPLATE_DECL. We still need to check for
6236 template parms, though; MAX won't be an INTEGER_CST for
6237 dynamic arrays, either. */
6238 || (TREE_CODE (max) != INTEGER_CST
6239 && uses_template_parms (max)))
ae58fa02 6240 {
8dd3f57a
MM
6241 tree itype = make_node (INTEGER_TYPE);
6242 TYPE_MIN_VALUE (itype) = size_zero_node;
6243 TYPE_MAX_VALUE (itype) = build_min (MINUS_EXPR, sizetype, max,
6244 integer_one_node);
6245 return itype;
ae58fa02
MM
6246 }
6247
ddce3528
JM
6248 if (integer_zerop (omax))
6249 {
6250 /* Still allow an explicit array of size zero. */
6251 if (pedantic)
6252 pedwarn ("creating array with size zero");
6253 }
07c88314
MM
6254 else if (integer_zerop (max)
6255 || (TREE_CODE (max) == INTEGER_CST
6256 && INT_CST_LT (max, integer_zero_node)))
0ecfe0b4 6257 {
4393e105
MM
6258 /* [temp.deduct]
6259
6260 Type deduction may fail for any of the following
6261 reasons:
6262
bf8f3f93
MM
6263 Attempting to create an array with a size that is
6264 zero or negative. */
4393e105 6265 if (complain)
16bb3387 6266 cp_error ("creating array with size zero (`%E')", max);
4393e105
MM
6267
6268 return error_mark_node;
0ecfe0b4
JM
6269 }
6270
c95cd22e 6271 return compute_array_index_type (NULL_TREE, max);
ae58fa02
MM
6272 }
6273
6274 case TEMPLATE_TYPE_PARM:
6275 case TEMPLATE_TEMPLATE_PARM:
6276 case TEMPLATE_PARM_INDEX:
6277 {
6278 int idx;
6279 int level;
6280 int levels;
0ecfe0b4
JM
6281
6282 r = NULL_TREE;
ae58fa02
MM
6283
6284 if (TREE_CODE (t) == TEMPLATE_TYPE_PARM
6285 || TREE_CODE (t) == TEMPLATE_TEMPLATE_PARM)
6286 {
6287 idx = TEMPLATE_TYPE_IDX (t);
6288 level = TEMPLATE_TYPE_LEVEL (t);
6289 }
6290 else
6291 {
6292 idx = TEMPLATE_PARM_IDX (t);
6293 level = TEMPLATE_PARM_LEVEL (t);
6294 }
6295
6296 if (TREE_VEC_LENGTH (args) > 0)
6297 {
6298 tree arg = NULL_TREE;
6299
6300 levels = TMPL_ARGS_DEPTH (args);
6301 if (level <= levels)
6302 arg = TMPL_ARG (args, level, idx);
6303
8b5b8b7c
MM
6304 if (arg == error_mark_node)
6305 return error_mark_node;
6306 else if (arg != NULL_TREE)
ae58fa02
MM
6307 {
6308 if (TREE_CODE (t) == TEMPLATE_TYPE_PARM)
6309 {
2f939d94 6310 my_friendly_assert (TYPE_P (arg), 0);
adecb3f4
MM
6311 return cp_build_qualified_type_real
6312 (arg, CP_TYPE_QUALS (arg) | CP_TYPE_QUALS (t),
6313 complain);
ae58fa02
MM
6314 }
6315 else if (TREE_CODE (t) == TEMPLATE_TEMPLATE_PARM)
6316 {
7ddedda4 6317 if (TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (t))
ae58fa02
MM
6318 {
6319 /* We are processing a type constructed from
6320 a template template parameter */
7ddedda4 6321 tree argvec = tsubst (TYPE_TI_ARGS (t),
4393e105
MM
6322 args, complain, in_decl);
6323 if (argvec == error_mark_node)
6324 return error_mark_node;
6325
ae58fa02
MM
6326 /* We can get a TEMPLATE_TEMPLATE_PARM here when
6327 we are resolving nested-types in the signature of
6328 a member function templates.
6329 Otherwise ARG is a TEMPLATE_DECL and is the real
6330 template to be instantiated. */
6331 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
6332 arg = TYPE_NAME (arg);
6333
1899c3a4 6334 r = lookup_template_class (arg,
ae58fa02
MM
6335 argvec, in_decl,
6336 DECL_CONTEXT (arg),
6337 /*entering_scope=*/0);
adecb3f4
MM
6338 return cp_build_qualified_type_real (r,
6339 TYPE_QUALS (t),
6340 complain);
ae58fa02
MM
6341 }
6342 else
6343 /* We are processing a template argument list. */
6344 return arg;
6345 }
6346 else
6347 return arg;
6348 }
6349 }
51924768
JM
6350 else
6351 my_friendly_abort (981018);
ae58fa02
MM
6352
6353 if (level == 1)
6354 /* This can happen during the attempted tsubst'ing in
6355 unify. This means that we don't yet have any information
6356 about the template parameter in question. */
6357 return t;
6358
6359 /* If we get here, we must have been looking at a parm for a
6360 more deeply nested template. Make a new version of this
6361 template parameter, but with a lower level. */
6362 switch (TREE_CODE (t))
6363 {
6364 case TEMPLATE_TYPE_PARM:
6365 case TEMPLATE_TEMPLATE_PARM:
9ccf6541 6366 if (CP_TYPE_QUALS (t))
ae58fa02 6367 {
9ccf6541
MM
6368 r = tsubst (TYPE_MAIN_VARIANT (t), args, complain, in_decl);
6369 r = cp_build_qualified_type_real (r, CP_TYPE_QUALS (t),
6370 complain);
6371 }
6372 else
6373 {
6374 r = copy_node (t);
6375 TEMPLATE_TYPE_PARM_INDEX (r)
6376 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (t),
6377 r, levels);
6378 TYPE_STUB_DECL (r) = TYPE_NAME (r) = TEMPLATE_TYPE_DECL (r);
6379 TYPE_MAIN_VARIANT (r) = r;
6380 TYPE_POINTER_TO (r) = NULL_TREE;
6381 TYPE_REFERENCE_TO (r) = NULL_TREE;
6382
6383 if (TREE_CODE (t) == TEMPLATE_TEMPLATE_PARM
6384 && TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (t))
6385 {
6386 tree argvec = tsubst (TYPE_TI_ARGS (t), args,
6387 complain, in_decl);
6388 if (argvec == error_mark_node)
6389 return error_mark_node;
4393e105 6390
9ccf6541
MM
6391 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (r)
6392 = tree_cons (TYPE_TI_TEMPLATE (t), argvec, NULL_TREE);
6393 }
ae58fa02
MM
6394 }
6395 break;
6396
6397 case TEMPLATE_PARM_INDEX:
6398 r = reduce_template_parm_level (t, type, levels);
6399 break;
6400
6401 default:
6402 my_friendly_abort (0);
6403 }
6404
5566b478 6405 return r;
ae58fa02 6406 }
5566b478 6407
8d08fdba
MS
6408 case TREE_LIST:
6409 {
6410 tree purpose, value, chain, result;
8d08fdba
MS
6411
6412 if (t == void_list_node)
6413 return t;
6414
8d08fdba
MS
6415 purpose = TREE_PURPOSE (t);
6416 if (purpose)
4393e105
MM
6417 {
6418 purpose = tsubst (purpose, args, complain, in_decl);
6419 if (purpose == error_mark_node)
6420 return error_mark_node;
6421 }
8d08fdba
MS
6422 value = TREE_VALUE (t);
6423 if (value)
4393e105
MM
6424 {
6425 value = tsubst (value, args, complain, in_decl);
6426 if (value == error_mark_node)
6427 return error_mark_node;
6428 }
8d08fdba
MS
6429 chain = TREE_CHAIN (t);
6430 if (chain && chain != void_type_node)
4393e105
MM
6431 {
6432 chain = tsubst (chain, args, complain, in_decl);
6433 if (chain == error_mark_node)
6434 return error_mark_node;
6435 }
8d08fdba
MS
6436 if (purpose == TREE_PURPOSE (t)
6437 && value == TREE_VALUE (t)
6438 && chain == TREE_CHAIN (t))
6439 return t;
51632249 6440 result = hash_tree_cons (purpose, value, chain);
8d08fdba
MS
6441 TREE_PARMLIST (result) = TREE_PARMLIST (t);
6442 return result;
6443 }
6444 case TREE_VEC:
5566b478
MS
6445 if (type != NULL_TREE)
6446 {
1ceaad38
JM
6447 /* A binfo node. We always need to make a copy, of the node
6448 itself and of its BINFO_BASETYPES. */
85b71cf2 6449
5566b478
MS
6450 t = copy_node (t);
6451
c7449f2b
JM
6452 /* Make sure type isn't a typedef copy. */
6453 type = BINFO_TYPE (TYPE_BINFO (type));
6454
5566b478 6455 TREE_TYPE (t) = complete_type (type);
6633d636
MS
6456 if (IS_AGGR_TYPE (type))
6457 {
6458 BINFO_VTABLE (t) = TYPE_BINFO_VTABLE (type);
6459 BINFO_VIRTUALS (t) = TYPE_BINFO_VIRTUALS (type);
6460 if (TYPE_BINFO_BASETYPES (type) != NULL_TREE)
6461 BINFO_BASETYPES (t) = copy_node (TYPE_BINFO_BASETYPES (type));
6462 }
5566b478
MS
6463 return t;
6464 }
85b71cf2
JM
6465
6466 /* Otherwise, a vector of template arguments. */
4393e105 6467 return tsubst_template_arg_vector (t, args, complain);
8d08fdba 6468
8d08fdba
MS
6469 case POINTER_TYPE:
6470 case REFERENCE_TYPE:
6471 {
8d08fdba 6472 enum tree_code code;
79a7c7fa 6473
8d08fdba
MS
6474 if (type == TREE_TYPE (t))
6475 return t;
6476
6477 code = TREE_CODE (t);
4393e105
MM
6478
6479
6480 /* [temp.deduct]
6481
6482 Type deduction may fail for any of the following
6483 reasons:
6484
6485 -- Attempting to create a pointer to reference type.
6486 -- Attempting to create a reference to a reference type or
6487 a reference to void. */
0ecfe0b4
JM
6488 if (TREE_CODE (type) == REFERENCE_TYPE
6489 || (code == REFERENCE_TYPE && TREE_CODE (type) == VOID_TYPE))
79a7c7fa
JM
6490 {
6491 static int last_line = 0;
3b304f5b 6492 static const char* last_file = 0;
79a7c7fa
JM
6493
6494 /* We keep track of the last time we issued this error
6495 message to avoid spewing a ton of messages during a
6496 single bad template instantiation. */
4393e105
MM
6497 if (complain && (last_line != lineno ||
6498 last_file != input_filename))
79a7c7fa 6499 {
0ecfe0b4
JM
6500 if (TREE_CODE (type) == VOID_TYPE)
6501 cp_error ("forming reference to void");
6502 else
6503 cp_error ("forming %s to reference type `%T'",
6504 (code == POINTER_TYPE) ? "pointer" : "reference",
6505 type);
79a7c7fa
JM
6506 last_line = lineno;
6507 last_file = input_filename;
6508 }
6509
4393e105 6510 return error_mark_node;
79a7c7fa
JM
6511 }
6512 else if (code == POINTER_TYPE)
8d08fdba
MS
6513 r = build_pointer_type (type);
6514 else
6515 r = build_reference_type (type);
adecb3f4 6516 r = cp_build_qualified_type_real (r, TYPE_QUALS (t), complain);
79a7c7fa 6517
8d08fdba
MS
6518 /* Will this ever be needed for TYPE_..._TO values? */
6519 layout_type (r);
6520 return r;
6521 }
a4443a08 6522 case OFFSET_TYPE:
0ecfe0b4 6523 {
4393e105
MM
6524 r = tsubst (TYPE_OFFSET_BASETYPE (t), args, complain, in_decl);
6525 if (r == error_mark_node || !IS_AGGR_TYPE (r))
6526 {
6527 /* [temp.deduct]
6528
6529 Type deduction may fail for any of the following
6530 reasons:
6531
6532 -- Attempting to create "pointer to member of T" when T
6533 is not a class type. */
6534 if (complain)
6535 cp_error ("creating pointer to member of non-class type `%T'",
6536 r);
6537 return error_mark_node;
6538 }
0ecfe0b4
JM
6539 return build_offset_type (r, type);
6540 }
8d08fdba
MS
6541 case FUNCTION_TYPE:
6542 case METHOD_TYPE:
6543 {
c11b6f21 6544 tree fntype;
4393e105 6545 tree raises;
8d08fdba 6546
4393e105
MM
6547 fntype = tsubst_function_type (t, args, complain, in_decl);
6548 if (fntype == error_mark_node)
6549 return error_mark_node;
cabc336a
MM
6550
6551 /* Substitue the exception specification. */
6552 raises = TYPE_RAISES_EXCEPTIONS (t);
c11b6f21
MS
6553 if (raises)
6554 {
4cc1d462
NS
6555 tree list = NULL_TREE;
6556
6557 if (! TREE_VALUE (raises))
6558 list = raises;
6559 else
6560 for (; raises != NULL_TREE; raises = TREE_CHAIN (raises))
6561 {
6562 tree spec = TREE_VALUE (raises);
6563
6564 spec = tsubst (spec, args, complain, in_decl);
6565 if (spec == error_mark_node)
6566 return spec;
6567 list = add_exception_specifier (list, spec, complain);
6568 }
6569 fntype = build_exception_variant (fntype, list);
c11b6f21
MS
6570 }
6571 return fntype;
8d08fdba
MS
6572 }
6573 case ARRAY_TYPE:
6574 {
4393e105
MM
6575 tree domain = tsubst (TYPE_DOMAIN (t), args, complain, in_decl);
6576 if (domain == error_mark_node)
6577 return error_mark_node;
6578
6579 /* As an optimization, we avoid regenerating the array type if
6580 it will obviously be the same as T. */
8d08fdba
MS
6581 if (type == TREE_TYPE (t) && domain == TYPE_DOMAIN (t))
6582 return t;
0ecfe0b4 6583
4393e105
MM
6584 /* These checks should match the ones in grokdeclarator.
6585
6586 [temp.deduct]
6587
6588 The deduction may fail for any of the following reasons:
6589
6590 -- Attempting to create an array with an element type that
6591 is void, a function type, or a reference type. */
6592 if (TREE_CODE (type) == VOID_TYPE
6593 || TREE_CODE (type) == FUNCTION_TYPE
6594 || TREE_CODE (type) == REFERENCE_TYPE)
0ecfe0b4 6595 {
4393e105
MM
6596 if (complain)
6597 cp_error ("creating array of `%T'", type);
6598 return error_mark_node;
0ecfe0b4
JM
6599 }
6600
8d08fdba
MS
6601 r = build_cplus_array_type (type, domain);
6602 return r;
6603 }
6604
8d08fdba 6605 case PLUS_EXPR:
5566b478 6606 case MINUS_EXPR:
4393e105
MM
6607 {
6608 tree e1 = tsubst (TREE_OPERAND (t, 0), args, complain,
6609 in_decl);
6610 tree e2 = tsubst (TREE_OPERAND (t, 1), args, complain,
6611 in_decl);
6612
6613 if (e1 == error_mark_node || e2 == error_mark_node)
6614 return error_mark_node;
6615
6616 return fold (build (TREE_CODE (t), TREE_TYPE (t), e1, e2));
6617 }
8d08fdba
MS
6618
6619 case NEGATE_EXPR:
6620 case NOP_EXPR:
4393e105
MM
6621 {
6622 tree e = tsubst (TREE_OPERAND (t, 0), args, complain,
6623 in_decl);
6624 if (e == error_mark_node)
6625 return error_mark_node;
6626
6627 return fold (build (TREE_CODE (t), TREE_TYPE (t), e));
6628 }
8d08fdba 6629
5566b478
MS
6630 case TYPENAME_TYPE:
6631 {
4393e105
MM
6632 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
6633 in_decl, /*entering_scope=*/1);
6634 tree f = tsubst_copy (TYPENAME_TYPE_FULLNAME (t), args,
6635 complain, in_decl);
6636
6637 if (ctx == error_mark_node || f == error_mark_node)
6638 return error_mark_node;
ae58fa02 6639
bf8f3f93
MM
6640 if (!IS_AGGR_TYPE (ctx))
6641 {
6642 if (complain)
6643 cp_error ("`%T' is not a class, struct, or union type",
6644 ctx);
6645 return error_mark_node;
6646 }
6647 else if (!uses_template_parms (ctx) && !TYPE_BEING_DEFINED (ctx))
6648 {
6649 /* Normally, make_typename_type does not require that the CTX
6650 have complete type in order to allow things like:
ae58fa02 6651
bf8f3f93 6652 template <class T> struct S { typename S<T>::X Y; };
ae58fa02 6653
bf8f3f93
MM
6654 But, such constructs have already been resolved by this
6655 point, so here CTX really should have complete type, unless
6656 it's a partial instantiation. */
4393e105 6657 ctx = complete_type (ctx);
d0f062fb 6658 if (!COMPLETE_TYPE_P (ctx))
4393e105
MM
6659 {
6660 if (complain)
6661 incomplete_type_error (NULL_TREE, ctx);
6662 return error_mark_node;
6663 }
6664 }
ae58fa02 6665
3baa501d 6666 f = make_typename_type (ctx, f, complain);
f0bcd168
MM
6667 if (f == error_mark_node)
6668 return f;
adecb3f4
MM
6669 return cp_build_qualified_type_real (f,
6670 CP_TYPE_QUALS (f)
6671 | CP_TYPE_QUALS (t),
6672 complain);
5566b478
MS
6673 }
6674
6675 case INDIRECT_REF:
4393e105
MM
6676 {
6677 tree e = tsubst (TREE_OPERAND (t, 0), args, complain,
6678 in_decl);
6679 if (e == error_mark_node)
6680 return error_mark_node;
6681 return make_pointer_declarator (type, e);
6682 }
6683
5566b478 6684 case ADDR_EXPR:
4393e105
MM
6685 {
6686 tree e = tsubst (TREE_OPERAND (t, 0), args, complain,
6687 in_decl);
6688 if (e == error_mark_node)
6689 return error_mark_node;
6690 return make_reference_declarator (type, e);
6691 }
5566b478
MS
6692
6693 case ARRAY_REF:
4393e105
MM
6694 {
6695 tree e1 = tsubst (TREE_OPERAND (t, 0), args, complain,
6696 in_decl);
6fb2c05a
JM
6697 tree e2 = tsubst_expr (TREE_OPERAND (t, 1), args, complain,
6698 in_decl);
4393e105
MM
6699 if (e1 == error_mark_node || e2 == error_mark_node)
6700 return error_mark_node;
6701
6702 return build_parse_node (ARRAY_REF, e1, e2, tsubst_expr);
6703 }
5566b478
MS
6704
6705 case CALL_EXPR:
4393e105
MM
6706 {
6707 tree e1 = tsubst (TREE_OPERAND (t, 0), args, complain,
6708 in_decl);
43f887f9
MM
6709 tree e2 = (tsubst_call_declarator_parms
6710 (CALL_DECLARATOR_PARMS (t), args, complain, in_decl));
6711 tree e3 = tsubst (CALL_DECLARATOR_EXCEPTION_SPEC (t), args,
6712 complain, in_decl);
4393e105
MM
6713
6714 if (e1 == error_mark_node || e2 == error_mark_node
6715 || e3 == error_mark_node)
6716 return error_mark_node;
6717
43f887f9 6718 return make_call_declarator (e1, e2, CALL_DECLARATOR_QUALS (t), e3);
4393e105 6719 }
5566b478 6720
fc378698 6721 case SCOPE_REF:
4393e105
MM
6722 {
6723 tree e1 = tsubst (TREE_OPERAND (t, 0), args, complain,
6724 in_decl);
6725 tree e2 = tsubst (TREE_OPERAND (t, 1), args, complain, in_decl);
6726 if (e1 == error_mark_node || e2 == error_mark_node)
6727 return error_mark_node;
6728
6729 return build_parse_node (TREE_CODE (t), e1, e2);
6730 }
fc378698 6731
b894fc05 6732 case TYPEOF_TYPE:
4393e105
MM
6733 {
6734 tree e1 = tsubst_expr (TYPE_FIELDS (t), args, complain,
6735 in_decl);
6736 if (e1 == error_mark_node)
6737 return error_mark_node;
6738
6739 return TREE_TYPE (e1);
6740 }
b894fc05 6741
f9817201
MM
6742 case FUNCTION_NAME:
6743 {
6744 const char *name;
6745 int len;
6746 tree type;
6747 tree str;
6748
6749 /* This code should match declare_hidden_char_array in
6750 c-common.c. */
6751 name = (*decl_printable_name) (current_function_decl, 2);
6752 len = strlen (name) + 1;
6753 type = build_array_type (char_type_node,
6754 build_index_type (build_int_2 (len, 0)));
6755 str = build_string (len, name);
6756 TREE_TYPE (str) = type;
6757 return str;
6758 }
6759
8d08fdba 6760 default:
5566b478 6761 sorry ("use of `%s' in template",
8d08fdba
MS
6762 tree_code_name [(int) TREE_CODE (t)]);
6763 return error_mark_node;
6764 }
6765}
6766
00d3396f
JM
6767/* Like tsubst, but deals with expressions. This function just replaces
6768 template parms; to finish processing the resultant expression, use
6769 tsubst_expr. */
6770
5566b478 6771tree
4393e105 6772tsubst_copy (t, args, complain, in_decl)
98c1c668 6773 tree t, args;
4393e105 6774 int complain;
5566b478
MS
6775 tree in_decl;
6776{
6777 enum tree_code code;
8452b1d3 6778 tree r;
8d08fdba 6779
5566b478
MS
6780 if (t == NULL_TREE || t == error_mark_node)
6781 return t;
6782
6783 code = TREE_CODE (t);
b7484fbe 6784
5566b478
MS
6785 switch (code)
6786 {
6787 case PARM_DECL:
a759e627 6788 return do_identifier (DECL_NAME (t), 0, NULL_TREE);
5566b478
MS
6789
6790 case CONST_DECL:
ed44da02
MM
6791 {
6792 tree enum_type;
6793 tree v;
6794
6795 if (!DECL_CONTEXT (t))
6796 /* This is a global enumeration constant. */
6797 return t;
6798
6799 /* Unfortunately, we cannot just call lookup_name here.
9188c363
MM
6800 Consider:
6801
6802 template <int I> int f() {
6803 enum E { a = I };
6804 struct S { void g() { E e = a; } };
6805 };
6806
6807 When we instantiate f<7>::S::g(), say, lookup_name is not
6808 clever enough to find f<7>::a. */
ed44da02 6809 enum_type
4393e105 6810 = tsubst_aggr_type (TREE_TYPE (t), args, complain, in_decl,
ed44da02
MM
6811 /*entering_scope=*/0);
6812
6813 for (v = TYPE_VALUES (enum_type);
6814 v != NULL_TREE;
6815 v = TREE_CHAIN (v))
6816 if (TREE_PURPOSE (v) == DECL_NAME (t))
6817 return TREE_VALUE (v);
6818
6819 /* We didn't find the name. That should never happen; if
6820 name-lookup found it during preliminary parsing, we
6821 should find it again here during instantiation. */
6822 my_friendly_abort (0);
6823 }
db04386f 6824 return t;
ed44da02 6825
5566b478
MS
6826 case FIELD_DECL:
6827 if (DECL_CONTEXT (t))
6828 {
0978790f 6829 tree ctx;
0978790f 6830
4393e105 6831 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
36a117a5 6832 /*entering_scope=*/1);
0978790f 6833 if (ctx != DECL_CONTEXT (t))
5566b478
MS
6834 return lookup_field (ctx, DECL_NAME (t), 0, 0);
6835 }
6836 return t;
6837
6838 case VAR_DECL:
6839 case FUNCTION_DECL:
6840 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
4393e105 6841 t = tsubst (t, args, complain, in_decl);
5566b478
MS
6842 mark_used (t);
6843 return t;
6844
98c1c668
JM
6845 case TEMPLATE_DECL:
6846 if (is_member_template (t))
4393e105 6847 return tsubst (t, args, complain, in_decl);
98c1c668
JM
6848 else
6849 return t;
6850
672476cb
MM
6851 case LOOKUP_EXPR:
6852 {
6853 /* We must tsbust into a LOOKUP_EXPR in case the names to
6854 which it refers is a conversion operator; in that case the
6855 name will change. We avoid making unnecessary copies,
6856 however. */
6857
4393e105 6858 tree id = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
672476cb
MM
6859
6860 if (id != TREE_OPERAND (t, 0))
6861 {
8452b1d3 6862 r = build_nt (LOOKUP_EXPR, id);
672476cb
MM
6863 LOOKUP_EXPR_GLOBAL (r) = LOOKUP_EXPR_GLOBAL (t);
6864 t = r;
6865 }
6866
6867 return t;
6868 }
6869
5566b478
MS
6870 case CAST_EXPR:
6871 case REINTERPRET_CAST_EXPR:
e92cc029
MS
6872 case CONST_CAST_EXPR:
6873 case STATIC_CAST_EXPR:
6874 case DYNAMIC_CAST_EXPR:
51924768 6875 case NOP_EXPR:
5566b478 6876 return build1
4393e105
MM
6877 (code, tsubst (TREE_TYPE (t), args, complain, in_decl),
6878 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl));
5566b478
MS
6879
6880 case INDIRECT_REF:
6881 case PREDECREMENT_EXPR:
6882 case PREINCREMENT_EXPR:
6883 case POSTDECREMENT_EXPR:
6884 case POSTINCREMENT_EXPR:
6885 case NEGATE_EXPR:
6886 case TRUTH_NOT_EXPR:
b87692e5 6887 case BIT_NOT_EXPR:
5566b478
MS
6888 case ADDR_EXPR:
6889 case CONVERT_EXPR: /* Unary + */
6890 case SIZEOF_EXPR:
abff8e06 6891 case ALIGNOF_EXPR:
5566b478 6892 case ARROW_EXPR:
fc378698 6893 case THROW_EXPR:
5156628f 6894 case TYPEID_EXPR:
f5733617
SS
6895 case REALPART_EXPR:
6896 case IMAGPART_EXPR:
5566b478 6897 return build1
6a629cac 6898 (code, tsubst (TREE_TYPE (t), args, complain, in_decl),
4393e105 6899 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl));
5566b478
MS
6900
6901 case PLUS_EXPR:
6902 case MINUS_EXPR:
6903 case MULT_EXPR:
6904 case TRUNC_DIV_EXPR:
6905 case CEIL_DIV_EXPR:
6906 case FLOOR_DIV_EXPR:
6907 case ROUND_DIV_EXPR:
6908 case EXACT_DIV_EXPR:
6909 case BIT_AND_EXPR:
6910 case BIT_ANDTC_EXPR:
6911 case BIT_IOR_EXPR:
6912 case BIT_XOR_EXPR:
6913 case TRUNC_MOD_EXPR:
6914 case FLOOR_MOD_EXPR:
6915 case TRUTH_ANDIF_EXPR:
6916 case TRUTH_ORIF_EXPR:
6917 case TRUTH_AND_EXPR:
6918 case TRUTH_OR_EXPR:
6919 case RSHIFT_EXPR:
6920 case LSHIFT_EXPR:
6921 case RROTATE_EXPR:
6922 case LROTATE_EXPR:
6923 case EQ_EXPR:
6924 case NE_EXPR:
6925 case MAX_EXPR:
6926 case MIN_EXPR:
6927 case LE_EXPR:
6928 case GE_EXPR:
6929 case LT_EXPR:
6930 case GT_EXPR:
6931 case COMPONENT_REF:
6932 case ARRAY_REF:
6933 case COMPOUND_EXPR:
6934 case SCOPE_REF:
6935 case DOTSTAR_EXPR:
6936 case MEMBER_REF:
6937 return build_nt
4393e105
MM
6938 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
6939 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl));
5566b478
MS
6940
6941 case CALL_EXPR:
6942 {
6943 tree fn = TREE_OPERAND (t, 0);
f84b4be9 6944 if (is_overloaded_fn (fn))
4393e105 6945 fn = tsubst_copy (get_first_fn (fn), args, complain, in_decl);
5566b478 6946 else
f84b4be9 6947 /* Sometimes FN is a LOOKUP_EXPR. */
4393e105 6948 fn = tsubst_copy (fn, args, complain, in_decl);
5566b478 6949 return build_nt
4393e105
MM
6950 (code, fn, tsubst_copy (TREE_OPERAND (t, 1), args, complain,
6951 in_decl),
5566b478
MS
6952 NULL_TREE);
6953 }
6954
6955 case METHOD_CALL_EXPR:
6956 {
6957 tree name = TREE_OPERAND (t, 0);
6958 if (TREE_CODE (name) == BIT_NOT_EXPR)
6959 {
4393e105
MM
6960 name = tsubst_copy (TREE_OPERAND (name, 0), args,
6961 complain, in_decl);
7bae46f4 6962 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
5566b478
MS
6963 }
6964 else if (TREE_CODE (name) == SCOPE_REF
6965 && TREE_CODE (TREE_OPERAND (name, 1)) == BIT_NOT_EXPR)
6966 {
4393e105
MM
6967 tree base = tsubst_copy (TREE_OPERAND (name, 0), args,
6968 complain, in_decl);
5566b478 6969 name = TREE_OPERAND (name, 1);
4393e105
MM
6970 name = tsubst_copy (TREE_OPERAND (name, 0), args,
6971 complain, in_decl);
11686454 6972 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
5566b478
MS
6973 name = build_nt (SCOPE_REF, base, name);
6974 }
6975 else
4393e105 6976 name = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
5566b478 6977 return build_nt
4393e105
MM
6978 (code, name, tsubst_copy (TREE_OPERAND (t, 1), args,
6979 complain, in_decl),
6980 tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl),
5566b478
MS
6981 NULL_TREE);
6982 }
6983
558475f0
MM
6984 case STMT_EXPR:
6985 /* This processing should really occur in tsubst_expr, However,
6986 tsubst_expr does not recurse into expressions, since it
6987 assumes that there aren't any statements inside them.
6988 Instead, it simply calls build_expr_from_tree. So, we need
6989 to expand the STMT_EXPR here. */
6990 if (!processing_template_decl)
6991 {
b5ac18ea 6992 tree stmt_expr = begin_stmt_expr ();
447cfcb9
MM
6993 tsubst_expr (STMT_EXPR_STMT (t), args,
6994 complain, in_decl);
b5ac18ea 6995 return finish_stmt_expr (stmt_expr);
558475f0 6996 }
9d9169de
MM
6997
6998 return t;
558475f0 6999
5566b478
MS
7000 case COND_EXPR:
7001 case MODOP_EXPR:
40242ccf 7002 case PSEUDO_DTOR_EXPR:
67da3287 7003 {
8452b1d3 7004 r = build_nt
4393e105
MM
7005 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
7006 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl),
7007 tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl));
67da3287
MM
7008 return r;
7009 }
5566b478
MS
7010
7011 case NEW_EXPR:
7012 {
8452b1d3 7013 r = build_nt
4393e105
MM
7014 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
7015 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl),
7016 tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl));
5566b478
MS
7017 NEW_EXPR_USE_GLOBAL (r) = NEW_EXPR_USE_GLOBAL (t);
7018 return r;
7019 }
7020
7021 case DELETE_EXPR:
7022 {
8452b1d3 7023 r = build_nt
4393e105
MM
7024 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
7025 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl));
5566b478
MS
7026 DELETE_EXPR_USE_GLOBAL (r) = DELETE_EXPR_USE_GLOBAL (t);
7027 DELETE_EXPR_USE_VEC (r) = DELETE_EXPR_USE_VEC (t);
7028 return r;
7029 }
7030
386b8a85
JM
7031 case TEMPLATE_ID_EXPR:
7032 {
00d3396f 7033 /* Substituted template arguments */
4393e105
MM
7034 tree targs = tsubst_copy (TREE_OPERAND (t, 1), args, complain,
7035 in_decl);
856216bb
MM
7036
7037 if (targs && TREE_CODE (targs) == TREE_LIST)
7038 {
7039 tree chain;
7040 for (chain = targs; chain; chain = TREE_CHAIN (chain))
7041 TREE_VALUE (chain) = maybe_fold_nontype_arg (TREE_VALUE (chain));
7042 }
7043 else if (targs)
7044 {
7045 int i;
7046 for (i = 0; i < TREE_VEC_LENGTH (targs); ++i)
7047 TREE_VEC_ELT (targs, i)
7048 = maybe_fold_nontype_arg (TREE_VEC_ELT (targs, i));
7049 }
00d3396f
JM
7050
7051 return lookup_template_function
4393e105 7052 (tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl), targs);
386b8a85
JM
7053 }
7054
5566b478
MS
7055 case TREE_LIST:
7056 {
7057 tree purpose, value, chain;
7058
7059 if (t == void_list_node)
7060 return t;
7061
7062 purpose = TREE_PURPOSE (t);
7063 if (purpose)
4393e105 7064 purpose = tsubst_copy (purpose, args, complain, in_decl);
5566b478
MS
7065 value = TREE_VALUE (t);
7066 if (value)
4393e105 7067 value = tsubst_copy (value, args, complain, in_decl);
5566b478
MS
7068 chain = TREE_CHAIN (t);
7069 if (chain && chain != void_type_node)
4393e105 7070 chain = tsubst_copy (chain, args, complain, in_decl);
5566b478
MS
7071 if (purpose == TREE_PURPOSE (t)
7072 && value == TREE_VALUE (t)
7073 && chain == TREE_CHAIN (t))
7074 return t;
7075 return tree_cons (purpose, value, chain);
7076 }
7077
7078 case RECORD_TYPE:
7079 case UNION_TYPE:
7080 case ENUMERAL_TYPE:
7081 case INTEGER_TYPE:
7082 case TEMPLATE_TYPE_PARM:
73b0fce8 7083 case TEMPLATE_TEMPLATE_PARM:
f84b4be9 7084 case TEMPLATE_PARM_INDEX:
5566b478
MS
7085 case POINTER_TYPE:
7086 case REFERENCE_TYPE:
7087 case OFFSET_TYPE:
7088 case FUNCTION_TYPE:
7089 case METHOD_TYPE:
7090 case ARRAY_TYPE:
7091 case TYPENAME_TYPE:
f84b4be9 7092 case TYPE_DECL:
4393e105 7093 return tsubst (t, args, complain, in_decl);
5566b478 7094
e92cc029 7095 case IDENTIFIER_NODE:
421844e7 7096 if (IDENTIFIER_TYPENAME_P (t))
1f6e1acc
AS
7097 {
7098 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
669ec2b4
JM
7099 if (flag_new_abi)
7100 return mangle_conv_op_name_for_type (new_type);
7101 else
7102 return (build_typename_overload (new_type));
1f6e1acc 7103 }
e92cc029
MS
7104 else
7105 return t;
7106
5156628f 7107 case CONSTRUCTOR:
8452b1d3
JM
7108 {
7109 r = build
4393e105
MM
7110 (CONSTRUCTOR, tsubst (TREE_TYPE (t), args, complain, in_decl),
7111 NULL_TREE, tsubst_copy (CONSTRUCTOR_ELTS (t), args,
7112 complain, in_decl));
8452b1d3
JM
7113 TREE_HAS_CONSTRUCTOR (r) = TREE_HAS_CONSTRUCTOR (t);
7114 return r;
7115 }
5156628f 7116
371534a9 7117 case VA_ARG_EXPR:
ea333e1c 7118 return build_x_va_arg (tsubst_copy (TREE_OPERAND (t, 0), args, complain,
371534a9
MM
7119 in_decl),
7120 tsubst (TREE_TYPE (t), args, complain, in_decl));
f9817201
MM
7121
7122 case FUNCTION_NAME:
7123 return tsubst (t, args, complain, in_decl);
7124
5566b478
MS
7125 default:
7126 return t;
7127 }
7128}
7129
558475f0 7130/* Like tsubst_copy, but also does semantic processing. */
00d3396f 7131
5566b478 7132tree
4393e105 7133tsubst_expr (t, args, complain, in_decl)
98c1c668 7134 tree t, args;
4393e105 7135 int complain;
5566b478
MS
7136 tree in_decl;
7137{
558475f0
MM
7138 tree stmt;
7139
5566b478
MS
7140 if (t == NULL_TREE || t == error_mark_node)
7141 return t;
7142
5156628f 7143 if (processing_template_decl)
4393e105 7144 return tsubst_copy (t, args, complain, in_decl);
5566b478
MS
7145
7146 switch (TREE_CODE (t))
8d08fdba 7147 {
558475f0 7148 case RETURN_INIT:
a7e4cfa0 7149 prep_stmt (t);
558475f0
MM
7150 finish_named_return_value
7151 (TREE_OPERAND (t, 0),
7152 tsubst_expr (TREE_OPERAND (t, 1), args, /*complain=*/1, in_decl));
7153 tsubst_expr (TREE_CHAIN (t), args, complain, in_decl);
7154 break;
7155
7156 case CTOR_INITIALIZER:
fd74ca0b
MM
7157 {
7158 tree member_init_list;
7159 tree base_init_list;
7160
7161 prep_stmt (t);
7162 member_init_list
7163 = tsubst_initializer_list (TREE_OPERAND (t, 0), args);
7164 base_init_list
7165 = tsubst_initializer_list (TREE_OPERAND (t, 1), args);
7166 setup_vtbl_ptr (member_init_list, base_init_list);
7167 tsubst_expr (TREE_CHAIN (t), args, complain, in_decl);
7168 break;
7169 }
558475f0 7170
5566b478 7171 case RETURN_STMT:
a7e4cfa0 7172 prep_stmt (t);
ad321293 7173 finish_return_stmt (tsubst_expr (RETURN_EXPR (t),
4393e105 7174 args, complain, in_decl));
5566b478
MS
7175 break;
7176
7177 case EXPR_STMT:
a7e4cfa0 7178 prep_stmt (t);
ad321293 7179 finish_expr_stmt (tsubst_expr (EXPR_STMT_EXPR (t),
4393e105 7180 args, complain, in_decl));
5566b478
MS
7181 break;
7182
7183 case DECL_STMT:
7184 {
e0942dcd
MM
7185 tree decl;
7186 tree init;
5566b478 7187
a7e4cfa0 7188 prep_stmt (t);
e0942dcd 7189 decl = DECL_STMT_DECL (t);
acef433b
MM
7190 if (TREE_CODE (decl) == LABEL_DECL)
7191 finish_label_decl (DECL_NAME (decl));
7192 else
7193 {
7194 init = DECL_INITIAL (decl);
7195 decl = tsubst (decl, args, complain, in_decl);
7196 init = tsubst_expr (init, args, complain, in_decl);
24bef158
MM
7197 if (init)
7198 DECL_INITIAL (decl) = error_mark_node;
b7b8bcd2
MM
7199 /* By marking the declaration as instantiated, we avoid
7200 trying to instantiate it. Since instantiate_decl can't
7201 handle local variables, and since we've already done
7202 all that needs to be done, that's the right thing to
7203 do. */
acef433b
MM
7204 if (TREE_CODE (decl) == VAR_DECL)
7205 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
7206 maybe_push_decl (decl);
cd9f6678 7207 cp_finish_decl (decl, init, NULL_TREE, 0);
acef433b 7208 }
e0942dcd 7209 return decl;
5566b478 7210 }
8d08fdba 7211
5566b478
MS
7212 case FOR_STMT:
7213 {
7214 tree tmp;
a7e4cfa0 7215 prep_stmt (t);
5566b478 7216
558475f0 7217 stmt = begin_for_stmt ();
ad321293 7218 for (tmp = FOR_INIT_STMT (t); tmp; tmp = TREE_CHAIN (tmp))
4393e105 7219 tsubst_expr (tmp, args, complain, in_decl);
558475f0 7220 finish_for_init_stmt (stmt);
ad321293 7221 finish_for_cond (tsubst_expr (FOR_COND (t), args,
4393e105 7222 complain, in_decl),
558475f0 7223 stmt);
4393e105 7224 tmp = tsubst_expr (FOR_EXPR (t), args, complain, in_decl);
558475f0 7225 finish_for_expr (tmp, stmt);
4393e105 7226 tsubst_expr (FOR_BODY (t), args, complain, in_decl);
35b1567d 7227 finish_for_stmt (stmt);
5566b478
MS
7228 }
7229 break;
8d08fdba 7230
5566b478
MS
7231 case WHILE_STMT:
7232 {
a7e4cfa0 7233 prep_stmt (t);
558475f0 7234 stmt = begin_while_stmt ();
ad321293 7235 finish_while_stmt_cond (tsubst_expr (WHILE_COND (t),
4393e105 7236 args, complain, in_decl),
558475f0 7237 stmt);
4393e105 7238 tsubst_expr (WHILE_BODY (t), args, complain, in_decl);
558475f0 7239 finish_while_stmt (stmt);
5566b478
MS
7240 }
7241 break;
8d08fdba 7242
5566b478
MS
7243 case DO_STMT:
7244 {
a7e4cfa0 7245 prep_stmt (t);
558475f0 7246 stmt = begin_do_stmt ();
4393e105 7247 tsubst_expr (DO_BODY (t), args, complain, in_decl);
558475f0 7248 finish_do_body (stmt);
ad321293 7249 finish_do_stmt (tsubst_expr (DO_COND (t), args,
4393e105 7250 complain, in_decl),
558475f0 7251 stmt);
5566b478
MS
7252 }
7253 break;
a0a33927 7254
5566b478 7255 case IF_STMT:
8d08fdba 7256 {
5566b478 7257 tree tmp;
5566b478 7258
a7e4cfa0 7259 prep_stmt (t);
558475f0 7260 stmt = begin_if_stmt ();
ad321293 7261 finish_if_stmt_cond (tsubst_expr (IF_COND (t),
4393e105 7262 args, complain, in_decl),
558475f0 7263 stmt);
db5ae43f 7264
ad321293 7265 if (tmp = THEN_CLAUSE (t), tmp)
db5ae43f 7266 {
4393e105 7267 tsubst_expr (tmp, args, complain, in_decl);
558475f0 7268 finish_then_clause (stmt);
db5ae43f
MS
7269 }
7270
ad321293
MM
7271 if (tmp = ELSE_CLAUSE (t), tmp)
7272 {
7273 begin_else_clause ();
4393e105 7274 tsubst_expr (tmp, args, complain, in_decl);
558475f0 7275 finish_else_clause (stmt);
ad321293 7276 }
8d08fdba 7277
ad321293 7278 finish_if_stmt ();
8d08fdba 7279 }
5566b478 7280 break;
8d08fdba 7281
5566b478
MS
7282 case COMPOUND_STMT:
7283 {
ad321293 7284 tree substmt;
8d08fdba 7285
a7e4cfa0 7286 prep_stmt (t);
558475f0 7287 stmt = begin_compound_stmt (COMPOUND_STMT_NO_SCOPE (t));
ad321293
MM
7288 for (substmt = COMPOUND_BODY (t);
7289 substmt != NULL_TREE;
7290 substmt = TREE_CHAIN (substmt))
4393e105 7291 tsubst_expr (substmt, args, complain, in_decl);
558475f0 7292 return finish_compound_stmt (COMPOUND_STMT_NO_SCOPE (t), stmt);
5566b478
MS
7293 }
7294 break;
8d08fdba 7295
5566b478 7296 case BREAK_STMT:
a7e4cfa0 7297 prep_stmt (t);
ad321293 7298 finish_break_stmt ();
5566b478 7299 break;
8d08fdba 7300
6467930b 7301 case CONTINUE_STMT:
a7e4cfa0 7302 prep_stmt (t);
ad321293 7303 finish_continue_stmt ();
6467930b
MS
7304 break;
7305
5566b478
MS
7306 case SWITCH_STMT:
7307 {
558475f0 7308 tree val;
5566b478 7309
a7e4cfa0 7310 prep_stmt (t);
527f0080 7311 stmt = begin_switch_stmt ();
4393e105 7312 val = tsubst_expr (SWITCH_COND (t), args, complain, in_decl);
527f0080 7313 finish_switch_cond (val, stmt);
558475f0 7314 tsubst_expr (SWITCH_BODY (t), args, complain, in_decl);
35b1567d 7315 finish_switch_stmt (stmt);
5566b478
MS
7316 }
7317 break;
7318
7319 case CASE_LABEL:
a7e4cfa0 7320 prep_stmt (t);
4393e105
MM
7321 finish_case_label (tsubst_expr (CASE_LOW (t), args, complain, in_decl),
7322 tsubst_expr (CASE_HIGH (t), args, complain, in_decl));
5566b478
MS
7323 break;
7324
acef433b
MM
7325 case LABEL_STMT:
7326 lineno = STMT_LINENO (t);
7327 finish_label_stmt (DECL_NAME (LABEL_STMT_LABEL (t)));
5566b478
MS
7328 break;
7329
7330 case GOTO_STMT:
a7e4cfa0 7331 prep_stmt (t);
aa09da44 7332 t = GOTO_DESTINATION (t);
3fa56191 7333 if (TREE_CODE (t) != LABEL_DECL)
aa09da44
MM
7334 /* Computed goto's must be tsubst'd into. On the other hand,
7335 non-computed gotos must not be; the identifier in question
7336 will have no binding. */
4393e105 7337 t = tsubst_expr (t, args, complain, in_decl);
3fa56191
MM
7338 else
7339 t = DECL_NAME (t);
aa09da44 7340 finish_goto_stmt (t);
ad321293
MM
7341 break;
7342
7343 case ASM_STMT:
a7e4cfa0 7344 prep_stmt (t);
3ebc5c52 7345 finish_asm_stmt (ASM_CV_QUAL (t),
4393e105
MM
7346 tsubst_expr (ASM_STRING (t), args, complain, in_decl),
7347 tsubst_expr (ASM_OUTPUTS (t), args, complain, in_decl),
7348 tsubst_expr (ASM_INPUTS (t), args, complain, in_decl),
7349 tsubst_expr (ASM_CLOBBERS (t), args, complain,
7350 in_decl));
5566b478 7351 break;
faf5394a
MS
7352
7353 case TRY_BLOCK:
a7e4cfa0 7354 prep_stmt (t);
f1dedc31 7355 if (CLEANUP_P (t))
62409b39 7356 {
57b52417 7357 stmt = begin_try_block ();
62409b39
MM
7358 tsubst_expr (TRY_STMTS (t), args, complain, in_decl);
7359 finish_cleanup_try_block (stmt);
7360 finish_cleanup (tsubst_expr (TRY_HANDLERS (t), args,
7361 complain, in_decl),
7362 stmt);
7363 }
f1dedc31
MM
7364 else
7365 {
62409b39
MM
7366 tree handler;
7367
7368 if (FN_TRY_BLOCK_P (t))
7369 stmt = begin_function_try_block ();
7370 else
7371 stmt = begin_try_block ();
7372
7373 tsubst_expr (TRY_STMTS (t), args, complain, in_decl);
7374
7375 if (FN_TRY_BLOCK_P (t))
7376 finish_function_try_block (stmt);
7377 else
7378 finish_try_block (stmt);
7379
7380 handler = TRY_HANDLERS (t);
f1dedc31
MM
7381 for (; handler; handler = TREE_CHAIN (handler))
7382 tsubst_expr (handler, args, complain, in_decl);
84df082b
MM
7383 if (FN_TRY_BLOCK_P (t))
7384 finish_function_handler_sequence (stmt);
7385 else
7386 finish_handler_sequence (stmt);
f1dedc31 7387 }
faf5394a 7388 break;
b35d4555 7389
faf5394a 7390 case HANDLER:
b35d4555
MM
7391 {
7392 tree decl;
7393 tree blocks;
7394
7395 prep_stmt (t);
7396 stmt = begin_handler ();
7397 if (HANDLER_PARMS (t))
7398 {
7399 decl = DECL_STMT_DECL (HANDLER_PARMS (t));
7400 decl = tsubst (decl, args, complain, in_decl);
f8191e64
MM
7401 /* Prevent instantiate_decl from trying to instantiate
7402 this variable. We've already done all that needs to be
7403 done. */
7404 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
b35d4555
MM
7405 }
7406 else
7407 decl = NULL_TREE;
7408 blocks = finish_handler_parms (decl, stmt);
7409 tsubst_expr (HANDLER_BODY (t), args, complain, in_decl);
7410 finish_handler (blocks, stmt);
7411 }
faf5394a
MS
7412 break;
7413
b87692e5 7414 case TAG_DEFN:
a7e4cfa0 7415 prep_stmt (t);
b87692e5 7416 t = TREE_TYPE (t);
ae673f14 7417 tsubst (t, args, complain, NULL_TREE);
b87692e5
MS
7418 break;
7419
5566b478 7420 default:
4393e105 7421 return build_expr_from_tree (tsubst_copy (t, args, complain, in_decl));
5566b478
MS
7422 }
7423 return NULL_TREE;
8d08fdba
MS
7424}
7425
db9b2174
MM
7426/* TMPL is a TEMPLATE_DECL for a cloned constructor or destructor.
7427 Instantiate it with the ARGS. */
7428
7429static tree
7430instantiate_clone (tmpl, args)
7431 tree tmpl;
7432 tree args;
7433{
7434 tree spec;
7435 tree clone;
7436
7437 /* Instantiated the cloned function, rather than the clone. */
7438 spec = instantiate_template (DECL_CLONED_FUNCTION (tmpl), args);
7439
7440 /* Then, see if we've already cloned the instantiation. */
7441 for (clone = TREE_CHAIN (spec);
7442 clone && DECL_CLONED_FUNCTION_P (clone);
7443 clone = TREE_CHAIN (clone))
7444 if (DECL_NAME (clone) == DECL_NAME (tmpl))
7445 return clone;
7446
7447 /* If we haven't, do so know. */
7448 if (!clone)
7449 clone_function_decl (spec, /*update_method_vec_p=*/0);
7450
7451 /* Look again. */
7452 for (clone = TREE_CHAIN (spec);
7453 clone && DECL_CLONED_FUNCTION_P (clone);
7454 clone = TREE_CHAIN (clone))
7455 if (DECL_NAME (clone) == DECL_NAME (tmpl))
7456 return clone;
7457
7458 /* We should always have found the clone by now. */
7459 my_friendly_abort (20000411);
7460 return NULL_TREE;
7461}
7462
6ba89f8e 7463/* Instantiate the indicated variable or function template TMPL with
36a117a5
MM
7464 the template arguments in TARG_PTR. */
7465
5566b478
MS
7466tree
7467instantiate_template (tmpl, targ_ptr)
98c1c668 7468 tree tmpl, targ_ptr;
8d08fdba 7469{
5566b478 7470 tree fndecl;
36a117a5
MM
7471 tree gen_tmpl;
7472 tree spec;
5566b478 7473 int i, len;
36a117a5 7474 tree inner_args;
5566b478 7475
27fafc8d
JM
7476 if (tmpl == error_mark_node)
7477 return error_mark_node;
7478
386b8a85
JM
7479 my_friendly_assert (TREE_CODE (tmpl) == TEMPLATE_DECL, 283);
7480
db9b2174
MM
7481 /* If this function is a clone, handle it specially. */
7482 if (DECL_CLONED_FUNCTION_P (tmpl))
7483 return instantiate_clone (tmpl, targ_ptr);
7484
36a117a5
MM
7485 /* Check to see if we already have this specialization. */
7486 spec = retrieve_specialization (tmpl, targ_ptr);
7487 if (spec != NULL_TREE)
7488 return spec;
7489
f9a7ae04
MM
7490 gen_tmpl = most_general_template (tmpl);
7491 if (tmpl != gen_tmpl)
386b8a85 7492 {
36a117a5
MM
7493 /* The TMPL is a partial instantiation. To get a full set of
7494 arguments we must add the arguments used to perform the
7495 partial instantiation. */
7496 targ_ptr = add_outermost_template_args (DECL_TI_ARGS (tmpl),
7497 targ_ptr);
36a117a5
MM
7498
7499 /* Check to see if we already have this specialization. */
7500 spec = retrieve_specialization (gen_tmpl, targ_ptr);
75650646
MM
7501 if (spec != NULL_TREE)
7502 return spec;
386b8a85
JM
7503 }
7504
36a117a5 7505 len = DECL_NTPARMS (gen_tmpl);
f9a7ae04 7506 inner_args = INNERMOST_TEMPLATE_ARGS (targ_ptr);
5566b478
MS
7507 i = len;
7508 while (i--)
8d08fdba 7509 {
36a117a5 7510 tree t = TREE_VEC_ELT (inner_args, i);
2f939d94 7511 if (TYPE_P (t))
5566b478
MS
7512 {
7513 tree nt = target_type (t);
ec255269 7514 if (IS_AGGR_TYPE (nt) && decl_function_context (TYPE_MAIN_DECL (nt)))
5566b478 7515 {
8251199e
JM
7516 cp_error ("type `%T' composed from a local class is not a valid template-argument", t);
7517 cp_error (" trying to instantiate `%D'", gen_tmpl);
454fa7a7 7518 return error_mark_node;
5566b478
MS
7519 }
7520 }
8d08fdba
MS
7521 }
7522
5566b478 7523 /* substitute template parameters */
17aec3eb
RK
7524 fndecl = tsubst (DECL_TEMPLATE_RESULT (gen_tmpl),
7525 targ_ptr, /*complain=*/1, gen_tmpl);
36a117a5
MM
7526 /* The DECL_TI_TEMPLATE should always be the immediate parent
7527 template, not the most general template. */
7528 DECL_TI_TEMPLATE (fndecl) = tmpl;
8d08fdba 7529
824b9a4c
MS
7530 if (flag_external_templates)
7531 add_pending_template (fndecl);
7532
5566b478 7533 return fndecl;
8d08fdba 7534}
5566b478
MS
7535
7536/* Push the name of the class template into the scope of the instantiation. */
8d08fdba
MS
7537
7538void
5566b478
MS
7539overload_template_name (type)
7540 tree type;
8d08fdba 7541{
5566b478
MS
7542 tree id = DECL_NAME (CLASSTYPE_TI_TEMPLATE (type));
7543 tree decl;
8d08fdba 7544
5566b478
MS
7545 if (IDENTIFIER_CLASS_VALUE (id)
7546 && TREE_TYPE (IDENTIFIER_CLASS_VALUE (id)) == type)
7547 return;
8d08fdba 7548
5566b478 7549 decl = build_decl (TYPE_DECL, id, type);
c727aa5e 7550 DECL_ARTIFICIAL (decl) = 1;
5566b478 7551 pushdecl_class_level (decl);
8d08fdba
MS
7552}
7553
4393e105
MM
7554/* The FN is a TEMPLATE_DECL for a function. The ARGS are the
7555 arguments that are being used when calling it. TARGS is a vector
7556 into which the deduced template arguments are placed.
8d08fdba
MS
7557
7558 Return zero for success, 2 for an incomplete match that doesn't resolve
7559 all the types, and 1 for complete failure. An error message will be
7560 printed only for an incomplete match.
7561
4393e105
MM
7562 If FN is a conversion operator, RETURN_TYPE is the type desired as
7563 the result of the conversion operator.
8d08fdba 7564
4393e105 7565 TPARMS is a vector of template parameters.
9f54c803
MM
7566
7567 The EXPLICIT_TARGS are explicit template arguments provided via a
7568 template-id.
6467930b 7569
830bfa74
MM
7570 The parameter STRICT is one of:
7571
7572 DEDUCE_CALL:
7573 We are deducing arguments for a function call, as in
7574 [temp.deduct.call].
7575
7576 DEDUCE_CONV:
7577 We are deducing arguments for a conversion function, as in
7578 [temp.deduct.conv].
7579
7580 DEDUCE_EXACT:
7581 We are deducing arguments when calculating the partial
7582 ordering between specializations of function or class
7583 templates, as in [temp.func.order] and [temp.class.order],
7584 when doing an explicit instantiation as in [temp.explicit],
9f54c803 7585 when determining an explicit specialization as in
830bfa74 7586 [temp.expl.spec], or when taking the address of a function
4393e105
MM
7587 template, as in [temp.deduct.funcaddr].
7588
4393e105 7589 The other arguments are as for type_unification. */
8d08fdba
MS
7590
7591int
4393e105 7592fn_type_unification (fn, explicit_targs, targs, args, return_type,
03017874 7593 strict)
4393e105 7594 tree fn, explicit_targs, targs, args, return_type;
830bfa74 7595 unification_kind_t strict;
386b8a85 7596{
4393e105
MM
7597 tree parms;
7598 tree fntype;
adecb3f4 7599 int result;
386b8a85 7600
4393e105
MM
7601 my_friendly_assert (TREE_CODE (fn) == TEMPLATE_DECL, 0);
7602
7603 fntype = TREE_TYPE (fn);
7604 if (explicit_targs)
75650646 7605 {
4393e105
MM
7606 /* [temp.deduct]
7607
7608 The specified template arguments must match the template
7609 parameters in kind (i.e., type, nontype, template), and there
7610 must not be more arguments than there are parameters;
7611 otherwise type deduction fails.
7612
7613 Nontype arguments must match the types of the corresponding
7614 nontype template parameters, or must be convertible to the
7615 types of the corresponding nontype parameters as specified in
7616 _temp.arg.nontype_, otherwise type deduction fails.
7617
7618 All references in the function type of the function template
7619 to the corresponding template parameters are replaced by the
7620 specified template argument values. If a substitution in a
7621 template parameter or in the function type of the function
7622 template results in an invalid type, type deduction fails. */
7623 int i;
7624 tree converted_args;
75650646 7625
4393e105
MM
7626 converted_args
7627 = (coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
7628 explicit_targs, NULL_TREE, /*complain=*/0,
7629 /*require_all_arguments=*/0));
7630 if (converted_args == error_mark_node)
75650646 7631 return 1;
386b8a85 7632
4393e105
MM
7633 fntype = tsubst (fntype, converted_args, /*complain=*/0, NULL_TREE);
7634 if (fntype == error_mark_node)
7635 return 1;
050367a3 7636
4393e105
MM
7637 /* Place the explicitly specified arguments in TARGS. */
7638 for (i = 0; i < TREE_VEC_LENGTH (targs); i++)
7639 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (converted_args, i);
75650646 7640 }
4393e105
MM
7641
7642 parms = TYPE_ARG_TYPES (fntype);
386b8a85 7643
4393e105
MM
7644 if (DECL_CONV_FN_P (fn))
7645 {
8d3631f8 7646 /* This is a template conversion operator. Remove `this', since
edef8288 7647 we could be comparing conversions from different classes. */
8d3631f8
NS
7648 parms = TREE_CHAIN (parms);
7649 args = TREE_CHAIN (args);
7650 my_friendly_assert (return_type != NULL_TREE, 20000227);
7651 }
7652
7653 if (return_type)
7654 {
7655 /* We've been given a return type to match, prepend it. */
7656 parms = tree_cons (NULL_TREE, TREE_TYPE (fntype), parms);
7657 args = tree_cons (NULL_TREE, return_type, args);
4393e105
MM
7658 }
7659
4393e105
MM
7660 /* We allow incomplete unification without an error message here
7661 because the standard doesn't seem to explicitly prohibit it. Our
7662 callers must be ready to deal with unification failures in any
7663 event. */
adecb3f4
MM
7664 result = type_unification_real (DECL_INNERMOST_TEMPLATE_PARMS (fn),
7665 targs, parms, args, /*subr=*/0,
7666 strict, /*allow_incomplete*/1);
7667
7668 if (result == 0)
7669 /* All is well so far. Now, check:
7670
7671 [temp.deduct]
7672
7673 When all template arguments have been deduced, all uses of
7674 template parameters in nondeduced contexts are replaced with
7675 the corresponding deduced argument values. If the
7676 substitution results in an invalid type, as described above,
7677 type deduction fails. */
7678 if (tsubst (TREE_TYPE (fn), targs, /*complain=*/0, NULL_TREE)
7679 == error_mark_node)
7680 return 1;
7681
7682 return result;
830bfa74
MM
7683}
7684
7685/* Adjust types before performing type deduction, as described in
7686 [temp.deduct.call] and [temp.deduct.conv]. The rules in these two
4c7d0dff
MM
7687 sections are symmetric. PARM is the type of a function parameter
7688 or the return type of the conversion function. ARG is the type of
7689 the argument passed to the call, or the type of the value
7690 intialized with the result of the conversion function. */
386b8a85 7691
e9659ab0 7692static void
830bfa74
MM
7693maybe_adjust_types_for_deduction (strict, parm, arg)
7694 unification_kind_t strict;
7695 tree* parm;
7696 tree* arg;
7697{
7698 switch (strict)
7699 {
7700 case DEDUCE_CALL:
7701 break;
7702
7703 case DEDUCE_CONV:
7704 {
4c7d0dff
MM
7705 /* Swap PARM and ARG throughout the remainder of this
7706 function; the handling is precisely symmetric since PARM
7707 will initialize ARG rather than vice versa. */
830bfa74
MM
7708 tree* temp = parm;
7709 parm = arg;
7710 arg = temp;
7711 break;
7712 }
7713
7714 case DEDUCE_EXACT:
7715 /* There is nothing to do in this case. */
7716 return;
7717
7718 default:
7719 my_friendly_abort (0);
7720 }
7721
7722 if (TREE_CODE (*parm) != REFERENCE_TYPE)
7723 {
7724 /* [temp.deduct.call]
7725
7726 If P is not a reference type:
7727
7728 --If A is an array type, the pointer type produced by the
7729 array-to-pointer standard conversion (_conv.array_) is
7730 used in place of A for type deduction; otherwise,
7731
7732 --If A is a function type, the pointer type produced by
7733 the function-to-pointer standard conversion
7734 (_conv.func_) is used in place of A for type deduction;
7735 otherwise,
7736
7737 --If A is a cv-qualified type, the top level
7738 cv-qualifiers of A's type are ignored for type
7739 deduction. */
7740 if (TREE_CODE (*arg) == ARRAY_TYPE)
7741 *arg = build_pointer_type (TREE_TYPE (*arg));
d8f8dca1 7742 else if (TREE_CODE (*arg) == FUNCTION_TYPE)
830bfa74
MM
7743 *arg = build_pointer_type (*arg);
7744 else
7745 *arg = TYPE_MAIN_VARIANT (*arg);
7746 }
7747
7748 /* [temp.deduct.call]
7749
7750 If P is a cv-qualified type, the top level cv-qualifiers
7751 of P's type are ignored for type deduction. If P is a
7752 reference type, the type referred to by P is used for
7753 type deduction. */
7754 *parm = TYPE_MAIN_VARIANT (*parm);
7755 if (TREE_CODE (*parm) == REFERENCE_TYPE)
7756 *parm = TREE_TYPE (*parm);
386b8a85
JM
7757}
7758
4393e105 7759/* Like type_unfication.
9f54c803
MM
7760
7761 If SUBR is 1, we're being called recursively (to unify the
7762 arguments of a function or method parameter of a function
7763 template). */
386b8a85 7764
4966381a 7765static int
3b3ba9f0 7766type_unification_real (tparms, targs, parms, args, subr,
4393e105 7767 strict, allow_incomplete)
050367a3 7768 tree tparms, targs, parms, args;
830bfa74
MM
7769 int subr;
7770 unification_kind_t strict;
7771 int allow_incomplete;
8d08fdba
MS
7772{
7773 tree parm, arg;
7774 int i;
7775 int ntparms = TREE_VEC_LENGTH (tparms);
830bfa74 7776 int sub_strict;
8d08fdba
MS
7777
7778 my_friendly_assert (TREE_CODE (tparms) == TREE_VEC, 289);
386b8a85
JM
7779 my_friendly_assert (parms == NULL_TREE
7780 || TREE_CODE (parms) == TREE_LIST, 290);
51c184be 7781 /* ARGS could be NULL (via a call from parse.y to
8d08fdba
MS
7782 build_x_function_call). */
7783 if (args)
7784 my_friendly_assert (TREE_CODE (args) == TREE_LIST, 291);
7785 my_friendly_assert (ntparms > 0, 292);
7786
830bfa74
MM
7787 switch (strict)
7788 {
7789 case DEDUCE_CALL:
7790 sub_strict = UNIFY_ALLOW_MORE_CV_QUAL | UNIFY_ALLOW_DERIVED;
7791 break;
7792
7793 case DEDUCE_CONV:
7794 sub_strict = UNIFY_ALLOW_LESS_CV_QUAL;
7795 break;
7796
7797 case DEDUCE_EXACT:
7798 sub_strict = UNIFY_ALLOW_NONE;
7799 break;
7800
7801 default:
7802 my_friendly_abort (0);
7803 }
7804
8d08fdba
MS
7805 while (parms
7806 && parms != void_list_node
7807 && args
7808 && args != void_list_node)
7809 {
7810 parm = TREE_VALUE (parms);
7811 parms = TREE_CHAIN (parms);
7812 arg = TREE_VALUE (args);
7813 args = TREE_CHAIN (args);
7814
7815 if (arg == error_mark_node)
7816 return 1;
7817 if (arg == unknown_type_node)
34016c81
JM
7818 /* We can't deduce anything from this, but we might get all the
7819 template args from other function args. */
7820 continue;
b7484fbe 7821
03e70705
JM
7822 /* Conversions will be performed on a function argument that
7823 corresponds with a function parameter that contains only
7824 non-deducible template parameters and explicitly specified
7825 template parameters. */
7826 if (! uses_template_parms (parm))
b7484fbe 7827 {
03e70705
JM
7828 tree type;
7829
2f939d94 7830 if (!TYPE_P (arg))
03e70705
JM
7831 type = TREE_TYPE (arg);
7832 else
7833 {
7834 type = arg;
7835 arg = NULL_TREE;
7836 }
7837
830bfa74 7838 if (strict == DEDUCE_EXACT)
03e70705 7839 {
3bfdc719 7840 if (same_type_p (parm, type))
03e70705
JM
7841 continue;
7842 }
03e70705 7843 else
343c89cd
JM
7844 /* It might work; we shouldn't check now, because we might
7845 get into infinite recursion. Overload resolution will
7846 handle it. */
7847 continue;
03e70705 7848
b7484fbe
MS
7849 return 1;
7850 }
7851
2f939d94 7852 if (!TYPE_P (arg))
8d08fdba
MS
7853 {
7854 my_friendly_assert (TREE_TYPE (arg) != NULL_TREE, 293);
34016c81 7855 if (type_unknown_p (arg))
28cbf42c 7856 {
34016c81
JM
7857 /* [temp.deduct.type] A template-argument can be deduced from
7858 a pointer to function or pointer to member function
7859 argument if the set of overloaded functions does not
7860 contain function templates and at most one of a set of
7861 overloaded functions provides a unique match. */
7862
7863 if (resolve_overloaded_unification
4393e105 7864 (tparms, targs, parm, arg, strict, sub_strict)
34016c81
JM
7865 != 0)
7866 return 1;
7867 continue;
28cbf42c 7868 }
8d08fdba
MS
7869 arg = TREE_TYPE (arg);
7870 }
4393e105 7871
830bfa74
MM
7872 if (!subr)
7873 maybe_adjust_types_for_deduction (strict, &parm, &arg);
db5ae43f 7874
4393e105 7875 switch (unify (tparms, targs, parm, arg, sub_strict))
8d08fdba
MS
7876 {
7877 case 0:
7878 break;
7879 case 1:
7880 return 1;
7881 }
7882 }
7883 /* Fail if we've reached the end of the parm list, and more args
7884 are present, and the parm list isn't variadic. */
7885 if (args && args != void_list_node && parms == void_list_node)
7886 return 1;
7887 /* Fail if parms are left and they don't have default values. */
7888 if (parms
7889 && parms != void_list_node
7890 && TREE_PURPOSE (parms) == NULL_TREE)
7891 return 1;
7892 if (!subr)
7893 for (i = 0; i < ntparms; i++)
050367a3 7894 if (TREE_VEC_ELT (targs, i) == NULL_TREE)
8d08fdba 7895 {
386b8a85 7896 if (!allow_incomplete)
8251199e 7897 error ("incomplete type unification");
8d08fdba
MS
7898 return 2;
7899 }
7900 return 0;
7901}
7902
34016c81
JM
7903/* Subroutine of type_unification_real. Args are like the variables at the
7904 call site. ARG is an overloaded function (or template-id); we try
7905 deducing template args from each of the overloads, and if only one
7906 succeeds, we go with that. Modifies TARGS and returns 0 on success. */
7907
7908static int
7909resolve_overloaded_unification (tparms, targs, parm, arg, strict,
4393e105 7910 sub_strict)
34016c81
JM
7911 tree tparms, targs, parm, arg;
7912 unification_kind_t strict;
7913 int sub_strict;
34016c81
JM
7914{
7915 tree tempargs = copy_node (targs);
7916 int good = 0;
7917
7918 if (TREE_CODE (arg) == ADDR_EXPR)
7919 arg = TREE_OPERAND (arg, 0);
9f3d9e46 7920
d8f8dca1
MM
7921 if (TREE_CODE (arg) == COMPONENT_REF)
7922 /* Handle `&x' where `x' is some static or non-static member
7923 function name. */
7924 arg = TREE_OPERAND (arg, 1);
7925
05e0b2f4
JM
7926 if (TREE_CODE (arg) == OFFSET_REF)
7927 arg = TREE_OPERAND (arg, 1);
7928
9f3d9e46
JM
7929 /* Strip baselink information. */
7930 while (TREE_CODE (arg) == TREE_LIST)
7931 arg = TREE_VALUE (arg);
7932
34016c81
JM
7933 if (TREE_CODE (arg) == TEMPLATE_ID_EXPR)
7934 {
7935 /* If we got some explicit template args, we need to plug them into
7936 the affected templates before we try to unify, in case the
7937 explicit args will completely resolve the templates in question. */
7938
7939 tree expl_subargs = TREE_OPERAND (arg, 1);
7940 arg = TREE_OPERAND (arg, 0);
7941
7942 for (; arg; arg = OVL_NEXT (arg))
7943 {
7944 tree fn = OVL_CURRENT (arg);
7945 tree subargs, elem;
7946
7947 if (TREE_CODE (fn) != TEMPLATE_DECL)
7948 continue;
7949
17aec3eb
RK
7950 subargs = get_bindings_overload (fn, DECL_TEMPLATE_RESULT (fn),
7951 expl_subargs);
34016c81
JM
7952 if (subargs)
7953 {
4393e105
MM
7954 elem = tsubst (TREE_TYPE (fn), subargs, /*complain=*/0,
7955 NULL_TREE);
d8f8dca1
MM
7956 if (TREE_CODE (elem) == METHOD_TYPE)
7957 elem = build_ptrmemfunc_type (build_pointer_type (elem));
e97e5263 7958 good += try_one_overload (tparms, targs, tempargs, parm, elem,
4393e105 7959 strict, sub_strict);
34016c81
JM
7960 }
7961 }
7962 }
7963 else if (TREE_CODE (arg) == OVERLOAD)
7964 {
7965 for (; arg; arg = OVL_NEXT (arg))
d8f8dca1
MM
7966 {
7967 tree type = TREE_TYPE (OVL_CURRENT (arg));
7968 if (TREE_CODE (type) == METHOD_TYPE)
7969 type = build_ptrmemfunc_type (build_pointer_type (type));
7970 good += try_one_overload (tparms, targs, tempargs, parm,
7971 type,
4393e105 7972 strict, sub_strict);
d8f8dca1 7973 }
34016c81
JM
7974 }
7975 else
7976 my_friendly_abort (981006);
7977
7978 /* [temp.deduct.type] A template-argument can be deduced from a pointer
7979 to function or pointer to member function argument if the set of
7980 overloaded functions does not contain function templates and at most
7981 one of a set of overloaded functions provides a unique match.
7982
7983 So if we found multiple possibilities, we return success but don't
7984 deduce anything. */
7985
7986 if (good == 1)
7987 {
7988 int i = TREE_VEC_LENGTH (targs);
7989 for (; i--; )
7990 if (TREE_VEC_ELT (tempargs, i))
7991 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (tempargs, i);
7992 }
7993 if (good)
7994 return 0;
7995
7996 return 1;
7997}
7998
7999/* Subroutine of resolve_overloaded_unification; does deduction for a single
8000 overload. Fills TARGS with any deduced arguments, or error_mark_node if
8001 different overloads deduce different arguments for a given parm.
8002 Returns 1 on success. */
8003
8004static int
e97e5263 8005try_one_overload (tparms, orig_targs, targs, parm, arg, strict,
4393e105 8006 sub_strict)
e97e5263 8007 tree tparms, orig_targs, targs, parm, arg;
34016c81
JM
8008 unification_kind_t strict;
8009 int sub_strict;
34016c81
JM
8010{
8011 int nargs;
8012 tree tempargs;
8013 int i;
8014
8015 /* [temp.deduct.type] A template-argument can be deduced from a pointer
8016 to function or pointer to member function argument if the set of
8017 overloaded functions does not contain function templates and at most
8018 one of a set of overloaded functions provides a unique match.
8019
8020 So if this is a template, just return success. */
8021
8022 if (uses_template_parms (arg))
8023 return 1;
8024
8025 maybe_adjust_types_for_deduction (strict, &parm, &arg);
8026
8027 /* We don't copy orig_targs for this because if we have already deduced
8028 some template args from previous args, unify would complain when we
8029 try to deduce a template parameter for the same argument, even though
8030 there isn't really a conflict. */
8031 nargs = TREE_VEC_LENGTH (targs);
f31c0a32 8032 tempargs = make_tree_vec (nargs);
34016c81 8033
4393e105 8034 if (unify (tparms, tempargs, parm, arg, sub_strict) != 0)
34016c81
JM
8035 return 0;
8036
8037 /* First make sure we didn't deduce anything that conflicts with
e97e5263 8038 explicitly specified args. */
34016c81
JM
8039 for (i = nargs; i--; )
8040 {
8041 tree elt = TREE_VEC_ELT (tempargs, i);
e97e5263 8042 tree oldelt = TREE_VEC_ELT (orig_targs, i);
34016c81
JM
8043
8044 if (elt == NULL_TREE)
8045 continue;
8046 else if (uses_template_parms (elt))
8047 {
8048 /* Since we're unifying against ourselves, we will fill in template
8049 args used in the function parm list with our own template parms.
8050 Discard them. */
8051 TREE_VEC_ELT (tempargs, i) = NULL_TREE;
8052 continue;
8053 }
8054 else if (oldelt && ! template_args_equal (oldelt, elt))
8055 return 0;
8056 }
8057
8058 for (i = nargs; i--; )
8059 {
8060 tree elt = TREE_VEC_ELT (tempargs, i);
8061
8062 if (elt)
8063 TREE_VEC_ELT (targs, i) = elt;
8064 }
8065
8066 return 1;
8067}
8068
4393e105
MM
8069/* PARM is a template class (perhaps with unbound template
8070 parameters). ARG is a fully instantiated type. If ARG can be
8071 bound to PARM, return ARG, otherwise return NULL_TREE. TPARMS and
8072 TARGS are as for unify. */
fcfb9f96
MM
8073
8074static tree
4393e105 8075try_class_unification (tparms, targs, parm, arg)
fcfb9f96
MM
8076 tree tparms;
8077 tree targs;
4393e105
MM
8078 tree parm;
8079 tree arg;
8080{
8081 int i;
8082 tree copy_of_targs;
8083
8084 if (!CLASSTYPE_TEMPLATE_INFO (arg)
8085 || CLASSTYPE_TI_TEMPLATE (arg) != CLASSTYPE_TI_TEMPLATE (parm))
8086 return NULL_TREE;
8087
8088 /* We need to make a new template argument vector for the call to
8089 unify. If we used TARGS, we'd clutter it up with the result of
8090 the attempted unification, even if this class didn't work out.
8091 We also don't want to commit ourselves to all the unifications
8092 we've already done, since unification is supposed to be done on
8093 an argument-by-argument basis. In other words, consider the
8094 following pathological case:
8095
8096 template <int I, int J, int K>
8097 struct S {};
8098
8099 template <int I, int J>
8100 struct S<I, J, 2> : public S<I, I, I>, S<J, J, J> {};
8101
8102 template <int I, int J, int K>
8103 void f(S<I, J, K>, S<I, I, I>);
8104
8105 void g() {
8106 S<0, 0, 0> s0;
8107 S<0, 1, 2> s2;
8108
8109 f(s0, s2);
8110 }
8111
8112 Now, by the time we consider the unification involving `s2', we
8113 already know that we must have `f<0, 0, 0>'. But, even though
8114 `S<0, 1, 2>' is derived from `S<0, 0, 0>', the code is not legal
8115 because there are two ways to unify base classes of S<0, 1, 2>
8116 with S<I, I, I>. If we kept the already deduced knowledge, we
8117 would reject the possibility I=1. */
f31c0a32 8118 copy_of_targs = make_tree_vec (TREE_VEC_LENGTH (targs));
4393e105
MM
8119 i = unify (tparms, copy_of_targs, CLASSTYPE_TI_ARGS (parm),
8120 CLASSTYPE_TI_ARGS (arg), UNIFY_ALLOW_NONE);
4393e105
MM
8121
8122 /* If unification failed, we're done. */
8123 if (i != 0)
8124 return NULL_TREE;
8125 else
8126 return arg;
8127}
8128
8129/* Subroutine of get_template_base. RVAL, if non-NULL, is a base we
8130 have alreay discovered to be satisfactory. ARG_BINFO is the binfo
8131 for the base class of ARG that we are currently examining. */
8132
8133static tree
8134get_template_base_recursive (tparms, targs, parm,
8135 arg_binfo, rval, flags)
8136 tree tparms;
8137 tree targs;
8138 tree arg_binfo;
fcfb9f96 8139 tree rval;
4393e105
MM
8140 tree parm;
8141 int flags;
fcfb9f96
MM
8142{
8143 tree binfos;
8144 int i, n_baselinks;
4393e105 8145 tree arg = BINFO_TYPE (arg_binfo);
fcfb9f96 8146
4393e105 8147 if (!(flags & GTB_IGNORE_TYPE))
fcfb9f96 8148 {
4393e105
MM
8149 tree r = try_class_unification (tparms, targs,
8150 parm, arg);
fcfb9f96 8151
4393e105 8152 /* If there is more than one satisfactory baseclass, then:
fcfb9f96 8153
4393e105
MM
8154 [temp.deduct.call]
8155
8156 If they yield more than one possible deduced A, the type
8157 deduction fails.
8158
8159 applies. */
8160 if (r && rval && !same_type_p (r, rval))
8161 return error_mark_node;
8162 else if (r)
8163 rval = r;
fcfb9f96
MM
8164 }
8165
4393e105 8166 binfos = BINFO_BASETYPES (arg_binfo);
fcfb9f96
MM
8167 n_baselinks = binfos ? TREE_VEC_LENGTH (binfos) : 0;
8168
8169 /* Process base types. */
8170 for (i = 0; i < n_baselinks; i++)
8171 {
8172 tree base_binfo = TREE_VEC_ELT (binfos, i);
4393e105 8173 int this_virtual;
fcfb9f96 8174
4393e105
MM
8175 /* Skip this base, if we've already seen it. */
8176 if (BINFO_MARKED (base_binfo))
8177 continue;
8178
8179 this_virtual =
8180 (flags & GTB_VIA_VIRTUAL) || TREE_VIA_VIRTUAL (base_binfo);
8181
8182 /* When searching for a non-virtual, we cannot mark virtually
8183 found binfos. */
8184 if (! this_virtual)
8185 SET_BINFO_MARKED (base_binfo);
8186
8187 rval = get_template_base_recursive (tparms, targs,
8188 parm,
8189 base_binfo,
8190 rval,
8191 GTB_VIA_VIRTUAL * this_virtual);
8192
8193 /* If we discovered more than one matching base class, we can
8194 stop now. */
8195 if (rval == error_mark_node)
8196 return error_mark_node;
fcfb9f96
MM
8197 }
8198
8199 return rval;
8200}
8201
4393e105
MM
8202/* Given a template type PARM and a class type ARG, find the unique
8203 base type in ARG that is an instance of PARM. We do not examine
8204 ARG itself; only its base-classes. If there is no appropriate base
8205 class, return NULL_TREE. If there is more than one, return
8206 error_mark_node. PARM may be the type of a partial specialization,
8207 as well as a plain template type. Used by unify. */
fcfb9f96
MM
8208
8209static tree
4393e105 8210get_template_base (tparms, targs, parm, arg)
fcfb9f96
MM
8211 tree tparms;
8212 tree targs;
4393e105
MM
8213 tree parm;
8214 tree arg;
fcfb9f96 8215{
4393e105
MM
8216 tree rval;
8217 tree arg_binfo;
fcfb9f96 8218
4393e105
MM
8219 my_friendly_assert (IS_AGGR_TYPE_CODE (TREE_CODE (arg)), 92);
8220
8221 arg_binfo = TYPE_BINFO (complete_type (arg));
8222 rval = get_template_base_recursive (tparms, targs,
8223 parm, arg_binfo,
8224 NULL_TREE,
8225 GTB_IGNORE_TYPE);
fcfb9f96 8226
4393e105
MM
8227 /* Since get_template_base_recursive marks the bases classes, we
8228 must unmark them here. */
d6479fe7 8229 dfs_walk (arg_binfo, dfs_unmark, markedp, 0);
fcfb9f96
MM
8230
8231 return rval;
8232}
8233
db2767b6
MM
8234/* Returns the level of DECL, which declares a template parameter. */
8235
e9659ab0 8236static int
db2767b6
MM
8237template_decl_level (decl)
8238 tree decl;
8239{
8240 switch (TREE_CODE (decl))
8241 {
8242 case TYPE_DECL:
8243 case TEMPLATE_DECL:
8244 return TEMPLATE_TYPE_LEVEL (TREE_TYPE (decl));
8245
8246 case PARM_DECL:
8247 return TEMPLATE_PARM_LEVEL (DECL_INITIAL (decl));
8248
8249 default:
8250 my_friendly_abort (0);
5ffe581d 8251 return 0;
db2767b6
MM
8252 }
8253}
8254
830bfa74
MM
8255/* Decide whether ARG can be unified with PARM, considering only the
8256 cv-qualifiers of each type, given STRICT as documented for unify.
8257 Returns non-zero iff the unification is OK on that basis.*/
e92cc029 8258
e9659ab0 8259static int
830bfa74
MM
8260check_cv_quals_for_unify (strict, arg, parm)
8261 int strict;
8262 tree arg;
8263 tree parm;
8264{
ef637255
MM
8265 if (!(strict & UNIFY_ALLOW_MORE_CV_QUAL)
8266 && !at_least_as_qualified_p (arg, parm))
8267 return 0;
8268
8269 if (!(strict & UNIFY_ALLOW_LESS_CV_QUAL)
8270 && !at_least_as_qualified_p (parm, arg))
8271 return 0;
8272
ef637255 8273 return 1;
830bfa74
MM
8274}
8275
8276/* Takes parameters as for type_unification. Returns 0 if the
8277 type deduction suceeds, 1 otherwise. The parameter STRICT is a
8278 bitwise or of the following flags:
8279
8280 UNIFY_ALLOW_NONE:
8281 Require an exact match between PARM and ARG.
8282 UNIFY_ALLOW_MORE_CV_QUAL:
8283 Allow the deduced ARG to be more cv-qualified than ARG.
8284 UNIFY_ALLOW_LESS_CV_QUAL:
8285 Allow the deduced ARG to be less cv-qualified than ARG.
8286 UNIFY_ALLOW_DERIVED:
8287 Allow the deduced ARG to be a template base class of ARG,
8288 or a pointer to a template base class of the type pointed to by
161c12b0
JM
8289 ARG.
8290 UNIFY_ALLOW_INTEGER:
8291 Allow any integral type to be deduced. See the TEMPLATE_PARM_INDEX
8292 case for more information. */
830bfa74 8293
e9659ab0 8294static int
4393e105 8295unify (tparms, targs, parm, arg, strict)
050367a3 8296 tree tparms, targs, parm, arg;
830bfa74 8297 int strict;
8d08fdba
MS
8298{
8299 int idx;
050367a3 8300 tree targ;
db2767b6 8301 tree tparm;
8d08fdba
MS
8302
8303 /* I don't think this will do the right thing with respect to types.
8304 But the only case I've seen it in so far has been array bounds, where
8305 signedness is the only information lost, and I think that will be
8306 okay. */
8307 while (TREE_CODE (parm) == NOP_EXPR)
8308 parm = TREE_OPERAND (parm, 0);
8309
8310 if (arg == error_mark_node)
8311 return 1;
8312 if (arg == unknown_type_node)
34016c81
JM
8313 /* We can't deduce anything from this, but we might get all the
8314 template args from other function args. */
8315 return 0;
8316
db2767b6 8317 /* If PARM uses template parameters, then we can't bail out here,
6bdb985f 8318 even if ARG == PARM, since we won't record unifications for the
db2767b6
MM
8319 template parameters. We might need them if we're trying to
8320 figure out which of two things is more specialized. */
8321 if (arg == parm && !uses_template_parms (parm))
8d08fdba
MS
8322 return 0;
8323
830bfa74
MM
8324 /* Immediately reject some pairs that won't unify because of
8325 cv-qualification mismatches. */
8326 if (TREE_CODE (arg) == TREE_CODE (parm)
2f939d94 8327 && TYPE_P (arg)
830bfa74
MM
8328 /* We check the cv-qualifiers when unifying with template type
8329 parameters below. We want to allow ARG `const T' to unify with
8330 PARM `T' for example, when computing which of two templates
8331 is more specialized, for example. */
8332 && TREE_CODE (arg) != TEMPLATE_TYPE_PARM
8333 && !check_cv_quals_for_unify (strict, arg, parm))
49432171
JM
8334 return 1;
8335
8d08fdba
MS
8336 switch (TREE_CODE (parm))
8337 {
2ca340ae
JM
8338 case TYPENAME_TYPE:
8339 /* In a type which contains a nested-name-specifier, template
8340 argument values cannot be deduced for template parameters used
8341 within the nested-name-specifier. */
8342 return 0;
8343
8d08fdba 8344 case TEMPLATE_TYPE_PARM:
73b0fce8 8345 case TEMPLATE_TEMPLATE_PARM:
db2767b6
MM
8346 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
8347
8348 if (TEMPLATE_TYPE_LEVEL (parm)
8349 != template_decl_level (tparm))
8350 /* The PARM is not one we're trying to unify. Just check
8351 to see if it matches ARG. */
8352 return (TREE_CODE (arg) == TREE_CODE (parm)
3bfdc719 8353 && same_type_p (parm, arg)) ? 0 : 1;
73b0fce8 8354 idx = TEMPLATE_TYPE_IDX (parm);
050367a3 8355 targ = TREE_VEC_ELT (targs, idx);
db2767b6 8356 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, idx));
050367a3 8357
73b0fce8 8358 /* Check for mixed types and values. */
db2767b6
MM
8359 if ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
8360 && TREE_CODE (tparm) != TYPE_DECL)
8361 || (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
8362 && TREE_CODE (tparm) != TEMPLATE_DECL))
73b0fce8
KL
8363 return 1;
8364
db2767b6 8365 if (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
73b0fce8 8366 {
7ddedda4 8367 if (TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (parm))
db2767b6
MM
8368 {
8369 /* We arrive here when PARM does not involve template
8370 specialization. */
73b0fce8 8371
db2767b6
MM
8372 /* ARG must be constructed from a template class. */
8373 if (TREE_CODE (arg) != RECORD_TYPE || !CLASSTYPE_TEMPLATE_INFO (arg))
8374 return 1;
73b0fce8 8375
db2767b6 8376 {
7ddedda4
MM
8377 tree parmtmpl = TYPE_TI_TEMPLATE (parm);
8378 tree parmvec = TYPE_TI_ARGS (parm);
db2767b6
MM
8379 tree argvec = CLASSTYPE_TI_ARGS (arg);
8380 tree argtmplvec
8381 = DECL_INNERMOST_TEMPLATE_PARMS (CLASSTYPE_TI_TEMPLATE (arg));
8382 int i;
8383
8384 /* The parameter and argument roles have to be switched here
8385 in order to handle default arguments properly. For example,
8386 template<template <class> class TT> void f(TT<int>)
8387 should be able to accept vector<int> which comes from
744fac59 8388 template <class T, class Allocator = allocator>
73b0fce8
KL
8389 class vector. */
8390
fcfcdfc8 8391 if (coerce_template_parms (argtmplvec, parmvec, parmtmpl, 0, 1)
db2767b6
MM
8392 == error_mark_node)
8393 return 1;
73b0fce8 8394
6b9b6b15
JM
8395 /* Deduce arguments T, i from TT<T> or TT<i>.
8396 We check each element of PARMVEC and ARGVEC individually
8397 rather than the whole TREE_VEC since they can have
8398 different number of elements. */
8399
db2767b6
MM
8400 for (i = 0; i < TREE_VEC_LENGTH (parmvec); ++i)
8401 {
8402 tree t = TREE_VEC_ELT (parmvec, i);
73b0fce8 8403
830bfa74
MM
8404 if (unify (tparms, targs, t,
8405 TREE_VEC_ELT (argvec, i),
4393e105 8406 UNIFY_ALLOW_NONE))
db2767b6
MM
8407 return 1;
8408 }
73b0fce8 8409 }
db2767b6
MM
8410 arg = CLASSTYPE_TI_TEMPLATE (arg);
8411 }
8412 }
8413 else
8414 {
830bfa74
MM
8415 /* If PARM is `const T' and ARG is only `int', we don't have
8416 a match unless we are allowing additional qualification.
8417 If ARG is `const int' and PARM is just `T' that's OK;
8418 that binds `const int' to `T'. */
8419 if (!check_cv_quals_for_unify (strict | UNIFY_ALLOW_LESS_CV_QUAL,
8420 arg, parm))
db2767b6
MM
8421 return 1;
8422
830bfa74
MM
8423 /* Consider the case where ARG is `const volatile int' and
8424 PARM is `const T'. Then, T should be `volatile int'. */
8425 arg =
adecb3f4
MM
8426 cp_build_qualified_type_real (arg,
8427 CP_TYPE_QUALS (arg)
8428 & ~CP_TYPE_QUALS (parm),
8429 /*complain=*/0);
8430 if (arg == error_mark_node)
8431 return 1;
73b0fce8
KL
8432 }
8433
8434 /* Simple cases: Value already set, does match or doesn't. */
4393e105 8435 if (targ != NULL_TREE && same_type_p (targ, arg))
73b0fce8 8436 return 0;
050367a3 8437 else if (targ)
73b0fce8 8438 return 1;
61cd552e
MM
8439
8440 /* Make sure that ARG is not a variable-sized array. (Note that
8441 were talking about variable-sized arrays (like `int[n]'),
8442 rather than arrays of unknown size (like `int[]').) We'll
8443 get very confused by such a type since the bound of the array
8444 will not be computable in an instantiation. Besides, such
8445 types are not allowed in ISO C++, so we can do as we please
8446 here. */
8447 if (TREE_CODE (arg) == ARRAY_TYPE
8448 && !uses_template_parms (arg)
8449 && (TREE_CODE (TYPE_MAX_VALUE (TYPE_DOMAIN (arg)))
8450 != INTEGER_CST))
8451 return 1;
8452
050367a3 8453 TREE_VEC_ELT (targs, idx) = arg;
73b0fce8
KL
8454 return 0;
8455
f84b4be9 8456 case TEMPLATE_PARM_INDEX:
db2767b6
MM
8457 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
8458
8459 if (TEMPLATE_PARM_LEVEL (parm)
8460 != template_decl_level (tparm))
8461 /* The PARM is not one we're trying to unify. Just check
8462 to see if it matches ARG. */
8463 return (TREE_CODE (arg) == TREE_CODE (parm)
67ffc812 8464 && cp_tree_equal (parm, arg) > 0) ? 0 : 1;
db2767b6 8465
f84b4be9 8466 idx = TEMPLATE_PARM_IDX (parm);
050367a3 8467 targ = TREE_VEC_ELT (targs, idx);
db2767b6 8468
050367a3 8469 if (targ)
8d08fdba 8470 {
67ffc812 8471 int i = (cp_tree_equal (targ, arg) > 0);
312e7d50
JM
8472 if (i == 1)
8473 return 0;
8474 else if (i == 0)
8475 return 1;
8476 else
8477 my_friendly_abort (42);
8d08fdba 8478 }
8d08fdba 8479
161c12b0
JM
8480 /* [temp.deduct.type] If, in the declaration of a function template
8481 with a non-type template-parameter, the non-type
8482 template-parameter is used in an expression in the function
8483 parameter-list and, if the corresponding template-argument is
8484 deduced, the template-argument type shall match the type of the
8485 template-parameter exactly, except that a template-argument
8486 deduced from an array bound may be of any integral type. */
8487 if (same_type_p (TREE_TYPE (arg), TREE_TYPE (parm)))
8488 /* OK */;
8489 else if ((strict & UNIFY_ALLOW_INTEGER)
8490 && (TREE_CODE (TREE_TYPE (parm)) == INTEGER_TYPE
8491 || TREE_CODE (TREE_TYPE (parm)) == BOOLEAN_TYPE))
8492 /* OK */;
8493 else
8494 return 1;
8495
2a1e9fdd 8496 TREE_VEC_ELT (targs, idx) = arg;
8d08fdba
MS
8497 return 0;
8498
8499 case POINTER_TYPE:
830bfa74
MM
8500 {
8501 int sub_strict;
4ac14744 8502
830bfa74
MM
8503 if (TREE_CODE (arg) != POINTER_TYPE)
8504 return 1;
8505
8506 /* [temp.deduct.call]
8507
8508 A can be another pointer or pointer to member type that can
8509 be converted to the deduced A via a qualification
8510 conversion (_conv.qual_).
8511
8512 We pass down STRICT here rather than UNIFY_ALLOW_NONE.
8513 This will allow for additional cv-qualification of the
8514 pointed-to types if appropriate. In general, this is a bit
8515 too generous; we are only supposed to allow qualification
8516 conversions and this method will allow an ARG of char** and
8517 a deduced ARG of const char**. However, overload
8518 resolution will subsequently invalidate the candidate, so
8519 this is probably OK. */
8520 sub_strict = strict;
8521
a7a64a77 8522 if (TREE_CODE (TREE_TYPE (arg)) != RECORD_TYPE)
830bfa74
MM
8523 /* The derived-to-base conversion only persists through one
8524 level of pointers. */
8525 sub_strict &= ~UNIFY_ALLOW_DERIVED;
8526
a7a64a77
MM
8527 return unify (tparms, targs, TREE_TYPE (parm),
8528 TREE_TYPE (arg), sub_strict);
830bfa74 8529 }
8d08fdba
MS
8530
8531 case REFERENCE_TYPE:
830bfa74
MM
8532 if (TREE_CODE (arg) != REFERENCE_TYPE)
8533 return 1;
8534 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
4393e105 8535 UNIFY_ALLOW_NONE);
8d08fdba
MS
8536
8537 case ARRAY_TYPE:
8538 if (TREE_CODE (arg) != ARRAY_TYPE)
8539 return 1;
3042d5be
MM
8540 if ((TYPE_DOMAIN (parm) == NULL_TREE)
8541 != (TYPE_DOMAIN (arg) == NULL_TREE))
8542 return 1;
8543 if (TYPE_DOMAIN (parm) != NULL_TREE
830bfa74 8544 && unify (tparms, targs, TYPE_DOMAIN (parm),
4393e105 8545 TYPE_DOMAIN (arg), UNIFY_ALLOW_NONE) != 0)
8d08fdba 8546 return 1;
830bfa74 8547 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
4393e105 8548 UNIFY_ALLOW_NONE);
8d08fdba
MS
8549
8550 case REAL_TYPE:
37c46b43 8551 case COMPLEX_TYPE:
8d08fdba 8552 case INTEGER_TYPE:
42976354 8553 case BOOLEAN_TYPE:
5ad5a526 8554 case VOID_TYPE:
f376e137
MS
8555 if (TREE_CODE (arg) != TREE_CODE (parm))
8556 return 1;
8557
514a1f18
JM
8558 if (TREE_CODE (parm) == INTEGER_TYPE
8559 && TREE_CODE (TYPE_MAX_VALUE (parm)) != INTEGER_CST)
8d08fdba
MS
8560 {
8561 if (TYPE_MIN_VALUE (parm) && TYPE_MIN_VALUE (arg)
830bfa74 8562 && unify (tparms, targs, TYPE_MIN_VALUE (parm),
4393e105 8563 TYPE_MIN_VALUE (arg), UNIFY_ALLOW_INTEGER))
8d08fdba
MS
8564 return 1;
8565 if (TYPE_MAX_VALUE (parm) && TYPE_MAX_VALUE (arg)
830bfa74 8566 && unify (tparms, targs, TYPE_MAX_VALUE (parm),
4393e105 8567 TYPE_MAX_VALUE (arg), UNIFY_ALLOW_INTEGER))
8d08fdba
MS
8568 return 1;
8569 }
9edc3913 8570 /* We have already checked cv-qualification at the top of the
514a1f18 8571 function. */
9edc3913 8572 else if (!same_type_ignoring_top_level_qualifiers_p (arg, parm))
ca79f85d
JM
8573 return 1;
8574
8d08fdba
MS
8575 /* As far as unification is concerned, this wins. Later checks
8576 will invalidate it if necessary. */
8577 return 0;
8578
8579 /* Types INTEGER_CST and MINUS_EXPR can come from array bounds. */
bd6dd845 8580 /* Type INTEGER_CST can come from ordinary constant template args. */
8d08fdba 8581 case INTEGER_CST:
bd6dd845
MS
8582 while (TREE_CODE (arg) == NOP_EXPR)
8583 arg = TREE_OPERAND (arg, 0);
8584
8d08fdba
MS
8585 if (TREE_CODE (arg) != INTEGER_CST)
8586 return 1;
8587 return !tree_int_cst_equal (parm, arg);
8588
8d08fdba
MS
8589 case TREE_VEC:
8590 {
8591 int i;
8592 if (TREE_CODE (arg) != TREE_VEC)
8593 return 1;
8594 if (TREE_VEC_LENGTH (parm) != TREE_VEC_LENGTH (arg))
8595 return 1;
0dc09a61 8596 for (i = 0; i < TREE_VEC_LENGTH (parm); ++i)
830bfa74 8597 if (unify (tparms, targs,
8d08fdba 8598 TREE_VEC_ELT (parm, i), TREE_VEC_ELT (arg, i),
4393e105 8599 UNIFY_ALLOW_NONE))
8d08fdba
MS
8600 return 1;
8601 return 0;
8602 }
8603
8d08fdba 8604 case RECORD_TYPE:
f181d4ae 8605 case UNION_TYPE:
f181d4ae 8606 if (TREE_CODE (arg) != TREE_CODE (parm))
a4443a08 8607 return 1;
830bfa74 8608
a7a64a77
MM
8609 if (TYPE_PTRMEMFUNC_P (parm))
8610 {
8611 if (!TYPE_PTRMEMFUNC_P (arg))
8612 return 1;
8613
8614 return unify (tparms, targs,
8615 TYPE_PTRMEMFUNC_FN_TYPE (parm),
8616 TYPE_PTRMEMFUNC_FN_TYPE (arg),
8617 strict);
8618 }
8619
5db698f6 8620 if (CLASSTYPE_TEMPLATE_INFO (parm))
5566b478 8621 {
6467930b 8622 tree t = NULL_TREE;
4393e105 8623
830bfa74 8624 if (strict & UNIFY_ALLOW_DERIVED)
4393e105
MM
8625 {
8626 /* First, we try to unify the PARM and ARG directly. */
8627 t = try_class_unification (tparms, targs,
8628 parm, arg);
8629
8630 if (!t)
8631 {
8632 /* Fallback to the special case allowed in
8633 [temp.deduct.call]:
8634
8635 If P is a class, and P has the form
8636 template-id, then A can be a derived class of
8637 the deduced A. Likewise, if P is a pointer to
8638 a class of the form template-id, A can be a
8639 pointer to a derived class pointed to by the
8640 deduced A. */
8641 t = get_template_base (tparms, targs,
8642 parm, arg);
8643
8644 if (! t || t == error_mark_node)
8645 return 1;
8646 }
8647 }
6df47b06 8648 else if (CLASSTYPE_TEMPLATE_INFO (arg)
9fbf56f7
MM
8649 && (CLASSTYPE_TI_TEMPLATE (parm)
8650 == CLASSTYPE_TI_TEMPLATE (arg)))
6df47b06
MM
8651 /* Perhaps PARM is something like S<U> and ARG is S<int>.
8652 Then, we should unify `int' and `U'. */
6467930b 8653 t = arg;
4393e105
MM
8654 else
8655 /* There's no chance of unication succeeding. */
5566b478 8656 return 1;
6467930b 8657
830bfa74 8658 return unify (tparms, targs, CLASSTYPE_TI_ARGS (parm),
4393e105 8659 CLASSTYPE_TI_ARGS (t), UNIFY_ALLOW_NONE);
5566b478 8660 }
9edc3913 8661 else if (!same_type_ignoring_top_level_qualifiers_p (parm, arg))
5566b478 8662 return 1;
a4443a08 8663 return 0;
8d08fdba
MS
8664
8665 case METHOD_TYPE:
8d08fdba 8666 case FUNCTION_TYPE:
830bfa74 8667 if (TREE_CODE (arg) != TREE_CODE (parm))
8d08fdba 8668 return 1;
830bfa74
MM
8669
8670 if (unify (tparms, targs, TREE_TYPE (parm),
4393e105 8671 TREE_TYPE (arg), UNIFY_ALLOW_NONE))
28cbf42c 8672 return 1;
386b8a85 8673 return type_unification_real (tparms, targs, TYPE_ARG_TYPES (parm),
3b3ba9f0 8674 TYPE_ARG_TYPES (arg), 1,
4393e105 8675 DEDUCE_EXACT, 0);
a4443a08
MS
8676
8677 case OFFSET_TYPE:
8678 if (TREE_CODE (arg) != OFFSET_TYPE)
8679 return 1;
830bfa74 8680 if (unify (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
4393e105 8681 TYPE_OFFSET_BASETYPE (arg), UNIFY_ALLOW_NONE))
a4443a08 8682 return 1;
830bfa74 8683 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
4393e105 8684 strict);
a4443a08 8685
f62dbf03 8686 case CONST_DECL:
830bfa74 8687 if (arg != decl_constant_value (parm))
f62dbf03
JM
8688 return 1;
8689 return 0;
8690
027905b4
KL
8691 case TEMPLATE_DECL:
8692 /* Matched cases are handled by the ARG == PARM test above. */
8693 return 1;
8694
53929c47
JM
8695 case MINUS_EXPR:
8696 if (TREE_CODE (TREE_OPERAND (parm, 1)) == INTEGER_CST)
8697 {
8698 /* We handle this case specially, since it comes up with
8699 arrays. In particular, something like:
8700
8701 template <int N> void f(int (&x)[N]);
8702
8703 Here, we are trying to unify the range type, which
8704 looks like [0 ... (N - 1)]. */
8705 tree t, t1, t2;
8706 t1 = TREE_OPERAND (parm, 0);
8707 t2 = TREE_OPERAND (parm, 1);
8708
24e2e58e 8709 t = fold (build (PLUS_EXPR, integer_type_node, arg, t2));
53929c47 8710
4393e105 8711 return unify (tparms, targs, t1, t, strict);
53929c47
JM
8712 }
8713 /* else fall through */
8714
8d08fdba 8715 default:
050367a3 8716 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (TREE_CODE (parm))))
4393e105
MM
8717 /* We're looking at an expression. This can happen with
8718 something like:
8719
8720 template <int I>
8721 void foo(S<I>, S<I + 2>);
050367a3 8722
4393e105 8723 This is a "nondeduced context":
050367a3 8724
4393e105
MM
8725 [deduct.type]
8726
8727 The nondeduced contexts are:
050367a3 8728
4393e105
MM
8729 --A type that is a template-id in which one or more of
8730 the template-arguments is an expression that references
8731 a template-parameter.
050367a3 8732
4393e105
MM
8733 In these cases, we assume deduction succeeded, but don't
8734 actually infer any unifications. */
8735 return 0;
050367a3 8736 else
b4c4a9ec
MM
8737 sorry ("use of `%s' in template type unification",
8738 tree_code_name [(int) TREE_CODE (parm)]);
050367a3 8739
8d08fdba
MS
8740 return 1;
8741 }
8742}
8d08fdba 8743\f
03d0f4af
MM
8744/* Called if RESULT is explicitly instantiated, or is a member of an
8745 explicitly instantiated class, or if using -frepo and the
8746 instantiation of RESULT has been assigned to this file. */
8747
faae18ab 8748void
5566b478 8749mark_decl_instantiated (result, extern_p)
faae18ab
MS
8750 tree result;
8751 int extern_p;
8752{
75650646
MM
8753 if (TREE_CODE (result) != FUNCTION_DECL)
8754 /* The TREE_PUBLIC flag for function declarations will have been
8755 set correctly by tsubst. */
8756 TREE_PUBLIC (result) = 1;
faae18ab 8757
3ae18eaf
JM
8758 /* We used to set this unconditionally; we moved that to
8759 do_decl_instantiation so it wouldn't get set on members of
8760 explicit class template instantiations. But we still need to set
8761 it here for the 'extern template' case in order to suppress
8762 implicit instantiations. */
8763 if (extern_p)
8764 SET_DECL_EXPLICIT_INSTANTIATION (result);
8765
faae18ab
MS
8766 if (! extern_p)
8767 {
8768 DECL_INTERFACE_KNOWN (result) = 1;
8769 DECL_NOT_REALLY_EXTERN (result) = 1;
a7d87521 8770
1a408d07
JM
8771 /* Always make artificials weak. */
8772 if (DECL_ARTIFICIAL (result) && flag_weak)
8773 comdat_linkage (result);
a7d87521
JM
8774 /* For WIN32 we also want to put explicit instantiations in
8775 linkonce sections. */
1a408d07 8776 else if (TREE_PUBLIC (result))
b385c841 8777 maybe_make_one_only (result);
faae18ab 8778 }
f49422da 8779 else if (TREE_CODE (result) == FUNCTION_DECL)
56e770bf 8780 defer_fn (result);
faae18ab
MS
8781}
8782
e1467ff2
MM
8783/* Given two function templates PAT1 and PAT2, and explicit template
8784 arguments EXPLICIT_ARGS return:
6467930b
MS
8785
8786 1 if PAT1 is more specialized than PAT2 as described in [temp.func.order].
8787 -1 if PAT2 is more specialized than PAT1.
8788 0 if neither is more specialized. */
8789
8790int
e1467ff2
MM
8791more_specialized (pat1, pat2, explicit_args)
8792 tree pat1, pat2, explicit_args;
6467930b 8793{
98c1c668 8794 tree targs;
73aad9b9 8795 int winner = 0;
6467930b 8796
17aec3eb
RK
8797 targs
8798 = get_bindings_overload (pat1, DECL_TEMPLATE_RESULT (pat2), explicit_args);
73aad9b9 8799 if (targs)
36a117a5 8800 --winner;
6467930b 8801
17aec3eb
RK
8802 targs
8803 = get_bindings_overload (pat2, DECL_TEMPLATE_RESULT (pat1), explicit_args);
73aad9b9 8804 if (targs)
36a117a5 8805 ++winner;
6467930b 8806
73aad9b9
JM
8807 return winner;
8808}
6467930b 8809
73aad9b9 8810/* Given two class template specialization list nodes PAT1 and PAT2, return:
6467930b 8811
73aad9b9
JM
8812 1 if PAT1 is more specialized than PAT2 as described in [temp.class.order].
8813 -1 if PAT2 is more specialized than PAT1.
8814 0 if neither is more specialized. */
8815
8816int
8817more_specialized_class (pat1, pat2)
8818 tree pat1, pat2;
8819{
8820 tree targs;
8821 int winner = 0;
8822
36a117a5
MM
8823 targs = get_class_bindings (TREE_VALUE (pat1), TREE_PURPOSE (pat1),
8824 TREE_PURPOSE (pat2));
73aad9b9
JM
8825 if (targs)
8826 --winner;
8827
36a117a5
MM
8828 targs = get_class_bindings (TREE_VALUE (pat2), TREE_PURPOSE (pat2),
8829 TREE_PURPOSE (pat1));
73aad9b9 8830 if (targs)
6467930b
MS
8831 ++winner;
8832
8833 return winner;
8834}
73aad9b9
JM
8835
8836/* Return the template arguments that will produce the function signature
e1467ff2 8837 DECL from the function template FN, with the explicit template
76b9a14d 8838 arguments EXPLICIT_ARGS. If CHECK_RETTYPE is 1, the return type must
4393e105
MM
8839 also match. Return NULL_TREE if no satisfactory arguments could be
8840 found. */
73aad9b9 8841
76b9a14d
JM
8842static tree
8843get_bindings_real (fn, decl, explicit_args, check_rettype)
e1467ff2 8844 tree fn, decl, explicit_args;
76b9a14d 8845 int check_rettype;
73aad9b9 8846{
98c1c668 8847 int ntparms = DECL_NTPARMS (fn);
f31c0a32 8848 tree targs = make_tree_vec (ntparms);
4393e105 8849 tree decl_type;
03017874 8850 tree decl_arg_types;
98c1c668
JM
8851 int i;
8852
4393e105
MM
8853 /* Substitute the explicit template arguments into the type of DECL.
8854 The call to fn_type_unification will handle substitution into the
8855 FN. */
8856 decl_type = TREE_TYPE (decl);
8857 if (explicit_args && uses_template_parms (decl_type))
8858 {
8859 tree tmpl;
8860 tree converted_args;
8861
8862 if (DECL_TEMPLATE_INFO (decl))
8863 tmpl = DECL_TI_TEMPLATE (decl);
8864 else
8865 /* We can get here for some illegal specializations. */
8866 return NULL_TREE;
8867
8868 converted_args
8869 = (coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
8870 explicit_args, NULL_TREE,
8871 /*complain=*/0,
8872 /*require_all_arguments=*/0));
8873 if (converted_args == error_mark_node)
8874 return NULL_TREE;
8875
8876 decl_type = tsubst (decl_type, converted_args, /*complain=*/0,
8877 NULL_TREE);
8878 if (decl_type == error_mark_node)
8879 return NULL_TREE;
8880 }
8881
03017874
MM
8882 /* If FN is a static member function, adjust the type of DECL
8883 appropriately. */
4393e105 8884 decl_arg_types = TYPE_ARG_TYPES (decl_type);
d7684f2d
MM
8885 if (DECL_STATIC_FUNCTION_P (fn)
8886 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
03017874 8887 decl_arg_types = TREE_CHAIN (decl_arg_types);
d7684f2d 8888
e1467ff2 8889 i = fn_type_unification (fn, explicit_args, targs,
03017874 8890 decl_arg_types,
8d3631f8
NS
8891 (check_rettype || DECL_CONV_FN_P (fn)
8892 ? TREE_TYPE (decl_type) : NULL_TREE),
03017874 8893 DEDUCE_EXACT);
98c1c668 8894
76b9a14d
JM
8895 if (i != 0)
8896 return NULL_TREE;
8897
76b9a14d
JM
8898 return targs;
8899}
8900
8901/* For most uses, we want to check the return type. */
8902
8903tree
8904get_bindings (fn, decl, explicit_args)
8905 tree fn, decl, explicit_args;
8906{
8907 return get_bindings_real (fn, decl, explicit_args, 1);
8908}
8909
8910/* But for more_specialized, we only care about the parameter types. */
8911
8912static tree
8913get_bindings_overload (fn, decl, explicit_args)
8914 tree fn, decl, explicit_args;
8915{
8916 return get_bindings_real (fn, decl, explicit_args, 0);
73aad9b9
JM
8917}
8918
36a117a5
MM
8919/* Return the innermost template arguments that, when applied to a
8920 template specialization whose innermost template parameters are
8921 TPARMS, and whose specialization arguments are ARGS, yield the
8922 ARGS.
8923
8924 For example, suppose we have:
8925
8926 template <class T, class U> struct S {};
8927 template <class T> struct S<T*, int> {};
8928
8929 Then, suppose we want to get `S<double*, int>'. The TPARMS will be
8930 {T}, the PARMS will be {T*, int} and the ARGS will be {double*,
8931 int}. The resulting vector will be {double}, indicating that `T'
8932 is bound to `double'. */
8933
bd6dd845 8934static tree
36a117a5
MM
8935get_class_bindings (tparms, parms, args)
8936 tree tparms, parms, args;
73aad9b9 8937{
3b3ba9f0 8938 int i, ntparms = TREE_VEC_LENGTH (tparms);
f31c0a32 8939 tree vec = make_tree_vec (ntparms);
73aad9b9 8940
f9a7ae04 8941 args = INNERMOST_TEMPLATE_ARGS (args);
8d019cef 8942
4393e105 8943 if (unify (tparms, vec, parms, args, UNIFY_ALLOW_NONE))
fcfb9f96 8944 return NULL_TREE;
73aad9b9
JM
8945
8946 for (i = 0; i < ntparms; ++i)
8947 if (! TREE_VEC_ELT (vec, i))
8948 return NULL_TREE;
8949
8950 return vec;
8951}
8952
104bf76a
MM
8953/* In INSTANTIATIONS is a list of <INSTANTIATION, TEMPLATE> pairs.
8954 Pick the most specialized template, and return the corresponding
8955 instantiation, or if there is no corresponding instantiation, the
8956 template itself. EXPLICIT_ARGS is any template arguments explicity
8957 mentioned in a template-id. If there is no most specialized
5186142b 8958 template, error_mark_node is returned. If there are no templates
104bf76a 8959 at all, NULL_TREE is returned. */
73aad9b9
JM
8960
8961tree
104bf76a
MM
8962most_specialized_instantiation (instantiations, explicit_args)
8963 tree instantiations;
8964 tree explicit_args;
73aad9b9 8965{
104bf76a 8966 tree fn, champ;
73aad9b9
JM
8967 int fate;
8968
104bf76a 8969 if (!instantiations)
73aad9b9
JM
8970 return NULL_TREE;
8971
104bf76a
MM
8972 champ = instantiations;
8973 for (fn = TREE_CHAIN (instantiations); fn; fn = TREE_CHAIN (fn))
73aad9b9 8974 {
104bf76a
MM
8975 fate = more_specialized (TREE_VALUE (champ),
8976 TREE_VALUE (fn), explicit_args);
73aad9b9
JM
8977 if (fate == 1)
8978 ;
8979 else
8980 {
8981 if (fate == 0)
8982 {
8983 fn = TREE_CHAIN (fn);
8984 if (! fn)
8985 return error_mark_node;
8986 }
104bf76a 8987 champ = fn;
73aad9b9
JM
8988 }
8989 }
8990
104bf76a 8991 for (fn = instantiations; fn && fn != champ; fn = TREE_CHAIN (fn))
73aad9b9 8992 {
104bf76a
MM
8993 fate = more_specialized (TREE_VALUE (champ),
8994 TREE_VALUE (fn), explicit_args);
73aad9b9
JM
8995 if (fate != 1)
8996 return error_mark_node;
8997 }
8998
104bf76a
MM
8999 return TREE_PURPOSE (champ) ? TREE_PURPOSE (champ) : TREE_VALUE (champ);
9000}
9001
9002/* Return the most specialized of the list of templates in FNS that can
9003 produce an instantiation matching DECL, given the explicit template
9004 arguments EXPLICIT_ARGS. */
9005
e9659ab0 9006static tree
104bf76a
MM
9007most_specialized (fns, decl, explicit_args)
9008 tree fns, decl, explicit_args;
9009{
9010 tree candidates = NULL_TREE;
9011 tree fn, args;
9012
9013 for (fn = fns; fn; fn = TREE_CHAIN (fn))
9014 {
9015 tree candidate = TREE_VALUE (fn);
9016
9017 args = get_bindings (candidate, decl, explicit_args);
9018 if (args)
e1b3e07d 9019 candidates = tree_cons (NULL_TREE, candidate, candidates);
104bf76a
MM
9020 }
9021
9022 return most_specialized_instantiation (candidates, explicit_args);
73aad9b9
JM
9023}
9024
36a117a5 9025/* If DECL is a specialization of some template, return the most
f9a7ae04
MM
9026 general such template. Otherwise, returns NULL_TREE.
9027
9028 For example, given:
36a117a5
MM
9029
9030 template <class T> struct S { template <class U> void f(U); };
9031
9032 if TMPL is `template <class U> void S<int>::f(U)' this will return
9033 the full template. This function will not trace past partial
9034 specializations, however. For example, given in addition:
9035
9036 template <class T> struct S<T*> { template <class U> void f(U); };
9037
9038 if TMPL is `template <class U> void S<int*>::f(U)' this will return
9039 `template <class T> template <class U> S<T*>::f(U)'. */
73aad9b9 9040
612c671a 9041tree
36a117a5
MM
9042most_general_template (decl)
9043 tree decl;
73aad9b9 9044{
f9a7ae04
MM
9045 /* If DECL is a FUNCTION_DECL, find the TEMPLATE_DECL of which it is
9046 an immediate specialization. */
9047 if (TREE_CODE (decl) == FUNCTION_DECL)
9048 {
9049 if (DECL_TEMPLATE_INFO (decl)) {
9050 decl = DECL_TI_TEMPLATE (decl);
9051
9052 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE for a
9053 template friend. */
9054 if (TREE_CODE (decl) != TEMPLATE_DECL)
9055 return NULL_TREE;
9056 } else
9057 return NULL_TREE;
9058 }
9059
9060 /* Look for more and more general templates. */
9061 while (DECL_TEMPLATE_INFO (decl))
9062 {
9063 /* The DECL_TI_TEMPLATE can be a LOOKUP_EXPR or IDENTIFIER_NODE
9064 in some cases. (See cp-tree.h for details.) */
9065 if (TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
9066 break;
9067
9068 /* Stop if we run into an explicitly specialized class template. */
9069 if (!DECL_NAMESPACE_SCOPE_P (decl)
9070 && DECL_CONTEXT (decl)
9071 && CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (decl)))
9072 break;
9073
9074 decl = DECL_TI_TEMPLATE (decl);
9075 }
36a117a5
MM
9076
9077 return decl;
9078}
9079
9080/* Return the most specialized of the class template specializations
9081 of TMPL which can produce an instantiation matching ARGS, or
9082 error_mark_node if the choice is ambiguous. */
9083
e9659ab0 9084static tree
36a117a5
MM
9085most_specialized_class (tmpl, args)
9086 tree tmpl;
9087 tree args;
9088{
9089 tree list = NULL_TREE;
9090 tree t;
9091 tree champ;
73aad9b9
JM
9092 int fate;
9093
36a117a5
MM
9094 tmpl = most_general_template (tmpl);
9095 for (t = DECL_TEMPLATE_SPECIALIZATIONS (tmpl); t; t = TREE_CHAIN (t))
73aad9b9 9096 {
36a117a5
MM
9097 tree spec_args
9098 = get_class_bindings (TREE_VALUE (t), TREE_PURPOSE (t), args);
9099 if (spec_args)
73aad9b9
JM
9100 {
9101 list = decl_tree_cons (TREE_PURPOSE (t), TREE_VALUE (t), list);
9102 TREE_TYPE (list) = TREE_TYPE (t);
9103 }
9104 }
9105
9106 if (! list)
9107 return NULL_TREE;
9108
9109 t = list;
9110 champ = t;
9111 t = TREE_CHAIN (t);
9112 for (; t; t = TREE_CHAIN (t))
9113 {
9114 fate = more_specialized_class (champ, t);
9115 if (fate == 1)
9116 ;
9117 else
9118 {
9119 if (fate == 0)
9120 {
9121 t = TREE_CHAIN (t);
9122 if (! t)
9123 return error_mark_node;
9124 }
9125 champ = t;
9126 }
9127 }
9128
9129 for (t = list; t && t != champ; t = TREE_CHAIN (t))
9130 {
85b71cf2 9131 fate = more_specialized_class (champ, t);
73aad9b9
JM
9132 if (fate != 1)
9133 return error_mark_node;
9134 }
9135
9136 return champ;
9137}
9138
8d08fdba 9139/* called from the parser. */
e92cc029 9140
8d08fdba 9141void
6633d636 9142do_decl_instantiation (declspecs, declarator, storage)
f0e01782 9143 tree declspecs, declarator, storage;
8d08fdba 9144{
c11b6f21 9145 tree decl = grokdeclarator (declarator, declspecs, NORMAL, 0, NULL_TREE);
8d08fdba 9146 tree result = NULL_TREE;
faae18ab 9147 int extern_p = 0;
e8abc66f 9148
3fa56191
MM
9149 if (!decl)
9150 /* An error ocurred, for which grokdeclarator has already issued
9151 an appropriate message. */
9152 return;
9153 else if (! DECL_LANG_SPECIFIC (decl))
ec255269 9154 {
8251199e 9155 cp_error ("explicit instantiation of non-template `%#D'", decl);
ec255269
MS
9156 return;
9157 }
03d0f4af 9158 else if (TREE_CODE (decl) == VAR_DECL)
6633d636 9159 {
03d0f4af
MM
9160 /* There is an asymmetry here in the way VAR_DECLs and
9161 FUNCTION_DECLs are handled by grokdeclarator. In the case of
9162 the latter, the DECL we get back will be marked as a
9163 template instantiation, and the appropriate
9164 DECL_TEMPLATE_INFO will be set up. This does not happen for
9165 VAR_DECLs so we do the lookup here. Probably, grokdeclarator
9166 should handle VAR_DECLs as it currently handles
9167 FUNCTION_DECLs. */
6633d636
MS
9168 result = lookup_field (DECL_CONTEXT (decl), DECL_NAME (decl), 0, 0);
9169 if (result && TREE_CODE (result) != VAR_DECL)
03d0f4af 9170 {
8251199e 9171 cp_error ("no matching template for `%D' found", result);
03d0f4af
MM
9172 return;
9173 }
6633d636
MS
9174 }
9175 else if (TREE_CODE (decl) != FUNCTION_DECL)
9176 {
8251199e 9177 cp_error ("explicit instantiation of `%#D'", decl);
6633d636
MS
9178 return;
9179 }
03d0f4af
MM
9180 else
9181 result = decl;
672476cb 9182
03d0f4af
MM
9183 /* Check for various error cases. Note that if the explicit
9184 instantiation is legal the RESULT will currently be marked as an
9185 *implicit* instantiation; DECL_EXPLICIT_INSTANTIATION is not set
9186 until we get here. */
9187
9188 if (DECL_TEMPLATE_SPECIALIZATION (result))
672476cb 9189 {
03d0f4af
MM
9190 /* [temp.spec]
9191
9192 No program shall both explicitly instantiate and explicitly
9193 specialize a template. */
6f1b4c42
JM
9194 cp_pedwarn ("explicit instantiation of `%#D' after", result);
9195 cp_pedwarn_at ("explicit specialization here", result);
672476cb
MM
9196 return;
9197 }
03d0f4af
MM
9198 else if (DECL_EXPLICIT_INSTANTIATION (result))
9199 {
9200 /* [temp.spec]
98c1c668 9201
03d0f4af
MM
9202 No program shall explicitly instantiate any template more
9203 than once.
9204
2aaf816d
JM
9205 We check DECL_INTERFACE_KNOWN so as not to complain when the first
9206 instantiation was `extern' and the second is not, and EXTERN_P for
9207 the opposite case. If -frepo, chances are we already got marked
9208 as an explicit instantion because of the repo file. */
9209 if (DECL_INTERFACE_KNOWN (result) && !extern_p && !flag_use_repository)
6f1b4c42 9210 cp_pedwarn ("duplicate explicit instantiation of `%#D'", result);
03d0f4af
MM
9211
9212 /* If we've already instantiated the template, just return now. */
9213 if (DECL_INTERFACE_KNOWN (result))
9214 return;
9215 }
9216 else if (!DECL_IMPLICIT_INSTANTIATION (result))
faae18ab 9217 {
8251199e 9218 cp_error ("no matching template for `%D' found", result);
faae18ab
MS
9219 return;
9220 }
03d0f4af 9221 else if (!DECL_TEMPLATE_INFO (result))
6633d636 9222 {
8251199e 9223 cp_pedwarn ("explicit instantiation of non-template `%#D'", result);
6633d636
MS
9224 return;
9225 }
9226
a0a33927
MS
9227 if (flag_external_templates)
9228 return;
9229
f0e01782 9230 if (storage == NULL_TREE)
00595019 9231 ;
faae18ab 9232 else if (storage == ridpointers[(int) RID_EXTERN])
03d0f4af
MM
9233 {
9234 if (pedantic)
cab1f180 9235 cp_pedwarn ("ISO C++ forbids the use of `extern' on explicit instantiations");
03d0f4af
MM
9236 extern_p = 1;
9237 }
f0e01782 9238 else
8251199e 9239 cp_error ("storage class `%D' applied to template instantiation",
f0e01782 9240 storage);
5566b478 9241
03d0f4af 9242 SET_DECL_EXPLICIT_INSTANTIATION (result);
5566b478 9243 mark_decl_instantiated (result, extern_p);
44a8d0b3 9244 repo_template_instantiated (result, extern_p);
c91a56d2 9245 if (! extern_p)
16d53b64 9246 instantiate_decl (result, /*defer_ok=*/1);
7177d104
MS
9247}
9248
faae18ab
MS
9249void
9250mark_class_instantiated (t, extern_p)
9251 tree t;
9252 int extern_p;
9253{
9254 SET_CLASSTYPE_EXPLICIT_INSTANTIATION (t);
eb773359
JM
9255 SET_CLASSTYPE_INTERFACE_KNOWN (t);
9256 CLASSTYPE_INTERFACE_ONLY (t) = extern_p;
faae18ab
MS
9257 CLASSTYPE_VTABLE_NEEDS_WRITING (t) = ! extern_p;
9258 TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (t)) = extern_p;
9259 if (! extern_p)
9260 {
9261 CLASSTYPE_DEBUG_REQUESTED (t) = 1;
9262 rest_of_type_compilation (t, 1);
9263 }
9264}
e8abc66f 9265
7177d104 9266void
ca79f85d
JM
9267do_type_instantiation (t, storage)
9268 tree t, storage;
7177d104 9269{
e8abc66f
MS
9270 int extern_p = 0;
9271 int nomem_p = 0;
5566b478
MS
9272 int static_p = 0;
9273
ca79f85d
JM
9274 if (TREE_CODE (t) == TYPE_DECL)
9275 t = TREE_TYPE (t);
9276
7ddedda4 9277 if (! CLASS_TYPE_P (t) || ! CLASSTYPE_TEMPLATE_INFO (t))
ca79f85d 9278 {
8251199e 9279 cp_error ("explicit instantiation of non-template type `%T'", t);
ca79f85d
JM
9280 return;
9281 }
9282
5566b478 9283 complete_type (t);
7177d104 9284
a292b002
MS
9285 /* With -fexternal-templates, explicit instantiations are treated the same
9286 as implicit ones. */
a0a33927
MS
9287 if (flag_external_templates)
9288 return;
9289
d0f062fb 9290 if (!COMPLETE_TYPE_P (t))
f0e01782 9291 {
8251199e 9292 cp_error ("explicit instantiation of `%#T' before definition of template",
f0e01782
MS
9293 t);
9294 return;
9295 }
9296
03d0f4af 9297 if (storage != NULL_TREE)
f0e01782 9298 {
03d0f4af 9299 if (pedantic)
cab1f180 9300 cp_pedwarn("ISO C++ forbids the use of `%s' on explicit instantiations",
8251199e 9301 IDENTIFIER_POINTER (storage));
03d0f4af
MM
9302
9303 if (storage == ridpointers[(int) RID_INLINE])
9304 nomem_p = 1;
9305 else if (storage == ridpointers[(int) RID_EXTERN])
9306 extern_p = 1;
9307 else if (storage == ridpointers[(int) RID_STATIC])
9308 static_p = 1;
9309 else
9310 {
8251199e 9311 cp_error ("storage class `%D' applied to template instantiation",
03d0f4af
MM
9312 storage);
9313 extern_p = 0;
9314 }
f0e01782
MS
9315 }
9316
370af2d5 9317 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (t))
03d0f4af
MM
9318 {
9319 /* [temp.spec]
a292b002 9320
03d0f4af
MM
9321 No program shall both explicitly instantiate and explicitly
9322 specialize a template. */
8251199e
JM
9323 cp_error ("explicit instantiation of `%#T' after", t);
9324 cp_error_at ("explicit specialization here", t);
03d0f4af
MM
9325 return;
9326 }
9327 else if (CLASSTYPE_EXPLICIT_INSTANTIATION (t))
44a8d0b3 9328 {
03d0f4af
MM
9329 /* [temp.spec]
9330
9331 No program shall explicitly instantiate any template more
9332 than once.
9333
2aaf816d
JM
9334 If CLASSTYPE_INTERFACE_ONLY, then the first explicit instantiation
9335 was `extern'. If EXTERN_P then the second is. If -frepo, chances
9336 are we already got marked as an explicit instantion because of the
9337 repo file. All these cases are OK. */
9338 if (!CLASSTYPE_INTERFACE_ONLY (t) && !extern_p && !flag_use_repository)
9339 cp_pedwarn ("duplicate explicit instantiation of `%#T'", t);
03d0f4af
MM
9340
9341 /* If we've already instantiated the template, just return now. */
9342 if (!CLASSTYPE_INTERFACE_ONLY (t))
9343 return;
44a8d0b3 9344 }
e8abc66f 9345
03d0f4af
MM
9346 mark_class_instantiated (t, extern_p);
9347 repo_template_instantiated (t, extern_p);
9348
e8abc66f
MS
9349 if (nomem_p)
9350 return;
9351
7177d104 9352 {
db5ae43f 9353 tree tmp;
5566b478 9354
03d0f4af
MM
9355 /* In contrast to implicit instantiation, where only the
9356 declarations, and not the definitions, of members are
9357 instantiated, we have here:
9358
9359 [temp.explicit]
9360
9361 The explicit instantiation of a class template specialization
9362 implies the instantiation of all of its members not
9363 previously explicitly specialized in the translation unit
9364 containing the explicit instantiation.
9365
9366 Of course, we can't instantiate member template classes, since
9367 we don't have any arguments for them. Note that the standard
9368 is unclear on whether the instatiation of the members are
9369 *explicit* instantiations or not. We choose to be generous,
9370 and not set DECL_EXPLICIT_INSTANTIATION. Therefore, we allow
9371 the explicit instantiation of a class where some of the members
9372 have no definition in the current translation unit. */
9373
5566b478
MS
9374 if (! static_p)
9375 for (tmp = TYPE_METHODS (t); tmp; tmp = TREE_CHAIN (tmp))
a7d87521 9376 if (TREE_CODE (tmp) == FUNCTION_DECL
1f109f0f 9377 && DECL_TEMPLATE_INSTANTIATION (tmp))
5566b478
MS
9378 {
9379 mark_decl_instantiated (tmp, extern_p);
9380 repo_template_instantiated (tmp, extern_p);
9381 if (! extern_p)
16d53b64 9382 instantiate_decl (tmp, /*defer_ok=*/1);
5566b478
MS
9383 }
9384
9385 for (tmp = TYPE_FIELDS (t); tmp; tmp = TREE_CHAIN (tmp))
9386 if (TREE_CODE (tmp) == VAR_DECL && DECL_TEMPLATE_INSTANTIATION (tmp))
863adfc0 9387 {
5566b478 9388 mark_decl_instantiated (tmp, extern_p);
863adfc0 9389 repo_template_instantiated (tmp, extern_p);
5566b478 9390 if (! extern_p)
16d53b64 9391 instantiate_decl (tmp, /*defer_ok=*/1);
863adfc0 9392 }
7177d104 9393
a292b002 9394 for (tmp = CLASSTYPE_TAGS (t); tmp; tmp = TREE_CHAIN (tmp))
e4a84209
MM
9395 if (IS_AGGR_TYPE (TREE_VALUE (tmp))
9396 && !uses_template_parms (CLASSTYPE_TI_ARGS (TREE_VALUE (tmp))))
f376e137 9397 do_type_instantiation (TYPE_MAIN_DECL (TREE_VALUE (tmp)), storage);
a292b002 9398 }
8d08fdba 9399}
a28e3c7f 9400
36a117a5
MM
9401/* Given a function DECL, which is a specialization of TMPL, modify
9402 DECL to be a re-instantiation of TMPL with the same template
9403 arguments. TMPL should be the template into which tsubst'ing
9404 should occur for DECL, not the most general template.
830bfa74
MM
9405
9406 One reason for doing this is a scenario like this:
9407
9408 template <class T>
9409 void f(const T&, int i);
9410
9411 void g() { f(3, 7); }
9412
9413 template <class T>
9414 void f(const T& t, const int i) { }
9415
9416 Note that when the template is first instantiated, with
9417 instantiate_template, the resulting DECL will have no name for the
9418 first parameter, and the wrong type for the second. So, when we go
9419 to instantiate the DECL, we regenerate it. */
9420
e9659ab0 9421static void
830bfa74
MM
9422regenerate_decl_from_template (decl, tmpl)
9423 tree decl;
9424 tree tmpl;
9425{
f9a7ae04
MM
9426 /* The most general version of TMPL. */
9427 tree gen_tmpl;
9428 /* The arguments used to instantiate DECL, from the most general
9429 template. */
830bfa74 9430 tree args;
830bfa74
MM
9431 tree code_pattern;
9432 tree new_decl;
36a117a5 9433 int unregistered;
830bfa74
MM
9434
9435 args = DECL_TI_ARGS (decl);
9436 code_pattern = DECL_TEMPLATE_RESULT (tmpl);
9437
8251199e
JM
9438 /* Unregister the specialization so that when we tsubst we will not
9439 just return DECL. We don't have to unregister DECL from TMPL
9440 because if would only be registered there if it were a partial
9441 instantiation of a specialization, which it isn't: it's a full
9442 instantiation. */
36a117a5
MM
9443 gen_tmpl = most_general_template (tmpl);
9444 unregistered = unregister_specialization (decl, gen_tmpl);
9445
9446 /* If the DECL was not unregistered then something peculiar is
9447 happening: we created a specialization but did not call
9448 register_specialization for it. */
9449 my_friendly_assert (unregistered, 0);
9450
61a127b3
MM
9451 if (TREE_CODE (decl) == VAR_DECL)
9452 /* Make sure that we can see identifiers, and compute access
9453 correctly, for the class members used in the declaration of
9454 this static variable. */
9455 pushclass (DECL_CONTEXT (decl), 2);
9456
d8c4447d 9457 /* Do the substitution to get the new declaration. */
4393e105 9458 new_decl = tsubst (code_pattern, args, /*complain=*/1, NULL_TREE);
830bfa74
MM
9459
9460 if (TREE_CODE (decl) == VAR_DECL)
9461 {
9462 /* Set up DECL_INITIAL, since tsubst doesn't. */
830bfa74 9463 DECL_INITIAL (new_decl) =
d8c4447d 9464 tsubst_expr (DECL_INITIAL (code_pattern), args,
4393e105 9465 /*complain=*/1, DECL_TI_TEMPLATE (decl));
61a127b3 9466 /* Pop the class context we pushed above. */
b74a0560 9467 popclass ();
830bfa74 9468 }
2b0a63a3 9469 else if (TREE_CODE (decl) == FUNCTION_DECL)
fbf1c34b
MM
9470 {
9471 /* Convince duplicate_decls to use the DECL_ARGUMENTS from the
9472 new decl. */
9473 DECL_INITIAL (new_decl) = error_mark_node;
9474 /* And don't complain about a duplicate definition. */
9475 DECL_INITIAL (decl) = NULL_TREE;
9476 }
36a117a5
MM
9477
9478 /* The immediate parent of the new template is still whatever it was
9479 before, even though tsubst sets DECL_TI_TEMPLATE up as the most
9480 general template. We also reset the DECL_ASSEMBLER_NAME since
9481 tsubst always calculates the name as if the function in question
9482 were really a template instance, and sometimes, with friend
9483 functions, this is not so. See tsubst_friend_function for
9484 details. */
9485 DECL_TI_TEMPLATE (new_decl) = DECL_TI_TEMPLATE (decl);
9486 DECL_ASSEMBLER_NAME (new_decl) = DECL_ASSEMBLER_NAME (decl);
9487 DECL_RTL (new_decl) = DECL_RTL (decl);
459c43ad 9488 DECL_USE_TEMPLATE (new_decl) = DECL_USE_TEMPLATE (decl);
36a117a5
MM
9489
9490 /* Call duplicate decls to merge the old and new declarations. */
830bfa74
MM
9491 duplicate_decls (new_decl, decl);
9492
36a117a5
MM
9493 /* Now, re-register the specialization. */
9494 register_specialization (decl, gen_tmpl, args);
830bfa74
MM
9495}
9496
16d53b64
MM
9497/* Produce the definition of D, a _DECL generated from a template. If
9498 DEFER_OK is non-zero, then we don't have to actually do the
9499 instantiation now; we just have to do it sometime. */
f84b4be9 9500
a28e3c7f 9501tree
16d53b64 9502instantiate_decl (d, defer_ok)
5566b478 9503 tree d;
16d53b64 9504 int defer_ok;
a28e3c7f 9505{
36a117a5
MM
9506 tree tmpl = DECL_TI_TEMPLATE (d);
9507 tree args = DECL_TI_ARGS (d);
830bfa74 9508 tree td;
36a117a5
MM
9509 tree code_pattern;
9510 tree spec;
9511 tree gen_tmpl;
5566b478 9512 int pattern_defined;
c27be9b9 9513 int line = lineno;
3b304f5b 9514 const char *file = input_filename;
5566b478 9515
36a117a5
MM
9516 /* This function should only be used to instantiate templates for
9517 functions and static member variables. */
9518 my_friendly_assert (TREE_CODE (d) == FUNCTION_DECL
9519 || TREE_CODE (d) == VAR_DECL, 0);
9520
db9b2174
MM
9521 /* Don't instantiate cloned functions. Instead, instantiate the
9522 functions they cloned. */
9523 if (TREE_CODE (d) == FUNCTION_DECL && DECL_CLONED_FUNCTION_P (d))
9524 d = DECL_CLONED_FUNCTION (d);
9525
fbf1c34b 9526 if (DECL_TEMPLATE_INSTANTIATED (d))
03d0f4af
MM
9527 /* D has already been instantiated. It might seem reasonable to
9528 check whether or not D is an explict instantiation, and, if so,
9529 stop here. But when an explicit instantiation is deferred
9530 until the end of the compilation, DECL_EXPLICIT_INSTANTIATION
9531 is set, even though we still need to do the instantiation. */
36a117a5
MM
9532 return d;
9533
9534 /* If we already have a specialization of this declaration, then
9535 there's no reason to instantiate it. Note that
9536 retrieve_specialization gives us both instantiations and
9537 specializations, so we must explicitly check
9538 DECL_TEMPLATE_SPECIALIZATION. */
9539 gen_tmpl = most_general_template (tmpl);
9540 spec = retrieve_specialization (gen_tmpl, args);
9541 if (spec != NULL_TREE && DECL_TEMPLATE_SPECIALIZATION (spec))
9542 return spec;
9543
9544 /* This needs to happen before any tsubsting. */
9545 if (! push_tinst_level (d))
9546 return d;
9547
297a5329
JM
9548 timevar_push (TV_PARSE);
9549
4d85e00e
MM
9550 /* Set TD to the template whose DECL_TEMPLATE_RESULT is the pattern
9551 for the instantiation. This is not always the most general
9552 template. Consider, for example:
9553
9554 template <class T>
9555 struct S { template <class U> void f();
9556 template <> void f<int>(); };
9557
9558 and an instantiation of S<double>::f<int>. We want TD to be the
9559 specialization S<T>::f<int>, not the more general S<T>::f<U>. */
9560 td = tmpl;
f9a7ae04
MM
9561 while (/* An instantiation cannot have a definition, so we need a
9562 more general template. */
9563 DECL_TEMPLATE_INSTANTIATION (td)
9564 /* We must also deal with friend templates. Given:
9565
9566 template <class T> struct S {
9567 template <class U> friend void f() {};
9568 };
9569
9570 S<int>::f<U> say, is not an instantiation of S<T>::f<U>,
9571 so far as the language is concerned, but that's still
9572 where we get the pattern for the instantiation from. On
9573 ther hand, if the definition comes outside the class, say:
9574
9575 template <class T> struct S {
9576 template <class U> friend void f();
9577 };
9578 template <class U> friend void f() {}
9579
9580 we don't need to look any further. That's what the check for
9581 DECL_INITIAL is for. */
9582 || (TREE_CODE (d) == FUNCTION_DECL
9583 && DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (td)
9584 && !DECL_INITIAL (DECL_TEMPLATE_RESULT (td))))
4d85e00e
MM
9585 {
9586 /* The present template, TD, should not be a definition. If it
9587 were a definition, we should be using it! Note that we
9588 cannot restructure the loop to just keep going until we find
9589 a template with a definition, since that might go too far if
9590 a specialization was declared, but not defined. */
4d85e00e
MM
9591 my_friendly_assert (!(TREE_CODE (d) == VAR_DECL
9592 && !DECL_IN_AGGR_P (DECL_TEMPLATE_RESULT (td))),
9593 0);
9594
9595 /* Fetch the more general template. */
9596 td = DECL_TI_TEMPLATE (td);
9597 }
27bb8339 9598
fee23f54 9599 code_pattern = DECL_TEMPLATE_RESULT (td);
27bb8339 9600
5566b478 9601 if (TREE_CODE (d) == FUNCTION_DECL)
39c76b4f 9602 pattern_defined = (DECL_SAVED_TREE (code_pattern) != NULL_TREE);
5566b478 9603 else
36a117a5 9604 pattern_defined = ! DECL_IN_AGGR_P (code_pattern);
de22184b
MS
9605
9606 push_to_top_level ();
9607 lineno = DECL_SOURCE_LINE (d);
9608 input_filename = DECL_SOURCE_FILE (d);
9609
de22184b 9610 if (pattern_defined)
5566b478
MS
9611 {
9612 repo_template_used (d);
9613
9614 if (flag_external_templates && ! DECL_INTERFACE_KNOWN (d))
9615 {
9616 if (flag_alt_external_templates)
9617 {
9618 if (interface_unknown)
9619 warn_if_unknown_interface (d);
9620 }
fee23f54 9621 else if (DECL_INTERFACE_KNOWN (code_pattern))
5566b478
MS
9622 {
9623 DECL_INTERFACE_KNOWN (d) = 1;
fee23f54 9624 DECL_NOT_REALLY_EXTERN (d) = ! DECL_EXTERNAL (code_pattern);
5566b478
MS
9625 }
9626 else
fee23f54 9627 warn_if_unknown_interface (code_pattern);
5566b478
MS
9628 }
9629
e92cc029 9630 if (at_eof)
5566b478
MS
9631 import_export_decl (d);
9632 }
9633
c4ae3f91
JM
9634 /* Reject all external templates except inline functions. */
9635 if (DECL_INTERFACE_KNOWN (d)
9636 && ! DECL_NOT_REALLY_EXTERN (d)
9637 && ! (TREE_CODE (d) == FUNCTION_DECL && DECL_INLINE (d)))
9638 goto out;
9639
16d53b64
MM
9640 /* We need to set up DECL_INITIAL regardless of pattern_defined if
9641 the variable is a static const initialized in the class body. */
67ffc812 9642 if (TREE_CODE (d) == VAR_DECL
711734a9 9643 && TREE_READONLY (d)
67ffc812
MM
9644 && DECL_INITIAL (d) == NULL_TREE
9645 && DECL_INITIAL (code_pattern) != NULL_TREE)
16d53b64
MM
9646 ;
9647 /* Defer all other templates, unless we have been explicitly
9648 forbidden from doing so. We restore the source position here
9649 because it's used by add_pending_template. */
9650 else if (! pattern_defined || defer_ok)
9651 {
c27be9b9
JM
9652 lineno = line;
9653 input_filename = file;
9654
03d0f4af
MM
9655 if (at_eof && !pattern_defined
9656 && DECL_EXPLICIT_INSTANTIATION (d))
9657 /* [temp.explicit]
9658
9659 The definition of a non-exported function template, a
9660 non-exported member function template, or a non-exported
9661 member function or static data member of a class template
9662 shall be present in every translation unit in which it is
9663 explicitly instantiated. */
8251199e 9664 cp_error ("explicit instantiation of `%D' but no definition available",
03d0f4af
MM
9665 d);
9666
5566b478 9667 add_pending_template (d);
de22184b 9668 goto out;
5566b478
MS
9669 }
9670
2b0a63a3
MM
9671 /* We're now committed to instantiating this template. Mark it as
9672 instantiated so that recursive calls to instantiate_decl do not
9673 try to instantiate it again. */
fbf1c34b 9674 DECL_TEMPLATE_INSTANTIATED (d) = 1;
120722ac 9675
2b0a63a3
MM
9676 /* Regenerate the declaration in case the template has been modified
9677 by a subsequent redeclaration. */
9678 regenerate_decl_from_template (d, td);
9679
120722ac
MM
9680 /* We already set the file and line above. Reset them now in case
9681 they changed as a result of calling regenerate_decl_from_template. */
5156628f
MS
9682 lineno = DECL_SOURCE_LINE (d);
9683 input_filename = DECL_SOURCE_FILE (d);
9684
5566b478
MS
9685 if (TREE_CODE (d) == VAR_DECL)
9686 {
9687 DECL_IN_AGGR_P (d) = 0;
9688 if (DECL_INTERFACE_KNOWN (d))
9689 DECL_EXTERNAL (d) = ! DECL_NOT_REALLY_EXTERN (d);
9690 else
9691 {
9692 DECL_EXTERNAL (d) = 1;
9693 DECL_NOT_REALLY_EXTERN (d) = 1;
9694 }
cd9f6678 9695 cp_finish_decl (d, DECL_INITIAL (d), NULL_TREE, 0);
5566b478
MS
9696 }
9697 else if (TREE_CODE (d) == FUNCTION_DECL)
9698 {
6bbf1598
MM
9699 htab_t saved_local_specializations;
9700
9701 /* Save away the current list, in case we are instantiating one
9702 template from within the body of another. */
9703 saved_local_specializations = local_specializations;
9704
6dfbb909 9705 /* Set up the list of local specializations. */
6dfbb909
MM
9706 local_specializations = htab_create (37,
9707 htab_hash_pointer,
9708 htab_eq_pointer,
9709 NULL);
9710
558475f0 9711 /* Set up context. */
a8f73d4b 9712 start_function (NULL_TREE, d, NULL_TREE, SF_PRE_PARSED);
5566b478
MS
9713 store_parm_decls ();
9714
f9817201
MM
9715 /* We already set up __FUNCTION__, etc., so we don't want to do
9716 it again now. */
f2c5f623 9717 cp_function_chain->name_declared = 1;
f9817201 9718
558475f0
MM
9719 /* Substitute into the body of the function. */
9720 tsubst_expr (DECL_SAVED_TREE (code_pattern), args,
9721 /*complain=*/1, tmpl);
9722
6dfbb909
MM
9723 /* We don't need the local specializations any more. */
9724 htab_delete (local_specializations);
6bbf1598 9725 local_specializations = saved_local_specializations;
6dfbb909 9726
4d6abc1c 9727 /* Finish the function. */
0acf7199 9728 expand_body (finish_function (0));
5566b478
MS
9729 }
9730
971cbc14
MM
9731 /* We're not deferring instantiation any more. */
9732 TI_PENDING_TEMPLATE_FLAG (DECL_TEMPLATE_INFO (d)) = 0;
9733
de22184b 9734out:
c27be9b9
JM
9735 lineno = line;
9736 input_filename = file;
9737
5566b478 9738 pop_from_top_level ();
5566b478 9739 pop_tinst_level ();
a28e3c7f 9740
297a5329
JM
9741 timevar_pop (TV_PARSE);
9742
a28e3c7f
MS
9743 return d;
9744}
5566b478 9745
0aafb128
MM
9746/* Run through the list of templates that we wish we could
9747 instantiate, and instantiate any we can. */
9748
9749int
9750instantiate_pending_templates ()
9751{
9752 tree *t;
9753 int instantiated_something = 0;
9754 int reconsider;
9755
9756 do
9757 {
9758 reconsider = 0;
9759
9760 t = &pending_templates;
9761 while (*t)
9762 {
0aafb128
MM
9763 tree instantiation = TREE_VALUE (*t);
9764
3ae18eaf 9765 reopen_tinst_level (TREE_PURPOSE (*t));
0aafb128 9766
2f939d94 9767 if (TYPE_P (instantiation))
0aafb128
MM
9768 {
9769 tree fn;
9770
d0f062fb 9771 if (!COMPLETE_TYPE_P (instantiation))
0aafb128
MM
9772 {
9773 instantiate_class_template (instantiation);
9774 if (CLASSTYPE_TEMPLATE_INSTANTIATION (instantiation))
9775 for (fn = TYPE_METHODS (instantiation);
9776 fn;
9777 fn = TREE_CHAIN (fn))
9778 if (! DECL_ARTIFICIAL (fn))
16d53b64 9779 instantiate_decl (fn, /*defer_ok=*/0);
d0f062fb 9780 if (COMPLETE_TYPE_P (instantiation))
0aafb128
MM
9781 {
9782 instantiated_something = 1;
9783 reconsider = 1;
9784 }
9785 }
9786
d0f062fb 9787 if (COMPLETE_TYPE_P (instantiation))
0aafb128
MM
9788 /* If INSTANTIATION has been instantiated, then we don't
9789 need to consider it again in the future. */
9790 *t = TREE_CHAIN (*t);
9791 else
9792 t = &TREE_CHAIN (*t);
9793 }
9794 else
9795 {
16d53b64 9796 if (!DECL_TEMPLATE_SPECIALIZATION (instantiation)
0aafb128
MM
9797 && !DECL_TEMPLATE_INSTANTIATED (instantiation))
9798 {
16d53b64
MM
9799 instantiation = instantiate_decl (instantiation,
9800 /*defer_ok=*/0);
0aafb128
MM
9801 if (DECL_TEMPLATE_INSTANTIATED (instantiation))
9802 {
9803 instantiated_something = 1;
9804 reconsider = 1;
9805 }
9806 }
9807
16d53b64 9808 if (DECL_TEMPLATE_SPECIALIZATION (instantiation)
0aafb128
MM
9809 || DECL_TEMPLATE_INSTANTIATED (instantiation))
9810 /* If INSTANTIATION has been instantiated, then we don't
9811 need to consider it again in the future. */
9812 *t = TREE_CHAIN (*t);
9813 else
9814 t = &TREE_CHAIN (*t);
9815 }
84e5ca0f
NS
9816 tinst_depth = 0;
9817 current_tinst_level = NULL_TREE;
0aafb128
MM
9818 }
9819 template_tail = t;
9820
9821 /* Go through the things that are template instantiations if we are
9822 using guiding declarations. */
9823 t = &maybe_templates;
9824 while (*t)
9825 {
9826 tree template;
9827 tree fn;
9828 tree args;
9829
9830 fn = TREE_VALUE (*t);
9831
9832 if (DECL_INITIAL (fn))
9833 /* If the FN is already defined, then it was either already
9834 instantiated or, even though guiding declarations were
9835 allowed, a non-template definition was provided. */
9836 ;
9837 else
9838 {
9839 template = TREE_PURPOSE (*t);
9840 args = get_bindings (template, fn, NULL_TREE);
9841 fn = instantiate_template (template, args);
16d53b64 9842 instantiate_decl (fn, /*defer_ok=*/0);
0aafb128
MM
9843 reconsider = 1;
9844 }
9845
9846 /* Remove this entry from the chain. */
9847 *t = TREE_CHAIN (*t);
9848 }
9849 maybe_template_tail = t;
9850 }
9851 while (reconsider);
9852
9853 return instantiated_something;
9854}
9855
fd74ca0b
MM
9856/* Substitute ARGVEC into T, which is a list of initializers for
9857 either base class or a non-static data member. The TREE_PURPOSEs
9858 are DECLs, and the TREE_VALUEs are the initializer values. Used by
9859 instantiate_decl. */
4393e105 9860
824b9a4c 9861static tree
fd74ca0b 9862tsubst_initializer_list (t, argvec)
5566b478
MS
9863 tree t, argvec;
9864{
9865 tree first = NULL_TREE;
9866 tree *p = &first;
9867
9868 for (; t; t = TREE_CHAIN (t))
9869 {
fd74ca0b
MM
9870 tree decl;
9871 tree init;
9872 tree val;
9873
9874 decl = tsubst_copy (TREE_PURPOSE (t), argvec, /*complain=*/1,
9875 NULL_TREE);
9876 init = tsubst_expr (TREE_VALUE (t), argvec, /*complain=*/1,
9877 NULL_TREE);
9878
9879 if (!init)
9880 ;
9881 else if (TREE_CODE (init) == TREE_LIST)
9882 for (val = init; val; val = TREE_CHAIN (val))
9883 TREE_VALUE (val) = convert_from_reference (TREE_VALUE (val));
9884 else
9885 init = convert_from_reference (init);
9886
9887 *p = build_tree_list (decl, init);
5566b478
MS
9888 p = &TREE_CHAIN (*p);
9889 }
9890 return first;
9891}
9892
73aad9b9
JM
9893/* D is an undefined function declaration in the presence of templates with
9894 the same name, listed in FNS. If one of them can produce D as an
9895 instantiation, remember this so we can instantiate it at EOF if D has
9896 not been defined by that time. */
9897
9898void
9899add_maybe_template (d, fns)
9900 tree d, fns;
9901{
9902 tree t;
9903
9904 if (DECL_MAYBE_TEMPLATE (d))
9905 return;
9906
e1467ff2 9907 t = most_specialized (fns, d, NULL_TREE);
73aad9b9
JM
9908 if (! t)
9909 return;
9910 if (t == error_mark_node)
9911 {
8251199e 9912 cp_error ("ambiguous template instantiation for `%D'", d);
73aad9b9
JM
9913 return;
9914 }
9915
e1b3e07d 9916 *maybe_template_tail = tree_cons (t, d, NULL_TREE);
73aad9b9
JM
9917 maybe_template_tail = &TREE_CHAIN (*maybe_template_tail);
9918 DECL_MAYBE_TEMPLATE (d) = 1;
9919}
b87692e5 9920
61a127b3
MM
9921/* Set CURRENT_ACCESS_SPECIFIER based on the protection of DECL. */
9922
9923static void
9924set_current_access_from_decl (decl)
9925 tree decl;
9926{
9927 if (TREE_PRIVATE (decl))
9928 current_access_specifier = access_private_node;
9929 else if (TREE_PROTECTED (decl))
9930 current_access_specifier = access_protected_node;
9931 else
9932 current_access_specifier = access_public_node;
9933}
9934
dbfe2124
MM
9935/* Instantiate an enumerated type. TAG is the template type, NEWTAG
9936 is the instantiation (which should have been created with
9937 start_enum) and ARGS are the template arguments to use. */
b87692e5 9938
dbfe2124
MM
9939static void
9940tsubst_enum (tag, newtag, args)
9941 tree tag;
9942 tree newtag;
9943 tree args;
b87692e5 9944{
dbfe2124 9945 tree e;
b87692e5
MS
9946
9947 for (e = TYPE_VALUES (tag); e; e = TREE_CHAIN (e))
9948 {
61a127b3 9949 tree value;
58595203 9950
61a127b3
MM
9951 /* Note that in a template enum, the TREE_VALUE is the
9952 CONST_DECL, not the corresponding INTEGER_CST. */
9953 value = tsubst_expr (DECL_INITIAL (TREE_VALUE (e)),
4393e105
MM
9954 args, /*complain=*/1,
9955 NULL_TREE);
61a127b3
MM
9956
9957 /* Give this enumeration constant the correct access. */
9958 set_current_access_from_decl (TREE_VALUE (e));
9959
9960 /* Actually build the enumerator itself. */
58595203 9961 build_enumerator (TREE_PURPOSE (e), value, newtag);
dbfe2124 9962 }
b3d5a58b 9963
dbfe2124 9964 finish_enum (newtag);
b87692e5 9965}
36a117a5 9966
1f6e1acc
AS
9967/* DECL is a FUNCTION_DECL that is a template specialization. Return
9968 its type -- but without substituting the innermost set of template
9969 arguments. So, innermost set of template parameters will appear in
9970 the type. If CONTEXTP is non-NULL, then the partially substituted
9971 DECL_CONTEXT (if any) will also be filled in. Similarly, TPARMSP
9972 will be filled in with the substituted template parameters, if it
9973 is non-NULL. */
9974
9975tree
9976get_mostly_instantiated_function_type (decl, contextp, tparmsp)
9977 tree decl;
9978 tree *contextp;
9979 tree *tparmsp;
9980{
9981 tree context = NULL_TREE;
9982 tree fn_type;
9983 tree tmpl;
9984 tree targs;
9985 tree tparms;
9986 int parm_depth;
9987
9988 tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
9989 targs = DECL_TI_ARGS (decl);
9990 tparms = DECL_TEMPLATE_PARMS (tmpl);
9991 parm_depth = TMPL_PARMS_DEPTH (tparms);
9992
9993 /* There should be as many levels of arguments as there are levels
9994 of parameters. */
9995 my_friendly_assert (parm_depth == TMPL_ARGS_DEPTH (targs), 0);
9996
9997 fn_type = TREE_TYPE (tmpl);
9998 if (DECL_STATIC_FUNCTION_P (decl))
9999 context = DECL_CONTEXT (decl);
10000
10001 if (parm_depth == 1)
10002 /* No substitution is necessary. */
10003 ;
10004 else
10005 {
10006 int i;
10007 tree partial_args;
10008
10009 /* Replace the innermost level of the TARGS with NULL_TREEs to
10010 let tsubst know not to subsitute for those parameters. */
10011 partial_args = make_tree_vec (TREE_VEC_LENGTH (targs));
10012 for (i = 1; i < TMPL_ARGS_DEPTH (targs); ++i)
10013 SET_TMPL_ARGS_LEVEL (partial_args, i,
10014 TMPL_ARGS_LEVEL (targs, i));
10015 SET_TMPL_ARGS_LEVEL (partial_args,
10016 TMPL_ARGS_DEPTH (targs),
10017 make_tree_vec (DECL_NTPARMS (tmpl)));
10018
10019 /* Now, do the (partial) substitution to figure out the
10020 appropriate function type. */
10021 fn_type = tsubst (fn_type, partial_args, /*complain=*/1, NULL_TREE);
10022 if (DECL_STATIC_FUNCTION_P (decl))
10023 context = tsubst (context, partial_args, /*complain=*/1, NULL_TREE);
10024
10025 /* Substitute into the template parameters to obtain the real
10026 innermost set of parameters. This step is important if the
10027 innermost set of template parameters contains value
10028 parameters whose types depend on outer template parameters. */
10029 TREE_VEC_LENGTH (partial_args)--;
10030 tparms = tsubst_template_parms (tparms, partial_args, /*complain=*/1);
10031 }
10032
10033 if (contextp)
10034 *contextp = context;
10035 if (tparmsp)
10036 *tparmsp = tparms;
10037
10038 return fn_type;
10039}
669ec2b4
JM
10040
10041/* Set the DECL_ASSEMBLER_NAME for DECL, which is a FUNCTION_DECL that
10042 is either an instantiation or specialization of a template
10043 function. */
10044
10045static void
10046set_mangled_name_for_template_decl (decl)
10047 tree decl;
10048{
10049 tree context = NULL_TREE;
10050 tree fn_type;
10051 tree ret_type;
10052 tree parm_types;
10053 tree tparms;
10054 tree targs;
10055
10056 my_friendly_assert (TREE_CODE (decl) == FUNCTION_DECL, 0);
10057 my_friendly_assert (DECL_TEMPLATE_INFO (decl) != NULL_TREE, 0);
10058
10059 /* Under the new ABI, we don't need special machinery. */
10060 if (flag_new_abi)
10061 {
10062 set_mangled_name_for_decl (decl);
10063 return;
10064 }
10065
10066 /* The names of template functions must be mangled so as to indicate
10067 what template is being specialized with what template arguments.
10068 For example, each of the following three functions must get
10069 different mangled names:
10070
10071 void f(int);
10072 template <> void f<7>(int);
10073 template <> void f<8>(int); */
10074
10075 targs = DECL_TI_ARGS (decl);
10076 if (uses_template_parms (targs))
10077 /* This DECL is for a partial instantiation. There's no need to
10078 mangle the name of such an entity. */
10079 return;
10080
10081 /* We now compute the PARMS and RET_TYPE to give to
10082 build_decl_overload_real. The PARMS and RET_TYPE are the
10083 parameter and return types of the template, after all but the
10084 innermost template arguments have been substituted, not the
10085 parameter and return types of the function DECL. For example,
10086 given:
10087
10088 template <class T> T f(T);
10089
10090 both PARMS and RET_TYPE should be `T' even if DECL is `int f(int)'.
10091 A more subtle example is:
10092
10093 template <class T> struct S { template <class U> void f(T, U); }
10094
10095 Here, if DECL is `void S<int>::f(int, double)', PARMS should be
10096 {int, U}. Thus, the args that we want to subsitute into the
10097 return and parameter type for the function are those in TARGS,
10098 with the innermost level omitted. */
10099 fn_type = get_mostly_instantiated_function_type (decl, &context, &tparms);
10100
10101 /* Now, get the innermost parameters and arguments, and figure out
10102 the parameter and return types. */
10103 tparms = INNERMOST_TEMPLATE_PARMS (tparms);
10104 targs = INNERMOST_TEMPLATE_ARGS (targs);
10105 ret_type = TREE_TYPE (fn_type);
10106 parm_types = TYPE_ARG_TYPES (fn_type);
10107
10108 /* For a static member function, we generate a fake `this' pointer,
10109 for the purposes of mangling. This indicates of which class the
10110 function is a member. Because of:
10111
10112 [class.static]
10113
10114 There shall not be a static and a nonstatic member function
10115 with the same name and the same parameter types
10116
10117 we don't have to worry that this will result in a clash with a
10118 non-static member function. */
10119 if (DECL_STATIC_FUNCTION_P (decl))
10120 parm_types = hash_tree_chain (build_pointer_type (context), parm_types);
10121
10122 /* There should be the same number of template parameters as
10123 template arguments. */
10124 my_friendly_assert (TREE_VEC_LENGTH (tparms) == TREE_VEC_LENGTH (targs),
10125 0);
10126
10127 /* Actually set the DECL_ASSEMBLER_NAME. */
10128 DECL_ASSEMBLER_NAME (decl)
10129 = build_decl_overload_real (decl, parm_types, ret_type,
10130 tparms, targs,
10131 DECL_FUNCTION_MEMBER_P (decl)
10132 + DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (decl));
10133}