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