]> gcc.gnu.org Git - gcc.git/blame - gcc/cp/pt.c
jni.cc (_Jv_JNI_NewObjectV): Corrected assertion.
[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. */
158991b7 48typedef int (*tree_fn_t) PARAMS ((tree, void*));
050367a3 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
158991b7 90static int resolve_overloaded_unification PARAMS ((tree, tree, tree, tree,
4393e105 91 unification_kind_t, int));
158991b7 92static int try_one_overload PARAMS ((tree, tree, tree, tree, tree,
4393e105 93 unification_kind_t, int));
158991b7
KG
94static int unify PARAMS ((tree, tree, tree, tree, int));
95static void add_pending_template PARAMS ((tree));
96static int push_tinst_level PARAMS ((tree));
97static tree classtype_mangled_name PARAMS ((tree));
98static char *mangle_class_name_for_template PARAMS ((char *, tree, tree));
99static tree tsubst_expr_values PARAMS ((tree, tree));
100static int list_eq PARAMS ((tree, tree));
101static tree get_class_bindings PARAMS ((tree, tree, tree));
102static tree coerce_template_parms PARAMS ((tree, tree, tree, int, int));
103static void tsubst_enum PARAMS ((tree, tree, tree));
104static tree add_to_template_args PARAMS ((tree, tree));
105static tree add_outermost_template_args PARAMS ((tree, tree));
106static void maybe_adjust_types_for_deduction PARAMS ((unification_kind_t, tree*,
830bfa74 107 tree*));
158991b7 108static int type_unification_real PARAMS ((tree, tree, tree, tree,
4393e105 109 int, unification_kind_t, int));
158991b7
KG
110static void note_template_header PARAMS ((int));
111static tree maybe_fold_nontype_arg PARAMS ((tree));
112static tree convert_nontype_argument PARAMS ((tree, tree));
113static tree convert_template_argument PARAMS ((tree, tree, tree, int,
8b5b8b7c 114 int , tree));
158991b7
KG
115static tree get_bindings_overload PARAMS ((tree, tree, tree));
116static int for_each_template_parm PARAMS ((tree, tree_fn_t, void*));
117static tree build_template_parm_index PARAMS ((int, int, int, tree, tree));
118static int inline_needs_template_parms PARAMS ((tree));
119static void push_inline_template_parms_recursive PARAMS ((tree, int));
120static tree retrieve_specialization PARAMS ((tree, tree));
121static tree retrieve_local_specialization PARAMS ((tree, tree));
122static tree register_specialization PARAMS ((tree, tree, tree));
123static tree register_local_specialization PARAMS ((tree, tree, tree));
124static int unregister_specialization PARAMS ((tree, tree));
125static tree reduce_template_parm_level PARAMS ((tree, tree, int));
126static tree build_template_decl PARAMS ((tree, tree));
127static int mark_template_parm PARAMS ((tree, void *));
128static tree tsubst_friend_function PARAMS ((tree, tree));
129static tree tsubst_friend_class PARAMS ((tree, tree));
130static tree get_bindings_real PARAMS ((tree, tree, tree, int));
131static int template_decl_level PARAMS ((tree));
132static tree maybe_get_template_decl_from_type_decl PARAMS ((tree));
133static int check_cv_quals_for_unify PARAMS ((int, tree, tree));
134static tree tsubst_template_arg_vector PARAMS ((tree, tree, int));
135static tree tsubst_template_parms PARAMS ((tree, tree, int));
136static void regenerate_decl_from_template PARAMS ((tree, tree));
137static tree most_specialized PARAMS ((tree, tree, tree));
138static tree most_specialized_class PARAMS ((tree, tree));
139static void set_mangled_name_for_template_decl PARAMS ((tree));
140static int template_class_depth_real PARAMS ((tree, int));
141static tree tsubst_aggr_type PARAMS ((tree, tree, int, tree, int));
142static tree tsubst_decl PARAMS ((tree, tree, tree, tree));
143static tree tsubst_arg_types PARAMS ((tree, tree, int, tree));
144static tree tsubst_function_type PARAMS ((tree, tree, int, tree));
145static void check_specialization_scope PARAMS ((void));
146static tree process_partial_specialization PARAMS ((tree));
147static void set_current_access_from_decl PARAMS ((tree));
148static void check_default_tmpl_args PARAMS ((tree, tree, int, int));
149static tree tsubst_call_declarator_parms PARAMS ((tree, tree, int, tree));
150static tree get_template_base_recursive PARAMS ((tree, tree,
4393e105 151 tree, tree, tree, int));
158991b7
KG
152static tree get_template_base PARAMS ((tree, tree, tree, tree));
153static tree try_class_unification PARAMS ((tree, tree, tree, tree));
154static int coerce_template_template_parms PARAMS ((tree, tree, int,
4393e105 155 tree, tree));
158991b7
KG
156static tree determine_specialization PARAMS ((tree, tree, tree *, int));
157static int template_args_equal PARAMS ((tree, tree));
158static void print_template_context PARAMS ((int));
159static void tsubst_default_arguments PARAMS ((tree));
160static tree for_each_template_parm_r PARAMS ((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{
7610f2ce
JM
5124 /* If we're not in a template, ARG is already as simple as it's going to
5125 get, and trying to reprocess the trees will break. */
5126 if (! processing_template_decl)
5127 return arg;
5128
00d3396f
JM
5129 if (TREE_CODE_CLASS (TREE_CODE (arg)) != 't'
5130 && !uses_template_parms (arg))
5131 {
5132 /* Sometimes, one of the args was an expression involving a
5133 template constant parameter, like N - 1. Now that we've
5134 tsubst'd, we might have something like 2 - 1. This will
5135 confuse lookup_template_class, so we do constant folding
5136 here. We have to unset processing_template_decl, to
5137 fool build_expr_from_tree() into building an actual
5138 tree. */
5139
5140 int saved_processing_template_decl = processing_template_decl;
5141 processing_template_decl = 0;
5142 arg = fold (build_expr_from_tree (arg));
5143 processing_template_decl = saved_processing_template_decl;
5144 }
5145 return arg;
5146}
5147
a221d52f 5148/* Return the TREE_VEC with the arguments for the innermost template header,
36a117a5
MM
5149 where ARGS is either that or the VEC of VECs for all the
5150 arguments. */
a221d52f
JM
5151
5152tree
36a117a5 5153innermost_args (args)
a221d52f 5154 tree args;
a221d52f 5155{
36a117a5 5156 return TMPL_ARGS_LEVEL (args, TMPL_ARGS_DEPTH (args));
a221d52f 5157}
f84b4be9 5158
830bfa74
MM
5159/* Substitute ARGS into the vector of template arguments T. */
5160
e9659ab0 5161static tree
4393e105 5162tsubst_template_arg_vector (t, args, complain)
830bfa74
MM
5163 tree t;
5164 tree args;
4393e105 5165 int complain;
830bfa74
MM
5166{
5167 int len = TREE_VEC_LENGTH (t), need_new = 0, i;
5168 tree *elts = (tree *) alloca (len * sizeof (tree));
5169
5170 bzero ((char *) elts, len * sizeof (tree));
5171
5172 for (i = 0; i < len; i++)
5173 {
5174 if (TREE_VEC_ELT (t, i) != NULL_TREE
5175 && TREE_CODE (TREE_VEC_ELT (t, i)) == TREE_VEC)
4393e105
MM
5176 elts[i] = tsubst_template_arg_vector (TREE_VEC_ELT (t, i),
5177 args, complain);
830bfa74
MM
5178 else
5179 elts[i] = maybe_fold_nontype_arg
4393e105
MM
5180 (tsubst_expr (TREE_VEC_ELT (t, i), args, complain,
5181 NULL_TREE));
830bfa74
MM
5182
5183 if (elts[i] != TREE_VEC_ELT (t, i))
5184 need_new = 1;
5185 }
5186
5187 if (!need_new)
5188 return t;
5189
f31c0a32 5190 t = make_tree_vec (len);
830bfa74
MM
5191 for (i = 0; i < len; i++)
5192 TREE_VEC_ELT (t, i) = elts[i];
5193
5194 return t;
5195}
5196
36a117a5
MM
5197/* Return the result of substituting ARGS into the template parameters
5198 given by PARMS. If there are m levels of ARGS and m + n levels of
5199 PARMS, then the result will contain n levels of PARMS. For
5200 example, if PARMS is `template <class T> template <class U>
5201 template <T*, U, class V>' and ARGS is {{int}, {double}} then the
5202 result will be `template <int*, double, class V>'. */
5203
e9659ab0 5204static tree
4393e105 5205tsubst_template_parms (parms, args, complain)
36a117a5
MM
5206 tree parms;
5207 tree args;
4393e105 5208 int complain;
36a117a5 5209{
f71f87f9
MM
5210 tree r = NULL_TREE;
5211 tree* new_parms;
36a117a5
MM
5212
5213 for (new_parms = &r;
5214 TMPL_PARMS_DEPTH (parms) > TMPL_ARGS_DEPTH (args);
5215 new_parms = &(TREE_CHAIN (*new_parms)),
5216 parms = TREE_CHAIN (parms))
5217 {
5218 tree new_vec =
5219 make_tree_vec (TREE_VEC_LENGTH (TREE_VALUE (parms)));
5220 int i;
5221
5222 for (i = 0; i < TREE_VEC_LENGTH (new_vec); ++i)
5223 {
5224 tree default_value =
5225 TREE_PURPOSE (TREE_VEC_ELT (TREE_VALUE (parms), i));
5226 tree parm_decl =
5227 TREE_VALUE (TREE_VEC_ELT (TREE_VALUE (parms), i));
5228
5229 TREE_VEC_ELT (new_vec, i)
4393e105
MM
5230 = build_tree_list (tsubst (default_value, args, complain,
5231 NULL_TREE),
5232 tsubst (parm_decl, args, complain,
5233 NULL_TREE));
36a117a5
MM
5234 }
5235
5236 *new_parms =
5237 tree_cons (build_int_2 (0, (TMPL_PARMS_DEPTH (parms)
5238 - TMPL_ARGS_DEPTH (args))),
5239 new_vec, NULL_TREE);
5240 }
5241
5242 return r;
5243}
5244
ed44da02
MM
5245/* Substitute the ARGS into the indicated aggregate (or enumeration)
5246 type T. If T is not an aggregate or enumeration type, it is
5247 handled as if by tsubst. IN_DECL is as for tsubst. If
5248 ENTERING_SCOPE is non-zero, T is the context for a template which
5249 we are presently tsubst'ing. Return the subsituted value. */
36a117a5 5250
e9659ab0 5251static tree
4393e105 5252tsubst_aggr_type (t, args, complain, in_decl, entering_scope)
36a117a5
MM
5253 tree t;
5254 tree args;
4393e105 5255 int complain;
36a117a5
MM
5256 tree in_decl;
5257 int entering_scope;
5258{
5259 if (t == NULL_TREE)
5260 return NULL_TREE;
5261
5262 switch (TREE_CODE (t))
5263 {
5264 case RECORD_TYPE:
5265 if (TYPE_PTRMEMFUNC_P (t))
5266 {
5267 tree r = build_ptrmemfunc_type
4393e105 5268 (tsubst (TYPE_PTRMEMFUNC_FN_TYPE (t), args, complain, in_decl));
adecb3f4
MM
5269 return cp_build_qualified_type_real (r, TYPE_QUALS (t),
5270 complain);
36a117a5
MM
5271 }
5272
5273 /* else fall through */
ed44da02 5274 case ENUMERAL_TYPE:
36a117a5 5275 case UNION_TYPE:
5db698f6 5276 if (TYPE_TEMPLATE_INFO (t))
36a117a5
MM
5277 {
5278 tree argvec;
5279 tree context;
5280 tree r;
5281
5282 /* First, determine the context for the type we are looking
5283 up. */
5284 if (TYPE_CONTEXT (t) != NULL_TREE)
5285 context = tsubst_aggr_type (TYPE_CONTEXT (t), args,
4393e105 5286 complain,
36a117a5
MM
5287 in_decl, /*entering_scope=*/1);
5288 else
5289 context = NULL_TREE;
5290
5291 /* Then, figure out what arguments are appropriate for the
5292 type we are trying to find. For example, given:
5293
5294 template <class T> struct S;
5295 template <class T, class U> void f(T, U) { S<U> su; }
5296
5297 and supposing that we are instantiating f<int, double>,
5298 then our ARGS will be {int, double}, but, when looking up
5299 S we only want {double}. */
4393e105
MM
5300 argvec = tsubst_template_arg_vector (TYPE_TI_ARGS (t), args,
5301 complain);
36a117a5
MM
5302
5303 r = lookup_template_class (t, argvec, in_decl, context,
5304 entering_scope);
5305
adecb3f4
MM
5306 return cp_build_qualified_type_real (r, TYPE_QUALS (t),
5307 complain);
36a117a5
MM
5308 }
5309 else
5310 /* This is not a template type, so there's nothing to do. */
5311 return t;
5312
5313 default:
4393e105 5314 return tsubst (t, args, complain, in_decl);
36a117a5
MM
5315 }
5316}
5317
9188c363
MM
5318/* Substitute into the default argument ARG (a default argument for
5319 FN), which has the indicated TYPE. */
5320
5321tree
5322tsubst_default_argument (fn, type, arg)
5323 tree fn;
5324 tree type;
5325 tree arg;
5326{
5327 /* This default argument came from a template. Instantiate the
5328 default argument here, not in tsubst. In the case of
5329 something like:
5330
5331 template <class T>
5332 struct S {
5333 static T t();
5334 void f(T = t());
5335 };
5336
5337 we must be careful to do name lookup in the scope of S<T>,
5338 rather than in the current class. */
5339 if (DECL_CLASS_SCOPE_P (fn))
5340 pushclass (DECL_REAL_CONTEXT (fn), 2);
5341
5342 arg = tsubst_expr (arg, DECL_TI_ARGS (fn), /*complain=*/1, NULL_TREE);
5343
5344 if (DECL_CLASS_SCOPE_P (fn))
5345 popclass ();
5346
5347 /* Make sure the default argument is reasonable. */
5348 arg = check_default_argument (type, arg);
5349
5350 return arg;
5351}
5352
5353/* Substitute into all the default arguments for FN. */
5354
5355static void
5356tsubst_default_arguments (fn)
5357 tree fn;
5358{
5359 tree arg;
5360 tree tmpl_args;
5361
5362 tmpl_args = DECL_TI_ARGS (fn);
5363
5364 /* If this function is not yet instantiated, we certainly don't need
5365 its default arguments. */
5366 if (uses_template_parms (tmpl_args))
5367 return;
5368
5369 for (arg = TYPE_ARG_TYPES (TREE_TYPE (fn));
5370 arg;
5371 arg = TREE_CHAIN (arg))
5372 if (TREE_PURPOSE (arg))
5373 TREE_PURPOSE (arg) = tsubst_default_argument (fn,
5374 TREE_VALUE (arg),
5375 TREE_PURPOSE (arg));
5376}
5377
ae58fa02
MM
5378/* Substitute the ARGS into the T, which is a _DECL. TYPE is the
5379 (already computed) substitution of ARGS into TREE_TYPE (T), if
5380 appropriate. Return the result of the substitution. IN_DECL is as
5381 for tsubst. */
00d3396f 5382
e9659ab0 5383static tree
ae58fa02
MM
5384tsubst_decl (t, args, type, in_decl)
5385 tree t;
5386 tree args;
5387 tree type;
8d08fdba
MS
5388 tree in_decl;
5389{
ae58fa02
MM
5390 int saved_lineno;
5391 char* saved_filename;
b370501f 5392 tree r = NULL_TREE;
830bfa74 5393
ae58fa02
MM
5394 /* Set the filename and linenumber to improve error-reporting. */
5395 saved_lineno = lineno;
5396 saved_filename = input_filename;
5397 lineno = DECL_SOURCE_LINE (t);
5398 input_filename = DECL_SOURCE_FILE (t);
b7484fbe 5399
8d08fdba
MS
5400 switch (TREE_CODE (t))
5401 {
98c1c668
JM
5402 case TEMPLATE_DECL:
5403 {
5404 /* We can get here when processing a member template function
5405 of a template class. */
98c1c668 5406 tree decl = DECL_TEMPLATE_RESULT (t);
386b8a85 5407 tree spec;
db2767b6 5408 int is_template_template_parm = DECL_TEMPLATE_TEMPLATE_PARM_P (t);
98c1c668 5409
db2767b6
MM
5410 if (!is_template_template_parm)
5411 {
36a117a5
MM
5412 /* We might already have an instance of this template.
5413 The ARGS are for the surrounding class type, so the
5414 full args contain the tsubst'd args for the context,
5415 plus the innermost args from the template decl. */
5416 tree tmpl_args = DECL_CLASS_TEMPLATE_P (t)
5417 ? CLASSTYPE_TI_ARGS (TREE_TYPE (t))
5418 : DECL_TI_ARGS (DECL_RESULT (t));
7ddedda4
MM
5419 tree full_args;
5420
4393e105
MM
5421 full_args = tsubst_template_arg_vector (tmpl_args, args,
5422 /*complain=*/1);
36a117a5
MM
5423
5424 /* tsubst_template_arg_vector doesn't copy the vector if
5425 nothing changed. But, *something* should have
5426 changed. */
5427 my_friendly_assert (full_args != tmpl_args, 0);
5428
5429 spec = retrieve_specialization (t, full_args);
db2767b6 5430 if (spec != NULL_TREE)
ae58fa02
MM
5431 {
5432 r = spec;
5433 break;
5434 }
db2767b6 5435 }
98c1c668
JM
5436
5437 /* Make a new template decl. It will be similar to the
5438 original, but will record the current template arguments.
5439 We also create a new function declaration, which is just
5440 like the old one, but points to this new template, rather
5441 than the old one. */
ae58fa02
MM
5442 r = copy_node (t);
5443 copy_lang_decl (r);
5444 my_friendly_assert (DECL_LANG_SPECIFIC (r) != 0, 0);
5445 TREE_CHAIN (r) = NULL_TREE;
db2767b6
MM
5446
5447 if (is_template_template_parm)
5448 {
4393e105 5449 tree new_decl = tsubst (decl, args, /*complain=*/1, in_decl);
ae58fa02
MM
5450 DECL_RESULT (r) = new_decl;
5451 TREE_TYPE (r) = TREE_TYPE (new_decl);
5452 break;
db2767b6
MM
5453 }
5454
ae58fa02 5455 DECL_CONTEXT (r)
4393e105
MM
5456 = tsubst_aggr_type (DECL_CONTEXT (t), args, /*complain=*/1,
5457 in_decl, /*entering_scope=*/1);
ae58fa02 5458 DECL_CLASS_CONTEXT (r)
4393e105
MM
5459 = tsubst_aggr_type (DECL_CLASS_CONTEXT (t), args,
5460 /*complain=*/1, in_decl,
5461 /*entering_scope=*/1);
ae58fa02 5462 DECL_TEMPLATE_INFO (r) = build_tree_list (t, args);
93cdc044
JM
5463
5464 if (TREE_CODE (decl) == TYPE_DECL)
5465 {
4393e105
MM
5466 tree new_type = tsubst (TREE_TYPE (t), args,
5467 /*complain=*/1, in_decl);
ae58fa02
MM
5468 TREE_TYPE (r) = new_type;
5469 CLASSTYPE_TI_TEMPLATE (new_type) = r;
5470 DECL_RESULT (r) = TYPE_MAIN_DECL (new_type);
5471 DECL_TI_ARGS (r) = CLASSTYPE_TI_ARGS (new_type);
93cdc044
JM
5472 }
5473 else
5474 {
4393e105 5475 tree new_decl = tsubst (decl, args, /*complain=*/1, in_decl);
ae58fa02
MM
5476 DECL_RESULT (r) = new_decl;
5477 DECL_TI_TEMPLATE (new_decl) = r;
5478 TREE_TYPE (r) = TREE_TYPE (new_decl);
5479 DECL_TI_ARGS (r) = DECL_TI_ARGS (new_decl);
93cdc044
JM
5480 }
5481
ae58fa02
MM
5482 SET_DECL_IMPLICIT_INSTANTIATION (r);
5483 DECL_TEMPLATE_INSTANTIATIONS (r) = NULL_TREE;
5484 DECL_TEMPLATE_SPECIALIZATIONS (r) = NULL_TREE;
98c1c668
JM
5485
5486 /* The template parameters for this new template are all the
5487 template parameters for the old template, except the
5488 outermost level of parameters. */
ae58fa02 5489 DECL_TEMPLATE_PARMS (r)
4393e105
MM
5490 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
5491 /*complain=*/1);
98c1c668 5492
93cdc044 5493 if (PRIMARY_TEMPLATE_P (t))
ae58fa02 5494 DECL_PRIMARY_TEMPLATE (r) = r;
93cdc044 5495
8d019cef 5496 /* We don't partially instantiate partial specializations. */
93cdc044 5497 if (TREE_CODE (decl) == TYPE_DECL)
ae58fa02 5498 break;
93cdc044 5499
75650646
MM
5500 for (spec = DECL_TEMPLATE_SPECIALIZATIONS (t);
5501 spec != NULL_TREE;
5502 spec = TREE_CHAIN (spec))
5503 {
5504 /* It helps to consider example here. Consider:
5505
5506 template <class T>
5507 struct S {
5508 template <class U>
5509 void f(U u);
5510
5511 template <>
5512 void f(T* t) {}
5513 };
5514
5515 Now, for example, we are instantiating S<int>::f(U u).
5516 We want to make a template:
5517
5518 template <class U>
5519 void S<int>::f(U);
5520
5521 It will have a specialization, for the case U = int*, of
5522 the form:
5523
5524 template <>
5525 void S<int>::f<int*>(int*);
5526
5527 This specialization will be an instantiation of
5528 the specialization given in the declaration of S, with
5529 argument list int*. */
5530
5531 tree fn = TREE_VALUE (spec);
5532 tree spec_args;
5533 tree new_fn;
5534
5535 if (!DECL_TEMPLATE_SPECIALIZATION (fn))
5536 /* Instantiations are on the same list, but they're of
5537 no concern to us. */
5538 continue;
5539
36a117a5
MM
5540 if (TREE_CODE (fn) != TEMPLATE_DECL)
5541 /* A full specialization. There's no need to record
5542 that here. */
5543 continue;
5544
4393e105
MM
5545 spec_args = tsubst (DECL_TI_ARGS (fn), args,
5546 /*complain=*/1, in_decl);
36a117a5 5547 new_fn = tsubst (DECL_RESULT (most_general_template (fn)),
4393e105 5548 spec_args, /*complain=*/1, in_decl);
36a117a5 5549 DECL_TI_TEMPLATE (new_fn) = fn;
ae58fa02 5550 register_specialization (new_fn, r,
36a117a5 5551 innermost_args (spec_args));
75650646
MM
5552 }
5553
5554 /* Record this partial instantiation. */
ae58fa02
MM
5555 register_specialization (r, t,
5556 DECL_TI_ARGS (DECL_RESULT (r)));
75650646 5557
98c1c668 5558 }
ae58fa02 5559 break;
8d08fdba
MS
5560
5561 case FUNCTION_DECL:
5562 {
386b8a85 5563 tree ctx;
87603ed0 5564 tree argvec = NULL_TREE;
cf38f48a 5565 tree *friends;
36a117a5 5566 tree gen_tmpl;
5566b478 5567 int member;
d8c4447d
MM
5568 int args_depth;
5569 int parms_depth;
5566b478 5570
36a117a5
MM
5571 /* Nobody should be tsubst'ing into non-template functions. */
5572 my_friendly_assert (DECL_TEMPLATE_INFO (t) != NULL_TREE, 0);
5573
5574 if (TREE_CODE (DECL_TI_TEMPLATE (t)) == TEMPLATE_DECL)
5575 {
5576 tree spec;
5577
5578 /* Calculate the most general template of which R is a
5579 specialization, and the complete set of arguments used to
5580 specialize R. */
5581 gen_tmpl = most_general_template (DECL_TI_TEMPLATE (t));
7ddedda4
MM
5582 argvec
5583 = tsubst_template_arg_vector (DECL_TI_ARGS
5584 (DECL_TEMPLATE_RESULT (gen_tmpl)),
4393e105 5585 args, /*complain=*/1);
36a117a5
MM
5586
5587 /* Check to see if we already have this specialization. */
5588 spec = retrieve_specialization (gen_tmpl, argvec);
7ddedda4 5589
36a117a5 5590 if (spec)
ae58fa02
MM
5591 {
5592 r = spec;
5593 break;
5594 }
d8c4447d
MM
5595
5596 /* Here, we deal with the peculiar case:
5597
5598 template <class T> struct S {
5599 template <class U> friend void f();
5600 };
5601 template <class U> friend void f() {}
5602 template S<int>;
5603 template void f<double>();
5604
5605 Here, the ARGS for the instantiation of will be {int,
5606 double}. But, we only need as many ARGS as there are
5607 levels of template parameters in CODE_PATTERN. We are
5608 careful not to get fooled into reducing the ARGS in
5609 situations like:
5610
5611 template <class T> struct S { template <class U> void f(U); }
5612 template <class T> template <> void S<T>::f(int) {}
5613
5614 which we can spot because the pattern will be a
5615 specialization in this case. */
5616 args_depth = TMPL_ARGS_DEPTH (args);
5617 parms_depth =
5618 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (t)));
5619 if (args_depth > parms_depth
5620 && !DECL_TEMPLATE_SPECIALIZATION (t))
5621 {
5622 my_friendly_assert (DECL_FRIEND_P (t), 0);
5623
5624 if (parms_depth > 1)
5625 {
5626 int i;
5627
f31c0a32 5628 args = make_tree_vec (parms_depth);
d8c4447d
MM
5629 for (i = 0; i < parms_depth; ++i)
5630 TREE_VEC_ELT (args, i) =
5631 TREE_VEC_ELT (args, i + (args_depth - parms_depth));
5632 }
5633 else
5634 args = TREE_VEC_ELT (args, args_depth - parms_depth);
5635 }
36a117a5
MM
5636 }
5637 else
5638 {
5639 /* This special case arises when we have something like this:
5640
5641 template <class T> struct S {
5642 friend void f<int>(int, double);
5643 };
5644
5645 Here, the DECL_TI_TEMPLATE for the friend declaration
39c01e4c
MM
5646 will be a LOOKUP_EXPR or an IDENTIFIER_NODE. We are
5647 being called from tsubst_friend_function, and we want
5648 only to create a new decl (R) with appropriate types so
5649 that we can call determine_specialization. */
5650 my_friendly_assert ((TREE_CODE (DECL_TI_TEMPLATE (t))
5651 == LOOKUP_EXPR)
5652 || (TREE_CODE (DECL_TI_TEMPLATE (t))
5653 == IDENTIFIER_NODE), 0);
36a117a5
MM
5654 gen_tmpl = NULL_TREE;
5655 }
5656
6eb3bb27 5657 if (DECL_CLASS_SCOPE_P (t))
8d08fdba 5658 {
5566b478
MS
5659 if (DECL_NAME (t) == constructor_name (DECL_CONTEXT (t)))
5660 member = 2;
5661 else
5662 member = 1;
4393e105
MM
5663 ctx = tsubst_aggr_type (DECL_CLASS_CONTEXT (t), args,
5664 /*complain=*/1, t,
36a117a5 5665 /*entering_scope=*/1);
5566b478
MS
5666 }
5667 else
5668 {
5669 member = 0;
5670 ctx = NULL_TREE;
5566b478 5671 }
4393e105 5672 type = tsubst (type, args, /*complain=*/1, in_decl);
b3da7bb1
MM
5673 if (type == error_mark_node)
5674 return error_mark_node;
8d08fdba 5675
5566b478
MS
5676 /* We do NOT check for matching decls pushed separately at this
5677 point, as they may not represent instantiations of this
5678 template, and in any case are considered separate under the
312e7d50 5679 discrete model. Instead, see add_maybe_template. */
5566b478
MS
5680
5681 r = copy_node (t);
5682 copy_lang_decl (r);
e1467ff2 5683 DECL_USE_TEMPLATE (r) = 0;
5566b478
MS
5684 TREE_TYPE (r) = type;
5685
5686 DECL_CONTEXT (r)
4393e105
MM
5687 = tsubst_aggr_type (DECL_CONTEXT (t), args, /*complain=*/1, t,
5688 /*entering_scope=*/1);
5566b478
MS
5689 DECL_CLASS_CONTEXT (r) = ctx;
5690
4c571114 5691 if (member && IDENTIFIER_TYPENAME_P (DECL_NAME (r)))
f181d4ae
MM
5692 /* Type-conversion operator. Reconstruct the name, in
5693 case it's the name of one of the template's parameters. */
5694 DECL_NAME (r) = build_typename_overload (TREE_TYPE (type));
5566b478 5695
4393e105
MM
5696 DECL_ARGUMENTS (r) = tsubst (DECL_ARGUMENTS (t), args,
5697 /*complain=*/1, t);
711734a9
JM
5698 DECL_MAIN_VARIANT (r) = r;
5699 DECL_RESULT (r) = NULL_TREE;
711734a9
JM
5700
5701 TREE_STATIC (r) = 0;
5702 TREE_PUBLIC (r) = TREE_PUBLIC (t);
5703 DECL_EXTERNAL (r) = 1;
5704 DECL_INTERFACE_KNOWN (r) = 0;
5705 DECL_DEFER_OUTPUT (r) = 0;
5706 TREE_CHAIN (r) = NULL_TREE;
5707 DECL_PENDING_INLINE_INFO (r) = 0;
59026e79 5708 DECL_PENDING_INLINE_P (r) = 0;
711734a9
JM
5709 TREE_USED (r) = 0;
5710
36a117a5
MM
5711 /* Set up the DECL_TEMPLATE_INFO for R and compute its mangled
5712 name. There's no need to do this in the special friend
5713 case mentioned above where GEN_TMPL is NULL. */
5714 if (gen_tmpl)
386b8a85 5715 {
36a117a5 5716 DECL_TEMPLATE_INFO (r)
e1b3e07d 5717 = tree_cons (gen_tmpl, argvec, NULL_TREE);
36a117a5
MM
5718 SET_DECL_IMPLICIT_INSTANTIATION (r);
5719 register_specialization (r, gen_tmpl, argvec);
5720
5721 /* Set the mangled name for R. */
5722 if (DECL_DESTRUCTOR_P (t))
5723 DECL_ASSEMBLER_NAME (r) = build_destructor_name (ctx);
5724 else
386b8a85 5725 {
36a117a5
MM
5726 /* Instantiations of template functions must be mangled
5727 specially, in order to conform to 14.5.5.1
5728 [temp.over.link]. */
5729 tree tmpl = DECL_TI_TEMPLATE (t);
386b8a85 5730
36a117a5
MM
5731 /* TMPL will be NULL if this is a specialization of a
5732 member function of a template class. */
5733 if (name_mangling_version < 1
5734 || tmpl == NULL_TREE
5735 || (member && !is_member_template (tmpl)
5736 && !DECL_TEMPLATE_INFO (tmpl)))
5737 set_mangled_name_for_decl (r);
75650646 5738 else
36a117a5 5739 set_mangled_name_for_template_decl (r);
386b8a85 5740 }
36a117a5
MM
5741
5742 DECL_RTL (r) = 0;
5743 make_decl_rtl (r, NULL_PTR, 1);
5744
5745 /* Like grokfndecl. If we don't do this, pushdecl will
5746 mess up our TREE_CHAIN because it doesn't find a
5747 previous decl. Sigh. */
5748 if (member
c36ae80f 5749 && ! uses_template_parms (r)
36a117a5
MM
5750 && (IDENTIFIER_GLOBAL_VALUE (DECL_ASSEMBLER_NAME (r))
5751 == NULL_TREE))
5752 SET_IDENTIFIER_GLOBAL_VALUE (DECL_ASSEMBLER_NAME (r), r);
9188c363
MM
5753
5754 /* We're not supposed to instantiate default arguments
5755 until they are called, for a template. But, for a
5756 declaration like:
5757
5758 template <class T> void f ()
5759 { extern void g(int i = T()); }
5760
5761 we should do the substitution when the template is
5762 instantiated. We handle the member function case in
5763 instantiate_class_template since the default arguments
5764 might refer to other members of the class. */
5765 if (!member
5766 && !PRIMARY_TEMPLATE_P (gen_tmpl)
5767 && !uses_template_parms (argvec))
5768 tsubst_default_arguments (r);
386b8a85 5769 }
f181d4ae 5770
cf38f48a
MM
5771 /* Copy the list of befriending classes. */
5772 for (friends = &DECL_BEFRIENDING_CLASSES (r);
5773 *friends;
5774 friends = &TREE_CHAIN (*friends))
5775 {
5776 *friends = copy_node (*friends);
5777 TREE_VALUE (*friends) = tsubst (TREE_VALUE (*friends),
5778 args, /*complain=*/1,
5779 in_decl);
5780 }
5781
f181d4ae
MM
5782 if (DECL_CONSTRUCTOR_P (r))
5783 {
5784 maybe_retrofit_in_chrg (r);
5785 grok_ctor_properties (ctx, r);
5786 }
f71f87f9 5787 else if (DECL_OVERLOADED_OPERATOR_P (r))
f181d4ae 5788 grok_op_properties (r, DECL_VIRTUAL_P (r), DECL_FRIEND_P (r));
8d08fdba 5789 }
ae58fa02 5790 break;
8d08fdba
MS
5791
5792 case PARM_DECL:
5793 {
ae58fa02 5794 r = copy_node (t);
5566b478 5795 TREE_TYPE (r) = type;
1b8899d1
MM
5796 c_apply_type_quals_to_decl (CP_TYPE_QUALS (type), r);
5797
db2767b6
MM
5798 if (TREE_CODE (DECL_INITIAL (r)) != TEMPLATE_PARM_INDEX)
5799 DECL_INITIAL (r) = TREE_TYPE (r);
5800 else
4393e105
MM
5801 DECL_INITIAL (r) = tsubst (DECL_INITIAL (r), args,
5802 /*complain=*/1, in_decl);
db2767b6 5803
5566b478 5804 DECL_CONTEXT (r) = NULL_TREE;
fa56377d
JJ
5805 if (PROMOTE_PROTOTYPES
5806 && (TREE_CODE (type) == INTEGER_TYPE
5807 || TREE_CODE (type) == ENUMERAL_TYPE)
f83b0cb6
JM
5808 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
5809 DECL_ARG_TYPE (r) = integer_type_node;
8d08fdba 5810 if (TREE_CHAIN (t))
4393e105
MM
5811 TREE_CHAIN (r) = tsubst (TREE_CHAIN (t), args,
5812 /*complain=*/1, TREE_CHAIN (t));
8d08fdba 5813 }
ae58fa02 5814 break;
8d08fdba 5815
5566b478
MS
5816 case FIELD_DECL:
5817 {
ae58fa02 5818 r = copy_node (t);
5566b478 5819 copy_lang_decl (r);
1b8899d1
MM
5820 TREE_TYPE (r) = type;
5821 c_apply_type_quals_to_decl (CP_TYPE_QUALS (type), r);
5822
5823 /* We don't have to set DECL_CONTEXT here; it is set by
5824 finish_member_declaration. */
4393e105
MM
5825 DECL_INITIAL (r) = tsubst_expr (DECL_INITIAL (t), args,
5826 /*complain=*/1, in_decl);
5566b478 5827 TREE_CHAIN (r) = NULL_TREE;
4393e105 5828 if (TREE_CODE (type) == VOID_TYPE)
8251199e 5829 cp_error_at ("instantiation of `%D' as type void", r);
5566b478 5830 }
ae58fa02 5831 break;
5566b478
MS
5832
5833 case USING_DECL:
5834 {
ae58fa02 5835 r = copy_node (t);
5566b478 5836 DECL_INITIAL (r)
4393e105 5837 = tsubst_copy (DECL_INITIAL (t), args, /*complain=*/1, in_decl);
5566b478 5838 TREE_CHAIN (r) = NULL_TREE;
5566b478 5839 }
ae58fa02 5840 break;
5566b478 5841
9188c363
MM
5842 case TYPE_DECL:
5843 if (DECL_IMPLICIT_TYPEDEF_P (t))
5844 {
5845 /* For an implicit typedef, we just want the implicit
5846 typedef for the tsubst'd type. We've already got the
5847 tsubst'd type, as TYPE, so we just need it's associated
5848 declaration. */
5849 r = TYPE_NAME (type);
5850 break;
5851 }
5852 else if (!DECL_LANG_SPECIFIC (t))
5853 {
5854 /* For a template type parameter, we don't have to do
5855 anything special. */
5856 r= TYPE_NAME (type);
5857 break;
5858 }
5859
5860 /* Fall through. */
5861
5566b478
MS
5862 case VAR_DECL:
5863 {
36a117a5
MM
5864 tree argvec;
5865 tree gen_tmpl;
5866 tree spec;
5867 tree tmpl;
9188c363
MM
5868 tree ctx;
5869
8dd3f57a
MM
5870 /* Nobody should be tsubst'ing into non-template variables. */
5871 my_friendly_assert (DECL_LANG_SPECIFIC (t)
5872 && DECL_TEMPLATE_INFO (t) != NULL_TREE, 0);
5566b478 5873
de96bf57 5874 if (TYPE_P (CP_DECL_CONTEXT (t)))
9188c363
MM
5875 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args,
5876 /*complain=*/1,
5877 in_decl, /*entering_scope=*/1);
5878 else
5879 /* Subsequent calls to pushdecl will fill this in. */
5880 ctx = NULL_TREE;
5881
36a117a5
MM
5882 /* Check to see if we already have this specialization. */
5883 tmpl = DECL_TI_TEMPLATE (t);
5884 gen_tmpl = most_general_template (tmpl);
4393e105 5885 argvec = tsubst (DECL_TI_ARGS (t), args, /*complain=*/1, in_decl);
9188c363
MM
5886 if (ctx)
5887 spec = retrieve_specialization (gen_tmpl, argvec);
5888 else
5889 spec = retrieve_local_specialization (gen_tmpl,
5890 current_function_decl);
5891
36a117a5 5892 if (spec)
ae58fa02
MM
5893 {
5894 r = spec;
5895 break;
5896 }
5566b478 5897
e0942dcd
MM
5898 /* This declaration is going to have to be around for a while,
5899 so me make sure it is on a saveable obstack. */
5566b478 5900 r = copy_node (t);
f9817201 5901
5566b478 5902 TREE_TYPE (r) = type;
1b8899d1 5903 c_apply_type_quals_to_decl (CP_TYPE_QUALS (type), r);
5566b478 5904 DECL_CONTEXT (r) = ctx;
d11ad92e
MS
5905
5906 /* Don't try to expand the initializer until someone tries to use
5907 this variable; otherwise we run into circular dependencies. */
5908 DECL_INITIAL (r) = NULL_TREE;
5566b478
MS
5909 DECL_RTL (r) = 0;
5910 DECL_SIZE (r) = 0;
36a117a5
MM
5911 copy_lang_decl (r);
5912 DECL_CLASS_CONTEXT (r) = DECL_CONTEXT (r);
5566b478 5913
f9817201
MM
5914 /* For __PRETTY_FUNCTION__ we have to adjust the initializer. */
5915 if (DECL_PRETTY_FUNCTION_P (r))
5916 {
5917 DECL_INITIAL (r) = tsubst (DECL_INITIAL (t),
5918 args,
5919 /*complain=*/1,
5920 NULL_TREE);
5921 TREE_TYPE (r) = TREE_TYPE (DECL_INITIAL (r));
5922 }
5923
f0adc637
MM
5924 /* If the template variable was marked TREE_ASM_WRITTEN, that
5925 means we don't need to write out any of the instantiations
5926 either. (__FUNCTION__ and its ilk are marked thusly.) */
5927 TREE_ASM_WRITTEN (r) = TREE_ASM_WRITTEN (t);
5928
e0942dcd
MM
5929 /* Even if the original location is out of scope, the newly
5930 substituted one is not. */
5931 if (TREE_CODE (r) == VAR_DECL)
5932 DECL_DEAD_FOR_LOCAL (r) = 0;
5933
fa8d6e85
MM
5934 /* A static data member declaration is always marked external
5935 when it is declared in-class, even if an initializer is
5936 present. We mimic the non-template processing here. */
e0942dcd
MM
5937 if (ctx)
5938 DECL_EXTERNAL (r) = 1;
fa8d6e85 5939
e1b3e07d 5940 DECL_TEMPLATE_INFO (r) = tree_cons (tmpl, argvec, NULL_TREE);
36a117a5 5941 SET_DECL_IMPLICIT_INSTANTIATION (r);
9188c363
MM
5942 if (ctx)
5943 register_specialization (r, gen_tmpl, argvec);
5944 else
5945 register_local_specialization (r, gen_tmpl,
5946 current_function_decl);
5566b478 5947
5566b478 5948 TREE_CHAIN (r) = NULL_TREE;
9188c363 5949 if (TREE_CODE (r) == VAR_DECL && TREE_CODE (type) == VOID_TYPE)
8251199e 5950 cp_error_at ("instantiation of `%D' as type void", r);
5566b478 5951 }
ae58fa02 5952 break;
5566b478 5953
ae58fa02
MM
5954 default:
5955 my_friendly_abort (0);
5956 }
5957
5958 /* Restore the file and line information. */
5959 lineno = saved_lineno;
5960 input_filename = saved_filename;
5961
5962 return r;
5963}
5964
cabc336a
MM
5965/* Substitue into the ARG_TYPES of a function type. */
5966
e9659ab0 5967static tree
4393e105 5968tsubst_arg_types (arg_types, args, complain, in_decl)
cabc336a
MM
5969 tree arg_types;
5970 tree args;
4393e105 5971 int complain;
cabc336a
MM
5972 tree in_decl;
5973{
5974 tree remaining_arg_types;
cabc336a
MM
5975 tree type;
5976
5977 if (!arg_types || arg_types == void_list_node)
5978 return arg_types;
5979
5980 remaining_arg_types = tsubst_arg_types (TREE_CHAIN (arg_types),
4393e105
MM
5981 args, complain, in_decl);
5982 if (remaining_arg_types == error_mark_node)
5983 return error_mark_node;
5984
5985 type = tsubst (TREE_VALUE (arg_types), args, complain, in_decl);
5986 if (type == error_mark_node)
5987 return error_mark_node;
cabc336a 5988
4393e105
MM
5989 /* Do array-to-pointer, function-to-pointer conversion, and ignore
5990 top-level qualifiers as required. */
5991 type = TYPE_MAIN_VARIANT (type_decays_to (type));
cabc336a
MM
5992
5993 /* Note that we do not substitute into default arguments here. The
5994 standard mandates that they be instantiated only when needed,
5995 which is done in build_over_call. */
51632249
JM
5996 return hash_tree_cons (TREE_PURPOSE (arg_types), type,
5997 remaining_arg_types);
cabc336a
MM
5998
5999}
6000
4393e105
MM
6001/* Substitute into a FUNCTION_TYPE or METHOD_TYPE. This routine does
6002 *not* handle the exception-specification for FNTYPE, because the
6003 initial substitution of explicitly provided template parameters
6004 during argument deduction forbids substitution into the
6005 exception-specification:
6006
6007 [temp.deduct]
6008
6009 All references in the function type of the function template to the
6010 corresponding template parameters are replaced by the specified tem-
6011 plate argument values. If a substitution in a template parameter or
6012 in the function type of the function template results in an invalid
6013 type, type deduction fails. [Note: The equivalent substitution in
6014 exception specifications is done only when the function is instanti-
6015 ated, at which point a program is ill-formed if the substitution
6016 results in an invalid type.] */
6017
6018static tree
6019tsubst_function_type (t, args, complain, in_decl)
6020 tree t;
6021 tree args;
6022 int complain;
6023 tree in_decl;
6024{
6025 tree return_type;
6026 tree arg_types;
6027 tree fntype;
6028
8dd3f57a 6029 /* The TYPE_CONTEXT is not used for function/method types. */
4393e105
MM
6030 my_friendly_assert (TYPE_CONTEXT (t) == NULL_TREE, 0);
6031
6032 /* Substitue the return type. */
6033 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
6034 if (return_type == error_mark_node)
6035 return error_mark_node;
6036
6037 /* Substitue the argument types. */
6038 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args,
6039 complain, in_decl);
6040 if (arg_types == error_mark_node)
6041 return error_mark_node;
6042
6043 /* Construct a new type node and return it. */
6044 if (TREE_CODE (t) == FUNCTION_TYPE)
6045 fntype = build_function_type (return_type, arg_types);
6046 else
6047 {
6048 tree r = TREE_TYPE (TREE_VALUE (arg_types));
6049 if (! IS_AGGR_TYPE (r))
6050 {
6051 /* [temp.deduct]
6052
6053 Type deduction may fail for any of the following
6054 reasons:
6055
6056 -- Attempting to create "pointer to member of T" when T
6057 is not a class type. */
6058 if (complain)
6059 cp_error ("creating pointer to member function of non-class type `%T'",
6060 r);
6061 return error_mark_node;
6062 }
6063
6064 fntype = build_cplus_method_type (r, return_type, TREE_CHAIN
6065 (arg_types));
6066 }
6067 fntype = build_qualified_type (fntype, TYPE_QUALS (t));
ada846eb 6068 fntype = build_type_attribute_variant (fntype, TYPE_ATTRIBUTES (t));
4393e105
MM
6069
6070 return fntype;
6071}
6072
297e73d8
MM
6073/* Substitute into the PARMS of a call-declarator. */
6074
e9659ab0 6075static tree
4393e105 6076tsubst_call_declarator_parms (parms, args, complain, in_decl)
297e73d8
MM
6077 tree parms;
6078 tree args;
4393e105 6079 int complain;
297e73d8
MM
6080 tree in_decl;
6081{
6082 tree new_parms;
6083 tree type;
6084 tree defarg;
6085
6086 if (!parms || parms == void_list_node)
6087 return parms;
6088
6089 new_parms = tsubst_call_declarator_parms (TREE_CHAIN (parms),
4393e105 6090 args, complain, in_decl);
297e73d8
MM
6091
6092 /* Figure out the type of this parameter. */
4393e105 6093 type = tsubst (TREE_VALUE (parms), args, complain, in_decl);
297e73d8
MM
6094
6095 /* Figure out the default argument as well. Note that we use
4393e105
MM
6096 tsubst_expr since the default argument is really an expression. */
6097 defarg = tsubst_expr (TREE_PURPOSE (parms), args, complain, in_decl);
297e73d8
MM
6098
6099 /* Chain this parameter on to the front of those we have already
6100 processed. We don't use hash_tree_cons because that function
6101 doesn't check TREE_PARMLIST. */
6102 new_parms = tree_cons (defarg, type, new_parms);
6103
6104 /* And note that these are parameters. */
6105 TREE_PARMLIST (new_parms) = 1;
6106
6107 return new_parms;
6108}
6109
4393e105
MM
6110/* Take the tree structure T and replace template parameters used
6111 therein with the argument vector ARGS. IN_DECL is an associated
6112 decl for diagnostics. If an error occurs, returns ERROR_MARK_NODE.
6113 An appropriate error message is issued only if COMPLAIN is
6114 non-zero. Note that we must be relatively non-tolerant of
6115 extensions here, in order to preserve conformance; if we allow
6116 substitutions that should not be allowed, we may allow argument
6117 deductions that should not succeed, and therefore report ambiguous
6118 overload situations where there are none. In theory, we could
6119 allow the substitution, but indicate that it should have failed,
6120 and allow our caller to make sure that the right thing happens, but
6121 we don't try to do this yet.
6122
6123 This function is used for dealing with types, decls and the like;
6124 for expressions, use tsubst_expr or tsubst_copy. */
ae58fa02
MM
6125
6126tree
4393e105 6127tsubst (t, args, complain, in_decl)
ae58fa02 6128 tree t, args;
4393e105 6129 int complain;
ae58fa02
MM
6130 tree in_decl;
6131{
0ecfe0b4 6132 tree type, r;
ae58fa02
MM
6133
6134 if (t == NULL_TREE || t == error_mark_node
6135 || t == integer_type_node
6136 || t == void_type_node
6137 || t == char_type_node
6138 || TREE_CODE (t) == NAMESPACE_DECL)
6139 return t;
6140
6141 if (TREE_CODE (t) == IDENTIFIER_NODE)
6142 type = IDENTIFIER_TYPE_VALUE (t);
6143 else
6144 type = TREE_TYPE (t);
6145 if (type == unknown_type_node)
6146 my_friendly_abort (42);
6147
6148 if (type && TREE_CODE (t) != FUNCTION_DECL
6149 && TREE_CODE (t) != TYPENAME_TYPE
6150 && TREE_CODE (t) != TEMPLATE_DECL
4393e105
MM
6151 && TREE_CODE (t) != IDENTIFIER_NODE
6152 && TREE_CODE (t) != FUNCTION_TYPE
6153 && TREE_CODE (t) != METHOD_TYPE)
6154 type = tsubst (type, args, complain, in_decl);
6155 if (type == error_mark_node)
6156 return error_mark_node;
ae58fa02
MM
6157
6158 if (TREE_CODE_CLASS (TREE_CODE (t)) == 'd')
6159 return tsubst_decl (t, args, type, in_decl);
6160
6161 switch (TREE_CODE (t))
6162 {
6163 case RECORD_TYPE:
6164 case UNION_TYPE:
6165 case ENUMERAL_TYPE:
4393e105
MM
6166 return tsubst_aggr_type (t, args, complain, in_decl,
6167 /*entering_scope=*/0);
ae58fa02
MM
6168
6169 case ERROR_MARK:
6170 case IDENTIFIER_NODE:
6171 case OP_IDENTIFIER:
6172 case VOID_TYPE:
6173 case REAL_TYPE:
6174 case COMPLEX_TYPE:
6175 case BOOLEAN_TYPE:
6176 case INTEGER_CST:
6177 case REAL_CST:
6178 case STRING_CST:
6179 return t;
6180
6181 case INTEGER_TYPE:
6182 if (t == integer_type_node)
6183 return t;
6184
6185 if (TREE_CODE (TYPE_MIN_VALUE (t)) == INTEGER_CST
6186 && TREE_CODE (TYPE_MAX_VALUE (t)) == INTEGER_CST)
6187 return t;
d2e5ee5c 6188
5566b478 6189 {
ddce3528 6190 tree max, omax = TREE_OPERAND (TYPE_MAX_VALUE (t), 0);
7ddedda4 6191
ddce3528 6192 max = tsubst_expr (omax, args, complain, in_decl);
4393e105
MM
6193 if (max == error_mark_node)
6194 return error_mark_node;
6195
8dd3f57a
MM
6196 /* See if we can reduce this expression to something simpler. */
6197 max = maybe_fold_nontype_arg (max);
6198 if (!processing_template_decl && TREE_READONLY_DECL_P (max))
6199 max = decl_constant_value (max);
6200
856216bb
MM
6201 if (processing_template_decl
6202 /* When providing explicit arguments to a template
6203 function, but leaving some arguments for subsequent
6204 deduction, MAX may be template-dependent even if we're
c95cd22e
JM
6205 not PROCESSING_TEMPLATE_DECL. We still need to check for
6206 template parms, though; MAX won't be an INTEGER_CST for
6207 dynamic arrays, either. */
6208 || (TREE_CODE (max) != INTEGER_CST
6209 && uses_template_parms (max)))
ae58fa02 6210 {
8dd3f57a
MM
6211 tree itype = make_node (INTEGER_TYPE);
6212 TYPE_MIN_VALUE (itype) = size_zero_node;
6213 TYPE_MAX_VALUE (itype) = build_min (MINUS_EXPR, sizetype, max,
6214 integer_one_node);
6215 return itype;
ae58fa02
MM
6216 }
6217
ddce3528
JM
6218 if (integer_zerop (omax))
6219 {
6220 /* Still allow an explicit array of size zero. */
6221 if (pedantic)
6222 pedwarn ("creating array with size zero");
6223 }
07c88314
MM
6224 else if (integer_zerop (max)
6225 || (TREE_CODE (max) == INTEGER_CST
6226 && INT_CST_LT (max, integer_zero_node)))
0ecfe0b4 6227 {
4393e105
MM
6228 /* [temp.deduct]
6229
6230 Type deduction may fail for any of the following
6231 reasons:
6232
bf8f3f93
MM
6233 Attempting to create an array with a size that is
6234 zero or negative. */
4393e105 6235 if (complain)
16bb3387 6236 cp_error ("creating array with size zero (`%E')", max);
4393e105
MM
6237
6238 return error_mark_node;
0ecfe0b4
JM
6239 }
6240
c95cd22e 6241 return compute_array_index_type (NULL_TREE, max);
ae58fa02
MM
6242 }
6243
6244 case TEMPLATE_TYPE_PARM:
6245 case TEMPLATE_TEMPLATE_PARM:
6246 case TEMPLATE_PARM_INDEX:
6247 {
6248 int idx;
6249 int level;
6250 int levels;
0ecfe0b4
JM
6251
6252 r = NULL_TREE;
ae58fa02
MM
6253
6254 if (TREE_CODE (t) == TEMPLATE_TYPE_PARM
6255 || TREE_CODE (t) == TEMPLATE_TEMPLATE_PARM)
6256 {
6257 idx = TEMPLATE_TYPE_IDX (t);
6258 level = TEMPLATE_TYPE_LEVEL (t);
6259 }
6260 else
6261 {
6262 idx = TEMPLATE_PARM_IDX (t);
6263 level = TEMPLATE_PARM_LEVEL (t);
6264 }
6265
6266 if (TREE_VEC_LENGTH (args) > 0)
6267 {
6268 tree arg = NULL_TREE;
6269
6270 levels = TMPL_ARGS_DEPTH (args);
6271 if (level <= levels)
6272 arg = TMPL_ARG (args, level, idx);
6273
8b5b8b7c
MM
6274 if (arg == error_mark_node)
6275 return error_mark_node;
6276 else if (arg != NULL_TREE)
ae58fa02
MM
6277 {
6278 if (TREE_CODE (t) == TEMPLATE_TYPE_PARM)
6279 {
6280 my_friendly_assert (TREE_CODE_CLASS (TREE_CODE (arg))
6281 == 't', 0);
adecb3f4
MM
6282 return cp_build_qualified_type_real
6283 (arg, CP_TYPE_QUALS (arg) | CP_TYPE_QUALS (t),
6284 complain);
ae58fa02
MM
6285 }
6286 else if (TREE_CODE (t) == TEMPLATE_TEMPLATE_PARM)
6287 {
7ddedda4 6288 if (TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (t))
ae58fa02
MM
6289 {
6290 /* We are processing a type constructed from
6291 a template template parameter */
7ddedda4 6292 tree argvec = tsubst (TYPE_TI_ARGS (t),
4393e105
MM
6293 args, complain, in_decl);
6294 if (argvec == error_mark_node)
6295 return error_mark_node;
6296
ae58fa02
MM
6297 /* We can get a TEMPLATE_TEMPLATE_PARM here when
6298 we are resolving nested-types in the signature of
6299 a member function templates.
6300 Otherwise ARG is a TEMPLATE_DECL and is the real
6301 template to be instantiated. */
6302 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
6303 arg = TYPE_NAME (arg);
6304
6305 r = lookup_template_class (DECL_NAME (arg),
6306 argvec, in_decl,
6307 DECL_CONTEXT (arg),
6308 /*entering_scope=*/0);
adecb3f4
MM
6309 return cp_build_qualified_type_real (r,
6310 TYPE_QUALS (t),
6311 complain);
ae58fa02
MM
6312 }
6313 else
6314 /* We are processing a template argument list. */
6315 return arg;
6316 }
6317 else
6318 return arg;
6319 }
6320 }
51924768
JM
6321 else
6322 my_friendly_abort (981018);
ae58fa02
MM
6323
6324 if (level == 1)
6325 /* This can happen during the attempted tsubst'ing in
6326 unify. This means that we don't yet have any information
6327 about the template parameter in question. */
6328 return t;
6329
6330 /* If we get here, we must have been looking at a parm for a
6331 more deeply nested template. Make a new version of this
6332 template parameter, but with a lower level. */
6333 switch (TREE_CODE (t))
6334 {
6335 case TEMPLATE_TYPE_PARM:
6336 case TEMPLATE_TEMPLATE_PARM:
6337 r = copy_node (t);
6338 TEMPLATE_TYPE_PARM_INDEX (r)
6339 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (t),
6340 r, levels);
6341 TYPE_STUB_DECL (r) = TYPE_NAME (r) = TEMPLATE_TYPE_DECL (r);
6342 TYPE_MAIN_VARIANT (r) = r;
6343 TYPE_POINTER_TO (r) = NULL_TREE;
6344 TYPE_REFERENCE_TO (r) = NULL_TREE;
6345
6346 if (TREE_CODE (t) == TEMPLATE_TEMPLATE_PARM
7ddedda4 6347 && TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (t))
ae58fa02 6348 {
4393e105
MM
6349 tree argvec = tsubst (TYPE_TI_ARGS (t), args,
6350 complain, in_decl);
6351 if (argvec == error_mark_node)
6352 return error_mark_node;
6353
7ddedda4 6354 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (r)
e1b3e07d 6355 = tree_cons (TYPE_NAME (t), argvec, NULL_TREE);
ae58fa02
MM
6356 }
6357 break;
6358
6359 case TEMPLATE_PARM_INDEX:
6360 r = reduce_template_parm_level (t, type, levels);
6361 break;
6362
6363 default:
6364 my_friendly_abort (0);
6365 }
6366
5566b478 6367 return r;
ae58fa02 6368 }
5566b478 6369
8d08fdba
MS
6370 case TREE_LIST:
6371 {
6372 tree purpose, value, chain, result;
8d08fdba
MS
6373
6374 if (t == void_list_node)
6375 return t;
6376
8d08fdba
MS
6377 purpose = TREE_PURPOSE (t);
6378 if (purpose)
4393e105
MM
6379 {
6380 purpose = tsubst (purpose, args, complain, in_decl);
6381 if (purpose == error_mark_node)
6382 return error_mark_node;
6383 }
8d08fdba
MS
6384 value = TREE_VALUE (t);
6385 if (value)
4393e105
MM
6386 {
6387 value = tsubst (value, args, complain, in_decl);
6388 if (value == error_mark_node)
6389 return error_mark_node;
6390 }
8d08fdba
MS
6391 chain = TREE_CHAIN (t);
6392 if (chain && chain != void_type_node)
4393e105
MM
6393 {
6394 chain = tsubst (chain, args, complain, in_decl);
6395 if (chain == error_mark_node)
6396 return error_mark_node;
6397 }
8d08fdba
MS
6398 if (purpose == TREE_PURPOSE (t)
6399 && value == TREE_VALUE (t)
6400 && chain == TREE_CHAIN (t))
6401 return t;
51632249 6402 result = hash_tree_cons (purpose, value, chain);
8d08fdba
MS
6403 TREE_PARMLIST (result) = TREE_PARMLIST (t);
6404 return result;
6405 }
6406 case TREE_VEC:
5566b478
MS
6407 if (type != NULL_TREE)
6408 {
1ceaad38
JM
6409 /* A binfo node. We always need to make a copy, of the node
6410 itself and of its BINFO_BASETYPES. */
85b71cf2 6411
5566b478
MS
6412 t = copy_node (t);
6413
c7449f2b
JM
6414 /* Make sure type isn't a typedef copy. */
6415 type = BINFO_TYPE (TYPE_BINFO (type));
6416
5566b478 6417 TREE_TYPE (t) = complete_type (type);
6633d636
MS
6418 if (IS_AGGR_TYPE (type))
6419 {
6420 BINFO_VTABLE (t) = TYPE_BINFO_VTABLE (type);
6421 BINFO_VIRTUALS (t) = TYPE_BINFO_VIRTUALS (type);
6422 if (TYPE_BINFO_BASETYPES (type) != NULL_TREE)
6423 BINFO_BASETYPES (t) = copy_node (TYPE_BINFO_BASETYPES (type));
6424 }
5566b478
MS
6425 return t;
6426 }
85b71cf2
JM
6427
6428 /* Otherwise, a vector of template arguments. */
4393e105 6429 return tsubst_template_arg_vector (t, args, complain);
8d08fdba 6430
8d08fdba
MS
6431 case POINTER_TYPE:
6432 case REFERENCE_TYPE:
6433 {
8d08fdba 6434 enum tree_code code;
79a7c7fa 6435
8d08fdba
MS
6436 if (type == TREE_TYPE (t))
6437 return t;
6438
6439 code = TREE_CODE (t);
4393e105
MM
6440
6441
6442 /* [temp.deduct]
6443
6444 Type deduction may fail for any of the following
6445 reasons:
6446
6447 -- Attempting to create a pointer to reference type.
6448 -- Attempting to create a reference to a reference type or
6449 a reference to void. */
0ecfe0b4
JM
6450 if (TREE_CODE (type) == REFERENCE_TYPE
6451 || (code == REFERENCE_TYPE && TREE_CODE (type) == VOID_TYPE))
79a7c7fa
JM
6452 {
6453 static int last_line = 0;
6454 static char* last_file = 0;
6455
6456 /* We keep track of the last time we issued this error
6457 message to avoid spewing a ton of messages during a
6458 single bad template instantiation. */
4393e105
MM
6459 if (complain && (last_line != lineno ||
6460 last_file != input_filename))
79a7c7fa 6461 {
0ecfe0b4
JM
6462 if (TREE_CODE (type) == VOID_TYPE)
6463 cp_error ("forming reference to void");
6464 else
6465 cp_error ("forming %s to reference type `%T'",
6466 (code == POINTER_TYPE) ? "pointer" : "reference",
6467 type);
79a7c7fa
JM
6468 last_line = lineno;
6469 last_file = input_filename;
6470 }
6471
4393e105 6472 return error_mark_node;
79a7c7fa
JM
6473 }
6474 else if (code == POINTER_TYPE)
8d08fdba
MS
6475 r = build_pointer_type (type);
6476 else
6477 r = build_reference_type (type);
adecb3f4 6478 r = cp_build_qualified_type_real (r, TYPE_QUALS (t), complain);
79a7c7fa 6479
8d08fdba
MS
6480 /* Will this ever be needed for TYPE_..._TO values? */
6481 layout_type (r);
6482 return r;
6483 }
a4443a08 6484 case OFFSET_TYPE:
0ecfe0b4 6485 {
4393e105
MM
6486 r = tsubst (TYPE_OFFSET_BASETYPE (t), args, complain, in_decl);
6487 if (r == error_mark_node || !IS_AGGR_TYPE (r))
6488 {
6489 /* [temp.deduct]
6490
6491 Type deduction may fail for any of the following
6492 reasons:
6493
6494 -- Attempting to create "pointer to member of T" when T
6495 is not a class type. */
6496 if (complain)
6497 cp_error ("creating pointer to member of non-class type `%T'",
6498 r);
6499 return error_mark_node;
6500 }
0ecfe0b4
JM
6501 return build_offset_type (r, type);
6502 }
8d08fdba
MS
6503 case FUNCTION_TYPE:
6504 case METHOD_TYPE:
6505 {
c11b6f21 6506 tree fntype;
4393e105 6507 tree raises;
8d08fdba 6508
4393e105
MM
6509 fntype = tsubst_function_type (t, args, complain, in_decl);
6510 if (fntype == error_mark_node)
6511 return error_mark_node;
cabc336a
MM
6512
6513 /* Substitue the exception specification. */
6514 raises = TYPE_RAISES_EXCEPTIONS (t);
c11b6f21
MS
6515 if (raises)
6516 {
4cc1d462
NS
6517 tree list = NULL_TREE;
6518
6519 if (! TREE_VALUE (raises))
6520 list = raises;
6521 else
6522 for (; raises != NULL_TREE; raises = TREE_CHAIN (raises))
6523 {
6524 tree spec = TREE_VALUE (raises);
6525
6526 spec = tsubst (spec, args, complain, in_decl);
6527 if (spec == error_mark_node)
6528 return spec;
6529 list = add_exception_specifier (list, spec, complain);
6530 }
6531 fntype = build_exception_variant (fntype, list);
c11b6f21
MS
6532 }
6533 return fntype;
8d08fdba
MS
6534 }
6535 case ARRAY_TYPE:
6536 {
4393e105
MM
6537 tree domain = tsubst (TYPE_DOMAIN (t), args, complain, in_decl);
6538 if (domain == error_mark_node)
6539 return error_mark_node;
6540
6541 /* As an optimization, we avoid regenerating the array type if
6542 it will obviously be the same as T. */
8d08fdba
MS
6543 if (type == TREE_TYPE (t) && domain == TYPE_DOMAIN (t))
6544 return t;
0ecfe0b4 6545
4393e105
MM
6546 /* These checks should match the ones in grokdeclarator.
6547
6548 [temp.deduct]
6549
6550 The deduction may fail for any of the following reasons:
6551
6552 -- Attempting to create an array with an element type that
6553 is void, a function type, or a reference type. */
6554 if (TREE_CODE (type) == VOID_TYPE
6555 || TREE_CODE (type) == FUNCTION_TYPE
6556 || TREE_CODE (type) == REFERENCE_TYPE)
0ecfe0b4 6557 {
4393e105
MM
6558 if (complain)
6559 cp_error ("creating array of `%T'", type);
6560 return error_mark_node;
0ecfe0b4
JM
6561 }
6562
8d08fdba
MS
6563 r = build_cplus_array_type (type, domain);
6564 return r;
6565 }
6566
8d08fdba 6567 case PLUS_EXPR:
5566b478 6568 case MINUS_EXPR:
4393e105
MM
6569 {
6570 tree e1 = tsubst (TREE_OPERAND (t, 0), args, complain,
6571 in_decl);
6572 tree e2 = tsubst (TREE_OPERAND (t, 1), args, complain,
6573 in_decl);
6574
6575 if (e1 == error_mark_node || e2 == error_mark_node)
6576 return error_mark_node;
6577
6578 return fold (build (TREE_CODE (t), TREE_TYPE (t), e1, e2));
6579 }
8d08fdba
MS
6580
6581 case NEGATE_EXPR:
6582 case NOP_EXPR:
4393e105
MM
6583 {
6584 tree e = tsubst (TREE_OPERAND (t, 0), args, complain,
6585 in_decl);
6586 if (e == error_mark_node)
6587 return error_mark_node;
6588
6589 return fold (build (TREE_CODE (t), TREE_TYPE (t), e));
6590 }
8d08fdba 6591
5566b478
MS
6592 case TYPENAME_TYPE:
6593 {
4393e105
MM
6594 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
6595 in_decl, /*entering_scope=*/1);
6596 tree f = tsubst_copy (TYPENAME_TYPE_FULLNAME (t), args,
6597 complain, in_decl);
6598
6599 if (ctx == error_mark_node || f == error_mark_node)
6600 return error_mark_node;
ae58fa02 6601
bf8f3f93
MM
6602 if (!IS_AGGR_TYPE (ctx))
6603 {
6604 if (complain)
6605 cp_error ("`%T' is not a class, struct, or union type",
6606 ctx);
6607 return error_mark_node;
6608 }
6609 else if (!uses_template_parms (ctx) && !TYPE_BEING_DEFINED (ctx))
6610 {
6611 /* Normally, make_typename_type does not require that the CTX
6612 have complete type in order to allow things like:
ae58fa02 6613
bf8f3f93 6614 template <class T> struct S { typename S<T>::X Y; };
ae58fa02 6615
bf8f3f93
MM
6616 But, such constructs have already been resolved by this
6617 point, so here CTX really should have complete type, unless
6618 it's a partial instantiation. */
4393e105
MM
6619 ctx = complete_type (ctx);
6620 if (!TYPE_SIZE (ctx))
6621 {
6622 if (complain)
6623 incomplete_type_error (NULL_TREE, ctx);
6624 return error_mark_node;
6625 }
6626 }
ae58fa02 6627
3baa501d 6628 f = make_typename_type (ctx, f, complain);
f0bcd168
MM
6629 if (f == error_mark_node)
6630 return f;
adecb3f4
MM
6631 return cp_build_qualified_type_real (f,
6632 CP_TYPE_QUALS (f)
6633 | CP_TYPE_QUALS (t),
6634 complain);
5566b478
MS
6635 }
6636
6637 case INDIRECT_REF:
4393e105
MM
6638 {
6639 tree e = tsubst (TREE_OPERAND (t, 0), args, complain,
6640 in_decl);
6641 if (e == error_mark_node)
6642 return error_mark_node;
6643 return make_pointer_declarator (type, e);
6644 }
6645
5566b478 6646 case ADDR_EXPR:
4393e105
MM
6647 {
6648 tree e = tsubst (TREE_OPERAND (t, 0), args, complain,
6649 in_decl);
6650 if (e == error_mark_node)
6651 return error_mark_node;
6652 return make_reference_declarator (type, e);
6653 }
5566b478
MS
6654
6655 case ARRAY_REF:
4393e105
MM
6656 {
6657 tree e1 = tsubst (TREE_OPERAND (t, 0), args, complain,
6658 in_decl);
6fb2c05a
JM
6659 tree e2 = tsubst_expr (TREE_OPERAND (t, 1), args, complain,
6660 in_decl);
4393e105
MM
6661 if (e1 == error_mark_node || e2 == error_mark_node)
6662 return error_mark_node;
6663
6664 return build_parse_node (ARRAY_REF, e1, e2, tsubst_expr);
6665 }
5566b478
MS
6666
6667 case CALL_EXPR:
4393e105
MM
6668 {
6669 tree e1 = tsubst (TREE_OPERAND (t, 0), args, complain,
6670 in_decl);
43f887f9
MM
6671 tree e2 = (tsubst_call_declarator_parms
6672 (CALL_DECLARATOR_PARMS (t), args, complain, in_decl));
6673 tree e3 = tsubst (CALL_DECLARATOR_EXCEPTION_SPEC (t), args,
6674 complain, in_decl);
4393e105
MM
6675
6676 if (e1 == error_mark_node || e2 == error_mark_node
6677 || e3 == error_mark_node)
6678 return error_mark_node;
6679
43f887f9 6680 return make_call_declarator (e1, e2, CALL_DECLARATOR_QUALS (t), e3);
4393e105 6681 }
5566b478 6682
fc378698 6683 case SCOPE_REF:
4393e105
MM
6684 {
6685 tree e1 = tsubst (TREE_OPERAND (t, 0), args, complain,
6686 in_decl);
6687 tree e2 = tsubst (TREE_OPERAND (t, 1), args, complain, in_decl);
6688 if (e1 == error_mark_node || e2 == error_mark_node)
6689 return error_mark_node;
6690
6691 return build_parse_node (TREE_CODE (t), e1, e2);
6692 }
fc378698 6693
b894fc05 6694 case TYPEOF_TYPE:
4393e105
MM
6695 {
6696 tree e1 = tsubst_expr (TYPE_FIELDS (t), args, complain,
6697 in_decl);
6698 if (e1 == error_mark_node)
6699 return error_mark_node;
6700
6701 return TREE_TYPE (e1);
6702 }
b894fc05 6703
f9817201
MM
6704 case FUNCTION_NAME:
6705 {
6706 const char *name;
6707 int len;
6708 tree type;
6709 tree str;
6710
6711 /* This code should match declare_hidden_char_array in
6712 c-common.c. */
6713 name = (*decl_printable_name) (current_function_decl, 2);
6714 len = strlen (name) + 1;
6715 type = build_array_type (char_type_node,
6716 build_index_type (build_int_2 (len, 0)));
6717 str = build_string (len, name);
6718 TREE_TYPE (str) = type;
6719 return str;
6720 }
6721
8d08fdba 6722 default:
5566b478 6723 sorry ("use of `%s' in template",
8d08fdba
MS
6724 tree_code_name [(int) TREE_CODE (t)]);
6725 return error_mark_node;
6726 }
6727}
6728
00d3396f
JM
6729/* Like tsubst, but deals with expressions. This function just replaces
6730 template parms; to finish processing the resultant expression, use
6731 tsubst_expr. */
6732
5566b478 6733tree
4393e105 6734tsubst_copy (t, args, complain, in_decl)
98c1c668 6735 tree t, args;
4393e105 6736 int complain;
5566b478
MS
6737 tree in_decl;
6738{
6739 enum tree_code code;
8452b1d3 6740 tree r;
8d08fdba 6741
5566b478
MS
6742 if (t == NULL_TREE || t == error_mark_node)
6743 return t;
6744
6745 code = TREE_CODE (t);
b7484fbe 6746
5566b478
MS
6747 switch (code)
6748 {
6749 case PARM_DECL:
a759e627 6750 return do_identifier (DECL_NAME (t), 0, NULL_TREE);
5566b478
MS
6751
6752 case CONST_DECL:
ed44da02
MM
6753 {
6754 tree enum_type;
6755 tree v;
6756
6757 if (!DECL_CONTEXT (t))
6758 /* This is a global enumeration constant. */
6759 return t;
6760
6761 /* Unfortunately, we cannot just call lookup_name here.
9188c363
MM
6762 Consider:
6763
6764 template <int I> int f() {
6765 enum E { a = I };
6766 struct S { void g() { E e = a; } };
6767 };
6768
6769 When we instantiate f<7>::S::g(), say, lookup_name is not
6770 clever enough to find f<7>::a. */
ed44da02 6771 enum_type
4393e105 6772 = tsubst_aggr_type (TREE_TYPE (t), args, complain, in_decl,
ed44da02
MM
6773 /*entering_scope=*/0);
6774
6775 for (v = TYPE_VALUES (enum_type);
6776 v != NULL_TREE;
6777 v = TREE_CHAIN (v))
6778 if (TREE_PURPOSE (v) == DECL_NAME (t))
6779 return TREE_VALUE (v);
6780
6781 /* We didn't find the name. That should never happen; if
6782 name-lookup found it during preliminary parsing, we
6783 should find it again here during instantiation. */
6784 my_friendly_abort (0);
6785 }
db04386f 6786 return t;
ed44da02 6787
5566b478
MS
6788 case FIELD_DECL:
6789 if (DECL_CONTEXT (t))
6790 {
0978790f 6791 tree ctx;
0978790f 6792
4393e105 6793 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
36a117a5 6794 /*entering_scope=*/1);
0978790f 6795 if (ctx != DECL_CONTEXT (t))
5566b478
MS
6796 return lookup_field (ctx, DECL_NAME (t), 0, 0);
6797 }
6798 return t;
6799
6800 case VAR_DECL:
6801 case FUNCTION_DECL:
6802 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
4393e105 6803 t = tsubst (t, args, complain, in_decl);
5566b478
MS
6804 mark_used (t);
6805 return t;
6806
98c1c668
JM
6807 case TEMPLATE_DECL:
6808 if (is_member_template (t))
4393e105 6809 return tsubst (t, args, complain, in_decl);
98c1c668
JM
6810 else
6811 return t;
6812
672476cb
MM
6813 case LOOKUP_EXPR:
6814 {
6815 /* We must tsbust into a LOOKUP_EXPR in case the names to
6816 which it refers is a conversion operator; in that case the
6817 name will change. We avoid making unnecessary copies,
6818 however. */
6819
4393e105 6820 tree id = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
672476cb
MM
6821
6822 if (id != TREE_OPERAND (t, 0))
6823 {
8452b1d3 6824 r = build_nt (LOOKUP_EXPR, id);
672476cb
MM
6825 LOOKUP_EXPR_GLOBAL (r) = LOOKUP_EXPR_GLOBAL (t);
6826 t = r;
6827 }
6828
6829 return t;
6830 }
6831
5566b478
MS
6832 case CAST_EXPR:
6833 case REINTERPRET_CAST_EXPR:
e92cc029
MS
6834 case CONST_CAST_EXPR:
6835 case STATIC_CAST_EXPR:
6836 case DYNAMIC_CAST_EXPR:
51924768 6837 case NOP_EXPR:
5566b478 6838 return build1
4393e105
MM
6839 (code, tsubst (TREE_TYPE (t), args, complain, in_decl),
6840 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl));
5566b478
MS
6841
6842 case INDIRECT_REF:
6843 case PREDECREMENT_EXPR:
6844 case PREINCREMENT_EXPR:
6845 case POSTDECREMENT_EXPR:
6846 case POSTINCREMENT_EXPR:
6847 case NEGATE_EXPR:
6848 case TRUTH_NOT_EXPR:
b87692e5 6849 case BIT_NOT_EXPR:
5566b478
MS
6850 case ADDR_EXPR:
6851 case CONVERT_EXPR: /* Unary + */
6852 case SIZEOF_EXPR:
abff8e06 6853 case ALIGNOF_EXPR:
5566b478 6854 case ARROW_EXPR:
fc378698 6855 case THROW_EXPR:
5156628f 6856 case TYPEID_EXPR:
f5733617
SS
6857 case REALPART_EXPR:
6858 case IMAGPART_EXPR:
5566b478 6859 return build1
6a629cac 6860 (code, tsubst (TREE_TYPE (t), args, complain, in_decl),
4393e105 6861 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl));
5566b478
MS
6862
6863 case PLUS_EXPR:
6864 case MINUS_EXPR:
6865 case MULT_EXPR:
6866 case TRUNC_DIV_EXPR:
6867 case CEIL_DIV_EXPR:
6868 case FLOOR_DIV_EXPR:
6869 case ROUND_DIV_EXPR:
6870 case EXACT_DIV_EXPR:
6871 case BIT_AND_EXPR:
6872 case BIT_ANDTC_EXPR:
6873 case BIT_IOR_EXPR:
6874 case BIT_XOR_EXPR:
6875 case TRUNC_MOD_EXPR:
6876 case FLOOR_MOD_EXPR:
6877 case TRUTH_ANDIF_EXPR:
6878 case TRUTH_ORIF_EXPR:
6879 case TRUTH_AND_EXPR:
6880 case TRUTH_OR_EXPR:
6881 case RSHIFT_EXPR:
6882 case LSHIFT_EXPR:
6883 case RROTATE_EXPR:
6884 case LROTATE_EXPR:
6885 case EQ_EXPR:
6886 case NE_EXPR:
6887 case MAX_EXPR:
6888 case MIN_EXPR:
6889 case LE_EXPR:
6890 case GE_EXPR:
6891 case LT_EXPR:
6892 case GT_EXPR:
6893 case COMPONENT_REF:
6894 case ARRAY_REF:
6895 case COMPOUND_EXPR:
6896 case SCOPE_REF:
6897 case DOTSTAR_EXPR:
6898 case MEMBER_REF:
6899 return build_nt
4393e105
MM
6900 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
6901 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl));
5566b478
MS
6902
6903 case CALL_EXPR:
6904 {
6905 tree fn = TREE_OPERAND (t, 0);
f84b4be9 6906 if (is_overloaded_fn (fn))
4393e105 6907 fn = tsubst_copy (get_first_fn (fn), args, complain, in_decl);
5566b478 6908 else
f84b4be9 6909 /* Sometimes FN is a LOOKUP_EXPR. */
4393e105 6910 fn = tsubst_copy (fn, args, complain, in_decl);
5566b478 6911 return build_nt
4393e105
MM
6912 (code, fn, tsubst_copy (TREE_OPERAND (t, 1), args, complain,
6913 in_decl),
5566b478
MS
6914 NULL_TREE);
6915 }
6916
6917 case METHOD_CALL_EXPR:
6918 {
6919 tree name = TREE_OPERAND (t, 0);
6920 if (TREE_CODE (name) == BIT_NOT_EXPR)
6921 {
4393e105
MM
6922 name = tsubst_copy (TREE_OPERAND (name, 0), args,
6923 complain, in_decl);
7bae46f4 6924 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
5566b478
MS
6925 }
6926 else if (TREE_CODE (name) == SCOPE_REF
6927 && TREE_CODE (TREE_OPERAND (name, 1)) == BIT_NOT_EXPR)
6928 {
4393e105
MM
6929 tree base = tsubst_copy (TREE_OPERAND (name, 0), args,
6930 complain, in_decl);
5566b478 6931 name = TREE_OPERAND (name, 1);
4393e105
MM
6932 name = tsubst_copy (TREE_OPERAND (name, 0), args,
6933 complain, in_decl);
11686454 6934 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
5566b478
MS
6935 name = build_nt (SCOPE_REF, base, name);
6936 }
6937 else
4393e105 6938 name = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
5566b478 6939 return build_nt
4393e105
MM
6940 (code, name, tsubst_copy (TREE_OPERAND (t, 1), args,
6941 complain, in_decl),
6942 tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl),
5566b478
MS
6943 NULL_TREE);
6944 }
6945
558475f0
MM
6946 case STMT_EXPR:
6947 /* This processing should really occur in tsubst_expr, However,
6948 tsubst_expr does not recurse into expressions, since it
6949 assumes that there aren't any statements inside them.
6950 Instead, it simply calls build_expr_from_tree. So, we need
6951 to expand the STMT_EXPR here. */
6952 if (!processing_template_decl)
6953 {
b5ac18ea 6954 tree stmt_expr = begin_stmt_expr ();
447cfcb9
MM
6955 tsubst_expr (STMT_EXPR_STMT (t), args,
6956 complain, in_decl);
b5ac18ea 6957 return finish_stmt_expr (stmt_expr);
558475f0 6958 }
9d9169de
MM
6959
6960 return t;
558475f0 6961
5566b478
MS
6962 case COND_EXPR:
6963 case MODOP_EXPR:
40242ccf 6964 case PSEUDO_DTOR_EXPR:
67da3287 6965 {
8452b1d3 6966 r = build_nt
4393e105
MM
6967 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
6968 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl),
6969 tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl));
67da3287
MM
6970 return r;
6971 }
5566b478
MS
6972
6973 case NEW_EXPR:
6974 {
8452b1d3 6975 r = build_nt
4393e105
MM
6976 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
6977 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl),
6978 tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl));
5566b478
MS
6979 NEW_EXPR_USE_GLOBAL (r) = NEW_EXPR_USE_GLOBAL (t);
6980 return r;
6981 }
6982
6983 case DELETE_EXPR:
6984 {
8452b1d3 6985 r = build_nt
4393e105
MM
6986 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
6987 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl));
5566b478
MS
6988 DELETE_EXPR_USE_GLOBAL (r) = DELETE_EXPR_USE_GLOBAL (t);
6989 DELETE_EXPR_USE_VEC (r) = DELETE_EXPR_USE_VEC (t);
6990 return r;
6991 }
6992
386b8a85
JM
6993 case TEMPLATE_ID_EXPR:
6994 {
00d3396f 6995 /* Substituted template arguments */
4393e105
MM
6996 tree targs = tsubst_copy (TREE_OPERAND (t, 1), args, complain,
6997 in_decl);
856216bb
MM
6998
6999 if (targs && TREE_CODE (targs) == TREE_LIST)
7000 {
7001 tree chain;
7002 for (chain = targs; chain; chain = TREE_CHAIN (chain))
7003 TREE_VALUE (chain) = maybe_fold_nontype_arg (TREE_VALUE (chain));
7004 }
7005 else if (targs)
7006 {
7007 int i;
7008 for (i = 0; i < TREE_VEC_LENGTH (targs); ++i)
7009 TREE_VEC_ELT (targs, i)
7010 = maybe_fold_nontype_arg (TREE_VEC_ELT (targs, i));
7011 }
00d3396f
JM
7012
7013 return lookup_template_function
4393e105 7014 (tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl), targs);
386b8a85
JM
7015 }
7016
5566b478
MS
7017 case TREE_LIST:
7018 {
7019 tree purpose, value, chain;
7020
7021 if (t == void_list_node)
7022 return t;
7023
7024 purpose = TREE_PURPOSE (t);
7025 if (purpose)
4393e105 7026 purpose = tsubst_copy (purpose, args, complain, in_decl);
5566b478
MS
7027 value = TREE_VALUE (t);
7028 if (value)
4393e105 7029 value = tsubst_copy (value, args, complain, in_decl);
5566b478
MS
7030 chain = TREE_CHAIN (t);
7031 if (chain && chain != void_type_node)
4393e105 7032 chain = tsubst_copy (chain, args, complain, in_decl);
5566b478
MS
7033 if (purpose == TREE_PURPOSE (t)
7034 && value == TREE_VALUE (t)
7035 && chain == TREE_CHAIN (t))
7036 return t;
7037 return tree_cons (purpose, value, chain);
7038 }
7039
7040 case RECORD_TYPE:
7041 case UNION_TYPE:
7042 case ENUMERAL_TYPE:
7043 case INTEGER_TYPE:
7044 case TEMPLATE_TYPE_PARM:
73b0fce8 7045 case TEMPLATE_TEMPLATE_PARM:
f84b4be9 7046 case TEMPLATE_PARM_INDEX:
5566b478
MS
7047 case POINTER_TYPE:
7048 case REFERENCE_TYPE:
7049 case OFFSET_TYPE:
7050 case FUNCTION_TYPE:
7051 case METHOD_TYPE:
7052 case ARRAY_TYPE:
7053 case TYPENAME_TYPE:
f84b4be9 7054 case TYPE_DECL:
4393e105 7055 return tsubst (t, args, complain, in_decl);
5566b478 7056
e92cc029 7057 case IDENTIFIER_NODE:
8e710788
BK
7058 if (IDENTIFIER_TYPENAME_P (t)
7059 /* Make sure it's not just a variable named `__opr', for instance,
7060 which can occur in some existing code. */
7061 && TREE_TYPE (t))
e92cc029 7062 return build_typename_overload
4393e105 7063 (tsubst (TREE_TYPE (t), args, complain, in_decl));
e92cc029
MS
7064 else
7065 return t;
7066
5156628f 7067 case CONSTRUCTOR:
8452b1d3
JM
7068 {
7069 r = build
4393e105
MM
7070 (CONSTRUCTOR, tsubst (TREE_TYPE (t), args, complain, in_decl),
7071 NULL_TREE, tsubst_copy (CONSTRUCTOR_ELTS (t), args,
7072 complain, in_decl));
8452b1d3
JM
7073 TREE_HAS_CONSTRUCTOR (r) = TREE_HAS_CONSTRUCTOR (t);
7074 return r;
7075 }
5156628f 7076
371534a9
MM
7077 case VA_ARG_EXPR:
7078 return build_va_arg (tsubst_copy (TREE_OPERAND (t, 0), args, complain,
7079 in_decl),
7080 tsubst (TREE_TYPE (t), args, complain, in_decl));
f9817201
MM
7081
7082 case FUNCTION_NAME:
7083 return tsubst (t, args, complain, in_decl);
7084
5566b478
MS
7085 default:
7086 return t;
7087 }
7088}
7089
558475f0 7090/* Like tsubst_copy, but also does semantic processing. */
00d3396f 7091
5566b478 7092tree
4393e105 7093tsubst_expr (t, args, complain, in_decl)
98c1c668 7094 tree t, args;
4393e105 7095 int complain;
5566b478
MS
7096 tree in_decl;
7097{
558475f0
MM
7098 tree stmt;
7099
5566b478
MS
7100 if (t == NULL_TREE || t == error_mark_node)
7101 return t;
7102
5156628f 7103 if (processing_template_decl)
4393e105 7104 return tsubst_copy (t, args, complain, in_decl);
5566b478
MS
7105
7106 switch (TREE_CODE (t))
8d08fdba 7107 {
558475f0 7108 case RETURN_INIT:
a7e4cfa0 7109 prep_stmt (t);
558475f0
MM
7110 finish_named_return_value
7111 (TREE_OPERAND (t, 0),
7112 tsubst_expr (TREE_OPERAND (t, 1), args, /*complain=*/1, in_decl));
7113 tsubst_expr (TREE_CHAIN (t), args, complain, in_decl);
7114 break;
7115
7116 case CTOR_INITIALIZER:
a7e4cfa0 7117 prep_stmt (t);
558475f0
MM
7118 current_member_init_list
7119 = tsubst_expr_values (TREE_OPERAND (t, 0), args);
7120 current_base_init_list
7121 = tsubst_expr_values (TREE_OPERAND (t, 1), args);
7122 setup_vtbl_ptr ();
7123 tsubst_expr (TREE_CHAIN (t), args, complain, in_decl);
7124 break;
7125
5566b478 7126 case RETURN_STMT:
a7e4cfa0 7127 prep_stmt (t);
ad321293 7128 finish_return_stmt (tsubst_expr (RETURN_EXPR (t),
4393e105 7129 args, complain, in_decl));
5566b478
MS
7130 break;
7131
7132 case EXPR_STMT:
a7e4cfa0 7133 prep_stmt (t);
ad321293 7134 finish_expr_stmt (tsubst_expr (EXPR_STMT_EXPR (t),
4393e105 7135 args, complain, in_decl));
5566b478
MS
7136 break;
7137
7138 case DECL_STMT:
7139 {
e0942dcd
MM
7140 tree decl;
7141 tree init;
5566b478 7142
a7e4cfa0 7143 prep_stmt (t);
e0942dcd 7144 decl = DECL_STMT_DECL (t);
acef433b
MM
7145 if (TREE_CODE (decl) == LABEL_DECL)
7146 finish_label_decl (DECL_NAME (decl));
7147 else
7148 {
7149 init = DECL_INITIAL (decl);
7150 decl = tsubst (decl, args, complain, in_decl);
7151 init = tsubst_expr (init, args, complain, in_decl);
24bef158
MM
7152 if (init)
7153 DECL_INITIAL (decl) = error_mark_node;
b7b8bcd2
MM
7154 /* By marking the declaration as instantiated, we avoid
7155 trying to instantiate it. Since instantiate_decl can't
7156 handle local variables, and since we've already done
7157 all that needs to be done, that's the right thing to
7158 do. */
acef433b
MM
7159 if (TREE_CODE (decl) == VAR_DECL)
7160 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
7161 maybe_push_decl (decl);
cd9f6678 7162 cp_finish_decl (decl, init, NULL_TREE, 0);
acef433b 7163 }
e0942dcd 7164 return decl;
5566b478 7165 }
8d08fdba 7166
5566b478
MS
7167 case FOR_STMT:
7168 {
7169 tree tmp;
a7e4cfa0 7170 prep_stmt (t);
5566b478 7171
558475f0 7172 stmt = begin_for_stmt ();
ad321293 7173 for (tmp = FOR_INIT_STMT (t); tmp; tmp = TREE_CHAIN (tmp))
4393e105 7174 tsubst_expr (tmp, args, complain, in_decl);
558475f0 7175 finish_for_init_stmt (stmt);
ad321293 7176 finish_for_cond (tsubst_expr (FOR_COND (t), args,
4393e105 7177 complain, in_decl),
558475f0 7178 stmt);
4393e105 7179 tmp = tsubst_expr (FOR_EXPR (t), args, complain, in_decl);
558475f0 7180 finish_for_expr (tmp, stmt);
4393e105 7181 tsubst_expr (FOR_BODY (t), args, complain, in_decl);
558475f0 7182 finish_for_stmt (tmp, stmt);
5566b478
MS
7183 }
7184 break;
8d08fdba 7185
5566b478
MS
7186 case WHILE_STMT:
7187 {
a7e4cfa0 7188 prep_stmt (t);
558475f0 7189 stmt = begin_while_stmt ();
ad321293 7190 finish_while_stmt_cond (tsubst_expr (WHILE_COND (t),
4393e105 7191 args, complain, in_decl),
558475f0 7192 stmt);
4393e105 7193 tsubst_expr (WHILE_BODY (t), args, complain, in_decl);
558475f0 7194 finish_while_stmt (stmt);
5566b478
MS
7195 }
7196 break;
8d08fdba 7197
5566b478
MS
7198 case DO_STMT:
7199 {
a7e4cfa0 7200 prep_stmt (t);
558475f0 7201 stmt = begin_do_stmt ();
4393e105 7202 tsubst_expr (DO_BODY (t), args, complain, in_decl);
558475f0 7203 finish_do_body (stmt);
ad321293 7204 finish_do_stmt (tsubst_expr (DO_COND (t), args,
4393e105 7205 complain, in_decl),
558475f0 7206 stmt);
5566b478
MS
7207 }
7208 break;
a0a33927 7209
5566b478 7210 case IF_STMT:
8d08fdba 7211 {
5566b478 7212 tree tmp;
5566b478 7213
a7e4cfa0 7214 prep_stmt (t);
558475f0 7215 stmt = begin_if_stmt ();
ad321293 7216 finish_if_stmt_cond (tsubst_expr (IF_COND (t),
4393e105 7217 args, complain, in_decl),
558475f0 7218 stmt);
db5ae43f 7219
ad321293 7220 if (tmp = THEN_CLAUSE (t), tmp)
db5ae43f 7221 {
4393e105 7222 tsubst_expr (tmp, args, complain, in_decl);
558475f0 7223 finish_then_clause (stmt);
db5ae43f
MS
7224 }
7225
ad321293
MM
7226 if (tmp = ELSE_CLAUSE (t), tmp)
7227 {
7228 begin_else_clause ();
4393e105 7229 tsubst_expr (tmp, args, complain, in_decl);
558475f0 7230 finish_else_clause (stmt);
ad321293 7231 }
8d08fdba 7232
ad321293 7233 finish_if_stmt ();
8d08fdba 7234 }
5566b478 7235 break;
8d08fdba 7236
5566b478
MS
7237 case COMPOUND_STMT:
7238 {
ad321293 7239 tree substmt;
8d08fdba 7240
a7e4cfa0 7241 prep_stmt (t);
558475f0 7242 stmt = begin_compound_stmt (COMPOUND_STMT_NO_SCOPE (t));
ad321293
MM
7243 for (substmt = COMPOUND_BODY (t);
7244 substmt != NULL_TREE;
7245 substmt = TREE_CHAIN (substmt))
4393e105 7246 tsubst_expr (substmt, args, complain, in_decl);
558475f0 7247 return finish_compound_stmt (COMPOUND_STMT_NO_SCOPE (t), stmt);
5566b478
MS
7248 }
7249 break;
8d08fdba 7250
5566b478 7251 case BREAK_STMT:
a7e4cfa0 7252 prep_stmt (t);
ad321293 7253 finish_break_stmt ();
5566b478 7254 break;
8d08fdba 7255
6467930b 7256 case CONTINUE_STMT:
a7e4cfa0 7257 prep_stmt (t);
ad321293 7258 finish_continue_stmt ();
6467930b
MS
7259 break;
7260
5566b478
MS
7261 case SWITCH_STMT:
7262 {
558475f0 7263 tree val;
5566b478 7264
a7e4cfa0 7265 prep_stmt (t);
527f0080 7266 stmt = begin_switch_stmt ();
4393e105 7267 val = tsubst_expr (SWITCH_COND (t), args, complain, in_decl);
527f0080 7268 finish_switch_cond (val, stmt);
558475f0
MM
7269 tsubst_expr (SWITCH_BODY (t), args, complain, in_decl);
7270 finish_switch_stmt (val, stmt);
5566b478
MS
7271 }
7272 break;
7273
7274 case CASE_LABEL:
a7e4cfa0 7275 prep_stmt (t);
4393e105
MM
7276 finish_case_label (tsubst_expr (CASE_LOW (t), args, complain, in_decl),
7277 tsubst_expr (CASE_HIGH (t), args, complain, in_decl));
5566b478
MS
7278 break;
7279
acef433b
MM
7280 case LABEL_STMT:
7281 lineno = STMT_LINENO (t);
7282 finish_label_stmt (DECL_NAME (LABEL_STMT_LABEL (t)));
5566b478
MS
7283 break;
7284
7285 case GOTO_STMT:
a7e4cfa0 7286 prep_stmt (t);
aa09da44 7287 t = GOTO_DESTINATION (t);
3fa56191 7288 if (TREE_CODE (t) != LABEL_DECL)
aa09da44
MM
7289 /* Computed goto's must be tsubst'd into. On the other hand,
7290 non-computed gotos must not be; the identifier in question
7291 will have no binding. */
4393e105 7292 t = tsubst_expr (t, args, complain, in_decl);
3fa56191
MM
7293 else
7294 t = DECL_NAME (t);
aa09da44 7295 finish_goto_stmt (t);
ad321293
MM
7296 break;
7297
7298 case ASM_STMT:
a7e4cfa0 7299 prep_stmt (t);
3ebc5c52 7300 finish_asm_stmt (ASM_CV_QUAL (t),
4393e105
MM
7301 tsubst_expr (ASM_STRING (t), args, complain, in_decl),
7302 tsubst_expr (ASM_OUTPUTS (t), args, complain, in_decl),
7303 tsubst_expr (ASM_INPUTS (t), args, complain, in_decl),
7304 tsubst_expr (ASM_CLOBBERS (t), args, complain,
7305 in_decl));
5566b478 7306 break;
faf5394a
MS
7307
7308 case TRY_BLOCK:
a7e4cfa0 7309 prep_stmt (t);
f1dedc31 7310 if (CLEANUP_P (t))
62409b39 7311 {
57b52417 7312 stmt = begin_try_block ();
62409b39
MM
7313 tsubst_expr (TRY_STMTS (t), args, complain, in_decl);
7314 finish_cleanup_try_block (stmt);
7315 finish_cleanup (tsubst_expr (TRY_HANDLERS (t), args,
7316 complain, in_decl),
7317 stmt);
7318 }
f1dedc31
MM
7319 else
7320 {
62409b39
MM
7321 tree handler;
7322
7323 if (FN_TRY_BLOCK_P (t))
7324 stmt = begin_function_try_block ();
7325 else
7326 stmt = begin_try_block ();
7327
7328 tsubst_expr (TRY_STMTS (t), args, complain, in_decl);
7329
7330 if (FN_TRY_BLOCK_P (t))
7331 finish_function_try_block (stmt);
7332 else
7333 finish_try_block (stmt);
7334
7335 handler = TRY_HANDLERS (t);
f1dedc31
MM
7336 for (; handler; handler = TREE_CHAIN (handler))
7337 tsubst_expr (handler, args, complain, in_decl);
84df082b
MM
7338 if (FN_TRY_BLOCK_P (t))
7339 finish_function_handler_sequence (stmt);
7340 else
7341 finish_handler_sequence (stmt);
f1dedc31 7342 }
faf5394a 7343 break;
b35d4555 7344
faf5394a 7345 case HANDLER:
b35d4555
MM
7346 {
7347 tree decl;
7348 tree blocks;
7349
7350 prep_stmt (t);
7351 stmt = begin_handler ();
7352 if (HANDLER_PARMS (t))
7353 {
7354 decl = DECL_STMT_DECL (HANDLER_PARMS (t));
7355 decl = tsubst (decl, args, complain, in_decl);
f8191e64
MM
7356 /* Prevent instantiate_decl from trying to instantiate
7357 this variable. We've already done all that needs to be
7358 done. */
7359 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
b35d4555
MM
7360 }
7361 else
7362 decl = NULL_TREE;
7363 blocks = finish_handler_parms (decl, stmt);
7364 tsubst_expr (HANDLER_BODY (t), args, complain, in_decl);
7365 finish_handler (blocks, stmt);
7366 }
faf5394a
MS
7367 break;
7368
b87692e5 7369 case TAG_DEFN:
a7e4cfa0 7370 prep_stmt (t);
b87692e5 7371 t = TREE_TYPE (t);
ae673f14 7372 tsubst (t, args, complain, NULL_TREE);
b87692e5
MS
7373 break;
7374
5566b478 7375 default:
4393e105 7376 return build_expr_from_tree (tsubst_copy (t, args, complain, in_decl));
5566b478
MS
7377 }
7378 return NULL_TREE;
8d08fdba
MS
7379}
7380
6ba89f8e 7381/* Instantiate the indicated variable or function template TMPL with
36a117a5
MM
7382 the template arguments in TARG_PTR. */
7383
5566b478
MS
7384tree
7385instantiate_template (tmpl, targ_ptr)
98c1c668 7386 tree tmpl, targ_ptr;
8d08fdba 7387{
5566b478 7388 tree fndecl;
36a117a5
MM
7389 tree gen_tmpl;
7390 tree spec;
5566b478 7391 int i, len;
36a117a5 7392 tree inner_args;
5566b478 7393
27fafc8d
JM
7394 if (tmpl == error_mark_node)
7395 return error_mark_node;
7396
386b8a85
JM
7397 my_friendly_assert (TREE_CODE (tmpl) == TEMPLATE_DECL, 283);
7398
36a117a5
MM
7399 /* Check to see if we already have this specialization. */
7400 spec = retrieve_specialization (tmpl, targ_ptr);
7401 if (spec != NULL_TREE)
7402 return spec;
7403
7404 if (DECL_TEMPLATE_INFO (tmpl))
386b8a85 7405 {
36a117a5
MM
7406 /* The TMPL is a partial instantiation. To get a full set of
7407 arguments we must add the arguments used to perform the
7408 partial instantiation. */
7409 targ_ptr = add_outermost_template_args (DECL_TI_ARGS (tmpl),
7410 targ_ptr);
7411 gen_tmpl = most_general_template (tmpl);
7412
7413 /* Check to see if we already have this specialization. */
7414 spec = retrieve_specialization (gen_tmpl, targ_ptr);
75650646
MM
7415 if (spec != NULL_TREE)
7416 return spec;
386b8a85 7417 }
36a117a5
MM
7418 else
7419 gen_tmpl = tmpl;
386b8a85 7420
36a117a5
MM
7421 len = DECL_NTPARMS (gen_tmpl);
7422 inner_args = innermost_args (targ_ptr);
5566b478
MS
7423 i = len;
7424 while (i--)
8d08fdba 7425 {
36a117a5 7426 tree t = TREE_VEC_ELT (inner_args, i);
5566b478
MS
7427 if (TREE_CODE_CLASS (TREE_CODE (t)) == 't')
7428 {
7429 tree nt = target_type (t);
ec255269 7430 if (IS_AGGR_TYPE (nt) && decl_function_context (TYPE_MAIN_DECL (nt)))
5566b478 7431 {
8251199e
JM
7432 cp_error ("type `%T' composed from a local class is not a valid template-argument", t);
7433 cp_error (" trying to instantiate `%D'", gen_tmpl);
5566b478
MS
7434 fndecl = error_mark_node;
7435 goto out;
7436 }
7437 }
8d08fdba
MS
7438 }
7439
5566b478 7440 /* substitute template parameters */
4393e105 7441 fndecl = tsubst (DECL_RESULT (gen_tmpl), targ_ptr, /*complain=*/1, gen_tmpl);
36a117a5
MM
7442 /* The DECL_TI_TEMPLATE should always be the immediate parent
7443 template, not the most general template. */
7444 DECL_TI_TEMPLATE (fndecl) = tmpl;
8d08fdba 7445
824b9a4c
MS
7446 if (flag_external_templates)
7447 add_pending_template (fndecl);
7448
5566b478 7449 out:
5566b478 7450 return fndecl;
8d08fdba 7451}
5566b478
MS
7452
7453/* Push the name of the class template into the scope of the instantiation. */
8d08fdba
MS
7454
7455void
5566b478
MS
7456overload_template_name (type)
7457 tree type;
8d08fdba 7458{
5566b478
MS
7459 tree id = DECL_NAME (CLASSTYPE_TI_TEMPLATE (type));
7460 tree decl;
8d08fdba 7461
5566b478
MS
7462 if (IDENTIFIER_CLASS_VALUE (id)
7463 && TREE_TYPE (IDENTIFIER_CLASS_VALUE (id)) == type)
7464 return;
8d08fdba 7465
5566b478
MS
7466 decl = build_decl (TYPE_DECL, id, type);
7467 SET_DECL_ARTIFICIAL (decl);
7468 pushdecl_class_level (decl);
8d08fdba
MS
7469}
7470
4393e105
MM
7471/* The FN is a TEMPLATE_DECL for a function. The ARGS are the
7472 arguments that are being used when calling it. TARGS is a vector
7473 into which the deduced template arguments are placed.
8d08fdba
MS
7474
7475 Return zero for success, 2 for an incomplete match that doesn't resolve
7476 all the types, and 1 for complete failure. An error message will be
7477 printed only for an incomplete match.
7478
4393e105
MM
7479 If FN is a conversion operator, RETURN_TYPE is the type desired as
7480 the result of the conversion operator.
8d08fdba 7481
4393e105 7482 TPARMS is a vector of template parameters.
9f54c803
MM
7483
7484 The EXPLICIT_TARGS are explicit template arguments provided via a
7485 template-id.
6467930b 7486
830bfa74
MM
7487 The parameter STRICT is one of:
7488
7489 DEDUCE_CALL:
7490 We are deducing arguments for a function call, as in
7491 [temp.deduct.call].
7492
7493 DEDUCE_CONV:
7494 We are deducing arguments for a conversion function, as in
7495 [temp.deduct.conv].
7496
7497 DEDUCE_EXACT:
7498 We are deducing arguments when calculating the partial
7499 ordering between specializations of function or class
7500 templates, as in [temp.func.order] and [temp.class.order],
7501 when doing an explicit instantiation as in [temp.explicit],
9f54c803 7502 when determining an explicit specialization as in
830bfa74 7503 [temp.expl.spec], or when taking the address of a function
4393e105
MM
7504 template, as in [temp.deduct.funcaddr].
7505
4393e105 7506 The other arguments are as for type_unification. */
8d08fdba
MS
7507
7508int
4393e105 7509fn_type_unification (fn, explicit_targs, targs, args, return_type,
03017874 7510 strict)
4393e105 7511 tree fn, explicit_targs, targs, args, return_type;
830bfa74 7512 unification_kind_t strict;
386b8a85 7513{
4393e105
MM
7514 tree parms;
7515 tree fntype;
adecb3f4 7516 int result;
386b8a85 7517
4393e105
MM
7518 my_friendly_assert (TREE_CODE (fn) == TEMPLATE_DECL, 0);
7519
7520 fntype = TREE_TYPE (fn);
7521 if (explicit_targs)
75650646 7522 {
4393e105
MM
7523 /* [temp.deduct]
7524
7525 The specified template arguments must match the template
7526 parameters in kind (i.e., type, nontype, template), and there
7527 must not be more arguments than there are parameters;
7528 otherwise type deduction fails.
7529
7530 Nontype arguments must match the types of the corresponding
7531 nontype template parameters, or must be convertible to the
7532 types of the corresponding nontype parameters as specified in
7533 _temp.arg.nontype_, otherwise type deduction fails.
7534
7535 All references in the function type of the function template
7536 to the corresponding template parameters are replaced by the
7537 specified template argument values. If a substitution in a
7538 template parameter or in the function type of the function
7539 template results in an invalid type, type deduction fails. */
7540 int i;
7541 tree converted_args;
75650646 7542
4393e105
MM
7543 converted_args
7544 = (coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
7545 explicit_targs, NULL_TREE, /*complain=*/0,
7546 /*require_all_arguments=*/0));
7547 if (converted_args == error_mark_node)
75650646 7548 return 1;
386b8a85 7549
4393e105
MM
7550 fntype = tsubst (fntype, converted_args, /*complain=*/0, NULL_TREE);
7551 if (fntype == error_mark_node)
7552 return 1;
050367a3 7553
4393e105
MM
7554 /* Place the explicitly specified arguments in TARGS. */
7555 for (i = 0; i < TREE_VEC_LENGTH (targs); i++)
7556 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (converted_args, i);
75650646 7557 }
4393e105
MM
7558
7559 parms = TYPE_ARG_TYPES (fntype);
386b8a85 7560
4393e105
MM
7561 if (DECL_CONV_FN_P (fn))
7562 {
7563 /* This is a template conversion operator. Use the return types
edef8288
JM
7564 as well as the argument types. We use it instead of 'this', since
7565 we could be comparing conversions from different classes. */
e1b3e07d
MM
7566 parms = tree_cons (NULL_TREE, TREE_TYPE (fntype),
7567 TREE_CHAIN (parms));
7568 args = tree_cons (NULL_TREE, return_type, TREE_CHAIN (args));
4393e105
MM
7569 }
7570
4393e105
MM
7571 /* We allow incomplete unification without an error message here
7572 because the standard doesn't seem to explicitly prohibit it. Our
7573 callers must be ready to deal with unification failures in any
7574 event. */
adecb3f4
MM
7575 result = type_unification_real (DECL_INNERMOST_TEMPLATE_PARMS (fn),
7576 targs, parms, args, /*subr=*/0,
7577 strict, /*allow_incomplete*/1);
7578
7579 if (result == 0)
7580 /* All is well so far. Now, check:
7581
7582 [temp.deduct]
7583
7584 When all template arguments have been deduced, all uses of
7585 template parameters in nondeduced contexts are replaced with
7586 the corresponding deduced argument values. If the
7587 substitution results in an invalid type, as described above,
7588 type deduction fails. */
7589 if (tsubst (TREE_TYPE (fn), targs, /*complain=*/0, NULL_TREE)
7590 == error_mark_node)
7591 return 1;
7592
7593 return result;
830bfa74
MM
7594}
7595
7596/* Adjust types before performing type deduction, as described in
7597 [temp.deduct.call] and [temp.deduct.conv]. The rules in these two
4c7d0dff
MM
7598 sections are symmetric. PARM is the type of a function parameter
7599 or the return type of the conversion function. ARG is the type of
7600 the argument passed to the call, or the type of the value
7601 intialized with the result of the conversion function. */
386b8a85 7602
e9659ab0 7603static void
830bfa74
MM
7604maybe_adjust_types_for_deduction (strict, parm, arg)
7605 unification_kind_t strict;
7606 tree* parm;
7607 tree* arg;
7608{
7609 switch (strict)
7610 {
7611 case DEDUCE_CALL:
7612 break;
7613
7614 case DEDUCE_CONV:
7615 {
4c7d0dff
MM
7616 /* Swap PARM and ARG throughout the remainder of this
7617 function; the handling is precisely symmetric since PARM
7618 will initialize ARG rather than vice versa. */
830bfa74
MM
7619 tree* temp = parm;
7620 parm = arg;
7621 arg = temp;
7622 break;
7623 }
7624
7625 case DEDUCE_EXACT:
7626 /* There is nothing to do in this case. */
7627 return;
7628
7629 default:
7630 my_friendly_abort (0);
7631 }
7632
7633 if (TREE_CODE (*parm) != REFERENCE_TYPE)
7634 {
7635 /* [temp.deduct.call]
7636
7637 If P is not a reference type:
7638
7639 --If A is an array type, the pointer type produced by the
7640 array-to-pointer standard conversion (_conv.array_) is
7641 used in place of A for type deduction; otherwise,
7642
7643 --If A is a function type, the pointer type produced by
7644 the function-to-pointer standard conversion
7645 (_conv.func_) is used in place of A for type deduction;
7646 otherwise,
7647
7648 --If A is a cv-qualified type, the top level
7649 cv-qualifiers of A's type are ignored for type
7650 deduction. */
7651 if (TREE_CODE (*arg) == ARRAY_TYPE)
7652 *arg = build_pointer_type (TREE_TYPE (*arg));
d8f8dca1 7653 else if (TREE_CODE (*arg) == FUNCTION_TYPE)
830bfa74
MM
7654 *arg = build_pointer_type (*arg);
7655 else
7656 *arg = TYPE_MAIN_VARIANT (*arg);
7657 }
7658
7659 /* [temp.deduct.call]
7660
7661 If P is a cv-qualified type, the top level cv-qualifiers
7662 of P's type are ignored for type deduction. If P is a
7663 reference type, the type referred to by P is used for
7664 type deduction. */
7665 *parm = TYPE_MAIN_VARIANT (*parm);
7666 if (TREE_CODE (*parm) == REFERENCE_TYPE)
7667 *parm = TREE_TYPE (*parm);
386b8a85
JM
7668}
7669
4393e105 7670/* Like type_unfication.
9f54c803
MM
7671
7672 If SUBR is 1, we're being called recursively (to unify the
7673 arguments of a function or method parameter of a function
7674 template). */
386b8a85 7675
4966381a 7676static int
3b3ba9f0 7677type_unification_real (tparms, targs, parms, args, subr,
4393e105 7678 strict, allow_incomplete)
050367a3 7679 tree tparms, targs, parms, args;
830bfa74
MM
7680 int subr;
7681 unification_kind_t strict;
7682 int allow_incomplete;
8d08fdba
MS
7683{
7684 tree parm, arg;
7685 int i;
7686 int ntparms = TREE_VEC_LENGTH (tparms);
830bfa74 7687 int sub_strict;
8d08fdba
MS
7688
7689 my_friendly_assert (TREE_CODE (tparms) == TREE_VEC, 289);
386b8a85
JM
7690 my_friendly_assert (parms == NULL_TREE
7691 || TREE_CODE (parms) == TREE_LIST, 290);
51c184be 7692 /* ARGS could be NULL (via a call from parse.y to
8d08fdba
MS
7693 build_x_function_call). */
7694 if (args)
7695 my_friendly_assert (TREE_CODE (args) == TREE_LIST, 291);
7696 my_friendly_assert (ntparms > 0, 292);
7697
830bfa74
MM
7698 switch (strict)
7699 {
7700 case DEDUCE_CALL:
7701 sub_strict = UNIFY_ALLOW_MORE_CV_QUAL | UNIFY_ALLOW_DERIVED;
7702 break;
7703
7704 case DEDUCE_CONV:
7705 sub_strict = UNIFY_ALLOW_LESS_CV_QUAL;
7706 break;
7707
7708 case DEDUCE_EXACT:
7709 sub_strict = UNIFY_ALLOW_NONE;
7710 break;
7711
7712 default:
7713 my_friendly_abort (0);
7714 }
7715
8d08fdba
MS
7716 while (parms
7717 && parms != void_list_node
7718 && args
7719 && args != void_list_node)
7720 {
7721 parm = TREE_VALUE (parms);
7722 parms = TREE_CHAIN (parms);
7723 arg = TREE_VALUE (args);
7724 args = TREE_CHAIN (args);
7725
7726 if (arg == error_mark_node)
7727 return 1;
7728 if (arg == unknown_type_node)
34016c81
JM
7729 /* We can't deduce anything from this, but we might get all the
7730 template args from other function args. */
7731 continue;
b7484fbe 7732
03e70705
JM
7733 /* Conversions will be performed on a function argument that
7734 corresponds with a function parameter that contains only
7735 non-deducible template parameters and explicitly specified
7736 template parameters. */
7737 if (! uses_template_parms (parm))
b7484fbe 7738 {
03e70705
JM
7739 tree type;
7740
7741 if (TREE_CODE_CLASS (TREE_CODE (arg)) != 't')
7742 type = TREE_TYPE (arg);
7743 else
7744 {
7745 type = arg;
7746 arg = NULL_TREE;
7747 }
7748
830bfa74 7749 if (strict == DEDUCE_EXACT)
03e70705 7750 {
3bfdc719 7751 if (same_type_p (parm, type))
03e70705
JM
7752 continue;
7753 }
03e70705 7754 else
343c89cd
JM
7755 /* It might work; we shouldn't check now, because we might
7756 get into infinite recursion. Overload resolution will
7757 handle it. */
7758 continue;
03e70705 7759
b7484fbe
MS
7760 return 1;
7761 }
7762
8d08fdba
MS
7763 if (TREE_CODE_CLASS (TREE_CODE (arg)) != 't')
7764 {
7765 my_friendly_assert (TREE_TYPE (arg) != NULL_TREE, 293);
34016c81 7766 if (type_unknown_p (arg))
28cbf42c 7767 {
34016c81
JM
7768 /* [temp.deduct.type] A template-argument can be deduced from
7769 a pointer to function or pointer to member function
7770 argument if the set of overloaded functions does not
7771 contain function templates and at most one of a set of
7772 overloaded functions provides a unique match. */
7773
7774 if (resolve_overloaded_unification
4393e105 7775 (tparms, targs, parm, arg, strict, sub_strict)
34016c81
JM
7776 != 0)
7777 return 1;
7778 continue;
28cbf42c 7779 }
8d08fdba
MS
7780 arg = TREE_TYPE (arg);
7781 }
4393e105 7782
830bfa74
MM
7783 if (!subr)
7784 maybe_adjust_types_for_deduction (strict, &parm, &arg);
db5ae43f 7785
4393e105 7786 switch (unify (tparms, targs, parm, arg, sub_strict))
8d08fdba
MS
7787 {
7788 case 0:
7789 break;
7790 case 1:
7791 return 1;
7792 }
7793 }
7794 /* Fail if we've reached the end of the parm list, and more args
7795 are present, and the parm list isn't variadic. */
7796 if (args && args != void_list_node && parms == void_list_node)
7797 return 1;
7798 /* Fail if parms are left and they don't have default values. */
7799 if (parms
7800 && parms != void_list_node
7801 && TREE_PURPOSE (parms) == NULL_TREE)
7802 return 1;
7803 if (!subr)
7804 for (i = 0; i < ntparms; i++)
050367a3 7805 if (TREE_VEC_ELT (targs, i) == NULL_TREE)
8d08fdba 7806 {
386b8a85 7807 if (!allow_incomplete)
8251199e 7808 error ("incomplete type unification");
8d08fdba
MS
7809 return 2;
7810 }
7811 return 0;
7812}
7813
34016c81
JM
7814/* Subroutine of type_unification_real. Args are like the variables at the
7815 call site. ARG is an overloaded function (or template-id); we try
7816 deducing template args from each of the overloads, and if only one
7817 succeeds, we go with that. Modifies TARGS and returns 0 on success. */
7818
7819static int
7820resolve_overloaded_unification (tparms, targs, parm, arg, strict,
4393e105 7821 sub_strict)
34016c81
JM
7822 tree tparms, targs, parm, arg;
7823 unification_kind_t strict;
7824 int sub_strict;
34016c81
JM
7825{
7826 tree tempargs = copy_node (targs);
7827 int good = 0;
7828
7829 if (TREE_CODE (arg) == ADDR_EXPR)
7830 arg = TREE_OPERAND (arg, 0);
9f3d9e46 7831
d8f8dca1
MM
7832 if (TREE_CODE (arg) == COMPONENT_REF)
7833 /* Handle `&x' where `x' is some static or non-static member
7834 function name. */
7835 arg = TREE_OPERAND (arg, 1);
7836
05e0b2f4
JM
7837 if (TREE_CODE (arg) == OFFSET_REF)
7838 arg = TREE_OPERAND (arg, 1);
7839
9f3d9e46
JM
7840 /* Strip baselink information. */
7841 while (TREE_CODE (arg) == TREE_LIST)
7842 arg = TREE_VALUE (arg);
7843
34016c81
JM
7844 if (TREE_CODE (arg) == TEMPLATE_ID_EXPR)
7845 {
7846 /* If we got some explicit template args, we need to plug them into
7847 the affected templates before we try to unify, in case the
7848 explicit args will completely resolve the templates in question. */
7849
7850 tree expl_subargs = TREE_OPERAND (arg, 1);
7851 arg = TREE_OPERAND (arg, 0);
7852
7853 for (; arg; arg = OVL_NEXT (arg))
7854 {
7855 tree fn = OVL_CURRENT (arg);
7856 tree subargs, elem;
7857
7858 if (TREE_CODE (fn) != TEMPLATE_DECL)
7859 continue;
7860
7861 subargs = get_bindings_overload (fn, DECL_RESULT (fn), expl_subargs);
7862 if (subargs)
7863 {
4393e105
MM
7864 elem = tsubst (TREE_TYPE (fn), subargs, /*complain=*/0,
7865 NULL_TREE);
d8f8dca1
MM
7866 if (TREE_CODE (elem) == METHOD_TYPE)
7867 elem = build_ptrmemfunc_type (build_pointer_type (elem));
e97e5263 7868 good += try_one_overload (tparms, targs, tempargs, parm, elem,
4393e105 7869 strict, sub_strict);
34016c81
JM
7870 }
7871 }
7872 }
7873 else if (TREE_CODE (arg) == OVERLOAD)
7874 {
7875 for (; arg; arg = OVL_NEXT (arg))
d8f8dca1
MM
7876 {
7877 tree type = TREE_TYPE (OVL_CURRENT (arg));
7878 if (TREE_CODE (type) == METHOD_TYPE)
7879 type = build_ptrmemfunc_type (build_pointer_type (type));
7880 good += try_one_overload (tparms, targs, tempargs, parm,
7881 type,
4393e105 7882 strict, sub_strict);
d8f8dca1 7883 }
34016c81
JM
7884 }
7885 else
7886 my_friendly_abort (981006);
7887
7888 /* [temp.deduct.type] A template-argument can be deduced from a pointer
7889 to function or pointer to member function argument if the set of
7890 overloaded functions does not contain function templates and at most
7891 one of a set of overloaded functions provides a unique match.
7892
7893 So if we found multiple possibilities, we return success but don't
7894 deduce anything. */
7895
7896 if (good == 1)
7897 {
7898 int i = TREE_VEC_LENGTH (targs);
7899 for (; i--; )
7900 if (TREE_VEC_ELT (tempargs, i))
7901 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (tempargs, i);
7902 }
7903 if (good)
7904 return 0;
7905
7906 return 1;
7907}
7908
7909/* Subroutine of resolve_overloaded_unification; does deduction for a single
7910 overload. Fills TARGS with any deduced arguments, or error_mark_node if
7911 different overloads deduce different arguments for a given parm.
7912 Returns 1 on success. */
7913
7914static int
e97e5263 7915try_one_overload (tparms, orig_targs, targs, parm, arg, strict,
4393e105 7916 sub_strict)
e97e5263 7917 tree tparms, orig_targs, targs, parm, arg;
34016c81
JM
7918 unification_kind_t strict;
7919 int sub_strict;
34016c81
JM
7920{
7921 int nargs;
7922 tree tempargs;
7923 int i;
7924
7925 /* [temp.deduct.type] A template-argument can be deduced from a pointer
7926 to function or pointer to member function argument if the set of
7927 overloaded functions does not contain function templates and at most
7928 one of a set of overloaded functions provides a unique match.
7929
7930 So if this is a template, just return success. */
7931
7932 if (uses_template_parms (arg))
7933 return 1;
7934
7935 maybe_adjust_types_for_deduction (strict, &parm, &arg);
7936
7937 /* We don't copy orig_targs for this because if we have already deduced
7938 some template args from previous args, unify would complain when we
7939 try to deduce a template parameter for the same argument, even though
7940 there isn't really a conflict. */
7941 nargs = TREE_VEC_LENGTH (targs);
f31c0a32 7942 tempargs = make_tree_vec (nargs);
34016c81 7943
4393e105 7944 if (unify (tparms, tempargs, parm, arg, sub_strict) != 0)
34016c81
JM
7945 return 0;
7946
7947 /* First make sure we didn't deduce anything that conflicts with
e97e5263 7948 explicitly specified args. */
34016c81
JM
7949 for (i = nargs; i--; )
7950 {
7951 tree elt = TREE_VEC_ELT (tempargs, i);
e97e5263 7952 tree oldelt = TREE_VEC_ELT (orig_targs, i);
34016c81
JM
7953
7954 if (elt == NULL_TREE)
7955 continue;
7956 else if (uses_template_parms (elt))
7957 {
7958 /* Since we're unifying against ourselves, we will fill in template
7959 args used in the function parm list with our own template parms.
7960 Discard them. */
7961 TREE_VEC_ELT (tempargs, i) = NULL_TREE;
7962 continue;
7963 }
7964 else if (oldelt && ! template_args_equal (oldelt, elt))
7965 return 0;
7966 }
7967
7968 for (i = nargs; i--; )
7969 {
7970 tree elt = TREE_VEC_ELT (tempargs, i);
7971
7972 if (elt)
7973 TREE_VEC_ELT (targs, i) = elt;
7974 }
7975
7976 return 1;
7977}
7978
4393e105
MM
7979/* PARM is a template class (perhaps with unbound template
7980 parameters). ARG is a fully instantiated type. If ARG can be
7981 bound to PARM, return ARG, otherwise return NULL_TREE. TPARMS and
7982 TARGS are as for unify. */
fcfb9f96
MM
7983
7984static tree
4393e105 7985try_class_unification (tparms, targs, parm, arg)
fcfb9f96
MM
7986 tree tparms;
7987 tree targs;
4393e105
MM
7988 tree parm;
7989 tree arg;
7990{
7991 int i;
7992 tree copy_of_targs;
7993
7994 if (!CLASSTYPE_TEMPLATE_INFO (arg)
7995 || CLASSTYPE_TI_TEMPLATE (arg) != CLASSTYPE_TI_TEMPLATE (parm))
7996 return NULL_TREE;
7997
7998 /* We need to make a new template argument vector for the call to
7999 unify. If we used TARGS, we'd clutter it up with the result of
8000 the attempted unification, even if this class didn't work out.
8001 We also don't want to commit ourselves to all the unifications
8002 we've already done, since unification is supposed to be done on
8003 an argument-by-argument basis. In other words, consider the
8004 following pathological case:
8005
8006 template <int I, int J, int K>
8007 struct S {};
8008
8009 template <int I, int J>
8010 struct S<I, J, 2> : public S<I, I, I>, S<J, J, J> {};
8011
8012 template <int I, int J, int K>
8013 void f(S<I, J, K>, S<I, I, I>);
8014
8015 void g() {
8016 S<0, 0, 0> s0;
8017 S<0, 1, 2> s2;
8018
8019 f(s0, s2);
8020 }
8021
8022 Now, by the time we consider the unification involving `s2', we
8023 already know that we must have `f<0, 0, 0>'. But, even though
8024 `S<0, 1, 2>' is derived from `S<0, 0, 0>', the code is not legal
8025 because there are two ways to unify base classes of S<0, 1, 2>
8026 with S<I, I, I>. If we kept the already deduced knowledge, we
8027 would reject the possibility I=1. */
f31c0a32 8028 copy_of_targs = make_tree_vec (TREE_VEC_LENGTH (targs));
4393e105
MM
8029 i = unify (tparms, copy_of_targs, CLASSTYPE_TI_ARGS (parm),
8030 CLASSTYPE_TI_ARGS (arg), UNIFY_ALLOW_NONE);
4393e105
MM
8031
8032 /* If unification failed, we're done. */
8033 if (i != 0)
8034 return NULL_TREE;
8035 else
8036 return arg;
8037}
8038
8039/* Subroutine of get_template_base. RVAL, if non-NULL, is a base we
8040 have alreay discovered to be satisfactory. ARG_BINFO is the binfo
8041 for the base class of ARG that we are currently examining. */
8042
8043static tree
8044get_template_base_recursive (tparms, targs, parm,
8045 arg_binfo, rval, flags)
8046 tree tparms;
8047 tree targs;
8048 tree arg_binfo;
fcfb9f96 8049 tree rval;
4393e105
MM
8050 tree parm;
8051 int flags;
fcfb9f96
MM
8052{
8053 tree binfos;
8054 int i, n_baselinks;
4393e105 8055 tree arg = BINFO_TYPE (arg_binfo);
fcfb9f96 8056
4393e105 8057 if (!(flags & GTB_IGNORE_TYPE))
fcfb9f96 8058 {
4393e105
MM
8059 tree r = try_class_unification (tparms, targs,
8060 parm, arg);
fcfb9f96 8061
4393e105 8062 /* If there is more than one satisfactory baseclass, then:
fcfb9f96 8063
4393e105
MM
8064 [temp.deduct.call]
8065
8066 If they yield more than one possible deduced A, the type
8067 deduction fails.
8068
8069 applies. */
8070 if (r && rval && !same_type_p (r, rval))
8071 return error_mark_node;
8072 else if (r)
8073 rval = r;
fcfb9f96
MM
8074 }
8075
4393e105 8076 binfos = BINFO_BASETYPES (arg_binfo);
fcfb9f96
MM
8077 n_baselinks = binfos ? TREE_VEC_LENGTH (binfos) : 0;
8078
8079 /* Process base types. */
8080 for (i = 0; i < n_baselinks; i++)
8081 {
8082 tree base_binfo = TREE_VEC_ELT (binfos, i);
4393e105 8083 int this_virtual;
fcfb9f96 8084
4393e105
MM
8085 /* Skip this base, if we've already seen it. */
8086 if (BINFO_MARKED (base_binfo))
8087 continue;
8088
8089 this_virtual =
8090 (flags & GTB_VIA_VIRTUAL) || TREE_VIA_VIRTUAL (base_binfo);
8091
8092 /* When searching for a non-virtual, we cannot mark virtually
8093 found binfos. */
8094 if (! this_virtual)
8095 SET_BINFO_MARKED (base_binfo);
8096
8097 rval = get_template_base_recursive (tparms, targs,
8098 parm,
8099 base_binfo,
8100 rval,
8101 GTB_VIA_VIRTUAL * this_virtual);
8102
8103 /* If we discovered more than one matching base class, we can
8104 stop now. */
8105 if (rval == error_mark_node)
8106 return error_mark_node;
fcfb9f96
MM
8107 }
8108
8109 return rval;
8110}
8111
4393e105
MM
8112/* Given a template type PARM and a class type ARG, find the unique
8113 base type in ARG that is an instance of PARM. We do not examine
8114 ARG itself; only its base-classes. If there is no appropriate base
8115 class, return NULL_TREE. If there is more than one, return
8116 error_mark_node. PARM may be the type of a partial specialization,
8117 as well as a plain template type. Used by unify. */
fcfb9f96
MM
8118
8119static tree
4393e105 8120get_template_base (tparms, targs, parm, arg)
fcfb9f96
MM
8121 tree tparms;
8122 tree targs;
4393e105
MM
8123 tree parm;
8124 tree arg;
fcfb9f96 8125{
4393e105
MM
8126 tree rval;
8127 tree arg_binfo;
fcfb9f96 8128
4393e105
MM
8129 my_friendly_assert (IS_AGGR_TYPE_CODE (TREE_CODE (arg)), 92);
8130
8131 arg_binfo = TYPE_BINFO (complete_type (arg));
8132 rval = get_template_base_recursive (tparms, targs,
8133 parm, arg_binfo,
8134 NULL_TREE,
8135 GTB_IGNORE_TYPE);
fcfb9f96 8136
4393e105
MM
8137 /* Since get_template_base_recursive marks the bases classes, we
8138 must unmark them here. */
d6479fe7 8139 dfs_walk (arg_binfo, dfs_unmark, markedp, 0);
fcfb9f96
MM
8140
8141 return rval;
8142}
8143
db2767b6
MM
8144/* Returns the level of DECL, which declares a template parameter. */
8145
e9659ab0 8146static int
db2767b6
MM
8147template_decl_level (decl)
8148 tree decl;
8149{
8150 switch (TREE_CODE (decl))
8151 {
8152 case TYPE_DECL:
8153 case TEMPLATE_DECL:
8154 return TEMPLATE_TYPE_LEVEL (TREE_TYPE (decl));
8155
8156 case PARM_DECL:
8157 return TEMPLATE_PARM_LEVEL (DECL_INITIAL (decl));
8158
8159 default:
8160 my_friendly_abort (0);
5ffe581d 8161 return 0;
db2767b6
MM
8162 }
8163}
8164
830bfa74
MM
8165/* Decide whether ARG can be unified with PARM, considering only the
8166 cv-qualifiers of each type, given STRICT as documented for unify.
8167 Returns non-zero iff the unification is OK on that basis.*/
e92cc029 8168
e9659ab0 8169static int
830bfa74
MM
8170check_cv_quals_for_unify (strict, arg, parm)
8171 int strict;
8172 tree arg;
8173 tree parm;
8174{
ef637255
MM
8175 if (!(strict & UNIFY_ALLOW_MORE_CV_QUAL)
8176 && !at_least_as_qualified_p (arg, parm))
8177 return 0;
8178
8179 if (!(strict & UNIFY_ALLOW_LESS_CV_QUAL)
8180 && !at_least_as_qualified_p (parm, arg))
8181 return 0;
8182
ef637255 8183 return 1;
830bfa74
MM
8184}
8185
8186/* Takes parameters as for type_unification. Returns 0 if the
8187 type deduction suceeds, 1 otherwise. The parameter STRICT is a
8188 bitwise or of the following flags:
8189
8190 UNIFY_ALLOW_NONE:
8191 Require an exact match between PARM and ARG.
8192 UNIFY_ALLOW_MORE_CV_QUAL:
8193 Allow the deduced ARG to be more cv-qualified than ARG.
8194 UNIFY_ALLOW_LESS_CV_QUAL:
8195 Allow the deduced ARG to be less cv-qualified than ARG.
8196 UNIFY_ALLOW_DERIVED:
8197 Allow the deduced ARG to be a template base class of ARG,
8198 or a pointer to a template base class of the type pointed to by
161c12b0
JM
8199 ARG.
8200 UNIFY_ALLOW_INTEGER:
8201 Allow any integral type to be deduced. See the TEMPLATE_PARM_INDEX
8202 case for more information. */
830bfa74 8203
e9659ab0 8204static int
4393e105 8205unify (tparms, targs, parm, arg, strict)
050367a3 8206 tree tparms, targs, parm, arg;
830bfa74 8207 int strict;
8d08fdba
MS
8208{
8209 int idx;
050367a3 8210 tree targ;
db2767b6 8211 tree tparm;
8d08fdba
MS
8212
8213 /* I don't think this will do the right thing with respect to types.
8214 But the only case I've seen it in so far has been array bounds, where
8215 signedness is the only information lost, and I think that will be
8216 okay. */
8217 while (TREE_CODE (parm) == NOP_EXPR)
8218 parm = TREE_OPERAND (parm, 0);
8219
8220 if (arg == error_mark_node)
8221 return 1;
8222 if (arg == unknown_type_node)
34016c81
JM
8223 /* We can't deduce anything from this, but we might get all the
8224 template args from other function args. */
8225 return 0;
8226
db2767b6 8227 /* If PARM uses template parameters, then we can't bail out here,
6bdb985f 8228 even if ARG == PARM, since we won't record unifications for the
db2767b6
MM
8229 template parameters. We might need them if we're trying to
8230 figure out which of two things is more specialized. */
8231 if (arg == parm && !uses_template_parms (parm))
8d08fdba
MS
8232 return 0;
8233
830bfa74
MM
8234 /* Immediately reject some pairs that won't unify because of
8235 cv-qualification mismatches. */
8236 if (TREE_CODE (arg) == TREE_CODE (parm)
49432171 8237 && TREE_CODE_CLASS (TREE_CODE (arg)) == 't'
830bfa74
MM
8238 /* We check the cv-qualifiers when unifying with template type
8239 parameters below. We want to allow ARG `const T' to unify with
8240 PARM `T' for example, when computing which of two templates
8241 is more specialized, for example. */
8242 && TREE_CODE (arg) != TEMPLATE_TYPE_PARM
8243 && !check_cv_quals_for_unify (strict, arg, parm))
49432171
JM
8244 return 1;
8245
8d08fdba
MS
8246 switch (TREE_CODE (parm))
8247 {
2ca340ae
JM
8248 case TYPENAME_TYPE:
8249 /* In a type which contains a nested-name-specifier, template
8250 argument values cannot be deduced for template parameters used
8251 within the nested-name-specifier. */
8252 return 0;
8253
8d08fdba 8254 case TEMPLATE_TYPE_PARM:
73b0fce8 8255 case TEMPLATE_TEMPLATE_PARM:
db2767b6
MM
8256 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
8257
8258 if (TEMPLATE_TYPE_LEVEL (parm)
8259 != template_decl_level (tparm))
8260 /* The PARM is not one we're trying to unify. Just check
8261 to see if it matches ARG. */
8262 return (TREE_CODE (arg) == TREE_CODE (parm)
3bfdc719 8263 && same_type_p (parm, arg)) ? 0 : 1;
73b0fce8 8264 idx = TEMPLATE_TYPE_IDX (parm);
050367a3 8265 targ = TREE_VEC_ELT (targs, idx);
db2767b6 8266 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, idx));
050367a3 8267
73b0fce8 8268 /* Check for mixed types and values. */
db2767b6
MM
8269 if ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
8270 && TREE_CODE (tparm) != TYPE_DECL)
8271 || (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
8272 && TREE_CODE (tparm) != TEMPLATE_DECL))
73b0fce8
KL
8273 return 1;
8274
db2767b6 8275 if (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
73b0fce8 8276 {
7ddedda4 8277 if (TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (parm))
db2767b6
MM
8278 {
8279 /* We arrive here when PARM does not involve template
8280 specialization. */
73b0fce8 8281
db2767b6
MM
8282 /* ARG must be constructed from a template class. */
8283 if (TREE_CODE (arg) != RECORD_TYPE || !CLASSTYPE_TEMPLATE_INFO (arg))
8284 return 1;
73b0fce8 8285
db2767b6 8286 {
7ddedda4
MM
8287 tree parmtmpl = TYPE_TI_TEMPLATE (parm);
8288 tree parmvec = TYPE_TI_ARGS (parm);
db2767b6
MM
8289 tree argvec = CLASSTYPE_TI_ARGS (arg);
8290 tree argtmplvec
8291 = DECL_INNERMOST_TEMPLATE_PARMS (CLASSTYPE_TI_TEMPLATE (arg));
8292 int i;
8293
8294 /* The parameter and argument roles have to be switched here
8295 in order to handle default arguments properly. For example,
8296 template<template <class> class TT> void f(TT<int>)
8297 should be able to accept vector<int> which comes from
744fac59 8298 template <class T, class Allocator = allocator>
73b0fce8
KL
8299 class vector. */
8300
fcfcdfc8 8301 if (coerce_template_parms (argtmplvec, parmvec, parmtmpl, 0, 1)
db2767b6
MM
8302 == error_mark_node)
8303 return 1;
73b0fce8 8304
6b9b6b15
JM
8305 /* Deduce arguments T, i from TT<T> or TT<i>.
8306 We check each element of PARMVEC and ARGVEC individually
8307 rather than the whole TREE_VEC since they can have
8308 different number of elements. */
8309
db2767b6
MM
8310 for (i = 0; i < TREE_VEC_LENGTH (parmvec); ++i)
8311 {
8312 tree t = TREE_VEC_ELT (parmvec, i);
73b0fce8 8313
830bfa74
MM
8314 if (unify (tparms, targs, t,
8315 TREE_VEC_ELT (argvec, i),
4393e105 8316 UNIFY_ALLOW_NONE))
db2767b6
MM
8317 return 1;
8318 }
73b0fce8 8319 }
db2767b6
MM
8320 arg = CLASSTYPE_TI_TEMPLATE (arg);
8321 }
8322 }
8323 else
8324 {
830bfa74
MM
8325 /* If PARM is `const T' and ARG is only `int', we don't have
8326 a match unless we are allowing additional qualification.
8327 If ARG is `const int' and PARM is just `T' that's OK;
8328 that binds `const int' to `T'. */
8329 if (!check_cv_quals_for_unify (strict | UNIFY_ALLOW_LESS_CV_QUAL,
8330 arg, parm))
db2767b6
MM
8331 return 1;
8332
830bfa74
MM
8333 /* Consider the case where ARG is `const volatile int' and
8334 PARM is `const T'. Then, T should be `volatile int'. */
8335 arg =
adecb3f4
MM
8336 cp_build_qualified_type_real (arg,
8337 CP_TYPE_QUALS (arg)
8338 & ~CP_TYPE_QUALS (parm),
8339 /*complain=*/0);
8340 if (arg == error_mark_node)
8341 return 1;
73b0fce8
KL
8342 }
8343
8344 /* Simple cases: Value already set, does match or doesn't. */
4393e105 8345 if (targ != NULL_TREE && same_type_p (targ, arg))
73b0fce8 8346 return 0;
050367a3 8347 else if (targ)
73b0fce8 8348 return 1;
61cd552e
MM
8349
8350 /* Make sure that ARG is not a variable-sized array. (Note that
8351 were talking about variable-sized arrays (like `int[n]'),
8352 rather than arrays of unknown size (like `int[]').) We'll
8353 get very confused by such a type since the bound of the array
8354 will not be computable in an instantiation. Besides, such
8355 types are not allowed in ISO C++, so we can do as we please
8356 here. */
8357 if (TREE_CODE (arg) == ARRAY_TYPE
8358 && !uses_template_parms (arg)
8359 && (TREE_CODE (TYPE_MAX_VALUE (TYPE_DOMAIN (arg)))
8360 != INTEGER_CST))
8361 return 1;
8362
050367a3 8363 TREE_VEC_ELT (targs, idx) = arg;
73b0fce8
KL
8364 return 0;
8365
f84b4be9 8366 case TEMPLATE_PARM_INDEX:
db2767b6
MM
8367 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
8368
8369 if (TEMPLATE_PARM_LEVEL (parm)
8370 != template_decl_level (tparm))
8371 /* The PARM is not one we're trying to unify. Just check
8372 to see if it matches ARG. */
8373 return (TREE_CODE (arg) == TREE_CODE (parm)
67ffc812 8374 && cp_tree_equal (parm, arg) > 0) ? 0 : 1;
db2767b6 8375
f84b4be9 8376 idx = TEMPLATE_PARM_IDX (parm);
050367a3 8377 targ = TREE_VEC_ELT (targs, idx);
db2767b6 8378
050367a3 8379 if (targ)
8d08fdba 8380 {
67ffc812 8381 int i = (cp_tree_equal (targ, arg) > 0);
312e7d50
JM
8382 if (i == 1)
8383 return 0;
8384 else if (i == 0)
8385 return 1;
8386 else
8387 my_friendly_abort (42);
8d08fdba 8388 }
8d08fdba 8389
161c12b0
JM
8390 /* [temp.deduct.type] If, in the declaration of a function template
8391 with a non-type template-parameter, the non-type
8392 template-parameter is used in an expression in the function
8393 parameter-list and, if the corresponding template-argument is
8394 deduced, the template-argument type shall match the type of the
8395 template-parameter exactly, except that a template-argument
8396 deduced from an array bound may be of any integral type. */
8397 if (same_type_p (TREE_TYPE (arg), TREE_TYPE (parm)))
8398 /* OK */;
8399 else if ((strict & UNIFY_ALLOW_INTEGER)
8400 && (TREE_CODE (TREE_TYPE (parm)) == INTEGER_TYPE
8401 || TREE_CODE (TREE_TYPE (parm)) == BOOLEAN_TYPE))
8402 /* OK */;
8403 else
8404 return 1;
8405
2a1e9fdd 8406 TREE_VEC_ELT (targs, idx) = arg;
8d08fdba
MS
8407 return 0;
8408
8409 case POINTER_TYPE:
830bfa74
MM
8410 {
8411 int sub_strict;
4ac14744 8412
830bfa74
MM
8413 if (TREE_CODE (arg) != POINTER_TYPE)
8414 return 1;
8415
8416 /* [temp.deduct.call]
8417
8418 A can be another pointer or pointer to member type that can
8419 be converted to the deduced A via a qualification
8420 conversion (_conv.qual_).
8421
8422 We pass down STRICT here rather than UNIFY_ALLOW_NONE.
8423 This will allow for additional cv-qualification of the
8424 pointed-to types if appropriate. In general, this is a bit
8425 too generous; we are only supposed to allow qualification
8426 conversions and this method will allow an ARG of char** and
8427 a deduced ARG of const char**. However, overload
8428 resolution will subsequently invalidate the candidate, so
8429 this is probably OK. */
8430 sub_strict = strict;
8431
a7a64a77 8432 if (TREE_CODE (TREE_TYPE (arg)) != RECORD_TYPE)
830bfa74
MM
8433 /* The derived-to-base conversion only persists through one
8434 level of pointers. */
8435 sub_strict &= ~UNIFY_ALLOW_DERIVED;
8436
a7a64a77
MM
8437 return unify (tparms, targs, TREE_TYPE (parm),
8438 TREE_TYPE (arg), sub_strict);
830bfa74 8439 }
8d08fdba
MS
8440
8441 case REFERENCE_TYPE:
830bfa74
MM
8442 if (TREE_CODE (arg) != REFERENCE_TYPE)
8443 return 1;
8444 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
4393e105 8445 UNIFY_ALLOW_NONE);
8d08fdba
MS
8446
8447 case ARRAY_TYPE:
8448 if (TREE_CODE (arg) != ARRAY_TYPE)
8449 return 1;
3042d5be
MM
8450 if ((TYPE_DOMAIN (parm) == NULL_TREE)
8451 != (TYPE_DOMAIN (arg) == NULL_TREE))
8452 return 1;
8453 if (TYPE_DOMAIN (parm) != NULL_TREE
830bfa74 8454 && unify (tparms, targs, TYPE_DOMAIN (parm),
4393e105 8455 TYPE_DOMAIN (arg), UNIFY_ALLOW_NONE) != 0)
8d08fdba 8456 return 1;
830bfa74 8457 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
4393e105 8458 UNIFY_ALLOW_NONE);
8d08fdba
MS
8459
8460 case REAL_TYPE:
37c46b43 8461 case COMPLEX_TYPE:
8d08fdba 8462 case INTEGER_TYPE:
42976354 8463 case BOOLEAN_TYPE:
5ad5a526 8464 case VOID_TYPE:
f376e137
MS
8465 if (TREE_CODE (arg) != TREE_CODE (parm))
8466 return 1;
8467
514a1f18
JM
8468 if (TREE_CODE (parm) == INTEGER_TYPE
8469 && TREE_CODE (TYPE_MAX_VALUE (parm)) != INTEGER_CST)
8d08fdba
MS
8470 {
8471 if (TYPE_MIN_VALUE (parm) && TYPE_MIN_VALUE (arg)
830bfa74 8472 && unify (tparms, targs, TYPE_MIN_VALUE (parm),
4393e105 8473 TYPE_MIN_VALUE (arg), UNIFY_ALLOW_INTEGER))
8d08fdba
MS
8474 return 1;
8475 if (TYPE_MAX_VALUE (parm) && TYPE_MAX_VALUE (arg)
830bfa74 8476 && unify (tparms, targs, TYPE_MAX_VALUE (parm),
4393e105 8477 TYPE_MAX_VALUE (arg), UNIFY_ALLOW_INTEGER))
8d08fdba
MS
8478 return 1;
8479 }
514a1f18
JM
8480 /* We use the TYPE_MAIN_VARIANT since we have already
8481 checked cv-qualification at the top of the
8482 function. */
3bfdc719
MM
8483 else if (!same_type_p (TYPE_MAIN_VARIANT (arg),
8484 TYPE_MAIN_VARIANT (parm)))
ca79f85d
JM
8485 return 1;
8486
8d08fdba
MS
8487 /* As far as unification is concerned, this wins. Later checks
8488 will invalidate it if necessary. */
8489 return 0;
8490
8491 /* Types INTEGER_CST and MINUS_EXPR can come from array bounds. */
bd6dd845 8492 /* Type INTEGER_CST can come from ordinary constant template args. */
8d08fdba 8493 case INTEGER_CST:
bd6dd845
MS
8494 while (TREE_CODE (arg) == NOP_EXPR)
8495 arg = TREE_OPERAND (arg, 0);
8496
8d08fdba
MS
8497 if (TREE_CODE (arg) != INTEGER_CST)
8498 return 1;
8499 return !tree_int_cst_equal (parm, arg);
8500
8d08fdba
MS
8501 case TREE_VEC:
8502 {
8503 int i;
8504 if (TREE_CODE (arg) != TREE_VEC)
8505 return 1;
8506 if (TREE_VEC_LENGTH (parm) != TREE_VEC_LENGTH (arg))
8507 return 1;
8508 for (i = TREE_VEC_LENGTH (parm) - 1; i >= 0; i--)
830bfa74 8509 if (unify (tparms, targs,
8d08fdba 8510 TREE_VEC_ELT (parm, i), TREE_VEC_ELT (arg, i),
4393e105 8511 UNIFY_ALLOW_NONE))
8d08fdba
MS
8512 return 1;
8513 return 0;
8514 }
8515
8d08fdba 8516 case RECORD_TYPE:
f181d4ae 8517 case UNION_TYPE:
f181d4ae 8518 if (TREE_CODE (arg) != TREE_CODE (parm))
a4443a08 8519 return 1;
830bfa74 8520
a7a64a77
MM
8521 if (TYPE_PTRMEMFUNC_P (parm))
8522 {
8523 if (!TYPE_PTRMEMFUNC_P (arg))
8524 return 1;
8525
8526 return unify (tparms, targs,
8527 TYPE_PTRMEMFUNC_FN_TYPE (parm),
8528 TYPE_PTRMEMFUNC_FN_TYPE (arg),
8529 strict);
8530 }
8531
5db698f6 8532 if (CLASSTYPE_TEMPLATE_INFO (parm))
5566b478 8533 {
6467930b 8534 tree t = NULL_TREE;
4393e105 8535
830bfa74 8536 if (strict & UNIFY_ALLOW_DERIVED)
4393e105
MM
8537 {
8538 /* First, we try to unify the PARM and ARG directly. */
8539 t = try_class_unification (tparms, targs,
8540 parm, arg);
8541
8542 if (!t)
8543 {
8544 /* Fallback to the special case allowed in
8545 [temp.deduct.call]:
8546
8547 If P is a class, and P has the form
8548 template-id, then A can be a derived class of
8549 the deduced A. Likewise, if P is a pointer to
8550 a class of the form template-id, A can be a
8551 pointer to a derived class pointed to by the
8552 deduced A. */
8553 t = get_template_base (tparms, targs,
8554 parm, arg);
8555
8556 if (! t || t == error_mark_node)
8557 return 1;
8558 }
8559 }
6df47b06 8560 else if (CLASSTYPE_TEMPLATE_INFO (arg)
9fbf56f7
MM
8561 && (CLASSTYPE_TI_TEMPLATE (parm)
8562 == CLASSTYPE_TI_TEMPLATE (arg)))
6df47b06
MM
8563 /* Perhaps PARM is something like S<U> and ARG is S<int>.
8564 Then, we should unify `int' and `U'. */
6467930b 8565 t = arg;
4393e105
MM
8566 else
8567 /* There's no chance of unication succeeding. */
5566b478 8568 return 1;
6467930b 8569
830bfa74 8570 return unify (tparms, targs, CLASSTYPE_TI_ARGS (parm),
4393e105 8571 CLASSTYPE_TI_ARGS (t), UNIFY_ALLOW_NONE);
5566b478 8572 }
3bfdc719
MM
8573 else if (!same_type_p (TYPE_MAIN_VARIANT (parm),
8574 TYPE_MAIN_VARIANT (arg)))
5566b478 8575 return 1;
a4443a08 8576 return 0;
8d08fdba
MS
8577
8578 case METHOD_TYPE:
8d08fdba 8579 case FUNCTION_TYPE:
830bfa74 8580 if (TREE_CODE (arg) != TREE_CODE (parm))
8d08fdba 8581 return 1;
830bfa74
MM
8582
8583 if (unify (tparms, targs, TREE_TYPE (parm),
4393e105 8584 TREE_TYPE (arg), UNIFY_ALLOW_NONE))
28cbf42c 8585 return 1;
386b8a85 8586 return type_unification_real (tparms, targs, TYPE_ARG_TYPES (parm),
3b3ba9f0 8587 TYPE_ARG_TYPES (arg), 1,
4393e105 8588 DEDUCE_EXACT, 0);
a4443a08
MS
8589
8590 case OFFSET_TYPE:
8591 if (TREE_CODE (arg) != OFFSET_TYPE)
8592 return 1;
830bfa74 8593 if (unify (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
4393e105 8594 TYPE_OFFSET_BASETYPE (arg), UNIFY_ALLOW_NONE))
a4443a08 8595 return 1;
830bfa74 8596 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
4393e105 8597 strict);
a4443a08 8598
f62dbf03 8599 case CONST_DECL:
830bfa74 8600 if (arg != decl_constant_value (parm))
f62dbf03
JM
8601 return 1;
8602 return 0;
8603
027905b4
KL
8604 case TEMPLATE_DECL:
8605 /* Matched cases are handled by the ARG == PARM test above. */
8606 return 1;
8607
53929c47
JM
8608 case MINUS_EXPR:
8609 if (TREE_CODE (TREE_OPERAND (parm, 1)) == INTEGER_CST)
8610 {
8611 /* We handle this case specially, since it comes up with
8612 arrays. In particular, something like:
8613
8614 template <int N> void f(int (&x)[N]);
8615
8616 Here, we are trying to unify the range type, which
8617 looks like [0 ... (N - 1)]. */
8618 tree t, t1, t2;
8619 t1 = TREE_OPERAND (parm, 0);
8620 t2 = TREE_OPERAND (parm, 1);
8621
24e2e58e 8622 t = fold (build (PLUS_EXPR, integer_type_node, arg, t2));
53929c47 8623
4393e105 8624 return unify (tparms, targs, t1, t, strict);
53929c47
JM
8625 }
8626 /* else fall through */
8627
8d08fdba 8628 default:
050367a3 8629 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (TREE_CODE (parm))))
4393e105
MM
8630 /* We're looking at an expression. This can happen with
8631 something like:
8632
8633 template <int I>
8634 void foo(S<I>, S<I + 2>);
050367a3 8635
4393e105 8636 This is a "nondeduced context":
050367a3 8637
4393e105
MM
8638 [deduct.type]
8639
8640 The nondeduced contexts are:
050367a3 8641
4393e105
MM
8642 --A type that is a template-id in which one or more of
8643 the template-arguments is an expression that references
8644 a template-parameter.
050367a3 8645
4393e105
MM
8646 In these cases, we assume deduction succeeded, but don't
8647 actually infer any unifications. */
8648 return 0;
050367a3 8649 else
b4c4a9ec
MM
8650 sorry ("use of `%s' in template type unification",
8651 tree_code_name [(int) TREE_CODE (parm)]);
050367a3 8652
8d08fdba
MS
8653 return 1;
8654 }
8655}
8d08fdba 8656\f
03d0f4af
MM
8657/* Called if RESULT is explicitly instantiated, or is a member of an
8658 explicitly instantiated class, or if using -frepo and the
8659 instantiation of RESULT has been assigned to this file. */
8660
faae18ab 8661void
5566b478 8662mark_decl_instantiated (result, extern_p)
faae18ab
MS
8663 tree result;
8664 int extern_p;
8665{
75650646
MM
8666 if (TREE_CODE (result) != FUNCTION_DECL)
8667 /* The TREE_PUBLIC flag for function declarations will have been
8668 set correctly by tsubst. */
8669 TREE_PUBLIC (result) = 1;
faae18ab
MS
8670
8671 if (! extern_p)
8672 {
8673 DECL_INTERFACE_KNOWN (result) = 1;
8674 DECL_NOT_REALLY_EXTERN (result) = 1;
a7d87521 8675
1a408d07
JM
8676 /* Always make artificials weak. */
8677 if (DECL_ARTIFICIAL (result) && flag_weak)
8678 comdat_linkage (result);
a7d87521
JM
8679 /* For WIN32 we also want to put explicit instantiations in
8680 linkonce sections. */
1a408d07 8681 else if (TREE_PUBLIC (result))
b385c841 8682 maybe_make_one_only (result);
faae18ab 8683 }
f49422da
MS
8684 else if (TREE_CODE (result) == FUNCTION_DECL)
8685 mark_inline_for_output (result);
faae18ab
MS
8686}
8687
e1467ff2
MM
8688/* Given two function templates PAT1 and PAT2, and explicit template
8689 arguments EXPLICIT_ARGS return:
6467930b
MS
8690
8691 1 if PAT1 is more specialized than PAT2 as described in [temp.func.order].
8692 -1 if PAT2 is more specialized than PAT1.
8693 0 if neither is more specialized. */
8694
8695int
e1467ff2
MM
8696more_specialized (pat1, pat2, explicit_args)
8697 tree pat1, pat2, explicit_args;
6467930b 8698{
98c1c668 8699 tree targs;
73aad9b9 8700 int winner = 0;
6467930b 8701
4393e105 8702 targs = get_bindings_overload (pat1, DECL_RESULT (pat2), explicit_args);
73aad9b9 8703 if (targs)
36a117a5 8704 --winner;
6467930b 8705
4393e105 8706 targs = get_bindings_overload (pat2, DECL_RESULT (pat1), explicit_args);
73aad9b9 8707 if (targs)
36a117a5 8708 ++winner;
6467930b 8709
73aad9b9
JM
8710 return winner;
8711}
6467930b 8712
73aad9b9 8713/* Given two class template specialization list nodes PAT1 and PAT2, return:
6467930b 8714
73aad9b9
JM
8715 1 if PAT1 is more specialized than PAT2 as described in [temp.class.order].
8716 -1 if PAT2 is more specialized than PAT1.
8717 0 if neither is more specialized. */
8718
8719int
8720more_specialized_class (pat1, pat2)
8721 tree pat1, pat2;
8722{
8723 tree targs;
8724 int winner = 0;
8725
36a117a5
MM
8726 targs = get_class_bindings (TREE_VALUE (pat1), TREE_PURPOSE (pat1),
8727 TREE_PURPOSE (pat2));
73aad9b9
JM
8728 if (targs)
8729 --winner;
8730
36a117a5
MM
8731 targs = get_class_bindings (TREE_VALUE (pat2), TREE_PURPOSE (pat2),
8732 TREE_PURPOSE (pat1));
73aad9b9 8733 if (targs)
6467930b
MS
8734 ++winner;
8735
8736 return winner;
8737}
73aad9b9
JM
8738
8739/* Return the template arguments that will produce the function signature
e1467ff2 8740 DECL from the function template FN, with the explicit template
76b9a14d 8741 arguments EXPLICIT_ARGS. If CHECK_RETTYPE is 1, the return type must
4393e105
MM
8742 also match. Return NULL_TREE if no satisfactory arguments could be
8743 found. */
73aad9b9 8744
76b9a14d
JM
8745static tree
8746get_bindings_real (fn, decl, explicit_args, check_rettype)
e1467ff2 8747 tree fn, decl, explicit_args;
76b9a14d 8748 int check_rettype;
73aad9b9 8749{
98c1c668 8750 int ntparms = DECL_NTPARMS (fn);
f31c0a32 8751 tree targs = make_tree_vec (ntparms);
4393e105 8752 tree decl_type;
03017874 8753 tree decl_arg_types;
98c1c668
JM
8754 int i;
8755
4393e105
MM
8756 /* Substitute the explicit template arguments into the type of DECL.
8757 The call to fn_type_unification will handle substitution into the
8758 FN. */
8759 decl_type = TREE_TYPE (decl);
8760 if (explicit_args && uses_template_parms (decl_type))
8761 {
8762 tree tmpl;
8763 tree converted_args;
8764
8765 if (DECL_TEMPLATE_INFO (decl))
8766 tmpl = DECL_TI_TEMPLATE (decl);
8767 else
8768 /* We can get here for some illegal specializations. */
8769 return NULL_TREE;
8770
8771 converted_args
8772 = (coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
8773 explicit_args, NULL_TREE,
8774 /*complain=*/0,
8775 /*require_all_arguments=*/0));
8776 if (converted_args == error_mark_node)
8777 return NULL_TREE;
8778
8779 decl_type = tsubst (decl_type, converted_args, /*complain=*/0,
8780 NULL_TREE);
8781 if (decl_type == error_mark_node)
8782 return NULL_TREE;
8783 }
8784
03017874
MM
8785 /* If FN is a static member function, adjust the type of DECL
8786 appropriately. */
4393e105 8787 decl_arg_types = TYPE_ARG_TYPES (decl_type);
d7684f2d
MM
8788 if (DECL_STATIC_FUNCTION_P (fn)
8789 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
03017874 8790 decl_arg_types = TREE_CHAIN (decl_arg_types);
d7684f2d 8791
e1467ff2 8792 i = fn_type_unification (fn, explicit_args, targs,
03017874
MM
8793 decl_arg_types,
8794 TREE_TYPE (decl_type),
8795 DEDUCE_EXACT);
98c1c668 8796
76b9a14d
JM
8797 if (i != 0)
8798 return NULL_TREE;
8799
8800 if (check_rettype)
e1467ff2
MM
8801 {
8802 /* Check to see that the resulting return type is also OK. */
36a117a5 8803 tree t = tsubst (TREE_TYPE (TREE_TYPE (fn)), targs,
4393e105 8804 /*complain=*/0, NULL_TREE);
e1467ff2 8805
3bfdc719 8806 if (!same_type_p (t, TREE_TYPE (TREE_TYPE (decl))))
e1467ff2 8807 return NULL_TREE;
e1467ff2
MM
8808 }
8809
76b9a14d
JM
8810 return targs;
8811}
8812
8813/* For most uses, we want to check the return type. */
8814
8815tree
8816get_bindings (fn, decl, explicit_args)
8817 tree fn, decl, explicit_args;
8818{
8819 return get_bindings_real (fn, decl, explicit_args, 1);
8820}
8821
8822/* But for more_specialized, we only care about the parameter types. */
8823
8824static tree
8825get_bindings_overload (fn, decl, explicit_args)
8826 tree fn, decl, explicit_args;
8827{
8828 return get_bindings_real (fn, decl, explicit_args, 0);
73aad9b9
JM
8829}
8830
36a117a5
MM
8831/* Return the innermost template arguments that, when applied to a
8832 template specialization whose innermost template parameters are
8833 TPARMS, and whose specialization arguments are ARGS, yield the
8834 ARGS.
8835
8836 For example, suppose we have:
8837
8838 template <class T, class U> struct S {};
8839 template <class T> struct S<T*, int> {};
8840
8841 Then, suppose we want to get `S<double*, int>'. The TPARMS will be
8842 {T}, the PARMS will be {T*, int} and the ARGS will be {double*,
8843 int}. The resulting vector will be {double}, indicating that `T'
8844 is bound to `double'. */
8845
bd6dd845 8846static tree
36a117a5
MM
8847get_class_bindings (tparms, parms, args)
8848 tree tparms, parms, args;
73aad9b9 8849{
3b3ba9f0 8850 int i, ntparms = TREE_VEC_LENGTH (tparms);
f31c0a32 8851 tree vec = make_tree_vec (ntparms);
73aad9b9 8852
36a117a5 8853 args = innermost_args (args);
8d019cef 8854
4393e105 8855 if (unify (tparms, vec, parms, args, UNIFY_ALLOW_NONE))
fcfb9f96 8856 return NULL_TREE;
73aad9b9
JM
8857
8858 for (i = 0; i < ntparms; ++i)
8859 if (! TREE_VEC_ELT (vec, i))
8860 return NULL_TREE;
8861
8862 return vec;
8863}
8864
104bf76a
MM
8865/* In INSTANTIATIONS is a list of <INSTANTIATION, TEMPLATE> pairs.
8866 Pick the most specialized template, and return the corresponding
8867 instantiation, or if there is no corresponding instantiation, the
8868 template itself. EXPLICIT_ARGS is any template arguments explicity
8869 mentioned in a template-id. If there is no most specialized
8870 tempalte, error_mark_node is returned. If there are no templates
8871 at all, NULL_TREE is returned. */
73aad9b9
JM
8872
8873tree
104bf76a
MM
8874most_specialized_instantiation (instantiations, explicit_args)
8875 tree instantiations;
8876 tree explicit_args;
73aad9b9 8877{
104bf76a 8878 tree fn, champ;
73aad9b9
JM
8879 int fate;
8880
104bf76a 8881 if (!instantiations)
73aad9b9
JM
8882 return NULL_TREE;
8883
104bf76a
MM
8884 champ = instantiations;
8885 for (fn = TREE_CHAIN (instantiations); fn; fn = TREE_CHAIN (fn))
73aad9b9 8886 {
104bf76a
MM
8887 fate = more_specialized (TREE_VALUE (champ),
8888 TREE_VALUE (fn), explicit_args);
73aad9b9
JM
8889 if (fate == 1)
8890 ;
8891 else
8892 {
8893 if (fate == 0)
8894 {
8895 fn = TREE_CHAIN (fn);
8896 if (! fn)
8897 return error_mark_node;
8898 }
104bf76a 8899 champ = fn;
73aad9b9
JM
8900 }
8901 }
8902
104bf76a 8903 for (fn = instantiations; fn && fn != champ; fn = TREE_CHAIN (fn))
73aad9b9 8904 {
104bf76a
MM
8905 fate = more_specialized (TREE_VALUE (champ),
8906 TREE_VALUE (fn), explicit_args);
73aad9b9
JM
8907 if (fate != 1)
8908 return error_mark_node;
8909 }
8910
104bf76a
MM
8911 return TREE_PURPOSE (champ) ? TREE_PURPOSE (champ) : TREE_VALUE (champ);
8912}
8913
8914/* Return the most specialized of the list of templates in FNS that can
8915 produce an instantiation matching DECL, given the explicit template
8916 arguments EXPLICIT_ARGS. */
8917
e9659ab0 8918static tree
104bf76a
MM
8919most_specialized (fns, decl, explicit_args)
8920 tree fns, decl, explicit_args;
8921{
8922 tree candidates = NULL_TREE;
8923 tree fn, args;
8924
8925 for (fn = fns; fn; fn = TREE_CHAIN (fn))
8926 {
8927 tree candidate = TREE_VALUE (fn);
8928
8929 args = get_bindings (candidate, decl, explicit_args);
8930 if (args)
e1b3e07d 8931 candidates = tree_cons (NULL_TREE, candidate, candidates);
104bf76a
MM
8932 }
8933
8934 return most_specialized_instantiation (candidates, explicit_args);
73aad9b9
JM
8935}
8936
36a117a5
MM
8937/* If DECL is a specialization of some template, return the most
8938 general such template. For example, given:
8939
8940 template <class T> struct S { template <class U> void f(U); };
8941
8942 if TMPL is `template <class U> void S<int>::f(U)' this will return
8943 the full template. This function will not trace past partial
8944 specializations, however. For example, given in addition:
8945
8946 template <class T> struct S<T*> { template <class U> void f(U); };
8947
8948 if TMPL is `template <class U> void S<int*>::f(U)' this will return
8949 `template <class T> template <class U> S<T*>::f(U)'. */
73aad9b9 8950
612c671a 8951tree
36a117a5
MM
8952most_general_template (decl)
8953 tree decl;
73aad9b9 8954{
b5ac18ea
MM
8955 while (DECL_TEMPLATE_INFO (decl)
8956 /* The DECL_TI_TEMPLATE can be a LOOKUP_EXPR or
8957 IDENTIFIER_NODE in some cases. (See cp-tree.h for
8958 details.) */
8959 && TREE_CODE (DECL_TI_TEMPLATE (decl)) == TEMPLATE_DECL)
36a117a5
MM
8960 decl = DECL_TI_TEMPLATE (decl);
8961
8962 return decl;
8963}
8964
8965/* Return the most specialized of the class template specializations
8966 of TMPL which can produce an instantiation matching ARGS, or
8967 error_mark_node if the choice is ambiguous. */
8968
e9659ab0 8969static tree
36a117a5
MM
8970most_specialized_class (tmpl, args)
8971 tree tmpl;
8972 tree args;
8973{
8974 tree list = NULL_TREE;
8975 tree t;
8976 tree champ;
73aad9b9
JM
8977 int fate;
8978
36a117a5
MM
8979 tmpl = most_general_template (tmpl);
8980 for (t = DECL_TEMPLATE_SPECIALIZATIONS (tmpl); t; t = TREE_CHAIN (t))
73aad9b9 8981 {
36a117a5
MM
8982 tree spec_args
8983 = get_class_bindings (TREE_VALUE (t), TREE_PURPOSE (t), args);
8984 if (spec_args)
73aad9b9
JM
8985 {
8986 list = decl_tree_cons (TREE_PURPOSE (t), TREE_VALUE (t), list);
8987 TREE_TYPE (list) = TREE_TYPE (t);
8988 }
8989 }
8990
8991 if (! list)
8992 return NULL_TREE;
8993
8994 t = list;
8995 champ = t;
8996 t = TREE_CHAIN (t);
8997 for (; t; t = TREE_CHAIN (t))
8998 {
8999 fate = more_specialized_class (champ, t);
9000 if (fate == 1)
9001 ;
9002 else
9003 {
9004 if (fate == 0)
9005 {
9006 t = TREE_CHAIN (t);
9007 if (! t)
9008 return error_mark_node;
9009 }
9010 champ = t;
9011 }
9012 }
9013
9014 for (t = list; t && t != champ; t = TREE_CHAIN (t))
9015 {
85b71cf2 9016 fate = more_specialized_class (champ, t);
73aad9b9
JM
9017 if (fate != 1)
9018 return error_mark_node;
9019 }
9020
9021 return champ;
9022}
9023
8d08fdba 9024/* called from the parser. */
e92cc029 9025
8d08fdba 9026void
6633d636 9027do_decl_instantiation (declspecs, declarator, storage)
f0e01782 9028 tree declspecs, declarator, storage;
8d08fdba 9029{
c11b6f21 9030 tree decl = grokdeclarator (declarator, declspecs, NORMAL, 0, NULL_TREE);
8d08fdba 9031 tree result = NULL_TREE;
faae18ab 9032 int extern_p = 0;
e8abc66f 9033
3fa56191
MM
9034 if (!decl)
9035 /* An error ocurred, for which grokdeclarator has already issued
9036 an appropriate message. */
9037 return;
9038 else if (! DECL_LANG_SPECIFIC (decl))
ec255269 9039 {
8251199e 9040 cp_error ("explicit instantiation of non-template `%#D'", decl);
ec255269
MS
9041 return;
9042 }
03d0f4af 9043 else if (TREE_CODE (decl) == VAR_DECL)
6633d636 9044 {
03d0f4af
MM
9045 /* There is an asymmetry here in the way VAR_DECLs and
9046 FUNCTION_DECLs are handled by grokdeclarator. In the case of
9047 the latter, the DECL we get back will be marked as a
9048 template instantiation, and the appropriate
9049 DECL_TEMPLATE_INFO will be set up. This does not happen for
9050 VAR_DECLs so we do the lookup here. Probably, grokdeclarator
9051 should handle VAR_DECLs as it currently handles
9052 FUNCTION_DECLs. */
6633d636
MS
9053 result = lookup_field (DECL_CONTEXT (decl), DECL_NAME (decl), 0, 0);
9054 if (result && TREE_CODE (result) != VAR_DECL)
03d0f4af 9055 {
8251199e 9056 cp_error ("no matching template for `%D' found", result);
03d0f4af
MM
9057 return;
9058 }
6633d636
MS
9059 }
9060 else if (TREE_CODE (decl) != FUNCTION_DECL)
9061 {
8251199e 9062 cp_error ("explicit instantiation of `%#D'", decl);
6633d636
MS
9063 return;
9064 }
03d0f4af
MM
9065 else
9066 result = decl;
672476cb 9067
03d0f4af
MM
9068 /* Check for various error cases. Note that if the explicit
9069 instantiation is legal the RESULT will currently be marked as an
9070 *implicit* instantiation; DECL_EXPLICIT_INSTANTIATION is not set
9071 until we get here. */
9072
9073 if (DECL_TEMPLATE_SPECIALIZATION (result))
672476cb 9074 {
03d0f4af
MM
9075 /* [temp.spec]
9076
9077 No program shall both explicitly instantiate and explicitly
9078 specialize a template. */
6f1b4c42
JM
9079 cp_pedwarn ("explicit instantiation of `%#D' after", result);
9080 cp_pedwarn_at ("explicit specialization here", result);
672476cb
MM
9081 return;
9082 }
03d0f4af
MM
9083 else if (DECL_EXPLICIT_INSTANTIATION (result))
9084 {
9085 /* [temp.spec]
98c1c668 9086
03d0f4af
MM
9087 No program shall explicitly instantiate any template more
9088 than once.
9089
2aaf816d
JM
9090 We check DECL_INTERFACE_KNOWN so as not to complain when the first
9091 instantiation was `extern' and the second is not, and EXTERN_P for
9092 the opposite case. If -frepo, chances are we already got marked
9093 as an explicit instantion because of the repo file. */
9094 if (DECL_INTERFACE_KNOWN (result) && !extern_p && !flag_use_repository)
6f1b4c42 9095 cp_pedwarn ("duplicate explicit instantiation of `%#D'", result);
03d0f4af
MM
9096
9097 /* If we've already instantiated the template, just return now. */
9098 if (DECL_INTERFACE_KNOWN (result))
9099 return;
9100 }
9101 else if (!DECL_IMPLICIT_INSTANTIATION (result))
faae18ab 9102 {
8251199e 9103 cp_error ("no matching template for `%D' found", result);
faae18ab
MS
9104 return;
9105 }
03d0f4af 9106 else if (!DECL_TEMPLATE_INFO (result))
6633d636 9107 {
8251199e 9108 cp_pedwarn ("explicit instantiation of non-template `%#D'", result);
6633d636
MS
9109 return;
9110 }
9111
a0a33927
MS
9112 if (flag_external_templates)
9113 return;
9114
f0e01782 9115 if (storage == NULL_TREE)
00595019 9116 ;
faae18ab 9117 else if (storage == ridpointers[(int) RID_EXTERN])
03d0f4af
MM
9118 {
9119 if (pedantic)
8251199e 9120 cp_pedwarn ("ANSI C++ forbids the use of `extern' on explicit instantiations");
03d0f4af
MM
9121 extern_p = 1;
9122 }
f0e01782 9123 else
8251199e 9124 cp_error ("storage class `%D' applied to template instantiation",
f0e01782 9125 storage);
5566b478 9126
03d0f4af 9127 SET_DECL_EXPLICIT_INSTANTIATION (result);
5566b478 9128 mark_decl_instantiated (result, extern_p);
44a8d0b3 9129 repo_template_instantiated (result, extern_p);
c91a56d2
MS
9130 if (! extern_p)
9131 instantiate_decl (result);
7177d104
MS
9132}
9133
faae18ab
MS
9134void
9135mark_class_instantiated (t, extern_p)
9136 tree t;
9137 int extern_p;
9138{
9139 SET_CLASSTYPE_EXPLICIT_INSTANTIATION (t);
eb773359
JM
9140 SET_CLASSTYPE_INTERFACE_KNOWN (t);
9141 CLASSTYPE_INTERFACE_ONLY (t) = extern_p;
faae18ab
MS
9142 CLASSTYPE_VTABLE_NEEDS_WRITING (t) = ! extern_p;
9143 TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (t)) = extern_p;
9144 if (! extern_p)
9145 {
9146 CLASSTYPE_DEBUG_REQUESTED (t) = 1;
9147 rest_of_type_compilation (t, 1);
9148 }
9149}
e8abc66f 9150
7177d104 9151void
ca79f85d
JM
9152do_type_instantiation (t, storage)
9153 tree t, storage;
7177d104 9154{
e8abc66f
MS
9155 int extern_p = 0;
9156 int nomem_p = 0;
5566b478
MS
9157 int static_p = 0;
9158
ca79f85d
JM
9159 if (TREE_CODE (t) == TYPE_DECL)
9160 t = TREE_TYPE (t);
9161
7ddedda4 9162 if (! CLASS_TYPE_P (t) || ! CLASSTYPE_TEMPLATE_INFO (t))
ca79f85d 9163 {
8251199e 9164 cp_error ("explicit instantiation of non-template type `%T'", t);
ca79f85d
JM
9165 return;
9166 }
9167
5566b478 9168 complete_type (t);
7177d104 9169
a292b002
MS
9170 /* With -fexternal-templates, explicit instantiations are treated the same
9171 as implicit ones. */
a0a33927
MS
9172 if (flag_external_templates)
9173 return;
9174
f0e01782
MS
9175 if (TYPE_SIZE (t) == NULL_TREE)
9176 {
8251199e 9177 cp_error ("explicit instantiation of `%#T' before definition of template",
f0e01782
MS
9178 t);
9179 return;
9180 }
9181
03d0f4af 9182 if (storage != NULL_TREE)
f0e01782 9183 {
03d0f4af 9184 if (pedantic)
8251199e
JM
9185 cp_pedwarn("ANSI C++ forbids the use of `%s' on explicit instantiations",
9186 IDENTIFIER_POINTER (storage));
03d0f4af
MM
9187
9188 if (storage == ridpointers[(int) RID_INLINE])
9189 nomem_p = 1;
9190 else if (storage == ridpointers[(int) RID_EXTERN])
9191 extern_p = 1;
9192 else if (storage == ridpointers[(int) RID_STATIC])
9193 static_p = 1;
9194 else
9195 {
8251199e 9196 cp_error ("storage class `%D' applied to template instantiation",
03d0f4af
MM
9197 storage);
9198 extern_p = 0;
9199 }
f0e01782
MS
9200 }
9201
03d0f4af
MM
9202 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (t))
9203 {
9204 /* [temp.spec]
a292b002 9205
03d0f4af
MM
9206 No program shall both explicitly instantiate and explicitly
9207 specialize a template. */
8251199e
JM
9208 cp_error ("explicit instantiation of `%#T' after", t);
9209 cp_error_at ("explicit specialization here", t);
03d0f4af
MM
9210 return;
9211 }
9212 else if (CLASSTYPE_EXPLICIT_INSTANTIATION (t))
44a8d0b3 9213 {
03d0f4af
MM
9214 /* [temp.spec]
9215
9216 No program shall explicitly instantiate any template more
9217 than once.
9218
2aaf816d
JM
9219 If CLASSTYPE_INTERFACE_ONLY, then the first explicit instantiation
9220 was `extern'. If EXTERN_P then the second is. If -frepo, chances
9221 are we already got marked as an explicit instantion because of the
9222 repo file. All these cases are OK. */
9223 if (!CLASSTYPE_INTERFACE_ONLY (t) && !extern_p && !flag_use_repository)
9224 cp_pedwarn ("duplicate explicit instantiation of `%#T'", t);
03d0f4af
MM
9225
9226 /* If we've already instantiated the template, just return now. */
9227 if (!CLASSTYPE_INTERFACE_ONLY (t))
9228 return;
44a8d0b3 9229 }
e8abc66f 9230
03d0f4af
MM
9231 mark_class_instantiated (t, extern_p);
9232 repo_template_instantiated (t, extern_p);
9233
e8abc66f
MS
9234 if (nomem_p)
9235 return;
9236
7177d104 9237 {
db5ae43f 9238 tree tmp;
5566b478 9239
03d0f4af
MM
9240 /* In contrast to implicit instantiation, where only the
9241 declarations, and not the definitions, of members are
9242 instantiated, we have here:
9243
9244 [temp.explicit]
9245
9246 The explicit instantiation of a class template specialization
9247 implies the instantiation of all of its members not
9248 previously explicitly specialized in the translation unit
9249 containing the explicit instantiation.
9250
9251 Of course, we can't instantiate member template classes, since
9252 we don't have any arguments for them. Note that the standard
9253 is unclear on whether the instatiation of the members are
9254 *explicit* instantiations or not. We choose to be generous,
9255 and not set DECL_EXPLICIT_INSTANTIATION. Therefore, we allow
9256 the explicit instantiation of a class where some of the members
9257 have no definition in the current translation unit. */
9258
5566b478
MS
9259 if (! static_p)
9260 for (tmp = TYPE_METHODS (t); tmp; tmp = TREE_CHAIN (tmp))
a7d87521 9261 if (TREE_CODE (tmp) == FUNCTION_DECL
1f109f0f 9262 && DECL_TEMPLATE_INSTANTIATION (tmp))
5566b478
MS
9263 {
9264 mark_decl_instantiated (tmp, extern_p);
9265 repo_template_instantiated (tmp, extern_p);
9266 if (! extern_p)
9267 instantiate_decl (tmp);
9268 }
9269
9270 for (tmp = TYPE_FIELDS (t); tmp; tmp = TREE_CHAIN (tmp))
9271 if (TREE_CODE (tmp) == VAR_DECL && DECL_TEMPLATE_INSTANTIATION (tmp))
863adfc0 9272 {
5566b478 9273 mark_decl_instantiated (tmp, extern_p);
863adfc0 9274 repo_template_instantiated (tmp, extern_p);
5566b478
MS
9275 if (! extern_p)
9276 instantiate_decl (tmp);
863adfc0 9277 }
7177d104 9278
a292b002 9279 for (tmp = CLASSTYPE_TAGS (t); tmp; tmp = TREE_CHAIN (tmp))
e4a84209
MM
9280 if (IS_AGGR_TYPE (TREE_VALUE (tmp))
9281 && !uses_template_parms (CLASSTYPE_TI_ARGS (TREE_VALUE (tmp))))
f376e137 9282 do_type_instantiation (TYPE_MAIN_DECL (TREE_VALUE (tmp)), storage);
a292b002 9283 }
8d08fdba 9284}
a28e3c7f 9285
36a117a5
MM
9286/* Given a function DECL, which is a specialization of TMPL, modify
9287 DECL to be a re-instantiation of TMPL with the same template
9288 arguments. TMPL should be the template into which tsubst'ing
9289 should occur for DECL, not the most general template.
830bfa74
MM
9290
9291 One reason for doing this is a scenario like this:
9292
9293 template <class T>
9294 void f(const T&, int i);
9295
9296 void g() { f(3, 7); }
9297
9298 template <class T>
9299 void f(const T& t, const int i) { }
9300
9301 Note that when the template is first instantiated, with
9302 instantiate_template, the resulting DECL will have no name for the
9303 first parameter, and the wrong type for the second. So, when we go
9304 to instantiate the DECL, we regenerate it. */
9305
e9659ab0 9306static void
830bfa74
MM
9307regenerate_decl_from_template (decl, tmpl)
9308 tree decl;
9309 tree tmpl;
9310{
9311 tree args;
830bfa74
MM
9312 tree code_pattern;
9313 tree new_decl;
36a117a5
MM
9314 tree gen_tmpl;
9315 int unregistered;
830bfa74
MM
9316
9317 args = DECL_TI_ARGS (decl);
9318 code_pattern = DECL_TEMPLATE_RESULT (tmpl);
9319
8251199e
JM
9320 /* Unregister the specialization so that when we tsubst we will not
9321 just return DECL. We don't have to unregister DECL from TMPL
9322 because if would only be registered there if it were a partial
9323 instantiation of a specialization, which it isn't: it's a full
9324 instantiation. */
36a117a5
MM
9325 gen_tmpl = most_general_template (tmpl);
9326 unregistered = unregister_specialization (decl, gen_tmpl);
9327
9328 /* If the DECL was not unregistered then something peculiar is
9329 happening: we created a specialization but did not call
9330 register_specialization for it. */
9331 my_friendly_assert (unregistered, 0);
9332
61a127b3
MM
9333 if (TREE_CODE (decl) == VAR_DECL)
9334 /* Make sure that we can see identifiers, and compute access
9335 correctly, for the class members used in the declaration of
9336 this static variable. */
9337 pushclass (DECL_CONTEXT (decl), 2);
9338
d8c4447d 9339 /* Do the substitution to get the new declaration. */
4393e105 9340 new_decl = tsubst (code_pattern, args, /*complain=*/1, NULL_TREE);
830bfa74
MM
9341
9342 if (TREE_CODE (decl) == VAR_DECL)
9343 {
9344 /* Set up DECL_INITIAL, since tsubst doesn't. */
830bfa74 9345 DECL_INITIAL (new_decl) =
d8c4447d 9346 tsubst_expr (DECL_INITIAL (code_pattern), args,
4393e105 9347 /*complain=*/1, DECL_TI_TEMPLATE (decl));
61a127b3 9348 /* Pop the class context we pushed above. */
b74a0560 9349 popclass ();
830bfa74 9350 }
2b0a63a3 9351 else if (TREE_CODE (decl) == FUNCTION_DECL)
fbf1c34b
MM
9352 {
9353 /* Convince duplicate_decls to use the DECL_ARGUMENTS from the
9354 new decl. */
9355 DECL_INITIAL (new_decl) = error_mark_node;
9356 /* And don't complain about a duplicate definition. */
9357 DECL_INITIAL (decl) = NULL_TREE;
9358 }
36a117a5
MM
9359
9360 /* The immediate parent of the new template is still whatever it was
9361 before, even though tsubst sets DECL_TI_TEMPLATE up as the most
9362 general template. We also reset the DECL_ASSEMBLER_NAME since
9363 tsubst always calculates the name as if the function in question
9364 were really a template instance, and sometimes, with friend
9365 functions, this is not so. See tsubst_friend_function for
9366 details. */
9367 DECL_TI_TEMPLATE (new_decl) = DECL_TI_TEMPLATE (decl);
9368 DECL_ASSEMBLER_NAME (new_decl) = DECL_ASSEMBLER_NAME (decl);
9369 DECL_RTL (new_decl) = DECL_RTL (decl);
9370
9371 /* Call duplicate decls to merge the old and new declarations. */
830bfa74
MM
9372 duplicate_decls (new_decl, decl);
9373
36a117a5
MM
9374 /* Now, re-register the specialization. */
9375 register_specialization (decl, gen_tmpl, args);
830bfa74
MM
9376}
9377
f84b4be9
JM
9378/* Produce the definition of D, a _DECL generated from a template. */
9379
a28e3c7f 9380tree
5566b478
MS
9381instantiate_decl (d)
9382 tree d;
a28e3c7f 9383{
36a117a5
MM
9384 tree tmpl = DECL_TI_TEMPLATE (d);
9385 tree args = DECL_TI_ARGS (d);
830bfa74 9386 tree td;
36a117a5
MM
9387 tree code_pattern;
9388 tree spec;
9389 tree gen_tmpl;
5566b478 9390 int nested = in_function_p ();
5566b478 9391 int pattern_defined;
c27be9b9
JM
9392 int line = lineno;
9393 char *file = input_filename;
7c913d33 9394 tree old_fn = current_function_decl;
5566b478 9395
36a117a5
MM
9396 /* This function should only be used to instantiate templates for
9397 functions and static member variables. */
9398 my_friendly_assert (TREE_CODE (d) == FUNCTION_DECL
9399 || TREE_CODE (d) == VAR_DECL, 0);
9400
fbf1c34b 9401 if (DECL_TEMPLATE_INSTANTIATED (d))
03d0f4af
MM
9402 /* D has already been instantiated. It might seem reasonable to
9403 check whether or not D is an explict instantiation, and, if so,
9404 stop here. But when an explicit instantiation is deferred
9405 until the end of the compilation, DECL_EXPLICIT_INSTANTIATION
9406 is set, even though we still need to do the instantiation. */
36a117a5
MM
9407 return d;
9408
9409 /* If we already have a specialization of this declaration, then
9410 there's no reason to instantiate it. Note that
9411 retrieve_specialization gives us both instantiations and
9412 specializations, so we must explicitly check
9413 DECL_TEMPLATE_SPECIALIZATION. */
9414 gen_tmpl = most_general_template (tmpl);
9415 spec = retrieve_specialization (gen_tmpl, args);
9416 if (spec != NULL_TREE && DECL_TEMPLATE_SPECIALIZATION (spec))
9417 return spec;
9418
9419 /* This needs to happen before any tsubsting. */
9420 if (! push_tinst_level (d))
9421 return d;
9422
4d85e00e
MM
9423 /* Set TD to the template whose DECL_TEMPLATE_RESULT is the pattern
9424 for the instantiation. This is not always the most general
9425 template. Consider, for example:
9426
9427 template <class T>
9428 struct S { template <class U> void f();
9429 template <> void f<int>(); };
9430
9431 and an instantiation of S<double>::f<int>. We want TD to be the
9432 specialization S<T>::f<int>, not the more general S<T>::f<U>. */
9433 td = tmpl;
9434 for (td = tmpl;
9435 /* An instantiation cannot have a definition, so we need a
9436 more general template. */
9437 DECL_TEMPLATE_INSTANTIATION (td)
9438 /* We must also deal with friend templates. Given:
9439
9440 template <class T> struct S {
9441 template <class U> friend void f() {};
9442 };
9443
9444 S<int>::f<U> say, is not an instantiation of S<T>::f<U>,
9445 so far as the language is concerned, but that's still
9446 where we get the pattern for the instantiation from. On
9447 ther hand, if the definition comes outside the class, say:
9448
9449 template <class T> struct S {
9450 template <class U> friend void f();
9451 };
9452 template <class U> friend void f() {}
9453
9454 we don't need to look any further. That's what the check for
9455 DECL_INITIAL is for. */
9456 || (TREE_CODE (d) == FUNCTION_DECL
61289ca3 9457 && DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (td)
4d85e00e 9458 && !DECL_INITIAL (DECL_TEMPLATE_RESULT (td)));
f84b4be9 9459 )
4d85e00e
MM
9460 {
9461 /* The present template, TD, should not be a definition. If it
9462 were a definition, we should be using it! Note that we
9463 cannot restructure the loop to just keep going until we find
9464 a template with a definition, since that might go too far if
9465 a specialization was declared, but not defined. */
4d85e00e
MM
9466 my_friendly_assert (!(TREE_CODE (d) == VAR_DECL
9467 && !DECL_IN_AGGR_P (DECL_TEMPLATE_RESULT (td))),
9468 0);
9469
9470 /* Fetch the more general template. */
9471 td = DECL_TI_TEMPLATE (td);
9472 }
27bb8339 9473
fee23f54 9474 code_pattern = DECL_TEMPLATE_RESULT (td);
27bb8339 9475
5566b478 9476 if (TREE_CODE (d) == FUNCTION_DECL)
39c76b4f 9477 pattern_defined = (DECL_SAVED_TREE (code_pattern) != NULL_TREE);
5566b478 9478 else
36a117a5 9479 pattern_defined = ! DECL_IN_AGGR_P (code_pattern);
de22184b
MS
9480
9481 push_to_top_level ();
9482 lineno = DECL_SOURCE_LINE (d);
9483 input_filename = DECL_SOURCE_FILE (d);
9484
de22184b 9485 if (pattern_defined)
5566b478
MS
9486 {
9487 repo_template_used (d);
9488
9489 if (flag_external_templates && ! DECL_INTERFACE_KNOWN (d))
9490 {
9491 if (flag_alt_external_templates)
9492 {
9493 if (interface_unknown)
9494 warn_if_unknown_interface (d);
9495 }
fee23f54 9496 else if (DECL_INTERFACE_KNOWN (code_pattern))
5566b478
MS
9497 {
9498 DECL_INTERFACE_KNOWN (d) = 1;
fee23f54 9499 DECL_NOT_REALLY_EXTERN (d) = ! DECL_EXTERNAL (code_pattern);
5566b478
MS
9500 }
9501 else
fee23f54 9502 warn_if_unknown_interface (code_pattern);
5566b478
MS
9503 }
9504
e92cc029 9505 if (at_eof)
5566b478
MS
9506 import_export_decl (d);
9507 }
9508
c4ae3f91
JM
9509 /* Reject all external templates except inline functions. */
9510 if (DECL_INTERFACE_KNOWN (d)
9511 && ! DECL_NOT_REALLY_EXTERN (d)
9512 && ! (TREE_CODE (d) == FUNCTION_DECL && DECL_INLINE (d)))
9513 goto out;
9514
67ffc812 9515 if (TREE_CODE (d) == VAR_DECL
711734a9 9516 && TREE_READONLY (d)
67ffc812
MM
9517 && DECL_INITIAL (d) == NULL_TREE
9518 && DECL_INITIAL (code_pattern) != NULL_TREE)
9519 /* We need to set up DECL_INITIAL regardless of pattern_defined if
7c913d33
JM
9520 the variable is a static const initialized in the class body. */;
9521 else if (pattern_defined && nested
9522 && TREE_CODE (d) == FUNCTION_DECL && DECL_INLINE (d))
9523 /* An inline function used in another function; instantiate it now so
9524 we can inline it. */;
9525 else if (! pattern_defined || ! at_eof)
9526 {
9527 /* Defer all other templates. We restore the source position
9528 here because it's used by add_pending_template. */
c27be9b9
JM
9529 lineno = line;
9530 input_filename = file;
9531
03d0f4af
MM
9532 if (at_eof && !pattern_defined
9533 && DECL_EXPLICIT_INSTANTIATION (d))
9534 /* [temp.explicit]
9535
9536 The definition of a non-exported function template, a
9537 non-exported member function template, or a non-exported
9538 member function or static data member of a class template
9539 shall be present in every translation unit in which it is
9540 explicitly instantiated. */
8251199e 9541 cp_error ("explicit instantiation of `%D' but no definition available",
03d0f4af
MM
9542 d);
9543
5566b478 9544 add_pending_template (d);
de22184b 9545 goto out;
5566b478
MS
9546 }
9547
7c913d33
JM
9548 /* If this instantiation is COMDAT, we don't know whether or not we
9549 will really need to write it out. If we can't be sure, mark it
9550 DECL_DEFER_OUTPUT. NOTE: This increases memory consumption,
9551 since we keep some instantiations in memory rather than write
9552 them out immediately and forget them. A better approach would be
9553 to wait until we know we need them to do the instantiation, but
9554 that would break templates with static locals, because we
9555 generate the functions to destroy statics before we determine
9556 which functions are needed. A better solution would be to
9557 generate the ctor and dtor functions as we go. */
9558
9559 if (TREE_CODE (d) == FUNCTION_DECL
9560 && DECL_COMDAT (d)
9561 && ! DECL_NEEDED_P (d)
9562 /* If the function that caused us to be instantiated is needed, we
9563 will be needed, too. */
1c227897 9564 && (! nested || (old_fn && ! DECL_NEEDED_P (old_fn))))
7c913d33
JM
9565 DECL_DEFER_OUTPUT (d) = 1;
9566
2b0a63a3
MM
9567 /* We're now committed to instantiating this template. Mark it as
9568 instantiated so that recursive calls to instantiate_decl do not
9569 try to instantiate it again. */
fbf1c34b 9570 DECL_TEMPLATE_INSTANTIATED (d) = 1;
120722ac 9571
2b0a63a3
MM
9572 /* Regenerate the declaration in case the template has been modified
9573 by a subsequent redeclaration. */
9574 regenerate_decl_from_template (d, td);
9575
120722ac
MM
9576 /* We already set the file and line above. Reset them now in case
9577 they changed as a result of calling regenerate_decl_from_template. */
5156628f
MS
9578 lineno = DECL_SOURCE_LINE (d);
9579 input_filename = DECL_SOURCE_FILE (d);
9580
5566b478
MS
9581 if (TREE_CODE (d) == VAR_DECL)
9582 {
9583 DECL_IN_AGGR_P (d) = 0;
9584 if (DECL_INTERFACE_KNOWN (d))
9585 DECL_EXTERNAL (d) = ! DECL_NOT_REALLY_EXTERN (d);
9586 else
9587 {
9588 DECL_EXTERNAL (d) = 1;
9589 DECL_NOT_REALLY_EXTERN (d) = 1;
9590 }
cd9f6678 9591 cp_finish_decl (d, DECL_INITIAL (d), NULL_TREE, 0);
5566b478
MS
9592 }
9593 else if (TREE_CODE (d) == FUNCTION_DECL)
9594 {
558475f0 9595 /* Set up context. */
a8f73d4b 9596 start_function (NULL_TREE, d, NULL_TREE, SF_PRE_PARSED);
5566b478
MS
9597 store_parm_decls ();
9598
f9817201
MM
9599 /* We already set up __FUNCTION__, etc., so we don't want to do
9600 it again now. */
9601 current_function_name_declared = 1;
9602
558475f0
MM
9603 /* Substitute into the body of the function. */
9604 tsubst_expr (DECL_SAVED_TREE (code_pattern), args,
9605 /*complain=*/1, tmpl);
9606
4d6abc1c
MM
9607 /* Finish the function. */
9608 expand_body (finish_function (lineno, 0));
5566b478
MS
9609 }
9610
de22184b 9611out:
c27be9b9
JM
9612 lineno = line;
9613 input_filename = file;
9614
5566b478 9615 pop_from_top_level ();
5566b478 9616 pop_tinst_level ();
a28e3c7f 9617
a28e3c7f
MS
9618 return d;
9619}
5566b478 9620
0aafb128
MM
9621/* Run through the list of templates that we wish we could
9622 instantiate, and instantiate any we can. */
9623
9624int
9625instantiate_pending_templates ()
9626{
9627 tree *t;
9628 int instantiated_something = 0;
9629 int reconsider;
9630
9631 do
9632 {
9633 reconsider = 0;
9634
9635 t = &pending_templates;
9636 while (*t)
9637 {
9638 tree srcloc = TREE_PURPOSE (*t);
9639 tree instantiation = TREE_VALUE (*t);
9640
9641 input_filename = SRCLOC_FILE (srcloc);
9642 lineno = SRCLOC_LINE (srcloc);
9643
9644 if (TREE_CODE_CLASS (TREE_CODE (instantiation)) == 't')
9645 {
9646 tree fn;
9647
9648 if (!TYPE_SIZE (instantiation))
9649 {
9650 instantiate_class_template (instantiation);
9651 if (CLASSTYPE_TEMPLATE_INSTANTIATION (instantiation))
9652 for (fn = TYPE_METHODS (instantiation);
9653 fn;
9654 fn = TREE_CHAIN (fn))
9655 if (! DECL_ARTIFICIAL (fn))
9656 instantiate_decl (fn);
9657 if (TYPE_SIZE (instantiation))
9658 {
9659 instantiated_something = 1;
9660 reconsider = 1;
9661 }
9662 }
9663
9664 if (TYPE_SIZE (instantiation))
9665 /* If INSTANTIATION has been instantiated, then we don't
9666 need to consider it again in the future. */
9667 *t = TREE_CHAIN (*t);
9668 else
9669 t = &TREE_CHAIN (*t);
9670 }
9671 else
9672 {
9673 if (DECL_TEMPLATE_INSTANTIATION (instantiation)
9674 && !DECL_TEMPLATE_INSTANTIATED (instantiation))
9675 {
9676 instantiation = instantiate_decl (instantiation);
9677 if (DECL_TEMPLATE_INSTANTIATED (instantiation))
9678 {
9679 instantiated_something = 1;
9680 reconsider = 1;
9681 }
9682 }
9683
9684 if (!DECL_TEMPLATE_INSTANTIATION (instantiation)
9685 || DECL_TEMPLATE_INSTANTIATED (instantiation))
9686 /* If INSTANTIATION has been instantiated, then we don't
9687 need to consider it again in the future. */
9688 *t = TREE_CHAIN (*t);
9689 else
9690 t = &TREE_CHAIN (*t);
9691 }
9692 }
9693 template_tail = t;
9694
9695 /* Go through the things that are template instantiations if we are
9696 using guiding declarations. */
9697 t = &maybe_templates;
9698 while (*t)
9699 {
9700 tree template;
9701 tree fn;
9702 tree args;
9703
9704 fn = TREE_VALUE (*t);
9705
9706 if (DECL_INITIAL (fn))
9707 /* If the FN is already defined, then it was either already
9708 instantiated or, even though guiding declarations were
9709 allowed, a non-template definition was provided. */
9710 ;
9711 else
9712 {
9713 template = TREE_PURPOSE (*t);
9714 args = get_bindings (template, fn, NULL_TREE);
9715 fn = instantiate_template (template, args);
9716 instantiate_decl (fn);
9717 reconsider = 1;
9718 }
9719
9720 /* Remove this entry from the chain. */
9721 *t = TREE_CHAIN (*t);
9722 }
9723 maybe_template_tail = t;
9724 }
9725 while (reconsider);
9726
9727 return instantiated_something;
9728}
9729
4393e105
MM
9730/* Substitute ARGVEC into T, which is a TREE_LIST. In particular, it
9731 is an initializer list: the TREE_PURPOSEs are DECLs, and the
9732 TREE_VALUEs are initializer values. Used by instantiate_decl. */
9733
824b9a4c 9734static tree
5566b478
MS
9735tsubst_expr_values (t, argvec)
9736 tree t, argvec;
9737{
9738 tree first = NULL_TREE;
9739 tree *p = &first;
9740
9741 for (; t; t = TREE_CHAIN (t))
9742 {
4393e105
MM
9743 tree pur = tsubst_copy (TREE_PURPOSE (t), argvec,
9744 /*complain=*/1, NULL_TREE);
9745 tree val = tsubst_expr (TREE_VALUE (t), argvec, /*complain=*/1,
9746 NULL_TREE);
5566b478
MS
9747 *p = build_tree_list (pur, val);
9748 p = &TREE_CHAIN (*p);
9749 }
9750 return first;
9751}
9752
73aad9b9
JM
9753/* D is an undefined function declaration in the presence of templates with
9754 the same name, listed in FNS. If one of them can produce D as an
9755 instantiation, remember this so we can instantiate it at EOF if D has
9756 not been defined by that time. */
9757
9758void
9759add_maybe_template (d, fns)
9760 tree d, fns;
9761{
9762 tree t;
9763
9764 if (DECL_MAYBE_TEMPLATE (d))
9765 return;
9766
e1467ff2 9767 t = most_specialized (fns, d, NULL_TREE);
73aad9b9
JM
9768 if (! t)
9769 return;
9770 if (t == error_mark_node)
9771 {
8251199e 9772 cp_error ("ambiguous template instantiation for `%D'", d);
73aad9b9
JM
9773 return;
9774 }
9775
e1b3e07d 9776 *maybe_template_tail = tree_cons (t, d, NULL_TREE);
73aad9b9
JM
9777 maybe_template_tail = &TREE_CHAIN (*maybe_template_tail);
9778 DECL_MAYBE_TEMPLATE (d) = 1;
9779}
b87692e5 9780
61a127b3
MM
9781/* Set CURRENT_ACCESS_SPECIFIER based on the protection of DECL. */
9782
9783static void
9784set_current_access_from_decl (decl)
9785 tree decl;
9786{
9787 if (TREE_PRIVATE (decl))
9788 current_access_specifier = access_private_node;
9789 else if (TREE_PROTECTED (decl))
9790 current_access_specifier = access_protected_node;
9791 else
9792 current_access_specifier = access_public_node;
9793}
9794
dbfe2124
MM
9795/* Instantiate an enumerated type. TAG is the template type, NEWTAG
9796 is the instantiation (which should have been created with
9797 start_enum) and ARGS are the template arguments to use. */
b87692e5 9798
dbfe2124
MM
9799static void
9800tsubst_enum (tag, newtag, args)
9801 tree tag;
9802 tree newtag;
9803 tree args;
b87692e5 9804{
dbfe2124 9805 tree e;
b87692e5
MS
9806
9807 for (e = TYPE_VALUES (tag); e; e = TREE_CHAIN (e))
9808 {
61a127b3 9809 tree value;
58595203 9810
61a127b3
MM
9811 /* Note that in a template enum, the TREE_VALUE is the
9812 CONST_DECL, not the corresponding INTEGER_CST. */
9813 value = tsubst_expr (DECL_INITIAL (TREE_VALUE (e)),
4393e105
MM
9814 args, /*complain=*/1,
9815 NULL_TREE);
61a127b3
MM
9816
9817 /* Give this enumeration constant the correct access. */
9818 set_current_access_from_decl (TREE_VALUE (e));
9819
9820 /* Actually build the enumerator itself. */
58595203 9821 build_enumerator (TREE_PURPOSE (e), value, newtag);
dbfe2124 9822 }
b3d5a58b 9823
dbfe2124 9824 finish_enum (newtag);
b87692e5 9825}
36a117a5
MM
9826
9827/* Set the DECL_ASSEMBLER_NAME for DECL, which is a FUNCTION_DECL that
9828 is either an instantiation or specialization of a template
9829 function. */
9830
9831static void
9832set_mangled_name_for_template_decl (decl)
9833 tree decl;
9834{
9835 tree saved_namespace;
b370501f 9836 tree context = NULL_TREE;
36a117a5
MM
9837 tree fn_type;
9838 tree ret_type;
9839 tree parm_types;
9840 tree tparms;
9841 tree targs;
9842 tree tmpl;
9843 int parm_depth;
9844
9845 my_friendly_assert (TREE_CODE (decl) == FUNCTION_DECL, 0);
9846 my_friendly_assert (DECL_TEMPLATE_INFO (decl) != NULL_TREE, 0);
9847
9848 /* The names of template functions must be mangled so as to indicate
9849 what template is being specialized with what template arguments.
9850 For example, each of the following three functions must get
9851 different mangled names:
9852
9853 void f(int);
9854 template <> void f<7>(int);
9855 template <> void f<8>(int); */
9856
9857 targs = DECL_TI_ARGS (decl);
9858 if (uses_template_parms (targs))
9859 /* This DECL is for a partial instantiation. There's no need to
9860 mangle the name of such an entity. */
9861 return;
9862
9863 tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
9864 tparms = DECL_TEMPLATE_PARMS (tmpl);
9865 parm_depth = TMPL_PARMS_DEPTH (tparms);
9866
9867 /* There should be as many levels of arguments as there are levels
9868 of parameters. */
9869 my_friendly_assert (parm_depth == TMPL_ARGS_DEPTH (targs), 0);
9870
9871 /* We now compute the PARMS and RET_TYPE to give to
9872 build_decl_overload_real. The PARMS and RET_TYPE are the
9873 parameter and return types of the template, after all but the
9874 innermost template arguments have been substituted, not the
9875 parameter and return types of the function DECL. For example,
9876 given:
9877
9878 template <class T> T f(T);
9879
9880 both PARMS and RET_TYPE should be `T' even if DECL is `int f(int)'.
9881 A more subtle example is:
9882
9883 template <class T> struct S { template <class U> void f(T, U); }
9884
9885 Here, if DECL is `void S<int>::f(int, double)', PARMS should be
9886 {int, U}. Thus, the args that we want to subsitute into the
9887 return and parameter type for the function are those in TARGS,
9888 with the innermost level omitted. */
9889 fn_type = TREE_TYPE (tmpl);
9890 if (DECL_STATIC_FUNCTION_P (decl))
61a127b3 9891 context = DECL_CLASS_CONTEXT (decl);
36a117a5
MM
9892
9893 if (parm_depth == 1)
9894 /* No substitution is necessary. */
9895 ;
9896 else
9897 {
9898 int i;
9899 tree partial_args;
9900
9901 /* Replace the innermost level of the TARGS with NULL_TREEs to
9902 let tsubst know not to subsitute for those parameters. */
f31c0a32 9903 partial_args = make_tree_vec (TREE_VEC_LENGTH (targs));
36a117a5
MM
9904 for (i = 1; i < TMPL_ARGS_DEPTH (targs); ++i)
9905 SET_TMPL_ARGS_LEVEL (partial_args, i,
9906 TMPL_ARGS_LEVEL (targs, i));
9907 SET_TMPL_ARGS_LEVEL (partial_args,
9908 TMPL_ARGS_DEPTH (targs),
f31c0a32 9909 make_tree_vec (DECL_NTPARMS (tmpl)));
36a117a5
MM
9910
9911 /* Now, do the (partial) substitution to figure out the
9912 appropriate function type. */
4393e105 9913 fn_type = tsubst (fn_type, partial_args, /*complain=*/1, NULL_TREE);
36a117a5 9914 if (DECL_STATIC_FUNCTION_P (decl))
4393e105 9915 context = tsubst (context, partial_args, /*complain=*/1, NULL_TREE);
36a117a5
MM
9916
9917 /* Substitute into the template parameters to obtain the real
9918 innermost set of parameters. This step is important if the
9919 innermost set of template parameters contains value
9920 parameters whose types depend on outer template parameters. */
9921 TREE_VEC_LENGTH (partial_args)--;
4393e105 9922 tparms = tsubst_template_parms (tparms, partial_args, /*complain=*/1);
36a117a5
MM
9923 }
9924
9925 /* Now, get the innermost parameters and arguments, and figure out
9926 the parameter and return types. */
9927 tparms = INNERMOST_TEMPLATE_PARMS (tparms);
9928 targs = innermost_args (targs);
9929 ret_type = TREE_TYPE (fn_type);
9930 parm_types = TYPE_ARG_TYPES (fn_type);
9931
9932 /* For a static member function, we generate a fake `this' pointer,
9933 for the purposes of mangling. This indicates of which class the
9934 function is a member. Because of:
9935
9936 [class.static]
9937
9938 There shall not be a static and a nonstatic member function
9939 with the same name and the same parameter types
9940
9941 we don't have to worry that this will result in a clash with a
9942 non-static member function. */
9943 if (DECL_STATIC_FUNCTION_P (decl))
9944 parm_types = hash_tree_chain (build_pointer_type (context), parm_types);
9945
9946 /* There should be the same number of template parameters as
9947 template arguments. */
9948 my_friendly_assert (TREE_VEC_LENGTH (tparms) == TREE_VEC_LENGTH (targs),
9949 0);
9950
9951 /* If the template is in a namespace, we need to put that into the
9952 mangled name. Unfortunately, build_decl_overload_real does not
9953 get the decl to mangle, so it relies on the current
9954 namespace. Therefore, we set that here temporarily. */
9955 my_friendly_assert (TREE_CODE_CLASS (TREE_CODE (decl)) == 'd', 980702);
9956 saved_namespace = current_namespace;
9957 current_namespace = CP_DECL_CONTEXT (decl);
9958
9959 /* Actually set the DCL_ASSEMBLER_NAME. */
9960 DECL_ASSEMBLER_NAME (decl)
9961 = build_decl_overload_real (DECL_NAME (decl), parm_types, ret_type,
9962 tparms, targs,
9963 DECL_FUNCTION_MEMBER_P (decl)
9964 + DECL_CONSTRUCTOR_P (decl));
9965
9966 /* Restore the previously active namespace. */
9967 current_namespace = saved_namespace;
9968}
This page took 2.287101 seconds and 5 git commands to generate.