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