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