]> gcc.gnu.org Git - gcc.git/blame - gcc/cp/pt.c
re PR c++/35546 (__attribute__(format...) broken for members of template classes?)
[gcc.git] / gcc / cp / pt.c
CommitLineData
8d08fdba 1/* Handle parameterized types (templates) for GNU C++.
3febd123 2 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3fe82414 3 2001, 2002, 2003, 2004, 2005, 2007, 2008 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 6
f5adbb8d 7This file is part of GCC.
8d08fdba 8
f5adbb8d 9GCC is free software; you can redistribute it and/or modify
8d08fdba 10it under the terms of the GNU General Public License as published by
e77f031d 11the Free Software Foundation; either version 3, or (at your option)
8d08fdba
MS
12any later version.
13
f5adbb8d 14GCC is distributed in the hope that it will be useful,
8d08fdba
MS
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
e77f031d
NC
20along with GCC; see the file COPYING3. If not see
21<http://www.gnu.org/licenses/>. */
8d08fdba
MS
22
23/* Known bugs or deficiencies include:
e92cc029 24
e92cc029
MS
25 all methods must be provided in header files; can't use a source
26 file that contains only the method templates and "just win". */
8d08fdba
MS
27
28#include "config.h"
8d052bc7 29#include "system.h"
4977bab6
ZW
30#include "coretypes.h"
31#include "tm.h"
8d08fdba 32#include "obstack.h"
8d08fdba 33#include "tree.h"
0c58f841 34#include "pointer-set.h"
8d08fdba 35#include "flags.h"
e58a9aa1 36#include "c-common.h"
8d08fdba 37#include "cp-tree.h"
e58a9aa1 38#include "cp-objcp-common.h"
25af8512 39#include "tree-inline.h"
8d08fdba 40#include "decl.h"
e8abc66f 41#include "output.h"
49c249e1 42#include "except.h"
54f92bfb 43#include "toplev.h"
3dcaad8b 44#include "rtl.h"
297a5329 45#include "timevar.h"
325c3691 46#include "tree-iterator.h"
53824026 47#include "vecprim.h"
49c249e1 48
050367a3
MM
49/* The type of functions taking a tree, and some additional data, and
50 returning an int. */
3a978d72 51typedef int (*tree_fn_t) (tree, void*);
050367a3 52
0aafb128
MM
53/* The PENDING_TEMPLATES is a TREE_LIST of templates whose
54 instantiations have been deferred, either because their definitions
e2c3721c
PB
55 were not yet available, or because we were putting off doing the work. */
56struct pending_template GTY (()) {
57 struct pending_template *next;
58 struct tinst_level *tinst;
59};
60
61static GTY(()) struct pending_template *pending_templates;
62static GTY(()) struct pending_template *last_pending_template;
73aad9b9 63
67ffc812 64int processing_template_parmlist;
386b8a85
JM
65static int template_header_count;
66
e2500fed 67static GTY(()) tree saved_trees;
53824026 68static VEC(int,heap) *inline_parm_levels;
75650646 69
e2c3721c 70static GTY(()) struct tinst_level *current_tinst_level;
3ae18eaf 71
2b59fc25
KL
72static GTY(()) tree saved_access_scope;
73
0fe0caa6
RH
74/* Live only within one (recursive) call to tsubst_expr. We use
75 this to pass the statement expression node from the STMT_EXPR
76 to the EXPR_STMT that is its result. */
77static tree cur_stmt_expr;
78
6dfbb909
MM
79/* A map from local variable declarations in the body of the template
80 presently being instantiated to the corresponding instantiated
81 local variables. */
82static htab_t local_specializations;
83
410cf6e6 84/* Contains canonical template parameter types. The vector is indexed by
06d40de8
DG
85 the TEMPLATE_TYPE_IDX of the template parameter. Each element is a
86 TREE_LIST, whose TREE_VALUEs contain the canonical template
87 parameters of various types and levels. */
88static GTY(()) VEC(tree,gc) *canonical_template_parms;
89
830bfa74
MM
90#define UNIFY_ALLOW_NONE 0
91#define UNIFY_ALLOW_MORE_CV_QUAL 1
92#define UNIFY_ALLOW_LESS_CV_QUAL 2
93#define UNIFY_ALLOW_DERIVED 4
161c12b0 94#define UNIFY_ALLOW_INTEGER 8
028d1f20 95#define UNIFY_ALLOW_OUTER_LEVEL 16
62e4a758
NS
96#define UNIFY_ALLOW_OUTER_MORE_CV_QUAL 32
97#define UNIFY_ALLOW_OUTER_LESS_CV_QUAL 64
830bfa74 98
3a978d72
NN
99static void push_access_scope (tree);
100static void pop_access_scope (tree);
acde59b4
MM
101static bool resolve_overloaded_unification (tree, tree, tree, tree,
102 unification_kind_t, int);
3a978d72 103static int try_one_overload (tree, tree, tree, tree, tree,
f23fb7f5 104 unification_kind_t, int, bool);
3a978d72
NN
105static int unify (tree, tree, tree, tree, int);
106static void add_pending_template (tree);
aa9d8196
VR
107static int push_tinst_level (tree);
108static void pop_tinst_level (void);
e2c3721c 109static tree reopen_tinst_level (struct tinst_level *);
3a978d72 110static tree tsubst_initializer_list (tree, tree);
3a978d72 111static tree get_class_bindings (tree, tree, tree);
3db45ab5 112static tree coerce_template_parms (tree, tree, tree, tsubst_flags_t,
e7e93965 113 bool, bool);
3a978d72
NN
114static void tsubst_enum (tree, tree, tree);
115static tree add_to_template_args (tree, tree);
116static tree add_outermost_template_args (tree, tree);
117static bool check_instantiated_args (tree, tree, tsubst_flags_t);
8af2fec4
RY
118static int maybe_adjust_types_for_deduction (unification_kind_t, tree*, tree*,
119 tree);
3a978d72 120static int type_unification_real (tree, tree, tree, tree,
30f86ec3 121 int, unification_kind_t, int);
3a978d72 122static void note_template_header (int);
b6ab6892 123static tree convert_nontype_argument_function (tree, tree);
3a978d72
NN
124static tree convert_nontype_argument (tree, tree);
125static tree convert_template_argument (tree, tree, tree,
126 tsubst_flags_t, int, tree);
0c58f841 127static int for_each_template_parm (tree, tree_fn_t, void*,
c095a4f8 128 struct pointer_set_t*, bool);
5d80a306 129static tree expand_template_argument_pack (tree);
3a978d72 130static tree build_template_parm_index (int, int, int, tree, tree);
ae95e46e 131static bool inline_needs_template_parms (tree);
3a978d72 132static void push_inline_template_parms_recursive (tree, int);
3a978d72 133static tree retrieve_local_specialization (tree);
3a978d72 134static void register_local_specialization (tree, tree);
ef3b7b17 135static tree reduce_template_parm_level (tree, tree, int, tree, tsubst_flags_t);
3a978d72
NN
136static int mark_template_parm (tree, void *);
137static int template_parm_this_level_p (tree, void *);
138static tree tsubst_friend_function (tree, tree);
139static tree tsubst_friend_class (tree, tree);
140static int can_complete_type_without_circularity (tree);
a34d3336 141static tree get_bindings (tree, tree, tree, bool);
3a978d72
NN
142static int template_decl_level (tree);
143static int check_cv_quals_for_unify (int, tree, tree);
5d80a306
DG
144static void template_parm_level_and_index (tree, int*, int*);
145static int unify_pack_expansion (tree, tree, tree, tree, int, bool, bool);
a91db711
NS
146static tree tsubst_template_arg (tree, tree, tsubst_flags_t, tree);
147static tree tsubst_template_args (tree, tree, tsubst_flags_t, tree);
3a978d72
NN
148static tree tsubst_template_parms (tree, tree, tsubst_flags_t);
149static void regenerate_decl_from_template (tree, tree);
3a978d72 150static tree most_specialized_class (tree, tree);
3a978d72 151static tree tsubst_aggr_type (tree, tree, tsubst_flags_t, tree, int);
3a978d72
NN
152static tree tsubst_arg_types (tree, tree, tsubst_flags_t, tree);
153static tree tsubst_function_type (tree, tree, tsubst_flags_t, tree);
9b910171 154static bool check_specialization_scope (void);
3a978d72
NN
155static tree process_partial_specialization (tree);
156static void set_current_access_from_decl (tree);
3a978d72 157static tree get_template_base (tree, tree, tree, tree);
3a978d72
NN
158static tree try_class_unification (tree, tree, tree, tree);
159static int coerce_template_template_parms (tree, tree, tsubst_flags_t,
160 tree, tree);
4cf36211 161static bool template_template_parm_bindings_ok_p (tree, tree);
3a978d72
NN
162static int template_args_equal (tree, tree);
163static void tsubst_default_arguments (tree);
164static tree for_each_template_parm_r (tree *, int *, void *);
165static tree copy_default_args_to_explicit_spec_1 (tree, tree);
166static void copy_default_args_to_explicit_spec (tree);
167static int invalid_nontype_parm_type_p (tree, tsubst_flags_t);
a723baf1 168static int eq_local_specializations (const void *, const void *);
5d80a306 169static bool dependent_template_arg_p (tree);
06d40de8 170static bool any_template_arguments_need_structural_equality_p (tree);
5552b43c 171static bool dependent_type_p_r (tree);
14d22dd6 172static tree tsubst (tree, tree, tsubst_flags_t, tree);
015c2c66 173static tree tsubst_expr (tree, tree, tsubst_flags_t, tree, bool);
14d22dd6 174static tree tsubst_copy (tree, tree, tsubst_flags_t, tree);
5d80a306 175static tree tsubst_pack_expansion (tree, tree, tsubst_flags_t, tree);
36a117a5 176
2b59fc25
KL
177/* Make the current scope suitable for access checking when we are
178 processing T. T can be FUNCTION_DECL for instantiated function
2b907f5c
KL
179 template, or VAR_DECL for static member variable (need by
180 instantiate_decl). */
2b59fc25 181
8ce33230 182static void
2b907f5c 183push_access_scope (tree t)
2b59fc25 184{
50bc768d
NS
185 gcc_assert (TREE_CODE (t) == FUNCTION_DECL
186 || TREE_CODE (t) == VAR_DECL);
2b59fc25 187
23ff7e2d
KL
188 if (DECL_FRIEND_CONTEXT (t))
189 push_nested_class (DECL_FRIEND_CONTEXT (t));
190 else if (DECL_CLASS_SCOPE_P (t))
2b907f5c 191 push_nested_class (DECL_CONTEXT (t));
0f399e5f
KL
192 else
193 push_to_top_level ();
c8094d83 194
2b907f5c 195 if (TREE_CODE (t) == FUNCTION_DECL)
0f399e5f
KL
196 {
197 saved_access_scope = tree_cons
198 (NULL_TREE, current_function_decl, saved_access_scope);
199 current_function_decl = t;
200 }
2b59fc25
KL
201}
202
2b59fc25
KL
203/* Restore the scope set up by push_access_scope. T is the node we
204 are processing. */
205
8ce33230 206static void
3a978d72 207pop_access_scope (tree t)
2b59fc25 208{
2b907f5c 209 if (TREE_CODE (t) == FUNCTION_DECL)
2b59fc25
KL
210 {
211 current_function_decl = TREE_VALUE (saved_access_scope);
212 saved_access_scope = TREE_CHAIN (saved_access_scope);
213 }
0f399e5f 214
23ff7e2d 215 if (DECL_FRIEND_CONTEXT (t) || DECL_CLASS_SCOPE_P (t))
0f399e5f
KL
216 pop_nested_class ();
217 else
218 pop_from_top_level ();
2b59fc25
KL
219}
220
a723baf1
MM
221/* Do any processing required when DECL (a member template
222 declaration) is finished. Returns the TEMPLATE_DECL corresponding
223 to DECL, unless it is a specialization, in which case the DECL
224 itself is returned. */
e1467ff2
MM
225
226tree
3a978d72 227finish_member_template_decl (tree decl)
e1467ff2 228{
a723baf1
MM
229 if (decl == error_mark_node)
230 return error_mark_node;
231
50bc768d 232 gcc_assert (DECL_P (decl));
a723baf1
MM
233
234 if (TREE_CODE (decl) == TYPE_DECL)
93cdc044 235 {
a723baf1
MM
236 tree type;
237
238 type = TREE_TYPE (decl);
92fab505
DG
239 if (type == error_mark_node)
240 return error_mark_node;
9e1e64ec 241 if (MAYBE_CLASS_TYPE_P (type)
a723baf1
MM
242 && CLASSTYPE_TEMPLATE_INFO (type)
243 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
93cdc044 244 {
a723baf1 245 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
93cdc044
JM
246 check_member_template (tmpl);
247 return tmpl;
248 }
8d019cef 249 return NULL_TREE;
93cdc044 250 }
07c88314 251 else if (TREE_CODE (decl) == FIELD_DECL)
0f51ccfc 252 error ("data member %qD cannot be a member template", decl);
a1da6cba 253 else if (DECL_TEMPLATE_INFO (decl))
e1467ff2 254 {
a1da6cba
MM
255 if (!DECL_TEMPLATE_SPECIALIZATION (decl))
256 {
257 check_member_template (DECL_TI_TEMPLATE (decl));
258 return DECL_TI_TEMPLATE (decl);
259 }
260 else
261 return decl;
c8094d83 262 }
a1da6cba 263 else
0f51ccfc 264 error ("invalid member template declaration %qD", decl);
e1467ff2 265
a1da6cba 266 return error_mark_node;
f84b4be9 267}
e1467ff2 268
91a77d68
JM
269/* Return the template info node corresponding to T, whatever T is. */
270
271tree
272get_template_info (tree t)
273{
274 tree tinfo = NULL_TREE;
275
276 if (DECL_P (t) && DECL_LANG_SPECIFIC (t))
277 tinfo = DECL_TEMPLATE_INFO (t);
278
279 if (!tinfo && TREE_CODE (t) == TYPE_DECL)
280 t = TREE_TYPE (t);
281
282 if (TAGGED_TYPE_P (t))
283 tinfo = TYPE_TEMPLATE_INFO (t);
284
285 return tinfo;
286}
287
f84b4be9 288/* Returns the template nesting level of the indicated class TYPE.
c8094d83 289
f84b4be9
JM
290 For example, in:
291 template <class T>
292 struct A
293 {
294 template <class U>
295 struct B {};
296 };
297
c8094d83 298 A<T>::B<U> has depth two, while A<T> has depth one.
39c01e4c 299 Both A<T>::B<int> and A<int>::B<U> have depth one, if
260cd73f 300 they are instantiations, not specializations.
39c01e4c
MM
301
302 This function is guaranteed to return 0 if passed NULL_TREE so
303 that, for example, `template_class_depth (current_class_type)' is
304 always safe. */
f84b4be9 305
260cd73f
VR
306int
307template_class_depth (tree type)
f84b4be9 308{
93cdc044 309 int depth;
f84b4be9 310
c8094d83 311 for (depth = 0;
ed44da02 312 type && TREE_CODE (type) != NAMESPACE_DECL;
c8094d83 313 type = (TREE_CODE (type) == FUNCTION_DECL)
4f1c5b7d 314 ? CP_DECL_CONTEXT (type) : TYPE_CONTEXT (type))
ed44da02 315 {
91a77d68
JM
316 tree tinfo = get_template_info (type);
317
318 if (tinfo && PRIMARY_TEMPLATE_P (TI_TEMPLATE (tinfo))
319 && uses_template_parms (INNERMOST_TEMPLATE_ARGS (TI_ARGS (tinfo))))
320 ++depth;
ed44da02 321 }
f84b4be9
JM
322
323 return depth;
e1467ff2 324}
98c1c668 325
ae95e46e
PC
326/* Subroutine of maybe_begin_member_template_processing.
327 Returns true if processing DECL needs us to push template parms. */
cae40af6 328
ae95e46e 329static bool
3a978d72 330inline_needs_template_parms (tree decl)
cae40af6
JM
331{
332 if (! DECL_TEMPLATE_INFO (decl))
ae95e46e 333 return false;
f84b4be9 334
36a117a5 335 return (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (most_general_template (decl)))
cae40af6
JM
336 > (processing_template_decl + DECL_TEMPLATE_SPECIALIZATION (decl)));
337}
338
339/* Subroutine of maybe_begin_member_template_processing.
340 Push the template parms in PARMS, starting from LEVELS steps into the
341 chain, and ending at the beginning, since template parms are listed
342 innermost first. */
343
344static void
3a978d72 345push_inline_template_parms_recursive (tree parmlist, int levels)
cae40af6
JM
346{
347 tree parms = TREE_VALUE (parmlist);
348 int i;
349
350 if (levels > 1)
351 push_inline_template_parms_recursive (TREE_CHAIN (parmlist), levels - 1);
786b5245 352
98c1c668 353 ++processing_template_decl;
cae40af6 354 current_template_parms
4890c2f4 355 = tree_cons (size_int (processing_template_decl),
98c1c668 356 parms, current_template_parms);
cae40af6
JM
357 TEMPLATE_PARMS_FOR_INLINE (current_template_parms) = 1;
358
ac20c67a 359 begin_scope (TREE_VEC_LENGTH (parms) ? sk_template_parms : sk_template_spec,
0cbd7506 360 NULL);
c8094d83 361 for (i = 0; i < TREE_VEC_LENGTH (parms); ++i)
98c1c668 362 {
0f67a82f 363 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
42b304f1 364
0f67a82f
LM
365 if (parm == error_mark_node)
366 continue;
42b304f1 367
50bc768d 368 gcc_assert (DECL_P (parm));
cae40af6 369
98c1c668
JM
370 switch (TREE_CODE (parm))
371 {
786b5245 372 case TYPE_DECL:
73b0fce8 373 case TEMPLATE_DECL:
98c1c668
JM
374 pushdecl (parm);
375 break;
786b5245
MM
376
377 case PARM_DECL:
378 {
fc03edb3
MM
379 /* Make a CONST_DECL as is done in process_template_parm.
380 It is ugly that we recreate this here; the original
381 version built in process_template_parm is no longer
382 available. */
786b5245
MM
383 tree decl = build_decl (CONST_DECL, DECL_NAME (parm),
384 TREE_TYPE (parm));
c727aa5e 385 DECL_ARTIFICIAL (decl) = 1;
6de9cd9a
DN
386 TREE_CONSTANT (decl) = 1;
387 TREE_INVARIANT (decl) = 1;
388 TREE_READONLY (decl) = 1;
786b5245 389 DECL_INITIAL (decl) = DECL_INITIAL (parm);
cd9f6678 390 SET_DECL_TEMPLATE_PARM_P (decl);
786b5245
MM
391 pushdecl (decl);
392 }
cae40af6 393 break;
786b5245 394
98c1c668 395 default:
315fb5db 396 gcc_unreachable ();
98c1c668
JM
397 }
398 }
399}
400
cae40af6
JM
401/* Restore the template parameter context for a member template or
402 a friend template defined in a class definition. */
403
404void
3a978d72 405maybe_begin_member_template_processing (tree decl)
cae40af6
JM
406{
407 tree parms;
3dcaad8b 408 int levels = 0;
cae40af6 409
3dcaad8b
MM
410 if (inline_needs_template_parms (decl))
411 {
412 parms = DECL_TEMPLATE_PARMS (most_general_template (decl));
413 levels = TMPL_PARMS_DEPTH (parms) - processing_template_decl;
cae40af6 414
3dcaad8b
MM
415 if (DECL_TEMPLATE_SPECIALIZATION (decl))
416 {
417 --levels;
418 parms = TREE_CHAIN (parms);
419 }
cae40af6 420
3dcaad8b 421 push_inline_template_parms_recursive (parms, levels);
cae40af6
JM
422 }
423
3dcaad8b
MM
424 /* Remember how many levels of template parameters we pushed so that
425 we can pop them later. */
53824026 426 VEC_safe_push (int, heap, inline_parm_levels, levels);
cae40af6
JM
427}
428
1875c2b7 429/* Undo the effects of maybe_begin_member_template_processing. */
98c1c668 430
c8094d83 431void
3a978d72 432maybe_end_member_template_processing (void)
98c1c668 433{
3dcaad8b 434 int i;
53824026 435 int last;
3dcaad8b 436
53824026 437 if (VEC_length (int, inline_parm_levels) == 0)
98c1c668
JM
438 return;
439
53824026
KH
440 last = VEC_pop (int, inline_parm_levels);
441 for (i = 0; i < last; ++i)
cae40af6
JM
442 {
443 --processing_template_decl;
444 current_template_parms = TREE_CHAIN (current_template_parms);
445 poplevel (0, 0, 0);
446 }
98c1c668
JM
447}
448
36a117a5 449/* Return a new template argument vector which contains all of ARGS,
f9a7ae04 450 but has as its innermost set of arguments the EXTRA_ARGS. */
e6f1275f
JM
451
452static tree
3a978d72 453add_to_template_args (tree args, tree extra_args)
e6f1275f 454{
36a117a5
MM
455 tree new_args;
456 int extra_depth;
457 int i;
458 int j;
e6f1275f 459
36a117a5 460 extra_depth = TMPL_ARGS_DEPTH (extra_args);
f31c0a32 461 new_args = make_tree_vec (TMPL_ARGS_DEPTH (args) + extra_depth);
e6f1275f 462
36a117a5
MM
463 for (i = 1; i <= TMPL_ARGS_DEPTH (args); ++i)
464 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (args, i));
e6f1275f 465
36a117a5
MM
466 for (j = 1; j <= extra_depth; ++j, ++i)
467 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (extra_args, j));
c8094d83 468
e6f1275f
JM
469 return new_args;
470}
471
36a117a5
MM
472/* Like add_to_template_args, but only the outermost ARGS are added to
473 the EXTRA_ARGS. In particular, all but TMPL_ARGS_DEPTH
474 (EXTRA_ARGS) levels are added. This function is used to combine
475 the template arguments from a partial instantiation with the
476 template arguments used to attain the full instantiation from the
477 partial instantiation. */
98c1c668 478
4966381a 479static tree
3a978d72 480add_outermost_template_args (tree args, tree extra_args)
98c1c668
JM
481{
482 tree new_args;
483
e4a84209
MM
484 /* If there are more levels of EXTRA_ARGS than there are ARGS,
485 something very fishy is going on. */
50bc768d 486 gcc_assert (TMPL_ARGS_DEPTH (args) >= TMPL_ARGS_DEPTH (extra_args));
e4a84209
MM
487
488 /* If *all* the new arguments will be the EXTRA_ARGS, just return
489 them. */
490 if (TMPL_ARGS_DEPTH (args) == TMPL_ARGS_DEPTH (extra_args))
491 return extra_args;
492
36a117a5
MM
493 /* For the moment, we make ARGS look like it contains fewer levels. */
494 TREE_VEC_LENGTH (args) -= TMPL_ARGS_DEPTH (extra_args);
c8094d83 495
36a117a5 496 new_args = add_to_template_args (args, extra_args);
98c1c668 497
36a117a5
MM
498 /* Now, we restore ARGS to its full dimensions. */
499 TREE_VEC_LENGTH (args) += TMPL_ARGS_DEPTH (extra_args);
98c1c668
JM
500
501 return new_args;
502}
5566b478 503
f9a7ae04
MM
504/* Return the N levels of innermost template arguments from the ARGS. */
505
506tree
3a978d72 507get_innermost_template_args (tree args, int n)
f9a7ae04
MM
508{
509 tree new_args;
510 int extra_levels;
511 int i;
512
50bc768d 513 gcc_assert (n >= 0);
f9a7ae04
MM
514
515 /* If N is 1, just return the innermost set of template arguments. */
516 if (n == 1)
517 return TMPL_ARGS_LEVEL (args, TMPL_ARGS_DEPTH (args));
c8094d83 518
f9a7ae04
MM
519 /* If we're not removing anything, just return the arguments we were
520 given. */
521 extra_levels = TMPL_ARGS_DEPTH (args) - n;
50bc768d 522 gcc_assert (extra_levels >= 0);
f9a7ae04
MM
523 if (extra_levels == 0)
524 return args;
525
526 /* Make a new set of arguments, not containing the outer arguments. */
527 new_args = make_tree_vec (n);
528 for (i = 1; i <= n; ++i)
c8094d83 529 SET_TMPL_ARGS_LEVEL (new_args, i,
f9a7ae04
MM
530 TMPL_ARGS_LEVEL (args, i + extra_levels));
531
532 return new_args;
533}
534
dc28490d
JM
535/* The inverse of get_innermost_template_args: Return all but the innermost
536 EXTRA_LEVELS levels of template arguments from the ARGS. */
537
538static tree
539strip_innermost_template_args (tree args, int extra_levels)
540{
541 tree new_args;
542 int n = TMPL_ARGS_DEPTH (args) - extra_levels;
543 int i;
544
545 gcc_assert (n >= 0);
546
547 /* If N is 1, just return the outermost set of template arguments. */
548 if (n == 1)
549 return TMPL_ARGS_LEVEL (args, 1);
550
551 /* If we're not removing anything, just return the arguments we were
552 given. */
553 gcc_assert (extra_levels >= 0);
554 if (extra_levels == 0)
555 return args;
556
557 /* Make a new set of arguments, not containing the inner arguments. */
558 new_args = make_tree_vec (n);
559 for (i = 1; i <= n; ++i)
560 SET_TMPL_ARGS_LEVEL (new_args, i,
561 TMPL_ARGS_LEVEL (args, i));
562
563 return new_args;
564}
565
5566b478
MS
566/* We've got a template header coming up; push to a new level for storing
567 the parms. */
8d08fdba 568
8d08fdba 569void
3a978d72 570begin_template_parm_list (void)
8d08fdba 571{
6757edfe
MM
572 /* We use a non-tag-transparent scope here, which causes pushtag to
573 put tags in this scope, rather than in the enclosing class or
574 namespace scope. This is the right thing, since we want
575 TEMPLATE_DECLS, and not TYPE_DECLS for template classes. For a
576 global template class, push_template_decl handles putting the
577 TEMPLATE_DECL into top-level scope. For a nested template class,
578 e.g.:
579
580 template <class T> struct S1 {
0cbd7506 581 template <class T> struct S2 {};
6757edfe
MM
582 };
583
584 pushtag contains special code to call pushdecl_with_scope on the
585 TEMPLATE_DECL for S2. */
ac20c67a 586 begin_scope (sk_template_parms, NULL);
5156628f 587 ++processing_template_decl;
67ffc812 588 ++processing_template_parmlist;
386b8a85
JM
589 note_template_header (0);
590}
591
6c30752f 592/* This routine is called when a specialization is declared. If it is
9b910171
LM
593 invalid to declare a specialization here, an error is reported and
594 false is returned, otherwise this routine will return true. */
6c30752f 595
9b910171 596static bool
3a978d72 597check_specialization_scope (void)
6c30752f
MM
598{
599 tree scope = current_scope ();
3ddfb0e6 600
c8094d83
MS
601 /* [temp.expl.spec]
602
6c30752f
MM
603 An explicit specialization shall be declared in the namespace of
604 which the template is a member, or, for member templates, in the
605 namespace of which the enclosing class or enclosing class
606 template is a member. An explicit specialization of a member
607 function, member class or static data member of a class template
608 shall be declared in the namespace of which the class template
609 is a member. */
610 if (scope && TREE_CODE (scope) != NAMESPACE_DECL)
9b910171
LM
611 {
612 error ("explicit specialization in non-namespace scope %qD", scope);
613 return false;
614 }
3ddfb0e6 615
c8094d83 616 /* [temp.expl.spec]
6c30752f
MM
617
618 In an explicit specialization declaration for a member of a class
619 template or a member template that appears in namespace scope,
620 the member template and some of its enclosing class templates may
621 remain unspecialized, except that the declaration shall not
622 explicitly specialize a class member template if its enclosing
623 class templates are not explicitly specialized as well. */
c8094d83 624 if (current_template_parms)
9b910171
LM
625 {
626 error ("enclosing class templates are not explicitly specialized");
627 return false;
628 }
629
630 return true;
6c30752f
MM
631}
632
c6002625 633/* We've just seen template <>. */
386b8a85 634
9b910171 635bool
3a978d72 636begin_specialization (void)
386b8a85 637{
ac20c67a 638 begin_scope (sk_template_spec, NULL);
386b8a85 639 note_template_header (1);
9b910171 640 return check_specialization_scope ();
386b8a85
JM
641}
642
dc957d14 643/* Called at then end of processing a declaration preceded by
386b8a85
JM
644 template<>. */
645
c8094d83 646void
3a978d72 647end_specialization (void)
386b8a85 648{
74b846e0 649 finish_scope ();
386b8a85
JM
650 reset_specialization ();
651}
652
386b8a85 653/* Any template <>'s that we have seen thus far are not referring to a
c6002625 654 function specialization. */
386b8a85
JM
655
656void
3a978d72 657reset_specialization (void)
386b8a85
JM
658{
659 processing_specialization = 0;
660 template_header_count = 0;
661}
662
838dfd8a 663/* We've just seen a template header. If SPECIALIZATION is nonzero,
386b8a85
JM
664 it was of the form template <>. */
665
c8094d83 666static void
3a978d72 667note_template_header (int specialization)
386b8a85
JM
668{
669 processing_specialization = specialization;
670 template_header_count++;
671}
672
75650646 673/* We're beginning an explicit instantiation. */
386b8a85 674
75650646 675void
3a978d72 676begin_explicit_instantiation (void)
386b8a85 677{
50bc768d 678 gcc_assert (!processing_explicit_instantiation);
a723baf1 679 processing_explicit_instantiation = true;
75650646 680}
386b8a85 681
386b8a85 682
75650646 683void
3a978d72 684end_explicit_instantiation (void)
75650646 685{
50bc768d 686 gcc_assert (processing_explicit_instantiation);
a723baf1 687 processing_explicit_instantiation = false;
75650646 688}
386b8a85 689
13a44ee0 690/* An explicit specialization or partial specialization TMPL is being
b1cc95ce
MM
691 declared. Check that the namespace in which the specialization is
692 occurring is permissible. Returns false iff it is invalid to
693 specialize TMPL in the current namespace. */
c8094d83 694
b1cc95ce
MM
695static bool
696check_specialization_namespace (tree tmpl)
697{
698 tree tpl_ns = decl_namespace_context (tmpl);
699
700 /* [tmpl.expl.spec]
c8094d83 701
b1cc95ce
MM
702 An explicit specialization shall be declared in the namespace of
703 which the template is a member, or, for member templates, in the
704 namespace of which the enclosing class or enclosing class
705 template is a member. An explicit specialization of a member
706 function, member class or static data member of a class template
707 shall be declared in the namespace of which the class template is
708 a member. */
709 if (is_associated_namespace (current_namespace, tpl_ns))
710 /* Same or super-using namespace. */
711 return true;
712 else
713 {
0f51ccfc 714 pedwarn ("specialization of %qD in different namespace", tmpl);
dee15844 715 pedwarn (" from definition of %q+#D", tmpl);
b1cc95ce
MM
716 return false;
717 }
718}
719
9c12301f
MM
720/* SPEC is an explicit instantiation. Check that it is valid to
721 perform this explicit instantiation in the current namespace. */
722
723static void
724check_explicit_instantiation_namespace (tree spec)
725{
726 tree ns;
727
728 /* DR 275: An explicit instantiation shall appear in an enclosing
3db45ab5 729 namespace of its template. */
9c12301f
MM
730 ns = decl_namespace_context (spec);
731 if (!is_ancestor (current_namespace, ns))
732 pedwarn ("explicit instantiation of %qD in namespace %qD "
312ea236 733 "(which does not enclose namespace %qD)",
9c12301f
MM
734 spec, current_namespace, ns);
735}
736
36a117a5
MM
737/* The TYPE is being declared. If it is a template type, that means it
738 is a partial specialization. Do appropriate error-checking. */
739
9ce387d9 740tree
3a978d72 741maybe_process_partial_specialization (tree type)
36a117a5 742{
c9043d03
VR
743 tree context;
744
745 if (type == error_mark_node)
9ce387d9
VR
746 return error_mark_node;
747
748 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
749 {
750 error ("name of class shadows template template parameter %qD",
751 TYPE_NAME (type));
752 return error_mark_node;
753 }
c9043d03
VR
754
755 context = TYPE_CONTEXT (type);
6e049fcd 756
a723baf1 757 if (CLASS_TYPE_P (type) && CLASSTYPE_USE_TEMPLATE (type))
36a117a5 758 {
6e049fcd
KL
759 /* This is for ordinary explicit specialization and partial
760 specialization of a template class such as:
761
762 template <> class C<int>;
763
764 or:
765
766 template <class T> class C<T*>;
767
768 Make sure that `C<int>' and `C<T*>' are implicit instantiations. */
769
36a117a5 770 if (CLASSTYPE_IMPLICIT_INSTANTIATION (type)
d0f062fb 771 && !COMPLETE_TYPE_P (type))
36a117a5 772 {
b1cc95ce 773 check_specialization_namespace (CLASSTYPE_TI_TEMPLATE (type));
370af2d5 774 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
36a117a5
MM
775 if (processing_template_decl)
776 push_template_decl (TYPE_MAIN_DECL (type));
777 }
778 else if (CLASSTYPE_TEMPLATE_INSTANTIATION (type))
0f51ccfc 779 error ("specialization of %qT after instantiation", type);
36a117a5 780 }
6e049fcd
KL
781 else if (CLASS_TYPE_P (type)
782 && !CLASSTYPE_USE_TEMPLATE (type)
783 && CLASSTYPE_TEMPLATE_INFO (type)
784 && context && CLASS_TYPE_P (context)
785 && CLASSTYPE_TEMPLATE_INFO (context))
786 {
787 /* This is for an explicit specialization of member class
788 template according to [temp.expl.spec/18]:
789
790 template <> template <class U> class C<int>::D;
791
792 The context `C<int>' must be an implicit instantiation.
793 Otherwise this is just a member class template declared
794 earlier like:
795
796 template <> class C<int> { template <class U> class D; };
797 template <> template <class U> class C<int>::D;
798
799 In the first case, `C<int>::D' is a specialization of `C<T>::D'
800 while in the second case, `C<int>::D' is a primary template
801 and `C<T>::D' may not exist. */
802
803 if (CLASSTYPE_IMPLICIT_INSTANTIATION (context)
804 && !COMPLETE_TYPE_P (type))
805 {
806 tree t;
807
808 if (current_namespace
809 != decl_namespace_context (CLASSTYPE_TI_TEMPLATE (type)))
810 {
0f51ccfc 811 pedwarn ("specializing %q#T in different namespace", type);
dee15844
JM
812 pedwarn (" from definition of %q+#D",
813 CLASSTYPE_TI_TEMPLATE (type));
6e049fcd
KL
814 }
815
816 /* Check for invalid specialization after instantiation:
817
818 template <> template <> class C<int>::D<int>;
819 template <> template <class U> class C<int>::D; */
820
821 for (t = DECL_TEMPLATE_INSTANTIATIONS
822 (most_general_template (CLASSTYPE_TI_TEMPLATE (type)));
823 t; t = TREE_CHAIN (t))
824 if (TREE_VALUE (t) != type
825 && TYPE_CONTEXT (TREE_VALUE (t)) == context)
0f51ccfc 826 error ("specialization %qT after instantiation %qT",
6e049fcd
KL
827 type, TREE_VALUE (t));
828
829 /* Mark TYPE as a specialization. And as a result, we only
830 have one level of template argument for the innermost
831 class template. */
832 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
833 CLASSTYPE_TI_ARGS (type)
834 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type));
835 }
836 }
20496fa2 837 else if (processing_specialization)
9ce387d9
VR
838 {
839 error ("explicit specialization of non-template %qT", type);
840 return error_mark_node;
841 }
842
843 return type;
36a117a5
MM
844}
845
ee81147e 846/* Returns nonzero if we can optimize the retrieval of specializations
c7222c02
MM
847 for TMPL, a TEMPLATE_DECL. In particular, for such a template, we
848 do not use DECL_TEMPLATE_SPECIALIZATIONS at all. */
849
c8094d83 850static inline bool
c7222c02
MM
851optimize_specialization_lookup_p (tree tmpl)
852{
853 return (DECL_FUNCTION_TEMPLATE_P (tmpl)
854 && DECL_CLASS_SCOPE_P (tmpl)
855 /* DECL_CLASS_SCOPE_P holds of T::f even if T is a template
856 parameter. */
857 && CLASS_TYPE_P (DECL_CONTEXT (tmpl))
1ca939e5
MM
858 /* The optimized lookup depends on the fact that the
859 template arguments for the member function template apply
860 purely to the containing class, which is not true if the
861 containing class is an explicit or partial
862 specialization. */
863 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (tmpl))
c7222c02
MM
864 && !DECL_MEMBER_TEMPLATE_P (tmpl)
865 && !DECL_CONV_FN_P (tmpl)
866 /* It is possible to have a template that is not a member
867 template and is not a member of a template class:
c8094d83
MS
868
869 template <typename T>
c7222c02 870 struct S { friend A::f(); };
c8094d83 871
c7222c02
MM
872 Here, the friend function is a template, but the context does
873 not have template information. The optimized lookup relies
874 on having ARGS be the template arguments for both the class
875 and the function template. */
876 && !DECL_FRIEND_P (DECL_TEMPLATE_RESULT (tmpl)));
877}
878
75650646
MM
879/* Retrieve the specialization (in the sense of [temp.spec] - a
880 specialization is either an instantiation or an explicit
881 specialization) of TMPL for the given template ARGS. If there is
882 no such specialization, return NULL_TREE. The ARGS are a vector of
883 arguments, or a vector of vectors of arguments, in the case of
c8094d83 884 templates with more than one level of parameters.
c7222c02
MM
885
886 If TMPL is a type template and CLASS_SPECIALIZATIONS_P is true,
887 then we search for a partial specialization matching ARGS. This
888 parameter is ignored if TMPL is not a class template. */
c8094d83 889
75650646 890static tree
c8094d83 891retrieve_specialization (tree tmpl, tree args,
c7222c02 892 bool class_specializations_p)
75650646 893{
2d8ba2c7
LM
894 if (args == error_mark_node)
895 return NULL_TREE;
896
50bc768d 897 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
75650646 898
36a117a5
MM
899 /* There should be as many levels of arguments as there are
900 levels of parameters. */
c8094d83 901 gcc_assert (TMPL_ARGS_DEPTH (args)
50bc768d 902 == TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl)));
c8094d83 903
c7222c02
MM
904 if (optimize_specialization_lookup_p (tmpl))
905 {
906 tree class_template;
907 tree class_specialization;
d4e6fecb 908 VEC(tree,gc) *methods;
c7222c02
MM
909 tree fns;
910 int idx;
911
912 /* The template arguments actually apply to the containing
913 class. Find the class specialization with those
914 arguments. */
915 class_template = CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (tmpl));
c8094d83 916 class_specialization
c7222c02
MM
917 = retrieve_specialization (class_template, args,
918 /*class_specializations_p=*/false);
919 if (!class_specialization)
920 return NULL_TREE;
921 /* Now, find the appropriate entry in the CLASSTYPE_METHOD_VEC
922 for the specialization. */
923 idx = class_method_index_for_fn (class_specialization, tmpl);
924 if (idx == -1)
925 return NULL_TREE;
926 /* Iterate through the methods with the indicated name, looking
927 for the one that has an instance of TMPL. */
928 methods = CLASSTYPE_METHOD_VEC (class_specialization);
929 for (fns = VEC_index (tree, methods, idx); fns; fns = OVL_NEXT (fns))
930 {
931 tree fn = OVL_CURRENT (fns);
932 if (DECL_TEMPLATE_INFO (fn) && DECL_TI_TEMPLATE (fn) == tmpl)
933 return fn;
934 }
935 return NULL_TREE;
936 }
937 else
938 {
939 tree *sp;
940 tree *head;
941
942 /* Class templates store their instantiations on the
943 DECL_TEMPLATE_INSTANTIATIONS list; other templates use the
944 DECL_TEMPLATE_SPECIALIZATIONS list. */
945 if (!class_specializations_p
56d0c6e3
JM
946 && TREE_CODE (DECL_TEMPLATE_RESULT (tmpl)) == TYPE_DECL
947 && TAGGED_TYPE_P (TREE_TYPE (tmpl)))
c7222c02
MM
948 sp = &DECL_TEMPLATE_INSTANTIATIONS (tmpl);
949 else
950 sp = &DECL_TEMPLATE_SPECIALIZATIONS (tmpl);
951 head = sp;
952 /* Iterate through the list until we find a matching template. */
953 while (*sp != NULL_TREE)
954 {
955 tree spec = *sp;
c8094d83 956
c7222c02
MM
957 if (comp_template_args (TREE_PURPOSE (spec), args))
958 {
959 /* Use the move-to-front heuristic to speed up future
c8094d83 960 searches. */
c7222c02
MM
961 if (spec != *head)
962 {
963 *sp = TREE_CHAIN (*sp);
964 TREE_CHAIN (spec) = *head;
965 *head = spec;
966 }
967 return TREE_VALUE (spec);
968 }
969 sp = &TREE_CHAIN (spec);
970 }
971 }
75650646
MM
972
973 return NULL_TREE;
386b8a85
JM
974}
975
dc957d14 976/* Like retrieve_specialization, but for local declarations. */
9188c363
MM
977
978static tree
3a978d72 979retrieve_local_specialization (tree tmpl)
9188c363 980{
29b0d1fd
JM
981 tree spec;
982
983 if (local_specializations == NULL)
984 return NULL_TREE;
985
986 spec = (tree) htab_find_with_hash (local_specializations, tmpl,
987 htab_hash_pointer (tmpl));
a723baf1 988 return spec ? TREE_PURPOSE (spec) : NULL_TREE;
9188c363
MM
989}
990
838dfd8a 991/* Returns nonzero iff DECL is a specialization of TMPL. */
6757edfe
MM
992
993int
3a978d72 994is_specialization_of (tree decl, tree tmpl)
6757edfe
MM
995{
996 tree t;
997
998 if (TREE_CODE (decl) == FUNCTION_DECL)
999 {
c8094d83 1000 for (t = decl;
6757edfe
MM
1001 t != NULL_TREE;
1002 t = DECL_TEMPLATE_INFO (t) ? DECL_TI_TEMPLATE (t) : NULL_TREE)
1003 if (t == tmpl)
1004 return 1;
1005 }
c8094d83 1006 else
6757edfe 1007 {
50bc768d 1008 gcc_assert (TREE_CODE (decl) == TYPE_DECL);
6757edfe
MM
1009
1010 for (t = TREE_TYPE (decl);
1011 t != NULL_TREE;
1012 t = CLASSTYPE_USE_TEMPLATE (t)
1013 ? TREE_TYPE (CLASSTYPE_TI_TEMPLATE (t)) : NULL_TREE)
9edc3913 1014 if (same_type_ignoring_top_level_qualifiers_p (t, TREE_TYPE (tmpl)))
6757edfe 1015 return 1;
c8094d83 1016 }
386b8a85 1017
6757edfe
MM
1018 return 0;
1019}
75650646 1020
d43f603d
KL
1021/* Returns nonzero iff DECL is a specialization of friend declaration
1022 FRIEND according to [temp.friend]. */
1023
1024bool
1025is_specialization_of_friend (tree decl, tree friend)
1026{
1027 bool need_template = true;
1028 int template_depth;
1029
b939a023
KL
1030 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL
1031 || TREE_CODE (decl) == TYPE_DECL);
d43f603d
KL
1032
1033 /* For [temp.friend/6] when FRIEND is an ordinary member function
1034 of a template class, we want to check if DECL is a specialization
1035 if this. */
1036 if (TREE_CODE (friend) == FUNCTION_DECL
1037 && DECL_TEMPLATE_INFO (friend)
1038 && !DECL_USE_TEMPLATE (friend))
1039 {
b939a023 1040 /* We want a TEMPLATE_DECL for `is_specialization_of'. */
d43f603d
KL
1041 friend = DECL_TI_TEMPLATE (friend);
1042 need_template = false;
1043 }
b939a023
KL
1044 else if (TREE_CODE (friend) == TEMPLATE_DECL
1045 && !PRIMARY_TEMPLATE_P (friend))
1046 need_template = false;
d43f603d
KL
1047
1048 /* There is nothing to do if this is not a template friend. */
1049 if (TREE_CODE (friend) != TEMPLATE_DECL)
b939a023 1050 return false;
d43f603d
KL
1051
1052 if (is_specialization_of (decl, friend))
b939a023 1053 return true;
d43f603d
KL
1054
1055 /* [temp.friend/6]
1056 A member of a class template may be declared to be a friend of a
1057 non-template class. In this case, the corresponding member of
1058 every specialization of the class template is a friend of the
1059 class granting friendship.
c8094d83 1060
d43f603d
KL
1061 For example, given a template friend declaration
1062
1063 template <class T> friend void A<T>::f();
1064
1065 the member function below is considered a friend
1066
1067 template <> struct A<int> {
1068 void f();
1069 };
1070
1071 For this type of template friend, TEMPLATE_DEPTH below will be
5c425df5 1072 nonzero. To determine if DECL is a friend of FRIEND, we first
d43f603d
KL
1073 check if the enclosing class is a specialization of another. */
1074
1075 template_depth = template_class_depth (DECL_CONTEXT (friend));
1076 if (template_depth
1077 && DECL_CLASS_SCOPE_P (decl)
c8094d83 1078 && is_specialization_of (TYPE_NAME (DECL_CONTEXT (decl)),
d43f603d
KL
1079 CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (friend))))
1080 {
1081 /* Next, we check the members themselves. In order to handle
b939a023 1082 a few tricky cases, such as when FRIEND's are
d43f603d
KL
1083
1084 template <class T> friend void A<T>::g(T t);
1085 template <class T> template <T t> friend void A<T>::h();
1086
b939a023
KL
1087 and DECL's are
1088
1089 void A<int>::g(int);
1090 template <int> void A<int>::h();
1091
1092 we need to figure out ARGS, the template arguments from
1093 the context of DECL. This is required for template substitution
1094 of `T' in the function parameter of `g' and template parameter
1095 of `h' in the above examples. Here ARGS corresponds to `int'. */
d43f603d
KL
1096
1097 tree context = DECL_CONTEXT (decl);
1098 tree args = NULL_TREE;
1099 int current_depth = 0;
b939a023 1100
d43f603d
KL
1101 while (current_depth < template_depth)
1102 {
1103 if (CLASSTYPE_TEMPLATE_INFO (context))
1104 {
1105 if (current_depth == 0)
1106 args = TYPE_TI_ARGS (context);
1107 else
1108 args = add_to_template_args (TYPE_TI_ARGS (context), args);
1109 current_depth++;
1110 }
1111 context = TYPE_CONTEXT (context);
1112 }
1113
1114 if (TREE_CODE (decl) == FUNCTION_DECL)
1115 {
1116 bool is_template;
1117 tree friend_type;
1118 tree decl_type;
1119 tree friend_args_type;
1120 tree decl_args_type;
1121
1122 /* Make sure that both DECL and FRIEND are templates or
1123 non-templates. */
1124 is_template = DECL_TEMPLATE_INFO (decl)
1125 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl));
1126 if (need_template ^ is_template)
b939a023 1127 return false;
d43f603d
KL
1128 else if (is_template)
1129 {
da1d7781 1130 /* If both are templates, check template parameter list. */
d43f603d
KL
1131 tree friend_parms
1132 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend),
1133 args, tf_none);
1134 if (!comp_template_parms
1135 (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (decl)),
1136 friend_parms))
b939a023 1137 return false;
d43f603d
KL
1138
1139 decl_type = TREE_TYPE (DECL_TI_TEMPLATE (decl));
1140 }
1141 else
1142 decl_type = TREE_TYPE (decl);
1143
1144 friend_type = tsubst_function_type (TREE_TYPE (friend), args,
1145 tf_none, NULL_TREE);
1146 if (friend_type == error_mark_node)
b939a023 1147 return false;
d43f603d
KL
1148
1149 /* Check if return types match. */
1150 if (!same_type_p (TREE_TYPE (decl_type), TREE_TYPE (friend_type)))
b939a023 1151 return false;
d43f603d
KL
1152
1153 /* Check if function parameter types match, ignoring the
1154 `this' parameter. */
1155 friend_args_type = TYPE_ARG_TYPES (friend_type);
1156 decl_args_type = TYPE_ARG_TYPES (decl_type);
1157 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (friend))
1158 friend_args_type = TREE_CHAIN (friend_args_type);
1159 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1160 decl_args_type = TREE_CHAIN (decl_args_type);
b939a023
KL
1161
1162 return compparms (decl_args_type, friend_args_type);
1163 }
1164 else
1165 {
1166 /* DECL is a TYPE_DECL */
1167 bool is_template;
1168 tree decl_type = TREE_TYPE (decl);
1169
1170 /* Make sure that both DECL and FRIEND are templates or
1171 non-templates. */
1172 is_template
1173 = CLASSTYPE_TEMPLATE_INFO (decl_type)
1174 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (decl_type));
1175
1176 if (need_template ^ is_template)
1177 return false;
1178 else if (is_template)
1179 {
1180 tree friend_parms;
1181 /* If both are templates, check the name of the two
1182 TEMPLATE_DECL's first because is_friend didn't. */
1183 if (DECL_NAME (CLASSTYPE_TI_TEMPLATE (decl_type))
1184 != DECL_NAME (friend))
1185 return false;
1186
1187 /* Now check template parameter list. */
1188 friend_parms
1189 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend),
1190 args, tf_none);
1191 return comp_template_parms
1192 (DECL_TEMPLATE_PARMS (CLASSTYPE_TI_TEMPLATE (decl_type)),
1193 friend_parms);
1194 }
1195 else
1196 return (DECL_NAME (decl)
1197 == DECL_NAME (friend));
d43f603d
KL
1198 }
1199 }
b939a023 1200 return false;
d43f603d
KL
1201}
1202
75650646 1203/* Register the specialization SPEC as a specialization of TMPL with
d63d5d0c
ILT
1204 the indicated ARGS. IS_FRIEND indicates whether the specialization
1205 is actually just a friend declaration. Returns SPEC, or an
1206 equivalent prior declaration, if available. */
75650646 1207
36a117a5 1208static tree
d63d5d0c 1209register_specialization (tree spec, tree tmpl, tree args, bool is_friend)
75650646 1210{
c7222c02 1211 tree fn;
75650646 1212
50bc768d 1213 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
75650646 1214
c8094d83 1215 if (TREE_CODE (spec) == FUNCTION_DECL
36a117a5
MM
1216 && uses_template_parms (DECL_TI_ARGS (spec)))
1217 /* This is the FUNCTION_DECL for a partial instantiation. Don't
1218 register it; we want the corresponding TEMPLATE_DECL instead.
1219 We use `uses_template_parms (DECL_TI_ARGS (spec))' rather than
1220 the more obvious `uses_template_parms (spec)' to avoid problems
1221 with default function arguments. In particular, given
1222 something like this:
1223
0cbd7506 1224 template <class T> void f(T t1, T t = T())
36a117a5
MM
1225
1226 the default argument expression is not substituted for in an
1227 instantiation unless and until it is actually needed. */
1228 return spec;
28ba38e3 1229
c8094d83 1230 fn = retrieve_specialization (tmpl, args,
c7222c02
MM
1231 /*class_specializations_p=*/false);
1232 /* We can sometimes try to re-register a specialization that we've
1233 already got. In particular, regenerate_decl_from_template calls
1234 duplicate_decls which will update the specialization list. But,
1235 we'll still get called again here anyhow. It's more convenient
1236 to simply allow this than to try to prevent it. */
1237 if (fn == spec)
1238 return spec;
1239 else if (fn && DECL_TEMPLATE_SPECIALIZATION (spec))
22e9174f 1240 {
c7222c02 1241 if (DECL_TEMPLATE_INSTANTIATION (fn))
22e9174f 1242 {
c8094d83 1243 if (TREE_USED (fn)
c7222c02 1244 || DECL_EXPLICIT_INSTANTIATION (fn))
22e9174f 1245 {
c7222c02
MM
1246 error ("specialization of %qD after instantiation",
1247 fn);
99f4234a 1248 return error_mark_node;
22e9174f 1249 }
c7222c02 1250 else
b1cc95ce 1251 {
a39041fa 1252 tree clone;
c7222c02
MM
1253 /* This situation should occur only if the first
1254 specialization is an implicit instantiation, the
1255 second is an explicit specialization, and the
1256 implicit instantiation has not yet been used. That
1257 situation can occur if we have implicitly
1258 instantiated a member function and then specialized
1259 it later.
c8094d83 1260
c7222c02
MM
1261 We can also wind up here if a friend declaration that
1262 looked like an instantiation turns out to be a
1263 specialization:
c8094d83 1264
c7222c02
MM
1265 template <class T> void foo(T);
1266 class S { friend void foo<>(int) };
c8094d83
MS
1267 template <> void foo(int);
1268
c7222c02
MM
1269 We transform the existing DECL in place so that any
1270 pointers to it become pointers to the updated
1271 declaration.
1272
1273 If there was a definition for the template, but not
1274 for the specialization, we want this to look as if
1275 there were no definition, and vice versa. */
1276 DECL_INITIAL (fn) = NULL_TREE;
d63d5d0c 1277 duplicate_decls (spec, fn, is_friend);
a39041fa 1278 /* The call to duplicate_decls will have applied
3db45ab5 1279 [temp.expl.spec]:
a39041fa 1280
3db45ab5 1281 An explicit specialization of a function template
a39041fa 1282 is inline only if it is explicitly declared to be,
bcf51da2 1283 and independently of whether its function template
a39041fa
MM
1284 is.
1285
1286 to the primary function; now copy the inline bits to
3db45ab5 1287 the various clones. */
a39041fa
MM
1288 FOR_EACH_CLONE (clone, fn)
1289 {
1290 DECL_DECLARED_INLINE_P (clone)
1291 = DECL_DECLARED_INLINE_P (fn);
1292 DECL_INLINE (clone)
1293 = DECL_INLINE (fn);
1294 }
9c12301f 1295 check_specialization_namespace (fn);
c8094d83 1296
b1cc95ce
MM
1297 return fn;
1298 }
22e9174f 1299 }
c7222c02
MM
1300 else if (DECL_TEMPLATE_SPECIALIZATION (fn))
1301 {
d63d5d0c 1302 if (!duplicate_decls (spec, fn, is_friend) && DECL_INITIAL (spec))
c7222c02
MM
1303 /* Dup decl failed, but this is a new definition. Set the
1304 line number so any errors match this new
1305 definition. */
1306 DECL_SOURCE_LOCATION (fn) = DECL_SOURCE_LOCATION (spec);
c8094d83 1307
c7222c02
MM
1308 return fn;
1309 }
b1cc95ce
MM
1310 }
1311
1312 /* A specialization must be declared in the same namespace as the
1313 template it is specializing. */
1314 if (DECL_TEMPLATE_SPECIALIZATION (spec)
1315 && !check_specialization_namespace (tmpl))
74b0d490 1316 DECL_CONTEXT (spec) = FROB_CONTEXT (decl_namespace_context (tmpl));
75650646 1317
c7222c02
MM
1318 if (!optimize_specialization_lookup_p (tmpl))
1319 DECL_TEMPLATE_SPECIALIZATIONS (tmpl)
1320 = tree_cons (args, spec, DECL_TEMPLATE_SPECIALIZATIONS (tmpl));
36a117a5
MM
1321
1322 return spec;
1323}
1324
1325/* Unregister the specialization SPEC as a specialization of TMPL.
b3445994
MM
1326 Replace it with NEW_SPEC, if NEW_SPEC is non-NULL. Returns true
1327 if the SPEC was listed as a specialization of TMPL. */
36a117a5 1328
b3445994
MM
1329bool
1330reregister_specialization (tree spec, tree tmpl, tree new_spec)
36a117a5
MM
1331{
1332 tree* s;
1333
1334 for (s = &DECL_TEMPLATE_SPECIALIZATIONS (tmpl);
1335 *s != NULL_TREE;
1336 s = &TREE_CHAIN (*s))
1337 if (TREE_VALUE (*s) == spec)
1338 {
b3445994
MM
1339 if (!new_spec)
1340 *s = TREE_CHAIN (*s);
1341 else
a3d87771 1342 TREE_VALUE (*s) = new_spec;
36a117a5
MM
1343 return 1;
1344 }
1345
1346 return 0;
75650646
MM
1347}
1348
a723baf1
MM
1349/* Compare an entry in the local specializations hash table P1 (which
1350 is really a pointer to a TREE_LIST) with P2 (which is really a
1351 DECL). */
1352
1353static int
1354eq_local_specializations (const void *p1, const void *p2)
1355{
741ac903 1356 return TREE_VALUE ((const_tree) p1) == (const_tree) p2;
a723baf1
MM
1357}
1358
69f794a7
MM
1359/* Hash P1, an entry in the local specializations table. */
1360
1361static hashval_t
1362hash_local_specialization (const void* p1)
1363{
741ac903 1364 return htab_hash_pointer (TREE_VALUE ((const_tree) p1));
69f794a7
MM
1365}
1366
6dfbb909
MM
1367/* Like register_specialization, but for local declarations. We are
1368 registering SPEC, an instantiation of TMPL. */
9188c363 1369
414ea4aa 1370static void
3a978d72 1371register_local_specialization (tree spec, tree tmpl)
9188c363 1372{
6dfbb909
MM
1373 void **slot;
1374
c8094d83 1375 slot = htab_find_slot_with_hash (local_specializations, tmpl,
69f794a7 1376 htab_hash_pointer (tmpl), INSERT);
a723baf1 1377 *slot = build_tree_list (spec, tmpl);
9188c363
MM
1378}
1379
9ba7a2f2
MM
1380/* TYPE is a class type. Returns true if TYPE is an explicitly
1381 specialized class. */
1382
1383bool
1384explicit_class_specialization_p (tree type)
1385{
1386 if (!CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
1387 return false;
1388 return !uses_template_parms (CLASSTYPE_TI_ARGS (type));
1389}
1390
e1467ff2
MM
1391/* Print the list of candidate FNS in an error message. */
1392
104bf76a 1393void
3a978d72 1394print_candidates (tree fns)
e1467ff2
MM
1395{
1396 tree fn;
1397
d8e178a0 1398 const char *str = "candidates are:";
e1467ff2
MM
1399
1400 for (fn = fns; fn != NULL_TREE; fn = TREE_CHAIN (fn))
1401 {
d6479fe7
MM
1402 tree f;
1403
1404 for (f = TREE_VALUE (fn); f; f = OVL_NEXT (f))
dee15844 1405 error ("%s %+#D", str, OVL_CURRENT (f));
e1467ff2
MM
1406 str = " ";
1407 }
1408}
1409
75650646 1410/* Returns the template (one of the functions given by TEMPLATE_ID)
e1467ff2 1411 which can be specialized to match the indicated DECL with the
03017874
MM
1412 explicit template args given in TEMPLATE_ID. The DECL may be
1413 NULL_TREE if none is available. In that case, the functions in
1414 TEMPLATE_ID are non-members.
1415
838dfd8a 1416 If NEED_MEMBER_TEMPLATE is nonzero the function is known to be a
03017874
MM
1417 specialization of a member template.
1418
5fe7b654
GB
1419 The TEMPLATE_COUNT is the number of references to qualifying
1420 template classes that appeared in the name of the function. See
1421 check_explicit_specialization for a more accurate description.
1422
29a1da1c
MM
1423 TSK indicates what kind of template declaration (if any) is being
1424 declared. TSK_TEMPLATE indicates that the declaration given by
1425 DECL, though a FUNCTION_DECL, has template parameters, and is
1426 therefore a template function.
1427
03017874
MM
1428 The template args (those explicitly specified and those deduced)
1429 are output in a newly created vector *TARGS_OUT.
1430
1431 If it is impossible to determine the result, an error message is
bf8f3f93 1432 issued. The error_mark_node is returned to indicate failure. */
75650646 1433
e9659ab0 1434static tree
c8094d83 1435determine_specialization (tree template_id,
0cbd7506
MS
1436 tree decl,
1437 tree* targs_out,
5fe7b654 1438 int need_member_template,
29a1da1c
MM
1439 int template_count,
1440 tmpl_spec_kind tsk)
386b8a85 1441{
03017874
MM
1442 tree fns;
1443 tree targs;
1444 tree explicit_targs;
1445 tree candidates = NULL_TREE;
7ca383e6
MM
1446 /* A TREE_LIST of templates of which DECL may be a specialization.
1447 The TREE_VALUE of each node is a TEMPLATE_DECL. The
1448 corresponding TREE_PURPOSE is the set of template arguments that,
1449 when used to instantiate the template, would produce a function
1450 with the signature of DECL. */
03017874 1451 tree templates = NULL_TREE;
5fe7b654
GB
1452 int header_count;
1453 struct cp_binding_level *b;
386b8a85 1454
e1467ff2
MM
1455 *targs_out = NULL_TREE;
1456
728da672 1457 if (template_id == error_mark_node || decl == error_mark_node)
f2e48b67
BK
1458 return error_mark_node;
1459
1460 fns = TREE_OPERAND (template_id, 0);
03017874 1461 explicit_targs = TREE_OPERAND (template_id, 1);
f2e48b67 1462
27fafc8d
JM
1463 if (fns == error_mark_node)
1464 return error_mark_node;
1465
c6002625 1466 /* Check for baselinks. */
91e490ab 1467 if (BASELINK_P (fns))
da15dae6 1468 fns = BASELINK_FUNCTIONS (fns);
386b8a85 1469
91e490ab
MM
1470 if (!is_overloaded_fn (fns))
1471 {
0f51ccfc 1472 error ("%qD is not a function template", fns);
91e490ab
MM
1473 return error_mark_node;
1474 }
1475
5fe7b654
GB
1476 /* Count the number of template headers specified for this
1477 specialization. */
1478 header_count = 0;
c8094d83 1479 for (b = current_binding_level;
98f99d7f 1480 b->kind == sk_template_parms;
5fe7b654
GB
1481 b = b->level_chain)
1482 ++header_count;
1483
2c73f9f5 1484 for (; fns; fns = OVL_NEXT (fns))
386b8a85 1485 {
9dfce8fd 1486 tree fn = OVL_CURRENT (fns);
03017874
MM
1487
1488 if (TREE_CODE (fn) == TEMPLATE_DECL)
d955f6ea
KL
1489 {
1490 tree decl_arg_types;
0da99d4e 1491 tree fn_arg_types;
d955f6ea 1492
5fe7b654
GB
1493 /* In case of explicit specialization, we need to check if
1494 the number of template headers appearing in the specialization
1495 is correct. This is usually done in check_explicit_specialization,
1496 but the check done there cannot be exhaustive when specializing
1497 member functions. Consider the following code:
1498
1499 template <> void A<int>::f(int);
1500 template <> template <> void A<int>::f(int);
1501
1502 Assuming that A<int> is not itself an explicit specialization
1503 already, the first line specializes "f" which is a non-template
1504 member function, whilst the second line specializes "f" which
1505 is a template member function. So both lines are syntactically
1506 correct, and check_explicit_specialization does not reject
1507 them.
c8094d83 1508
5fe7b654
GB
1509 Here, we can do better, as we are matching the specialization
1510 against the declarations. We count the number of template
1511 headers, and we check if they match TEMPLATE_COUNT + 1
1512 (TEMPLATE_COUNT is the number of qualifying template classes,
1513 plus there must be another header for the member template
1514 itself).
c8094d83 1515
5fe7b654
GB
1516 Notice that if header_count is zero, this is not a
1517 specialization but rather a template instantiation, so there
1518 is no check we can perform here. */
1519 if (header_count && header_count != template_count + 1)
1520 continue;
1521
98f99d7f
MM
1522 /* Check that the number of template arguments at the
1523 innermost level for DECL is the same as for FN. */
1524 if (current_binding_level->kind == sk_template_parms
1525 && !current_binding_level->explicit_spec_p
1526 && (TREE_VEC_LENGTH (DECL_INNERMOST_TEMPLATE_PARMS (fn))
3db45ab5 1527 != TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS
916b63c3 1528 (current_template_parms))))
98f99d7f 1529 continue;
c8094d83 1530
ba139ba8
MM
1531 /* DECL might be a specialization of FN. */
1532 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
1533 fn_arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn));
1534
1535 /* For a non-static member function, we need to make sure
1536 that the const qualification is the same. Since
1537 get_bindings does not try to merge the "this" parameter,
1538 we must do the comparison explicitly. */
1539 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
1540 && !same_type_p (TREE_VALUE (fn_arg_types),
1541 TREE_VALUE (decl_arg_types)))
1542 continue;
1543
1544 /* Skip the "this" parameter and, for constructors of
1545 classes with virtual bases, the VTT parameter. A
1546 full specialization of a constructor will have a VTT
1547 parameter, but a template never will. */
1548 decl_arg_types
1549 = skip_artificial_parms_for (decl, decl_arg_types);
1550 fn_arg_types
1551 = skip_artificial_parms_for (fn, fn_arg_types);
1552
1553 /* Check that the number of function parameters matches.
1554 For example,
1555 template <class T> void f(int i = 0);
1556 template <> void f<int>();
1557 The specialization f<int> is invalid but is not caught
1558 by get_bindings below. */
1559 if (list_length (fn_arg_types) != list_length (decl_arg_types))
1560 continue;
1561
29a1da1c
MM
1562 /* Function templates cannot be specializations; there are
1563 no partial specializations of functions. Therefore, if
1564 the type of DECL does not match FN, there is no
1565 match. */
54062fc0
PC
1566 if (tsk == tsk_template)
1567 {
1568 if (compparms (fn_arg_types, decl_arg_types))
1569 candidates = tree_cons (NULL_TREE, fn, candidates);
1570 continue;
1571 }
29a1da1c 1572
d955f6ea
KL
1573 /* See whether this function might be a specialization of this
1574 template. */
a34d3336 1575 targs = get_bindings (fn, decl, explicit_targs, /*check_ret=*/true);
d955f6ea
KL
1576
1577 if (!targs)
1578 /* We cannot deduce template arguments that when used to
1579 specialize TMPL will produce DECL. */
1580 continue;
1581
1582 /* Save this template, and the arguments deduced. */
1583 templates = tree_cons (targs, fn, templates);
1584 }
03017874
MM
1585 else if (need_member_template)
1586 /* FN is an ordinary member function, and we need a
1587 specialization of a member template. */
d955f6ea 1588 ;
03017874
MM
1589 else if (TREE_CODE (fn) != FUNCTION_DECL)
1590 /* We can get IDENTIFIER_NODEs here in certain erroneous
1591 cases. */
d955f6ea 1592 ;
03017874
MM
1593 else if (!DECL_FUNCTION_MEMBER_P (fn))
1594 /* This is just an ordinary non-member function. Nothing can
1595 be a specialization of that. */
d955f6ea 1596 ;
3b82c249
KL
1597 else if (DECL_ARTIFICIAL (fn))
1598 /* Cannot specialize functions that are created implicitly. */
d955f6ea 1599 ;
75650646 1600 else
03017874
MM
1601 {
1602 tree decl_arg_types;
386b8a85 1603
03017874
MM
1604 /* This is an ordinary member function. However, since
1605 we're here, we can assume it's enclosing class is a
1606 template class. For example,
c8094d83 1607
03017874
MM
1608 template <typename T> struct S { void f(); };
1609 template <> void S<int>::f() {}
1610
1611 Here, S<int>::f is a non-template, but S<int> is a
1612 template class. If FN has the same type as DECL, we
1613 might be in business. */
f5d47abd
KL
1614
1615 if (!DECL_TEMPLATE_INFO (fn))
1616 /* Its enclosing class is an explicit specialization
1617 of a template class. This is not a candidate. */
1618 continue;
1619
03017874
MM
1620 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
1621 TREE_TYPE (TREE_TYPE (fn))))
1622 /* The return types differ. */
1623 continue;
1624
1625 /* Adjust the type of DECL in case FN is a static member. */
1626 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
c8094d83 1627 if (DECL_STATIC_FUNCTION_P (fn)
03017874
MM
1628 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1629 decl_arg_types = TREE_CHAIN (decl_arg_types);
1630
c8094d83 1631 if (compparms (TYPE_ARG_TYPES (TREE_TYPE (fn)),
03017874
MM
1632 decl_arg_types))
1633 /* They match! */
1634 candidates = tree_cons (NULL_TREE, fn, candidates);
03017874 1635 }
386b8a85 1636 }
03017874 1637
bf8f3f93 1638 if (templates && TREE_CHAIN (templates))
386b8a85 1639 {
03017874 1640 /* We have:
c8094d83 1641
03017874
MM
1642 [temp.expl.spec]
1643
1644 It is possible for a specialization with a given function
1645 signature to be instantiated from more than one function
1646 template. In such cases, explicit specification of the
1647 template arguments must be used to uniquely identify the
1648 function template specialization being specialized.
1649
1650 Note that here, there's no suggestion that we're supposed to
1651 determine which of the candidate templates is most
1652 specialized. However, we, also have:
1653
1654 [temp.func.order]
1655
1656 Partial ordering of overloaded function template
1657 declarations is used in the following contexts to select
1658 the function template to which a function template
c8094d83 1659 specialization refers:
03017874 1660
0cbd7506 1661 -- when an explicit specialization refers to a function
c8094d83 1662 template.
03017874
MM
1663
1664 So, we do use the partial ordering rules, at least for now.
0e339752 1665 This extension can only serve to make invalid programs valid,
03017874
MM
1666 so it's safe. And, there is strong anecdotal evidence that
1667 the committee intended the partial ordering rules to apply;
3b426391 1668 the EDG front end has that behavior, and John Spicer claims
03017874
MM
1669 that the committee simply forgot to delete the wording in
1670 [temp.expl.spec]. */
7ca383e6
MM
1671 tree tmpl = most_specialized_instantiation (templates);
1672 if (tmpl != error_mark_node)
1673 {
1674 templates = tmpl;
1675 TREE_CHAIN (templates) = NULL_TREE;
1676 }
e1467ff2
MM
1677 }
1678
03017874 1679 if (templates == NULL_TREE && candidates == NULL_TREE)
e1467ff2 1680 {
dee15844
JM
1681 error ("template-id %qD for %q+D does not match any template "
1682 "declaration", template_id, decl);
03017874 1683 return error_mark_node;
386b8a85 1684 }
03017874 1685 else if ((templates && TREE_CHAIN (templates))
bf8f3f93
MM
1686 || (candidates && TREE_CHAIN (candidates))
1687 || (templates && candidates))
386b8a85 1688 {
dee15844
JM
1689 error ("ambiguous template specialization %qD for %q+D",
1690 template_id, decl);
bf8f3f93
MM
1691 chainon (candidates, templates);
1692 print_candidates (candidates);
03017874 1693 return error_mark_node;
386b8a85
JM
1694 }
1695
c6002625 1696 /* We have one, and exactly one, match. */
03017874
MM
1697 if (candidates)
1698 {
29a1da1c
MM
1699 tree fn = TREE_VALUE (candidates);
1700 /* DECL is a re-declaration of a template function. */
1701 if (TREE_CODE (fn) == TEMPLATE_DECL)
1702 return fn;
03017874
MM
1703 /* It was a specialization of an ordinary member function in a
1704 template class. */
29a1da1c
MM
1705 *targs_out = copy_node (DECL_TI_ARGS (fn));
1706 return DECL_TI_TEMPLATE (fn);
03017874
MM
1707 }
1708
1709 /* It was a specialization of a template. */
17aec3eb 1710 targs = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (TREE_VALUE (templates)));
03017874
MM
1711 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (targs))
1712 {
1713 *targs_out = copy_node (targs);
c8094d83 1714 SET_TMPL_ARGS_LEVEL (*targs_out,
03017874
MM
1715 TMPL_ARGS_DEPTH (*targs_out),
1716 TREE_PURPOSE (templates));
1717 }
1718 else
1719 *targs_out = TREE_PURPOSE (templates);
e1467ff2 1720 return TREE_VALUE (templates);
8d08fdba 1721}
8afa707f
MM
1722
1723/* Returns a chain of parameter types, exactly like the SPEC_TYPES,
1724 but with the default argument values filled in from those in the
1725 TMPL_TYPES. */
c8094d83 1726
8afa707f 1727static tree
3a978d72
NN
1728copy_default_args_to_explicit_spec_1 (tree spec_types,
1729 tree tmpl_types)
8afa707f
MM
1730{
1731 tree new_spec_types;
1732
1733 if (!spec_types)
1734 return NULL_TREE;
1735
1736 if (spec_types == void_list_node)
1737 return void_list_node;
1738
1739 /* Substitute into the rest of the list. */
1740 new_spec_types =
1741 copy_default_args_to_explicit_spec_1 (TREE_CHAIN (spec_types),
1742 TREE_CHAIN (tmpl_types));
c8094d83 1743
8afa707f
MM
1744 /* Add the default argument for this parameter. */
1745 return hash_tree_cons (TREE_PURPOSE (tmpl_types),
1746 TREE_VALUE (spec_types),
1747 new_spec_types);
1748}
1749
1750/* DECL is an explicit specialization. Replicate default arguments
1751 from the template it specializes. (That way, code like:
1752
1753 template <class T> void f(T = 3);
1754 template <> void f(double);
c8094d83 1755 void g () { f (); }
8afa707f
MM
1756
1757 works, as required.) An alternative approach would be to look up
1758 the correct default arguments at the call-site, but this approach
1759 is consistent with how implicit instantiations are handled. */
1760
1761static void
3a978d72 1762copy_default_args_to_explicit_spec (tree decl)
8afa707f
MM
1763{
1764 tree tmpl;
1765 tree spec_types;
1766 tree tmpl_types;
1767 tree new_spec_types;
1768 tree old_type;
1769 tree new_type;
1770 tree t;
08c2df0f
NS
1771 tree object_type = NULL_TREE;
1772 tree in_charge = NULL_TREE;
e0fff4b3 1773 tree vtt = NULL_TREE;
8afa707f
MM
1774
1775 /* See if there's anything we need to do. */
1776 tmpl = DECL_TI_TEMPLATE (decl);
1777 tmpl_types = TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (tmpl)));
1778 for (t = tmpl_types; t; t = TREE_CHAIN (t))
1779 if (TREE_PURPOSE (t))
1780 break;
1781 if (!t)
1782 return;
1783
1784 old_type = TREE_TYPE (decl);
1785 spec_types = TYPE_ARG_TYPES (old_type);
c8094d83 1786
8afa707f
MM
1787 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1788 {
08c2df0f 1789 /* Remove the this pointer, but remember the object's type for
0cbd7506 1790 CV quals. */
08c2df0f 1791 object_type = TREE_TYPE (TREE_VALUE (spec_types));
8afa707f
MM
1792 spec_types = TREE_CHAIN (spec_types);
1793 tmpl_types = TREE_CHAIN (tmpl_types);
c8094d83 1794
8afa707f 1795 if (DECL_HAS_IN_CHARGE_PARM_P (decl))
0cbd7506
MS
1796 {
1797 /* DECL may contain more parameters than TMPL due to the extra
1798 in-charge parameter in constructors and destructors. */
1799 in_charge = spec_types;
08c2df0f
NS
1800 spec_types = TREE_CHAIN (spec_types);
1801 }
e0fff4b3
JM
1802 if (DECL_HAS_VTT_PARM_P (decl))
1803 {
1804 vtt = spec_types;
1805 spec_types = TREE_CHAIN (spec_types);
1806 }
8afa707f
MM
1807 }
1808
1809 /* Compute the merged default arguments. */
c8094d83 1810 new_spec_types =
8afa707f
MM
1811 copy_default_args_to_explicit_spec_1 (spec_types, tmpl_types);
1812
08c2df0f
NS
1813 /* Compute the new FUNCTION_TYPE. */
1814 if (object_type)
8afa707f 1815 {
e0fff4b3 1816 if (vtt)
0cbd7506
MS
1817 new_spec_types = hash_tree_cons (TREE_PURPOSE (vtt),
1818 TREE_VALUE (vtt),
1819 new_spec_types);
e0fff4b3 1820
08c2df0f 1821 if (in_charge)
0cbd7506
MS
1822 /* Put the in-charge parameter back. */
1823 new_spec_types = hash_tree_cons (TREE_PURPOSE (in_charge),
1824 TREE_VALUE (in_charge),
1825 new_spec_types);
08c2df0f 1826
43dc123f
MM
1827 new_type = build_method_type_directly (object_type,
1828 TREE_TYPE (old_type),
1829 new_spec_types);
8afa707f 1830 }
8afa707f
MM
1831 else
1832 new_type = build_function_type (TREE_TYPE (old_type),
08c2df0f 1833 new_spec_types);
e9525111
MM
1834 new_type = cp_build_type_attribute_variant (new_type,
1835 TYPE_ATTRIBUTES (old_type));
8afa707f
MM
1836 new_type = build_exception_variant (new_type,
1837 TYPE_RAISES_EXCEPTIONS (old_type));
1838 TREE_TYPE (decl) = new_type;
1839}
1840
386b8a85 1841/* Check to see if the function just declared, as indicated in
75650646
MM
1842 DECLARATOR, and in DECL, is a specialization of a function
1843 template. We may also discover that the declaration is an explicit
1844 instantiation at this point.
1845
e1467ff2 1846 Returns DECL, or an equivalent declaration that should be used
03017874
MM
1847 instead if all goes well. Issues an error message if something is
1848 amiss. Returns error_mark_node if the error is not easily
1849 recoverable.
c8094d83
MS
1850
1851 FLAGS is a bitmask consisting of the following flags:
75650646 1852
75650646
MM
1853 2: The function has a definition.
1854 4: The function is a friend.
75650646
MM
1855
1856 The TEMPLATE_COUNT is the number of references to qualifying
1857 template classes that appeared in the name of the function. For
1858 example, in
1859
1860 template <class T> struct S { void f(); };
1861 void S<int>::f();
c8094d83 1862
75650646
MM
1863 the TEMPLATE_COUNT would be 1. However, explicitly specialized
1864 classes are not counted in the TEMPLATE_COUNT, so that in
1865
1866 template <class T> struct S {};
1867 template <> struct S<int> { void f(); }
36a117a5 1868 template <> void S<int>::f();
75650646
MM
1869
1870 the TEMPLATE_COUNT would be 0. (Note that this declaration is
0e339752 1871 invalid; there should be no template <>.)
75650646
MM
1872
1873 If the function is a specialization, it is marked as such via
1874 DECL_TEMPLATE_SPECIALIZATION. Furthermore, its DECL_TEMPLATE_INFO
c8094d83 1875 is set up correctly, and it is added to the list of specializations
75650646 1876 for that template. */
386b8a85 1877
e1467ff2 1878tree
c8094d83 1879check_explicit_specialization (tree declarator,
0cbd7506
MS
1880 tree decl,
1881 int template_count,
1882 int flags)
386b8a85 1883{
75650646
MM
1884 int have_def = flags & 2;
1885 int is_friend = flags & 4;
1886 int specialization = 0;
e1467ff2 1887 int explicit_instantiation = 0;
fd4de5ff 1888 int member_specialization = 0;
75650646
MM
1889 tree ctype = DECL_CLASS_CONTEXT (decl);
1890 tree dname = DECL_NAME (decl);
74b846e0 1891 tmpl_spec_kind tsk;
386b8a85 1892
f65b7de3
GB
1893 if (is_friend)
1894 {
1895 if (!processing_specialization)
1896 tsk = tsk_none;
1897 else
1898 tsk = tsk_excessive_parms;
1899 }
1900 else
1901 tsk = current_tmpl_spec_kind (template_count);
75650646 1902
74b846e0
MM
1903 switch (tsk)
1904 {
1905 case tsk_none:
c8094d83 1906 if (processing_specialization)
75650646 1907 {
fd4de5ff
MM
1908 specialization = 1;
1909 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
75650646 1910 }
74b846e0 1911 else if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
386b8a85 1912 {
74b846e0
MM
1913 if (is_friend)
1914 /* This could be something like:
75650646 1915
74b846e0
MM
1916 template <class T> void f(T);
1917 class S { friend void f<>(int); } */
1918 specialization = 1;
1919 else
1920 {
1921 /* This case handles bogus declarations like template <>
1922 template <class T> void f<int>(); */
1923
0f51ccfc 1924 error ("template-id %qD in declaration of primary template",
0cbd7506 1925 declarator);
74b846e0
MM
1926 return decl;
1927 }
1928 }
1929 break;
1930
1931 case tsk_invalid_member_spec:
1932 /* The error has already been reported in
1933 check_specialization_scope. */
1934 return error_mark_node;
1935
1936 case tsk_invalid_expl_inst:
33bd39a2 1937 error ("template parameter list used in explicit instantiation");
74b846e0
MM
1938
1939 /* Fall through. */
1940
1941 case tsk_expl_inst:
fd4de5ff 1942 if (have_def)
33bd39a2 1943 error ("definition provided for explicit instantiation");
c8094d83 1944
fd4de5ff 1945 explicit_instantiation = 1;
74b846e0 1946 break;
fd4de5ff 1947
74b846e0 1948 case tsk_excessive_parms:
f03adc6b
GB
1949 case tsk_insufficient_parms:
1950 if (tsk == tsk_excessive_parms)
0cbd7506 1951 error ("too many template parameter lists in declaration of %qD",
f03adc6b
GB
1952 decl);
1953 else if (template_header_count)
0f51ccfc 1954 error("too few template parameter lists in declaration of %qD", decl);
f03adc6b 1955 else
0f51ccfc 1956 error("explicit specialization of %qD must be introduced by "
9e637a26 1957 "%<template <>%>", decl);
75650646 1958
74b846e0
MM
1959 /* Fall through. */
1960 case tsk_expl_spec:
1961 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
1962 if (ctype)
1963 member_specialization = 1;
1964 else
1965 specialization = 1;
1966 break;
74b846e0
MM
1967
1968 case tsk_template:
1969 if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
c6f2ed0d 1970 {
fd4de5ff
MM
1971 /* This case handles bogus declarations like template <>
1972 template <class T> void f<int>(); */
75650646 1973
655dc6ee 1974 if (uses_template_parms (declarator))
0f51ccfc 1975 error ("function template partial specialization %qD "
e1e93ad8 1976 "is not allowed", declarator);
655dc6ee 1977 else
0f51ccfc 1978 error ("template-id %qD in declaration of primary template",
0cbd7506 1979 declarator);
fd4de5ff 1980 return decl;
386b8a85 1981 }
74b846e0
MM
1982
1983 if (ctype && CLASSTYPE_TEMPLATE_INSTANTIATION (ctype))
1984 /* This is a specialization of a member template, without
1985 specialization the containing class. Something like:
1986
1987 template <class T> struct S {
c8094d83 1988 template <class U> void f (U);
0cbd7506 1989 };
74b846e0 1990 template <> template <class U> void S<int>::f(U) {}
c8094d83 1991
74b846e0
MM
1992 That's a specialization -- but of the entire template. */
1993 specialization = 1;
1994 break;
1995
1996 default:
315fb5db 1997 gcc_unreachable ();
75650646 1998 }
386b8a85 1999
670960ac
JM
2000 if (specialization || member_specialization)
2001 {
2002 tree t = TYPE_ARG_TYPES (TREE_TYPE (decl));
2003 for (; t; t = TREE_CHAIN (t))
2004 if (TREE_PURPOSE (t))
2005 {
33bd39a2 2006 pedwarn
8251199e 2007 ("default argument specified in explicit specialization");
670960ac
JM
2008 break;
2009 }
2010 }
2011
e1467ff2 2012 if (specialization || member_specialization || explicit_instantiation)
75650646
MM
2013 {
2014 tree tmpl = NULL_TREE;
2015 tree targs = NULL_TREE;
75650646
MM
2016
2017 /* Make sure that the declarator is a TEMPLATE_ID_EXPR. */
386b8a85
JM
2018 if (TREE_CODE (declarator) != TEMPLATE_ID_EXPR)
2019 {
2020 tree fns;
2021
50bc768d 2022 gcc_assert (TREE_CODE (declarator) == IDENTIFIER_NODE);
2f54a1db 2023 if (ctype)
386b8a85 2024 fns = dname;
2f54a1db
GB
2025 else
2026 {
2027 /* If there is no class context, the explicit instantiation
0cbd7506 2028 must be at namespace scope. */
50bc768d 2029 gcc_assert (DECL_NAMESPACE_SCOPE_P (decl));
2f54a1db
GB
2030
2031 /* Find the namespace binding, using the declaration
0cbd7506 2032 context. */
ddf74938 2033 fns = lookup_qualified_name (CP_DECL_CONTEXT (decl), dname,
664a90c0 2034 false, true);
97dc8e5b 2035 if (fns == error_mark_node || !is_overloaded_fn (fns))
4230cec2
NS
2036 {
2037 error ("%qD is not a template function", dname);
2038 fns = error_mark_node;
2039 }
664a90c0
JM
2040 else
2041 {
2042 tree fn = OVL_CURRENT (fns);
ddf74938 2043 if (!is_associated_namespace (CP_DECL_CONTEXT (decl),
08d295c5
JM
2044 CP_DECL_CONTEXT (fn)))
2045 error ("%qD is not declared in %qD",
2046 decl, current_namespace);
664a90c0 2047 }
2f54a1db 2048 }
386b8a85 2049
2f54a1db 2050 declarator = lookup_template_function (fns, NULL_TREE);
386b8a85
JM
2051 }
2052
f2e48b67
BK
2053 if (declarator == error_mark_node)
2054 return error_mark_node;
2055
75650646
MM
2056 if (ctype != NULL_TREE && TYPE_BEING_DEFINED (ctype))
2057 {
8ec2ac34 2058 if (!explicit_instantiation)
0e339752 2059 /* A specialization in class scope. This is invalid,
6c30752f
MM
2060 but the error will already have been flagged by
2061 check_specialization_scope. */
2062 return error_mark_node;
8ec2ac34 2063 else
b370501f 2064 {
0e339752 2065 /* It's not valid to write an explicit instantiation in
b370501f 2066 class scope, e.g.:
8ec2ac34 2067
0cbd7506 2068 class C { template void f(); }
8ec2ac34 2069
b370501f
KG
2070 This case is caught by the parser. However, on
2071 something like:
c8094d83 2072
b370501f 2073 template class C { void f(); };
8ec2ac34 2074
0e339752 2075 (which is invalid) we can get here. The error will be
b370501f
KG
2076 issued later. */
2077 ;
2078 }
8ec2ac34 2079
e1467ff2 2080 return decl;
75650646 2081 }
c8094d83 2082 else if (ctype != NULL_TREE
75650646
MM
2083 && (TREE_CODE (TREE_OPERAND (declarator, 0)) ==
2084 IDENTIFIER_NODE))
386b8a85 2085 {
75650646
MM
2086 /* Find the list of functions in ctype that have the same
2087 name as the declared function. */
2088 tree name = TREE_OPERAND (declarator, 0);
03017874
MM
2089 tree fns = NULL_TREE;
2090 int idx;
2091
8ba658ee 2092 if (constructor_name_p (name, ctype))
386b8a85 2093 {
75650646 2094 int is_constructor = DECL_CONSTRUCTOR_P (decl);
c8094d83 2095
0fcedd9c 2096 if (is_constructor ? !TYPE_HAS_USER_CONSTRUCTOR (ctype)
9f4faeae 2097 : !CLASSTYPE_DESTRUCTORS (ctype))
75650646
MM
2098 {
2099 /* From [temp.expl.spec]:
c8094d83 2100
75650646
MM
2101 If such an explicit specialization for the member
2102 of a class template names an implicitly-declared
2103 special member function (clause _special_), the
c8094d83 2104 program is ill-formed.
e1467ff2
MM
2105
2106 Similar language is found in [temp.explicit]. */
33bd39a2 2107 error ("specialization of implicitly-declared special member function");
03017874 2108 return error_mark_node;
75650646 2109 }
386b8a85 2110
42da2fd8 2111 name = is_constructor ? ctor_identifier : dtor_identifier;
75650646 2112 }
42da2fd8 2113
421844e7 2114 if (!DECL_CONV_FN_P (decl))
03017874
MM
2115 {
2116 idx = lookup_fnfields_1 (ctype, name);
2117 if (idx >= 0)
aaaa46d2 2118 fns = VEC_index (tree, CLASSTYPE_METHOD_VEC (ctype), idx);
03017874
MM
2119 }
2120 else
2121 {
d4e6fecb 2122 VEC(tree,gc) *methods;
aaaa46d2 2123 tree ovl;
03017874
MM
2124
2125 /* For a type-conversion operator, we cannot do a
2126 name-based lookup. We might be looking for `operator
2127 int' which will be a specialization of `operator T'.
2128 So, we find *all* the conversion operators, and then
2129 select from them. */
2130 fns = NULL_TREE;
2131
2132 methods = CLASSTYPE_METHOD_VEC (ctype);
2133 if (methods)
5dd236e2 2134 for (idx = CLASSTYPE_FIRST_CONVERSION_SLOT;
9ba5ff0f 2135 VEC_iterate (tree, methods, idx, ovl);
aaaa46d2 2136 ++idx)
03017874 2137 {
aaaa46d2 2138 if (!DECL_CONV_FN_P (OVL_CURRENT (ovl)))
03017874
MM
2139 /* There are no more conversion functions. */
2140 break;
2141
2142 /* Glue all these conversion functions together
2143 with those we already have. */
2144 for (; ovl; ovl = OVL_NEXT (ovl))
2145 fns = ovl_cons (OVL_CURRENT (ovl), fns);
2146 }
2147 }
c8094d83
MS
2148
2149 if (fns == NULL_TREE)
386b8a85 2150 {
0f51ccfc 2151 error ("no member function %qD declared in %qT", name, ctype);
03017874 2152 return error_mark_node;
386b8a85
JM
2153 }
2154 else
2155 TREE_OPERAND (declarator, 0) = fns;
2156 }
c8094d83 2157
e1467ff2
MM
2158 /* Figure out what exactly is being specialized at this point.
2159 Note that for an explicit instantiation, even one for a
38e01259 2160 member function, we cannot tell apriori whether the
e1467ff2 2161 instantiation is for a member template, or just a member
36a117a5
MM
2162 function of a template class. Even if a member template is
2163 being instantiated, the member template arguments may be
2164 elided if they can be deduced from the rest of the
2165 declaration. */
e1467ff2 2166 tmpl = determine_specialization (declarator, decl,
c8094d83 2167 &targs,
5fe7b654 2168 member_specialization,
29a1da1c
MM
2169 template_count,
2170 tsk);
c8094d83 2171
03017874
MM
2172 if (!tmpl || tmpl == error_mark_node)
2173 /* We couldn't figure out what this declaration was
2174 specializing. */
2175 return error_mark_node;
2176 else
386b8a85 2177 {
25aab5d0 2178 tree gen_tmpl = most_general_template (tmpl);
36a117a5 2179
e1467ff2
MM
2180 if (explicit_instantiation)
2181 {
03d0f4af 2182 /* We don't set DECL_EXPLICIT_INSTANTIATION here; that
c8094d83 2183 is done by do_decl_instantiation later. */
25aab5d0
MM
2184
2185 int arg_depth = TMPL_ARGS_DEPTH (targs);
2186 int parm_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
2187
2188 if (arg_depth > parm_depth)
2189 {
2190 /* If TMPL is not the most general template (for
2191 example, if TMPL is a friend template that is
2192 injected into namespace scope), then there will
dc957d14 2193 be too many levels of TARGS. Remove some of them
25aab5d0
MM
2194 here. */
2195 int i;
2196 tree new_targs;
2197
f31c0a32 2198 new_targs = make_tree_vec (parm_depth);
25aab5d0
MM
2199 for (i = arg_depth - parm_depth; i < arg_depth; ++i)
2200 TREE_VEC_ELT (new_targs, i - (arg_depth - parm_depth))
2201 = TREE_VEC_ELT (targs, i);
2202 targs = new_targs;
2203 }
c8094d83 2204
3e4a3562 2205 return instantiate_template (tmpl, targs, tf_error);
e1467ff2 2206 }
74b846e0 2207
6c07f448
KL
2208 /* If we thought that the DECL was a member function, but it
2209 turns out to be specializing a static member function,
4546865e 2210 make DECL a static member function as well. */
6c07f448
KL
2211 if (DECL_STATIC_FUNCTION_P (tmpl)
2212 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
4546865e 2213 revert_static_member_fn (decl);
6c07f448 2214
f9a7ae04 2215 /* If this is a specialization of a member template of a
29a1da1c
MM
2216 template class, we want to return the TEMPLATE_DECL, not
2217 the specialization of it. */
74b846e0
MM
2218 if (tsk == tsk_template)
2219 {
2220 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
f9a7ae04 2221 DECL_INITIAL (DECL_TEMPLATE_RESULT (tmpl)) = NULL_TREE;
b190f239
NS
2222 if (have_def)
2223 {
f31686a3
RH
2224 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
2225 DECL_SOURCE_LOCATION (DECL_TEMPLATE_RESULT (tmpl))
2226 = DECL_SOURCE_LOCATION (decl);
08167d1c
AO
2227 /* We want to use the argument list specified in the
2228 definition, not in the original declaration. */
2229 DECL_ARGUMENTS (DECL_TEMPLATE_RESULT (tmpl))
2230 = DECL_ARGUMENTS (decl);
b190f239 2231 }
74b846e0
MM
2232 return tmpl;
2233 }
2234
36a117a5 2235 /* Set up the DECL_TEMPLATE_INFO for DECL. */
e1b3e07d 2236 DECL_TEMPLATE_INFO (decl) = tree_cons (tmpl, targs, NULL_TREE);
36a117a5 2237
8afa707f
MM
2238 /* Inherit default function arguments from the template
2239 DECL is specializing. */
2240 copy_default_args_to_explicit_spec (decl);
2241
c750255c
MM
2242 /* This specialization has the same protection as the
2243 template it specializes. */
2244 TREE_PRIVATE (decl) = TREE_PRIVATE (gen_tmpl);
2245 TREE_PROTECTED (decl) = TREE_PROTECTED (gen_tmpl);
b9e75696 2246
736b8100
SB
2247 /* 7.1.1-1 [dcl.stc]
2248
2249 A storage-class-specifier shall not be specified in an
2250 explicit specialization...
2251
2252 The parser rejects these, so unless action is taken here,
2253 explicit function specializations will always appear with
2254 global linkage.
2255
2256 The action recommended by the C++ CWG in response to C++
2257 defect report 605 is to make the storage class and linkage
2258 of the explicit specialization match the templated function:
2259
2260 http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#605
2261 */
2262 if (tsk == tsk_expl_spec && DECL_FUNCTION_TEMPLATE_P (gen_tmpl))
2263 {
2264 tree tmpl_func = DECL_TEMPLATE_RESULT (gen_tmpl);
2265 gcc_assert (TREE_CODE (tmpl_func) == FUNCTION_DECL);
2266
d732e98f 2267 /* This specialization has the same linkage and visibility as
736b8100
SB
2268 the function template it specializes. */
2269 TREE_PUBLIC (decl) = TREE_PUBLIC (tmpl_func);
92d0af97
JJ
2270 if (! TREE_PUBLIC (decl))
2271 {
2272 DECL_INTERFACE_KNOWN (decl) = 1;
2273 DECL_NOT_REALLY_EXTERN (decl) = 1;
2274 }
736b8100
SB
2275 DECL_THIS_STATIC (decl) = DECL_THIS_STATIC (tmpl_func);
2276 if (DECL_VISIBILITY_SPECIFIED (tmpl_func))
2277 {
2278 DECL_VISIBILITY_SPECIFIED (decl) = 1;
2279 DECL_VISIBILITY (decl) = DECL_VISIBILITY (tmpl_func);
2280 }
2281 }
2282
9c12301f
MM
2283 /* If DECL is a friend declaration, declared using an
2284 unqualified name, the namespace associated with DECL may
2285 have been set incorrectly. For example, in:
3db45ab5
MS
2286
2287 template <typename T> void f(T);
2288 namespace N {
2289 struct S { friend void f<int>(int); }
2290 }
2291
2292 we will have set the DECL_CONTEXT for the friend
2293 declaration to N, rather than to the global namespace. */
9c12301f
MM
2294 if (DECL_NAMESPACE_SCOPE_P (decl))
2295 DECL_CONTEXT (decl) = DECL_CONTEXT (tmpl);
8d039470 2296
386b8a85 2297 if (is_friend && !have_def)
36a117a5
MM
2298 /* This is not really a declaration of a specialization.
2299 It's just the name of an instantiation. But, it's not
2300 a request for an instantiation, either. */
fbf1c34b 2301 SET_DECL_IMPLICIT_INSTANTIATION (decl);
08511114
KL
2302 else if (DECL_CONSTRUCTOR_P (decl) || DECL_DESTRUCTOR_P (decl))
2303 /* This is indeed a specialization. In case of constructors
2304 and destructors, we need in-charge and not-in-charge
2305 versions in V3 ABI. */
2306 clone_function_decl (decl, /*update_method_vec_p=*/0);
75650646 2307
36a117a5
MM
2308 /* Register this specialization so that we can find it
2309 again. */
d63d5d0c 2310 decl = register_specialization (decl, gen_tmpl, targs, is_friend);
386b8a85
JM
2311 }
2312 }
c8094d83 2313
e1467ff2 2314 return decl;
386b8a85 2315}
75650646 2316
75650646
MM
2317/* Returns 1 iff PARMS1 and PARMS2 are identical sets of template
2318 parameters. These are represented in the same format used for
2319 DECL_TEMPLATE_PARMS. */
2320
50bc768d 2321int
58f9752a 2322comp_template_parms (const_tree parms1, const_tree parms2)
75650646 2323{
58f9752a
KG
2324 const_tree p1;
2325 const_tree p2;
75650646
MM
2326
2327 if (parms1 == parms2)
2328 return 1;
2329
c8094d83 2330 for (p1 = parms1, p2 = parms2;
75650646
MM
2331 p1 != NULL_TREE && p2 != NULL_TREE;
2332 p1 = TREE_CHAIN (p1), p2 = TREE_CHAIN (p2))
2333 {
2334 tree t1 = TREE_VALUE (p1);
2335 tree t2 = TREE_VALUE (p2);
2336 int i;
2337
50bc768d
NS
2338 gcc_assert (TREE_CODE (t1) == TREE_VEC);
2339 gcc_assert (TREE_CODE (t2) == TREE_VEC);
75650646
MM
2340
2341 if (TREE_VEC_LENGTH (t1) != TREE_VEC_LENGTH (t2))
2342 return 0;
2343
c8094d83 2344 for (i = 0; i < TREE_VEC_LENGTH (t2); ++i)
75650646 2345 {
0f67a82f
LM
2346 tree parm1 = TREE_VALUE (TREE_VEC_ELT (t1, i));
2347 tree parm2 = TREE_VALUE (TREE_VEC_ELT (t2, i));
42b304f1 2348
0f67a82f
LM
2349 /* If either of the template parameters are invalid, assume
2350 they match for the sake of error recovery. */
2351 if (parm1 == error_mark_node || parm2 == error_mark_node)
2352 return 1;
75650646
MM
2353
2354 if (TREE_CODE (parm1) != TREE_CODE (parm2))
2355 return 0;
2356
5d80a306
DG
2357 if (TREE_CODE (parm1) == TEMPLATE_TYPE_PARM
2358 && (TEMPLATE_TYPE_PARAMETER_PACK (parm1)
2359 == TEMPLATE_TYPE_PARAMETER_PACK (parm2)))
75650646 2360 continue;
3bfdc719 2361 else if (!same_type_p (TREE_TYPE (parm1), TREE_TYPE (parm2)))
75650646
MM
2362 return 0;
2363 }
2364 }
2365
2366 if ((p1 != NULL_TREE) != (p2 != NULL_TREE))
2367 /* One set of parameters has more parameters lists than the
2368 other. */
2369 return 0;
2370
2371 return 1;
2372}
2373
5d80a306
DG
2374/* Determine whether PARM is a parameter pack. */
2375bool
58f9752a 2376template_parameter_pack_p (const_tree parm)
5d80a306
DG
2377{
2378 /* Determine if we have a non-type template parameter pack. */
2379 if (TREE_CODE (parm) == PARM_DECL)
2380 return (DECL_TEMPLATE_PARM_P (parm)
2381 && TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)));
2382
2383 /* If this is a list of template parameters, we could get a
2384 TYPE_DECL or a TEMPLATE_DECL. */
2385 if (TREE_CODE (parm) == TYPE_DECL || TREE_CODE (parm) == TEMPLATE_DECL)
2386 parm = TREE_TYPE (parm);
2387
2388 return ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
2389 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
2390 && TEMPLATE_TYPE_PARAMETER_PACK (parm));
2391}
2392
5d80a306
DG
2393/* Determine whether ARGS describes a variadic template args list,
2394 i.e., one that is terminated by a template argument pack. */
2395static bool
2396template_args_variadic_p (tree args)
2397{
2398 int nargs;
2399 tree last_parm;
2400
2401 if (args == NULL_TREE)
2402 return false;
2403
2404 args = INNERMOST_TEMPLATE_ARGS (args);
2405 nargs = TREE_VEC_LENGTH (args);
2406
2407 if (nargs == 0)
2408 return false;
2409
2410 last_parm = TREE_VEC_ELT (args, nargs - 1);
2411
2412 return ARGUMENT_PACK_P (last_parm);
2413}
2414
2415/* Generate a new name for the parameter pack name NAME (an
2416 IDENTIFIER_NODE) that incorporates its */
2417static tree
2418make_ith_pack_parameter_name (tree name, int i)
2419{
2420 /* Munge the name to include the parameter index. */
2421 char numbuf[128];
2422 char* newname;
2423
2424 sprintf(numbuf, "%i", i);
2425 newname = (char*)alloca (IDENTIFIER_LENGTH (name) + strlen(numbuf) + 2);
2426 sprintf(newname, "%s#%i", IDENTIFIER_POINTER (name), i);
2427 return get_identifier (newname);
2428}
2429
1ad8aeeb 2430/* Structure used to track the progress of find_parameter_packs_r. */
5d80a306
DG
2431struct find_parameter_pack_data
2432{
1ad8aeeb
DG
2433 /* TREE_LIST that will contain all of the parameter packs found by
2434 the traversal. */
5d80a306 2435 tree* parameter_packs;
1ad8aeeb
DG
2436
2437 /* Set of AST nodes that have been visited by the traversal. */
5d80a306
DG
2438 struct pointer_set_t *visited;
2439};
2440
88b82314 2441/* Identifies all of the argument packs that occur in a template
5d80a306 2442 argument and appends them to the TREE_LIST inside DATA, which is a
88b82314 2443 find_parameter_pack_data structure. This is a subroutine of
5d80a306
DG
2444 make_pack_expansion and uses_parameter_packs. */
2445static tree
2446find_parameter_packs_r (tree *tp, int *walk_subtrees, void* data)
2447{
2448 tree t = *tp;
2449 struct find_parameter_pack_data* ppd =
2450 (struct find_parameter_pack_data*)data;
1ad8aeeb 2451 bool parameter_pack_p = false;
5d80a306 2452
1ad8aeeb
DG
2453 /* Identify whether this is a parameter pack or not. */
2454 switch (TREE_CODE (t))
2455 {
2456 case TEMPLATE_PARM_INDEX:
2457 if (TEMPLATE_PARM_PARAMETER_PACK (t))
2458 parameter_pack_p = true;
2459 break;
2460
2461 case TEMPLATE_TYPE_PARM:
2462 case TEMPLATE_TEMPLATE_PARM:
2463 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
2464 parameter_pack_p = true;
2465 break;
2466
2467 case PARM_DECL:
2468 if (FUNCTION_PARAMETER_PACK_P (t))
2469 {
2470 /* We don't want to walk into the type of a PARM_DECL,
2471 because we don't want to see the type parameter pack. */
2472 *walk_subtrees = 0;
2473 parameter_pack_p = true;
2474 }
2475 break;
2476
2477 default:
2478 /* Not a parameter pack. */
2479 break;
2480 }
2481
2482 if (parameter_pack_p)
2483 {
2484 /* Add this parameter pack to the list. */
2485 *ppd->parameter_packs = tree_cons (NULL_TREE, t, *ppd->parameter_packs);
1ad8aeeb 2486 }
7b3e2d46 2487
1ad8aeeb
DG
2488 if (TYPE_P (t))
2489 cp_walk_tree (&TYPE_CONTEXT (t),
92fab505 2490 &find_parameter_packs_r, ppd, ppd->visited);
1ad8aeeb 2491
5d80a306
DG
2492 /* This switch statement will return immediately if we don't find a
2493 parameter pack. */
2494 switch (TREE_CODE (t))
2495 {
2496 case TEMPLATE_PARM_INDEX:
5d80a306
DG
2497 return NULL_TREE;
2498
2499 case BOUND_TEMPLATE_TEMPLATE_PARM:
1ad8aeeb
DG
2500 /* Check the template itself. */
2501 cp_walk_tree (&TREE_TYPE (TYPE_TI_TEMPLATE (t)),
92fab505 2502 &find_parameter_packs_r, ppd, ppd->visited);
5d80a306 2503 /* Check the template arguments. */
14588106 2504 cp_walk_tree (&TYPE_TI_ARGS (t), &find_parameter_packs_r, ppd,
92fab505 2505 ppd->visited);
5d80a306 2506 *walk_subtrees = 0;
1ad8aeeb 2507 return NULL_TREE;
5d80a306
DG
2508
2509 case TEMPLATE_TYPE_PARM:
2510 case TEMPLATE_TEMPLATE_PARM:
5d80a306
DG
2511 return NULL_TREE;
2512
2513 case PARM_DECL:
5d80a306
DG
2514 return NULL_TREE;
2515
2516 case RECORD_TYPE:
2517 if (TYPE_PTRMEMFUNC_P (t))
2518 return NULL_TREE;
2519 /* Fall through. */
2520
2521 case UNION_TYPE:
2522 case ENUMERAL_TYPE:
2523 if (TYPE_TEMPLATE_INFO (t))
1ad8aeeb 2524 cp_walk_tree (&TREE_VALUE (TYPE_TEMPLATE_INFO (t)),
92fab505 2525 &find_parameter_packs_r, ppd, ppd->visited);
5d80a306
DG
2526
2527 *walk_subtrees = 0;
2528 return NULL_TREE;
2529
2530 case TEMPLATE_DECL:
1ad8aeeb 2531 cp_walk_tree (&TREE_TYPE (t),
92fab505 2532 &find_parameter_packs_r, ppd, ppd->visited);
5d80a306 2533 return NULL_TREE;
e1a18c68
DG
2534
2535 case TYPENAME_TYPE:
2536 cp_walk_tree (&TYPENAME_TYPE_FULLNAME (t), &find_parameter_packs_r,
92fab505 2537 ppd, ppd->visited);
e1a18c68
DG
2538 *walk_subtrees = 0;
2539 return NULL_TREE;
e1a18c68 2540
5d80a306
DG
2541 case TYPE_PACK_EXPANSION:
2542 case EXPR_PACK_EXPANSION:
2543 *walk_subtrees = 0;
2544 return NULL_TREE;
2545
d393153e 2546 case INTEGER_TYPE:
14588106 2547 cp_walk_tree (&TYPE_MAX_VALUE (t), &find_parameter_packs_r,
92fab505 2548 ppd, ppd->visited);
d393153e
DG
2549 *walk_subtrees = 0;
2550 return NULL_TREE;
2551
4439d02f 2552 case IDENTIFIER_NODE:
92fab505
DG
2553 cp_walk_tree (&TREE_TYPE (t), &find_parameter_packs_r, ppd,
2554 ppd->visited);
4439d02f
DG
2555 *walk_subtrees = 0;
2556 return NULL_TREE;
2557
5d80a306
DG
2558 default:
2559 return NULL_TREE;
2560 }
5d80a306
DG
2561
2562 return NULL_TREE;
2563}
2564
2565/* Determines if the expression or type T uses any parameter packs. */
2566bool
2567uses_parameter_packs (tree t)
2568{
2569 tree parameter_packs = NULL_TREE;
2570 struct find_parameter_pack_data ppd;
2571 ppd.parameter_packs = &parameter_packs;
2572 ppd.visited = pointer_set_create ();
92fab505 2573 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
30bcc028 2574 pointer_set_destroy (ppd.visited);
5d80a306
DG
2575 return parameter_packs != NULL_TREE;
2576}
2577
2578/* Turn ARG, which may be an expression, type, or a TREE_LIST
2579 representation a base-class initializer into a parameter pack
2580 expansion. If all goes well, the resulting node will be an
2581 EXPR_PACK_EXPANSION, TYPE_PACK_EXPANSION, or TREE_LIST,
2582 respectively. */
2583tree
2584make_pack_expansion (tree arg)
2585{
2586 tree result;
2587 tree parameter_packs = NULL_TREE;
2588 bool for_types = false;
2589 struct find_parameter_pack_data ppd;
2590
2591 if (!arg || arg == error_mark_node)
2592 return arg;
2593
2594 if (TREE_CODE (arg) == TREE_LIST)
2595 {
2596 /* The only time we will see a TREE_LIST here is for a base
2597 class initializer. In this case, the TREE_PURPOSE will be a
2598 _TYPE node (representing the base class expansion we're
2599 initializing) and the TREE_VALUE will be a TREE_LIST
2600 containing the initialization arguments.
2601
2602 The resulting expansion looks somewhat different from most
2603 expansions. Rather than returning just one _EXPANSION, we
2604 return a TREE_LIST whose TREE_PURPOSE is a
2605 TYPE_PACK_EXPANSION containing the bases that will be
2606 initialized. The TREE_VALUE will be identical to the
2607 original TREE_VALUE, which is a list of arguments that will
2608 be passed to each base. We do not introduce any new pack
2609 expansion nodes into the TREE_VALUE (although it is possible
2610 that some already exist), because the TREE_PURPOSE and
2611 TREE_VALUE all need to be expanded together with the same
2612 _EXPANSION node. Note that the TYPE_PACK_EXPANSION in the
2613 resulting TREE_PURPOSE will mention the parameter packs in
2614 both the bases and the arguments to the bases. */
2615 tree purpose;
2616 tree value;
2617 tree parameter_packs = NULL_TREE;
2618
2619 /* Determine which parameter packs will be used by the base
2620 class expansion. */
2621 ppd.visited = pointer_set_create ();
2622 ppd.parameter_packs = &parameter_packs;
14588106 2623 cp_walk_tree (&TREE_PURPOSE (arg), &find_parameter_packs_r,
92fab505 2624 &ppd, ppd.visited);
5d80a306
DG
2625
2626 if (parameter_packs == NULL_TREE)
2627 {
2628 error ("base initializer expansion %<%T%> contains no parameter packs", arg);
30bcc028 2629 pointer_set_destroy (ppd.visited);
5d80a306
DG
2630 return error_mark_node;
2631 }
2632
2633 if (TREE_VALUE (arg) != void_type_node)
2634 {
2635 /* Collect the sets of parameter packs used in each of the
2636 initialization arguments. */
2637 for (value = TREE_VALUE (arg); value; value = TREE_CHAIN (value))
2638 {
2639 /* Determine which parameter packs will be expanded in this
2640 argument. */
14588106 2641 cp_walk_tree (&TREE_VALUE (value), &find_parameter_packs_r,
92fab505 2642 &ppd, ppd.visited);
5d80a306
DG
2643 }
2644 }
2645
30bcc028
DG
2646 pointer_set_destroy (ppd.visited);
2647
5d80a306
DG
2648 /* Create the pack expansion type for the base type. */
2649 purpose = make_node (TYPE_PACK_EXPANSION);
2650 SET_PACK_EXPANSION_PATTERN (purpose, TREE_PURPOSE (arg));
2651 PACK_EXPANSION_PARAMETER_PACKS (purpose) = parameter_packs;
2652
2653 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
2654 they will rarely be compared to anything. */
2655 SET_TYPE_STRUCTURAL_EQUALITY (purpose);
2656
2657 return tree_cons (purpose, TREE_VALUE (arg), NULL_TREE);
2658 }
2659
2660 if (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL)
2661 for_types = true;
2662
2663 /* Build the PACK_EXPANSION_* node. */
2664 result = make_node (for_types ? TYPE_PACK_EXPANSION : EXPR_PACK_EXPANSION);
2665 SET_PACK_EXPANSION_PATTERN (result, arg);
2666 if (TREE_CODE (result) == EXPR_PACK_EXPANSION)
2667 {
2668 /* Propagate type and const-expression information. */
2669 TREE_TYPE (result) = TREE_TYPE (arg);
2670 TREE_CONSTANT (result) = TREE_CONSTANT (arg);
2671 }
2672 else
2673 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
2674 they will rarely be compared to anything. */
2675 SET_TYPE_STRUCTURAL_EQUALITY (result);
2676
2677 /* Determine which parameter packs will be expanded. */
2678 ppd.parameter_packs = &parameter_packs;
2679 ppd.visited = pointer_set_create ();
92fab505 2680 cp_walk_tree (&arg, &find_parameter_packs_r, &ppd, ppd.visited);
30bcc028 2681 pointer_set_destroy (ppd.visited);
5d80a306
DG
2682
2683 /* Make sure we found some parameter packs. */
2684 if (parameter_packs == NULL_TREE)
2685 {
2686 if (TYPE_P (arg))
2687 error ("expansion pattern %<%T%> contains no argument packs", arg);
2688 else
2689 error ("expansion pattern %<%E%> contains no argument packs", arg);
2690 return error_mark_node;
2691 }
2692 PACK_EXPANSION_PARAMETER_PACKS (result) = parameter_packs;
2693
2694 return result;
2695}
2696
2697/* Checks T for any "bare" parameter packs, which have not yet been
2698 expanded, and issues an error if any are found. This operation can
2699 only be done on full expressions or types (e.g., an expression
2700 statement, "if" condition, etc.), because we could have expressions like:
2701
2702 foo(f(g(h(args)))...)
2703
2704 where "args" is a parameter pack. check_for_bare_parameter_packs
2705 should not be called for the subexpressions args, h(args),
2706 g(h(args)), or f(g(h(args))), because we would produce erroneous
b1d7b1c0
DG
2707 error messages.
2708
4439d02f
DG
2709 Returns TRUE and emits an error if there were bare parameter packs,
2710 returns FALSE otherwise. */
b1d7b1c0 2711bool
7b3e2d46 2712check_for_bare_parameter_packs (tree t)
5d80a306
DG
2713{
2714 tree parameter_packs = NULL_TREE;
2715 struct find_parameter_pack_data ppd;
2716
7b3e2d46 2717 if (!processing_template_decl || !t || t == error_mark_node)
4439d02f 2718 return false;
5d80a306 2719
7b3e2d46
DG
2720 if (TREE_CODE (t) == TYPE_DECL)
2721 t = TREE_TYPE (t);
5d80a306
DG
2722
2723 ppd.parameter_packs = &parameter_packs;
2724 ppd.visited = pointer_set_create ();
92fab505 2725 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
30bcc028 2726 pointer_set_destroy (ppd.visited);
5d80a306 2727
b1d7b1c0
DG
2728 if (parameter_packs)
2729 {
2730 error ("parameter packs not expanded with `...':");
2731 while (parameter_packs)
2732 {
2733 tree pack = TREE_VALUE (parameter_packs);
2734 tree name = NULL_TREE;
2735
2736 if (TREE_CODE (pack) == TEMPLATE_TYPE_PARM
2737 || TREE_CODE (pack) == TEMPLATE_TEMPLATE_PARM)
2738 name = TYPE_NAME (pack);
2739 else if (TREE_CODE (pack) == TEMPLATE_PARM_INDEX)
2740 name = DECL_NAME (TEMPLATE_PARM_DECL (pack));
2741 else
2742 name = DECL_NAME (pack);
1ad8aeeb
DG
2743
2744 if (name)
2745 inform (" %qD", name);
2746 else
2747 inform (" <anonymous>");
b1d7b1c0
DG
2748
2749 parameter_packs = TREE_CHAIN (parameter_packs);
2750 }
2751
4439d02f 2752 return true;
b1d7b1c0
DG
2753 }
2754
4439d02f 2755 return false;
5d80a306
DG
2756}
2757
2758/* Expand any parameter packs that occur in the template arguments in
2759 ARGS. */
2760tree
2761expand_template_argument_pack (tree args)
2762{
2763 tree result_args = NULL_TREE;
2764 int in_arg, out_arg = 0, nargs = args ? TREE_VEC_LENGTH (args) : 0;
2765 int num_result_args = -1;
2766
2767 /* First, determine if we need to expand anything, and the number of
2768 slots we'll need. */
2769 for (in_arg = 0; in_arg < nargs; ++in_arg)
2770 {
2771 tree arg = TREE_VEC_ELT (args, in_arg);
2772 if (ARGUMENT_PACK_P (arg))
2773 {
2774 int num_packed = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg));
2775 if (num_result_args < 0)
2776 num_result_args = in_arg + num_packed;
2777 else
2778 num_result_args += num_packed;
2779 }
2780 else
2781 {
2782 if (num_result_args >= 0)
2783 num_result_args++;
2784 }
2785 }
2786
2787 /* If no expansion is necessary, we're done. */
2788 if (num_result_args < 0)
2789 return args;
2790
2791 /* Expand arguments. */
2792 result_args = make_tree_vec (num_result_args);
2793 for (in_arg = 0; in_arg < nargs; ++in_arg)
2794 {
2795 tree arg = TREE_VEC_ELT (args, in_arg);
2796 if (ARGUMENT_PACK_P (arg))
2797 {
2798 tree packed = ARGUMENT_PACK_ARGS (arg);
2799 int i, num_packed = TREE_VEC_LENGTH (packed);
2800 for (i = 0; i < num_packed; ++i, ++out_arg)
2801 TREE_VEC_ELT (result_args, out_arg) = TREE_VEC_ELT(packed, i);
2802 }
2803 else
2804 {
2805 TREE_VEC_ELT (result_args, out_arg) = arg;
2806 ++out_arg;
2807 }
2808 }
2809
2810 return result_args;
2811}
2812
f3400fe2
JM
2813/* Complain if DECL shadows a template parameter.
2814
2815 [temp.local]: A template-parameter shall not be redeclared within its
2816 scope (including nested scopes). */
2817
2818void
3a978d72 2819check_template_shadow (tree decl)
f3400fe2 2820{
8f032717
MM
2821 tree olddecl;
2822
b5d9b9ab
MM
2823 /* If we're not in a template, we can't possibly shadow a template
2824 parameter. */
2825 if (!current_template_parms)
2826 return;
2827
2828 /* Figure out what we're shadowing. */
8f032717
MM
2829 if (TREE_CODE (decl) == OVERLOAD)
2830 decl = OVL_CURRENT (decl);
90ea9897 2831 olddecl = innermost_non_namespace_value (DECL_NAME (decl));
f3400fe2 2832
b5d9b9ab
MM
2833 /* If there's no previous binding for this name, we're not shadowing
2834 anything, let alone a template parameter. */
2835 if (!olddecl)
2836 return;
2837
2838 /* If we're not shadowing a template parameter, we're done. Note
2839 that OLDDECL might be an OVERLOAD (or perhaps even an
2840 ERROR_MARK), so we can't just blithely assume it to be a _DECL
2841 node. */
2f939d94 2842 if (!DECL_P (olddecl) || !DECL_TEMPLATE_PARM_P (olddecl))
b5d9b9ab
MM
2843 return;
2844
2845 /* We check for decl != olddecl to avoid bogus errors for using a
2846 name inside a class. We check TPFI to avoid duplicate errors for
2847 inline member templates. */
c8094d83 2848 if (decl == olddecl
b5d9b9ab
MM
2849 || TEMPLATE_PARMS_FOR_INLINE (current_template_parms))
2850 return;
2851
dee15844
JM
2852 error ("declaration of %q+#D", decl);
2853 error (" shadows template parm %q+#D", olddecl);
f3400fe2 2854}
22a7be53 2855
f3400fe2 2856/* Return a new TEMPLATE_PARM_INDEX with the indicated INDEX, LEVEL,
f84b4be9
JM
2857 ORIG_LEVEL, DECL, and TYPE. */
2858
2859static tree
c8094d83 2860build_template_parm_index (int index,
0cbd7506
MS
2861 int level,
2862 int orig_level,
2863 tree decl,
2864 tree type)
f84b4be9
JM
2865{
2866 tree t = make_node (TEMPLATE_PARM_INDEX);
2867 TEMPLATE_PARM_IDX (t) = index;
2868 TEMPLATE_PARM_LEVEL (t) = level;
2869 TEMPLATE_PARM_ORIG_LEVEL (t) = orig_level;
2870 TEMPLATE_PARM_DECL (t) = decl;
2871 TREE_TYPE (t) = type;
3e4a3562 2872 TREE_CONSTANT (t) = TREE_CONSTANT (decl);
6de9cd9a 2873 TREE_INVARIANT (t) = TREE_INVARIANT (decl);
3e4a3562 2874 TREE_READONLY (t) = TREE_READONLY (decl);
f84b4be9
JM
2875
2876 return t;
2877}
2878
06d40de8 2879/* Find the canonical type parameter for the given template type
c3e188fc
KH
2880 parameter. Returns the canonical type parameter, which may be TYPE
2881 if no such parameter existed. */
06d40de8
DG
2882static tree
2883canonical_type_parameter (tree type)
2884{
2885 tree list;
2886 int idx = TEMPLATE_TYPE_IDX (type);
2887 if (!canonical_template_parms)
2888 canonical_template_parms = VEC_alloc (tree, gc, idx+1);
2889
2890 while (VEC_length (tree, canonical_template_parms) <= (unsigned)idx)
2891 VEC_safe_push (tree, gc, canonical_template_parms, NULL_TREE);
2892
2893 list = VEC_index (tree, canonical_template_parms, idx);
96d84882 2894 while (list && !comptypes (type, TREE_VALUE (list), COMPARE_STRUCTURAL))
06d40de8
DG
2895 list = TREE_CHAIN (list);
2896
2897 if (list)
2898 return TREE_VALUE (list);
2899 else
2900 {
2901 VEC_replace(tree, canonical_template_parms, idx,
2902 tree_cons (NULL_TREE, type,
2903 VEC_index (tree, canonical_template_parms, idx)));
2904 return type;
2905 }
2906}
2907
f84b4be9 2908/* Return a TEMPLATE_PARM_INDEX, similar to INDEX, but whose
93cdc044 2909 TEMPLATE_PARM_LEVEL has been decreased by LEVELS. If such a
f84b4be9
JM
2910 TEMPLATE_PARM_INDEX already exists, it is returned; otherwise, a
2911 new one is created. */
2912
c8094d83 2913static tree
ef3b7b17
JM
2914reduce_template_parm_level (tree index, tree type, int levels, tree args,
2915 tsubst_flags_t complain)
f84b4be9
JM
2916{
2917 if (TEMPLATE_PARM_DESCENDANTS (index) == NULL_TREE
2918 || (TEMPLATE_PARM_LEVEL (TEMPLATE_PARM_DESCENDANTS (index))
93cdc044 2919 != TEMPLATE_PARM_LEVEL (index) - levels))
f84b4be9 2920 {
3e4a3562
NS
2921 tree orig_decl = TEMPLATE_PARM_DECL (index);
2922 tree decl, t;
c8094d83 2923
3e4a3562
NS
2924 decl = build_decl (TREE_CODE (orig_decl), DECL_NAME (orig_decl), type);
2925 TREE_CONSTANT (decl) = TREE_CONSTANT (orig_decl);
6de9cd9a 2926 TREE_INVARIANT (decl) = TREE_INVARIANT (orig_decl);
3e4a3562
NS
2927 TREE_READONLY (decl) = TREE_READONLY (orig_decl);
2928 DECL_ARTIFICIAL (decl) = 1;
2929 SET_DECL_TEMPLATE_PARM_P (decl);
c8094d83 2930
3e4a3562 2931 t = build_template_parm_index (TEMPLATE_PARM_IDX (index),
93cdc044 2932 TEMPLATE_PARM_LEVEL (index) - levels,
f84b4be9
JM
2933 TEMPLATE_PARM_ORIG_LEVEL (index),
2934 decl, type);
2935 TEMPLATE_PARM_DESCENDANTS (index) = t;
5d80a306
DG
2936 TEMPLATE_PARM_PARAMETER_PACK (t)
2937 = TEMPLATE_PARM_PARAMETER_PACK (index);
cae40af6 2938
820cc88f 2939 /* Template template parameters need this. */
ef3b7b17
JM
2940 if (TREE_CODE (decl) == TEMPLATE_DECL)
2941 DECL_TEMPLATE_PARMS (decl) = tsubst_template_parms
2942 (DECL_TEMPLATE_PARMS (TEMPLATE_PARM_DECL (index)),
2943 args, complain);
f84b4be9
JM
2944 }
2945
2946 return TEMPLATE_PARM_DESCENDANTS (index);
2947}
2948
a14de1af 2949/* Process information from new template parameter PARM and append it to the
058b15c1 2950 LIST being built. This new parameter is a non-type parameter iff
5d80a306
DG
2951 IS_NON_TYPE is true. This new parameter is a parameter
2952 pack iff IS_PARAMETER_PACK is true. */
e92cc029 2953
8d08fdba 2954tree
5d80a306
DG
2955process_template_parm (tree list, tree parm, bool is_non_type,
2956 bool is_parameter_pack)
8d08fdba 2957{
8d08fdba 2958 tree decl = 0;
a292b002 2959 tree defval;
0f67a82f 2960 tree err_parm_list;
d47e3adf 2961 int idx = 0;
f84b4be9 2962
50bc768d 2963 gcc_assert (TREE_CODE (parm) == TREE_LIST);
a292b002 2964 defval = TREE_PURPOSE (parm);
5566b478
MS
2965
2966 if (list)
2967 {
d47e3adf
LM
2968 tree p = tree_last (list);
2969
0f67a82f 2970 if (p && TREE_VALUE (p) != error_mark_node)
d47e3adf
LM
2971 {
2972 p = TREE_VALUE (p);
2973 if (TREE_CODE (p) == TYPE_DECL || TREE_CODE (p) == TEMPLATE_DECL)
2974 idx = TEMPLATE_TYPE_IDX (TREE_TYPE (p));
2975 else
2976 idx = TEMPLATE_PARM_IDX (DECL_INITIAL (p));
2977 }
5566b478 2978
5566b478
MS
2979 ++idx;
2980 }
2981 else
2982 idx = 0;
2983
058b15c1 2984 if (is_non_type)
8d08fdba 2985 {
058b15c1
MM
2986 parm = TREE_VALUE (parm);
2987
833aa4c4 2988 SET_DECL_TEMPLATE_PARM_P (parm);
d490621d 2989
620188c9 2990 if (TREE_TYPE (parm) == error_mark_node)
0f67a82f
LM
2991 {
2992 err_parm_list = build_tree_list (defval, parm);
2993 TREE_VALUE (err_parm_list) = error_mark_node;
2994 return chainon (list, err_parm_list);
2995 }
620188c9
VR
2996 else
2997 {
2998 /* [temp.param]
d490621d 2999
620188c9
VR
3000 The top-level cv-qualifiers on the template-parameter are
3001 ignored when determining its type. */
3002 TREE_TYPE (parm) = TYPE_MAIN_VARIANT (TREE_TYPE (parm));
3003 if (invalid_nontype_parm_type_p (TREE_TYPE (parm), 1))
0f67a82f
LM
3004 {
3005 err_parm_list = build_tree_list (defval, parm);
3006 TREE_VALUE (err_parm_list) = error_mark_node;
3007 return chainon (list, err_parm_list);
3008 }
5d80a306
DG
3009
3010 if (uses_parameter_packs (TREE_TYPE (parm)) && !is_parameter_pack)
3011 {
3012 /* This template parameter is not a parameter pack, but it
3013 should be. Complain about "bare" parameter packs. */
7b3e2d46 3014 check_for_bare_parameter_packs (TREE_TYPE (parm));
5d80a306
DG
3015
3016 /* Recover by calling this a parameter pack. */
3017 is_parameter_pack = true;
3018 }
620188c9 3019 }
d490621d 3020
8d08fdba 3021 /* A template parameter is not modifiable. */
6de9cd9a
DN
3022 TREE_CONSTANT (parm) = 1;
3023 TREE_INVARIANT (parm) = 1;
3024 TREE_READONLY (parm) = 1;
8d08fdba 3025 decl = build_decl (CONST_DECL, DECL_NAME (parm), TREE_TYPE (parm));
6de9cd9a
DN
3026 TREE_CONSTANT (decl) = 1;
3027 TREE_INVARIANT (decl) = 1;
3028 TREE_READONLY (decl) = 1;
c8094d83 3029 DECL_INITIAL (parm) = DECL_INITIAL (decl)
f84b4be9
JM
3030 = build_template_parm_index (idx, processing_template_decl,
3031 processing_template_decl,
3032 decl, TREE_TYPE (parm));
5d80a306
DG
3033
3034 TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm))
3035 = is_parameter_pack;
8d08fdba
MS
3036 }
3037 else
3038 {
73b0fce8 3039 tree t;
058b15c1 3040 parm = TREE_VALUE (TREE_VALUE (parm));
c8094d83 3041
73b0fce8
KL
3042 if (parm && TREE_CODE (parm) == TEMPLATE_DECL)
3043 {
9e1e64ec 3044 t = cxx_make_type (TEMPLATE_TEMPLATE_PARM);
c8094d83 3045 /* This is for distinguishing between real templates and template
73b0fce8
KL
3046 template parameters */
3047 TREE_TYPE (parm) = t;
3048 TREE_TYPE (DECL_TEMPLATE_RESULT (parm)) = t;
3049 decl = parm;
3050 }
3051 else
3052 {
9e1e64ec 3053 t = cxx_make_type (TEMPLATE_TYPE_PARM);
f4f206f4 3054 /* parm is either IDENTIFIER_NODE or NULL_TREE. */
73b0fce8
KL
3055 decl = build_decl (TYPE_DECL, parm, t);
3056 }
c8094d83 3057
d2e5ee5c
MS
3058 TYPE_NAME (t) = decl;
3059 TYPE_STUB_DECL (t) = decl;
a292b002 3060 parm = decl;
f84b4be9 3061 TEMPLATE_TYPE_PARM_INDEX (t)
c8094d83 3062 = build_template_parm_index (idx, processing_template_decl,
f84b4be9
JM
3063 processing_template_decl,
3064 decl, TREE_TYPE (parm));
5d80a306 3065 TEMPLATE_TYPE_PARAMETER_PACK (t) = is_parameter_pack;
06d40de8 3066 TYPE_CANONICAL (t) = canonical_type_parameter (t);
8d08fdba 3067 }
c727aa5e 3068 DECL_ARTIFICIAL (decl) = 1;
cd9f6678 3069 SET_DECL_TEMPLATE_PARM_P (decl);
8d08fdba 3070 pushdecl (decl);
a292b002 3071 parm = build_tree_list (defval, parm);
8d08fdba
MS
3072 return chainon (list, parm);
3073}
3074
3075/* The end of a template parameter list has been reached. Process the
3076 tree list into a parameter vector, converting each parameter into a more
3077 useful form. Type parameters are saved as IDENTIFIER_NODEs, and others
3078 as PARM_DECLs. */
3079
3080tree
3a978d72 3081end_template_parm_list (tree parms)
8d08fdba 3082{
5566b478 3083 int nparms;
9471d3e2 3084 tree parm, next;
5566b478
MS
3085 tree saved_parmlist = make_tree_vec (list_length (parms));
3086
5566b478 3087 current_template_parms
4890c2f4 3088 = tree_cons (size_int (processing_template_decl),
5566b478 3089 saved_parmlist, current_template_parms);
8d08fdba 3090
9471d3e2
NS
3091 for (parm = parms, nparms = 0; parm; parm = next, nparms++)
3092 {
3093 next = TREE_CHAIN (parm);
3094 TREE_VEC_ELT (saved_parmlist, nparms) = parm;
3095 TREE_CHAIN (parm) = NULL_TREE;
3096 }
a292b002 3097
67ffc812
MM
3098 --processing_template_parmlist;
3099
8d08fdba
MS
3100 return saved_parmlist;
3101}
3102
5566b478
MS
3103/* end_template_decl is called after a template declaration is seen. */
3104
8d08fdba 3105void
3a978d72 3106end_template_decl (void)
8d08fdba 3107{
386b8a85
JM
3108 reset_specialization ();
3109
5156628f 3110 if (! processing_template_decl)
73aad9b9
JM
3111 return;
3112
5566b478 3113 /* This matches the pushlevel in begin_template_parm_list. */
74b846e0 3114 finish_scope ();
8d08fdba 3115
5566b478
MS
3116 --processing_template_decl;
3117 current_template_parms = TREE_CHAIN (current_template_parms);
5566b478 3118}
8d08fdba 3119
03c17ccd
MM
3120/* Within the declaration of a template, return all levels of template
3121 parameters that apply. The template parameters are represented as
3122 a TREE_VEC, in the form documented in cp-tree.h for template
3123 arguments. */
9a3b49ac 3124
b5791fdc 3125static tree
3a978d72 3126current_template_args (void)
5566b478 3127{
36a117a5 3128 tree header;
b370501f 3129 tree args = NULL_TREE;
36a117a5 3130 int length = TMPL_PARMS_DEPTH (current_template_parms);
98c1c668
JM
3131 int l = length;
3132
36a117a5
MM
3133 /* If there is only one level of template parameters, we do not
3134 create a TREE_VEC of TREE_VECs. Instead, we return a single
3135 TREE_VEC containing the arguments. */
3136 if (length > 1)
3137 args = make_tree_vec (length);
3138
3139 for (header = current_template_parms; header; header = TREE_CHAIN (header))
8d08fdba 3140 {
5566b478 3141 tree a = copy_node (TREE_VALUE (header));
36a117a5
MM
3142 int i;
3143
5566b478 3144 TREE_TYPE (a) = NULL_TREE;
36a117a5 3145 for (i = TREE_VEC_LENGTH (a) - 1; i >= 0; --i)
5566b478 3146 {
98c1c668
JM
3147 tree t = TREE_VEC_ELT (a, i);
3148
36a117a5 3149 /* T will be a list if we are called from within a
98c1c668
JM
3150 begin/end_template_parm_list pair, but a vector directly
3151 if within a begin/end_member_template_processing pair. */
c8094d83 3152 if (TREE_CODE (t) == TREE_LIST)
98c1c668
JM
3153 {
3154 t = TREE_VALUE (t);
c8094d83 3155
0b93f014 3156 if (!error_operand_p (t))
0f67a82f
LM
3157 {
3158 if (TREE_CODE (t) == TYPE_DECL
3159 || TREE_CODE (t) == TEMPLATE_DECL)
5d80a306
DG
3160 {
3161 t = TREE_TYPE (t);
3162
3163 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
3164 {
3165 /* Turn this argument into a TYPE_ARGUMENT_PACK
3166 with a single element, which expands T. */
3167 tree vec = make_tree_vec (1);
3168 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
3169
3170 t = make_node (TYPE_ARGUMENT_PACK);
3171 SET_ARGUMENT_PACK_ARGS (t, vec);
3172 }
3173 }
3174 else
3175 {
3176 t = DECL_INITIAL (t);
3177
3178 if (TEMPLATE_PARM_PARAMETER_PACK (t))
3179 {
3180 /* Turn this argument into a NONTYPE_ARGUMENT_PACK
3181 with a single element, which expands T. */
3182 tree vec = make_tree_vec (1);
3183 tree type = TREE_TYPE (TEMPLATE_PARM_DECL (t));
3184 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
3185
3186 t = make_node (NONTYPE_ARGUMENT_PACK);
3187 SET_ARGUMENT_PACK_ARGS (t, vec);
3188 TREE_TYPE (t) = type;
3189 }
3190 }
bf98d3b6 3191 TREE_VEC_ELT (a, i) = t;
5d80a306 3192 }
98c1c668 3193 }
5566b478 3194 }
36a117a5
MM
3195
3196 if (length > 1)
3197 TREE_VEC_ELT (args, --l) = a;
3198 else
3199 args = a;
8d08fdba
MS
3200 }
3201
9a3b49ac
MS
3202 return args;
3203}
75650646 3204
e1467ff2 3205/* Return a TEMPLATE_DECL corresponding to DECL, using the indicated
c7222c02 3206 template PARMS. If MEMBER_TEMPLATE_P is true, the new template is
ee81147e 3207 a member template. Used by push_template_decl below. */
e1467ff2 3208
75650646 3209static tree
c7222c02 3210build_template_decl (tree decl, tree parms, bool member_template_p)
75650646
MM
3211{
3212 tree tmpl = build_lang_decl (TEMPLATE_DECL, DECL_NAME (decl), NULL_TREE);
3213 DECL_TEMPLATE_PARMS (tmpl) = parms;
3214 DECL_CONTEXT (tmpl) = DECL_CONTEXT (decl);
c7222c02 3215 DECL_MEMBER_TEMPLATE_P (tmpl) = member_template_p;
75650646
MM
3216 if (DECL_LANG_SPECIFIC (decl))
3217 {
8f032717
MM
3218 DECL_STATIC_FUNCTION_P (tmpl) = DECL_STATIC_FUNCTION_P (decl);
3219 DECL_CONSTRUCTOR_P (tmpl) = DECL_CONSTRUCTOR_P (decl);
c8460010 3220 DECL_DESTRUCTOR_P (tmpl) = DECL_DESTRUCTOR_P (decl);
11f98788 3221 DECL_NONCONVERTING_P (tmpl) = DECL_NONCONVERTING_P (decl);
1f6e1acc
AS
3222 DECL_ASSIGNMENT_OPERATOR_P (tmpl) = DECL_ASSIGNMENT_OPERATOR_P (decl);
3223 if (DECL_OVERLOADED_OPERATOR_P (decl))
c8094d83 3224 SET_OVERLOADED_OPERATOR_CODE (tmpl,
1f6e1acc 3225 DECL_OVERLOADED_OPERATOR_P (decl));
75650646
MM
3226 }
3227
3228 return tmpl;
3229}
3230
050367a3
MM
3231struct template_parm_data
3232{
6c30752f
MM
3233 /* The level of the template parameters we are currently
3234 processing. */
050367a3 3235 int level;
6c30752f
MM
3236
3237 /* The index of the specialization argument we are currently
3238 processing. */
3239 int current_arg;
3240
3241 /* An array whose size is the number of template parameters. The
838dfd8a 3242 elements are nonzero if the parameter has been used in any one
6c30752f 3243 of the arguments processed so far. */
050367a3 3244 int* parms;
6c30752f
MM
3245
3246 /* An array whose size is the number of template arguments. The
838dfd8a 3247 elements are nonzero if the argument makes use of template
6c30752f
MM
3248 parameters of this level. */
3249 int* arg_uses_template_parms;
050367a3
MM
3250};
3251
3252/* Subroutine of push_template_decl used to see if each template
3253 parameter in a partial specialization is used in the explicit
3254 argument list. If T is of the LEVEL given in DATA (which is
3255 treated as a template_parm_data*), then DATA->PARMS is marked
3256 appropriately. */
3257
3258static int
3a978d72 3259mark_template_parm (tree t, void* data)
050367a3
MM
3260{
3261 int level;
3262 int idx;
3263 struct template_parm_data* tpd = (struct template_parm_data*) data;
3264
3265 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
3266 {
3267 level = TEMPLATE_PARM_LEVEL (t);
3268 idx = TEMPLATE_PARM_IDX (t);
3269 }
3270 else
3271 {
3272 level = TEMPLATE_TYPE_LEVEL (t);
3273 idx = TEMPLATE_TYPE_IDX (t);
3274 }
3275
3276 if (level == tpd->level)
6c30752f
MM
3277 {
3278 tpd->parms[idx] = 1;
3279 tpd->arg_uses_template_parms[tpd->current_arg] = 1;
3280 }
050367a3
MM
3281
3282 /* Return zero so that for_each_template_parm will continue the
3283 traversal of the tree; we want to mark *every* template parm. */
3284 return 0;
3285}
3286
6c30752f
MM
3287/* Process the partial specialization DECL. */
3288
e9659ab0 3289static tree
3a978d72 3290process_partial_specialization (tree decl)
6c30752f
MM
3291{
3292 tree type = TREE_TYPE (decl);
3293 tree maintmpl = CLASSTYPE_TI_TEMPLATE (type);
3294 tree specargs = CLASSTYPE_TI_ARGS (type);
f9a7ae04 3295 tree inner_args = INNERMOST_TEMPLATE_ARGS (specargs);
6c30752f
MM
3296 tree inner_parms = INNERMOST_TEMPLATE_PARMS (current_template_parms);
3297 tree main_inner_parms = DECL_INNERMOST_TEMPLATE_PARMS (maintmpl);
3298 int nargs = TREE_VEC_LENGTH (inner_args);
3299 int ntparms = TREE_VEC_LENGTH (inner_parms);
3300 int i;
3301 int did_error_intro = 0;
6c30752f
MM
3302 struct template_parm_data tpd;
3303 struct template_parm_data tpd2;
3304
6c30752f
MM
3305 /* We check that each of the template parameters given in the
3306 partial specialization is used in the argument list to the
3307 specialization. For example:
3308
3309 template <class T> struct S;
3310 template <class T> struct S<T*>;
3311
3312 The second declaration is OK because `T*' uses the template
3313 parameter T, whereas
3314
3315 template <class T> struct S<int>;
3316
3317 is no good. Even trickier is:
3318
3319 template <class T>
3320 struct S1
3321 {
3322 template <class U>
3323 struct S2;
3324 template <class U>
3325 struct S2<T>;
3326 };
3327
0e339752 3328 The S2<T> declaration is actually invalid; it is a
c8094d83 3329 full-specialization. Of course,
6c30752f
MM
3330
3331 template <class U>
3332 struct S2<T (*)(U)>;
3333
3334 or some such would have been OK. */
3335 tpd.level = TMPL_PARMS_DEPTH (current_template_parms);
67f5655f 3336 tpd.parms = (int *) alloca (sizeof (int) * ntparms);
fad205ff 3337 memset (tpd.parms, 0, sizeof (int) * ntparms);
6c30752f 3338
67f5655f 3339 tpd.arg_uses_template_parms = (int *) alloca (sizeof (int) * nargs);
fad205ff 3340 memset (tpd.arg_uses_template_parms, 0, sizeof (int) * nargs);
6c30752f
MM
3341 for (i = 0; i < nargs; ++i)
3342 {
3343 tpd.current_arg = i;
3344 for_each_template_parm (TREE_VEC_ELT (inner_args, i),
3345 &mark_template_parm,
4f2c9d7e 3346 &tpd,
c095a4f8
DG
3347 NULL,
3348 /*include_nondeduced_p=*/false);
6c30752f
MM
3349 }
3350 for (i = 0; i < ntparms; ++i)
3351 if (tpd.parms[i] == 0)
3352 {
3353 /* One of the template parms was not used in the
f9a7ae04 3354 specialization. */
6c30752f
MM
3355 if (!did_error_intro)
3356 {
33bd39a2 3357 error ("template parameters not used in partial specialization:");
6c30752f
MM
3358 did_error_intro = 1;
3359 }
3360
0f51ccfc 3361 error (" %qD", TREE_VALUE (TREE_VEC_ELT (inner_parms, i)));
6c30752f
MM
3362 }
3363
3364 /* [temp.class.spec]
3365
3366 The argument list of the specialization shall not be identical to
3367 the implicit argument list of the primary template. */
c8094d83
MS
3368 if (comp_template_args
3369 (inner_args,
f9a7ae04
MM
3370 INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE
3371 (maintmpl)))))
0f51ccfc 3372 error ("partial specialization %qT does not specialize any template arguments", type);
6c30752f
MM
3373
3374 /* [temp.class.spec]
3375
3376 A partially specialized non-type argument expression shall not
3377 involve template parameters of the partial specialization except
3378 when the argument expression is a simple identifier.
3379
3380 The type of a template parameter corresponding to a specialized
3381 non-type argument shall not be dependent on a parameter of the
5d80a306
DG
3382 specialization.
3383
3384 Also, we verify that pack expansions only occur at the
3385 end of the argument list. */
50bc768d 3386 gcc_assert (nargs == DECL_NTPARMS (maintmpl));
6c30752f
MM
3387 tpd2.parms = 0;
3388 for (i = 0; i < nargs; ++i)
3389 {
5d80a306 3390 tree parm = TREE_VALUE (TREE_VEC_ELT (main_inner_parms, i));
6c30752f 3391 tree arg = TREE_VEC_ELT (inner_args, i);
5d80a306
DG
3392 tree packed_args = NULL_TREE;
3393 int j, len = 1;
6c30752f 3394
5d80a306
DG
3395 if (ARGUMENT_PACK_P (arg))
3396 {
3397 /* Extract the arguments from the argument pack. We'll be
3398 iterating over these in the following loop. */
3399 packed_args = ARGUMENT_PACK_ARGS (arg);
3400 len = TREE_VEC_LENGTH (packed_args);
3401 }
3402
3403 for (j = 0; j < len; j++)
3404 {
3405 if (packed_args)
3406 /* Get the Jth argument in the parameter pack. */
3407 arg = TREE_VEC_ELT (packed_args, j);
3408
3409 if (PACK_EXPANSION_P (arg))
3410 {
3411 /* Pack expansions must come at the end of the
3412 argument list. */
3413 if ((packed_args && j < len - 1)
3414 || (!packed_args && i < nargs - 1))
3415 {
3416 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
3417 error ("parameter pack argument %qE must be at the end of the template argument list", arg);
3418 else
1ad8aeeb
DG
3419 error ("parameter pack argument %qT must be at the end of the template argument list", arg);
3420
3421 if (packed_args)
3422 TREE_VEC_ELT (packed_args, j) = error_mark_node;
5d80a306
DG
3423 }
3424 }
3425
3426 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
3427 /* We only care about the pattern. */
3428 arg = PACK_EXPANSION_PATTERN (arg);
3429
3430 if (/* These first two lines are the `non-type' bit. */
3431 !TYPE_P (arg)
3432 && TREE_CODE (arg) != TEMPLATE_DECL
3433 /* This next line is the `argument expression is not just a
3434 simple identifier' condition and also the `specialized
3435 non-type argument' bit. */
3436 && TREE_CODE (arg) != TEMPLATE_PARM_INDEX)
3437 {
3438 if ((!packed_args && tpd.arg_uses_template_parms[i])
3439 || (packed_args && uses_template_parms (arg)))
3440 error ("template argument %qE involves template parameter(s)",
3441 arg);
3442 else
3443 {
3444 /* Look at the corresponding template parameter,
3445 marking which template parameters its type depends
3446 upon. */
3447 tree type = TREE_TYPE (parm);
3448
3449 if (!tpd2.parms)
3450 {
3451 /* We haven't yet initialized TPD2. Do so now. */
3452 tpd2.arg_uses_template_parms
3453 = (int *) alloca (sizeof (int) * nargs);
3454 /* The number of parameters here is the number in the
3455 main template, which, as checked in the assertion
3456 above, is NARGS. */
3457 tpd2.parms = (int *) alloca (sizeof (int) * nargs);
3458 tpd2.level =
3459 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (maintmpl));
3460 }
3461
3462 /* Mark the template parameters. But this time, we're
3463 looking for the template parameters of the main
3464 template, not in the specialization. */
3465 tpd2.current_arg = i;
3466 tpd2.arg_uses_template_parms[i] = 0;
3467 memset (tpd2.parms, 0, sizeof (int) * nargs);
3468 for_each_template_parm (type,
3469 &mark_template_parm,
3470 &tpd2,
c095a4f8
DG
3471 NULL,
3472 /*include_nondeduced_p=*/false);
5d80a306
DG
3473
3474 if (tpd2.arg_uses_template_parms [i])
3475 {
3476 /* The type depended on some template parameters.
3477 If they are fully specialized in the
3478 specialization, that's OK. */
3479 int j;
3480 for (j = 0; j < nargs; ++j)
3481 if (tpd2.parms[j] != 0
3482 && tpd.arg_uses_template_parms [j])
3483 {
3484 error ("type %qT of template argument %qE depends "
3485 "on template parameter(s)",
3486 type,
3487 arg);
3488 break;
3489 }
3490 }
3491 }
3492 }
3493 }
6c30752f
MM
3494 }
3495
c8094d83 3496 if (retrieve_specialization (maintmpl, specargs,
c7222c02 3497 /*class_specializations_p=*/true))
6c30752f
MM
3498 /* We've already got this specialization. */
3499 return decl;
3500
d8b64f80 3501 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)
916b63c3 3502 = tree_cons (specargs, inner_parms,
b1d7b1c0 3503 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl));
6c30752f
MM
3504 TREE_TYPE (DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)) = type;
3505 return decl;
3506}
3507
85d85234
DG
3508/* Check that a template declaration's use of default arguments and
3509 parameter packs is not invalid. Here, PARMS are the template
3510 parameters. IS_PRIMARY is nonzero if DECL is the thing declared by
3511 a primary template. IS_PARTIAL is nonzero if DECL is a partial
3512 specialization.
9b7dd5e8 3513
6ba89f8e 3514
9b7dd5e8
DG
3515 IS_FRIEND_DECL is nonzero if DECL is a friend function template
3516 declaration (but not a definition); 1 indicates a declaration, 2
3517 indicates a redeclaration. When IS_FRIEND_DECL=2, no errors are
3518 emitted for extraneous default arguments.
3519
3520 Returns TRUE if there were no errors found, FALSE otherwise. */
3521
3522bool
3523check_default_tmpl_args (tree decl, tree parms, int is_primary,
3524 int is_partial, int is_friend_decl)
6ba89f8e 3525{
d8e178a0 3526 const char *msg;
66191c20
MM
3527 int last_level_to_check;
3528 tree parm_level;
9b7dd5e8 3529 bool no_errors = true;
6ba89f8e 3530
c8094d83 3531 /* [temp.param]
6ba89f8e
MM
3532
3533 A default template-argument shall not be specified in a
3534 function template declaration or a function template definition, nor
3535 in the template-parameter-list of the definition of a member of a
3536 class template. */
3537
4f1c5b7d 3538 if (TREE_CODE (CP_DECL_CONTEXT (decl)) == FUNCTION_DECL)
e0942dcd
MM
3539 /* You can't have a function template declaration in a local
3540 scope, nor you can you define a member of a class template in a
3541 local scope. */
9b7dd5e8 3542 return true;
e0942dcd 3543
6ba89f8e
MM
3544 if (current_class_type
3545 && !TYPE_BEING_DEFINED (current_class_type)
3d7de1fa 3546 && DECL_LANG_SPECIFIC (decl)
5937a6f9
MM
3547 /* If this is either a friend defined in the scope of the class
3548 or a member function. */
6df5158a
NS
3549 && (DECL_FUNCTION_MEMBER_P (decl)
3550 ? same_type_p (DECL_CONTEXT (decl), current_class_type)
3551 : DECL_FRIEND_CONTEXT (decl)
3552 ? same_type_p (DECL_FRIEND_CONTEXT (decl), current_class_type)
3553 : false)
5937a6f9
MM
3554 /* And, if it was a member function, it really was defined in
3555 the scope of the class. */
6df5158a
NS
3556 && (!DECL_FUNCTION_MEMBER_P (decl)
3557 || DECL_INITIALIZED_IN_CLASS_P (decl)))
6ba89f8e 3558 /* We already checked these parameters when the template was
5937a6f9
MM
3559 declared, so there's no need to do it again now. This function
3560 was defined in class scope, but we're processing it's body now
3561 that the class is complete. */
9b7dd5e8 3562 return true;
c8094d83 3563
9b7dd5e8
DG
3564 /* Core issue 226 (C++0x only): the following only applies to class
3565 templates. */
c1ae8be5 3566 if ((cxx_dialect == cxx98) || TREE_CODE (decl) != FUNCTION_DECL)
66191c20 3567 {
9b7dd5e8 3568 /* [temp.param]
66191c20 3569
9b7dd5e8
DG
3570 If a template-parameter has a default template-argument, all
3571 subsequent template-parameters shall have a default
3572 template-argument supplied. */
3573 for (parm_level = parms; parm_level; parm_level = TREE_CHAIN (parm_level))
3574 {
3575 tree inner_parms = TREE_VALUE (parm_level);
3576 int ntparms = TREE_VEC_LENGTH (inner_parms);
3577 int seen_def_arg_p = 0;
3578 int i;
42b304f1 3579
9b7dd5e8
DG
3580 for (i = 0; i < ntparms; ++i)
3581 {
3582 tree parm = TREE_VEC_ELT (inner_parms, i);
42b304f1 3583
9b7dd5e8
DG
3584 if (parm == error_mark_node)
3585 continue;
3586
3587 if (TREE_PURPOSE (parm))
3588 seen_def_arg_p = 1;
3589 else if (seen_def_arg_p)
3590 {
3591 error ("no default argument for %qD", TREE_VALUE (parm));
3592 /* For better subsequent error-recovery, we indicate that
3593 there should have been a default argument. */
3594 TREE_PURPOSE (parm) = error_mark_node;
3595 no_errors = false;
3596 }
85d85234
DG
3597 else if (is_primary
3598 && !is_partial
3599 && !is_friend_decl
3600 && TREE_CODE (decl) == TYPE_DECL
3601 && i < ntparms - 1
3602 && template_parameter_pack_p (TREE_VALUE (parm)))
3603 {
3604 /* A primary class template can only have one
3605 parameter pack, at the end of the template
3606 parameter list. */
3607
3608 if (TREE_CODE (TREE_VALUE (parm)) == PARM_DECL)
3609 error ("parameter pack %qE must be at the end of the"
3610 " template parameter list", TREE_VALUE (parm));
3611 else
3612 error ("parameter pack %qT must be at the end of the"
3613 " template parameter list",
3614 TREE_TYPE (TREE_VALUE (parm)));
3615
3616 TREE_VALUE (TREE_VEC_ELT (inner_parms, i))
3617 = error_mark_node;
3618 no_errors = false;
3619 }
9b7dd5e8
DG
3620 }
3621 }
66191c20
MM
3622 }
3623
c1ae8be5 3624 if (((cxx_dialect == cxx98) && TREE_CODE (decl) != TYPE_DECL)
9b7dd5e8
DG
3625 || is_partial
3626 || !is_primary
3627 || is_friend_decl)
6ba89f8e
MM
3628 /* For an ordinary class template, default template arguments are
3629 allowed at the innermost level, e.g.:
0cbd7506 3630 template <class T = int>
6ba89f8e
MM
3631 struct S {};
3632 but, in a partial specialization, they're not allowed even
3633 there, as we have in [temp.class.spec]:
c8094d83 3634
6ba89f8e 3635 The template parameter list of a specialization shall not
c8094d83 3636 contain default template argument values.
6ba89f8e 3637
9b7dd5e8
DG
3638 So, for a partial specialization, or for a function template
3639 (in C++98/C++03), we look at all of them. */
6ba89f8e
MM
3640 ;
3641 else
3642 /* But, for a primary class template that is not a partial
3643 specialization we look at all template parameters except the
3644 innermost ones. */
3645 parms = TREE_CHAIN (parms);
3646
3647 /* Figure out what error message to issue. */
9b7dd5e8
DG
3648 if (is_friend_decl == 2)
3649 msg = "default template arguments may not be used in function template friend re-declaration";
3650 else if (is_friend_decl)
3651 msg = "default template arguments may not be used in function template friend declarations";
c1ae8be5 3652 else if (TREE_CODE (decl) == FUNCTION_DECL && (cxx_dialect == cxx98))
8653a2c3 3653 msg = "default template arguments may not be used in function templates";
6ba89f8e 3654 else if (is_partial)
8653a2c3 3655 msg = "default template arguments may not be used in partial specializations";
6ba89f8e 3656 else
0f51ccfc 3657 msg = "default argument for template parameter for class enclosing %qD";
6ba89f8e
MM
3658
3659 if (current_class_type && TYPE_BEING_DEFINED (current_class_type))
3660 /* If we're inside a class definition, there's no need to
104bf76a 3661 examine the parameters to the class itself. On the one
6ba89f8e 3662 hand, they will be checked when the class is defined, and,
0e339752 3663 on the other, default arguments are valid in things like:
0cbd7506
MS
3664 template <class T = double>
3665 struct S { template <class U> void f(U); };
6ba89f8e
MM
3666 Here the default argument for `S' has no bearing on the
3667 declaration of `f'. */
3668 last_level_to_check = template_class_depth (current_class_type) + 1;
3669 else
3670 /* Check everything. */
3671 last_level_to_check = 0;
3672
c8094d83
MS
3673 for (parm_level = parms;
3674 parm_level && TMPL_PARMS_DEPTH (parm_level) >= last_level_to_check;
66191c20 3675 parm_level = TREE_CHAIN (parm_level))
6ba89f8e 3676 {
66191c20
MM
3677 tree inner_parms = TREE_VALUE (parm_level);
3678 int i;
3679 int ntparms;
6ba89f8e
MM
3680
3681 ntparms = TREE_VEC_LENGTH (inner_parms);
c8094d83 3682 for (i = 0; i < ntparms; ++i)
42b304f1
LM
3683 {
3684 if (TREE_VEC_ELT (inner_parms, i) == error_mark_node)
3685 continue;
6ba89f8e 3686
42b304f1
LM
3687 if (TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)))
3688 {
3689 if (msg)
3690 {
9b7dd5e8
DG
3691 no_errors = false;
3692 if (is_friend_decl == 2)
3693 return no_errors;
3694
42b304f1
LM
3695 error (msg, decl);
3696 msg = 0;
3697 }
3698
3699 /* Clear out the default argument so that we are not
3700 confused later. */
3701 TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)) = NULL_TREE;
3702 }
3703 }
6ba89f8e
MM
3704
3705 /* At this point, if we're still interested in issuing messages,
3706 they must apply to classes surrounding the object declared. */
3707 if (msg)
c8094d83 3708 msg = "default argument for template parameter for class enclosing %qD";
6ba89f8e 3709 }
9b7dd5e8
DG
3710
3711 return no_errors;
6ba89f8e
MM
3712}
3713
5dd236e2
NS
3714/* Worker for push_template_decl_real, called via
3715 for_each_template_parm. DATA is really an int, indicating the
3716 level of the parameters we are interested in. If T is a template
838dfd8a 3717 parameter of that level, return nonzero. */
5dd236e2
NS
3718
3719static int
3a978d72 3720template_parm_this_level_p (tree t, void* data)
5dd236e2 3721{
6e04241f 3722 int this_level = *(int *)data;
5dd236e2
NS
3723 int level;
3724
3725 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
3726 level = TEMPLATE_PARM_LEVEL (t);
3727 else
3728 level = TEMPLATE_TYPE_LEVEL (t);
3729 return level == this_level;
3730}
3731
3ac3d9ea 3732/* Creates a TEMPLATE_DECL for the indicated DECL using the template
f84b4be9
JM
3733 parameters given by current_template_args, or reuses a
3734 previously existing one, if appropriate. Returns the DECL, or an
c8094d83 3735 equivalent one, if it is replaced via a call to duplicate_decls.
6757edfe 3736
d63d5d0c 3737 If IS_FRIEND is true, DECL is a friend declaration. */
3ac3d9ea
MM
3738
3739tree
d63d5d0c 3740push_template_decl_real (tree decl, bool is_friend)
9a3b49ac
MS
3741{
3742 tree tmpl;
f84b4be9 3743 tree args;
9a3b49ac 3744 tree info;
f84b4be9
JM
3745 tree ctx;
3746 int primary;
6ba89f8e 3747 int is_partial;
cfe507be 3748 int new_template_p = 0;
c7222c02
MM
3749 /* True if the template is a member template, in the sense of
3750 [temp.mem]. */
3751 bool member_template_p = false;
6ba89f8e 3752
c0694c4b
MM
3753 if (decl == error_mark_node)
3754 return decl;
3755
6ba89f8e 3756 /* See if this is a partial specialization. */
9188c363 3757 is_partial = (DECL_IMPLICIT_TYPEDEF_P (decl)
6ba89f8e 3758 && TREE_CODE (TREE_TYPE (decl)) != ENUMERAL_TYPE
370af2d5 3759 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)));
6757edfe 3760
d63d5d0c
ILT
3761 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_FRIEND_P (decl))
3762 is_friend = true;
f84b4be9
JM
3763
3764 if (is_friend)
3765 /* For a friend, we want the context of the friend function, not
3766 the type of which it is a friend. */
3767 ctx = DECL_CONTEXT (decl);
4f1c5b7d
MM
3768 else if (CP_DECL_CONTEXT (decl)
3769 && TREE_CODE (CP_DECL_CONTEXT (decl)) != NAMESPACE_DECL)
f84b4be9
JM
3770 /* In the case of a virtual function, we want the class in which
3771 it is defined. */
4f1c5b7d 3772 ctx = CP_DECL_CONTEXT (decl);
f84b4be9 3773 else
dc957d14 3774 /* Otherwise, if we're currently defining some class, the DECL
f84b4be9 3775 is assumed to be a member of the class. */
9188c363 3776 ctx = current_scope ();
f84b4be9 3777
2c73f9f5
ML
3778 if (ctx && TREE_CODE (ctx) == NAMESPACE_DECL)
3779 ctx = NULL_TREE;
3780
3781 if (!DECL_CONTEXT (decl))
cb0dbb9a 3782 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
2c73f9f5 3783
6ba89f8e 3784 /* See if this is a primary template. */
c9cbfca6
JM
3785 if (is_friend && ctx)
3786 /* A friend template that specifies a class context, i.e.
3787 template <typename T> friend void A<T>::f();
3788 is not primary. */
3789 primary = 0;
3790 else
3791 primary = template_parm_scope_p ();
9a3b49ac 3792
83566abf
JM
3793 if (primary)
3794 {
c7222c02
MM
3795 if (DECL_CLASS_SCOPE_P (decl))
3796 member_template_p = true;
2f1b1731
MM
3797 if (TREE_CODE (decl) == TYPE_DECL
3798 && ANON_AGGRNAME_P (DECL_NAME (decl)))
33bd39a2 3799 error ("template class without a name");
717a7d5d 3800 else if (TREE_CODE (decl) == FUNCTION_DECL)
4b0d3cbe 3801 {
717a7d5d
MM
3802 if (DECL_DESTRUCTOR_P (decl))
3803 {
3804 /* [temp.mem]
c8094d83 3805
0cbd7506 3806 A destructor shall not be a member template. */
0f51ccfc 3807 error ("destructor %qD declared as member template", decl);
717a7d5d
MM
3808 return error_mark_node;
3809 }
3810 if (NEW_DELETE_OPNAME_P (DECL_NAME (decl))
3811 && (!TYPE_ARG_TYPES (TREE_TYPE (decl))
3812 || TYPE_ARG_TYPES (TREE_TYPE (decl)) == void_list_node
3813 || !TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (decl)))
3814 || (TREE_CHAIN (TYPE_ARG_TYPES ((TREE_TYPE (decl))))
3815 == void_list_node)))
3816 {
c8094d83 3817 /* [basic.stc.dynamic.allocation]
717a7d5d 3818
0cbd7506 3819 An allocation function can be a function
717a7d5d
MM
3820 template. ... Template allocation functions shall
3821 have two or more parameters. */
0f51ccfc 3822 error ("invalid template declaration of %qD", decl);
7c60008e 3823 return error_mark_node;
717a7d5d 3824 }
4b0d3cbe 3825 }
8ca4bf25
MM
3826 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
3827 && CLASS_TYPE_P (TREE_TYPE (decl)))
2aaf816d
JM
3828 /* OK */;
3829 else
11325dcd 3830 {
0f51ccfc 3831 error ("template declaration of %q#D", decl);
11325dcd
KL
3832 return error_mark_node;
3833 }
83566abf
JM
3834 }
3835
6ba89f8e
MM
3836 /* Check to see that the rules regarding the use of default
3837 arguments are not being violated. */
c8094d83 3838 check_default_tmpl_args (decl, current_template_parms,
9b7dd5e8 3839 primary, is_partial, /*is_friend_decl=*/0);
73aad9b9 3840
5d80a306
DG
3841 /* Ensure that there are no parameter packs in the type of this
3842 declaration that have not been expanded. */
b1d7b1c0
DG
3843 if (TREE_CODE (decl) == FUNCTION_DECL)
3844 {
3845 /* Check each of the arguments individually to see if there are
3846 any bare parameter packs. */
3847 tree type = TREE_TYPE (decl);
3848 tree arg = DECL_ARGUMENTS (decl);
3849 tree argtype = TYPE_ARG_TYPES (type);
3850
3851 while (arg && argtype)
3852 {
3853 if (!FUNCTION_PARAMETER_PACK_P (arg)
7b3e2d46 3854 && check_for_bare_parameter_packs (TREE_TYPE (arg)))
b1d7b1c0
DG
3855 {
3856 /* This is a PARM_DECL that contains unexpanded parameter
3857 packs. We have already complained about this in the
3858 check_for_bare_parameter_packs call, so just replace
3859 these types with ERROR_MARK_NODE. */
3860 TREE_TYPE (arg) = error_mark_node;
3861 TREE_VALUE (argtype) = error_mark_node;
3862 }
3863
3864 arg = TREE_CHAIN (arg);
3865 argtype = TREE_CHAIN (argtype);
3866 }
3867
3868 /* Check for bare parameter packs in the return type and the
3869 exception specifiers. */
7b3e2d46 3870 if (check_for_bare_parameter_packs (TREE_TYPE (type)))
046e4071
JJ
3871 /* Errors were already issued, set return type to int
3872 as the frontend doesn't expect error_mark_node as
3873 the return type. */
3874 TREE_TYPE (type) = integer_type_node;
7b3e2d46
DG
3875 if (check_for_bare_parameter_packs (TYPE_RAISES_EXCEPTIONS (type)))
3876 TYPE_RAISES_EXCEPTIONS (type) = NULL_TREE;
b1d7b1c0 3877 }
7b3e2d46 3878 else if (check_for_bare_parameter_packs (TREE_TYPE (decl)))
92fab505
DG
3879 {
3880 TREE_TYPE (decl) = error_mark_node;
3881 return error_mark_node;
3882 }
5d80a306 3883
6ba89f8e
MM
3884 if (is_partial)
3885 return process_partial_specialization (decl);
d32789d8 3886
9a3b49ac
MS
3887 args = current_template_args ();
3888
c8094d83 3889 if (!ctx
f84b4be9 3890 || TREE_CODE (ctx) == FUNCTION_DECL
a723baf1 3891 || (CLASS_TYPE_P (ctx) && TYPE_BEING_DEFINED (ctx))
f84b4be9 3892 || (is_friend && !DECL_TEMPLATE_INFO (decl)))
8d08fdba 3893 {
75650646 3894 if (DECL_LANG_SPECIFIC (decl)
f84b4be9
JM
3895 && DECL_TEMPLATE_INFO (decl)
3896 && DECL_TI_TEMPLATE (decl))
3897 tmpl = DECL_TI_TEMPLATE (decl);
1c10870d
AS
3898 /* If DECL is a TYPE_DECL for a class-template, then there won't
3899 be DECL_LANG_SPECIFIC. The information equivalent to
3900 DECL_TEMPLATE_INFO is found in TYPE_TEMPLATE_INFO instead. */
c8094d83 3901 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
1c10870d
AS
3902 && TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
3903 && TYPE_TI_TEMPLATE (TREE_TYPE (decl)))
3904 {
3905 /* Since a template declaration already existed for this
3906 class-type, we must be redeclaring it here. Make sure
0e339752 3907 that the redeclaration is valid. */
1c10870d
AS
3908 redeclare_class_template (TREE_TYPE (decl),
3909 current_template_parms);
3910 /* We don't need to create a new TEMPLATE_DECL; just use the
3911 one we already had. */
3912 tmpl = TYPE_TI_TEMPLATE (TREE_TYPE (decl));
3913 }
f84b4be9 3914 else
786b5245 3915 {
c7222c02
MM
3916 tmpl = build_template_decl (decl, current_template_parms,
3917 member_template_p);
cfe507be
MM
3918 new_template_p = 1;
3919
f84b4be9
JM
3920 if (DECL_LANG_SPECIFIC (decl)
3921 && DECL_TEMPLATE_SPECIALIZATION (decl))
3922 {
3923 /* A specialization of a member template of a template
c6002625 3924 class. */
f84b4be9
JM
3925 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
3926 DECL_TEMPLATE_INFO (tmpl) = DECL_TEMPLATE_INFO (decl);
3927 DECL_TEMPLATE_INFO (decl) = NULL_TREE;
3928 }
786b5245 3929 }
8d08fdba
MS
3930 }
3931 else
3932 {
e1a5ccf7 3933 tree a, t, current, parms;
ba4f4e5d 3934 int i;
91a77d68 3935 tree tinfo = get_template_info (decl);
6633d636 3936
91a77d68 3937 if (!tinfo)
c91a56d2 3938 {
0f51ccfc 3939 error ("template definition of non-template %q#D", decl);
3fe82414 3940 return error_mark_node;
c91a56d2 3941 }
91a77d68
JM
3942
3943 tmpl = TI_TEMPLATE (tinfo);
c8094d83 3944
c353b8e3 3945 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
c8094d83 3946 && DECL_TEMPLATE_INFO (decl) && DECL_TI_ARGS (decl)
c353b8e3 3947 && DECL_TEMPLATE_SPECIALIZATION (decl)
c7222c02 3948 && DECL_MEMBER_TEMPLATE_P (tmpl))
98c1c668 3949 {
e1a5ccf7
JM
3950 tree new_tmpl;
3951
3952 /* The declaration is a specialization of a member
3953 template, declared outside the class. Therefore, the
3954 innermost template arguments will be NULL, so we
3955 replace them with the arguments determined by the
3956 earlier call to check_explicit_specialization. */
3957 args = DECL_TI_ARGS (decl);
3958
c8094d83 3959 new_tmpl
c7222c02
MM
3960 = build_template_decl (decl, current_template_parms,
3961 member_template_p);
e1a5ccf7
JM
3962 DECL_TEMPLATE_RESULT (new_tmpl) = decl;
3963 TREE_TYPE (new_tmpl) = TREE_TYPE (decl);
3964 DECL_TI_TEMPLATE (decl) = new_tmpl;
3965 SET_DECL_TEMPLATE_SPECIALIZATION (new_tmpl);
c8094d83 3966 DECL_TEMPLATE_INFO (new_tmpl)
e1b3e07d 3967 = tree_cons (tmpl, args, NULL_TREE);
e1a5ccf7 3968
c8094d83
MS
3969 register_specialization (new_tmpl,
3970 most_general_template (tmpl),
d63d5d0c
ILT
3971 args,
3972 is_friend);
e1a5ccf7 3973 return decl;
98c1c668 3974 }
98c1c668 3975
e1a5ccf7 3976 /* Make sure the template headers we got make sense. */
6633d636 3977
e1a5ccf7
JM
3978 parms = DECL_TEMPLATE_PARMS (tmpl);
3979 i = TMPL_PARMS_DEPTH (parms);
3980 if (TMPL_ARGS_DEPTH (args) != i)
98c1c668 3981 {
0f51ccfc 3982 error ("expected %d levels of template parms for %q#D, got %d",
0cbd7506 3983 i, decl, TMPL_ARGS_DEPTH (args));
98c1c668 3984 }
e1a5ccf7
JM
3985 else
3986 for (current = decl; i > 0; --i, parms = TREE_CHAIN (parms))
3987 {
3988 a = TMPL_ARGS_LEVEL (args, i);
3989 t = INNERMOST_TEMPLATE_PARMS (parms);
3990
3991 if (TREE_VEC_LENGTH (t) != TREE_VEC_LENGTH (a))
3992 {
3993 if (current == decl)
0f51ccfc 3994 error ("got %d template parameters for %q#D",
0cbd7506 3995 TREE_VEC_LENGTH (a), decl);
e1a5ccf7 3996 else
0f51ccfc 3997 error ("got %d template parameters for %q#T",
0cbd7506 3998 TREE_VEC_LENGTH (a), current);
33bd39a2 3999 error (" but %d required", TREE_VEC_LENGTH (t));
f1cc0515 4000 return error_mark_node;
e1a5ccf7 4001 }
98c1c668 4002
e1a5ccf7
JM
4003 if (current == decl)
4004 current = ctx;
4005 else
ba75df2b
PC
4006 current = (TYPE_P (current)
4007 ? TYPE_CONTEXT (current)
4008 : DECL_CONTEXT (current));
e1a5ccf7 4009 }
91a77d68
JM
4010
4011 /* Check that the parms are used in the appropriate qualifying scopes
4012 in the declarator. */
4013 if (!comp_template_args
4014 (TI_ARGS (tinfo),
4015 TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl)))))
4016 {
4017 error ("\
4018template arguments to %qD do not match original template %qD",
4019 decl, DECL_TEMPLATE_RESULT (tmpl));
4020 if (!uses_template_parms (TI_ARGS (tinfo)))
4021 inform ("use template<> for an explicit specialization");
4022 /* Avoid crash in import_export_decl. */
4023 DECL_INTERFACE_KNOWN (decl) = 1;
4024 return error_mark_node;
4025 }
5566b478 4026 }
8d08fdba 4027
5566b478
MS
4028 DECL_TEMPLATE_RESULT (tmpl) = decl;
4029 TREE_TYPE (tmpl) = TREE_TYPE (decl);
8d08fdba 4030
36a117a5
MM
4031 /* Push template declarations for global functions and types. Note
4032 that we do not try to push a global template friend declared in a
4033 template class; such a thing may well depend on the template
39c01e4c 4034 parameters of the class. */
c8094d83 4035 if (new_template_p && !ctx
36a117a5 4036 && !(is_friend && template_class_depth (current_class_type) > 0))
c6f9f83b 4037 {
d63d5d0c 4038 tmpl = pushdecl_namespace_level (tmpl, is_friend);
c6f9f83b
KL
4039 if (tmpl == error_mark_node)
4040 return error_mark_node;
bd3d082e
KL
4041
4042 /* Hide template friend classes that haven't been declared yet. */
4043 if (is_friend && TREE_CODE (decl) == TYPE_DECL)
4044 {
4045 DECL_ANTICIPATED (tmpl) = 1;
4046 DECL_FRIEND_P (tmpl) = 1;
4047 }
c6f9f83b 4048 }
8d08fdba 4049
5566b478 4050 if (primary)
5dd236e2 4051 {
ef3b7b17
JM
4052 tree parms = DECL_TEMPLATE_PARMS (tmpl);
4053 int i;
4054
5dd236e2
NS
4055 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
4056 if (DECL_CONV_FN_P (tmpl))
4057 {
ef3b7b17 4058 int depth = TMPL_PARMS_DEPTH (parms);
6e04241f 4059
5dd236e2
NS
4060 /* It is a conversion operator. See if the type converted to
4061 depends on innermost template operands. */
c8094d83 4062
d43f603d
KL
4063 if (uses_template_parms_level (TREE_TYPE (TREE_TYPE (tmpl)),
4064 depth))
5dd236e2
NS
4065 DECL_TEMPLATE_CONV_FN_P (tmpl) = 1;
4066 }
ef3b7b17
JM
4067
4068 /* Give template template parms a DECL_CONTEXT of the template
4069 for which they are a parameter. */
4070 parms = INNERMOST_TEMPLATE_PARMS (parms);
4071 for (i = TREE_VEC_LENGTH (parms) - 1; i >= 0; --i)
4072 {
4073 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
4074 if (TREE_CODE (parm) == TEMPLATE_DECL)
4075 DECL_CONTEXT (parm) = tmpl;
4076 }
5dd236e2 4077 }
5566b478 4078
a692ad2e 4079 /* The DECL_TI_ARGS of DECL contains full set of arguments referring
28ba38e3
KL
4080 back to its most general template. If TMPL is a specialization,
4081 ARGS may only have the innermost set of arguments. Add the missing
4082 argument levels if necessary. */
4083 if (DECL_TEMPLATE_INFO (tmpl))
4084 args = add_outermost_template_args (DECL_TI_ARGS (tmpl), args);
4085
e1b3e07d 4086 info = tree_cons (tmpl, args, NULL_TREE);
5566b478 4087
9188c363 4088 if (DECL_IMPLICIT_TYPEDEF_P (decl))
a0ad3539 4089 SET_TYPE_TEMPLATE_INFO (TREE_TYPE (tmpl), info);
2aaf816d 4090 else if (DECL_LANG_SPECIFIC (decl))
5566b478 4091 DECL_TEMPLATE_INFO (decl) = info;
3ac3d9ea
MM
4092
4093 return DECL_TEMPLATE_RESULT (tmpl);
8d08fdba
MS
4094}
4095
6757edfe 4096tree
3a978d72 4097push_template_decl (tree decl)
6757edfe 4098{
d63d5d0c 4099 return push_template_decl_real (decl, false);
6757edfe
MM
4100}
4101
4102/* Called when a class template TYPE is redeclared with the indicated
4103 template PARMS, e.g.:
7fe6899f
MM
4104
4105 template <class T> struct S;
4106 template <class T> struct S {}; */
4107
60feef2c 4108bool
3a978d72 4109redeclare_class_template (tree type, tree parms)
7fe6899f 4110{
3d7de1fa 4111 tree tmpl;
6757edfe 4112 tree tmpl_parms;
7fe6899f
MM
4113 int i;
4114
3d7de1fa
MM
4115 if (!TYPE_TEMPLATE_INFO (type))
4116 {
0f51ccfc 4117 error ("%qT is not a template type", type);
60feef2c 4118 return false;
3d7de1fa
MM
4119 }
4120
4121 tmpl = TYPE_TI_TEMPLATE (type);
7fe6899f
MM
4122 if (!PRIMARY_TEMPLATE_P (tmpl))
4123 /* The type is nested in some template class. Nothing to worry
4124 about here; there are no new template parameters for the nested
4125 type. */
60feef2c 4126 return true;
7fe6899f 4127
ee921ddf
MM
4128 if (!parms)
4129 {
4130 error ("template specifiers not specified in declaration of %qD",
4131 tmpl);
60feef2c 4132 return false;
ee921ddf
MM
4133 }
4134
6757edfe
MM
4135 parms = INNERMOST_TEMPLATE_PARMS (parms);
4136 tmpl_parms = DECL_INNERMOST_TEMPLATE_PARMS (tmpl);
4137
7fe6899f
MM
4138 if (TREE_VEC_LENGTH (parms) != TREE_VEC_LENGTH (tmpl_parms))
4139 {
b131ad7c
MLI
4140 error ("redeclared with %d template parameter(s)",
4141 TREE_VEC_LENGTH (parms));
4142 inform ("previous declaration %q+D used %d template parameter(s)",
4143 tmpl, TREE_VEC_LENGTH (tmpl_parms));
60feef2c 4144 return false;
7fe6899f
MM
4145 }
4146
4147 for (i = 0; i < TREE_VEC_LENGTH (tmpl_parms); ++i)
4148 {
2d8ba2c7
LM
4149 tree tmpl_parm;
4150 tree parm;
4151 tree tmpl_default;
4152 tree parm_default;
4153
4154 if (TREE_VEC_ELT (tmpl_parms, i) == error_mark_node
4155 || TREE_VEC_ELT (parms, i) == error_mark_node)
4156 continue;
4157
4158 tmpl_parm = TREE_VALUE (TREE_VEC_ELT (tmpl_parms, i));
4159 parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
4160 tmpl_default = TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i));
4161 parm_default = TREE_PURPOSE (TREE_VEC_ELT (parms, i));
7fe6899f 4162
2649701f
KL
4163 /* TMPL_PARM and PARM can be either TYPE_DECL, PARM_DECL, or
4164 TEMPLATE_DECL. */
0f67a82f 4165 if (tmpl_parm != error_mark_node
a022041e
DG
4166 && (TREE_CODE (tmpl_parm) != TREE_CODE (parm)
4167 || (TREE_CODE (tmpl_parm) != TYPE_DECL
4168 && !same_type_p (TREE_TYPE (tmpl_parm), TREE_TYPE (parm)))
4169 || (TREE_CODE (tmpl_parm) != PARM_DECL
4170 && (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (tmpl_parm))
4171 != TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm))))
4172 || (TREE_CODE (tmpl_parm) == PARM_DECL
4173 && (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (tmpl_parm))
4174 != TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm))))))
7fe6899f 4175 {
dee15844 4176 error ("template parameter %q+#D", tmpl_parm);
0f51ccfc 4177 error ("redeclared here as %q#D", parm);
60feef2c 4178 return false;
7fe6899f
MM
4179 }
4180
4181 if (tmpl_default != NULL_TREE && parm_default != NULL_TREE)
4182 {
4183 /* We have in [temp.param]:
4184
4185 A template-parameter may not be given default arguments
4186 by two different declarations in the same scope. */
0f51ccfc 4187 error ("redefinition of default argument for %q#D", parm);
b131ad7c 4188 inform ("%Joriginal definition appeared here", tmpl_parm);
60feef2c 4189 return false;
7fe6899f
MM
4190 }
4191
4192 if (parm_default != NULL_TREE)
4193 /* Update the previous template parameters (which are the ones
4194 that will really count) with the new default value. */
4195 TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i)) = parm_default;
7ce74c5e
MM
4196 else if (tmpl_default != NULL_TREE)
4197 /* Update the new parameters, too; they'll be used as the
4198 parameters for any members. */
4199 TREE_PURPOSE (TREE_VEC_ELT (parms, i)) = tmpl_default;
7fe6899f 4200 }
60feef2c
LM
4201
4202 return true;
7fe6899f 4203}
75650646 4204
9baa27a9
MM
4205/* Simplify EXPR if it is a non-dependent expression. Returns the
4206 (possibly simplified) expression. */
4207
4208tree
4209fold_non_dependent_expr (tree expr)
4210{
d4a200d3
SM
4211 if (expr == NULL_TREE)
4212 return NULL_TREE;
4213
9baa27a9
MM
4214 /* If we're in a template, but EXPR isn't value dependent, simplify
4215 it. We're supposed to treat:
c8094d83 4216
9baa27a9
MM
4217 template <typename T> void f(T[1 + 1]);
4218 template <typename T> void f(T[2]);
c8094d83 4219
9baa27a9
MM
4220 as two declarations of the same function, for example. */
4221 if (processing_template_decl
4222 && !type_dependent_expression_p (expr)
7416ab02 4223 && !value_dependent_expression_p (expr))
9baa27a9
MM
4224 {
4225 HOST_WIDE_INT saved_processing_template_decl;
4226
4227 saved_processing_template_decl = processing_template_decl;
4228 processing_template_decl = 0;
4229 expr = tsubst_copy_and_build (expr,
4230 /*args=*/NULL_TREE,
4231 tf_error,
4232 /*in_decl=*/NULL_TREE,
015c2c66
MM
4233 /*function_p=*/false,
4234 /*integral_constant_expression_p=*/true);
9baa27a9
MM
4235 processing_template_decl = saved_processing_template_decl;
4236 }
4237 return expr;
4238}
4239
b6ab6892
GB
4240/* EXPR is an expression which is used in a constant-expression context.
4241 For instance, it could be a VAR_DECL with a constant initializer.
4242 Extract the innest constant expression.
c8094d83 4243
8a784e4a
NS
4244 This is basically a more powerful version of
4245 integral_constant_value, which can be used also in templates where
4246 initializers can maintain a syntactic rather than semantic form
4247 (even if they are non-dependent, for access-checking purposes). */
b6ab6892 4248
993acaec 4249static tree
b6ab6892
GB
4250fold_decl_constant_value (tree expr)
4251{
4ef69b83
GB
4252 tree const_expr = expr;
4253 do
b6ab6892 4254 {
b6ab6892 4255 expr = fold_non_dependent_expr (const_expr);
4ef69b83 4256 const_expr = integral_constant_value (expr);
b6ab6892 4257 }
4ef69b83 4258 while (expr != const_expr);
b6ab6892 4259
8a784e4a 4260 return expr;
b6ab6892
GB
4261}
4262
4263/* Subroutine of convert_nontype_argument. Converts EXPR to TYPE, which
4264 must be a function or a pointer-to-function type, as specified
4265 in [temp.arg.nontype]: disambiguate EXPR if it is an overload set,
4266 and check that the resulting function has external linkage. */
4267
4268static tree
4269convert_nontype_argument_function (tree type, tree expr)
4270{
4271 tree fns = expr;
4272 tree fn, fn_no_ptr;
4273
4274 fn = instantiate_type (type, fns, tf_none);
4275 if (fn == error_mark_node)
4276 return error_mark_node;
4277
4278 fn_no_ptr = fn;
4279 if (TREE_CODE (fn_no_ptr) == ADDR_EXPR)
4280 fn_no_ptr = TREE_OPERAND (fn_no_ptr, 0);
eff3a276
MM
4281 if (TREE_CODE (fn_no_ptr) == BASELINK)
4282 fn_no_ptr = BASELINK_FUNCTIONS (fn_no_ptr);
4283
b6ab6892
GB
4284 /* [temp.arg.nontype]/1
4285
4286 A template-argument for a non-type, non-template template-parameter
4287 shall be one of:
4288 [...]
4289 -- the address of an object or function with external linkage. */
4290 if (!DECL_EXTERNAL_LINKAGE_P (fn_no_ptr))
4291 {
4292 error ("%qE is not a valid template argument for type %qT "
4293 "because function %qD has not external linkage",
4294 expr, type, fn_no_ptr);
4295 return NULL_TREE;
4296 }
4297
4298 return fn;
4299}
4300
75650646
MM
4301/* Attempt to convert the non-type template parameter EXPR to the
4302 indicated TYPE. If the conversion is successful, return the
dc957d14 4303 converted value. If the conversion is unsuccessful, return
75650646
MM
4304 NULL_TREE if we issued an error message, or error_mark_node if we
4305 did not. We issue error messages for out-and-out bad template
4306 parameters, but not simply because the conversion failed, since we
9baa27a9 4307 might be just trying to do argument deduction. Both TYPE and EXPR
b6ab6892
GB
4308 must be non-dependent.
4309
4310 The conversion follows the special rules described in
4311 [temp.arg.nontype], and it is much more strict than an implicit
4312 conversion.
4313
4314 This function is called twice for each template argument (see
4315 lookup_template_class for a more accurate description of this
4316 problem). This means that we need to handle expressions which
4317 are not valid in a C++ source, but can be created from the
4318 first call (for instance, casts to perform conversions). These
4319 hacks can go away after we fix the double coercion problem. */
75650646
MM
4320
4321static tree
3a978d72 4322convert_nontype_argument (tree type, tree expr)
75650646 4323{
9baa27a9
MM
4324 tree expr_type;
4325
b6ab6892
GB
4326 /* Detect immediately string literals as invalid non-type argument.
4327 This special-case is not needed for correctness (we would easily
4328 catch this later), but only to provide better diagnostic for this
4329 common user mistake. As suggested by DR 100, we do not mention
4330 linkage issues in the diagnostic as this is not the point. */
4331 if (TREE_CODE (expr) == STRING_CST)
4332 {
4333 error ("%qE is not a valid template argument for type %qT "
4334 "because string literals can never be used in this context",
4335 expr, type);
4336 return NULL_TREE;
4337 }
4338
9baa27a9
MM
4339 /* If we are in a template, EXPR may be non-dependent, but still
4340 have a syntactic, rather than semantic, form. For example, EXPR
4341 might be a SCOPE_REF, rather than the VAR_DECL to which the
4342 SCOPE_REF refers. Preserving the qualifying scope is necessary
4343 so that access checking can be performed when the template is
4344 instantiated -- but here we need the resolved form so that we can
4345 convert the argument. */
4346 expr = fold_non_dependent_expr (expr);
b166a559
VR
4347 if (error_operand_p (expr))
4348 return error_mark_node;
9baa27a9 4349 expr_type = TREE_TYPE (expr);
75650646 4350
b6ab6892
GB
4351 /* HACK: Due to double coercion, we can get a
4352 NOP_EXPR<REFERENCE_TYPE>(ADDR_EXPR<POINTER_TYPE> (arg)) here,
4353 which is the tree that we built on the first call (see
4354 below when coercing to reference to object or to reference to
4355 function). We just strip everything and get to the arg.
4356 See g++.old-deja/g++.oliva/template4.C and g++.dg/template/nontype9.C
4357 for examples. */
4358 if (TREE_CODE (expr) == NOP_EXPR)
75650646 4359 {
b6ab6892 4360 if (TYPE_REF_OBJ_P (type) || TYPE_REFFN_P (type))
75650646 4361 {
b6ab6892
GB
4362 /* ??? Maybe we could use convert_from_reference here, but we
4363 would need to relax its constraints because the NOP_EXPR
4364 could actually change the type to something more cv-qualified,
4365 and this is not folded by convert_from_reference. */
4366 tree addr = TREE_OPERAND (expr, 0);
4367 gcc_assert (TREE_CODE (expr_type) == REFERENCE_TYPE);
4368 gcc_assert (TREE_CODE (addr) == ADDR_EXPR);
4369 gcc_assert (TREE_CODE (TREE_TYPE (addr)) == POINTER_TYPE);
4370 gcc_assert (same_type_ignoring_top_level_qualifiers_p
4371 (TREE_TYPE (expr_type),
4372 TREE_TYPE (TREE_TYPE (addr))));
4373
4374 expr = TREE_OPERAND (addr, 0);
4375 expr_type = TREE_TYPE (expr);
75650646
MM
4376 }
4377
b6ab6892
GB
4378 /* We could also generate a NOP_EXPR(ADDR_EXPR()) when the
4379 parameter is a pointer to object, through decay and
4380 qualification conversion. Let's strip everything. */
4381 else if (TYPE_PTROBV_P (type))
75650646 4382 {
b6ab6892
GB
4383 STRIP_NOPS (expr);
4384 gcc_assert (TREE_CODE (expr) == ADDR_EXPR);
4385 gcc_assert (TREE_CODE (TREE_TYPE (expr)) == POINTER_TYPE);
4386 /* Skip the ADDR_EXPR only if it is part of the decay for
4387 an array. Otherwise, it is part of the original argument
4388 in the source code. */
4389 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (expr, 0))) == ARRAY_TYPE)
4390 expr = TREE_OPERAND (expr, 0);
4391 expr_type = TREE_TYPE (expr);
f3400fe2 4392 }
75650646 4393 }
c61dce3a 4394
b6ab6892 4395 /* [temp.arg.nontype]/5, bullet 1
75650646 4396
b6ab6892
GB
4397 For a non-type template-parameter of integral or enumeration type,
4398 integral promotions (_conv.prom_) and integral conversions
4399 (_conv.integral_) are applied. */
4400 if (INTEGRAL_TYPE_P (type))
75650646 4401 {
75650646
MM
4402 if (!INTEGRAL_TYPE_P (expr_type))
4403 return error_mark_node;
fddabb2c 4404
b6ab6892
GB
4405 expr = fold_decl_constant_value (expr);
4406 /* Notice that there are constant expressions like '4 % 0' which
4407 do not fold into integer constants. */
db02b6b9 4408 if (TREE_CODE (expr) != INTEGER_CST)
b6ab6892
GB
4409 {
4410 error ("%qE is not a valid template argument for type %qT "
4411 "because it is a non-constant expression", expr, type);
4412 return NULL_TREE;
4413 }
75650646 4414
b6ab6892
GB
4415 /* At this point, an implicit conversion does what we want,
4416 because we already know that the expression is of integral
4417 type. */
4418 expr = ocp_convert (type, expr, CONV_IMPLICIT, LOOKUP_PROTECT);
4419 if (expr == error_mark_node)
4420 return error_mark_node;
75650646 4421
b6ab6892
GB
4422 /* Conversion was allowed: fold it to a bare integer constant. */
4423 expr = fold (expr);
4424 }
4425 /* [temp.arg.nontype]/5, bullet 2
75650646 4426
b6ab6892
GB
4427 For a non-type template-parameter of type pointer to object,
4428 qualification conversions (_conv.qual_) and the array-to-pointer
4429 conversion (_conv.array_) are applied. */
4430 else if (TYPE_PTROBV_P (type))
4431 {
4432 /* [temp.arg.nontype]/1 (TC1 version, DR 49):
75650646 4433
b6ab6892
GB
4434 A template-argument for a non-type, non-template template-parameter
4435 shall be one of: [...]
75650646 4436
b6ab6892
GB
4437 -- the name of a non-type template-parameter;
4438 -- the address of an object or function with external linkage, [...]
4439 expressed as "& id-expression" where the & is optional if the name
4440 refers to a function or array, or if the corresponding
4441 template-parameter is a reference.
c8094d83 4442
b6ab6892
GB
4443 Here, we do not care about functions, as they are invalid anyway
4444 for a parameter of type pointer-to-object. */
1082fd10
MM
4445
4446 if (DECL_P (expr) && DECL_TEMPLATE_PARM_P (expr))
4447 /* Non-type template parameters are OK. */
4448 ;
4449 else if (TREE_CODE (expr) != ADDR_EXPR
4450 && TREE_CODE (expr_type) != ARRAY_TYPE)
4451 {
4452 if (TREE_CODE (expr) == VAR_DECL)
4453 {
4454 error ("%qD is not a valid template argument "
4455 "because %qD is a variable, not the address of "
4456 "a variable",
4457 expr, expr);
4458 return NULL_TREE;
4459 }
4460 /* Other values, like integer constants, might be valid
4461 non-type arguments of some other type. */
4462 return error_mark_node;
4463 }
4464 else
4465 {
4466 tree decl;
4467
4468 decl = ((TREE_CODE (expr) == ADDR_EXPR)
4469 ? TREE_OPERAND (expr, 0) : expr);
4470 if (TREE_CODE (decl) != VAR_DECL)
4471 {
4472 error ("%qE is not a valid template argument of type %qT "
4473 "because %qE is not a variable",
4474 expr, type, decl);
4475 return NULL_TREE;
4476 }
4477 else if (!DECL_EXTERNAL_LINKAGE_P (decl))
4478 {
4479 error ("%qE is not a valid template argument of type %qT "
4480 "because %qD does not have external linkage",
4481 expr, type, decl);
4482 return NULL_TREE;
4483 }
4484 }
b6ab6892
GB
4485
4486 expr = decay_conversion (expr);
4487 if (expr == error_mark_node)
4488 return error_mark_node;
75650646 4489
b6ab6892
GB
4490 expr = perform_qualification_conversions (type, expr);
4491 if (expr == error_mark_node)
4492 return error_mark_node;
b6ab6892
GB
4493 }
4494 /* [temp.arg.nontype]/5, bullet 3
4495
4496 For a non-type template-parameter of type reference to object, no
4497 conversions apply. The type referred to by the reference may be more
4498 cv-qualified than the (otherwise identical) type of the
4499 template-argument. The template-parameter is bound directly to the
4500 template-argument, which must be an lvalue. */
4501 else if (TYPE_REF_OBJ_P (type))
4502 {
4503 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (type),
4504 expr_type))
4505 return error_mark_node;
75650646 4506
b6ab6892
GB
4507 if (!at_least_as_qualified_p (TREE_TYPE (type), expr_type))
4508 {
4509 error ("%qE is not a valid template argument for type %qT "
4510 "because of conflicts in cv-qualification", expr, type);
4511 return NULL_TREE;
4512 }
c8094d83 4513
b6ab6892
GB
4514 if (!real_lvalue_p (expr))
4515 {
4516 error ("%qE is not a valid template argument for type %qT "
944fd207 4517 "because it is not an lvalue", expr, type);
b6ab6892
GB
4518 return NULL_TREE;
4519 }
e6e174e5 4520
b6ab6892 4521 /* [temp.arg.nontype]/1
75650646 4522
b6ab6892
GB
4523 A template-argument for a non-type, non-template template-parameter
4524 shall be one of: [...]
75650646 4525
03fd3f84 4526 -- the address of an object or function with external linkage. */
b6ab6892
GB
4527 if (!DECL_EXTERNAL_LINKAGE_P (expr))
4528 {
4529 error ("%qE is not a valid template argument for type %qT "
4530 "because object %qD has not external linkage",
4531 expr, type, expr);
4532 return NULL_TREE;
4533 }
0dc09a61 4534
b6ab6892
GB
4535 expr = build_nop (type, build_address (expr));
4536 }
4537 /* [temp.arg.nontype]/5, bullet 4
4538
4539 For a non-type template-parameter of type pointer to function, only
4540 the function-to-pointer conversion (_conv.func_) is applied. If the
4541 template-argument represents a set of overloaded functions (or a
4542 pointer to such), the matching function is selected from the set
4543 (_over.over_). */
4544 else if (TYPE_PTRFN_P (type))
4545 {
4546 /* If the argument is a template-id, we might not have enough
2c164de6 4547 context information to decay the pointer. */
b6ab6892
GB
4548 if (!type_unknown_p (expr_type))
4549 {
4550 expr = decay_conversion (expr);
4551 if (expr == error_mark_node)
4552 return error_mark_node;
4553 }
75650646 4554
b6ab6892
GB
4555 expr = convert_nontype_argument_function (type, expr);
4556 if (!expr || expr == error_mark_node)
4557 return expr;
4558 }
4559 /* [temp.arg.nontype]/5, bullet 5
75650646 4560
b6ab6892
GB
4561 For a non-type template-parameter of type reference to function, no
4562 conversions apply. If the template-argument represents a set of
4563 overloaded functions, the matching function is selected from the set
4564 (_over.over_). */
4565 else if (TYPE_REFFN_P (type))
4566 {
4567 if (TREE_CODE (expr) == ADDR_EXPR)
4568 {
4569 error ("%qE is not a valid template argument for type %qT "
4570 "because it is a pointer", expr, type);
4571 inform ("try using %qE instead", TREE_OPERAND (expr, 0));
4572 return NULL_TREE;
4573 }
75650646 4574
b6ab6892
GB
4575 expr = convert_nontype_argument_function (TREE_TYPE (type), expr);
4576 if (!expr || expr == error_mark_node)
4577 return expr;
75650646 4578
7866705a 4579 expr = build_nop (type, build_address (expr));
b6ab6892
GB
4580 }
4581 /* [temp.arg.nontype]/5, bullet 6
75650646 4582
b6ab6892
GB
4583 For a non-type template-parameter of type pointer to member function,
4584 no conversions apply. If the template-argument represents a set of
4585 overloaded member functions, the matching member function is selected
4586 from the set (_over.over_). */
4587 else if (TYPE_PTRMEMFUNC_P (type))
4588 {
4589 expr = instantiate_type (type, expr, tf_none);
4590 if (expr == error_mark_node)
4591 return error_mark_node;
75650646 4592
b6ab6892
GB
4593 /* There is no way to disable standard conversions in
4594 resolve_address_of_overloaded_function (called by
4595 instantiate_type). It is possible that the call succeeded by
4596 converting &B::I to &D::I (where B is a base of D), so we need
4597 to reject this conversion here.
75650646 4598
b6ab6892
GB
4599 Actually, even if there was a way to disable standard conversions,
4600 it would still be better to reject them here so that we can
4601 provide a superior diagnostic. */
4602 if (!same_type_p (TREE_TYPE (expr), type))
4603 {
4604 /* Make sure we are just one standard conversion off. */
4605 gcc_assert (can_convert (type, TREE_TYPE (expr)));
4606 error ("%qE is not a valid template argument for type %qT "
4607 "because it is of type %qT", expr, type,
4608 TREE_TYPE (expr));
4609 inform ("standard conversions are not allowed in this context");
4610 return NULL_TREE;
4611 }
4612 }
4613 /* [temp.arg.nontype]/5, bullet 7
59e7a901 4614
b6ab6892
GB
4615 For a non-type template-parameter of type pointer to data member,
4616 qualification conversions (_conv.qual_) are applied. */
4617 else if (TYPE_PTRMEM_P (type))
4618 {
4619 expr = perform_qualification_conversions (type, expr);
4620 if (expr == error_mark_node)
75650646 4621 return expr;
75650646 4622 }
b6ab6892
GB
4623 /* A template non-type parameter must be one of the above. */
4624 else
4625 gcc_unreachable ();
75650646 4626
b6ab6892
GB
4627 /* Sanity check: did we actually convert the argument to the
4628 right type? */
4629 gcc_assert (same_type_p (type, TREE_TYPE (expr)));
4630 return expr;
75650646
MM
4631}
4632
a0a5f30f
DG
4633/* Subroutine of coerce_template_template_parms, which returns 1 if
4634 PARM_PARM and ARG_PARM match using the rule for the template
4635 parameters of template template parameters. Both PARM and ARG are
4636 template parameters; the rest of the arguments are the same as for
4637 coerce_template_template_parms.
4638 */
4639static int
4640coerce_template_template_parm (tree parm,
4641 tree arg,
4642 tsubst_flags_t complain,
4643 tree in_decl,
4644 tree outer_args)
4645{
4646 if (arg == NULL_TREE || arg == error_mark_node
4647 || parm == NULL_TREE || parm == error_mark_node)
4648 return 0;
4649
4650 if (TREE_CODE (arg) != TREE_CODE (parm))
4651 return 0;
4652
4653 switch (TREE_CODE (parm))
4654 {
4655 case TEMPLATE_DECL:
4656 /* We encounter instantiations of templates like
4657 template <template <template <class> class> class TT>
4658 class C; */
4659 {
4660 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
4661 tree argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
4662
4663 if (!coerce_template_template_parms
4664 (parmparm, argparm, complain, in_decl, outer_args))
4665 return 0;
4666 }
4667 /* Fall through. */
4668
4669 case TYPE_DECL:
4670 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (arg))
4671 && !TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
4672 /* Argument is a parameter pack but parameter is not. */
4673 return 0;
4674 break;
4675
4676 case PARM_DECL:
4677 /* The tsubst call is used to handle cases such as
4678
4679 template <int> class C {};
4680 template <class T, template <T> class TT> class D {};
4681 D<int, C> d;
4682
4683 i.e. the parameter list of TT depends on earlier parameters. */
4684 if (!dependent_type_p (TREE_TYPE (arg))
4685 && !same_type_p
4686 (tsubst (TREE_TYPE (parm), outer_args, complain, in_decl),
4687 TREE_TYPE (arg)))
4688 return 0;
4689
4690 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (arg))
4691 && !TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
4692 /* Argument is a parameter pack but parameter is not. */
4693 return 0;
4694
4695 break;
4696
4697 default:
4698 gcc_unreachable ();
4699 }
4700
4701 return 1;
4702}
4703
b6ab6892 4704
c8094d83
MS
4705/* Return 1 if PARM_PARMS and ARG_PARMS matches using rule for
4706 template template parameters. Both PARM_PARMS and ARG_PARMS are
4707 vectors of TREE_LIST nodes containing TYPE_DECL, TEMPLATE_DECL
744fac59 4708 or PARM_DECL.
c8094d83 4709
744fac59 4710 Consider the example:
e7e93965
MM
4711 template <class T> class A;
4712 template<template <class U> class TT> class B;
744fac59 4713
e7e93965
MM
4714 For B<A>, PARM_PARMS are the parameters to TT, while ARG_PARMS are
4715 the parameters to A, and OUTER_ARGS contains A. */
744fac59
KL
4716
4717static int
c8094d83 4718coerce_template_template_parms (tree parm_parms,
0cbd7506
MS
4719 tree arg_parms,
4720 tsubst_flags_t complain,
3a978d72 4721 tree in_decl,
0cbd7506 4722 tree outer_args)
744fac59
KL
4723{
4724 int nparms, nargs, i;
4725 tree parm, arg;
a0a5f30f 4726 int variadic_p = 0;
744fac59 4727
50bc768d
NS
4728 gcc_assert (TREE_CODE (parm_parms) == TREE_VEC);
4729 gcc_assert (TREE_CODE (arg_parms) == TREE_VEC);
744fac59
KL
4730
4731 nparms = TREE_VEC_LENGTH (parm_parms);
4732 nargs = TREE_VEC_LENGTH (arg_parms);
4733
a0a5f30f
DG
4734 /* Determine whether we have a parameter pack at the end of the
4735 template template parameter's template parameter list. */
4736 if (TREE_VEC_ELT (parm_parms, nparms - 1) != error_mark_node)
4737 {
4738 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, nparms - 1));
4739
4740 switch (TREE_CODE (parm))
4741 {
4742 case TEMPLATE_DECL:
4743 case TYPE_DECL:
4744 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
4745 variadic_p = 1;
4746 break;
4747
4748 case PARM_DECL:
4749 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
4750 variadic_p = 1;
4751 break;
4752
4753 default:
4754 gcc_unreachable ();
4755 }
4756 }
4757
4758 if (nargs != nparms
4759 && !(variadic_p && nargs >= nparms - 1))
744fac59
KL
4760 return 0;
4761
a0a5f30f
DG
4762 /* Check all of the template parameters except the parameter pack at
4763 the end (if any). */
4764 for (i = 0; i < nparms - variadic_p; ++i)
744fac59 4765 {
2d8ba2c7
LM
4766 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node
4767 || TREE_VEC_ELT (arg_parms, i) == error_mark_node)
42b304f1
LM
4768 continue;
4769
744fac59
KL
4770 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
4771 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
4772
a0a5f30f
DG
4773 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
4774 outer_args))
744fac59
KL
4775 return 0;
4776
a0a5f30f 4777 }
00bdb87f 4778
a0a5f30f
DG
4779 if (variadic_p)
4780 {
4781 /* Check each of the template parameters in the template
4782 argument against the template parameter pack at the end of
4783 the template template parameter. */
4784 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node)
4785 return 0;
5d80a306 4786
a0a5f30f 4787 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
c8094d83 4788
a0a5f30f
DG
4789 for (; i < nargs; ++i)
4790 {
4791 if (TREE_VEC_ELT (arg_parms, i) == error_mark_node)
4792 continue;
4793
4794 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
4795
4796 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
4797 outer_args))
4798 return 0;
4799 }
744fac59 4800 }
a0a5f30f 4801
744fac59
KL
4802 return 1;
4803}
4804
4cf36211
DG
4805/* Verifies that the deduced template arguments (in TARGS) for the
4806 template template parameters (in TPARMS) represent valid bindings,
4807 by comparing the template parameter list of each template argument
4808 to the template parameter list of its corresponding template
4809 template parameter, in accordance with DR150. This
4810 routine can only be called after all template arguments have been
4811 deduced. It will return TRUE if all of the template template
4812 parameter bindings are okay, FALSE otherwise. */
4813bool
4814template_template_parm_bindings_ok_p (tree tparms, tree targs)
4815{
4816 int i, ntparms = TREE_VEC_LENGTH (tparms);
4817
4818 targs = INNERMOST_TEMPLATE_ARGS (targs);
4819
4820 for (i = 0; i < ntparms; ++i)
4821 {
4822 tree tparm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
4823 tree targ = TREE_VEC_ELT (targs, i);
4824
4825 if (TREE_CODE (tparm) == TEMPLATE_DECL && targ)
4826 {
4827 tree packed_args = NULL_TREE;
4828 int idx, len = 1;
4829
4830 if (ARGUMENT_PACK_P (targ))
4831 {
4832 /* Look inside the argument pack. */
4833 packed_args = ARGUMENT_PACK_ARGS (targ);
4834 len = TREE_VEC_LENGTH (packed_args);
4835 }
4836
4837 for (idx = 0; idx < len; ++idx)
4838 {
4839 tree targ_parms = NULL_TREE;
4840
4841 if (packed_args)
4842 /* Extract the next argument from the argument
4843 pack. */
4844 targ = TREE_VEC_ELT (packed_args, idx);
4845
4846 if (PACK_EXPANSION_P (targ))
4847 /* Look at the pattern of the pack expansion. */
4848 targ = PACK_EXPANSION_PATTERN (targ);
4849
4850 /* Extract the template parameters from the template
4851 argument. */
4852 if (TREE_CODE (targ) == TEMPLATE_DECL)
4853 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (targ);
4854 else if (TREE_CODE (targ) == TEMPLATE_TEMPLATE_PARM)
4855 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (TYPE_NAME (targ));
4856
4857 /* Verify that we can coerce the template template
4858 parameters from the template argument to the template
4859 parameter. This requires an exact match. */
4860 if (targ_parms
4861 && !coerce_template_template_parms
4862 (DECL_INNERMOST_TEMPLATE_PARMS (tparm),
4863 targ_parms,
4864 tf_none,
4865 tparm,
4866 targs))
4867 return false;
4868 }
4869 }
4870 }
4871
4872 /* Everything is okay. */
4873 return true;
4874}
4875
8b5b8b7c
MM
4876/* Convert the indicated template ARG as necessary to match the
4877 indicated template PARM. Returns the converted ARG, or
c2ea3a40
NS
4878 error_mark_node if the conversion was unsuccessful. Error and
4879 warning messages are issued under control of COMPLAIN. This
4880 conversion is for the Ith parameter in the parameter list. ARGS is
4881 the full set of template arguments deduced so far. */
8b5b8b7c
MM
4882
4883static tree
c8094d83 4884convert_template_argument (tree parm,
0cbd7506
MS
4885 tree arg,
4886 tree args,
4887 tsubst_flags_t complain,
4888 int i,
4889 tree in_decl)
8b5b8b7c 4890{
88b82314 4891 tree orig_arg;
8b5b8b7c 4892 tree val;
8b5b8b7c 4893 int is_type, requires_type, is_tmpl_type, requires_tmpl_type;
c8094d83 4894
c8094d83 4895 if (TREE_CODE (arg) == TREE_LIST
a5ac359a 4896 && TREE_CODE (TREE_VALUE (arg)) == OFFSET_REF)
c8094d83 4897 {
8b5b8b7c
MM
4898 /* The template argument was the name of some
4899 member function. That's usually
0e339752 4900 invalid, but static members are OK. In any
8b5b8b7c
MM
4901 case, grab the underlying fields/functions
4902 and issue an error later if required. */
88b82314 4903 orig_arg = TREE_VALUE (arg);
8b5b8b7c
MM
4904 TREE_TYPE (arg) = unknown_type_node;
4905 }
4906
88b82314
DG
4907 orig_arg = arg;
4908
8b5b8b7c
MM
4909 requires_tmpl_type = TREE_CODE (parm) == TEMPLATE_DECL;
4910 requires_type = (TREE_CODE (parm) == TYPE_DECL
4911 || requires_tmpl_type);
4912
d732e98f 4913 /* When determining whether an argument pack expansion is a template,
5d80a306 4914 look at the pattern. */
88b82314
DG
4915 if (TREE_CODE (arg) == TYPE_PACK_EXPANSION)
4916 arg = PACK_EXPANSION_PATTERN (arg);
5d80a306
DG
4917
4918 is_tmpl_type =
88b82314
DG
4919 ((TREE_CODE (arg) == TEMPLATE_DECL
4920 && TREE_CODE (DECL_TEMPLATE_RESULT (arg)) == TYPE_DECL)
4921 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
4922 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
c8094d83 4923
b8c6534b
KL
4924 if (is_tmpl_type
4925 && (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
4926 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE))
8b5b8b7c 4927 arg = TYPE_STUB_DECL (arg);
8b5b8b7c 4928
2f939d94 4929 is_type = TYPE_P (arg) || is_tmpl_type;
8b5b8b7c
MM
4930
4931 if (requires_type && ! is_type && TREE_CODE (arg) == SCOPE_REF
4932 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_TYPE_PARM)
4933 {
0f51ccfc 4934 pedwarn ("to refer to a type member of a template parameter, "
88b82314 4935 "use %<typename %E%>", orig_arg);
c8094d83 4936
88b82314
DG
4937 orig_arg = make_typename_type (TREE_OPERAND (arg, 0),
4938 TREE_OPERAND (arg, 1),
4939 typename_type,
4940 complain & tf_error);
4941 arg = orig_arg;
8b5b8b7c
MM
4942 is_type = 1;
4943 }
4944 if (is_type != requires_type)
4945 {
4946 if (in_decl)
4947 {
c2ea3a40 4948 if (complain & tf_error)
8b5b8b7c 4949 {
0f51ccfc 4950 error ("type/value mismatch at argument %d in template "
0cbd7506
MS
4951 "parameter list for %qD",
4952 i + 1, in_decl);
8b5b8b7c 4953 if (is_type)
0f51ccfc 4954 error (" expected a constant of type %qT, got %qT",
0cbd7506 4955 TREE_TYPE (parm),
1ad8aeeb 4956 (DECL_P (arg) ? DECL_NAME (arg) : orig_arg));
d12a7283 4957 else if (requires_tmpl_type)
88b82314 4958 error (" expected a class template, got %qE", orig_arg);
8b5b8b7c 4959 else
88b82314 4960 error (" expected a type, got %qE", orig_arg);
8b5b8b7c
MM
4961 }
4962 }
4963 return error_mark_node;
4964 }
4965 if (is_tmpl_type ^ requires_tmpl_type)
4966 {
c2ea3a40 4967 if (in_decl && (complain & tf_error))
8b5b8b7c 4968 {
0f51ccfc 4969 error ("type/value mismatch at argument %d in template "
0cbd7506
MS
4970 "parameter list for %qD",
4971 i + 1, in_decl);
8b5b8b7c 4972 if (is_tmpl_type)
0f51ccfc 4973 error (" expected a type, got %qT", DECL_NAME (arg));
8b5b8b7c 4974 else
88b82314 4975 error (" expected a class template, got %qT", orig_arg);
8b5b8b7c
MM
4976 }
4977 return error_mark_node;
4978 }
c8094d83 4979
8b5b8b7c
MM
4980 if (is_type)
4981 {
4982 if (requires_tmpl_type)
4983 {
b8c6534b
KL
4984 if (TREE_CODE (TREE_TYPE (arg)) == UNBOUND_CLASS_TEMPLATE)
4985 /* The number of argument required is not known yet.
4986 Just accept it for now. */
4987 val = TREE_TYPE (arg);
8b5b8b7c
MM
4988 else
4989 {
b8c6534b 4990 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
5d80a306
DG
4991 tree argparm;
4992
88b82314 4993 argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
b8c6534b
KL
4994
4995 if (coerce_template_template_parms (parmparm, argparm,
4996 complain, in_decl,
6150b602 4997 args))
8b5b8b7c 4998 {
88b82314 4999 val = orig_arg;
c8094d83
MS
5000
5001 /* TEMPLATE_TEMPLATE_PARM node is preferred over
b8c6534b 5002 TEMPLATE_DECL. */
5d80a306
DG
5003 if (val != error_mark_node)
5004 {
5005 if (DECL_TEMPLATE_TEMPLATE_PARM_P (val))
5006 val = TREE_TYPE (val);
5007 else if (TREE_CODE (val) == TYPE_PACK_EXPANSION
88b82314 5008 && DECL_TEMPLATE_TEMPLATE_PARM_P (arg))
5d80a306 5009 {
88b82314 5010 val = TREE_TYPE (arg);
5d80a306
DG
5011 val = make_pack_expansion (val);
5012 }
5013 }
8b5b8b7c 5014 }
b8c6534b
KL
5015 else
5016 {
c2ea3a40 5017 if (in_decl && (complain & tf_error))
b8c6534b 5018 {
0f51ccfc 5019 error ("type/value mismatch at argument %d in "
0cbd7506
MS
5020 "template parameter list for %qD",
5021 i + 1, in_decl);
0f51ccfc 5022 error (" expected a template of type %qD, got %qD",
88b82314 5023 parm, orig_arg);
b8c6534b 5024 }
c8094d83 5025
b8c6534b
KL
5026 val = error_mark_node;
5027 }
8b5b8b7c
MM
5028 }
5029 }
5030 else
88b82314 5031 val = orig_arg;
685e39c2
MM
5032 /* We only form one instance of each template specialization.
5033 Therefore, if we use a non-canonical variant (i.e., a
3db45ab5 5034 typedef), any future messages referring to the type will use
685e39c2
MM
5035 the typedef, which is confusing if those future uses do not
5036 themselves also use the typedef. */
5037 if (TYPE_P (val))
5038 val = canonical_type_variant (val);
8b5b8b7c
MM
5039 }
5040 else
5041 {
4393e105 5042 tree t = tsubst (TREE_TYPE (parm), args, complain, in_decl);
8b5b8b7c 5043
11b810f1 5044 if (invalid_nontype_parm_type_p (t, complain))
0cbd7506 5045 return error_mark_node;
c8094d83 5046
88b82314 5047 if (!uses_template_parms (orig_arg) && !uses_template_parms (t))
8b5b8b7c
MM
5048 /* We used to call digest_init here. However, digest_init
5049 will report errors, which we don't want when complain
5050 is zero. More importantly, digest_init will try too
5051 hard to convert things: for example, `0' should not be
5052 converted to pointer type at this point according to
5053 the standard. Accepting this is not merely an
5054 extension, since deciding whether or not these
5055 conversions can occur is part of determining which
dc957d14 5056 function template to call, or whether a given explicit
0e339752 5057 argument specification is valid. */
88b82314 5058 val = convert_nontype_argument (t, orig_arg);
8b5b8b7c 5059 else
88b82314 5060 val = orig_arg;
8b5b8b7c
MM
5061
5062 if (val == NULL_TREE)
5063 val = error_mark_node;
c2ea3a40 5064 else if (val == error_mark_node && (complain & tf_error))
88b82314 5065 error ("could not convert template argument %qE to %qT", orig_arg, t);
8b5b8b7c
MM
5066 }
5067
5068 return val;
5069}
5070
b1d7b1c0
DG
5071/* Coerces the remaining template arguments in INNER_ARGS (from
5072 ARG_IDX to the end) into the parameter pack at PARM_IDX in PARMS.
5073 Returns the coerced argument pack. PARM_IDX is the position of this
5074 parameter in the template parameter list. ARGS is the original
5075 template argument list. */
5076static tree
5077coerce_template_parameter_pack (tree parms,
5078 int parm_idx,
5079 tree args,
5080 tree inner_args,
5081 int arg_idx,
5082 tree new_args,
5083 int* lost,
5084 tree in_decl,
5085 tsubst_flags_t complain)
5086{
5087 tree parm = TREE_VEC_ELT (parms, parm_idx);
5088 int nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
5089 tree packed_args;
5090 tree argument_pack;
5091 tree packed_types = NULL_TREE;
5092
5093 if (arg_idx > nargs)
5094 arg_idx = nargs;
5095
5096 packed_args = make_tree_vec (nargs - arg_idx);
5097
5098 if (TREE_CODE (TREE_VALUE (parm)) == PARM_DECL
5099 && uses_parameter_packs (TREE_TYPE (TREE_VALUE (parm))))
5100 {
5101 /* When the template parameter is a non-type template
5102 parameter pack whose type uses parameter packs, we need
5103 to look at each of the template arguments
5104 separately. Build a vector of the types for these
5105 non-type template parameters in PACKED_TYPES. */
5106 tree expansion
5107 = make_pack_expansion (TREE_TYPE (TREE_VALUE (parm)));
5108 packed_types = tsubst_pack_expansion (expansion, args,
5109 complain, in_decl);
5110
5111 if (packed_types == error_mark_node)
5112 return error_mark_node;
5113
5114 /* Check that we have the right number of arguments. */
5115 if (arg_idx < nargs
5116 && !PACK_EXPANSION_P (TREE_VEC_ELT (inner_args, arg_idx))
5117 && nargs - arg_idx != TREE_VEC_LENGTH (packed_types))
5118 {
5119 int needed_parms
5120 = TREE_VEC_LENGTH (parms) - 1 + TREE_VEC_LENGTH (packed_types);
5121 error ("wrong number of template arguments (%d, should be %d)",
5122 nargs, needed_parms);
5123 return error_mark_node;
5124 }
5125
5126 /* If we aren't able to check the actual arguments now
5127 (because they haven't been expanded yet), we can at least
5128 verify that all of the types used for the non-type
5129 template parameter pack are, in fact, valid for non-type
5130 template parameters. */
5131 if (arg_idx < nargs
5132 && PACK_EXPANSION_P (TREE_VEC_ELT (inner_args, arg_idx)))
5133 {
5134 int j, len = TREE_VEC_LENGTH (packed_types);
5135 for (j = 0; j < len; ++j)
5136 {
5137 tree t = TREE_VEC_ELT (packed_types, j);
5138 if (invalid_nontype_parm_type_p (t, complain))
5139 return error_mark_node;
5140 }
5141 }
5142 }
5143
5144 /* Convert the remaining arguments, which will be a part of the
5145 parameter pack "parm". */
5146 for (; arg_idx < nargs; ++arg_idx)
5147 {
5148 tree arg = TREE_VEC_ELT (inner_args, arg_idx);
5149 tree actual_parm = TREE_VALUE (parm);
5150
5151 if (packed_types && !PACK_EXPANSION_P (arg))
5152 {
5153 /* When we have a vector of types (corresponding to the
5154 non-type template parameter pack that uses parameter
5155 packs in its type, as mention above), and the
5156 argument is not an expansion (which expands to a
5157 currently unknown number of arguments), clone the
5158 parm and give it the next type in PACKED_TYPES. */
5159 actual_parm = copy_node (actual_parm);
5160 TREE_TYPE (actual_parm) =
5161 TREE_VEC_ELT (packed_types, arg_idx - parm_idx);
5162 }
5163
c343d5a7
PC
5164 if (arg != error_mark_node)
5165 arg = convert_template_argument (actual_parm,
5166 arg, new_args, complain, parm_idx,
5167 in_decl);
b1d7b1c0
DG
5168 if (arg == error_mark_node)
5169 (*lost)++;
5170 TREE_VEC_ELT (packed_args, arg_idx - parm_idx) = arg;
5171 }
5172
5173 if (TREE_CODE (TREE_VALUE (parm)) == TYPE_DECL
5174 || TREE_CODE (TREE_VALUE (parm)) == TEMPLATE_DECL)
5175 argument_pack = make_node (TYPE_ARGUMENT_PACK);
5176 else
5177 {
5178 argument_pack = make_node (NONTYPE_ARGUMENT_PACK);
88b82314 5179 TREE_TYPE (argument_pack)
cdcae745 5180 = tsubst (TREE_TYPE (TREE_VALUE (parm)), new_args, complain, in_decl);
b1d7b1c0
DG
5181 TREE_CONSTANT (argument_pack) = 1;
5182 }
5183
5184 SET_ARGUMENT_PACK_ARGS (argument_pack, packed_args);
5185 return argument_pack;
5186}
5187
8b5b8b7c
MM
5188/* Convert all template arguments to their appropriate types, and
5189 return a vector containing the innermost resulting template
c2ea3a40 5190 arguments. If any error occurs, return error_mark_node. Error and
3e4a3562 5191 warning messages are issued under control of COMPLAIN.
75650646 5192
e7e93965 5193 If REQUIRE_ALL_ARGS is false, argument deduction will be performed
84dc00e8 5194 for arguments not specified in ARGS. Otherwise, if
e7e93965
MM
5195 USE_DEFAULT_ARGS is true, default arguments will be used to fill in
5196 unspecified arguments. If REQUIRE_ALL_ARGS is true, but
5197 USE_DEFAULT_ARGS is false, then all arguments must be specified in
5198 ARGS. */
c8094d83 5199
8d08fdba 5200static tree
c8094d83 5201coerce_template_parms (tree parms,
0cbd7506
MS
5202 tree args,
5203 tree in_decl,
3a978d72 5204 tsubst_flags_t complain,
e7e93965
MM
5205 bool require_all_args,
5206 bool use_default_args)
8d08fdba 5207{
b1d7b1c0 5208 int nparms, nargs, parm_idx, arg_idx, lost = 0;
e4a84209 5209 tree inner_args;
8b5b8b7c
MM
5210 tree new_args;
5211 tree new_inner_args;
a2c5ed87 5212 bool saved_skip_evaluation;
a292b002 5213
5d80a306
DG
5214 /* When used as a boolean value, indicates whether this is a
5215 variadic template parameter list. Since it's an int, we can also
5216 subtract it from nparms to get the number of non-variadic
5217 parameters. */
b1d7b1c0 5218 int variadic_p = 0;
5d80a306
DG
5219
5220 inner_args
5221 = expand_template_argument_pack (INNERMOST_TEMPLATE_ARGS (args));
5222
bf12d54d 5223 nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
a292b002
MS
5224 nparms = TREE_VEC_LENGTH (parms);
5225
b1d7b1c0
DG
5226 /* Determine if there are any parameter packs. */
5227 for (parm_idx = 0; parm_idx < nparms; ++parm_idx)
5228 {
5229 tree tparm = TREE_VALUE (TREE_VEC_ELT (parms, parm_idx));
5230 if (template_parameter_pack_p (tparm))
5231 {
5232 variadic_p = 1;
5233 break;
5234 }
5235 }
5236
5d80a306
DG
5237 if ((nargs > nparms - variadic_p && !variadic_p)
5238 || (nargs < nparms - variadic_p
e7e93965
MM
5239 && require_all_args
5240 && (!use_default_args
42b304f1
LM
5241 || (TREE_VEC_ELT (parms, nargs) != error_mark_node
5242 && !TREE_PURPOSE (TREE_VEC_ELT (parms, nargs))))))
8d08fdba 5243 {
c8094d83 5244 if (complain & tf_error)
75650646 5245 {
5d80a306
DG
5246 const char *or_more = "";
5247 if (variadic_p)
5248 {
5249 or_more = " or more";
5250 --nparms;
5251 }
5252
5253 error ("wrong number of template arguments (%d, should be %d%s)",
5254 nargs, nparms, or_more);
c8094d83 5255
75650646 5256 if (in_decl)
dee15844 5257 error ("provided for %q+D", in_decl);
75650646
MM
5258 }
5259
8d08fdba
MS
5260 return error_mark_node;
5261 }
5262
a2c5ed87
MM
5263 /* We need to evaluate the template arguments, even though this
5264 template-id may be nested within a "sizeof". */
5265 saved_skip_evaluation = skip_evaluation;
5266 skip_evaluation = false;
f31c0a32 5267 new_inner_args = make_tree_vec (nparms);
8b5b8b7c 5268 new_args = add_outermost_template_args (args, new_inner_args);
b1d7b1c0 5269 for (parm_idx = 0, arg_idx = 0; parm_idx < nparms; parm_idx++, arg_idx++)
8d08fdba 5270 {
8b5b8b7c
MM
5271 tree arg;
5272 tree parm;
e4a84209 5273
8b5b8b7c 5274 /* Get the Ith template parameter. */
b1d7b1c0 5275 parm = TREE_VEC_ELT (parms, parm_idx);
42b304f1
LM
5276
5277 if (parm == error_mark_node)
2d8ba2c7 5278 {
b1d7b1c0 5279 TREE_VEC_ELT (new_inner_args, arg_idx) = error_mark_node;
42b304f1 5280 continue;
2d8ba2c7 5281 }
75650646 5282
b1d7b1c0
DG
5283 /* Calculate the next argument. */
5284 if (template_parameter_pack_p (TREE_VALUE (parm)))
5d80a306 5285 {
b1d7b1c0
DG
5286 /* All remaining arguments will be placed in the
5287 template parameter pack PARM. */
5288 arg = coerce_template_parameter_pack (parms, parm_idx, args,
5289 inner_args, arg_idx,
5290 new_args, &lost,
5291 in_decl, complain);
5292
5293 /* Store this argument. */
5294 if (arg == error_mark_node)
5295 lost++;
5296 TREE_VEC_ELT (new_inner_args, parm_idx) = arg;
5297
5298 /* We are done with all of the arguments. */
5299 arg_idx = nargs;
5300
5301 continue;
5302 }
5303 else if (arg_idx < nargs)
5304 {
5305 arg = TREE_VEC_ELT (inner_args, arg_idx);
5306
5307 if (arg && PACK_EXPANSION_P (arg))
5d80a306 5308 {
4cf36211
DG
5309 if (complain & tf_error)
5310 {
5311 /* If ARG is a pack expansion, but PARM is not a
5312 template parameter pack (if it were, we would have
5313 handled it above), we're trying to expand into a
5314 fixed-length argument list. */
5315 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
5316 error ("cannot expand %<%E%> into a fixed-length "
5317 "argument list", arg);
5318 else
5319 error ("cannot expand %<%T%> into a fixed-length "
5320 "argument list", arg);
5321 }
c343d5a7 5322 return error_mark_node;
5d80a306
DG
5323 }
5324 }
e7e93965 5325 else if (require_all_args)
b1d7b1c0
DG
5326 /* There must be a default arg in this case. */
5327 arg = tsubst_template_arg (TREE_PURPOSE (parm), new_args,
5328 complain, in_decl);
ffd49b19
NS
5329 else
5330 break;
c8094d83 5331
ffd49b19 5332 if (arg == error_mark_node)
e34b0922
KL
5333 {
5334 if (complain & tf_error)
b1d7b1c0 5335 error ("template argument %d is invalid", arg_idx + 1);
e34b0922 5336 }
b1d7b1c0
DG
5337 else if (!arg)
5338 /* This only occurs if there was an error in the template
5339 parameter list itself (which we would already have
5340 reported) that we are trying to recover from, e.g., a class
5341 template with a parameter list such as
5342 template<typename..., typename>. */
5343 return error_mark_node;
c8094d83
MS
5344 else
5345 arg = convert_template_argument (TREE_VALUE (parm),
b1d7b1c0
DG
5346 arg, new_args, complain,
5347 parm_idx, in_decl);
c8094d83 5348
8b5b8b7c 5349 if (arg == error_mark_node)
8d08fdba 5350 lost++;
b1d7b1c0 5351 TREE_VEC_ELT (new_inner_args, arg_idx) = arg;
8d08fdba 5352 }
a2c5ed87 5353 skip_evaluation = saved_skip_evaluation;
8b5b8b7c 5354
8d08fdba
MS
5355 if (lost)
5356 return error_mark_node;
8b5b8b7c
MM
5357
5358 return new_inner_args;
8d08fdba
MS
5359}
5360
34016c81
JM
5361/* Returns 1 if template args OT and NT are equivalent. */
5362
d8e178a0 5363static int
3a978d72 5364template_args_equal (tree ot, tree nt)
34016c81
JM
5365{
5366 if (nt == ot)
5367 return 1;
74601d7c 5368
34016c81
JM
5369 if (TREE_CODE (nt) == TREE_VEC)
5370 /* For member templates */
74601d7c 5371 return TREE_CODE (ot) == TREE_VEC && comp_template_args (ot, nt);
5d80a306
DG
5372 else if (PACK_EXPANSION_P (ot))
5373 return PACK_EXPANSION_P (nt)
5374 && template_args_equal (PACK_EXPANSION_PATTERN (ot),
5375 PACK_EXPANSION_PATTERN (nt));
74601d7c 5376 else if (TYPE_P (nt))
660845bf 5377 return TYPE_P (ot) && same_type_p (ot, nt);
74601d7c
KL
5378 else if (TREE_CODE (ot) == TREE_VEC || TYPE_P (ot))
5379 return 0;
34016c81 5380 else
c8a209ca 5381 return cp_tree_equal (ot, nt);
34016c81
JM
5382}
5383
5384/* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets
f84b4be9
JM
5385 of template arguments. Returns 0 otherwise. */
5386
6757edfe 5387int
3a978d72 5388comp_template_args (tree oldargs, tree newargs)
5566b478
MS
5389{
5390 int i;
5391
5d80a306
DG
5392 oldargs = expand_template_argument_pack (oldargs);
5393 newargs = expand_template_argument_pack (newargs);
5394
386b8a85
JM
5395 if (TREE_VEC_LENGTH (oldargs) != TREE_VEC_LENGTH (newargs))
5396 return 0;
5397
5566b478
MS
5398 for (i = 0; i < TREE_VEC_LENGTH (oldargs); ++i)
5399 {
5400 tree nt = TREE_VEC_ELT (newargs, i);
5401 tree ot = TREE_VEC_ELT (oldargs, i);
5402
34016c81 5403 if (! template_args_equal (ot, nt))
61a127b3 5404 return 0;
5566b478
MS
5405 }
5406 return 1;
5407}
5408
5566b478 5409static void
3a978d72 5410add_pending_template (tree d)
5566b478 5411{
3ae18eaf
JM
5412 tree ti = (TYPE_P (d)
5413 ? CLASSTYPE_TEMPLATE_INFO (d)
5414 : DECL_TEMPLATE_INFO (d));
e2c3721c 5415 struct pending_template *pt;
3ae18eaf 5416 int level;
e92cc029 5417
824b9a4c 5418 if (TI_PENDING_TEMPLATE_FLAG (ti))
5566b478
MS
5419 return;
5420
3ae18eaf
JM
5421 /* We are called both from instantiate_decl, where we've already had a
5422 tinst_level pushed, and instantiate_template, where we haven't.
5423 Compensate. */
e2c3721c 5424 level = !current_tinst_level || current_tinst_level->decl != d;
3ae18eaf
JM
5425
5426 if (level)
5427 push_tinst_level (d);
5428
e2c3721c
PB
5429 pt = GGC_NEW (struct pending_template);
5430 pt->next = NULL;
5431 pt->tinst = current_tinst_level;
46ccf50a 5432 if (last_pending_template)
e2c3721c 5433 last_pending_template->next = pt;
46ccf50a
JM
5434 else
5435 pending_templates = pt;
5436
5437 last_pending_template = pt;
5438
824b9a4c 5439 TI_PENDING_TEMPLATE_FLAG (ti) = 1;
3ae18eaf
JM
5440
5441 if (level)
5442 pop_tinst_level ();
5566b478
MS
5443}
5444
386b8a85 5445
4ba126e4
MM
5446/* Return a TEMPLATE_ID_EXPR corresponding to the indicated FNS and
5447 ARGLIST. Valid choices for FNS are given in the cp-tree.def
5448 documentation for TEMPLATE_ID_EXPR. */
386b8a85
JM
5449
5450tree
3a978d72 5451lookup_template_function (tree fns, tree arglist)
386b8a85 5452{
2c73f9f5 5453 tree type;
050367a3 5454
4ba126e4
MM
5455 if (fns == error_mark_node || arglist == error_mark_node)
5456 return error_mark_node;
5457
50bc768d 5458 gcc_assert (!arglist || TREE_CODE (arglist) == TREE_VEC);
4230cec2
NS
5459 gcc_assert (fns && (is_overloaded_fn (fns)
5460 || TREE_CODE (fns) == IDENTIFIER_NODE));
4ba126e4 5461
50ad9642
MM
5462 if (BASELINK_P (fns))
5463 {
f293ce4b
RS
5464 BASELINK_FUNCTIONS (fns) = build2 (TEMPLATE_ID_EXPR,
5465 unknown_type_node,
5466 BASELINK_FUNCTIONS (fns),
5467 arglist);
50ad9642
MM
5468 return fns;
5469 }
5470
2c73f9f5
ML
5471 type = TREE_TYPE (fns);
5472 if (TREE_CODE (fns) == OVERLOAD || !type)
5473 type = unknown_type_node;
c8094d83 5474
f293ce4b 5475 return build2 (TEMPLATE_ID_EXPR, type, fns, arglist);
386b8a85
JM
5476}
5477
a2b60a0e
MM
5478/* Within the scope of a template class S<T>, the name S gets bound
5479 (in build_self_reference) to a TYPE_DECL for the class, not a
5480 TEMPLATE_DECL. If DECL is a TYPE_DECL for current_class_type,
5481 or one of its enclosing classes, and that type is a template,
5482 return the associated TEMPLATE_DECL. Otherwise, the original
5483 DECL is returned. */
5484
a723baf1 5485tree
3a978d72 5486maybe_get_template_decl_from_type_decl (tree decl)
a2b60a0e
MM
5487{
5488 return (decl != NULL_TREE
c8094d83 5489 && TREE_CODE (decl) == TYPE_DECL
a2b60a0e 5490 && DECL_ARTIFICIAL (decl)
511b60ff 5491 && CLASS_TYPE_P (TREE_TYPE (decl))
c8094d83 5492 && CLASSTYPE_TEMPLATE_INFO (TREE_TYPE (decl)))
a2b60a0e
MM
5493 ? CLASSTYPE_TI_TEMPLATE (TREE_TYPE (decl)) : decl;
5494}
386b8a85 5495
8d08fdba
MS
5496/* Given an IDENTIFIER_NODE (type TEMPLATE_DECL) and a chain of
5497 parameters, find the desired type.
5498
5499 D1 is the PTYPENAME terminal, and ARGLIST is the list of arguments.
8d08fdba
MS
5500
5501 IN_DECL, if non-NULL, is the template declaration we are trying to
c8094d83 5502 instantiate.
75650646 5503
838dfd8a 5504 If ENTERING_SCOPE is nonzero, we are about to enter the scope of
36a117a5 5505 the class we are looking up.
c8094d83 5506
c2ea3a40 5507 Issue error and warning messages under control of COMPLAIN.
36a117a5 5508
75650646
MM
5509 If the template class is really a local class in a template
5510 function, then the FUNCTION_CONTEXT is the function in which it is
c8094d83 5511 being instantiated.
b6ab6892
GB
5512
5513 ??? Note that this function is currently called *twice* for each
5514 template-id: the first time from the parser, while creating the
5515 incomplete type (finish_template_type), and the second type during the
5516 real instantiation (instantiate_template_class). This is surely something
5517 that we want to avoid. It also causes some problems with argument
5518 coercion (see convert_nontype_argument for more information on this). */
e92cc029 5519
8d08fdba 5520tree
c8094d83 5521lookup_template_class (tree d1,
0cbd7506
MS
5522 tree arglist,
5523 tree in_decl,
5524 tree context,
5525 int entering_scope,
5526 tsubst_flags_t complain)
8d08fdba 5527{
a703fb38 5528 tree template = NULL_TREE, parmlist;
dbfe2124 5529 tree t;
c8094d83 5530
fd295cb2 5531 timevar_push (TV_NAME_LOOKUP);
c8094d83 5532
5566b478
MS
5533 if (TREE_CODE (d1) == IDENTIFIER_NODE)
5534 {
90ea9897
MM
5535 tree value = innermost_non_namespace_value (d1);
5536 if (value && DECL_TEMPLATE_TEMPLATE_PARM_P (value))
5537 template = value;
73b0fce8
KL
5538 else
5539 {
2c73f9f5
ML
5540 if (context)
5541 push_decl_namespace (context);
10e6657a 5542 template = lookup_name (d1);
3ebc5c52 5543 template = maybe_get_template_decl_from_type_decl (template);
2c73f9f5
ML
5544 if (context)
5545 pop_decl_namespace ();
73b0fce8 5546 }
8d019cef
JM
5547 if (template)
5548 context = DECL_CONTEXT (template);
5566b478 5549 }
9e1e64ec 5550 else if (TREE_CODE (d1) == TYPE_DECL && MAYBE_CLASS_TYPE_P (TREE_TYPE (d1)))
c91a56d2 5551 {
802dbc34
JM
5552 tree type = TREE_TYPE (d1);
5553
5554 /* If we are declaring a constructor, say A<T>::A<T>, we will get
5555 an implicit typename for the second A. Deal with it. */
5556 if (TREE_CODE (type) == TYPENAME_TYPE && TREE_TYPE (type))
5557 type = TREE_TYPE (type);
c8094d83 5558
802dbc34 5559 if (CLASSTYPE_TEMPLATE_INFO (type))
f3400fe2 5560 {
802dbc34 5561 template = CLASSTYPE_TI_TEMPLATE (type);
f3400fe2
JM
5562 d1 = DECL_NAME (template);
5563 }
c91a56d2 5564 }
c8094d83 5565 else if (TREE_CODE (d1) == ENUMERAL_TYPE
9e1e64ec 5566 || (TYPE_P (d1) && MAYBE_CLASS_TYPE_P (d1)))
5566b478 5567 {
ed44da02 5568 template = TYPE_TI_TEMPLATE (d1);
5566b478
MS
5569 d1 = DECL_NAME (template);
5570 }
93cdc044 5571 else if (TREE_CODE (d1) == TEMPLATE_DECL
17aec3eb 5572 && TREE_CODE (DECL_TEMPLATE_RESULT (d1)) == TYPE_DECL)
93cdc044
JM
5573 {
5574 template = d1;
5575 d1 = DECL_NAME (template);
5576 context = DECL_CONTEXT (template);
5577 }
8d08fdba 5578
90ea9897 5579 /* Issue an error message if we didn't find a template. */
8d08fdba 5580 if (! template)
f3400fe2 5581 {
c2ea3a40 5582 if (complain & tf_error)
0cbd7506 5583 error ("%qT is not a template", d1);
fd295cb2 5584 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
f3400fe2 5585 }
2c73f9f5 5586
a87b4257 5587 if (TREE_CODE (template) != TEMPLATE_DECL
0cbd7506 5588 /* Make sure it's a user visible template, if it was named by
42eaed49
NS
5589 the user. */
5590 || ((complain & tf_user) && !DECL_TEMPLATE_PARM_P (template)
5591 && !PRIMARY_TEMPLATE_P (template)))
8d08fdba 5592 {
c2ea3a40 5593 if (complain & tf_error)
0cbd7506
MS
5594 {
5595 error ("non-template type %qT used as a template", d1);
5596 if (in_decl)
dee15844 5597 error ("for template declaration %q+D", in_decl);
f9c244b8 5598 }
fd295cb2 5599 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
8d08fdba 5600 }
8d08fdba 5601
42eaed49 5602 complain &= ~tf_user;
c8094d83 5603
73b0fce8
KL
5604 if (DECL_TEMPLATE_TEMPLATE_PARM_P (template))
5605 {
5606 /* Create a new TEMPLATE_DECL and TEMPLATE_TEMPLATE_PARM node to store
0cbd7506 5607 template arguments */
73b0fce8 5608
1899c3a4 5609 tree parm;
73b0fce8 5610 tree arglist2;
ef3b7b17 5611 tree outer;
73b0fce8 5612
73b0fce8
KL
5613 parmlist = DECL_INNERMOST_TEMPLATE_PARMS (template);
5614
4f96ff63
KL
5615 /* Consider an example where a template template parameter declared as
5616
5617 template <class T, class U = std::allocator<T> > class TT
5618
c8094d83
MS
5619 The template parameter level of T and U are one level larger than
5620 of TT. To proper process the default argument of U, say when an
4f96ff63 5621 instantiation `TT<int>' is seen, we need to build the full
342cea95
KL
5622 arguments containing {int} as the innermost level. Outer levels,
5623 available when not appearing as default template argument, can be
ef3b7b17 5624 obtained from the arguments of the enclosing template.
4f96ff63 5625
342cea95
KL
5626 Suppose that TT is later substituted with std::vector. The above
5627 instantiation is `TT<int, std::allocator<T> >' with TT at
5628 level 1, and T at level 2, while the template arguments at level 1
5629 becomes {std::vector} and the inner level 2 is {int}. */
5630
ef3b7b17
JM
5631 outer = DECL_CONTEXT (template);
5632 if (outer)
5633 outer = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (outer)));
5634 else if (current_template_parms)
5635 /* This is an argument of the current template, so we haven't set
5636 DECL_CONTEXT yet. */
5637 outer = current_template_args ();
5638
5639 if (outer)
5640 arglist = add_to_template_args (outer, arglist);
4f96ff63 5641
f9c244b8 5642 arglist2 = coerce_template_parms (parmlist, arglist, template,
3db45ab5 5643 complain,
e7e93965
MM
5644 /*require_all_args=*/true,
5645 /*use_default_args=*/true);
3e4a3562 5646 if (arglist2 == error_mark_node
544aef8c 5647 || (!uses_template_parms (arglist2)
3e4a3562 5648 && check_instantiated_args (template, arglist2, complain)))
0cbd7506 5649 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
73b0fce8 5650
dac65501 5651 parm = bind_template_template_parm (TREE_TYPE (template), arglist2);
fd295cb2 5652 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, parm);
73b0fce8 5653 }
c8094d83 5654 else
8d08fdba 5655 {
36a117a5 5656 tree template_type = TREE_TYPE (template);
7ac7b28f 5657 tree gen_tmpl;
36a117a5
MM
5658 tree type_decl;
5659 tree found = NULL_TREE;
5660 int arg_depth;
5661 int parm_depth;
dbfe2124 5662 int is_partial_instantiation;
830bfa74 5663
7ac7b28f
MM
5664 gen_tmpl = most_general_template (template);
5665 parmlist = DECL_TEMPLATE_PARMS (gen_tmpl);
36a117a5
MM
5666 parm_depth = TMPL_PARMS_DEPTH (parmlist);
5667 arg_depth = TMPL_ARGS_DEPTH (arglist);
5668
5669 if (arg_depth == 1 && parm_depth > 1)
5670 {
39c01e4c 5671 /* We've been given an incomplete set of template arguments.
36a117a5
MM
5672 For example, given:
5673
5674 template <class T> struct S1 {
0cbd7506 5675 template <class U> struct S2 {};
36a117a5 5676 template <class U> struct S2<U*> {};
0cbd7506 5677 };
c8094d83 5678
36a117a5
MM
5679 we will be called with an ARGLIST of `U*', but the
5680 TEMPLATE will be `template <class T> template
5681 <class U> struct S1<T>::S2'. We must fill in the missing
5682 arguments. */
c8094d83 5683 arglist
7ac7b28f
MM
5684 = add_outermost_template_args (TYPE_TI_ARGS (TREE_TYPE (template)),
5685 arglist);
36a117a5
MM
5686 arg_depth = TMPL_ARGS_DEPTH (arglist);
5687 }
5566b478 5688
41f5d4b1 5689 /* Now we should have enough arguments. */
50bc768d 5690 gcc_assert (parm_depth == arg_depth);
c8094d83 5691
7ac7b28f
MM
5692 /* From here on, we're only interested in the most general
5693 template. */
5694 template = gen_tmpl;
5695
36a117a5
MM
5696 /* Calculate the BOUND_ARGS. These will be the args that are
5697 actually tsubst'd into the definition to create the
5698 instantiation. */
5699 if (parm_depth > 1)
830bfa74
MM
5700 {
5701 /* We have multiple levels of arguments to coerce, at once. */
830bfa74 5702 int i;
e4a84209 5703 int saved_depth = TMPL_ARGS_DEPTH (arglist);
36a117a5 5704
f31c0a32 5705 tree bound_args = make_tree_vec (parm_depth);
c8094d83 5706
e4a84209 5707 for (i = saved_depth,
c8094d83 5708 t = DECL_TEMPLATE_PARMS (template);
e4a84209 5709 i > 0 && t != NULL_TREE;
830bfa74 5710 --i, t = TREE_CHAIN (t))
e4a84209 5711 {
ee3071ef
NS
5712 tree a = coerce_template_parms (TREE_VALUE (t),
5713 arglist, template,
3db45ab5 5714 complain,
e7e93965
MM
5715 /*require_all_args=*/true,
5716 /*use_default_args=*/true);
88e98cfe
KL
5717
5718 /* Don't process further if one of the levels fails. */
5719 if (a == error_mark_node)
5720 {
5721 /* Restore the ARGLIST to its full size. */
5722 TREE_VEC_LENGTH (arglist) = saved_depth;
5723 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
5724 }
c8094d83 5725
e4a84209
MM
5726 SET_TMPL_ARGS_LEVEL (bound_args, i, a);
5727
5728 /* We temporarily reduce the length of the ARGLIST so
5729 that coerce_template_parms will see only the arguments
5730 corresponding to the template parameters it is
5731 examining. */
5732 TREE_VEC_LENGTH (arglist)--;
5733 }
5734
5735 /* Restore the ARGLIST to its full size. */
5736 TREE_VEC_LENGTH (arglist) = saved_depth;
5737
36a117a5 5738 arglist = bound_args;
830bfa74
MM
5739 }
5740 else
36a117a5
MM
5741 arglist
5742 = coerce_template_parms (INNERMOST_TEMPLATE_PARMS (parmlist),
f9a7ae04 5743 INNERMOST_TEMPLATE_ARGS (arglist),
f9c244b8 5744 template,
3db45ab5 5745 complain,
e7e93965
MM
5746 /*require_all_args=*/true,
5747 /*use_default_args=*/true);
36a117a5 5748
c353b8e3 5749 if (arglist == error_mark_node)
36a117a5 5750 /* We were unable to bind the arguments. */
fd295cb2 5751 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
5566b478 5752
36a117a5
MM
5753 /* In the scope of a template class, explicit references to the
5754 template class refer to the type of the template, not any
5755 instantiation of it. For example, in:
c8094d83 5756
36a117a5
MM
5757 template <class T> class C { void f(C<T>); }
5758
5759 the `C<T>' is just the same as `C'. Outside of the
5760 class, however, such a reference is an instantiation. */
ed44da02 5761 if (comp_template_args (TYPE_TI_ARGS (template_type),
36a117a5
MM
5762 arglist))
5763 {
5764 found = template_type;
c8094d83 5765
36a117a5 5766 if (!entering_scope && PRIMARY_TEMPLATE_P (template))
5566b478 5767 {
36a117a5 5768 tree ctx;
c8094d83
MS
5769
5770 for (ctx = current_class_type;
5f04800c
KL
5771 ctx && TREE_CODE (ctx) != NAMESPACE_DECL;
5772 ctx = (TYPE_P (ctx)
5773 ? TYPE_CONTEXT (ctx)
5774 : DECL_CONTEXT (ctx)))
5775 if (TYPE_P (ctx) && same_type_p (ctx, template_type))
5776 goto found_ctx;
c8094d83 5777
6df5158a
NS
5778 /* We're not in the scope of the class, so the
5779 TEMPLATE_TYPE is not the type we want after all. */
5780 found = NULL_TREE;
5781 found_ctx:;
5566b478
MS
5782 }
5783 }
36a117a5 5784 if (found)
0cbd7506 5785 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, found);
414ea4aa 5786
c7222c02
MM
5787 /* If we already have this specialization, return it. */
5788 found = retrieve_specialization (template, arglist,
5789 /*class_specializations_p=*/false);
5790 if (found)
5791 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, found);
5566b478 5792
dbfe2124 5793 /* This type is a "partial instantiation" if any of the template
ab097535 5794 arguments still involve template parameters. Note that we set
486e4077
MM
5795 IS_PARTIAL_INSTANTIATION for partial specializations as
5796 well. */
dbfe2124
MM
5797 is_partial_instantiation = uses_template_parms (arglist);
5798
c353b8e3
MM
5799 /* If the deduced arguments are invalid, then the binding
5800 failed. */
5801 if (!is_partial_instantiation
5802 && check_instantiated_args (template,
5803 INNERMOST_TEMPLATE_ARGS (arglist),
5804 complain))
5805 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, error_mark_node);
c8094d83
MS
5806
5807 if (!is_partial_instantiation
3ebc5c52
MM
5808 && !PRIMARY_TEMPLATE_P (template)
5809 && TREE_CODE (CP_DECL_CONTEXT (template)) == NAMESPACE_DECL)
5810 {
3ebc5c52
MM
5811 found = xref_tag_from_type (TREE_TYPE (template),
5812 DECL_NAME (template),
29ef83de 5813 /*tag_scope=*/ts_global);
fd295cb2 5814 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, found);
3ebc5c52 5815 }
c8094d83 5816
95ee998c 5817 context = tsubst (DECL_CONTEXT (template), arglist,
c2ea3a40 5818 complain, in_decl);
95ee998c
MM
5819 if (!context)
5820 context = global_namespace;
5821
36a117a5 5822 /* Create the type. */
ed44da02
MM
5823 if (TREE_CODE (template_type) == ENUMERAL_TYPE)
5824 {
dbfe2124 5825 if (!is_partial_instantiation)
92777ce4
NS
5826 {
5827 set_current_access_from_decl (TYPE_NAME (template_type));
5828 t = start_enum (TYPE_IDENTIFIER (template_type));
5829 }
ed44da02 5830 else
dbfe2124 5831 /* We don't want to call start_enum for this type, since
ed44da02
MM
5832 the values for the enumeration constants may involve
5833 template parameters. And, no one should be interested
5834 in the enumeration constants for such a type. */
5835 t = make_node (ENUMERAL_TYPE);
5836 }
5837 else
5838 {
9e1e64ec 5839 t = make_class_type (TREE_CODE (template_type));
c8094d83 5840 CLASSTYPE_DECLARED_CLASS (t)
ed44da02 5841 = CLASSTYPE_DECLARED_CLASS (template_type);
ed44da02 5842 SET_CLASSTYPE_IMPLICIT_INSTANTIATION (t);
f668f160 5843 TYPE_FOR_JAVA (t) = TYPE_FOR_JAVA (template_type);
ae673f14
JM
5844
5845 /* A local class. Make sure the decl gets registered properly. */
5846 if (context == current_function_decl)
bd3d082e 5847 pushtag (DECL_NAME (template), t, /*tag_scope=*/ts_current);
06d40de8
DG
5848
5849 if (comp_template_args (CLASSTYPE_TI_ARGS (template_type), arglist))
5850 /* This instantiation is another name for the primary
5851 template type. Set the TYPE_CANONICAL field
5852 appropriately. */
5853 TYPE_CANONICAL (t) = template_type;
5854 else if (any_template_arguments_need_structural_equality_p (arglist))
5855 /* Some of the template arguments require structural
5856 equality testing, so this template class requires
5857 structural equality testing. */
5858 SET_TYPE_STRUCTURAL_EQUALITY (t);
ed44da02
MM
5859 }
5860
ae673f14
JM
5861 /* If we called start_enum or pushtag above, this information
5862 will already be set up. */
ed44da02
MM
5863 if (!TYPE_NAME (t))
5864 {
5865 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
c8094d83 5866
9188c363 5867 type_decl = create_implicit_typedef (DECL_NAME (template), t);
ed44da02 5868 DECL_CONTEXT (type_decl) = TYPE_CONTEXT (t);
9188c363 5869 TYPE_STUB_DECL (t) = type_decl;
c8094d83 5870 DECL_SOURCE_LOCATION (type_decl)
f31686a3 5871 = DECL_SOURCE_LOCATION (TYPE_STUB_DECL (template_type));
ed44da02
MM
5872 }
5873 else
5874 type_decl = TYPE_NAME (t);
36a117a5 5875
cab7a9a3
KL
5876 TREE_PRIVATE (type_decl)
5877 = TREE_PRIVATE (TYPE_STUB_DECL (template_type));
5878 TREE_PROTECTED (type_decl)
5879 = TREE_PROTECTED (TYPE_STUB_DECL (template_type));
12af7ba3
MM
5880 DECL_IN_SYSTEM_HEADER (type_decl)
5881 = DECL_IN_SYSTEM_HEADER (template);
8d039470
MS
5882 if (CLASSTYPE_VISIBILITY_SPECIFIED (template_type))
5883 {
5884 DECL_VISIBILITY_SPECIFIED (type_decl) = 1;
5885 DECL_VISIBILITY (type_decl) = CLASSTYPE_VISIBILITY (template_type);
5886 }
cab7a9a3 5887
9fbf56f7
MM
5888 /* Set up the template information. We have to figure out which
5889 template is the immediate parent if this is a full
5890 instantiation. */
5891 if (parm_depth == 1 || is_partial_instantiation
5892 || !PRIMARY_TEMPLATE_P (template))
5893 /* This case is easy; there are no member templates involved. */
5894 found = template;
5895 else
5896 {
ab097535
NS
5897 /* This is a full instantiation of a member template. Look
5898 for a partial instantiation of which this is an instance. */
9fbf56f7
MM
5899
5900 for (found = DECL_TEMPLATE_INSTANTIATIONS (template);
5901 found; found = TREE_CHAIN (found))
5902 {
5903 int success;
5904 tree tmpl = CLASSTYPE_TI_TEMPLATE (TREE_VALUE (found));
5905
5906 /* We only want partial instantiations, here, not
5907 specializations or full instantiations. */
370af2d5 5908 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_VALUE (found))
9fbf56f7
MM
5909 || !uses_template_parms (TREE_VALUE (found)))
5910 continue;
5911
5912 /* Temporarily reduce by one the number of levels in the
5913 ARGLIST and in FOUND so as to avoid comparing the
5914 last set of arguments. */
5915 TREE_VEC_LENGTH (arglist)--;
5916 TREE_VEC_LENGTH (TREE_PURPOSE (found)) --;
5917
5918 /* See if the arguments match. If they do, then TMPL is
5919 the partial instantiation we want. */
5920 success = comp_template_args (TREE_PURPOSE (found), arglist);
5921
5922 /* Restore the argument vectors to their full size. */
5923 TREE_VEC_LENGTH (arglist)++;
5924 TREE_VEC_LENGTH (TREE_PURPOSE (found))++;
5925
5926 if (success)
5927 {
5928 found = tmpl;
5929 break;
5930 }
5931 }
5932
5933 if (!found)
ab097535
NS
5934 {
5935 /* There was no partial instantiation. This happens
0cbd7506
MS
5936 where C<T> is a member template of A<T> and it's used
5937 in something like
c8094d83 5938
0cbd7506
MS
5939 template <typename T> struct B { A<T>::C<int> m; };
5940 B<float>;
c8094d83 5941
0cbd7506
MS
5942 Create the partial instantiation.
5943 */
5944 TREE_VEC_LENGTH (arglist)--;
5945 found = tsubst (template, arglist, complain, NULL_TREE);
5946 TREE_VEC_LENGTH (arglist)++;
5947 }
9fbf56f7
MM
5948 }
5949
c8094d83
MS
5950 SET_TYPE_TEMPLATE_INFO (t, tree_cons (found, arglist, NULL_TREE));
5951 DECL_TEMPLATE_INSTANTIATIONS (template)
5952 = tree_cons (arglist, t,
dbfe2124
MM
5953 DECL_TEMPLATE_INSTANTIATIONS (template));
5954
c8094d83 5955 if (TREE_CODE (t) == ENUMERAL_TYPE
dbfe2124 5956 && !is_partial_instantiation)
61a127b3
MM
5957 /* Now that the type has been registered on the instantiations
5958 list, we set up the enumerators. Because the enumeration
5959 constants may involve the enumeration type itself, we make
5960 sure to register the type first, and then create the
5961 constants. That way, doing tsubst_expr for the enumeration
5962 constants won't result in recursive calls here; we'll find
5963 the instantiation and exit above. */
5964 tsubst_enum (template_type, t, arglist);
dbfe2124 5965
7813d14c 5966 if (is_partial_instantiation)
077e7015
MM
5967 /* If the type makes use of template parameters, the
5968 code that generates debugging information will crash. */
5969 DECL_IGNORED_P (TYPE_STUB_DECL (t)) = 1;
8d08fdba 5970
b9e75696
JM
5971 /* Possibly limit visibility based on template args. */
5972 TREE_PUBLIC (type_decl) = 1;
5973 determine_visibility (type_decl);
5974
fd295cb2 5975 POP_TIMEVAR_AND_RETURN (TV_NAME_LOOKUP, t);
36a117a5 5976 }
fd295cb2 5977 timevar_pop (TV_NAME_LOOKUP);
8d08fdba
MS
5978}
5979\f
c8094d83 5980struct pair_fn_data
8d08fdba 5981{
8dfaeb63
MM
5982 tree_fn_t fn;
5983 void *data;
c095a4f8
DG
5984 /* True when we should also visit template parameters that occur in
5985 non-deduced contexts. */
5986 bool include_nondeduced_p;
0c58f841 5987 struct pointer_set_t *visited;
8dfaeb63
MM
5988};
5989
5990/* Called from for_each_template_parm via walk_tree. */
581d38d0 5991
8dfaeb63 5992static tree
350fae66 5993for_each_template_parm_r (tree *tp, int *walk_subtrees, void *d)
8dfaeb63
MM
5994{
5995 tree t = *tp;
5996 struct pair_fn_data *pfd = (struct pair_fn_data *) d;
5997 tree_fn_t fn = pfd->fn;
5998 void *data = pfd->data;
4f2c9d7e 5999
2f939d94 6000 if (TYPE_P (t)
c095a4f8
DG
6001 && (pfd->include_nondeduced_p || TREE_CODE (t) != TYPENAME_TYPE)
6002 && for_each_template_parm (TYPE_CONTEXT (t), fn, data, pfd->visited,
6003 pfd->include_nondeduced_p))
8dfaeb63 6004 return error_mark_node;
581d38d0 6005
8d08fdba
MS
6006 switch (TREE_CODE (t))
6007 {
8d08fdba 6008 case RECORD_TYPE:
9076e292 6009 if (TYPE_PTRMEMFUNC_P (t))
8dfaeb63 6010 break;
ed44da02
MM
6011 /* Fall through. */
6012
8d08fdba 6013 case UNION_TYPE:
ed44da02 6014 case ENUMERAL_TYPE:
8dfaeb63
MM
6015 if (!TYPE_TEMPLATE_INFO (t))
6016 *walk_subtrees = 0;
6017 else if (for_each_template_parm (TREE_VALUE (TYPE_TEMPLATE_INFO (t)),
c095a4f8
DG
6018 fn, data, pfd->visited,
6019 pfd->include_nondeduced_p))
8dfaeb63
MM
6020 return error_mark_node;
6021 break;
6022
8f6e6bf3
EB
6023 case INTEGER_TYPE:
6024 if (for_each_template_parm (TYPE_MIN_VALUE (t),
c095a4f8
DG
6025 fn, data, pfd->visited,
6026 pfd->include_nondeduced_p)
8f6e6bf3 6027 || for_each_template_parm (TYPE_MAX_VALUE (t),
c095a4f8
DG
6028 fn, data, pfd->visited,
6029 pfd->include_nondeduced_p))
8f6e6bf3
EB
6030 return error_mark_node;
6031 break;
6032
588c2d1c 6033 case METHOD_TYPE:
8dfaeb63
MM
6034 /* Since we're not going to walk subtrees, we have to do this
6035 explicitly here. */
4f2c9d7e 6036 if (for_each_template_parm (TYPE_METHOD_BASETYPE (t), fn, data,
c095a4f8 6037 pfd->visited, pfd->include_nondeduced_p))
8dfaeb63 6038 return error_mark_node;
4890c2f4 6039 /* Fall through. */
588c2d1c
MM
6040
6041 case FUNCTION_TYPE:
8dfaeb63 6042 /* Check the return type. */
c095a4f8
DG
6043 if (for_each_template_parm (TREE_TYPE (t), fn, data, pfd->visited,
6044 pfd->include_nondeduced_p))
8dfaeb63
MM
6045 return error_mark_node;
6046
588c2d1c
MM
6047 /* Check the parameter types. Since default arguments are not
6048 instantiated until they are needed, the TYPE_ARG_TYPES may
6049 contain expressions that involve template parameters. But,
6050 no-one should be looking at them yet. And, once they're
6051 instantiated, they don't contain template parameters, so
6052 there's no point in looking at them then, either. */
6053 {
6054 tree parm;
6055
6056 for (parm = TYPE_ARG_TYPES (t); parm; parm = TREE_CHAIN (parm))
4f2c9d7e 6057 if (for_each_template_parm (TREE_VALUE (parm), fn, data,
c095a4f8 6058 pfd->visited, pfd->include_nondeduced_p))
8dfaeb63 6059 return error_mark_node;
5566b478 6060
8dfaeb63
MM
6061 /* Since we've already handled the TYPE_ARG_TYPES, we don't
6062 want walk_tree walking into them itself. */
6063 *walk_subtrees = 0;
6064 }
6065 break;
3ac3d9ea 6066
a723baf1 6067 case TYPEOF_TYPE:
c095a4f8
DG
6068 if (pfd->include_nondeduced_p
6069 && for_each_template_parm (TYPE_FIELDS (t), fn, data,
6070 pfd->visited,
6071 pfd->include_nondeduced_p))
a723baf1
MM
6072 return error_mark_node;
6073 break;
6074
8d08fdba 6075 case FUNCTION_DECL:
5566b478 6076 case VAR_DECL:
5566b478 6077 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t)
4f2c9d7e 6078 && for_each_template_parm (DECL_TI_ARGS (t), fn, data,
c095a4f8 6079 pfd->visited, pfd->include_nondeduced_p))
8dfaeb63
MM
6080 return error_mark_node;
6081 /* Fall through. */
6082
8d08fdba 6083 case PARM_DECL:
a723baf1
MM
6084 case CONST_DECL:
6085 if (TREE_CODE (t) == CONST_DECL && DECL_TEMPLATE_PARM_P (t)
6086 && for_each_template_parm (DECL_INITIAL (t), fn, data,
c095a4f8 6087 pfd->visited, pfd->include_nondeduced_p))
a723baf1 6088 return error_mark_node;
c8094d83 6089 if (DECL_CONTEXT (t)
c095a4f8 6090 && pfd->include_nondeduced_p
4f2c9d7e 6091 && for_each_template_parm (DECL_CONTEXT (t), fn, data,
c095a4f8 6092 pfd->visited, pfd->include_nondeduced_p))
8dfaeb63
MM
6093 return error_mark_node;
6094 break;
8d08fdba 6095
a1281f45 6096 case BOUND_TEMPLATE_TEMPLATE_PARM:
744fac59 6097 /* Record template parameters such as `T' inside `TT<T>'. */
c095a4f8
DG
6098 if (for_each_template_parm (TYPE_TI_ARGS (t), fn, data, pfd->visited,
6099 pfd->include_nondeduced_p))
8dfaeb63
MM
6100 return error_mark_node;
6101 /* Fall through. */
6102
a1281f45 6103 case TEMPLATE_TEMPLATE_PARM:
744fac59 6104 case TEMPLATE_TYPE_PARM:
f84b4be9 6105 case TEMPLATE_PARM_INDEX:
8dfaeb63
MM
6106 if (fn && (*fn)(t, data))
6107 return error_mark_node;
6108 else if (!fn)
6109 return error_mark_node;
6110 break;
5156628f 6111
8dfaeb63 6112 case TEMPLATE_DECL:
f4f206f4 6113 /* A template template parameter is encountered. */
8dfaeb63 6114 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t)
c095a4f8
DG
6115 && for_each_template_parm (TREE_TYPE (t), fn, data, pfd->visited,
6116 pfd->include_nondeduced_p))
8dfaeb63 6117 return error_mark_node;
db5ae43f 6118
8dfaeb63
MM
6119 /* Already substituted template template parameter */
6120 *walk_subtrees = 0;
6121 break;
b8865407 6122
4699c561 6123 case TYPENAME_TYPE:
c8094d83 6124 if (!fn
4f2c9d7e 6125 || for_each_template_parm (TYPENAME_TYPE_FULLNAME (t), fn,
c095a4f8
DG
6126 data, pfd->visited,
6127 pfd->include_nondeduced_p))
8dfaeb63
MM
6128 return error_mark_node;
6129 break;
4699c561 6130
8dfaeb63
MM
6131 case CONSTRUCTOR:
6132 if (TREE_TYPE (t) && TYPE_PTRMEMFUNC_P (TREE_TYPE (t))
c095a4f8 6133 && pfd->include_nondeduced_p
8dfaeb63 6134 && for_each_template_parm (TYPE_PTRMEMFUNC_FN_TYPE
4f2c9d7e 6135 (TREE_TYPE (t)), fn, data,
c095a4f8 6136 pfd->visited, pfd->include_nondeduced_p))
8dfaeb63
MM
6137 return error_mark_node;
6138 break;
c8094d83 6139
b8865407
MM
6140 case INDIRECT_REF:
6141 case COMPONENT_REF:
4699c561 6142 /* If there's no type, then this thing must be some expression
b8865407 6143 involving template parameters. */
4699c561 6144 if (!fn && !TREE_TYPE (t))
8dfaeb63
MM
6145 return error_mark_node;
6146 break;
b8865407 6147
42976354
BK
6148 case MODOP_EXPR:
6149 case CAST_EXPR:
6150 case REINTERPRET_CAST_EXPR:
6151 case CONST_CAST_EXPR:
6152 case STATIC_CAST_EXPR:
6153 case DYNAMIC_CAST_EXPR:
42976354
BK
6154 case ARROW_EXPR:
6155 case DOTSTAR_EXPR:
6156 case TYPEID_EXPR:
40242ccf 6157 case PSEUDO_DTOR_EXPR:
b8865407 6158 if (!fn)
8dfaeb63
MM
6159 return error_mark_node;
6160 break;
abff8e06 6161
8d08fdba 6162 default:
8dfaeb63 6163 break;
8d08fdba 6164 }
8dfaeb63
MM
6165
6166 /* We didn't find any template parameters we liked. */
6167 return NULL_TREE;
6168}
6169
c8094d83
MS
6170/* For each TEMPLATE_TYPE_PARM, TEMPLATE_TEMPLATE_PARM,
6171 BOUND_TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX in T,
a1281f45 6172 call FN with the parameter and the DATA.
838dfd8a 6173 If FN returns nonzero, the iteration is terminated, and
8dfaeb63 6174 for_each_template_parm returns 1. Otherwise, the iteration
838dfd8a 6175 continues. If FN never returns a nonzero value, the value
8dfaeb63 6176 returned by for_each_template_parm is 0. If FN is NULL, it is
c095a4f8
DG
6177 considered to be the function which always returns 1.
6178
6179 If INCLUDE_NONDEDUCED_P, then this routine will also visit template
6180 parameters that occur in non-deduced contexts. When false, only
6181 visits those template parameters that can be deduced. */
8dfaeb63
MM
6182
6183static int
0c58f841 6184for_each_template_parm (tree t, tree_fn_t fn, void* data,
c095a4f8
DG
6185 struct pointer_set_t *visited,
6186 bool include_nondeduced_p)
8dfaeb63
MM
6187{
6188 struct pair_fn_data pfd;
ad2ae3b2 6189 int result;
8dfaeb63
MM
6190
6191 /* Set up. */
6192 pfd.fn = fn;
6193 pfd.data = data;
c095a4f8 6194 pfd.include_nondeduced_p = include_nondeduced_p;
8dfaeb63 6195
4890c2f4
MM
6196 /* Walk the tree. (Conceptually, we would like to walk without
6197 duplicates, but for_each_template_parm_r recursively calls
6198 for_each_template_parm, so we would need to reorganize a fair
4f2c9d7e
MM
6199 bit to use walk_tree_without_duplicates, so we keep our own
6200 visited list.) */
6201 if (visited)
6202 pfd.visited = visited;
6203 else
0c58f841 6204 pfd.visited = pointer_set_create ();
14588106
RG
6205 result = cp_walk_tree (&t,
6206 for_each_template_parm_r,
6207 &pfd,
6208 pfd.visited) != NULL_TREE;
ad2ae3b2
MM
6209
6210 /* Clean up. */
6211 if (!visited)
0c58f841
MA
6212 {
6213 pointer_set_destroy (pfd.visited);
6214 pfd.visited = 0;
6215 }
ad2ae3b2
MM
6216
6217 return result;
8d08fdba
MS
6218}
6219
d43f603d
KL
6220/* Returns true if T depends on any template parameter. */
6221
050367a3 6222int
3a978d72 6223uses_template_parms (tree t)
050367a3 6224{
c353b8e3
MM
6225 bool dependent_p;
6226 int saved_processing_template_decl;
6227
6228 saved_processing_template_decl = processing_template_decl;
6229 if (!saved_processing_template_decl)
6230 processing_template_decl = 1;
6231 if (TYPE_P (t))
6232 dependent_p = dependent_type_p (t);
6233 else if (TREE_CODE (t) == TREE_VEC)
6234 dependent_p = any_dependent_template_arguments_p (t);
6235 else if (TREE_CODE (t) == TREE_LIST)
6236 dependent_p = (uses_template_parms (TREE_VALUE (t))
6237 || uses_template_parms (TREE_CHAIN (t)));
3ce5fa4f
NS
6238 else if (TREE_CODE (t) == TYPE_DECL)
6239 dependent_p = dependent_type_p (TREE_TYPE (t));
c8094d83
MS
6240 else if (DECL_P (t)
6241 || EXPR_P (t)
c353b8e3
MM
6242 || TREE_CODE (t) == TEMPLATE_PARM_INDEX
6243 || TREE_CODE (t) == OVERLOAD
6244 || TREE_CODE (t) == BASELINK
b207d6e2 6245 || TREE_CODE (t) == IDENTIFIER_NODE
cb68ec50 6246 || TREE_CODE (t) == TRAIT_EXPR
6615c446 6247 || CONSTANT_CLASS_P (t))
c353b8e3
MM
6248 dependent_p = (type_dependent_expression_p (t)
6249 || value_dependent_expression_p (t));
315fb5db
NS
6250 else
6251 {
6252 gcc_assert (t == error_mark_node);
6253 dependent_p = false;
6254 }
c8094d83 6255
c353b8e3
MM
6256 processing_template_decl = saved_processing_template_decl;
6257
6258 return dependent_p;
050367a3
MM
6259}
6260
d43f603d
KL
6261/* Returns true if T depends on any template parameter with level LEVEL. */
6262
6263int
6264uses_template_parms_level (tree t, int level)
6265{
c095a4f8
DG
6266 return for_each_template_parm (t, template_parm_this_level_p, &level, NULL,
6267 /*include_nondeduced_p=*/true);
d43f603d
KL
6268}
6269
27fafc8d 6270static int tinst_depth;
e9f32eb5 6271extern int max_tinst_depth;
5566b478 6272#ifdef GATHER_STATISTICS
27fafc8d 6273int depth_reached;
5566b478 6274#endif
8dfaeb63
MM
6275static int tinst_level_tick;
6276static int last_template_error_tick;
8d08fdba 6277
3ae18eaf
JM
6278/* We're starting to instantiate D; record the template instantiation context
6279 for diagnostics and to restore it later. */
6280
aa9d8196 6281static int
3a978d72 6282push_tinst_level (tree d)
8d08fdba 6283{
e2c3721c 6284 struct tinst_level *new;
8d08fdba 6285
7215f9a0
MS
6286 if (tinst_depth >= max_tinst_depth)
6287 {
8adf5b5e
JM
6288 /* If the instantiation in question still has unbound template parms,
6289 we don't really care if we can't instantiate it, so just return.
0cbd7506 6290 This happens with base instantiation for implicit `typename'. */
8adf5b5e
JM
6291 if (uses_template_parms (d))
6292 return 0;
6293
1139b3d8 6294 last_template_error_tick = tinst_level_tick;
0f51ccfc 6295 error ("template instantiation depth exceeds maximum of %d (use "
0cbd7506 6296 "-ftemplate-depth-NN to increase the maximum) instantiating %qD",
b4f4233d 6297 max_tinst_depth, d);
5566b478 6298
cb753e49 6299 print_instantiation_context ();
5566b478 6300
7215f9a0
MS
6301 return 0;
6302 }
6303
e2c3721c
PB
6304 new = GGC_NEW (struct tinst_level);
6305 new->decl = d;
6306 new->locus = input_location;
6307 new->in_system_header_p = in_system_header;
6308 new->next = current_tinst_level;
8d08fdba 6309 current_tinst_level = new;
5566b478 6310
7215f9a0 6311 ++tinst_depth;
5566b478
MS
6312#ifdef GATHER_STATISTICS
6313 if (tinst_depth > depth_reached)
6314 depth_reached = tinst_depth;
6315#endif
6316
27fafc8d 6317 ++tinst_level_tick;
7215f9a0 6318 return 1;
8d08fdba
MS
6319}
6320
3ae18eaf
JM
6321/* We're done instantiating this template; return to the instantiation
6322 context. */
6323
aa9d8196 6324static void
3a978d72 6325pop_tinst_level (void)
8d08fdba 6326{
ae58fa02
MM
6327 /* Restore the filename and line number stashed away when we started
6328 this instantiation. */
e2c3721c
PB
6329 input_location = current_tinst_level->locus;
6330 in_system_header = current_tinst_level->in_system_header_p;
6331 current_tinst_level = current_tinst_level->next;
7215f9a0 6332 --tinst_depth;
27fafc8d 6333 ++tinst_level_tick;
8d08fdba
MS
6334}
6335
3ae18eaf
JM
6336/* We're instantiating a deferred template; restore the template
6337 instantiation context in which the instantiation was requested, which
e2c3721c 6338 is one step out from LEVEL. Return the corresponding DECL or TYPE. */
3ae18eaf 6339
e2c3721c
PB
6340static tree
6341reopen_tinst_level (struct tinst_level *level)
3ae18eaf 6342{
e2c3721c 6343 struct tinst_level *t;
3ae18eaf
JM
6344
6345 tinst_depth = 0;
e2c3721c 6346 for (t = level; t; t = t->next)
3ae18eaf
JM
6347 ++tinst_depth;
6348
6349 current_tinst_level = level;
6350 pop_tinst_level ();
e2c3721c 6351 return level->decl;
3ae18eaf
JM
6352}
6353
61172206
JM
6354/* Returns the TINST_LEVEL which gives the original instantiation
6355 context. */
6356
e2c3721c 6357struct tinst_level *
61172206
JM
6358outermost_tinst_level (void)
6359{
e2c3721c
PB
6360 struct tinst_level *level = current_tinst_level;
6361 if (level)
6362 while (level->next)
6363 level = level->next;
6364 return level;
61172206
JM
6365}
6366
f84b4be9
JM
6367/* DECL is a friend FUNCTION_DECL or TEMPLATE_DECL. ARGS is the
6368 vector of template arguments, as for tsubst.
6369
dc957d14 6370 Returns an appropriate tsubst'd friend declaration. */
f84b4be9
JM
6371
6372static tree
3a978d72 6373tsubst_friend_function (tree decl, tree args)
f84b4be9
JM
6374{
6375 tree new_friend;
27fafc8d 6376
c8094d83 6377 if (TREE_CODE (decl) == FUNCTION_DECL
f84b4be9
JM
6378 && DECL_TEMPLATE_INSTANTIATION (decl)
6379 && TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
6380 /* This was a friend declared with an explicit template
6381 argument list, e.g.:
c8094d83 6382
f84b4be9 6383 friend void f<>(T);
c8094d83 6384
f84b4be9
JM
6385 to indicate that f was a template instantiation, not a new
6386 function declaration. Now, we have to figure out what
6387 instantiation of what template. */
6388 {
76e57b45 6389 tree template_id, arglist, fns;
f84b4be9
JM
6390 tree new_args;
6391 tree tmpl;
ed2fa432 6392 tree ns = decl_namespace_context (TYPE_MAIN_DECL (current_class_type));
c8094d83 6393
76e57b45 6394 /* Friend functions are looked up in the containing namespace scope.
0cbd7506
MS
6395 We must enter that scope, to avoid finding member functions of the
6396 current cless with same name. */
76e57b45
NS
6397 push_nested_namespace (ns);
6398 fns = tsubst_expr (DECL_TI_TEMPLATE (decl), args,
015c2c66
MM
6399 tf_warning_or_error, NULL_TREE,
6400 /*integral_constant_expression_p=*/false);
76e57b45
NS
6401 pop_nested_namespace (ns);
6402 arglist = tsubst (DECL_TI_ARGS (decl), args,
23fca1f5 6403 tf_warning_or_error, NULL_TREE);
76e57b45 6404 template_id = lookup_template_function (fns, arglist);
c8094d83 6405
23fca1f5 6406 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
36a117a5 6407 tmpl = determine_specialization (template_id, new_friend,
c8094d83 6408 &new_args,
5fe7b654 6409 /*need_member_template=*/0,
29a1da1c
MM
6410 TREE_VEC_LENGTH (args),
6411 tsk_none);
6e432b31 6412 return instantiate_template (tmpl, new_args, tf_error);
f84b4be9 6413 }
36a117a5 6414
23fca1f5 6415 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
c8094d83 6416
36a117a5 6417 /* The NEW_FRIEND will look like an instantiation, to the
f84b4be9
JM
6418 compiler, but is not an instantiation from the point of view of
6419 the language. For example, we might have had:
c8094d83 6420
f84b4be9
JM
6421 template <class T> struct S {
6422 template <class U> friend void f(T, U);
6423 };
c8094d83 6424
f84b4be9
JM
6425 Then, in S<int>, template <class U> void f(int, U) is not an
6426 instantiation of anything. */
ac2b3222
AP
6427 if (new_friend == error_mark_node)
6428 return error_mark_node;
c8094d83 6429
f84b4be9
JM
6430 DECL_USE_TEMPLATE (new_friend) = 0;
6431 if (TREE_CODE (decl) == TEMPLATE_DECL)
655dc6ee
JM
6432 {
6433 DECL_USE_TEMPLATE (DECL_TEMPLATE_RESULT (new_friend)) = 0;
6434 DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (new_friend))
6435 = DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (decl));
6436 }
36a117a5 6437
92643fea
MM
6438 /* The mangled name for the NEW_FRIEND is incorrect. The function
6439 is not a template instantiation and should not be mangled like
6440 one. Therefore, we forget the mangling here; we'll recompute it
6441 later if we need it. */
36a117a5
MM
6442 if (TREE_CODE (new_friend) != TEMPLATE_DECL)
6443 {
19e7881c 6444 SET_DECL_RTL (new_friend, NULL_RTX);
92643fea 6445 SET_DECL_ASSEMBLER_NAME (new_friend, NULL_TREE);
36a117a5 6446 }
c8094d83 6447
6eb3bb27 6448 if (DECL_NAMESPACE_SCOPE_P (new_friend))
f84b4be9 6449 {
36a117a5 6450 tree old_decl;
fbf1c34b
MM
6451 tree new_friend_template_info;
6452 tree new_friend_result_template_info;
92da7074 6453 tree ns;
fbf1c34b
MM
6454 int new_friend_is_defn;
6455
6456 /* We must save some information from NEW_FRIEND before calling
6457 duplicate decls since that function will free NEW_FRIEND if
6458 possible. */
6459 new_friend_template_info = DECL_TEMPLATE_INFO (new_friend);
5bd61841 6460 new_friend_is_defn =
c8094d83 6461 (DECL_INITIAL (DECL_TEMPLATE_RESULT
5bd61841
MM
6462 (template_for_substitution (new_friend)))
6463 != NULL_TREE);
f84b4be9 6464 if (TREE_CODE (new_friend) == TEMPLATE_DECL)
fbf1c34b
MM
6465 {
6466 /* This declaration is a `primary' template. */
6467 DECL_PRIMARY_TEMPLATE (new_friend) = new_friend;
c8094d83 6468
fbf1c34b 6469 new_friend_result_template_info
17aec3eb 6470 = DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (new_friend));
fbf1c34b
MM
6471 }
6472 else
5bd61841 6473 new_friend_result_template_info = NULL_TREE;
36a117a5 6474
b01e6d2b
JM
6475 /* Make the init_value nonzero so pushdecl knows this is a defn. */
6476 if (new_friend_is_defn)
6477 DECL_INITIAL (new_friend) = error_mark_node;
6478
1c227897
MM
6479 /* Inside pushdecl_namespace_level, we will push into the
6480 current namespace. However, the friend function should go
c6002625 6481 into the namespace of the template. */
92da7074
ML
6482 ns = decl_namespace_context (new_friend);
6483 push_nested_namespace (ns);
d63d5d0c 6484 old_decl = pushdecl_namespace_level (new_friend, /*is_friend=*/true);
92da7074 6485 pop_nested_namespace (ns);
36a117a5 6486
0014c247
VR
6487 if (old_decl == error_mark_node)
6488 return error_mark_node;
6489
36a117a5
MM
6490 if (old_decl != new_friend)
6491 {
6492 /* This new friend declaration matched an existing
6493 declaration. For example, given:
6494
6495 template <class T> void f(T);
c8094d83
MS
6496 template <class U> class C {
6497 template <class T> friend void f(T) {}
36a117a5
MM
6498 };
6499
6500 the friend declaration actually provides the definition
6501 of `f', once C has been instantiated for some type. So,
6502 old_decl will be the out-of-class template declaration,
6503 while new_friend is the in-class definition.
6504
6505 But, if `f' was called before this point, the
6506 instantiation of `f' will have DECL_TI_ARGS corresponding
6507 to `T' but not to `U', references to which might appear
6508 in the definition of `f'. Previously, the most general
6509 template for an instantiation of `f' was the out-of-class
6510 version; now it is the in-class version. Therefore, we
6511 run through all specialization of `f', adding to their
6512 DECL_TI_ARGS appropriately. In particular, they need a
6513 new set of outer arguments, corresponding to the
c8094d83 6514 arguments for this class instantiation.
36a117a5
MM
6515
6516 The same situation can arise with something like this:
6517
6518 friend void f(int);
c8094d83 6519 template <class T> class C {
0cbd7506
MS
6520 friend void f(T) {}
6521 };
36a117a5
MM
6522
6523 when `C<int>' is instantiated. Now, `f(int)' is defined
6524 in the class. */
6525
fbf1c34b
MM
6526 if (!new_friend_is_defn)
6527 /* On the other hand, if the in-class declaration does
6528 *not* provide a definition, then we don't want to alter
6529 existing definitions. We can just leave everything
6530 alone. */
36a117a5 6531 ;
fbf1c34b 6532 else
36a117a5 6533 {
fbf1c34b
MM
6534 /* Overwrite whatever template info was there before, if
6535 any, with the new template information pertaining to
6536 the declaration. */
6537 DECL_TEMPLATE_INFO (old_decl) = new_friend_template_info;
6538
6539 if (TREE_CODE (old_decl) != TEMPLATE_DECL)
8d83f792
MM
6540 reregister_specialization (new_friend,
6541 most_general_template (old_decl),
6542 old_decl);
c8094d83 6543 else
36a117a5 6544 {
fbf1c34b
MM
6545 tree t;
6546 tree new_friend_args;
6547
c8094d83 6548 DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (old_decl))
fbf1c34b 6549 = new_friend_result_template_info;
c8094d83 6550
fbf1c34b 6551 new_friend_args = TI_ARGS (new_friend_template_info);
c8094d83 6552 for (t = DECL_TEMPLATE_SPECIALIZATIONS (old_decl);
fbf1c34b
MM
6553 t != NULL_TREE;
6554 t = TREE_CHAIN (t))
6555 {
6556 tree spec = TREE_VALUE (t);
c8094d83
MS
6557
6558 DECL_TI_ARGS (spec)
fbf1c34b
MM
6559 = add_outermost_template_args (new_friend_args,
6560 DECL_TI_ARGS (spec));
fbf1c34b
MM
6561 }
6562
6563 /* Now, since specializations are always supposed to
6564 hang off of the most general template, we must move
6565 them. */
6566 t = most_general_template (old_decl);
6567 if (t != old_decl)
6568 {
6569 DECL_TEMPLATE_SPECIALIZATIONS (t)
6570 = chainon (DECL_TEMPLATE_SPECIALIZATIONS (t),
6571 DECL_TEMPLATE_SPECIALIZATIONS (old_decl));
6572 DECL_TEMPLATE_SPECIALIZATIONS (old_decl) = NULL_TREE;
6573 }
36a117a5
MM
6574 }
6575 }
6576
6577 /* The information from NEW_FRIEND has been merged into OLD_DECL
6578 by duplicate_decls. */
6579 new_friend = old_decl;
6580 }
f84b4be9 6581 }
6e432b31 6582 else
f84b4be9 6583 {
6e432b31
KL
6584 tree context = DECL_CONTEXT (new_friend);
6585 bool dependent_p;
6586
6587 /* In the code
6588 template <class T> class C {
6589 template <class U> friend void C1<U>::f (); // case 1
6590 friend void C2<T>::f (); // case 2
6591 };
6592 we only need to make sure CONTEXT is a complete type for
6593 case 2. To distinguish between the two cases, we note that
6594 CONTEXT of case 1 remains dependent type after tsubst while
6595 this isn't true for case 2. */
6596 ++processing_template_decl;
6597 dependent_p = dependent_type_p (context);
6598 --processing_template_decl;
6599
6600 if (!dependent_p
6601 && !complete_type_or_else (context, NULL_TREE))
6602 return error_mark_node;
6603
6604 if (COMPLETE_TYPE_P (context))
6605 {
6606 /* Check to see that the declaration is really present, and,
6607 possibly obtain an improved declaration. */
6608 tree fn = check_classfn (context,
6609 new_friend, NULL_TREE);
6610
684939ce 6611 if (fn)
6e432b31
KL
6612 new_friend = fn;
6613 }
f84b4be9
JM
6614 }
6615
6616 return new_friend;
6617}
6618
1aed5355
MM
6619/* FRIEND_TMPL is a friend TEMPLATE_DECL. ARGS is the vector of
6620 template arguments, as for tsubst.
6757edfe 6621
dc957d14 6622 Returns an appropriate tsubst'd friend type or error_mark_node on
4b054b80 6623 failure. */
6757edfe
MM
6624
6625static tree
3a978d72 6626tsubst_friend_class (tree friend_tmpl, tree args)
6757edfe 6627{
1aed5355 6628 tree friend_type;
25aab5d0 6629 tree tmpl;
3e0ec82f 6630 tree context;
6757edfe 6631
3e0ec82f
MM
6632 context = DECL_CONTEXT (friend_tmpl);
6633
6634 if (context)
77adef84 6635 {
3e0ec82f
MM
6636 if (TREE_CODE (context) == NAMESPACE_DECL)
6637 push_nested_namespace (context);
6638 else
c8094d83 6639 push_nested_class (tsubst (context, args, tf_none, NULL_TREE));
3e0ec82f 6640 }
25aab5d0 6641
105d72c5
MM
6642 /* Look for a class template declaration. We look for hidden names
6643 because two friend declarations of the same template are the
6644 same. For example, in:
6645
6646 struct A {
6647 template <typename> friend class F;
6648 };
6649 template <typename> struct B {
6650 template <typename> friend class F;
6651 };
6652
6653 both F templates are the same. */
6654 tmpl = lookup_name_real (DECL_NAME (friend_tmpl), 0, 0,
6655 /*block_p=*/true, 0,
6656 LOOKUP_COMPLAIN | LOOKUP_HIDDEN);
25aab5d0 6657
3e0ec82f
MM
6658 /* But, if we don't find one, it might be because we're in a
6659 situation like this:
77adef84 6660
3e0ec82f
MM
6661 template <class T>
6662 struct S {
6663 template <class U>
6664 friend struct S;
6665 };
6666
6667 Here, in the scope of (say) S<int>, `S' is bound to a TYPE_DECL
6668 for `S<int>', not the TEMPLATE_DECL. */
6669 if (!tmpl || !DECL_CLASS_TEMPLATE_P (tmpl))
6670 {
10e6657a 6671 tmpl = lookup_name_prefer_type (DECL_NAME (friend_tmpl), 1);
3e0ec82f 6672 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
25aab5d0 6673 }
6757edfe 6674
25aab5d0 6675 if (tmpl && DECL_CLASS_TEMPLATE_P (tmpl))
6757edfe
MM
6676 {
6677 /* The friend template has already been declared. Just
36a117a5
MM
6678 check to see that the declarations match, and install any new
6679 default parameters. We must tsubst the default parameters,
6680 of course. We only need the innermost template parameters
6681 because that is all that redeclare_class_template will look
6682 at. */
3e0ec82f
MM
6683 if (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (friend_tmpl))
6684 > TMPL_ARGS_DEPTH (args))
6685 {
6686 tree parms;
b131ad7c 6687 location_t saved_input_location;
3e0ec82f 6688 parms = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_tmpl),
23fca1f5 6689 args, tf_warning_or_error);
b131ad7c
MLI
6690
6691 saved_input_location = input_location;
6692 input_location = DECL_SOURCE_LOCATION (friend_tmpl);
3e0ec82f 6693 redeclare_class_template (TREE_TYPE (tmpl), parms);
b131ad7c
MLI
6694 input_location = saved_input_location;
6695
3e0ec82f
MM
6696 }
6697
6757edfe
MM
6698 friend_type = TREE_TYPE (tmpl);
6699 }
6700 else
6701 {
6702 /* The friend template has not already been declared. In this
6703 case, the instantiation of the template class will cause the
6704 injection of this template into the global scope. */
23fca1f5 6705 tmpl = tsubst (friend_tmpl, args, tf_warning_or_error, NULL_TREE);
dca56f77
VR
6706 if (tmpl == error_mark_node)
6707 return error_mark_node;
6757edfe
MM
6708
6709 /* The new TMPL is not an instantiation of anything, so we
0cbd7506 6710 forget its origins. We don't reset CLASSTYPE_TI_TEMPLATE for
6757edfe
MM
6711 the new type because that is supposed to be the corresponding
6712 template decl, i.e., TMPL. */
6713 DECL_USE_TEMPLATE (tmpl) = 0;
6714 DECL_TEMPLATE_INFO (tmpl) = NULL_TREE;
6715 CLASSTYPE_USE_TEMPLATE (TREE_TYPE (tmpl)) = 0;
68c78847
KL
6716 CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl))
6717 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl)));
6757edfe
MM
6718
6719 /* Inject this template into the global scope. */
d63d5d0c 6720 friend_type = TREE_TYPE (pushdecl_top_level_maybe_friend (tmpl, true));
6757edfe
MM
6721 }
6722
c8094d83 6723 if (context)
3e0ec82f
MM
6724 {
6725 if (TREE_CODE (context) == NAMESPACE_DECL)
6726 pop_nested_namespace (context);
6727 else
6728 pop_nested_class ();
6729 }
6730
6757edfe
MM
6731 return friend_type;
6732}
f84b4be9 6733
17f29637
KL
6734/* Returns zero if TYPE cannot be completed later due to circularity.
6735 Otherwise returns one. */
6736
d5372501 6737static int
3a978d72 6738can_complete_type_without_circularity (tree type)
17f29637
KL
6739{
6740 if (type == NULL_TREE || type == error_mark_node)
6741 return 0;
6742 else if (COMPLETE_TYPE_P (type))
6743 return 1;
6744 else if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type))
6745 return can_complete_type_without_circularity (TREE_TYPE (type));
8c6ab2db
NS
6746 else if (CLASS_TYPE_P (type)
6747 && TYPE_BEING_DEFINED (TYPE_MAIN_VARIANT (type)))
17f29637
KL
6748 return 0;
6749 else
6750 return 1;
6751}
6752
4f4141ff
JM
6753/* Apply any attributes which had to be deferred until instantiation
6754 time. DECL_P, ATTRIBUTES and ATTR_FLAGS are as cplus_decl_attributes;
6755 ARGS, COMPLAIN, IN_DECL are as tsubst. */
6756
6757static void
6758apply_late_template_attributes (tree *decl_p, tree attributes, int attr_flags,
6759 tree args, tsubst_flags_t complain, tree in_decl)
6760{
5818c8e4 6761 tree last_dep = NULL_TREE;
4f4141ff 6762 tree t;
5818c8e4
JM
6763 tree *p;
6764
6765 for (t = attributes; t; t = TREE_CHAIN (t))
6766 if (ATTR_IS_DEPENDENT (t))
6767 {
6768 last_dep = t;
6769 attributes = copy_list (attributes);
6770 break;
6771 }
4f4141ff
JM
6772
6773 if (DECL_P (*decl_p))
823e5f7f
JJ
6774 {
6775 if (TREE_TYPE (*decl_p) == error_mark_node)
6776 return;
6777 p = &DECL_ATTRIBUTES (*decl_p);
6778 }
4f4141ff 6779 else
5818c8e4 6780 p = &TYPE_ATTRIBUTES (*decl_p);
4f4141ff 6781
5818c8e4
JM
6782 if (last_dep)
6783 {
6784 tree late_attrs = NULL_TREE;
6785 tree *q = &late_attrs;
6786
6787 for (*p = attributes; *p; )
6788 {
6789 t = *p;
6790 if (ATTR_IS_DEPENDENT (t))
6791 {
6792 *p = TREE_CHAIN (t);
6793 TREE_CHAIN (t) = NULL_TREE;
ff2f1c5f
JJ
6794 /* If the first attribute argument is an identifier, don't
6795 pass it through tsubst. Attributes like mode, format,
6796 cleanup and several target specific attributes expect it
6797 unmodified. */
6798 if (TREE_VALUE (t)
6799 && TREE_CODE (TREE_VALUE (t)) == TREE_LIST
6800 && TREE_VALUE (TREE_VALUE (t))
6801 && (TREE_CODE (TREE_VALUE (TREE_VALUE (t)))
6802 == IDENTIFIER_NODE))
6803 {
6804 tree chain
6805 = tsubst_expr (TREE_CHAIN (TREE_VALUE (t)), args, complain,
6806 in_decl,
6807 /*integral_constant_expression_p=*/false);
6808 if (chain != TREE_CHAIN (TREE_VALUE (t)))
6809 TREE_VALUE (t)
6810 = tree_cons (NULL_TREE, TREE_VALUE (TREE_VALUE (t)),
6811 chain);
6812 }
6813 else
6814 TREE_VALUE (t)
6815 = tsubst_expr (TREE_VALUE (t), args, complain, in_decl,
6816 /*integral_constant_expression_p=*/false);
5818c8e4
JM
6817 *q = t;
6818 q = &TREE_CHAIN (t);
6819 }
6820 else
6821 p = &TREE_CHAIN (t);
6822 }
4f4141ff 6823
5818c8e4
JM
6824 cplus_decl_attributes (decl_p, late_attrs, attr_flags);
6825 }
4f4141ff
JM
6826}
6827
8d08fdba 6828tree
3a978d72 6829instantiate_class_template (tree type)
8d08fdba 6830{
7088fca9 6831 tree template, args, pattern, t, member;
36a117a5 6832 tree typedecl;
dbbf88d1 6833 tree pbinfo;
cad7e87b 6834 tree base_list;
c8094d83 6835
5566b478 6836 if (type == error_mark_node)
8d08fdba
MS
6837 return error_mark_node;
6838
c8094d83 6839 if (TYPE_BEING_DEFINED (type)
ca099ac8
MM
6840 || COMPLETE_TYPE_P (type)
6841 || dependent_type_p (type))
5566b478
MS
6842 return type;
6843
6bdb985f 6844 /* Figure out which template is being instantiated. */
36a117a5 6845 template = most_general_template (CLASSTYPE_TI_TEMPLATE (type));
50bc768d 6846 gcc_assert (TREE_CODE (template) == TEMPLATE_DECL);
73aad9b9 6847
4c571114
MM
6848 /* Determine what specialization of the original template to
6849 instantiate. */
916b63c3 6850 t = most_specialized_class (type, template);
8fbc5ae7 6851 if (t == error_mark_node)
73aad9b9 6852 {
8fbc5ae7
MM
6853 TYPE_BEING_DEFINED (type) = 1;
6854 return error_mark_node;
73aad9b9 6855 }
916b63c3
MM
6856 else if (t)
6857 {
6858 /* This TYPE is actually an instantiation of a partial
6859 specialization. We replace the innermost set of ARGS with
6860 the arguments appropriate for substitution. For example,
6861 given:
3db45ab5
MS
6862
6863 template <class T> struct S {};
916b63c3 6864 template <class T> struct S<T*> {};
6bdb985f 6865
916b63c3 6866 and supposing that we are instantiating S<int*>, ARGS will
3db45ab5 6867 presently be {int*} -- but we need {int}. */
916b63c3
MM
6868 pattern = TREE_TYPE (t);
6869 args = TREE_PURPOSE (t);
6870 }
73aad9b9 6871 else
916b63c3
MM
6872 {
6873 pattern = TREE_TYPE (template);
6874 args = CLASSTYPE_TI_ARGS (type);
6875 }
5566b478 6876
4c571114
MM
6877 /* If the template we're instantiating is incomplete, then clearly
6878 there's nothing we can do. */
d0f062fb 6879 if (!COMPLETE_TYPE_P (pattern))
f31c0a32 6880 return type;
5566b478 6881
4c571114
MM
6882 /* If we've recursively instantiated too many templates, stop. */
6883 if (! push_tinst_level (type))
f31c0a32 6884 return type;
4c571114
MM
6885
6886 /* Now we're really doing the instantiation. Mark the type as in
6887 the process of being defined. */
6888 TYPE_BEING_DEFINED (type) = 1;
6889
78757caa
KL
6890 /* We may be in the middle of deferred access check. Disable
6891 it now. */
6892 push_deferring_access_checks (dk_no_deferred);
6893
c353b8e3 6894 push_to_top_level ();
4c571114 6895
7813d14c 6896 SET_CLASSTYPE_INTERFACE_UNKNOWN (type);
8d08fdba 6897
68ea098a
NS
6898 /* Set the input location to the template definition. This is needed
6899 if tsubsting causes an error. */
12af7ba3
MM
6900 typedecl = TYPE_MAIN_DECL (type);
6901 input_location = DECL_SOURCE_LOCATION (typedecl);
6902 in_system_header = DECL_IN_SYSTEM_HEADER (typedecl);
68ea098a 6903
0fcedd9c 6904 TYPE_HAS_USER_CONSTRUCTOR (type) = TYPE_HAS_USER_CONSTRUCTOR (pattern);
834c6dff
MM
6905 TYPE_HAS_NEW_OPERATOR (type) = TYPE_HAS_NEW_OPERATOR (pattern);
6906 TYPE_HAS_ARRAY_NEW_OPERATOR (type) = TYPE_HAS_ARRAY_NEW_OPERATOR (pattern);
f7da6097 6907 TYPE_GETS_DELETE (type) = TYPE_GETS_DELETE (pattern);
f7da6097
MS
6908 TYPE_HAS_ASSIGN_REF (type) = TYPE_HAS_ASSIGN_REF (pattern);
6909 TYPE_HAS_CONST_ASSIGN_REF (type) = TYPE_HAS_CONST_ASSIGN_REF (pattern);
f7da6097
MS
6910 TYPE_HAS_INIT_REF (type) = TYPE_HAS_INIT_REF (pattern);
6911 TYPE_HAS_CONST_INIT_REF (type) = TYPE_HAS_CONST_INIT_REF (pattern);
f7da6097
MS
6912 TYPE_HAS_DEFAULT_CONSTRUCTOR (type) = TYPE_HAS_DEFAULT_CONSTRUCTOR (pattern);
6913 TYPE_HAS_CONVERSION (type) = TYPE_HAS_CONVERSION (pattern);
f7da6097
MS
6914 TYPE_PACKED (type) = TYPE_PACKED (pattern);
6915 TYPE_ALIGN (type) = TYPE_ALIGN (pattern);
11cf4d18 6916 TYPE_USER_ALIGN (type) = TYPE_USER_ALIGN (pattern);
eff71ab0 6917 TYPE_FOR_JAVA (type) = TYPE_FOR_JAVA (pattern); /* For libjava's JArray<T> */
6bdb8141
JM
6918 if (ANON_AGGR_TYPE_P (pattern))
6919 SET_ANON_AGGR_TYPE_P (type);
8d039470
MS
6920 if (CLASSTYPE_VISIBILITY_SPECIFIED (pattern))
6921 {
6922 CLASSTYPE_VISIBILITY_SPECIFIED (type) = 1;
6923 CLASSTYPE_VISIBILITY (type) = CLASSTYPE_VISIBILITY (pattern);
6924 }
f7da6097 6925
dbbf88d1 6926 pbinfo = TYPE_BINFO (pattern);
1456deaf 6927
315fb5db
NS
6928 /* We should never instantiate a nested class before its enclosing
6929 class; we need to look up the nested class by name before we can
6930 instantiate it, and that lookup should instantiate the enclosing
6931 class. */
6932 gcc_assert (!DECL_CLASS_SCOPE_P (TYPE_MAIN_DECL (pattern))
6933 || COMPLETE_TYPE_P (TYPE_CONTEXT (type))
6934 || TYPE_BEING_DEFINED (TYPE_CONTEXT (type)));
1456deaf 6935
cad7e87b 6936 base_list = NULL_TREE;
fa743e8c 6937 if (BINFO_N_BASE_BINFOS (pbinfo))
3fd71a52 6938 {
fa743e8c 6939 tree pbase_binfo;
a2507277 6940 tree context = TYPE_CONTEXT (type);
4514aa8c 6941 tree pushed_scope;
3fd71a52 6942 int i;
5566b478 6943
a2507277
NS
6944 /* We must enter the scope containing the type, as that is where
6945 the accessibility of types named in dependent bases are
6946 looked up from. */
4514aa8c 6947 pushed_scope = push_scope (context ? context : global_namespace);
c8094d83 6948
3fd71a52
MM
6949 /* Substitute into each of the bases to determine the actual
6950 basetypes. */
fa743e8c 6951 for (i = 0; BINFO_BASE_ITERATE (pbinfo, i, pbase_binfo); i++)
3fd71a52
MM
6952 {
6953 tree base;
fa743e8c 6954 tree access = BINFO_BASE_ACCESS (pbinfo, i);
5d80a306
DG
6955 tree expanded_bases = NULL_TREE;
6956 int idx, len = 1;
6957
6958 if (PACK_EXPANSION_P (BINFO_TYPE (pbase_binfo)))
6959 {
6960 expanded_bases =
6961 tsubst_pack_expansion (BINFO_TYPE (pbase_binfo),
6962 args, tf_error, NULL_TREE);
6963 if (expanded_bases == error_mark_node)
6964 continue;
6965
6966 len = TREE_VEC_LENGTH (expanded_bases);
6967 }
6968
6969 for (idx = 0; idx < len; idx++)
6970 {
6971 if (expanded_bases)
6972 /* Extract the already-expanded base class. */
6973 base = TREE_VEC_ELT (expanded_bases, idx);
6974 else
6975 /* Substitute to figure out the base class. */
6976 base = tsubst (BINFO_TYPE (pbase_binfo), args, tf_error,
6977 NULL_TREE);
6978
6979 if (base == error_mark_node)
6980 continue;
6981
6982 base_list = tree_cons (access, base, base_list);
6983 if (BINFO_VIRTUAL_P (pbase_binfo))
6984 TREE_TYPE (base_list) = integer_type_node;
6985 }
3fd71a52 6986 }
dfbcd65a 6987
3fd71a52
MM
6988 /* The list is now in reverse order; correct that. */
6989 base_list = nreverse (base_list);
6990
4514aa8c
NS
6991 if (pushed_scope)
6992 pop_scope (pushed_scope);
3fd71a52 6993 }
cad7e87b
NS
6994 /* Now call xref_basetypes to set up all the base-class
6995 information. */
6996 xref_basetypes (type, base_list);
6997
4f4141ff
JM
6998 apply_late_template_attributes (&type, TYPE_ATTRIBUTES (pattern),
6999 (int) ATTR_FLAG_TYPE_IN_PLACE,
7000 args, tf_error, NULL_TREE);
5566b478 7001
b74a0560
MM
7002 /* Now that our base classes are set up, enter the scope of the
7003 class, so that name lookups into base classes, etc. will work
dc957d14 7004 correctly. This is precisely analogous to what we do in
b74a0560 7005 begin_class_definition when defining an ordinary non-template
56d0c6e3
JM
7006 class, except we also need to push the enclosing classes. */
7007 push_nested_class (type);
b74a0560 7008
7088fca9 7009 /* Now members are processed in the order of declaration. */
8c6ab2db
NS
7010 for (member = CLASSTYPE_DECL_LIST (pattern);
7011 member; member = TREE_CHAIN (member))
8d08fdba 7012 {
7088fca9 7013 tree t = TREE_VALUE (member);
5566b478 7014
7088fca9 7015 if (TREE_PURPOSE (member))
ed44da02 7016 {
7088fca9
KL
7017 if (TYPE_P (t))
7018 {
5e0c54e5 7019 /* Build new CLASSTYPE_NESTED_UTDS. */
8d08fdba 7020
7088fca9 7021 tree newtag;
883a2bff
MM
7022 bool class_template_p;
7023
2678bae8
VR
7024 class_template_p = (TREE_CODE (t) != ENUMERAL_TYPE
7025 && TYPE_LANG_SPECIFIC (t)
7026 && CLASSTYPE_IS_TEMPLATE (t));
883a2bff 7027 /* If the member is a class template, then -- even after
6c745393 7028 substitution -- there may be dependent types in the
883a2bff
MM
7029 template argument list for the class. We increment
7030 PROCESSING_TEMPLATE_DECL so that dependent_type_p, as
7031 that function will assume that no types are dependent
7032 when outside of a template. */
7033 if (class_template_p)
7034 ++processing_template_decl;
2678bae8 7035 newtag = tsubst (t, args, tf_error, NULL_TREE);
883a2bff
MM
7036 if (class_template_p)
7037 --processing_template_decl;
2620d095
KL
7038 if (newtag == error_mark_node)
7039 continue;
7040
7088fca9
KL
7041 if (TREE_CODE (newtag) != ENUMERAL_TYPE)
7042 {
2678bae8
VR
7043 tree name = TYPE_IDENTIFIER (t);
7044
883a2bff 7045 if (class_template_p)
7088fca9
KL
7046 /* Unfortunately, lookup_template_class sets
7047 CLASSTYPE_IMPLICIT_INSTANTIATION for a partial
3afd2e20
NS
7048 instantiation (i.e., for the type of a member
7049 template class nested within a template class.)
7050 This behavior is required for
7051 maybe_process_partial_specialization to work
7052 correctly, but is not accurate in this case;
7053 the TAG is not an instantiation of anything.
7054 (The corresponding TEMPLATE_DECL is an
7055 instantiation, but the TYPE is not.) */
7088fca9
KL
7056 CLASSTYPE_USE_TEMPLATE (newtag) = 0;
7057
7058 /* Now, we call pushtag to put this NEWTAG into the scope of
7059 TYPE. We first set up the IDENTIFIER_TYPE_VALUE to avoid
7060 pushtag calling push_template_decl. We don't have to do
7061 this for enums because it will already have been done in
7062 tsubst_enum. */
7063 if (name)
7064 SET_IDENTIFIER_TYPE_VALUE (name, newtag);
bd3d082e 7065 pushtag (name, newtag, /*tag_scope=*/ts_current);
7088fca9
KL
7066 }
7067 }
c8094d83 7068 else if (TREE_CODE (t) == FUNCTION_DECL
7088fca9
KL
7069 || DECL_FUNCTION_TEMPLATE_P (t))
7070 {
7071 /* Build new TYPE_METHODS. */
fecafe5e 7072 tree r;
c8094d83 7073
fecafe5e 7074 if (TREE_CODE (t) == TEMPLATE_DECL)
9579624e 7075 ++processing_template_decl;
fecafe5e
NS
7076 r = tsubst (t, args, tf_error, NULL_TREE);
7077 if (TREE_CODE (t) == TEMPLATE_DECL)
9579624e 7078 --processing_template_decl;
7088fca9 7079 set_current_access_from_decl (r);
7088fca9
KL
7080 finish_member_declaration (r);
7081 }
7082 else
7083 {
7084 /* Build new TYPE_FIELDS. */
55a3debe
DG
7085 if (TREE_CODE (t) == STATIC_ASSERT)
7086 {
7087 tree condition =
7088 tsubst_expr (STATIC_ASSERT_CONDITION (t), args,
7089 tf_warning_or_error, NULL_TREE,
7090 /*integral_constant_expression_p=*/true);
7091 finish_static_assert (condition,
7092 STATIC_ASSERT_MESSAGE (t),
7093 STATIC_ASSERT_SOURCE_LOCATION (t),
7094 /*member_p=*/true);
7095 }
7096 else if (TREE_CODE (t) != CONST_DECL)
7088fca9
KL
7097 {
7098 tree r;
fa8d6e85 7099
d479d37f
NS
7100 /* The the file and line for this declaration, to
7101 assist in error message reporting. Since we
7102 called push_tinst_level above, we don't need to
7103 restore these. */
f31686a3 7104 input_location = DECL_SOURCE_LOCATION (t);
fa8d6e85 7105
fb5ce3c9 7106 if (TREE_CODE (t) == TEMPLATE_DECL)
9579624e 7107 ++processing_template_decl;
23fca1f5 7108 r = tsubst (t, args, tf_warning_or_error, NULL_TREE);
fb5ce3c9 7109 if (TREE_CODE (t) == TEMPLATE_DECL)
9579624e 7110 --processing_template_decl;
7088fca9
KL
7111 if (TREE_CODE (r) == VAR_DECL)
7112 {
b794e321
MM
7113 /* In [temp.inst]:
7114
7115 [t]he initialization (and any associated
7116 side-effects) of a static data member does
7117 not occur unless the static data member is
7118 itself used in a way that requires the
7119 definition of the static data member to
3db45ab5 7120 exist.
b794e321
MM
7121
7122 Therefore, we do not substitute into the
3db45ab5
MS
7123 initialized for the static data member here. */
7124 finish_static_data_member_decl
7125 (r,
7126 /*init=*/NULL_TREE,
d174af6c 7127 /*init_const_expr_p=*/false,
3db45ab5 7128 /*asmspec_tree=*/NULL_TREE,
b794e321 7129 /*flags=*/0);
7088fca9
KL
7130 if (DECL_INITIALIZED_IN_CLASS_P (r))
7131 check_static_variable_definition (r, TREE_TYPE (r));
7132 }
7133 else if (TREE_CODE (r) == FIELD_DECL)
7134 {
7135 /* Determine whether R has a valid type and can be
7136 completed later. If R is invalid, then it is
7137 replaced by error_mark_node so that it will not be
7138 added to TYPE_FIELDS. */
7139 tree rtype = TREE_TYPE (r);
7140 if (can_complete_type_without_circularity (rtype))
7141 complete_type (rtype);
7142
7143 if (!COMPLETE_TYPE_P (rtype))
7144 {
7145 cxx_incomplete_type_error (r, rtype);
0cbd7506 7146 r = error_mark_node;
7088fca9
KL
7147 }
7148 }
5566b478 7149
7088fca9
KL
7150 /* If it is a TYPE_DECL for a class-scoped ENUMERAL_TYPE,
7151 such a thing will already have been added to the field
7152 list by tsubst_enum in finish_member_declaration in the
5e0c54e5 7153 CLASSTYPE_NESTED_UTDS case above. */
7088fca9
KL
7154 if (!(TREE_CODE (r) == TYPE_DECL
7155 && TREE_CODE (TREE_TYPE (r)) == ENUMERAL_TYPE
43b26a01 7156 && DECL_ARTIFICIAL (r)))
7088fca9
KL
7157 {
7158 set_current_access_from_decl (r);
7159 finish_member_declaration (r);
7160 }
0cbd7506 7161 }
7088fca9 7162 }
61fc8c9e 7163 }
7088fca9
KL
7164 else
7165 {
7166 if (TYPE_P (t) || DECL_CLASS_TEMPLATE_P (t))
7167 {
7168 /* Build new CLASSTYPE_FRIEND_CLASSES. */
7169
7170 tree friend_type = t;
b939a023 7171 bool adjust_processing_template_decl = false;
1aed5355 7172
7088fca9 7173 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
b939a023 7174 {
5a24482e 7175 /* template <class T> friend class C; */
b939a023 7176 friend_type = tsubst_friend_class (friend_type, args);
0cbd7506 7177 adjust_processing_template_decl = true;
b939a023
KL
7178 }
7179 else if (TREE_CODE (friend_type) == UNBOUND_CLASS_TEMPLATE)
7180 {
5a24482e 7181 /* template <class T> friend class C::D; */
b939a023 7182 friend_type = tsubst (friend_type, args,
23fca1f5 7183 tf_warning_or_error, NULL_TREE);
b939a023
KL
7184 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
7185 friend_type = TREE_TYPE (friend_type);
0cbd7506 7186 adjust_processing_template_decl = true;
b939a023
KL
7187 }
7188 else if (TREE_CODE (friend_type) == TYPENAME_TYPE)
7189 {
5a24482e
KL
7190 /* This could be either
7191
7192 friend class T::C;
7193
7194 when dependent_type_p is false or
7195
7196 template <class U> friend class T::C;
7197
7198 otherwise. */
b939a023 7199 friend_type = tsubst (friend_type, args,
23fca1f5 7200 tf_warning_or_error, NULL_TREE);
b939a023
KL
7201 /* Bump processing_template_decl for correct
7202 dependent_type_p calculation. */
7203 ++processing_template_decl;
7204 if (dependent_type_p (friend_type))
7205 adjust_processing_template_decl = true;
7206 --processing_template_decl;
7207 }
5a24482e
KL
7208 else if (!CLASSTYPE_USE_TEMPLATE (friend_type)
7209 && hidden_name_p (TYPE_NAME (friend_type)))
7088fca9 7210 {
5a24482e
KL
7211 /* friend class C;
7212
7213 where C hasn't been declared yet. Let's lookup name
7214 from namespace scope directly, bypassing any name that
7215 come from dependent base class. */
7088fca9
KL
7216 tree ns = decl_namespace_context (TYPE_MAIN_DECL (friend_type));
7217
7218 /* The call to xref_tag_from_type does injection for friend
7219 classes. */
7220 push_nested_namespace (ns);
c8094d83
MS
7221 friend_type =
7222 xref_tag_from_type (friend_type, NULL_TREE,
5a24482e 7223 /*tag_scope=*/ts_current);
7088fca9
KL
7224 pop_nested_namespace (ns);
7225 }
5a24482e
KL
7226 else if (uses_template_parms (friend_type))
7227 /* friend class C<T>; */
7228 friend_type = tsubst (friend_type, args,
23fca1f5 7229 tf_warning_or_error, NULL_TREE);
5a24482e
KL
7230 /* Otherwise it's
7231
7232 friend class C;
7233
7234 where C is already declared or
7235
7236 friend class C<int>;
7237
0cbd7506 7238 We don't have to do anything in these cases. */
1aed5355 7239
b939a023 7240 if (adjust_processing_template_decl)
7088fca9
KL
7241 /* Trick make_friend_class into realizing that the friend
7242 we're adding is a template, not an ordinary class. It's
7243 important that we use make_friend_class since it will
7244 perform some error-checking and output cross-reference
7245 information. */
7246 ++processing_template_decl;
fc378698 7247
b939a023 7248 if (friend_type != error_mark_node)
0cbd7506 7249 make_friend_class (type, friend_type, /*complain=*/false);
fc378698 7250
b939a023 7251 if (adjust_processing_template_decl)
7088fca9
KL
7252 --processing_template_decl;
7253 }
7254 else
9579624e
KL
7255 {
7256 /* Build new DECL_FRIENDLIST. */
7257 tree r;
7258
6e432b31
KL
7259 /* The the file and line for this declaration, to
7260 assist in error message reporting. Since we
7261 called push_tinst_level above, we don't need to
7262 restore these. */
7263 input_location = DECL_SOURCE_LOCATION (t);
7264
9579624e 7265 if (TREE_CODE (t) == TEMPLATE_DECL)
cad7e87b
NS
7266 {
7267 ++processing_template_decl;
7268 push_deferring_access_checks (dk_no_check);
7269 }
c8094d83 7270
9579624e 7271 r = tsubst_friend_function (t, args);
9579624e 7272 add_friend (type, r, /*complain=*/false);
cad7e87b
NS
7273 if (TREE_CODE (t) == TEMPLATE_DECL)
7274 {
7275 pop_deferring_access_checks ();
7276 --processing_template_decl;
7277 }
9579624e 7278 }
7088fca9
KL
7279 }
7280 }
5566b478 7281
61a127b3
MM
7282 /* Set the file and line number information to whatever is given for
7283 the class itself. This puts error messages involving generated
7284 implicit functions at a predictable point, and the same point
7285 that would be used for non-template classes. */
f31686a3 7286 input_location = DECL_SOURCE_LOCATION (typedecl);
6de9cd9a 7287
61a127b3 7288 unreverse_member_declarations (type);
9f33663b 7289 finish_struct_1 (type);
5524676d 7290 TYPE_BEING_DEFINED (type) = 0;
8d08fdba 7291
9188c363
MM
7292 /* Now that the class is complete, instantiate default arguments for
7293 any member functions. We don't do this earlier because the
7294 default arguments may reference members of the class. */
7295 if (!PRIMARY_TEMPLATE_P (template))
7296 for (t = TYPE_METHODS (type); t; t = TREE_CHAIN (t))
c8094d83 7297 if (TREE_CODE (t) == FUNCTION_DECL
dc957d14 7298 /* Implicitly generated member functions will not have template
9188c363
MM
7299 information; they are not instantiations, but instead are
7300 created "fresh" for each instantiation. */
7301 && DECL_TEMPLATE_INFO (t))
7302 tsubst_default_arguments (t);
7303
56d0c6e3 7304 pop_nested_class ();
5566b478 7305 pop_from_top_level ();
78757caa 7306 pop_deferring_access_checks ();
5566b478
MS
7307 pop_tinst_level ();
7308
4684cd27
MM
7309 /* The vtable for a template class can be emitted in any translation
7310 unit in which the class is instantiated. When there is no key
7311 method, however, finish_struct_1 will already have added TYPE to
7312 the keyed_classes list. */
7313 if (TYPE_CONTAINS_VPTR_P (type) && CLASSTYPE_KEY_METHOD (type))
9aad8f83
MA
7314 keyed_classes = tree_cons (NULL_TREE, type, keyed_classes);
7315
5566b478 7316 return type;
8d08fdba
MS
7317}
7318
00d3396f 7319static tree
a91db711 7320tsubst_template_arg (tree t, tree args, tsubst_flags_t complain, tree in_decl)
00d3396f 7321{
a91db711 7322 tree r;
c8094d83 7323
a91db711
NS
7324 if (!t)
7325 r = t;
7326 else if (TYPE_P (t))
7327 r = tsubst (t, args, complain, in_decl);
7328 else
00d3396f 7329 {
015c2c66
MM
7330 r = tsubst_expr (t, args, complain, in_decl,
7331 /*integral_constant_expression_p=*/true);
6f25cb35 7332 r = fold_non_dependent_expr (r);
bd83b409 7333 }
5d80a306
DG
7334 return r;
7335}
7336
7337/* Substitute ARGS into T, which is an pack expansion
7338 (i.e. TYPE_PACK_EXPANSION or EXPR_PACK_EXPANSION). Returns a
7339 TREE_VEC with the substituted arguments, a PACK_EXPANSION_* node
7340 (if only a partial substitution could be performed) or
7341 ERROR_MARK_NODE if there was an error. */
7342tree
7343tsubst_pack_expansion (tree t, tree args, tsubst_flags_t complain,
7344 tree in_decl)
7345{
7346 tree pattern;
7347 tree pack, packs = NULL_TREE, unsubstituted_packs = NULL_TREE;
7348 tree first_arg_pack; int i, len = -1;
7349 tree result;
7350 int incomplete = 0;
7351
7352 gcc_assert (PACK_EXPANSION_P (t));
7353 pattern = PACK_EXPANSION_PATTERN (t);
7354
7355 /* Determine the argument packs that will instantiate the parameter
7356 packs used in the expansion expression. While we're at it,
7357 compute the number of arguments to be expanded and make sure it
7358 is consistent. */
7359 for (pack = PACK_EXPANSION_PARAMETER_PACKS (t); pack;
7360 pack = TREE_CHAIN (pack))
7361 {
7362 tree parm_pack = TREE_VALUE (pack);
7363 tree arg_pack = NULL_TREE;
7364 tree orig_arg = NULL_TREE;
7365
7366 if (TREE_CODE (parm_pack) == PARM_DECL)
29b0d1fd 7367 arg_pack = retrieve_local_specialization (parm_pack);
5d80a306
DG
7368 else
7369 {
7370 int level, idx, levels;
7371 template_parm_level_and_index (parm_pack, &level, &idx);
7372
7373 levels = TMPL_ARGS_DEPTH (args);
7374 if (level <= levels)
7375 arg_pack = TMPL_ARG (args, level, idx);
7376 }
7377
7378 orig_arg = arg_pack;
7379 if (arg_pack && TREE_CODE (arg_pack) == ARGUMENT_PACK_SELECT)
7380 arg_pack = ARGUMENT_PACK_SELECT_FROM_PACK (arg_pack);
7381
d393153e
DG
7382 if (arg_pack && !ARGUMENT_PACK_P (arg_pack))
7383 /* This can only happen if we forget to expand an argument
7384 pack somewhere else. Just return an error, silently. */
7385 {
7386 result = make_tree_vec (1);
7387 TREE_VEC_ELT (result, 0) = error_mark_node;
7388 return result;
7389 }
7390
88b82314
DG
7391 if (arg_pack
7392 && TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg_pack)) == 1
7393 && PACK_EXPANSION_P (TREE_VEC_ELT (ARGUMENT_PACK_ARGS (arg_pack), 0)))
7394 {
7395 tree expansion = TREE_VEC_ELT (ARGUMENT_PACK_ARGS (arg_pack), 0);
7396 tree pattern = PACK_EXPANSION_PATTERN (expansion);
7397 if ((TYPE_P (pattern) && same_type_p (pattern, parm_pack))
7398 || (!TYPE_P (pattern) && cp_tree_equal (parm_pack, pattern)))
7399 /* The argument pack that the parameter maps to is just an
7400 expansion of the parameter itself, such as one would
7401 find in the implicit typedef of a class inside the
7402 class itself. Consider this parameter "unsubstituted",
7403 so that we will maintain the outer pack expansion. */
7404 arg_pack = NULL_TREE;
7405 }
7406
5d80a306
DG
7407 if (arg_pack)
7408 {
7409 int my_len =
7410 TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg_pack));
7411
7412 /* It's all-or-nothing with incomplete argument packs. */
7413 if (incomplete && !ARGUMENT_PACK_INCOMPLETE_P (arg_pack))
7414 return error_mark_node;
7415
7416 if (ARGUMENT_PACK_INCOMPLETE_P (arg_pack))
7417 incomplete = 1;
7418
7419 if (len < 0)
7420 {
7421 len = my_len;
7422 first_arg_pack = arg_pack;
7423 }
7424 else if (len != my_len)
7425 {
7426 if (TREE_CODE (t) == TYPE_PACK_EXPANSION)
7427 error ("mismatched argument pack lengths while expanding "
7428 "%<%T%>",
7429 pattern);
7430 else
7431 error ("mismatched argument pack lengths while expanding "
7432 "%<%E%>",
7433 pattern);
7434 return error_mark_node;
7435 }
7436
7437 /* Keep track of the parameter packs and their corresponding
7438 argument packs. */
7439 packs = tree_cons (parm_pack, arg_pack, packs);
7440 TREE_TYPE (packs) = orig_arg;
7441 }
7442 else
7443 /* We can't substitute for this parameter pack. */
7444 unsubstituted_packs = tree_cons (TREE_PURPOSE (pack),
7445 TREE_VALUE (pack),
7446 unsubstituted_packs);
7447 }
7448
7449 /* We cannot expand this expansion expression, because we don't have
7450 all of the argument packs we need. Substitute into the pattern
7451 and return a PACK_EXPANSION_*. The caller will need to deal with
7452 that. */
7453 if (unsubstituted_packs)
7454 return make_pack_expansion (tsubst (pattern, args, complain,
7455 in_decl));
7456
7457 /* We could not find any argument packs that work. */
7458 if (len < 0)
7459 return error_mark_node;
7460
7461 /* For each argument in each argument pack, substitute into the
7462 pattern. */
7463 result = make_tree_vec (len + incomplete);
7464 for (i = 0; i < len + incomplete; ++i)
7465 {
7466 /* For parameter pack, change the substitution of the parameter
7467 pack to the ith argument in its argument pack, then expand
7468 the pattern. */
7469 for (pack = packs; pack; pack = TREE_CHAIN (pack))
7470 {
7471 tree parm = TREE_PURPOSE (pack);
7472
7473 if (TREE_CODE (parm) == PARM_DECL)
7474 {
7475 /* Select the Ith argument from the pack. */
7476 tree arg = make_node (ARGUMENT_PACK_SELECT);
7477 ARGUMENT_PACK_SELECT_FROM_PACK (arg) = TREE_VALUE (pack);
7478 ARGUMENT_PACK_SELECT_INDEX (arg) = i;
7479 mark_used (parm);
7480 register_local_specialization (arg, parm);
7481 }
7482 else
7483 {
7484 tree value = parm;
7485 int idx, level;
7486 template_parm_level_and_index (parm, &level, &idx);
7487
7488 if (i < len)
7489 {
7490 /* Select the Ith argument from the pack. */
7491 value = make_node (ARGUMENT_PACK_SELECT);
7492 ARGUMENT_PACK_SELECT_FROM_PACK (value) = TREE_VALUE (pack);
7493 ARGUMENT_PACK_SELECT_INDEX (value) = i;
7494 }
7495
7496 /* Update the corresponding argument. */
7497 TMPL_ARG (args, level, idx) = value;
7498 }
7499 }
7500
7501 /* Substitute into the PATTERN with the altered arguments. */
7502 if (TREE_CODE (t) == EXPR_PACK_EXPANSION)
7503 TREE_VEC_ELT (result, i) =
7504 tsubst_expr (pattern, args, complain, in_decl,
7505 /*integral_constant_expression_p=*/false);
7506 else
7507 TREE_VEC_ELT (result, i) = tsubst (pattern, args, complain, in_decl);
7508
7509 if (i == len)
7510 /* When we have incomplete argument packs, the last "expanded"
7511 result is itself a pack expansion, which allows us
7512 to deduce more arguments. */
7513 TREE_VEC_ELT (result, i) =
7514 make_pack_expansion (TREE_VEC_ELT (result, i));
7515
7516 if (TREE_VEC_ELT (result, i) == error_mark_node)
7517 {
7518 result = error_mark_node;
7519 break;
7520 }
7521 }
7522
7523 /* Update ARGS to restore the substitution from parameter packs to
7524 their argument packs. */
7525 for (pack = packs; pack; pack = TREE_CHAIN (pack))
7526 {
7527 tree parm = TREE_PURPOSE (pack);
7528
7529 if (TREE_CODE (parm) == PARM_DECL)
7530 register_local_specialization (TREE_TYPE (pack), parm);
7531 else
7532 {
7533 int idx, level;
7534 template_parm_level_and_index (parm, &level, &idx);
7535
7536 /* Update the corresponding argument. */
7537 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
7538 TREE_VEC_ELT (TREE_VEC_ELT (args, level -1 ), idx) =
7539 TREE_TYPE (pack);
7540 else
7541 TREE_VEC_ELT (args, idx) = TREE_TYPE (pack);
7542 }
7543 }
7544
7545 return result;
bd83b409
NS
7546}
7547
a91db711 7548/* Substitute ARGS into the vector or list of template arguments T. */
830bfa74 7549
e9659ab0 7550static tree
a91db711 7551tsubst_template_args (tree t, tree args, tsubst_flags_t complain, tree in_decl)
830bfa74 7552{
5d80a306 7553 tree orig_t = t;
bf12d54d 7554 int len = TREE_VEC_LENGTH (t);
5d80a306 7555 int need_new = 0, i, expanded_len_adjust = 0, out;
67f5655f 7556 tree *elts = (tree *) alloca (len * sizeof (tree));
c8094d83 7557
830bfa74
MM
7558 for (i = 0; i < len; i++)
7559 {
bf12d54d
NS
7560 tree orig_arg = TREE_VEC_ELT (t, i);
7561 tree new_arg;
a91db711 7562
bf12d54d
NS
7563 if (TREE_CODE (orig_arg) == TREE_VEC)
7564 new_arg = tsubst_template_args (orig_arg, args, complain, in_decl);
5d80a306
DG
7565 else if (PACK_EXPANSION_P (orig_arg))
7566 {
7567 /* Substitute into an expansion expression. */
7568 new_arg = tsubst_pack_expansion (orig_arg, args, complain, in_decl);
7569
7570 if (TREE_CODE (new_arg) == TREE_VEC)
7571 /* Add to the expanded length adjustment the number of
7572 expanded arguments. We subtract one from this
7573 measurement, because the argument pack expression
7574 itself is already counted as 1 in
7575 LEN. EXPANDED_LEN_ADJUST can actually be negative, if
7576 the argument pack is empty. */
7577 expanded_len_adjust += TREE_VEC_LENGTH (new_arg) - 1;
7578 }
7579 else if (ARGUMENT_PACK_P (orig_arg))
7580 {
7581 /* Substitute into each of the arguments. */
7582 new_arg = make_node (TREE_CODE (orig_arg));
7583
7584 SET_ARGUMENT_PACK_ARGS (
7585 new_arg,
7586 tsubst_template_args (ARGUMENT_PACK_ARGS (orig_arg),
7587 args, complain, in_decl));
7588
7589 if (ARGUMENT_PACK_ARGS (new_arg) == error_mark_node)
7590 new_arg = error_mark_node;
7591
7592 if (TREE_CODE (new_arg) == NONTYPE_ARGUMENT_PACK) {
7593 TREE_TYPE (new_arg) = tsubst (TREE_TYPE (orig_arg), args,
7594 complain, in_decl);
7595 TREE_CONSTANT (new_arg) = TREE_CONSTANT (orig_arg);
7596
7597 if (TREE_TYPE (new_arg) == error_mark_node)
7598 new_arg = error_mark_node;
7599 }
7600 }
830bfa74 7601 else
a91db711 7602 new_arg = tsubst_template_arg (orig_arg, args, complain, in_decl);
c8094d83 7603
a91db711 7604 if (new_arg == error_mark_node)
08e72a19
JM
7605 return error_mark_node;
7606
a91db711
NS
7607 elts[i] = new_arg;
7608 if (new_arg != orig_arg)
830bfa74
MM
7609 need_new = 1;
7610 }
c8094d83 7611
830bfa74
MM
7612 if (!need_new)
7613 return t;
a91db711 7614
5d80a306
DG
7615 /* Make space for the expanded arguments coming from template
7616 argument packs. */
7617 t = make_tree_vec (len + expanded_len_adjust);
7618 for (i = 0, out = 0; i < len; i++)
7619 {
7620 if ((PACK_EXPANSION_P (TREE_VEC_ELT (orig_t, i))
7621 || ARGUMENT_PACK_P (TREE_VEC_ELT (orig_t, i)))
7622 && TREE_CODE (elts[i]) == TREE_VEC)
7623 {
7624 int idx;
7625
7626 /* Now expand the template argument pack "in place". */
7627 for (idx = 0; idx < TREE_VEC_LENGTH (elts[i]); idx++, out++)
7628 TREE_VEC_ELT (t, out) = TREE_VEC_ELT (elts[i], idx);
7629 }
7630 else
7631 {
7632 TREE_VEC_ELT (t, out) = elts[i];
7633 out++;
7634 }
7635 }
c8094d83 7636
830bfa74
MM
7637 return t;
7638}
7639
36a117a5
MM
7640/* Return the result of substituting ARGS into the template parameters
7641 given by PARMS. If there are m levels of ARGS and m + n levels of
7642 PARMS, then the result will contain n levels of PARMS. For
7643 example, if PARMS is `template <class T> template <class U>
7644 template <T*, U, class V>' and ARGS is {{int}, {double}} then the
7645 result will be `template <int*, double, class V>'. */
7646
e9659ab0 7647static tree
3a978d72 7648tsubst_template_parms (tree parms, tree args, tsubst_flags_t complain)
36a117a5 7649{
f71f87f9
MM
7650 tree r = NULL_TREE;
7651 tree* new_parms;
36a117a5 7652
8ca4bf25
MM
7653 /* When substituting into a template, we must set
7654 PROCESSING_TEMPLATE_DECL as the template parameters may be
7655 dependent if they are based on one-another, and the dependency
7656 predicates are short-circuit outside of templates. */
7657 ++processing_template_decl;
7658
36a117a5
MM
7659 for (new_parms = &r;
7660 TMPL_PARMS_DEPTH (parms) > TMPL_ARGS_DEPTH (args);
7661 new_parms = &(TREE_CHAIN (*new_parms)),
7662 parms = TREE_CHAIN (parms))
7663 {
c8094d83 7664 tree new_vec =
36a117a5
MM
7665 make_tree_vec (TREE_VEC_LENGTH (TREE_VALUE (parms)));
7666 int i;
c8094d83 7667
36a117a5
MM
7668 for (i = 0; i < TREE_VEC_LENGTH (new_vec); ++i)
7669 {
42b304f1
LM
7670 tree tuple;
7671 tree default_value;
7672 tree parm_decl;
7673
7674 if (parms == error_mark_node)
7675 continue;
7676
7677 tuple = TREE_VEC_ELT (TREE_VALUE (parms), i);
7678
7679 if (tuple == error_mark_node)
7680 continue;
7681
7682 default_value = TREE_PURPOSE (tuple);
7683 parm_decl = TREE_VALUE (tuple);
833aa4c4
NS
7684
7685 parm_decl = tsubst (parm_decl, args, complain, NULL_TREE);
a207780f
VR
7686 if (TREE_CODE (parm_decl) == PARM_DECL
7687 && invalid_nontype_parm_type_p (TREE_TYPE (parm_decl), complain))
7688 parm_decl = error_mark_node;
a91db711
NS
7689 default_value = tsubst_template_arg (default_value, args,
7690 complain, NULL_TREE);
c8094d83 7691
a91db711 7692 tuple = build_tree_list (default_value, parm_decl);
833aa4c4 7693 TREE_VEC_ELT (new_vec, i) = tuple;
36a117a5 7694 }
c8094d83
MS
7695
7696 *new_parms =
7697 tree_cons (size_int (TMPL_PARMS_DEPTH (parms)
4890c2f4 7698 - TMPL_ARGS_DEPTH (args)),
36a117a5
MM
7699 new_vec, NULL_TREE);
7700 }
7701
8ca4bf25
MM
7702 --processing_template_decl;
7703
36a117a5
MM
7704 return r;
7705}
7706
ed44da02
MM
7707/* Substitute the ARGS into the indicated aggregate (or enumeration)
7708 type T. If T is not an aggregate or enumeration type, it is
7709 handled as if by tsubst. IN_DECL is as for tsubst. If
838dfd8a 7710 ENTERING_SCOPE is nonzero, T is the context for a template which
dc957d14 7711 we are presently tsubst'ing. Return the substituted value. */
36a117a5 7712
e9659ab0 7713static tree
c8094d83 7714tsubst_aggr_type (tree t,
0cbd7506
MS
7715 tree args,
7716 tsubst_flags_t complain,
7717 tree in_decl,
7718 int entering_scope)
36a117a5
MM
7719{
7720 if (t == NULL_TREE)
7721 return NULL_TREE;
7722
7723 switch (TREE_CODE (t))
7724 {
7725 case RECORD_TYPE:
7726 if (TYPE_PTRMEMFUNC_P (t))
46c895ac 7727 return tsubst (TYPE_PTRMEMFUNC_FN_TYPE (t), args, complain, in_decl);
36a117a5 7728
f4f206f4 7729 /* Else fall through. */
ed44da02 7730 case ENUMERAL_TYPE:
36a117a5 7731 case UNION_TYPE:
82390eb6 7732 if (TYPE_TEMPLATE_INFO (t) && uses_template_parms (t))
36a117a5
MM
7733 {
7734 tree argvec;
7735 tree context;
7736 tree r;
3489ea0c
MM
7737 bool saved_skip_evaluation;
7738
7739 /* In "sizeof(X<I>)" we need to evaluate "I". */
7740 saved_skip_evaluation = skip_evaluation;
7741 skip_evaluation = false;
36a117a5
MM
7742
7743 /* First, determine the context for the type we are looking
7744 up. */
4f7847ca
NS
7745 context = TYPE_CONTEXT (t);
7746 if (context)
29b0d1fd
JM
7747 {
7748 context = tsubst_aggr_type (context, args, complain,
7749 in_decl, /*entering_scope=*/1);
7750 /* If context is a nested class inside a class template,
7751 it may still need to be instantiated (c++/33959). */
7752 if (TYPE_P (context))
7753 context = complete_type (context);
7754 }
36a117a5
MM
7755
7756 /* Then, figure out what arguments are appropriate for the
7757 type we are trying to find. For example, given:
7758
7759 template <class T> struct S;
7760 template <class T, class U> void f(T, U) { S<U> su; }
7761
7762 and supposing that we are instantiating f<int, double>,
7763 then our ARGS will be {int, double}, but, when looking up
7764 S we only want {double}. */
a91db711
NS
7765 argvec = tsubst_template_args (TYPE_TI_ARGS (t), args,
7766 complain, in_decl);
08e72a19 7767 if (argvec == error_mark_node)
3489ea0c
MM
7768 r = error_mark_node;
7769 else
7770 {
7771 r = lookup_template_class (t, argvec, in_decl, context,
7772 entering_scope, complain);
7773 r = cp_build_qualified_type_real (r, TYPE_QUALS (t), complain);
7774 }
3db45ab5 7775
3489ea0c 7776 skip_evaluation = saved_skip_evaluation;
36a117a5 7777
3489ea0c 7778 return r;
36a117a5 7779 }
c8094d83 7780 else
36a117a5
MM
7781 /* This is not a template type, so there's nothing to do. */
7782 return t;
7783
7784 default:
4393e105 7785 return tsubst (t, args, complain, in_decl);
36a117a5
MM
7786 }
7787}
7788
9188c363
MM
7789/* Substitute into the default argument ARG (a default argument for
7790 FN), which has the indicated TYPE. */
7791
7792tree
3a978d72 7793tsubst_default_argument (tree fn, tree type, tree arg)
9188c363 7794{
2436b51f
MM
7795 tree saved_class_ptr = NULL_TREE;
7796 tree saved_class_ref = NULL_TREE;
7797
9188c363
MM
7798 /* This default argument came from a template. Instantiate the
7799 default argument here, not in tsubst. In the case of
c8094d83
MS
7800 something like:
7801
9188c363
MM
7802 template <class T>
7803 struct S {
7804 static T t();
7805 void f(T = t());
7806 };
c8094d83 7807
9188c363 7808 we must be careful to do name lookup in the scope of S<T>,
d5a10cf0 7809 rather than in the current class. */
2b59fc25 7810 push_access_scope (fn);
2436b51f
MM
7811 /* The "this" pointer is not valid in a default argument. */
7812 if (cfun)
7813 {
7814 saved_class_ptr = current_class_ptr;
7815 cp_function_chain->x_current_class_ptr = NULL_TREE;
7816 saved_class_ref = current_class_ref;
7817 cp_function_chain->x_current_class_ref = NULL_TREE;
7818 }
9188c363 7819
d5a10cf0 7820 push_deferring_access_checks(dk_no_deferred);
5a8613b2
MM
7821 /* The default argument expression may cause implicitly defined
7822 member functions to be synthesized, which will result in garbage
7823 collection. We must treat this situation as if we were within
7824 the body of function so as to avoid collecting live data on the
7825 stack. */
7826 ++function_depth;
c2ea3a40 7827 arg = tsubst_expr (arg, DECL_TI_ARGS (fn),
015c2c66
MM
7828 tf_warning_or_error, NULL_TREE,
7829 /*integral_constant_expression_p=*/false);
5a8613b2 7830 --function_depth;
d5a10cf0
MM
7831 pop_deferring_access_checks();
7832
2436b51f
MM
7833 /* Restore the "this" pointer. */
7834 if (cfun)
7835 {
7836 cp_function_chain->x_current_class_ptr = saved_class_ptr;
7837 cp_function_chain->x_current_class_ref = saved_class_ref;
7838 }
7839
2b59fc25 7840 pop_access_scope (fn);
9188c363
MM
7841
7842 /* Make sure the default argument is reasonable. */
7843 arg = check_default_argument (type, arg);
7844
7845 return arg;
7846}
7847
7848/* Substitute into all the default arguments for FN. */
7849
7850static void
3a978d72 7851tsubst_default_arguments (tree fn)
9188c363
MM
7852{
7853 tree arg;
7854 tree tmpl_args;
7855
7856 tmpl_args = DECL_TI_ARGS (fn);
7857
7858 /* If this function is not yet instantiated, we certainly don't need
7859 its default arguments. */
7860 if (uses_template_parms (tmpl_args))
7861 return;
7862
c8094d83
MS
7863 for (arg = TYPE_ARG_TYPES (TREE_TYPE (fn));
7864 arg;
9188c363
MM
7865 arg = TREE_CHAIN (arg))
7866 if (TREE_PURPOSE (arg))
c8094d83 7867 TREE_PURPOSE (arg) = tsubst_default_argument (fn,
9188c363
MM
7868 TREE_VALUE (arg),
7869 TREE_PURPOSE (arg));
7870}
7871
fc6a28d7
MM
7872/* Substitute the ARGS into the T, which is a _DECL. Return the
7873 result of the substitution. Issue error and warning messages under
7874 control of COMPLAIN. */
00d3396f 7875
e9659ab0 7876static tree
fc6a28d7 7877tsubst_decl (tree t, tree args, tsubst_flags_t complain)
8d08fdba 7878{
82a98427 7879 location_t saved_loc;
b370501f 7880 tree r = NULL_TREE;
4b2811e9 7881 tree in_decl = t;
830bfa74 7882
ae58fa02 7883 /* Set the filename and linenumber to improve error-reporting. */
82a98427 7884 saved_loc = input_location;
f31686a3 7885 input_location = DECL_SOURCE_LOCATION (t);
b7484fbe 7886
8d08fdba
MS
7887 switch (TREE_CODE (t))
7888 {
98c1c668
JM
7889 case TEMPLATE_DECL:
7890 {
28e42b7e
KL
7891 /* We can get here when processing a member function template,
7892 member class template, and template template parameter of
7893 a template class. */
98c1c668 7894 tree decl = DECL_TEMPLATE_RESULT (t);
386b8a85 7895 tree spec;
28e42b7e
KL
7896 tree tmpl_args;
7897 tree full_args;
98c1c668 7898
28e42b7e 7899 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
db2767b6 7900 {
28e42b7e
KL
7901 /* Template template parameter is treated here. */
7902 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
7903 if (new_type == error_mark_node)
7904 return error_mark_node;
36a117a5 7905
28e42b7e
KL
7906 r = copy_decl (t);
7907 TREE_CHAIN (r) = NULL_TREE;
7908 TREE_TYPE (r) = new_type;
7909 DECL_TEMPLATE_RESULT (r)
7910 = build_decl (TYPE_DECL, DECL_NAME (decl), new_type);
c8094d83 7911 DECL_TEMPLATE_PARMS (r)
28e42b7e
KL
7912 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
7913 complain);
7914 TYPE_NAME (new_type) = r;
7915 break;
7916 }
36a117a5 7917
28e42b7e
KL
7918 /* We might already have an instance of this template.
7919 The ARGS are for the surrounding class type, so the
7920 full args contain the tsubst'd args for the context,
7921 plus the innermost args from the template decl. */
c8094d83 7922 tmpl_args = DECL_CLASS_TEMPLATE_P (t)
28e42b7e
KL
7923 ? CLASSTYPE_TI_ARGS (TREE_TYPE (t))
7924 : DECL_TI_ARGS (DECL_TEMPLATE_RESULT (t));
8ca4bf25
MM
7925 /* Because this is a template, the arguments will still be
7926 dependent, even after substitution. If
7927 PROCESSING_TEMPLATE_DECL is not set, the dependency
7928 predicates will short-circuit. */
7929 ++processing_template_decl;
28e42b7e
KL
7930 full_args = tsubst_template_args (tmpl_args, args,
7931 complain, in_decl);
8ca4bf25 7932 --processing_template_decl;
bf2f7328
VR
7933 if (full_args == error_mark_node)
7934 return error_mark_node;
28e42b7e
KL
7935
7936 /* tsubst_template_args doesn't copy the vector if
7937 nothing changed. But, *something* should have
7938 changed. */
7939 gcc_assert (full_args != tmpl_args);
7940
7941 spec = retrieve_specialization (t, full_args,
7942 /*class_specializations_p=*/true);
7943 if (spec != NULL_TREE)
7944 {
7945 r = spec;
7946 break;
db2767b6 7947 }
98c1c668
JM
7948
7949 /* Make a new template decl. It will be similar to the
c8094d83 7950 original, but will record the current template arguments.
98c1c668
JM
7951 We also create a new function declaration, which is just
7952 like the old one, but points to this new template, rather
7953 than the old one. */
0acf7199 7954 r = copy_decl (t);
50bc768d 7955 gcc_assert (DECL_LANG_SPECIFIC (r) != 0);
ae58fa02 7956 TREE_CHAIN (r) = NULL_TREE;
db2767b6 7957
ae58fa02 7958 DECL_TEMPLATE_INFO (r) = build_tree_list (t, args);
93cdc044
JM
7959
7960 if (TREE_CODE (decl) == TYPE_DECL)
7961 {
8ca4bf25
MM
7962 tree new_type;
7963 ++processing_template_decl;
7964 new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
3db45ab5 7965 --processing_template_decl;
2620d095
KL
7966 if (new_type == error_mark_node)
7967 return error_mark_node;
7968
ae58fa02
MM
7969 TREE_TYPE (r) = new_type;
7970 CLASSTYPE_TI_TEMPLATE (new_type) = r;
17aec3eb 7971 DECL_TEMPLATE_RESULT (r) = TYPE_MAIN_DECL (new_type);
ae58fa02 7972 DECL_TI_ARGS (r) = CLASSTYPE_TI_ARGS (new_type);
8ca4bf25 7973 DECL_CONTEXT (r) = TYPE_CONTEXT (new_type);
93cdc044
JM
7974 }
7975 else
7976 {
8ca4bf25
MM
7977 tree new_decl;
7978 ++processing_template_decl;
7979 new_decl = tsubst (decl, args, complain, in_decl);
7980 --processing_template_decl;
caec1dc0
KL
7981 if (new_decl == error_mark_node)
7982 return error_mark_node;
17aec3eb
RK
7983
7984 DECL_TEMPLATE_RESULT (r) = new_decl;
ae58fa02
MM
7985 DECL_TI_TEMPLATE (new_decl) = r;
7986 TREE_TYPE (r) = TREE_TYPE (new_decl);
7987 DECL_TI_ARGS (r) = DECL_TI_ARGS (new_decl);
3db45ab5 7988 DECL_CONTEXT (r) = DECL_CONTEXT (new_decl);
93cdc044
JM
7989 }
7990
ae58fa02
MM
7991 SET_DECL_IMPLICIT_INSTANTIATION (r);
7992 DECL_TEMPLATE_INSTANTIATIONS (r) = NULL_TREE;
7993 DECL_TEMPLATE_SPECIALIZATIONS (r) = NULL_TREE;
98c1c668
JM
7994
7995 /* The template parameters for this new template are all the
7996 template parameters for the old template, except the
c6002625 7997 outermost level of parameters. */
c8094d83 7998 DECL_TEMPLATE_PARMS (r)
4393e105 7999 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
c2ea3a40 8000 complain);
98c1c668 8001
93cdc044 8002 if (PRIMARY_TEMPLATE_P (t))
ae58fa02 8003 DECL_PRIMARY_TEMPLATE (r) = r;
93cdc044 8004
8c6ab2db
NS
8005 if (TREE_CODE (decl) != TYPE_DECL)
8006 /* Record this non-type partial instantiation. */
c8094d83 8007 register_specialization (r, t,
d63d5d0c
ILT
8008 DECL_TI_ARGS (DECL_TEMPLATE_RESULT (r)),
8009 false);
98c1c668 8010 }
ae58fa02 8011 break;
8d08fdba
MS
8012
8013 case FUNCTION_DECL:
8014 {
386b8a85 8015 tree ctx;
87603ed0 8016 tree argvec = NULL_TREE;
cf38f48a 8017 tree *friends;
36a117a5 8018 tree gen_tmpl;
fc6a28d7 8019 tree type;
5566b478 8020 int member;
d8c4447d
MM
8021 int args_depth;
8022 int parms_depth;
5566b478 8023
36a117a5 8024 /* Nobody should be tsubst'ing into non-template functions. */
50bc768d 8025 gcc_assert (DECL_TEMPLATE_INFO (t) != NULL_TREE);
36a117a5
MM
8026
8027 if (TREE_CODE (DECL_TI_TEMPLATE (t)) == TEMPLATE_DECL)
8028 {
8029 tree spec;
00cf3e31
MM
8030 bool dependent_p;
8031
8032 /* If T is not dependent, just return it. We have to
8033 increment PROCESSING_TEMPLATE_DECL because
8034 value_dependent_expression_p assumes that nothing is
8035 dependent when PROCESSING_TEMPLATE_DECL is zero. */
8036 ++processing_template_decl;
8037 dependent_p = value_dependent_expression_p (t);
8038 --processing_template_decl;
8039 if (!dependent_p)
8040 return t;
36a117a5
MM
8041
8042 /* Calculate the most general template of which R is a
8043 specialization, and the complete set of arguments used to
8044 specialize R. */
8045 gen_tmpl = most_general_template (DECL_TI_TEMPLATE (t));
c8094d83 8046 argvec = tsubst_template_args (DECL_TI_ARGS
a91db711 8047 (DECL_TEMPLATE_RESULT (gen_tmpl)),
c8094d83 8048 args, complain, in_decl);
36a117a5
MM
8049
8050 /* Check to see if we already have this specialization. */
c7222c02
MM
8051 spec = retrieve_specialization (gen_tmpl, argvec,
8052 /*class_specializations_p=*/false);
7ddedda4 8053
36a117a5 8054 if (spec)
ae58fa02
MM
8055 {
8056 r = spec;
8057 break;
8058 }
d8c4447d 8059
f9a7ae04
MM
8060 /* We can see more levels of arguments than parameters if
8061 there was a specialization of a member template, like
8062 this:
8063
0cbd7506 8064 template <class T> struct S { template <class U> void f(); }
c8094d83 8065 template <> template <class U> void S<int>::f(U);
f9a7ae04 8066
dc957d14 8067 Here, we'll be substituting into the specialization,
f9a7ae04
MM
8068 because that's where we can find the code we actually
8069 want to generate, but we'll have enough arguments for
c8094d83 8070 the most general template.
f9a7ae04
MM
8071
8072 We also deal with the peculiar case:
d8c4447d 8073
c8094d83 8074 template <class T> struct S {
d8c4447d
MM
8075 template <class U> friend void f();
8076 };
74b846e0 8077 template <class U> void f() {}
d8c4447d
MM
8078 template S<int>;
8079 template void f<double>();
8080
8081 Here, the ARGS for the instantiation of will be {int,
8082 double}. But, we only need as many ARGS as there are
8083 levels of template parameters in CODE_PATTERN. We are
8084 careful not to get fooled into reducing the ARGS in
8085 situations like:
8086
8087 template <class T> struct S { template <class U> void f(U); }
8088 template <class T> template <> void S<T>::f(int) {}
8089
8090 which we can spot because the pattern will be a
8091 specialization in this case. */
8092 args_depth = TMPL_ARGS_DEPTH (args);
c8094d83
MS
8093 parms_depth =
8094 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (t)));
d8c4447d
MM
8095 if (args_depth > parms_depth
8096 && !DECL_TEMPLATE_SPECIALIZATION (t))
f9a7ae04 8097 args = get_innermost_template_args (args, parms_depth);
36a117a5
MM
8098 }
8099 else
8100 {
8101 /* This special case arises when we have something like this:
8102
0cbd7506 8103 template <class T> struct S {
c8094d83 8104 friend void f<int>(int, double);
36a117a5
MM
8105 };
8106
8107 Here, the DECL_TI_TEMPLATE for the friend declaration
10b1d5e7
MM
8108 will be an IDENTIFIER_NODE. We are being called from
8109 tsubst_friend_function, and we want only to create a
8110 new decl (R) with appropriate types so that we can call
8111 determine_specialization. */
36a117a5
MM
8112 gen_tmpl = NULL_TREE;
8113 }
8114
6eb3bb27 8115 if (DECL_CLASS_SCOPE_P (t))
8d08fdba 8116 {
5566b478
MS
8117 if (DECL_NAME (t) == constructor_name (DECL_CONTEXT (t)))
8118 member = 2;
8119 else
8120 member = 1;
c8094d83 8121 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args,
8c6ab2db 8122 complain, t, /*entering_scope=*/1);
5566b478
MS
8123 }
8124 else
8125 {
8126 member = 0;
4f1c5b7d 8127 ctx = DECL_CONTEXT (t);
5566b478 8128 }
fc6a28d7 8129 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
b3da7bb1
MM
8130 if (type == error_mark_node)
8131 return error_mark_node;
8d08fdba 8132
5566b478 8133 /* We do NOT check for matching decls pushed separately at this
0cbd7506
MS
8134 point, as they may not represent instantiations of this
8135 template, and in any case are considered separate under the
8136 discrete model. */
0acf7199 8137 r = copy_decl (t);
e1467ff2 8138 DECL_USE_TEMPLATE (r) = 0;
5566b478 8139 TREE_TYPE (r) = type;
92643fea
MM
8140 /* Clear out the mangled name and RTL for the instantiation. */
8141 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
8142 SET_DECL_RTL (r, NULL_RTX);
5bd61841 8143 DECL_INITIAL (r) = NULL_TREE;
4f1c5b7d 8144 DECL_CONTEXT (r) = ctx;
5566b478 8145
c8094d83 8146 if (member && DECL_CONV_FN_P (r))
1f84ec23
MM
8147 /* Type-conversion operator. Reconstruct the name, in
8148 case it's the name of one of the template's parameters. */
8149 DECL_NAME (r) = mangle_conv_op_name_for_type (TREE_TYPE (type));
5566b478 8150
4393e105 8151 DECL_ARGUMENTS (r) = tsubst (DECL_ARGUMENTS (t), args,
c2ea3a40 8152 complain, t);
477f6664 8153 DECL_RESULT (r) = NULL_TREE;
711734a9
JM
8154
8155 TREE_STATIC (r) = 0;
8156 TREE_PUBLIC (r) = TREE_PUBLIC (t);
8157 DECL_EXTERNAL (r) = 1;
4684cd27
MM
8158 /* If this is an instantiation of a function with internal
8159 linkage, we already know what object file linkage will be
8160 assigned to the instantiation. */
8161 DECL_INTERFACE_KNOWN (r) = !TREE_PUBLIC (r);
711734a9
JM
8162 DECL_DEFER_OUTPUT (r) = 0;
8163 TREE_CHAIN (r) = NULL_TREE;
8164 DECL_PENDING_INLINE_INFO (r) = 0;
59026e79 8165 DECL_PENDING_INLINE_P (r) = 0;
655dc6ee 8166 DECL_SAVED_TREE (r) = NULL_TREE;
711734a9 8167 TREE_USED (r) = 0;
db9b2174
MM
8168 if (DECL_CLONED_FUNCTION (r))
8169 {
8170 DECL_CLONED_FUNCTION (r) = tsubst (DECL_CLONED_FUNCTION (t),
c2ea3a40 8171 args, complain, t);
db9b2174
MM
8172 TREE_CHAIN (r) = TREE_CHAIN (DECL_CLONED_FUNCTION (r));
8173 TREE_CHAIN (DECL_CLONED_FUNCTION (r)) = r;
8174 }
711734a9 8175
92643fea
MM
8176 /* Set up the DECL_TEMPLATE_INFO for R. There's no need to do
8177 this in the special friend case mentioned above where
8178 GEN_TMPL is NULL. */
36a117a5 8179 if (gen_tmpl)
386b8a85 8180 {
c8094d83 8181 DECL_TEMPLATE_INFO (r)
e1b3e07d 8182 = tree_cons (gen_tmpl, argvec, NULL_TREE);
36a117a5 8183 SET_DECL_IMPLICIT_INSTANTIATION (r);
d63d5d0c 8184 register_specialization (r, gen_tmpl, argvec, false);
36a117a5 8185
9188c363
MM
8186 /* We're not supposed to instantiate default arguments
8187 until they are called, for a template. But, for a
8188 declaration like:
8189
0cbd7506
MS
8190 template <class T> void f ()
8191 { extern void g(int i = T()); }
c8094d83 8192
9188c363
MM
8193 we should do the substitution when the template is
8194 instantiated. We handle the member function case in
8195 instantiate_class_template since the default arguments
8196 might refer to other members of the class. */
8197 if (!member
8198 && !PRIMARY_TEMPLATE_P (gen_tmpl)
8199 && !uses_template_parms (argvec))
8200 tsubst_default_arguments (r);
386b8a85 8201 }
c43e95f8
MM
8202 else
8203 DECL_TEMPLATE_INFO (r) = NULL_TREE;
f181d4ae 8204
cf38f48a
MM
8205 /* Copy the list of befriending classes. */
8206 for (friends = &DECL_BEFRIENDING_CLASSES (r);
8207 *friends;
c8094d83 8208 friends = &TREE_CHAIN (*friends))
cf38f48a
MM
8209 {
8210 *friends = copy_node (*friends);
8211 TREE_VALUE (*friends) = tsubst (TREE_VALUE (*friends),
c2ea3a40 8212 args, complain,
cf38f48a
MM
8213 in_decl);
8214 }
8215
212e7048 8216 if (DECL_CONSTRUCTOR_P (r) || DECL_DESTRUCTOR_P (r))
f181d4ae
MM
8217 {
8218 maybe_retrofit_in_chrg (r);
212e7048
MM
8219 if (DECL_CONSTRUCTOR_P (r))
8220 grok_ctor_properties (ctx, r);
2be678ff
JM
8221 /* If this is an instantiation of a member template, clone it.
8222 If it isn't, that'll be handled by
8223 clone_constructors_and_destructors. */
5e818b93 8224 if (PRIMARY_TEMPLATE_P (gen_tmpl))
271e6f02 8225 clone_function_decl (r, /*update_method_vec_p=*/0);
f181d4ae 8226 }
398cd199
VR
8227 else if (IDENTIFIER_OPNAME_P (DECL_NAME (r))
8228 && !grok_op_properties (r, (complain & tf_error) != 0))
8229 return error_mark_node;
c8b2e872
MM
8230
8231 if (DECL_FRIEND_P (t) && DECL_FRIEND_CONTEXT (t))
8232 SET_DECL_FRIEND_CONTEXT (r,
8233 tsubst (DECL_FRIEND_CONTEXT (t),
8234 args, complain, in_decl));
b9e75696
JM
8235
8236 /* Possibly limit visibility based on template args. */
8237 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
b70f0f48
JM
8238 if (DECL_VISIBILITY_SPECIFIED (t))
8239 {
8240 DECL_VISIBILITY_SPECIFIED (r) = 0;
8241 DECL_ATTRIBUTES (r)
8242 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
8243 }
b9e75696 8244 determine_visibility (r);
4f4141ff
JM
8245
8246 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
8247 args, complain, in_decl);
8d08fdba 8248 }
ae58fa02 8249 break;
8d08fdba
MS
8250
8251 case PARM_DECL:
8252 {
5d80a306
DG
8253 tree type = NULL_TREE;
8254 int i, len = 1;
8255 tree expanded_types = NULL_TREE;
8256 tree prev_r = NULL_TREE;
8257 tree first_r = NULL_TREE;
1b8899d1 8258
5d80a306
DG
8259 if (FUNCTION_PARAMETER_PACK_P (t))
8260 {
8261 /* If there is a local specialization that isn't a
8262 parameter pack, it means that we're doing a "simple"
8263 substitution from inside tsubst_pack_expansion. Just
a757b5c5 8264 return the local specialization (which will be a single
5d80a306 8265 parm). */
29b0d1fd 8266 tree spec = retrieve_local_specialization (t);
5d80a306
DG
8267 if (spec
8268 && TREE_CODE (spec) == PARM_DECL
8269 && TREE_CODE (TREE_TYPE (spec)) != TYPE_PACK_EXPANSION)
8270 return spec;
8271
8272 /* Expand the TYPE_PACK_EXPANSION that provides the types for
8273 the parameters in this function parameter pack. */
8274 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
8275 complain, in_decl);
8276 if (TREE_CODE (expanded_types) == TREE_VEC)
8277 {
8278 len = TREE_VEC_LENGTH (expanded_types);
8279
8280 /* Zero-length parameter packs are boring. Just substitute
8281 into the chain. */
8282 if (len == 0)
8283 return tsubst (TREE_CHAIN (t), args, complain,
8284 TREE_CHAIN (t));
8285 }
8286 else
8287 {
8288 /* All we did was update the type. Make a note of that. */
8289 type = expanded_types;
8290 expanded_types = NULL_TREE;
8291 }
8292 }
db2767b6 8293
5d80a306
DG
8294 /* Loop through all of the parameter's we'll build. When T is
8295 a function parameter pack, LEN is the number of expanded
8296 types in EXPANDED_TYPES; otherwise, LEN is 1. */
8297 r = NULL_TREE;
8298 for (i = 0; i < len; ++i)
8299 {
8300 prev_r = r;
8301 r = copy_node (t);
8302 if (DECL_TEMPLATE_PARM_P (t))
8303 SET_DECL_TEMPLATE_PARM_P (r);
8304
8305 if (expanded_types)
8306 /* We're on the Ith parameter of the function parameter
8307 pack. */
8308 {
8309 /* Get the Ith type. */
8310 type = TREE_VEC_ELT (expanded_types, i);
8311
8312 if (DECL_NAME (r))
8313 /* Rename the parameter to include the index. */
8314 DECL_NAME (r) =
8315 make_ith_pack_parameter_name (DECL_NAME (r), i);
8316 }
8317 else if (!type)
8318 /* We're dealing with a normal parameter. */
8319 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
8320
8321 type = type_decays_to (type);
8322 TREE_TYPE (r) = type;
8323 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
8324
8325 if (DECL_INITIAL (r))
8326 {
8327 if (TREE_CODE (DECL_INITIAL (r)) != TEMPLATE_PARM_INDEX)
8328 DECL_INITIAL (r) = TREE_TYPE (r);
8329 else
8330 DECL_INITIAL (r) = tsubst (DECL_INITIAL (r), args,
8331 complain, in_decl);
8332 }
8333
8334 DECL_CONTEXT (r) = NULL_TREE;
8335
8336 if (!DECL_TEMPLATE_PARM_P (r))
8337 DECL_ARG_TYPE (r) = type_passed_as (type);
8338
4f4141ff
JM
8339 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
8340 args, complain, in_decl);
8341
5d80a306
DG
8342 /* Keep track of the first new parameter we
8343 generate. That's what will be returned to the
8344 caller. */
8345 if (!first_r)
8346 first_r = r;
8347
8348 /* Build a proper chain of parameters when substituting
8349 into a function parameter pack. */
8350 if (prev_r)
8351 TREE_CHAIN (prev_r) = r;
8352 }
8e51619a 8353
8d08fdba 8354 if (TREE_CHAIN (t))
4393e105 8355 TREE_CHAIN (r) = tsubst (TREE_CHAIN (t), args,
c2ea3a40 8356 complain, TREE_CHAIN (t));
5d80a306
DG
8357
8358 /* FIRST_R contains the start of the chain we've built. */
8359 r = first_r;
8d08fdba 8360 }
ae58fa02 8361 break;
8d08fdba 8362
5566b478
MS
8363 case FIELD_DECL:
8364 {
fc6a28d7
MM
8365 tree type;
8366
0acf7199 8367 r = copy_decl (t);
fc6a28d7
MM
8368 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
8369 if (type == error_mark_node)
8370 return error_mark_node;
1b8899d1 8371 TREE_TYPE (r) = type;
9804209d 8372 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
1b8899d1 8373
015c2c66
MM
8374 /* DECL_INITIAL gives the number of bits in a bit-field. */
8375 DECL_INITIAL (r)
8376 = tsubst_expr (DECL_INITIAL (t), args,
8377 complain, in_decl,
8378 /*integral_constant_expression_p=*/true);
1b8899d1
MM
8379 /* We don't have to set DECL_CONTEXT here; it is set by
8380 finish_member_declaration. */
5566b478 8381 TREE_CHAIN (r) = NULL_TREE;
c8094d83 8382 if (VOID_TYPE_P (type))
dee15844 8383 error ("instantiation of %q+D as type %qT", r, type);
4f4141ff
JM
8384
8385 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
8386 args, complain, in_decl);
5566b478 8387 }
ae58fa02 8388 break;
5566b478
MS
8389
8390 case USING_DECL:
98ed9dae
NS
8391 /* We reach here only for member using decls. */
8392 if (DECL_DEPENDENT_P (t))
8393 {
8394 r = do_class_using_decl
8395 (tsubst_copy (USING_DECL_SCOPE (t), args, complain, in_decl),
8396 tsubst_copy (DECL_NAME (t), args, complain, in_decl));
8397 if (!r)
8398 r = error_mark_node;
8399 }
8400 else
8401 {
8402 r = copy_node (t);
8403 TREE_CHAIN (r) = NULL_TREE;
8404 }
ae58fa02 8405 break;
5566b478 8406
9188c363 8407 case TYPE_DECL:
5566b478
MS
8408 case VAR_DECL:
8409 {
1cea0434
KG
8410 tree argvec = NULL_TREE;
8411 tree gen_tmpl = NULL_TREE;
36a117a5 8412 tree spec;
1cea0434 8413 tree tmpl = NULL_TREE;
9188c363 8414 tree ctx;
fc6a28d7 8415 tree type = NULL_TREE;
f604fc3b 8416 bool local_p;
9188c363 8417
56d0c6e3 8418 if (TREE_CODE (t) == TYPE_DECL
a7f6bc8c 8419 && t == TYPE_MAIN_DECL (TREE_TYPE (t)))
fc6a28d7 8420 {
a7f6bc8c
JM
8421 /* If this is the canonical decl, we don't have to
8422 mess with instantiations, and often we can't (for
8423 typename, template type parms and such). Note that
8424 TYPE_NAME is not correct for the above test if
8425 we've copied the type for a typedef. */
fc6a28d7 8426 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
c343d5a7
PC
8427 if (type == error_mark_node)
8428 return error_mark_node;
a7f6bc8c
JM
8429 r = TYPE_NAME (type);
8430 break;
fc6a28d7 8431 }
c8094d83 8432
f604fc3b
MM
8433 /* Check to see if we already have the specialization we
8434 need. */
8435 spec = NULL_TREE;
8436 if (DECL_CLASS_SCOPE_P (t) || DECL_NAMESPACE_SCOPE_P (t))
8437 {
8438 /* T is a static data member or namespace-scope entity.
8439 We have to substitute into namespace-scope variables
8440 (even though such entities are never templates) because
8441 of cases like:
8442
8443 template <class T> void f() { extern T t; }
8444
8445 where the entity referenced is not known until
8446 instantiation time. */
8447 local_p = false;
8448 ctx = DECL_CONTEXT (t);
8449 if (DECL_CLASS_SCOPE_P (t))
8450 {
8451 ctx = tsubst_aggr_type (ctx, args,
8452 complain,
8453 in_decl, /*entering_scope=*/1);
8454 /* If CTX is unchanged, then T is in fact the
8455 specialization we want. That situation occurs when
8456 referencing a static data member within in its own
8457 class. We can use pointer equality, rather than
8458 same_type_p, because DECL_CONTEXT is always
8459 canonical. */
8460 if (ctx == DECL_CONTEXT (t))
8461 spec = t;
8462 }
5566b478 8463
f604fc3b
MM
8464 if (!spec)
8465 {
8466 tmpl = DECL_TI_TEMPLATE (t);
8467 gen_tmpl = most_general_template (tmpl);
8468 argvec = tsubst (DECL_TI_ARGS (t), args, complain, in_decl);
8469 spec = (retrieve_specialization
8470 (gen_tmpl, argvec,
8471 /*class_specializations_p=*/false));
8472 }
8473 }
9188c363 8474 else
6dfbb909 8475 {
f604fc3b
MM
8476 /* A local variable. */
8477 local_p = true;
6dfbb909
MM
8478 /* Subsequent calls to pushdecl will fill this in. */
8479 ctx = NULL_TREE;
f604fc3b 8480 spec = retrieve_local_specialization (t);
6dfbb909 8481 }
f604fc3b
MM
8482 /* If we already have the specialization we need, there is
8483 nothing more to do. */
36a117a5 8484 if (spec)
ae58fa02
MM
8485 {
8486 r = spec;
8487 break;
8488 }
5566b478 8489
f604fc3b 8490 /* Create a new node for the specialization we need. */
0acf7199 8491 r = copy_decl (t);
56d0c6e3
JM
8492 if (type == NULL_TREE)
8493 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
edebf865 8494 if (TREE_CODE (r) == VAR_DECL)
39703eb9 8495 {
8b0a8500
MM
8496 /* Even if the original location is out of scope, the
8497 newly substituted one is not. */
8498 DECL_DEAD_FOR_LOCAL (r) = 0;
8499 DECL_INITIALIZED_P (r) = 0;
8500 DECL_TEMPLATE_INSTANTIATED (r) = 0;
fc6a28d7
MM
8501 if (type == error_mark_node)
8502 return error_mark_node;
2c05d05e
MM
8503 if (TREE_CODE (type) == FUNCTION_TYPE)
8504 {
8505 /* It may seem that this case cannot occur, since:
8506
8507 typedef void f();
8508 void g() { f x; }
8509
8510 declares a function, not a variable. However:
8511
8512 typedef void f();
8513 template <typename T> void g() { T t; }
8514 template void g<f>();
8515
8516 is an attempt to declare a variable with function
8517 type. */
8518 error ("variable %qD has function type",
8519 /* R is not yet sufficiently initialized, so we
8520 just use its name. */
8521 DECL_NAME (r));
8522 return error_mark_node;
8523 }
39703eb9
MM
8524 type = complete_type (type);
8525 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r)
8526 = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (t);
62e19030 8527 type = check_var_type (DECL_NAME (r), type);
56b4ea3d
RH
8528
8529 if (DECL_HAS_VALUE_EXPR_P (t))
8530 {
8531 tree ve = DECL_VALUE_EXPR (t);
015c2c66
MM
8532 ve = tsubst_expr (ve, args, complain, in_decl,
8533 /*constant_expression_p=*/false);
3db45ab5 8534 SET_DECL_VALUE_EXPR (r, ve);
56b4ea3d 8535 }
39703eb9 8536 }
a3d87771
MM
8537 else if (DECL_SELF_REFERENCE_P (t))
8538 SET_DECL_SELF_REFERENCE_P (r);
01f4137f 8539 TREE_TYPE (r) = type;
9804209d 8540 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
5566b478 8541 DECL_CONTEXT (r) = ctx;
92643fea
MM
8542 /* Clear out the mangled name and RTL for the instantiation. */
8543 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
820cc88f
DB
8544 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
8545 SET_DECL_RTL (r, NULL_RTX);
8b0a8500
MM
8546 /* The initializer must not be expanded until it is required;
8547 see [temp.inst]. */
d11ad92e 8548 DECL_INITIAL (r) = NULL_TREE;
820cc88f
DB
8549 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
8550 SET_DECL_RTL (r, NULL_RTX);
06ceef4e 8551 DECL_SIZE (r) = DECL_SIZE_UNIT (r) = 0;
b9e75696
JM
8552 if (TREE_CODE (r) == VAR_DECL)
8553 {
8554 /* Possibly limit visibility based on template args. */
8555 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
b70f0f48
JM
8556 if (DECL_VISIBILITY_SPECIFIED (t))
8557 {
8558 DECL_VISIBILITY_SPECIFIED (r) = 0;
8559 DECL_ATTRIBUTES (r)
8560 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
8561 }
b9e75696
JM
8562 determine_visibility (r);
8563 }
5044ab0e
JM
8564 /* Preserve a typedef that names a type. */
8565 else if (TREE_CODE (r) == TYPE_DECL
8566 && DECL_ORIGINAL_TYPE (t)
8567 && type != error_mark_node)
8568 {
8569 DECL_ORIGINAL_TYPE (r) = tsubst (DECL_ORIGINAL_TYPE (t),
8570 args, complain, in_decl);
8571 TREE_TYPE (r) = type = build_variant_type_copy (type);
8572 TYPE_NAME (type) = r;
8573 }
5566b478 8574
6dfbb909
MM
8575 if (!local_p)
8576 {
8577 /* A static data member declaration is always marked
8578 external when it is declared in-class, even if an
8579 initializer is present. We mimic the non-template
8580 processing here. */
8581 DECL_EXTERNAL (r) = 1;
fa8d6e85 8582
d63d5d0c 8583 register_specialization (r, gen_tmpl, argvec, false);
6dfbb909
MM
8584 DECL_TEMPLATE_INFO (r) = tree_cons (tmpl, argvec, NULL_TREE);
8585 SET_DECL_IMPLICIT_INSTANTIATION (r);
8586 }
9188c363 8587 else
6dfbb909 8588 register_local_specialization (r, t);
5566b478 8589
5566b478 8590 TREE_CHAIN (r) = NULL_TREE;
4f4141ff 8591
5044ab0e
JM
8592 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r),
8593 (int) ATTR_FLAG_TYPE_IN_PLACE,
4f4141ff 8594 args, complain, in_decl);
edebf865 8595 layout_decl (r, 0);
5566b478 8596 }
ae58fa02 8597 break;
5566b478 8598
ae58fa02 8599 default:
315fb5db 8600 gcc_unreachable ();
c8094d83 8601 }
ae58fa02
MM
8602
8603 /* Restore the file and line information. */
82a98427 8604 input_location = saved_loc;
ae58fa02
MM
8605
8606 return r;
8607}
8608
34cd5ae7 8609/* Substitute into the ARG_TYPES of a function type. */
cabc336a 8610
e9659ab0 8611static tree
c8094d83 8612tsubst_arg_types (tree arg_types,
0cbd7506
MS
8613 tree args,
8614 tsubst_flags_t complain,
8615 tree in_decl)
cabc336a
MM
8616{
8617 tree remaining_arg_types;
5d80a306
DG
8618 tree type = NULL_TREE;
8619 int i = 1;
8620 tree expanded_args = NULL_TREE;
5e97d404 8621 tree default_arg;
cabc336a
MM
8622
8623 if (!arg_types || arg_types == void_list_node)
8624 return arg_types;
c8094d83 8625
cabc336a 8626 remaining_arg_types = tsubst_arg_types (TREE_CHAIN (arg_types),
4393e105
MM
8627 args, complain, in_decl);
8628 if (remaining_arg_types == error_mark_node)
8629 return error_mark_node;
8630
5d80a306 8631 if (PACK_EXPANSION_P (TREE_VALUE (arg_types)))
4b2811e9 8632 {
5d80a306
DG
8633 /* For a pack expansion, perform substitution on the
8634 entire expression. Later on, we'll handle the arguments
8635 one-by-one. */
8636 expanded_args = tsubst_pack_expansion (TREE_VALUE (arg_types),
8637 args, complain, in_decl);
cabc336a 8638
5d80a306
DG
8639 if (TREE_CODE (expanded_args) == TREE_VEC)
8640 /* So that we'll spin through the parameters, one by one. */
8641 i = TREE_VEC_LENGTH (expanded_args);
8642 else
8643 {
8644 /* We only partially substituted into the parameter
8645 pack. Our type is TYPE_PACK_EXPANSION. */
8646 type = expanded_args;
8647 expanded_args = NULL_TREE;
8648 }
8649 }
cabc336a 8650
5d80a306
DG
8651 while (i > 0) {
8652 --i;
8653
8654 if (expanded_args)
8655 type = TREE_VEC_ELT (expanded_args, i);
8656 else if (!type)
8657 type = tsubst (TREE_VALUE (arg_types), args, complain, in_decl);
c8094d83 8658
5d80a306
DG
8659 if (type == error_mark_node)
8660 return error_mark_node;
8661 if (VOID_TYPE_P (type))
8662 {
8663 if (complain & tf_error)
8664 {
8665 error ("invalid parameter type %qT", type);
8666 if (in_decl)
8667 error ("in declaration %q+D", in_decl);
8668 }
8669 return error_mark_node;
5e97d404 8670 }
5d80a306
DG
8671
8672 /* Do array-to-pointer, function-to-pointer conversion, and ignore
8673 top-level qualifiers as required. */
8674 type = TYPE_MAIN_VARIANT (type_decays_to (type));
c8094d83 8675
5d80a306
DG
8676 /* We do not substitute into default arguments here. The standard
8677 mandates that they be instantiated only when needed, which is
8678 done in build_over_call. */
8679 default_arg = TREE_PURPOSE (arg_types);
8680
8681 if (default_arg && TREE_CODE (default_arg) == DEFAULT_ARG)
8682 {
8683 /* We've instantiated a template before its default arguments
8684 have been parsed. This can happen for a nested template
8685 class, and is not an error unless we require the default
8686 argument in a call of this function. */
8687 remaining_arg_types =
8688 tree_cons (default_arg, type, remaining_arg_types);
8689 VEC_safe_push (tree, gc, DEFARG_INSTANTIATIONS (default_arg),
8690 remaining_arg_types);
8691 }
8692 else
8693 remaining_arg_types =
8694 hash_tree_cons (default_arg, type, remaining_arg_types);
8695 }
8696
8697 return remaining_arg_types;
cabc336a
MM
8698}
8699
4393e105
MM
8700/* Substitute into a FUNCTION_TYPE or METHOD_TYPE. This routine does
8701 *not* handle the exception-specification for FNTYPE, because the
8702 initial substitution of explicitly provided template parameters
8703 during argument deduction forbids substitution into the
8704 exception-specification:
8705
8706 [temp.deduct]
8707
8708 All references in the function type of the function template to the
8709 corresponding template parameters are replaced by the specified tem-
8710 plate argument values. If a substitution in a template parameter or
8711 in the function type of the function template results in an invalid
8712 type, type deduction fails. [Note: The equivalent substitution in
8713 exception specifications is done only when the function is instanti-
8714 ated, at which point a program is ill-formed if the substitution
8715 results in an invalid type.] */
8716
8717static tree
c8094d83 8718tsubst_function_type (tree t,
0cbd7506
MS
8719 tree args,
8720 tsubst_flags_t complain,
8721 tree in_decl)
4393e105
MM
8722{
8723 tree return_type;
8724 tree arg_types;
8725 tree fntype;
8726
8dd3f57a 8727 /* The TYPE_CONTEXT is not used for function/method types. */
50bc768d 8728 gcc_assert (TYPE_CONTEXT (t) == NULL_TREE);
4393e105 8729
46c895ac 8730 /* Substitute the return type. */
4393e105
MM
8731 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
8732 if (return_type == error_mark_node)
8733 return error_mark_node;
6e2993bf
MM
8734 /* The standard does not presently indicate that creation of a
8735 function type with an invalid return type is a deduction failure.
270af55d 8736 However, that is clearly analogous to creating an array of "void"
c8094d83 8737 or a reference to a reference. This is core issue #486. */
6e2993bf
MM
8738 if (TREE_CODE (return_type) == ARRAY_TYPE
8739 || TREE_CODE (return_type) == FUNCTION_TYPE)
8740 {
8741 if (complain & tf_error)
8742 {
8743 if (TREE_CODE (return_type) == ARRAY_TYPE)
8744 error ("function returning an array");
8745 else
8746 error ("function returning a function");
8747 }
8748 return error_mark_node;
8749 }
4393e105 8750
34cd5ae7 8751 /* Substitute the argument types. */
4393e105 8752 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args,
c8094d83 8753 complain, in_decl);
4393e105
MM
8754 if (arg_types == error_mark_node)
8755 return error_mark_node;
c8094d83 8756
1891dec4
DM
8757 if (TYPE_QUALS (return_type) != TYPE_UNQUALIFIED
8758 && in_decl != NULL_TREE
8759 && !TREE_NO_WARNING (in_decl)
8760 && (SCALAR_TYPE_P (return_type) || VOID_TYPE_P (return_type)))
5db2e9ca 8761 warning (OPT_Wignored_qualifiers,
1891dec4
DM
8762 "type qualifiers ignored on function return type");
8763
4393e105
MM
8764 /* Construct a new type node and return it. */
8765 if (TREE_CODE (t) == FUNCTION_TYPE)
8766 fntype = build_function_type (return_type, arg_types);
8767 else
8768 {
8769 tree r = TREE_TYPE (TREE_VALUE (arg_types));
9e1e64ec 8770 if (! MAYBE_CLASS_TYPE_P (r))
4393e105
MM
8771 {
8772 /* [temp.deduct]
c8094d83 8773
4393e105
MM
8774 Type deduction may fail for any of the following
8775 reasons:
c8094d83 8776
4393e105
MM
8777 -- Attempting to create "pointer to member of T" when T
8778 is not a class type. */
c2ea3a40 8779 if (complain & tf_error)
0f51ccfc 8780 error ("creating pointer to member function of non-class type %qT",
4393e105
MM
8781 r);
8782 return error_mark_node;
8783 }
c8094d83
MS
8784
8785 fntype = build_method_type_directly (r, return_type,
43dc123f 8786 TREE_CHAIN (arg_types));
4393e105 8787 }
c2ea3a40 8788 fntype = cp_build_qualified_type_real (fntype, TYPE_QUALS (t), complain);
e9525111 8789 fntype = cp_build_type_attribute_variant (fntype, TYPE_ATTRIBUTES (t));
c8094d83
MS
8790
8791 return fntype;
4393e105
MM
8792}
8793
c7222c02
MM
8794/* FNTYPE is a FUNCTION_TYPE or METHOD_TYPE. Substitute the template
8795 ARGS into that specification, and return the substituted
8796 specification. If there is no specification, return NULL_TREE. */
8797
8798static tree
c8094d83
MS
8799tsubst_exception_specification (tree fntype,
8800 tree args,
c7222c02
MM
8801 tsubst_flags_t complain,
8802 tree in_decl)
8803{
8804 tree specs;
8805 tree new_specs;
8806
8807 specs = TYPE_RAISES_EXCEPTIONS (fntype);
8808 new_specs = NULL_TREE;
8809 if (specs)
8810 {
8811 if (! TREE_VALUE (specs))
8812 new_specs = specs;
8813 else
8814 while (specs)
8815 {
8816 tree spec;
5d80a306
DG
8817 int i, len = 1;
8818 tree expanded_specs = NULL_TREE;
8819
8820 if (PACK_EXPANSION_P (TREE_VALUE (specs)))
8821 {
8822 /* Expand the pack expansion type. */
8823 expanded_specs = tsubst_pack_expansion (TREE_VALUE (specs),
8824 args, complain,
8825 in_decl);
2f93f02c
DG
8826
8827 if (expanded_specs == error_mark_node)
8828 return error_mark_node;
8829 else if (TREE_CODE (expanded_specs) == TREE_VEC)
8830 len = TREE_VEC_LENGTH (expanded_specs);
8831 else
8832 {
8833 /* We're substituting into a member template, so
8834 we got a TYPE_PACK_EXPANSION back. Add that
8835 expansion and move on. */
8836 gcc_assert (TREE_CODE (expanded_specs)
8837 == TYPE_PACK_EXPANSION);
8838 new_specs = add_exception_specifier (new_specs,
8839 expanded_specs,
8840 complain);
8841 specs = TREE_CHAIN (specs);
8842 continue;
8843 }
5d80a306
DG
8844 }
8845
8846 for (i = 0; i < len; ++i)
8847 {
8848 if (expanded_specs)
8849 spec = TREE_VEC_ELT (expanded_specs, i);
8850 else
8851 spec = tsubst (TREE_VALUE (specs), args, complain, in_decl);
8852 if (spec == error_mark_node)
8853 return spec;
8854 new_specs = add_exception_specifier (new_specs, spec,
8855 complain);
8856 }
8857
8858 specs = TREE_CHAIN (specs);
c7222c02
MM
8859 }
8860 }
8861 return new_specs;
8862}
8863
4393e105
MM
8864/* Take the tree structure T and replace template parameters used
8865 therein with the argument vector ARGS. IN_DECL is an associated
8866 decl for diagnostics. If an error occurs, returns ERROR_MARK_NODE.
c2ea3a40
NS
8867 Issue error and warning messages under control of COMPLAIN. Note
8868 that we must be relatively non-tolerant of extensions here, in
8869 order to preserve conformance; if we allow substitutions that
8870 should not be allowed, we may allow argument deductions that should
8871 not succeed, and therefore report ambiguous overload situations
8872 where there are none. In theory, we could allow the substitution,
8873 but indicate that it should have failed, and allow our caller to
8874 make sure that the right thing happens, but we don't try to do this
8875 yet.
4393e105
MM
8876
8877 This function is used for dealing with types, decls and the like;
8878 for expressions, use tsubst_expr or tsubst_copy. */
ae58fa02 8879
14d22dd6 8880static tree
3a978d72 8881tsubst (tree t, tree args, tsubst_flags_t complain, tree in_decl)
ae58fa02 8882{
0ecfe0b4 8883 tree type, r;
ae58fa02
MM
8884
8885 if (t == NULL_TREE || t == error_mark_node
8886 || t == integer_type_node
8887 || t == void_type_node
8888 || t == char_type_node
539599c1 8889 || t == unknown_type_node
ae58fa02
MM
8890 || TREE_CODE (t) == NAMESPACE_DECL)
8891 return t;
8892
fc6a28d7
MM
8893 if (DECL_P (t))
8894 return tsubst_decl (t, args, complain);
8895
ae58fa02
MM
8896 if (TREE_CODE (t) == IDENTIFIER_NODE)
8897 type = IDENTIFIER_TYPE_VALUE (t);
8898 else
8899 type = TREE_TYPE (t);
399dedb9 8900
50bc768d 8901 gcc_assert (type != unknown_type_node);
ae58fa02 8902
56d0c6e3 8903 /* Reuse typedefs. We need to do this to handle dependent attributes,
a7f6bc8c 8904 such as attribute aligned. */
5044ab0e
JM
8905 if (TYPE_P (t)
8906 && TYPE_NAME (t)
a7f6bc8c 8907 && TYPE_NAME (t) != TYPE_MAIN_DECL (t))
5044ab0e
JM
8908 {
8909 tree decl = TYPE_NAME (t);
56d0c6e3 8910
a7f6bc8c 8911 if (DECL_CLASS_SCOPE_P (decl)
02e52ae5
JM
8912 && CLASSTYPE_TEMPLATE_INFO (DECL_CONTEXT (decl))
8913 && uses_template_parms (DECL_CONTEXT (decl)))
56d0c6e3
JM
8914 {
8915 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
8916 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
8917 r = retrieve_specialization (tmpl, gen_args, false);
8918 }
29b0d1fd 8919 else if (DECL_FUNCTION_SCOPE_P (decl)
02e52ae5
JM
8920 && DECL_TEMPLATE_INFO (DECL_CONTEXT (decl))
8921 && uses_template_parms (DECL_TI_ARGS (DECL_CONTEXT (decl))))
56d0c6e3
JM
8922 r = retrieve_local_specialization (decl);
8923 else
29b0d1fd
JM
8924 /* The typedef is from a non-template context. */
8925 return t;
8926
56d0c6e3
JM
8927 if (r)
8928 {
8929 r = TREE_TYPE (r);
8930 r = cp_build_qualified_type_real
8931 (r, cp_type_quals (t) | cp_type_quals (r),
8932 complain | tf_ignore_bad_quals);
8933 return r;
8934 }
8935 /* Else we must be instantiating the typedef, so fall through. */
5044ab0e
JM
8936 }
8937
fc6a28d7 8938 if (type
ae58fa02 8939 && TREE_CODE (t) != TYPENAME_TYPE
4393e105
MM
8940 && TREE_CODE (t) != IDENTIFIER_NODE
8941 && TREE_CODE (t) != FUNCTION_TYPE
8942 && TREE_CODE (t) != METHOD_TYPE)
8943 type = tsubst (type, args, complain, in_decl);
8944 if (type == error_mark_node)
8945 return error_mark_node;
ae58fa02 8946
ae58fa02
MM
8947 switch (TREE_CODE (t))
8948 {
8949 case RECORD_TYPE:
8950 case UNION_TYPE:
8951 case ENUMERAL_TYPE:
4393e105
MM
8952 return tsubst_aggr_type (t, args, complain, in_decl,
8953 /*entering_scope=*/0);
ae58fa02
MM
8954
8955 case ERROR_MARK:
8956 case IDENTIFIER_NODE:
ae58fa02
MM
8957 case VOID_TYPE:
8958 case REAL_TYPE:
8959 case COMPLEX_TYPE:
c00996a3 8960 case VECTOR_TYPE:
ae58fa02
MM
8961 case BOOLEAN_TYPE:
8962 case INTEGER_CST:
8963 case REAL_CST:
8964 case STRING_CST:
8965 return t;
8966
8967 case INTEGER_TYPE:
8968 if (t == integer_type_node)
8969 return t;
8970
8971 if (TREE_CODE (TYPE_MIN_VALUE (t)) == INTEGER_CST
8972 && TREE_CODE (TYPE_MAX_VALUE (t)) == INTEGER_CST)
8973 return t;
d2e5ee5c 8974
5566b478 8975 {
ddce3528 8976 tree max, omax = TREE_OPERAND (TYPE_MAX_VALUE (t), 0);
7ddedda4 8977
6ee3ffe8
MM
8978 max = tsubst_expr (omax, args, complain, in_decl,
8979 /*integral_constant_expression_p=*/false);
4ef69b83 8980 max = fold_decl_constant_value (max);
8dd3f57a 8981
6a279e92
JJ
8982 if (TREE_CODE (max) != INTEGER_CST
8983 && !at_function_scope_p ()
8984 && !value_dependent_expression_p (max))
eff3a276
MM
8985 {
8986 if (complain & tf_error)
8987 error ("array bound is not an integer constant");
8988 return error_mark_node;
8989 }
8990
95cd6f6f 8991 /* [temp.deduct]
4393e105 8992
95cd6f6f
JC
8993 Type deduction may fail for any of the following
8994 reasons:
4393e105 8995
95cd6f6f
JC
8996 Attempting to create an array with a size that is
8997 zero or negative. */
8998 if (integer_zerop (max) && !(complain & tf_error))
8999 /* We must fail if performing argument deduction (as
9000 indicated by the state of complain), so that
9001 another substitution can be found. */
9002 return error_mark_node;
95cd6f6f
JC
9003 else if (TREE_CODE (max) == INTEGER_CST
9004 && INT_CST_LT (max, integer_zero_node))
9005 {
c2ea3a40 9006 if (complain & tf_error)
95cd6f6f 9007 error ("creating array with negative size (%qE)", max);
4393e105
MM
9008
9009 return error_mark_node;
0ecfe0b4
JM
9010 }
9011
c95cd22e 9012 return compute_array_index_type (NULL_TREE, max);
ae58fa02
MM
9013 }
9014
9015 case TEMPLATE_TYPE_PARM:
9016 case TEMPLATE_TEMPLATE_PARM:
a1281f45 9017 case BOUND_TEMPLATE_TEMPLATE_PARM:
ae58fa02
MM
9018 case TEMPLATE_PARM_INDEX:
9019 {
9020 int idx;
9021 int level;
9022 int levels;
315fb5db 9023 tree arg = NULL_TREE;
0ecfe0b4
JM
9024
9025 r = NULL_TREE;
ae58fa02 9026
315fb5db 9027 gcc_assert (TREE_VEC_LENGTH (args) > 0);
f4205442 9028 template_parm_level_and_index (t, &level, &idx);
ae58fa02 9029
315fb5db
NS
9030 levels = TMPL_ARGS_DEPTH (args);
9031 if (level <= levels)
5d80a306
DG
9032 {
9033 arg = TMPL_ARG (args, level, idx);
9034
9035 if (arg && TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
9036 /* See through ARGUMENT_PACK_SELECT arguments. */
9037 arg = ARGUMENT_PACK_SELECT_ARG (arg);
9038 }
ae58fa02 9039
315fb5db
NS
9040 if (arg == error_mark_node)
9041 return error_mark_node;
9042 else if (arg != NULL_TREE)
9043 {
5d80a306
DG
9044 if (ARGUMENT_PACK_P (arg))
9045 /* If ARG is an argument pack, we don't actually want to
9046 perform a substitution here, because substitutions
9047 for argument packs are only done
9048 element-by-element. We can get to this point when
9049 substituting the type of a non-type template
9050 parameter pack, when that type actually contains
9051 template parameter packs from an outer template, e.g.,
9052
9053 template<typename... Types> struct A {
9054 template<Types... Values> struct B { };
9055 }; */
9056 return t;
9057
315fb5db 9058 if (TREE_CODE (t) == TEMPLATE_TYPE_PARM)
ae58fa02 9059 {
9180c238 9060 int quals;
315fb5db 9061 gcc_assert (TYPE_P (arg));
9180c238
JM
9062
9063 /* cv-quals from the template are discarded when
9064 substituting in a function or reference type. */
9065 if (TREE_CODE (arg) == FUNCTION_TYPE
9066 || TREE_CODE (arg) == METHOD_TYPE
9067 || TREE_CODE (arg) == REFERENCE_TYPE)
9068 quals = cp_type_quals (arg);
9069 else
9070 quals = cp_type_quals (arg) | cp_type_quals (t);
9071
315fb5db 9072 return cp_build_qualified_type_real
9180c238 9073 (arg, quals, complain | tf_ignore_bad_quals);
315fb5db
NS
9074 }
9075 else if (TREE_CODE (t) == BOUND_TEMPLATE_TEMPLATE_PARM)
9076 {
9077 /* We are processing a type constructed from a
9078 template template parameter. */
9079 tree argvec = tsubst (TYPE_TI_ARGS (t),
9080 args, complain, in_decl);
9081 if (argvec == error_mark_node)
9082 return error_mark_node;
c8094d83 9083
315fb5db
NS
9084 /* We can get a TEMPLATE_TEMPLATE_PARM here when we
9085 are resolving nested-types in the signature of a
9086 member function templates. Otherwise ARG is a
9087 TEMPLATE_DECL and is the real template to be
9088 instantiated. */
9089 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
9090 arg = TYPE_NAME (arg);
c8094d83
MS
9091
9092 r = lookup_template_class (arg,
9093 argvec, in_decl,
315fb5db
NS
9094 DECL_CONTEXT (arg),
9095 /*entering_scope=*/0,
9096 complain);
9097 return cp_build_qualified_type_real
9098 (r, TYPE_QUALS (t), complain);
ae58fa02 9099 }
315fb5db
NS
9100 else
9101 /* TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX. */
9102 return arg;
ae58fa02
MM
9103 }
9104
9105 if (level == 1)
9106 /* This can happen during the attempted tsubst'ing in
9107 unify. This means that we don't yet have any information
9108 about the template parameter in question. */
9109 return t;
9110
9111 /* If we get here, we must have been looking at a parm for a
9112 more deeply nested template. Make a new version of this
9113 template parameter, but with a lower level. */
9114 switch (TREE_CODE (t))
9115 {
9116 case TEMPLATE_TYPE_PARM:
9117 case TEMPLATE_TEMPLATE_PARM:
a1281f45 9118 case BOUND_TEMPLATE_TEMPLATE_PARM:
89d684bb 9119 if (cp_type_quals (t))
ae58fa02 9120 {
9ccf6541 9121 r = tsubst (TYPE_MAIN_VARIANT (t), args, complain, in_decl);
0cbd7506
MS
9122 r = cp_build_qualified_type_real
9123 (r, cp_type_quals (t),
4f2b0fb2
NS
9124 complain | (TREE_CODE (t) == TEMPLATE_TYPE_PARM
9125 ? tf_ignore_bad_quals : 0));
9ccf6541
MM
9126 }
9127 else
9128 {
11e74ea6 9129 r = copy_type (t);
9ccf6541
MM
9130 TEMPLATE_TYPE_PARM_INDEX (r)
9131 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (t),
ef3b7b17 9132 r, levels, args, complain);
9ccf6541
MM
9133 TYPE_STUB_DECL (r) = TYPE_NAME (r) = TEMPLATE_TYPE_DECL (r);
9134 TYPE_MAIN_VARIANT (r) = r;
9135 TYPE_POINTER_TO (r) = NULL_TREE;
9136 TYPE_REFERENCE_TO (r) = NULL_TREE;
9137
06d40de8
DG
9138 if (TREE_CODE (r) == TEMPLATE_TEMPLATE_PARM)
9139 /* We have reduced the level of the template
9140 template parameter, but not the levels of its
9141 template parameters, so canonical_type_parameter
9142 will not be able to find the canonical template
9143 template parameter for this level. Thus, we
9144 require structural equality checking to compare
9145 TEMPLATE_TEMPLATE_PARMs. */
9146 SET_TYPE_STRUCTURAL_EQUALITY (r);
3d761c46
DG
9147 else if (TYPE_STRUCTURAL_EQUALITY_P (t))
9148 SET_TYPE_STRUCTURAL_EQUALITY (r);
06d40de8
DG
9149 else
9150 TYPE_CANONICAL (r) = canonical_type_parameter (r);
9151
a1281f45 9152 if (TREE_CODE (t) == BOUND_TEMPLATE_TEMPLATE_PARM)
9ccf6541
MM
9153 {
9154 tree argvec = tsubst (TYPE_TI_ARGS (t), args,
c8094d83 9155 complain, in_decl);
9ccf6541
MM
9156 if (argvec == error_mark_node)
9157 return error_mark_node;
4393e105 9158
9ccf6541
MM
9159 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (r)
9160 = tree_cons (TYPE_TI_TEMPLATE (t), argvec, NULL_TREE);
9161 }
ae58fa02
MM
9162 }
9163 break;
9164
9165 case TEMPLATE_PARM_INDEX:
ef3b7b17 9166 r = reduce_template_parm_level (t, type, levels, args, complain);
ae58fa02 9167 break;
c8094d83 9168
ae58fa02 9169 default:
315fb5db 9170 gcc_unreachable ();
ae58fa02
MM
9171 }
9172
5566b478 9173 return r;
ae58fa02 9174 }
5566b478 9175
8d08fdba
MS
9176 case TREE_LIST:
9177 {
058b15c1 9178 tree purpose, value, chain;
8d08fdba
MS
9179
9180 if (t == void_list_node)
9181 return t;
9182
8d08fdba
MS
9183 purpose = TREE_PURPOSE (t);
9184 if (purpose)
4393e105
MM
9185 {
9186 purpose = tsubst (purpose, args, complain, in_decl);
9187 if (purpose == error_mark_node)
9188 return error_mark_node;
9189 }
8d08fdba
MS
9190 value = TREE_VALUE (t);
9191 if (value)
4393e105
MM
9192 {
9193 value = tsubst (value, args, complain, in_decl);
9194 if (value == error_mark_node)
9195 return error_mark_node;
9196 }
8d08fdba
MS
9197 chain = TREE_CHAIN (t);
9198 if (chain && chain != void_type_node)
4393e105
MM
9199 {
9200 chain = tsubst (chain, args, complain, in_decl);
9201 if (chain == error_mark_node)
9202 return error_mark_node;
9203 }
8d08fdba
MS
9204 if (purpose == TREE_PURPOSE (t)
9205 && value == TREE_VALUE (t)
9206 && chain == TREE_CHAIN (t))
9207 return t;
058b15c1 9208 return hash_tree_cons (purpose, value, chain);
8d08fdba 9209 }
c8094d83 9210
95b4aca6 9211 case TREE_BINFO:
bd7eccc4 9212 /* We should never be tsubsting a binfo. */
315fb5db 9213 gcc_unreachable ();
85b71cf2 9214
95b4aca6
NS
9215 case TREE_VEC:
9216 /* A vector of template arguments. */
50bc768d 9217 gcc_assert (!type);
a91db711 9218 return tsubst_template_args (t, args, complain, in_decl);
8d08fdba 9219
8d08fdba
MS
9220 case POINTER_TYPE:
9221 case REFERENCE_TYPE:
9222 {
8d08fdba 9223 enum tree_code code;
79a7c7fa 9224
46c895ac 9225 if (type == TREE_TYPE (t) && TREE_CODE (type) != METHOD_TYPE)
8d08fdba
MS
9226 return t;
9227
9228 code = TREE_CODE (t);
4393e105
MM
9229
9230
9231 /* [temp.deduct]
c8094d83 9232
4393e105 9233 Type deduction may fail for any of the following
c8094d83 9234 reasons:
4393e105
MM
9235
9236 -- Attempting to create a pointer to reference type.
9237 -- Attempting to create a reference to a reference type or
8af2fec4
RY
9238 a reference to void.
9239
9240 Core issue 106 says that creating a reference to a reference
9241 during instantiation is no longer a cause for failure. We
9242 only enforce this check in strict C++98 mode. */
9243 if ((TREE_CODE (type) == REFERENCE_TYPE
c1ae8be5 9244 && (((cxx_dialect == cxx98) && flag_iso) || code != REFERENCE_TYPE))
0ecfe0b4 9245 || (code == REFERENCE_TYPE && TREE_CODE (type) == VOID_TYPE))
79a7c7fa 9246 {
82a98427 9247 static location_t last_loc;
79a7c7fa
JM
9248
9249 /* We keep track of the last time we issued this error
9250 message to avoid spewing a ton of messages during a
9251 single bad template instantiation. */
c2ea3a40 9252 if (complain & tf_error
2d593c86 9253 && last_loc != input_location)
79a7c7fa 9254 {
0ecfe0b4 9255 if (TREE_CODE (type) == VOID_TYPE)
33bd39a2 9256 error ("forming reference to void");
0ecfe0b4 9257 else
0f51ccfc 9258 error ("forming %s to reference type %qT",
0cbd7506
MS
9259 (code == POINTER_TYPE) ? "pointer" : "reference",
9260 type);
82a98427 9261 last_loc = input_location;
79a7c7fa
JM
9262 }
9263
4393e105 9264 return error_mark_node;
79a7c7fa
JM
9265 }
9266 else if (code == POINTER_TYPE)
46c895ac
NS
9267 {
9268 r = build_pointer_type (type);
9269 if (TREE_CODE (type) == METHOD_TYPE)
9270 r = build_ptrmemfunc_type (r);
9271 }
8af2fec4
RY
9272 else if (TREE_CODE (type) == REFERENCE_TYPE)
9273 /* In C++0x, during template argument substitution, when there is an
9274 attempt to create a reference to a reference type, reference
9275 collapsing is applied as described in [14.3.1/4 temp.arg.type]:
9276
9277 "If a template-argument for a template-parameter T names a type
9278 that is a reference to a type A, an attempt to create the type
9279 'lvalue reference to cv T' creates the type 'lvalue reference to
9280 A,' while an attempt to create the type type rvalue reference to
9281 cv T' creates the type T"
9282 */
9283 r = cp_build_reference_type
9284 (TREE_TYPE (type),
9285 TYPE_REF_IS_RVALUE (t) && TYPE_REF_IS_RVALUE (type));
8d08fdba 9286 else
8af2fec4 9287 r = cp_build_reference_type (type, TYPE_REF_IS_RVALUE (t));
adecb3f4 9288 r = cp_build_qualified_type_real (r, TYPE_QUALS (t), complain);
79a7c7fa 9289
a5f1c5f8
NS
9290 if (r != error_mark_node)
9291 /* Will this ever be needed for TYPE_..._TO values? */
9292 layout_type (r);
c8094d83 9293
8d08fdba
MS
9294 return r;
9295 }
a4443a08 9296 case OFFSET_TYPE:
0ecfe0b4 9297 {
4393e105 9298 r = tsubst (TYPE_OFFSET_BASETYPE (t), args, complain, in_decl);
9e1e64ec 9299 if (r == error_mark_node || !MAYBE_CLASS_TYPE_P (r))
4393e105
MM
9300 {
9301 /* [temp.deduct]
9302
9303 Type deduction may fail for any of the following
9304 reasons:
c8094d83 9305
4393e105 9306 -- Attempting to create "pointer to member of T" when T
0cbd7506 9307 is not a class type. */
c2ea3a40 9308 if (complain & tf_error)
0f51ccfc 9309 error ("creating pointer to member of non-class type %qT", r);
4393e105
MM
9310 return error_mark_node;
9311 }
46c895ac
NS
9312 if (TREE_CODE (type) == REFERENCE_TYPE)
9313 {
4f09be91 9314 if (complain & tf_error)
0f51ccfc 9315 error ("creating pointer to member reference type %qT", type);
cb6d4a9f
VR
9316 return error_mark_node;
9317 }
9318 if (TREE_CODE (type) == VOID_TYPE)
9319 {
9320 if (complain & tf_error)
9321 error ("creating pointer to member of type void");
46c895ac
NS
9322 return error_mark_node;
9323 }
50bc768d 9324 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
46c895ac 9325 if (TREE_CODE (type) == FUNCTION_TYPE)
a5ac359a 9326 {
0cbd7506
MS
9327 /* The type of the implicit object parameter gets its
9328 cv-qualifiers from the FUNCTION_TYPE. */
a5ac359a 9329 tree method_type;
0cbd7506
MS
9330 tree this_type = cp_build_qualified_type (TYPE_MAIN_VARIANT (r),
9331 cp_type_quals (type));
9332 tree memptr;
9333 method_type = build_method_type_directly (this_type,
43dc123f
MM
9334 TREE_TYPE (type),
9335 TYPE_ARG_TYPES (type));
0cbd7506
MS
9336 memptr = build_ptrmemfunc_type (build_pointer_type (method_type));
9337 return cp_build_qualified_type_real (memptr, cp_type_quals (t),
9338 complain);
a5ac359a 9339 }
46c895ac 9340 else
b7a78333
MM
9341 return cp_build_qualified_type_real (build_ptrmem_type (r, type),
9342 TYPE_QUALS (t),
9343 complain);
0ecfe0b4 9344 }
8d08fdba
MS
9345 case FUNCTION_TYPE:
9346 case METHOD_TYPE:
9347 {
c11b6f21 9348 tree fntype;
c7222c02 9349 tree specs;
4393e105
MM
9350 fntype = tsubst_function_type (t, args, complain, in_decl);
9351 if (fntype == error_mark_node)
9352 return error_mark_node;
cabc336a 9353
34cd5ae7 9354 /* Substitute the exception specification. */
c8094d83 9355 specs = tsubst_exception_specification (t, args, complain,
c7222c02 9356 in_decl);
9f6206d9
VR
9357 if (specs == error_mark_node)
9358 return error_mark_node;
c7222c02
MM
9359 if (specs)
9360 fntype = build_exception_variant (fntype, specs);
c11b6f21 9361 return fntype;
8d08fdba
MS
9362 }
9363 case ARRAY_TYPE:
9364 {
4393e105
MM
9365 tree domain = tsubst (TYPE_DOMAIN (t), args, complain, in_decl);
9366 if (domain == error_mark_node)
9367 return error_mark_node;
9368
9369 /* As an optimization, we avoid regenerating the array type if
9370 it will obviously be the same as T. */
8d08fdba
MS
9371 if (type == TREE_TYPE (t) && domain == TYPE_DOMAIN (t))
9372 return t;
0ecfe0b4 9373
c8094d83 9374 /* These checks should match the ones in grokdeclarator.
4393e105 9375
c8094d83
MS
9376 [temp.deduct]
9377
9378 The deduction may fail for any of the following reasons:
4393e105
MM
9379
9380 -- Attempting to create an array with an element type that
c8094d83 9381 is void, a function type, or a reference type, or [DR337]
cfb91b67 9382 an abstract class type. */
c8094d83 9383 if (TREE_CODE (type) == VOID_TYPE
4393e105
MM
9384 || TREE_CODE (type) == FUNCTION_TYPE
9385 || TREE_CODE (type) == REFERENCE_TYPE)
0ecfe0b4 9386 {
c2ea3a40 9387 if (complain & tf_error)
0f51ccfc 9388 error ("creating array of %qT", type);
4393e105 9389 return error_mark_node;
0ecfe0b4 9390 }
cfb91b67
GB
9391 if (CLASS_TYPE_P (type) && CLASSTYPE_PURE_VIRTUALS (type))
9392 {
9393 if (complain & tf_error)
c8094d83 9394 error ("creating array of %qT, which is an abstract class type",
cfb91b67 9395 type);
c8094d83 9396 return error_mark_node;
cfb91b67 9397 }
0ecfe0b4 9398
8d08fdba 9399 r = build_cplus_array_type (type, domain);
5044ab0e
JM
9400
9401 if (TYPE_USER_ALIGN (t))
9402 {
9403 TYPE_ALIGN (r) = TYPE_ALIGN (t);
9404 TYPE_USER_ALIGN (r) = 1;
9405 }
9406
8d08fdba
MS
9407 return r;
9408 }
9409
8d08fdba 9410 case PLUS_EXPR:
5566b478 9411 case MINUS_EXPR:
4393e105 9412 {
c2ea3a40
NS
9413 tree e1 = tsubst (TREE_OPERAND (t, 0), args, complain, in_decl);
9414 tree e2 = tsubst (TREE_OPERAND (t, 1), args, complain, in_decl);
4393e105
MM
9415
9416 if (e1 == error_mark_node || e2 == error_mark_node)
9417 return error_mark_node;
9418
7866705a 9419 return fold_build2 (TREE_CODE (t), TREE_TYPE (t), e1, e2);
4393e105 9420 }
8d08fdba
MS
9421
9422 case NEGATE_EXPR:
9423 case NOP_EXPR:
4393e105 9424 {
c2ea3a40 9425 tree e = tsubst (TREE_OPERAND (t, 0), args, complain, in_decl);
4393e105
MM
9426 if (e == error_mark_node)
9427 return error_mark_node;
9428
7866705a 9429 return fold_build1 (TREE_CODE (t), TREE_TYPE (t), e);
4393e105 9430 }
8d08fdba 9431
5566b478
MS
9432 case TYPENAME_TYPE:
9433 {
4393e105
MM
9434 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
9435 in_decl, /*entering_scope=*/1);
9436 tree f = tsubst_copy (TYPENAME_TYPE_FULLNAME (t), args,
c8094d83 9437 complain, in_decl);
4393e105
MM
9438
9439 if (ctx == error_mark_node || f == error_mark_node)
9440 return error_mark_node;
ae58fa02 9441
9e1e64ec 9442 if (!MAYBE_CLASS_TYPE_P (ctx))
bf8f3f93 9443 {
c2ea3a40 9444 if (complain & tf_error)
0f51ccfc 9445 error ("%qT is not a class, struct, or union type", ctx);
bf8f3f93
MM
9446 return error_mark_node;
9447 }
9448 else if (!uses_template_parms (ctx) && !TYPE_BEING_DEFINED (ctx))
9449 {
9450 /* Normally, make_typename_type does not require that the CTX
9451 have complete type in order to allow things like:
c8094d83 9452
0cbd7506 9453 template <class T> struct S { typename S<T>::X Y; };
ae58fa02 9454
bf8f3f93
MM
9455 But, such constructs have already been resolved by this
9456 point, so here CTX really should have complete type, unless
9457 it's a partial instantiation. */
4393e105 9458 ctx = complete_type (ctx);
d0f062fb 9459 if (!COMPLETE_TYPE_P (ctx))
4393e105 9460 {
c2ea3a40 9461 if (complain & tf_error)
7a228918 9462 cxx_incomplete_type_error (NULL_TREE, ctx);
4393e105
MM
9463 return error_mark_node;
9464 }
9465 }
ae58fa02 9466
fc6a28d7 9467 f = make_typename_type (ctx, f, typename_type,
4f2b0fb2 9468 (complain & tf_error) | tf_keep_type_decl);
f0bcd168
MM
9469 if (f == error_mark_node)
9470 return f;
0cbd7506
MS
9471 if (TREE_CODE (f) == TYPE_DECL)
9472 {
4f2b0fb2 9473 complain |= tf_ignore_bad_quals;
0cbd7506
MS
9474 f = TREE_TYPE (f);
9475 }
c8094d83 9476
fc6a28d7
MM
9477 if (TREE_CODE (f) != TYPENAME_TYPE)
9478 {
9479 if (TYPENAME_IS_ENUM_P (t) && TREE_CODE (f) != ENUMERAL_TYPE)
c8094d83 9480 error ("%qT resolves to %qT, which is not an enumeration type",
fc6a28d7
MM
9481 t, f);
9482 else if (TYPENAME_IS_CLASS_P (t) && !CLASS_TYPE_P (f))
c8094d83 9483 error ("%qT resolves to %qT, which is is not a class type",
fc6a28d7
MM
9484 t, f);
9485 }
9486
0cbd7506
MS
9487 return cp_build_qualified_type_real
9488 (f, cp_type_quals (f) | cp_type_quals (t), complain);
5566b478 9489 }
c8094d83 9490
b8c6534b
KL
9491 case UNBOUND_CLASS_TEMPLATE:
9492 {
9493 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
9494 in_decl, /*entering_scope=*/1);
9495 tree name = TYPE_IDENTIFIER (t);
b939a023 9496 tree parm_list = DECL_TEMPLATE_PARMS (TYPE_NAME (t));
b8c6534b
KL
9497
9498 if (ctx == error_mark_node || name == error_mark_node)
9499 return error_mark_node;
9500
b939a023
KL
9501 if (parm_list)
9502 parm_list = tsubst_template_parms (parm_list, args, complain);
9503 return make_unbound_class_template (ctx, name, parm_list, complain);
b8c6534b
KL
9504 }
9505
5566b478 9506 case INDIRECT_REF:
5566b478 9507 case ADDR_EXPR:
058b15c1 9508 case CALL_EXPR:
315fb5db 9509 gcc_unreachable ();
5566b478
MS
9510
9511 case ARRAY_REF:
4393e105 9512 {
c2ea3a40 9513 tree e1 = tsubst (TREE_OPERAND (t, 0), args, complain, in_decl);
015c2c66
MM
9514 tree e2 = tsubst_expr (TREE_OPERAND (t, 1), args, complain, in_decl,
9515 /*integral_constant_expression_p=*/false);
4393e105
MM
9516 if (e1 == error_mark_node || e2 == error_mark_node)
9517 return error_mark_node;
9518
44de5aeb 9519 return build_nt (ARRAY_REF, e1, e2, NULL_TREE, NULL_TREE);
4393e105 9520 }
5566b478 9521
fc378698 9522 case SCOPE_REF:
4393e105 9523 {
c2ea3a40 9524 tree e1 = tsubst (TREE_OPERAND (t, 0), args, complain, in_decl);
4393e105
MM
9525 tree e2 = tsubst (TREE_OPERAND (t, 1), args, complain, in_decl);
9526 if (e1 == error_mark_node || e2 == error_mark_node)
9527 return error_mark_node;
9528
02ed62dd
MM
9529 return build_qualified_name (/*type=*/NULL_TREE,
9530 e1, e2, QUALIFIED_NAME_IS_TEMPLATE (t));
4393e105 9531 }
fc378698 9532
b894fc05 9533 case TYPEOF_TYPE:
4393e105 9534 {
b830b74c 9535 tree type;
4393e105 9536
015c2c66
MM
9537 type = finish_typeof (tsubst_expr
9538 (TYPEOF_TYPE_EXPR (t), args,
9539 complain, in_decl,
9540 /*integral_constant_expression_p=*/false));
b830b74c 9541 return cp_build_qualified_type_real (type,
dce50630 9542 cp_type_quals (t)
b830b74c 9543 | cp_type_quals (type),
dce50630 9544 complain);
4393e105 9545 }
b894fc05 9546
3ad6a8e1
DG
9547 case DECLTYPE_TYPE:
9548 {
9549 tree type;
9550
9551 type =
9552 finish_decltype_type (tsubst_expr
9553 (DECLTYPE_TYPE_EXPR (t), args,
9554 complain, in_decl,
9555 /*integral_constant_expression_p=*/false),
9556 DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t));
9557 return cp_build_qualified_type_real (type,
9558 cp_type_quals (t)
9559 | cp_type_quals (type),
9560 complain);
9561 }
9562
5d80a306
DG
9563 case TYPE_ARGUMENT_PACK:
9564 case NONTYPE_ARGUMENT_PACK:
9565 {
9566 tree r = make_node (TREE_CODE (t));
9567 tree packed_out =
9568 tsubst_template_args (ARGUMENT_PACK_ARGS (t),
9569 args,
9570 complain,
9571 in_decl);
9572 SET_ARGUMENT_PACK_ARGS (r, packed_out);
9573
9574 /* For template nontype argument packs, also substitute into
9575 the type. */
9576 if (TREE_CODE (t) == NONTYPE_ARGUMENT_PACK)
9577 TREE_TYPE (r) = tsubst (TREE_TYPE (t), args, complain, in_decl);
9578
9579 return r;
9580 }
9581 break;
9582
8d08fdba 9583 default:
9e637a26 9584 sorry ("use of %qs in template",
8d08fdba
MS
9585 tree_code_name [(int) TREE_CODE (t)]);
9586 return error_mark_node;
9587 }
9588}
9589
ee76b931
MM
9590/* Like tsubst_expr for a BASELINK. OBJECT_TYPE, if non-NULL, is the
9591 type of the expression on the left-hand side of the "." or "->"
9592 operator. */
9593
9594static tree
9595tsubst_baselink (tree baselink, tree object_type,
9596 tree args, tsubst_flags_t complain, tree in_decl)
9597{
9598 tree name;
9599 tree qualifying_scope;
9600 tree fns;
6f67f000 9601 tree optype;
ee76b931
MM
9602 tree template_args = 0;
9603 bool template_id_p = false;
9604
51a203d9
MM
9605 /* A baselink indicates a function from a base class. Both the
9606 BASELINK_ACCESS_BINFO and the base class referenced may
9607 indicate bases of the template class, rather than the
9608 instantiated class. In addition, lookups that were not
9609 ambiguous before may be ambiguous now. Therefore, we perform
9610 the lookup again. */
ee76b931 9611 qualifying_scope = BINFO_TYPE (BASELINK_ACCESS_BINFO (baselink));
51a203d9
MM
9612 qualifying_scope = tsubst (qualifying_scope, args,
9613 complain, in_decl);
ee76b931 9614 fns = BASELINK_FUNCTIONS (baselink);
6f67f000 9615 optype = BASELINK_OPTYPE (baselink);
ee76b931
MM
9616 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
9617 {
9618 template_id_p = true;
9619 template_args = TREE_OPERAND (fns, 1);
9620 fns = TREE_OPERAND (fns, 0);
bf12d54d
NS
9621 if (template_args)
9622 template_args = tsubst_template_args (template_args, args,
9623 complain, in_decl);
ee76b931
MM
9624 }
9625 name = DECL_NAME (get_first_fn (fns));
9626 baselink = lookup_fnfields (qualifying_scope, name, /*protect=*/1);
c8094d83 9627
9b60dfd7
MM
9628 /* If lookup found a single function, mark it as used at this
9629 point. (If it lookup found multiple functions the one selected
9630 later by overload resolution will be marked as used at that
9631 point.) */
9632 if (BASELINK_P (baselink))
9633 fns = BASELINK_FUNCTIONS (baselink);
9634 if (!template_id_p && !really_overloaded_fn (fns))
9635 mark_used (OVL_CURRENT (fns));
9636
9637 /* Add back the template arguments, if present. */
ee76b931 9638 if (BASELINK_P (baselink) && template_id_p)
c8094d83 9639 BASELINK_FUNCTIONS (baselink)
ee76b931
MM
9640 = build_nt (TEMPLATE_ID_EXPR,
9641 BASELINK_FUNCTIONS (baselink),
9642 template_args);
6f67f000
MM
9643 /* Update the conversion operator type. */
9644 BASELINK_OPTYPE (baselink)
9645 = tsubst (optype, args, complain, in_decl);
9b60dfd7 9646
ee76b931
MM
9647 if (!object_type)
9648 object_type = current_class_type;
c8094d83 9649 return adjust_result_of_qualified_name_lookup (baselink,
ee76b931
MM
9650 qualifying_scope,
9651 object_type);
9652}
9653
9654/* Like tsubst_expr for a SCOPE_REF, given by QUALIFIED_ID. DONE is
9655 true if the qualified-id will be a postfix-expression in-and-of
9656 itself; false if more of the postfix-expression follows the
9657 QUALIFIED_ID. ADDRESS_P is true if the qualified-id is the operand
9658 of "&". */
9659
9660static tree
c8094d83 9661tsubst_qualified_id (tree qualified_id, tree args,
ee76b931
MM
9662 tsubst_flags_t complain, tree in_decl,
9663 bool done, bool address_p)
9664{
9665 tree expr;
9666 tree scope;
9667 tree name;
9668 bool is_template;
9669 tree template_args;
9670
50bc768d 9671 gcc_assert (TREE_CODE (qualified_id) == SCOPE_REF);
ee76b931 9672
ee76b931
MM
9673 /* Figure out what name to look up. */
9674 name = TREE_OPERAND (qualified_id, 1);
9675 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
9676 {
9677 is_template = true;
bf12d54d
NS
9678 template_args = TREE_OPERAND (name, 1);
9679 if (template_args)
9680 template_args = tsubst_template_args (template_args, args,
9681 complain, in_decl);
ee76b931
MM
9682 name = TREE_OPERAND (name, 0);
9683 }
9684 else
9685 {
9686 is_template = false;
9687 template_args = NULL_TREE;
9688 }
9689
6eeba0cc
MM
9690 /* Substitute into the qualifying scope. When there are no ARGS, we
9691 are just trying to simplify a non-dependent expression. In that
9692 case the qualifying scope may be dependent, and, in any case,
9693 substituting will not help. */
9694 scope = TREE_OPERAND (qualified_id, 0);
9695 if (args)
9696 {
9697 scope = tsubst (scope, args, complain, in_decl);
9698 expr = tsubst_copy (name, args, complain, in_decl);
9699 }
9700 else
9701 expr = name;
10b1d5e7 9702
ab73670a 9703 if (dependent_type_p (scope))
3db45ab5
MS
9704 return build_qualified_name (/*type=*/NULL_TREE,
9705 scope, expr,
02ed62dd 9706 QUALIFIED_NAME_IS_TEMPLATE (qualified_id));
c8094d83 9707
5e08432e 9708 if (!BASELINK_P (name) && !DECL_P (expr))
12483c9f 9709 {
8ca4bf25
MM
9710 if (TREE_CODE (expr) == BIT_NOT_EXPR)
9711 /* If this were actually a destructor call, it would have been
9712 parsed as such by the parser. */
9713 expr = error_mark_node;
9714 else
9715 expr = lookup_qualified_name (scope, expr, /*is_type_p=*/0, false);
12483c9f
NS
9716 if (TREE_CODE (TREE_CODE (expr) == TEMPLATE_DECL
9717 ? DECL_TEMPLATE_RESULT (expr) : expr) == TYPE_DECL)
9718 {
9719 if (complain & tf_error)
b2693faf 9720 {
0f51ccfc 9721 error ("dependent-name %qE is parsed as a non-type, but "
b2693faf 9722 "instantiation yields a type", qualified_id);
0f51ccfc 9723 inform ("say %<typename %E%> if a type is meant", qualified_id);
b2693faf 9724 }
12483c9f
NS
9725 return error_mark_node;
9726 }
9727 }
c8094d83 9728
279b8466 9729 if (DECL_P (expr))
8f78f01f
MM
9730 {
9731 check_accessibility_of_qualified_id (expr, /*object_type=*/NULL_TREE,
9732 scope);
9733 /* Remember that there was a reference to this entity. */
9734 mark_used (expr);
9735 }
9736
9737 if (expr == error_mark_node || TREE_CODE (expr) == TREE_LIST)
9738 {
9739 if (complain & tf_error)
c8094d83 9740 qualified_name_lookup_error (scope,
8f78f01f
MM
9741 TREE_OPERAND (qualified_id, 1),
9742 expr);
9743 return error_mark_node;
9744 }
ee76b931
MM
9745
9746 if (is_template)
10b1d5e7 9747 expr = lookup_template_function (expr, template_args);
ee76b931 9748
22038b2c 9749 if (expr == error_mark_node && complain & tf_error)
8f78f01f
MM
9750 qualified_name_lookup_error (scope, TREE_OPERAND (qualified_id, 1),
9751 expr);
22038b2c 9752 else if (TYPE_P (scope))
ee76b931 9753 {
c8094d83 9754 expr = (adjust_result_of_qualified_name_lookup
ee76b931 9755 (expr, scope, current_class_type));
3db45ab5 9756 expr = (finish_qualified_id_expr
02ed62dd
MM
9757 (scope, expr, done, address_p,
9758 QUALIFIED_NAME_IS_TEMPLATE (qualified_id),
9759 /*template_arg_p=*/false));
ee76b931 9760 }
c8094d83 9761
015c2c66
MM
9762 /* Expressions do not generally have reference type. */
9763 if (TREE_CODE (expr) != SCOPE_REF
9764 /* However, if we're about to form a pointer-to-member, we just
9765 want the referenced member referenced. */
9766 && TREE_CODE (expr) != OFFSET_REF)
aec5ba60 9767 expr = convert_from_reference (expr);
ee76b931
MM
9768
9769 return expr;
9770}
9771
00d3396f
JM
9772/* Like tsubst, but deals with expressions. This function just replaces
9773 template parms; to finish processing the resultant expression, use
9774 tsubst_expr. */
9775
14d22dd6 9776static tree
3a978d72 9777tsubst_copy (tree t, tree args, tsubst_flags_t complain, tree in_decl)
5566b478
MS
9778{
9779 enum tree_code code;
8452b1d3 9780 tree r;
8d08fdba 9781
5566b478
MS
9782 if (t == NULL_TREE || t == error_mark_node)
9783 return t;
9784
9785 code = TREE_CODE (t);
b7484fbe 9786
5566b478
MS
9787 switch (code)
9788 {
9789 case PARM_DECL:
a723baf1 9790 r = retrieve_local_specialization (t);
50bc768d 9791 gcc_assert (r != NULL);
5d80a306
DG
9792 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
9793 r = ARGUMENT_PACK_SELECT_ARG (r);
c0694c4b 9794 mark_used (r);
a723baf1 9795 return r;
5566b478
MS
9796
9797 case CONST_DECL:
ed44da02
MM
9798 {
9799 tree enum_type;
9800 tree v;
9801
a723baf1
MM
9802 if (DECL_TEMPLATE_PARM_P (t))
9803 return tsubst_copy (DECL_INITIAL (t), args, complain, in_decl);
7b6d72fc
MM
9804 /* There is no need to substitute into namespace-scope
9805 enumerators. */
9806 if (DECL_NAMESPACE_SCOPE_P (t))
ed44da02 9807 return t;
d5a10cf0
MM
9808 /* If ARGS is NULL, then T is known to be non-dependent. */
9809 if (args == NULL_TREE)
8a784e4a 9810 return integral_constant_value (t);
ed44da02
MM
9811
9812 /* Unfortunately, we cannot just call lookup_name here.
9188c363 9813 Consider:
c8094d83 9814
9188c363
MM
9815 template <int I> int f() {
9816 enum E { a = I };
9817 struct S { void g() { E e = a; } };
9818 };
c8094d83 9819
9188c363
MM
9820 When we instantiate f<7>::S::g(), say, lookup_name is not
9821 clever enough to find f<7>::a. */
c8094d83
MS
9822 enum_type
9823 = tsubst_aggr_type (TREE_TYPE (t), args, complain, in_decl,
ed44da02
MM
9824 /*entering_scope=*/0);
9825
c8094d83
MS
9826 for (v = TYPE_VALUES (enum_type);
9827 v != NULL_TREE;
ed44da02
MM
9828 v = TREE_CHAIN (v))
9829 if (TREE_PURPOSE (v) == DECL_NAME (t))
9830 return TREE_VALUE (v);
9831
9832 /* We didn't find the name. That should never happen; if
9833 name-lookup found it during preliminary parsing, we
9834 should find it again here during instantiation. */
315fb5db 9835 gcc_unreachable ();
ed44da02 9836 }
db04386f 9837 return t;
ed44da02 9838
5566b478
MS
9839 case FIELD_DECL:
9840 if (DECL_CONTEXT (t))
9841 {
0978790f 9842 tree ctx;
0978790f 9843
4393e105 9844 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
36a117a5 9845 /*entering_scope=*/1);
0978790f 9846 if (ctx != DECL_CONTEXT (t))
bad1f462
KL
9847 {
9848 tree r = lookup_field (ctx, DECL_NAME (t), 0, false);
9849 if (!r)
9850 {
9851 if (complain & tf_error)
9852 error ("using invalid field %qD", t);
9853 return error_mark_node;
9854 }
9855 return r;
9856 }
5566b478 9857 }
c8094d83 9858
5566b478
MS
9859 return t;
9860
9861 case VAR_DECL:
9862 case FUNCTION_DECL:
a723baf1
MM
9863 if ((DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
9864 || local_variable_p (t))
4393e105 9865 t = tsubst (t, args, complain, in_decl);
5566b478
MS
9866 mark_used (t);
9867 return t;
9868
a723baf1 9869 case BASELINK:
ee76b931 9870 return tsubst_baselink (t, current_class_type, args, complain, in_decl);
a723baf1 9871
98c1c668 9872 case TEMPLATE_DECL:
a723baf1 9873 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
c8094d83 9874 return tsubst (TREE_TYPE (DECL_TEMPLATE_RESULT (t)),
a723baf1 9875 args, complain, in_decl);
c7222c02 9876 else if (DECL_FUNCTION_TEMPLATE_P (t) && DECL_MEMBER_TEMPLATE_P (t))
4393e105 9877 return tsubst (t, args, complain, in_decl);
fcea7401
KL
9878 else if (DECL_CLASS_SCOPE_P (t)
9879 && uses_template_parms (DECL_CONTEXT (t)))
9880 {
9881 /* Template template argument like the following example need
9882 special treatment:
9883
9884 template <template <class> class TT> struct C {};
9885 template <class T> struct D {
9886 template <class U> struct E {};
0cbd7506 9887 C<E> c; // #1
fcea7401
KL
9888 };
9889 D<int> d; // #2
9890
9891 We are processing the template argument `E' in #1 for
9892 the template instantiation #2. Originally, `E' is a
9893 TEMPLATE_DECL with `D<T>' as its DECL_CONTEXT. Now we
9894 have to substitute this with one having context `D<int>'. */
9895
9896 tree context = tsubst (DECL_CONTEXT (t), args, complain, in_decl);
9897 return lookup_field (context, DECL_NAME(t), 0, false);
9898 }
98c1c668 9899 else
fcea7401 9900 /* Ordinary template template argument. */
98c1c668
JM
9901 return t;
9902
5566b478
MS
9903 case CAST_EXPR:
9904 case REINTERPRET_CAST_EXPR:
e92cc029
MS
9905 case CONST_CAST_EXPR:
9906 case STATIC_CAST_EXPR:
9907 case DYNAMIC_CAST_EXPR:
51924768 9908 case NOP_EXPR:
5566b478 9909 return build1
4393e105
MM
9910 (code, tsubst (TREE_TYPE (t), args, complain, in_decl),
9911 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl));
5566b478 9912
5d80a306
DG
9913 case SIZEOF_EXPR:
9914 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0)))
9915 {
9916 /* We only want to compute the number of arguments. */
9917 tree expanded = tsubst_pack_expansion (TREE_OPERAND (t, 0), args,
9918 complain, in_decl);
4745e4eb
JJ
9919 if (expanded == error_mark_node)
9920 return error_mark_node;
5d80a306
DG
9921 return build_int_cst (size_type_node, TREE_VEC_LENGTH (expanded));
9922 }
9923 /* Fall through */
9924
5566b478 9925 case INDIRECT_REF:
5566b478
MS
9926 case NEGATE_EXPR:
9927 case TRUTH_NOT_EXPR:
b87692e5 9928 case BIT_NOT_EXPR:
5566b478 9929 case ADDR_EXPR:
392e3d51 9930 case UNARY_PLUS_EXPR: /* Unary + */
abff8e06 9931 case ALIGNOF_EXPR:
5566b478 9932 case ARROW_EXPR:
fc378698 9933 case THROW_EXPR:
5156628f 9934 case TYPEID_EXPR:
f5733617
SS
9935 case REALPART_EXPR:
9936 case IMAGPART_EXPR:
5566b478 9937 return build1
6a629cac 9938 (code, tsubst (TREE_TYPE (t), args, complain, in_decl),
4393e105 9939 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl));
5566b478 9940
a723baf1
MM
9941 case COMPONENT_REF:
9942 {
9943 tree object;
9944 tree name;
9945
9946 object = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
9947 name = TREE_OPERAND (t, 1);
c8094d83 9948 if (TREE_CODE (name) == BIT_NOT_EXPR)
a723baf1
MM
9949 {
9950 name = tsubst_copy (TREE_OPERAND (name, 0), args,
9951 complain, in_decl);
9952 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
9953 }
9954 else if (TREE_CODE (name) == SCOPE_REF
9955 && TREE_CODE (TREE_OPERAND (name, 1)) == BIT_NOT_EXPR)
9956 {
9957 tree base = tsubst_copy (TREE_OPERAND (name, 0), args,
9958 complain, in_decl);
9959 name = TREE_OPERAND (name, 1);
9960 name = tsubst_copy (TREE_OPERAND (name, 0), args,
9961 complain, in_decl);
9962 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
02ed62dd 9963 name = build_qualified_name (/*type=*/NULL_TREE,
3db45ab5 9964 base, name,
02ed62dd 9965 /*template_p=*/false);
a723baf1 9966 }
ee76b931 9967 else if (TREE_CODE (name) == BASELINK)
c8094d83
MS
9968 name = tsubst_baselink (name,
9969 non_reference (TREE_TYPE (object)),
9970 args, complain,
ee76b931 9971 in_decl);
a723baf1 9972 else
ee76b931 9973 name = tsubst_copy (name, args, complain, in_decl);
44de5aeb 9974 return build_nt (COMPONENT_REF, object, name, NULL_TREE);
a723baf1
MM
9975 }
9976
5566b478
MS
9977 case PLUS_EXPR:
9978 case MINUS_EXPR:
9979 case MULT_EXPR:
9980 case TRUNC_DIV_EXPR:
9981 case CEIL_DIV_EXPR:
9982 case FLOOR_DIV_EXPR:
9983 case ROUND_DIV_EXPR:
9984 case EXACT_DIV_EXPR:
9985 case BIT_AND_EXPR:
5566b478
MS
9986 case BIT_IOR_EXPR:
9987 case BIT_XOR_EXPR:
9988 case TRUNC_MOD_EXPR:
9989 case FLOOR_MOD_EXPR:
9990 case TRUTH_ANDIF_EXPR:
9991 case TRUTH_ORIF_EXPR:
9992 case TRUTH_AND_EXPR:
9993 case TRUTH_OR_EXPR:
9994 case RSHIFT_EXPR:
9995 case LSHIFT_EXPR:
9996 case RROTATE_EXPR:
9997 case LROTATE_EXPR:
9998 case EQ_EXPR:
9999 case NE_EXPR:
10000 case MAX_EXPR:
10001 case MIN_EXPR:
10002 case LE_EXPR:
10003 case GE_EXPR:
10004 case LT_EXPR:
10005 case GT_EXPR:
5566b478 10006 case COMPOUND_EXPR:
5566b478
MS
10007 case DOTSTAR_EXPR:
10008 case MEMBER_REF:
519c9806
MM
10009 case PREDECREMENT_EXPR:
10010 case PREINCREMENT_EXPR:
10011 case POSTDECREMENT_EXPR:
10012 case POSTINCREMENT_EXPR:
5566b478 10013 return build_nt
4393e105
MM
10014 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
10015 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl));
5566b478 10016
02ed62dd
MM
10017 case SCOPE_REF:
10018 return build_qualified_name (/*type=*/NULL_TREE,
10019 tsubst_copy (TREE_OPERAND (t, 0),
10020 args, complain, in_decl),
10021 tsubst_copy (TREE_OPERAND (t, 1),
10022 args, complain, in_decl),
10023 QUALIFIED_NAME_IS_TEMPLATE (t));
10024
d8987adb
NS
10025 case ARRAY_REF:
10026 return build_nt
10027 (ARRAY_REF,
10028 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
10029 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl),
10030 NULL_TREE, NULL_TREE);
10031
5566b478 10032 case CALL_EXPR:
5039610b
SL
10033 {
10034 int n = VL_EXP_OPERAND_LENGTH (t);
10035 tree result = build_vl_exp (CALL_EXPR, n);
10036 int i;
10037 for (i = 0; i < n; i++)
10038 TREE_OPERAND (t, i) = tsubst_copy (TREE_OPERAND (t, i), args,
10039 complain, in_decl);
10040 return result;
10041 }
5566b478 10042
5566b478
MS
10043 case COND_EXPR:
10044 case MODOP_EXPR:
40242ccf 10045 case PSEUDO_DTOR_EXPR:
67da3287 10046 {
8452b1d3 10047 r = build_nt
4393e105
MM
10048 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
10049 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl),
10050 tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl));
e4c2c34b 10051 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
67da3287
MM
10052 return r;
10053 }
5566b478
MS
10054
10055 case NEW_EXPR:
10056 {
8452b1d3 10057 r = build_nt
4393e105
MM
10058 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
10059 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl),
10060 tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl));
5566b478
MS
10061 NEW_EXPR_USE_GLOBAL (r) = NEW_EXPR_USE_GLOBAL (t);
10062 return r;
10063 }
10064
10065 case DELETE_EXPR:
10066 {
8452b1d3 10067 r = build_nt
4393e105
MM
10068 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
10069 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl));
5566b478
MS
10070 DELETE_EXPR_USE_GLOBAL (r) = DELETE_EXPR_USE_GLOBAL (t);
10071 DELETE_EXPR_USE_VEC (r) = DELETE_EXPR_USE_VEC (t);
10072 return r;
10073 }
10074
386b8a85
JM
10075 case TEMPLATE_ID_EXPR:
10076 {
0cbd7506 10077 /* Substituted template arguments */
a91db711
NS
10078 tree fn = TREE_OPERAND (t, 0);
10079 tree targs = TREE_OPERAND (t, 1);
856216bb 10080
a91db711 10081 fn = tsubst_copy (fn, args, complain, in_decl);
bf12d54d
NS
10082 if (targs)
10083 targs = tsubst_template_args (targs, args, complain, in_decl);
c8094d83 10084
a91db711 10085 return lookup_template_function (fn, targs);
386b8a85
JM
10086 }
10087
5566b478
MS
10088 case TREE_LIST:
10089 {
10090 tree purpose, value, chain;
10091
10092 if (t == void_list_node)
10093 return t;
10094
10095 purpose = TREE_PURPOSE (t);
10096 if (purpose)
4393e105 10097 purpose = tsubst_copy (purpose, args, complain, in_decl);
5566b478
MS
10098 value = TREE_VALUE (t);
10099 if (value)
4393e105 10100 value = tsubst_copy (value, args, complain, in_decl);
5566b478
MS
10101 chain = TREE_CHAIN (t);
10102 if (chain && chain != void_type_node)
4393e105 10103 chain = tsubst_copy (chain, args, complain, in_decl);
5566b478
MS
10104 if (purpose == TREE_PURPOSE (t)
10105 && value == TREE_VALUE (t)
10106 && chain == TREE_CHAIN (t))
10107 return t;
10108 return tree_cons (purpose, value, chain);
10109 }
10110
10111 case RECORD_TYPE:
10112 case UNION_TYPE:
10113 case ENUMERAL_TYPE:
10114 case INTEGER_TYPE:
10115 case TEMPLATE_TYPE_PARM:
73b0fce8 10116 case TEMPLATE_TEMPLATE_PARM:
a1281f45 10117 case BOUND_TEMPLATE_TEMPLATE_PARM:
f84b4be9 10118 case TEMPLATE_PARM_INDEX:
5566b478
MS
10119 case POINTER_TYPE:
10120 case REFERENCE_TYPE:
10121 case OFFSET_TYPE:
10122 case FUNCTION_TYPE:
10123 case METHOD_TYPE:
10124 case ARRAY_TYPE:
10125 case TYPENAME_TYPE:
b8c6534b 10126 case UNBOUND_CLASS_TEMPLATE:
2a2b1d56 10127 case TYPEOF_TYPE:
3ad6a8e1 10128 case DECLTYPE_TYPE:
f84b4be9 10129 case TYPE_DECL:
4393e105 10130 return tsubst (t, args, complain, in_decl);
5566b478 10131
e92cc029 10132 case IDENTIFIER_NODE:
421844e7 10133 if (IDENTIFIER_TYPENAME_P (t))
1f6e1acc
AS
10134 {
10135 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
1f84ec23 10136 return mangle_conv_op_name_for_type (new_type);
1f6e1acc 10137 }
e92cc029
MS
10138 else
10139 return t;
10140
5156628f 10141 case CONSTRUCTOR:
4038c495
GB
10142 /* This is handled by tsubst_copy_and_build. */
10143 gcc_unreachable ();
5156628f 10144
371534a9 10145 case VA_ARG_EXPR:
ea333e1c 10146 return build_x_va_arg (tsubst_copy (TREE_OPERAND (t, 0), args, complain,
c2ea3a40
NS
10147 in_decl),
10148 tsubst (TREE_TYPE (t), args, complain, in_decl));
f9817201 10149
543a0daa
RH
10150 case CLEANUP_POINT_EXPR:
10151 /* We shouldn't have built any of these during initial template
10152 generation. Instead, they should be built during instantiation
10153 in response to the saved STMT_IS_FULL_EXPR_P setting. */
315fb5db 10154 gcc_unreachable ();
543a0daa 10155
7eab6e7b
MM
10156 case OFFSET_REF:
10157 mark_used (TREE_OPERAND (t, 1));
10158 return t;
10159
5d80a306
DG
10160 case EXPR_PACK_EXPANSION:
10161 error ("invalid use of pack expansion expression");
10162 return error_mark_node;
10163
10164 case NONTYPE_ARGUMENT_PACK:
10165 error ("use %<...%> to expand argument pack");
10166 return error_mark_node;
10167
5566b478
MS
10168 default:
10169 return t;
10170 }
10171}
10172
1799e5d5
RH
10173/* Like tsubst_copy, but specifically for OpenMP clauses. */
10174
10175static tree
10176tsubst_omp_clauses (tree clauses, tree args, tsubst_flags_t complain,
10177 tree in_decl)
10178{
10179 tree new_clauses = NULL, nc, oc;
10180
10181 for (oc = clauses; oc ; oc = OMP_CLAUSE_CHAIN (oc))
10182 {
10183 nc = copy_node (oc);
10184 OMP_CLAUSE_CHAIN (nc) = new_clauses;
10185 new_clauses = nc;
10186
10187 switch (OMP_CLAUSE_CODE (nc))
10188 {
10189 case OMP_CLAUSE_PRIVATE:
10190 case OMP_CLAUSE_SHARED:
10191 case OMP_CLAUSE_FIRSTPRIVATE:
10192 case OMP_CLAUSE_LASTPRIVATE:
10193 case OMP_CLAUSE_REDUCTION:
10194 case OMP_CLAUSE_COPYIN:
10195 case OMP_CLAUSE_COPYPRIVATE:
10196 case OMP_CLAUSE_IF:
10197 case OMP_CLAUSE_NUM_THREADS:
10198 case OMP_CLAUSE_SCHEDULE:
10199 OMP_CLAUSE_OPERAND (nc, 0)
015c2c66
MM
10200 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 0), args, complain,
10201 in_decl, /*integral_constant_expression_p=*/false);
1799e5d5
RH
10202 break;
10203 case OMP_CLAUSE_NOWAIT:
10204 case OMP_CLAUSE_ORDERED:
10205 case OMP_CLAUSE_DEFAULT:
10206 break;
10207 default:
10208 gcc_unreachable ();
10209 }
10210 }
10211
10212 return finish_omp_clauses (nreverse (new_clauses));
10213}
10214
f74dcfb7
JJ
10215/* Like tsubst_copy_and_build, but unshare TREE_LIST nodes. */
10216
10217static tree
10218tsubst_copy_asm_operands (tree t, tree args, tsubst_flags_t complain,
10219 tree in_decl)
10220{
10221#define RECUR(t) tsubst_copy_asm_operands (t, args, complain, in_decl)
10222
10223 tree purpose, value, chain;
10224
10225 if (t == NULL)
10226 return t;
10227
10228 if (TREE_CODE (t) != TREE_LIST)
10229 return tsubst_copy_and_build (t, args, complain, in_decl,
015c2c66
MM
10230 /*function_p=*/false,
10231 /*integral_constant_expression_p=*/false);
f74dcfb7
JJ
10232
10233 if (t == void_list_node)
10234 return t;
10235
10236 purpose = TREE_PURPOSE (t);
10237 if (purpose)
10238 purpose = RECUR (purpose);
10239 value = TREE_VALUE (t);
10240 if (value)
10241 value = RECUR (value);
10242 chain = TREE_CHAIN (t);
10243 if (chain && chain != void_type_node)
10244 chain = RECUR (chain);
10245 return tree_cons (purpose, value, chain);
10246#undef RECUR
10247}
10248
cc23546e
JO
10249/* Like tsubst_copy for expressions, etc. but also does semantic
10250 processing. */
00d3396f 10251
14d22dd6 10252static tree
015c2c66
MM
10253tsubst_expr (tree t, tree args, tsubst_flags_t complain, tree in_decl,
10254 bool integral_constant_expression_p)
5566b478 10255{
015c2c66
MM
10256#define RECUR(NODE) \
10257 tsubst_expr ((NODE), args, complain, in_decl, \
10258 integral_constant_expression_p)
10259
fd10dd09 10260 tree stmt, tmp;
558475f0 10261
5566b478
MS
10262 if (t == NULL_TREE || t == error_mark_node)
10263 return t;
10264
93409b8c
PB
10265 if (EXPR_HAS_LOCATION (t))
10266 input_location = EXPR_LOCATION (t);
7c34ced1
RH
10267 if (STATEMENT_CODE_P (TREE_CODE (t)))
10268 current_stmt_tree ()->stmts_are_full_exprs_p = STMT_IS_FULL_EXPR_P (t);
10269
5566b478 10270 switch (TREE_CODE (t))
8d08fdba 10271 {
325c3691
RH
10272 case STATEMENT_LIST:
10273 {
10274 tree_stmt_iterator i;
10275 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
015c2c66 10276 RECUR (tsi_stmt (i));
325c3691
RH
10277 break;
10278 }
10279
558475f0 10280 case CTOR_INITIALIZER:
c8094d83 10281 finish_mem_initializers (tsubst_initializer_list
2282d28d
MM
10282 (TREE_OPERAND (t, 0), args));
10283 break;
558475f0 10284
5088b058 10285 case RETURN_EXPR:
015c2c66 10286 finish_return_stmt (RECUR (TREE_OPERAND (t, 0)));
5566b478
MS
10287 break;
10288
10289 case EXPR_STMT:
015c2c66 10290 tmp = RECUR (EXPR_STMT_EXPR (t));
7c34ced1
RH
10291 if (EXPR_STMT_STMT_EXPR_RESULT (t))
10292 finish_stmt_expr_expr (tmp, cur_stmt_expr);
10293 else
10294 finish_expr_stmt (tmp);
10295 break;
5566b478 10296
9da99f7d 10297 case USING_STMT:
015c2c66 10298 do_using_directive (RECUR (USING_STMT_NAMESPACE (t)));
9da99f7d 10299 break;
c8094d83 10300
350fae66 10301 case DECL_EXPR:
5566b478 10302 {
e0942dcd
MM
10303 tree decl;
10304 tree init;
5566b478 10305
350fae66 10306 decl = DECL_EXPR_DECL (t);
acef433b
MM
10307 if (TREE_CODE (decl) == LABEL_DECL)
10308 finish_label_decl (DECL_NAME (decl));
fbfe8c9e
NS
10309 else if (TREE_CODE (decl) == USING_DECL)
10310 {
98ed9dae 10311 tree scope = USING_DECL_SCOPE (decl);
fbfe8c9e 10312 tree name = DECL_NAME (decl);
22038b2c 10313 tree decl;
c8094d83 10314
015c2c66 10315 scope = RECUR (scope);
22038b2c 10316 decl = lookup_qualified_name (scope, name,
12483c9f
NS
10317 /*is_type_p=*/false,
10318 /*complain=*/false);
8f78f01f
MM
10319 if (decl == error_mark_node || TREE_CODE (decl) == TREE_LIST)
10320 qualified_name_lookup_error (scope, name, decl);
22038b2c 10321 else
ed5f054f 10322 do_local_using_decl (decl, scope, name);
fbfe8c9e 10323 }
acef433b
MM
10324 else
10325 {
10326 init = DECL_INITIAL (decl);
10327 decl = tsubst (decl, args, complain, in_decl);
ce2e5191
NS
10328 if (decl != error_mark_node)
10329 {
0cbd7506
MS
10330 /* By marking the declaration as instantiated, we avoid
10331 trying to instantiate it. Since instantiate_decl can't
10332 handle local variables, and since we've already done
10333 all that needs to be done, that's the right thing to
10334 do. */
10335 if (TREE_CODE (decl) == VAR_DECL)
10336 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
edebf865
MM
10337 if (TREE_CODE (decl) == VAR_DECL
10338 && ANON_AGGR_TYPE_P (TREE_TYPE (decl)))
10339 /* Anonymous aggregates are a special case. */
10340 finish_anon_union (decl);
c8094d83 10341 else
ed2fa432 10342 {
edebf865 10343 maybe_push_decl (decl);
39703eb9
MM
10344 if (TREE_CODE (decl) == VAR_DECL
10345 && DECL_PRETTY_FUNCTION_P (decl))
edebf865
MM
10346 {
10347 /* For __PRETTY_FUNCTION__ we have to adjust the
10348 initializer. */
10349 const char *const name
10350 = cxx_printable_name (current_function_decl, 2);
bb885938 10351 init = cp_fname_init (name, &TREE_TYPE (decl));
edebf865
MM
10352 }
10353 else
268127ce
DG
10354 {
10355 tree t = RECUR (init);
10356
10357 if (init && !t)
10358 /* If we had an initializer but it
10359 instantiated to nothing,
10360 value-initialize the object. This will
10361 only occur when the initializer was a
10362 pack expansion where the parameter packs
10363 used in that expansion were of length
10364 zero. */
10365 init = build_default_init (TREE_TYPE (decl),
10366 NULL_TREE);
10367 else
10368 init = t;
10369 }
10370
d174af6c 10371 finish_decl (decl, init, NULL_TREE);
ed2fa432 10372 }
ce2e5191 10373 }
acef433b 10374 }
fd10dd09 10375
350fae66 10376 /* A DECL_EXPR can also be used as an expression, in the condition
325c3691
RH
10377 clause of an if/for/while construct. */
10378 return decl;
5566b478 10379 }
8d08fdba 10380
5566b478 10381 case FOR_STMT:
7c34ced1 10382 stmt = begin_for_stmt ();
015c2c66 10383 RECUR (FOR_INIT_STMT (t));
7c34ced1 10384 finish_for_init_stmt (stmt);
015c2c66 10385 tmp = RECUR (FOR_COND (t));
7c34ced1 10386 finish_for_cond (tmp, stmt);
015c2c66 10387 tmp = RECUR (FOR_EXPR (t));
7c34ced1 10388 finish_for_expr (tmp, stmt);
015c2c66 10389 RECUR (FOR_BODY (t));
7c34ced1 10390 finish_for_stmt (stmt);
5566b478 10391 break;
8d08fdba 10392
5566b478 10393 case WHILE_STMT:
7c34ced1 10394 stmt = begin_while_stmt ();
015c2c66 10395 tmp = RECUR (WHILE_COND (t));
7c34ced1 10396 finish_while_stmt_cond (tmp, stmt);
015c2c66 10397 RECUR (WHILE_BODY (t));
7c34ced1 10398 finish_while_stmt (stmt);
5566b478 10399 break;
8d08fdba 10400
5566b478 10401 case DO_STMT:
7c34ced1 10402 stmt = begin_do_stmt ();
015c2c66 10403 RECUR (DO_BODY (t));
7c34ced1 10404 finish_do_body (stmt);
015c2c66 10405 tmp = RECUR (DO_COND (t));
7c34ced1 10406 finish_do_stmt (tmp, stmt);
5566b478 10407 break;
a0a33927 10408
5566b478 10409 case IF_STMT:
7c34ced1 10410 stmt = begin_if_stmt ();
015c2c66 10411 tmp = RECUR (IF_COND (t));
7c34ced1 10412 finish_if_stmt_cond (tmp, stmt);
015c2c66 10413 RECUR (THEN_CLAUSE (t));
7c34ced1 10414 finish_then_clause (stmt);
8d08fdba 10415
7c34ced1
RH
10416 if (ELSE_CLAUSE (t))
10417 {
10418 begin_else_clause (stmt);
015c2c66 10419 RECUR (ELSE_CLAUSE (t));
7c34ced1
RH
10420 finish_else_clause (stmt);
10421 }
10422
10423 finish_if_stmt (stmt);
5566b478 10424 break;
8d08fdba 10425
5882f0f3 10426 case BIND_EXPR:
7c34ced1
RH
10427 if (BIND_EXPR_BODY_BLOCK (t))
10428 stmt = begin_function_body ();
10429 else
10430 stmt = begin_compound_stmt (BIND_EXPR_TRY_BLOCK (t)
10431 ? BCS_TRY_BLOCK : 0);
ade3dc07 10432
015c2c66 10433 RECUR (BIND_EXPR_BODY (t));
ade3dc07 10434
7c34ced1
RH
10435 if (BIND_EXPR_BODY_BLOCK (t))
10436 finish_function_body (stmt);
10437 else
10438 finish_compound_stmt (stmt);
5566b478 10439 break;
8d08fdba 10440
5566b478 10441 case BREAK_STMT:
ad321293 10442 finish_break_stmt ();
5566b478 10443 break;
8d08fdba 10444
6467930b 10445 case CONTINUE_STMT:
ad321293 10446 finish_continue_stmt ();
6467930b
MS
10447 break;
10448
5566b478 10449 case SWITCH_STMT:
7c34ced1 10450 stmt = begin_switch_stmt ();
015c2c66 10451 tmp = RECUR (SWITCH_STMT_COND (t));
7c34ced1 10452 finish_switch_cond (tmp, stmt);
015c2c66 10453 RECUR (SWITCH_STMT_BODY (t));
7c34ced1 10454 finish_switch_stmt (stmt);
5566b478
MS
10455 break;
10456
8c161995 10457 case CASE_LABEL_EXPR:
015c2c66
MM
10458 finish_case_label (RECUR (CASE_LOW (t)),
10459 RECUR (CASE_HIGH (t)));
5566b478
MS
10460 break;
10461
9e14e18f 10462 case LABEL_EXPR:
9e14e18f 10463 finish_label_stmt (DECL_NAME (LABEL_EXPR_LABEL (t)));
5566b478
MS
10464 break;
10465
9e14e18f 10466 case GOTO_EXPR:
fd10dd09
JM
10467 tmp = GOTO_DESTINATION (t);
10468 if (TREE_CODE (tmp) != LABEL_DECL)
aa09da44
MM
10469 /* Computed goto's must be tsubst'd into. On the other hand,
10470 non-computed gotos must not be; the identifier in question
10471 will have no binding. */
015c2c66 10472 tmp = RECUR (tmp);
3fa56191 10473 else
fd10dd09
JM
10474 tmp = DECL_NAME (tmp);
10475 finish_goto_stmt (tmp);
ad321293
MM
10476 break;
10477
e130a54b 10478 case ASM_EXPR:
c87978aa 10479 tmp = finish_asm_stmt
6de9cd9a 10480 (ASM_VOLATILE_P (t),
015c2c66 10481 RECUR (ASM_STRING (t)),
f74dcfb7
JJ
10482 tsubst_copy_asm_operands (ASM_OUTPUTS (t), args, complain, in_decl),
10483 tsubst_copy_asm_operands (ASM_INPUTS (t), args, complain, in_decl),
10484 tsubst_copy_asm_operands (ASM_CLOBBERS (t), args, complain, in_decl));
131263fa
AP
10485 {
10486 tree asm_expr = tmp;
10487 if (TREE_CODE (asm_expr) == CLEANUP_POINT_EXPR)
10488 asm_expr = TREE_OPERAND (asm_expr, 0);
10489 ASM_INPUT_P (asm_expr) = ASM_INPUT_P (t);
10490 }
5566b478 10491 break;
faf5394a
MS
10492
10493 case TRY_BLOCK:
f1dedc31 10494 if (CLEANUP_P (t))
62409b39 10495 {
57b52417 10496 stmt = begin_try_block ();
015c2c66 10497 RECUR (TRY_STMTS (t));
62409b39 10498 finish_cleanup_try_block (stmt);
015c2c66 10499 finish_cleanup (RECUR (TRY_HANDLERS (t)), stmt);
62409b39 10500 }
f1dedc31
MM
10501 else
10502 {
eaf6fb90
MM
10503 tree compound_stmt = NULL_TREE;
10504
62409b39 10505 if (FN_TRY_BLOCK_P (t))
eaf6fb90 10506 stmt = begin_function_try_block (&compound_stmt);
62409b39
MM
10507 else
10508 stmt = begin_try_block ();
10509
015c2c66 10510 RECUR (TRY_STMTS (t));
62409b39
MM
10511
10512 if (FN_TRY_BLOCK_P (t))
10513 finish_function_try_block (stmt);
10514 else
10515 finish_try_block (stmt);
10516
015c2c66 10517 RECUR (TRY_HANDLERS (t));
84df082b 10518 if (FN_TRY_BLOCK_P (t))
eaf6fb90 10519 finish_function_handler_sequence (stmt, compound_stmt);
84df082b
MM
10520 else
10521 finish_handler_sequence (stmt);
f1dedc31 10522 }
faf5394a 10523 break;
c8094d83 10524
faf5394a 10525 case HANDLER:
b35d4555 10526 {
3a2419a7 10527 tree decl = HANDLER_PARMS (t);
b35d4555 10528
3a2419a7 10529 if (decl)
b35d4555 10530 {
b35d4555 10531 decl = tsubst (decl, args, complain, in_decl);
f8191e64
MM
10532 /* Prevent instantiate_decl from trying to instantiate
10533 this variable. We've already done all that needs to be
10534 done. */
3a2419a7
VR
10535 if (decl != error_mark_node)
10536 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
b35d4555 10537 }
3a2419a7 10538 stmt = begin_handler ();
1a6025b4 10539 finish_handler_parms (decl, stmt);
015c2c66 10540 RECUR (HANDLER_BODY (t));
1a6025b4 10541 finish_handler (stmt);
b35d4555 10542 }
faf5394a
MS
10543 break;
10544
b87692e5 10545 case TAG_DEFN:
fd10dd09 10546 tsubst (TREE_TYPE (t), args, complain, NULL_TREE);
b87692e5 10547 break;
55a3debe
DG
10548
10549 case STATIC_ASSERT:
10550 {
10551 tree condition =
10552 tsubst_expr (STATIC_ASSERT_CONDITION (t),
10553 args,
10554 complain, in_decl,
10555 /*integral_constant_expression_p=*/true);
10556 finish_static_assert (condition,
10557 STATIC_ASSERT_MESSAGE (t),
10558 STATIC_ASSERT_SOURCE_LOCATION (t),
10559 /*member_p=*/false);
10560 }
10561 break;
b87692e5 10562
1799e5d5
RH
10563 case OMP_PARALLEL:
10564 tmp = tsubst_omp_clauses (OMP_PARALLEL_CLAUSES (t),
10565 args, complain, in_decl);
10566 stmt = begin_omp_parallel ();
015c2c66 10567 RECUR (OMP_PARALLEL_BODY (t));
761041be
JJ
10568 OMP_PARALLEL_COMBINED (finish_omp_parallel (tmp, stmt))
10569 = OMP_PARALLEL_COMBINED (t);
1799e5d5
RH
10570 break;
10571
10572 case OMP_FOR:
10573 {
10574 tree clauses, decl, init, cond, incr, body, pre_body;
10575
10576 clauses = tsubst_omp_clauses (OMP_FOR_CLAUSES (t),
10577 args, complain, in_decl);
10578 init = OMP_FOR_INIT (t);
10579 gcc_assert (TREE_CODE (init) == MODIFY_EXPR);
015c2c66
MM
10580 decl = RECUR (TREE_OPERAND (init, 0));
10581 init = RECUR (TREE_OPERAND (init, 1));
10582 cond = RECUR (OMP_FOR_COND (t));
10583 incr = RECUR (OMP_FOR_INCR (t));
1799e5d5
RH
10584
10585 stmt = begin_omp_structured_block ();
10586
10587 pre_body = push_stmt_list ();
015c2c66 10588 RECUR (OMP_FOR_PRE_BODY (t));
1799e5d5
RH
10589 pre_body = pop_stmt_list (pre_body);
10590
10591 body = push_stmt_list ();
015c2c66 10592 RECUR (OMP_FOR_BODY (t));
1799e5d5
RH
10593 body = pop_stmt_list (body);
10594
10595 t = finish_omp_for (EXPR_LOCATION (t), decl, init, cond, incr, body,
10596 pre_body);
10597 if (t)
10598 OMP_FOR_CLAUSES (t) = clauses;
10599
10600 add_stmt (finish_omp_structured_block (stmt));
10601 }
10602 break;
10603
10604 case OMP_SECTIONS:
10605 case OMP_SINGLE:
10606 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), args, complain, in_decl);
10607 stmt = push_stmt_list ();
015c2c66 10608 RECUR (OMP_BODY (t));
1799e5d5
RH
10609 stmt = pop_stmt_list (stmt);
10610
10611 t = copy_node (t);
10612 OMP_BODY (t) = stmt;
10613 OMP_CLAUSES (t) = tmp;
10614 add_stmt (t);
10615 break;
10616
10617 case OMP_SECTION:
10618 case OMP_CRITICAL:
10619 case OMP_MASTER:
10620 case OMP_ORDERED:
10621 stmt = push_stmt_list ();
015c2c66 10622 RECUR (OMP_BODY (t));
1799e5d5
RH
10623 stmt = pop_stmt_list (stmt);
10624
10625 t = copy_node (t);
10626 OMP_BODY (t) = stmt;
10627 add_stmt (t);
10628 break;
10629
10630 case OMP_ATOMIC:
239371f9
JJ
10631 gcc_assert (OMP_ATOMIC_DEPENDENT_P (t));
10632 {
10633 tree op1 = TREE_OPERAND (t, 1);
10634 tree lhs = RECUR (TREE_OPERAND (op1, 0));
10635 tree rhs = RECUR (TREE_OPERAND (op1, 1));
10636 finish_omp_atomic (TREE_CODE (op1), lhs, rhs);
10637 }
1799e5d5
RH
10638 break;
10639
5d80a306
DG
10640 case EXPR_PACK_EXPANSION:
10641 error ("invalid use of pack expansion expression");
10642 return error_mark_node;
10643
10644 case NONTYPE_ARGUMENT_PACK:
10645 error ("use %<...%> to expand argument pack");
10646 return error_mark_node;
10647
5566b478 10648 default:
315fb5db 10649 gcc_assert (!STATEMENT_CODE_P (TREE_CODE (t)));
c8094d83 10650
315fb5db 10651 return tsubst_copy_and_build (t, args, complain, in_decl,
015c2c66
MM
10652 /*function_p=*/false,
10653 integral_constant_expression_p);
5566b478 10654 }
fd10dd09 10655
325c3691 10656 return NULL_TREE;
015c2c66 10657#undef RECUR
8d08fdba
MS
10658}
10659
b3445994
MM
10660/* T is a postfix-expression that is not being used in a function
10661 call. Return the substituted version of T. */
10662
10663static tree
c8094d83 10664tsubst_non_call_postfix_expression (tree t, tree args,
b3445994
MM
10665 tsubst_flags_t complain,
10666 tree in_decl)
10667{
10668 if (TREE_CODE (t) == SCOPE_REF)
10669 t = tsubst_qualified_id (t, args, complain, in_decl,
10670 /*done=*/false, /*address_p=*/false);
10671 else
10672 t = tsubst_copy_and_build (t, args, complain, in_decl,
015c2c66
MM
10673 /*function_p=*/false,
10674 /*integral_constant_expression_p=*/false);
b3445994
MM
10675
10676 return t;
10677}
10678
cc23546e 10679/* Like tsubst but deals with expressions and performs semantic
b3445994 10680 analysis. FUNCTION_P is true if T is the "F" in "F (ARGS)". */
cc23546e 10681
ee76b931 10682tree
c8094d83 10683tsubst_copy_and_build (tree t,
0cbd7506
MS
10684 tree args,
10685 tsubst_flags_t complain,
10686 tree in_decl,
015c2c66
MM
10687 bool function_p,
10688 bool integral_constant_expression_p)
cc23546e 10689{
015c2c66
MM
10690#define RECUR(NODE) \
10691 tsubst_copy_and_build (NODE, args, complain, in_decl, \
10692 /*function_p=*/false, \
10693 integral_constant_expression_p)
b3445994 10694
ee76b931
MM
10695 tree op1;
10696
cc23546e
JO
10697 if (t == NULL_TREE || t == error_mark_node)
10698 return t;
10699
10700 switch (TREE_CODE (t))
10701 {
399dedb9
NS
10702 case USING_DECL:
10703 t = DECL_NAME (t);
852dcbdd 10704 /* Fall through. */
b3445994 10705 case IDENTIFIER_NODE:
cc23546e 10706 {
b3445994 10707 tree decl;
b3445994 10708 cp_id_kind idk;
67c03833 10709 bool non_integral_constant_expression_p;
b3445994
MM
10710 const char *error_msg;
10711
b3445994 10712 if (IDENTIFIER_TYPENAME_P (t))
cc23546e 10713 {
b3445994
MM
10714 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10715 t = mangle_conv_op_name_for_type (new_type);
cc23546e 10716 }
b3445994
MM
10717
10718 /* Look up the name. */
10e6657a 10719 decl = lookup_name (t);
b3445994
MM
10720
10721 /* By convention, expressions use ERROR_MARK_NODE to indicate
10722 failure, not NULL_TREE. */
10723 if (decl == NULL_TREE)
10724 decl = error_mark_node;
10725
10b1d5e7 10726 decl = finish_id_expression (t, decl, NULL_TREE,
b3445994 10727 &idk,
015c2c66 10728 integral_constant_expression_p,
67c03833
JM
10729 /*allow_non_integral_constant_expression_p=*/false,
10730 &non_integral_constant_expression_p,
02ed62dd
MM
10731 /*template_p=*/false,
10732 /*done=*/true,
10733 /*address_p=*/false,
10734 /*template_arg_p=*/false,
b3445994
MM
10735 &error_msg);
10736 if (error_msg)
10737 error (error_msg);
10738 if (!function_p && TREE_CODE (decl) == IDENTIFIER_NODE)
10739 decl = unqualified_name_lookup_error (decl);
10740 return decl;
cc23546e
JO
10741 }
10742
10743 case TEMPLATE_ID_EXPR:
10744 {
10745 tree object;
b3445994 10746 tree template = RECUR (TREE_OPERAND (t, 0));
bf12d54d
NS
10747 tree targs = TREE_OPERAND (t, 1);
10748
10749 if (targs)
10750 targs = tsubst_template_args (targs, args, complain, in_decl);
c8094d83 10751
cc23546e
JO
10752 if (TREE_CODE (template) == COMPONENT_REF)
10753 {
10754 object = TREE_OPERAND (template, 0);
10755 template = TREE_OPERAND (template, 1);
10756 }
10757 else
10758 object = NULL_TREE;
bd83b409 10759 template = lookup_template_function (template, targs);
c8094d83 10760
cc23546e 10761 if (object)
c8094d83 10762 return build3 (COMPONENT_REF, TREE_TYPE (template),
f293ce4b 10763 object, template, NULL_TREE);
cc23546e 10764 else
eff3a276 10765 return baselink_for_fns (template);
cc23546e
JO
10766 }
10767
10768 case INDIRECT_REF:
db24eb1f
NS
10769 {
10770 tree r = RECUR (TREE_OPERAND (t, 0));
10771
10772 if (REFERENCE_REF_P (t))
10773 {
e8c66fe0
NS
10774 /* A type conversion to reference type will be enclosed in
10775 such an indirect ref, but the substitution of the cast
10776 will have also added such an indirect ref. */
10777 if (TREE_CODE (TREE_TYPE (r)) == REFERENCE_TYPE)
10778 r = convert_from_reference (r);
db24eb1f
NS
10779 }
10780 else
5ade1ed2 10781 r = build_x_indirect_ref (r, "unary *", complain);
db24eb1f
NS
10782 return r;
10783 }
cc23546e 10784
0da99d4e
GB
10785 case NOP_EXPR:
10786 return build_nop
10787 (tsubst (TREE_TYPE (t), args, complain, in_decl),
10788 RECUR (TREE_OPERAND (t, 0)));
10789
cc23546e 10790 case CAST_EXPR:
cc23546e 10791 case REINTERPRET_CAST_EXPR:
cc23546e 10792 case CONST_CAST_EXPR:
cc23546e 10793 case DYNAMIC_CAST_EXPR:
cc23546e 10794 case STATIC_CAST_EXPR:
015c2c66
MM
10795 {
10796 tree type;
10797 tree op;
10798
10799 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10800 if (integral_constant_expression_p
10801 && !cast_valid_in_integral_constant_expression_p (type))
10802 {
5ade1ed2
DG
10803 if (complain & tf_error)
10804 error ("a cast to a type other than an integral or "
10805 "enumeration type cannot appear in a constant-expression");
015c2c66
MM
10806 return error_mark_node;
10807 }
10808
10809 op = RECUR (TREE_OPERAND (t, 0));
10810
10811 switch (TREE_CODE (t))
10812 {
10813 case CAST_EXPR:
5ade1ed2 10814 return build_functional_cast (type, op, complain);
015c2c66 10815 case REINTERPRET_CAST_EXPR:
5ade1ed2 10816 return build_reinterpret_cast (type, op, complain);
015c2c66 10817 case CONST_CAST_EXPR:
5ade1ed2 10818 return build_const_cast (type, op, complain);
015c2c66 10819 case DYNAMIC_CAST_EXPR:
5ade1ed2 10820 return build_dynamic_cast (type, op, complain);
015c2c66 10821 case STATIC_CAST_EXPR:
5ade1ed2 10822 return build_static_cast (type, op, complain);
015c2c66
MM
10823 default:
10824 gcc_unreachable ();
10825 }
10826 }
cc23546e 10827
cc23546e
JO
10828 case POSTDECREMENT_EXPR:
10829 case POSTINCREMENT_EXPR:
b3445994
MM
10830 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
10831 args, complain, in_decl);
5ade1ed2 10832 return build_x_unary_op (TREE_CODE (t), op1, complain);
ee76b931
MM
10833
10834 case PREDECREMENT_EXPR:
10835 case PREINCREMENT_EXPR:
cc23546e
JO
10836 case NEGATE_EXPR:
10837 case BIT_NOT_EXPR:
cc23546e 10838 case ABS_EXPR:
d17811fd 10839 case TRUTH_NOT_EXPR:
392e3d51 10840 case UNARY_PLUS_EXPR: /* Unary + */
d17811fd
MM
10841 case REALPART_EXPR:
10842 case IMAGPART_EXPR:
5ade1ed2
DG
10843 return build_x_unary_op (TREE_CODE (t), RECUR (TREE_OPERAND (t, 0)),
10844 complain);
cc23546e 10845
cc23546e 10846 case ADDR_EXPR:
ee76b931
MM
10847 op1 = TREE_OPERAND (t, 0);
10848 if (TREE_CODE (op1) == SCOPE_REF)
c8094d83 10849 op1 = tsubst_qualified_id (op1, args, complain, in_decl,
ee76b931
MM
10850 /*done=*/true, /*address_p=*/true);
10851 else
c8094d83 10852 op1 = tsubst_non_call_postfix_expression (op1, args, complain,
b3445994 10853 in_decl);
fc2b8477
MM
10854 if (TREE_CODE (op1) == LABEL_DECL)
10855 return finish_label_address_expr (DECL_NAME (op1));
5ade1ed2 10856 return build_x_unary_op (ADDR_EXPR, op1, complain);
ee76b931 10857
cc23546e
JO
10858 case PLUS_EXPR:
10859 case MINUS_EXPR:
10860 case MULT_EXPR:
10861 case TRUNC_DIV_EXPR:
10862 case CEIL_DIV_EXPR:
10863 case FLOOR_DIV_EXPR:
10864 case ROUND_DIV_EXPR:
10865 case EXACT_DIV_EXPR:
10866 case BIT_AND_EXPR:
cc23546e
JO
10867 case BIT_IOR_EXPR:
10868 case BIT_XOR_EXPR:
10869 case TRUNC_MOD_EXPR:
10870 case FLOOR_MOD_EXPR:
10871 case TRUTH_ANDIF_EXPR:
10872 case TRUTH_ORIF_EXPR:
10873 case TRUTH_AND_EXPR:
10874 case TRUTH_OR_EXPR:
10875 case RSHIFT_EXPR:
10876 case LSHIFT_EXPR:
10877 case RROTATE_EXPR:
10878 case LROTATE_EXPR:
10879 case EQ_EXPR:
10880 case NE_EXPR:
10881 case MAX_EXPR:
10882 case MIN_EXPR:
10883 case LE_EXPR:
10884 case GE_EXPR:
10885 case LT_EXPR:
10886 case GT_EXPR:
10887 case MEMBER_REF:
b3445994 10888 case DOTSTAR_EXPR:
cc23546e 10889 return build_x_binary_op
c8094d83 10890 (TREE_CODE (t),
b3445994 10891 RECUR (TREE_OPERAND (t, 0)),
2a67bec2
ILT
10892 (TREE_NO_WARNING (TREE_OPERAND (t, 0))
10893 ? ERROR_MARK
10894 : TREE_CODE (TREE_OPERAND (t, 0))),
ec835fb2 10895 RECUR (TREE_OPERAND (t, 1)),
2a67bec2
ILT
10896 (TREE_NO_WARNING (TREE_OPERAND (t, 1))
10897 ? ERROR_MARK
10898 : TREE_CODE (TREE_OPERAND (t, 1))),
5ade1ed2
DG
10899 /*overloaded_p=*/NULL,
10900 complain);
cc23546e
JO
10901
10902 case SCOPE_REF:
ee76b931
MM
10903 return tsubst_qualified_id (t, args, complain, in_decl, /*done=*/true,
10904 /*address_p=*/false);
cc23546e 10905 case ARRAY_REF:
b3445994
MM
10906 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
10907 args, complain, in_decl);
2a67bec2
ILT
10908 return build_x_binary_op (ARRAY_REF, op1,
10909 (TREE_NO_WARNING (TREE_OPERAND (t, 0))
10910 ? ERROR_MARK
10911 : TREE_CODE (TREE_OPERAND (t, 0))),
10912 RECUR (TREE_OPERAND (t, 1)),
10913 (TREE_NO_WARNING (TREE_OPERAND (t, 1))
10914 ? ERROR_MARK
10915 : TREE_CODE (TREE_OPERAND (t, 1))),
5ade1ed2
DG
10916 /*overloaded_p=*/NULL,
10917 complain);
c8094d83 10918
cc23546e 10919 case SIZEOF_EXPR:
5d80a306
DG
10920 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0)))
10921 {
10922 /* We only want to compute the number of arguments. */
10923 tree expanded = tsubst_pack_expansion (TREE_OPERAND (t, 0), args,
10924 complain, in_decl);
4745e4eb
JJ
10925 if (expanded == error_mark_node)
10926 return error_mark_node;
5d80a306
DG
10927 return build_int_cst (size_type_node, TREE_VEC_LENGTH (expanded));
10928 }
10929 /* Fall through */
10930
cc23546e 10931 case ALIGNOF_EXPR:
d17811fd
MM
10932 op1 = TREE_OPERAND (t, 0);
10933 if (!args)
10934 {
10935 /* When there are no ARGS, we are trying to evaluate a
10936 non-dependent expression from the parser. Trying to do
10937 the substitutions may not work. */
10938 if (!TYPE_P (op1))
10939 op1 = TREE_TYPE (op1);
10940 }
10941 else
10942 {
10943 ++skip_evaluation;
015c2c66
MM
10944 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
10945 /*function_p=*/false,
10946 /*integral_constant_expression_p=*/false);
d17811fd
MM
10947 --skip_evaluation;
10948 }
7a18b933 10949 if (TYPE_P (op1))
5ade1ed2
DG
10950 return cxx_sizeof_or_alignof_type (op1, TREE_CODE (t),
10951 complain & tf_error);
d17811fd 10952 else
5ade1ed2
DG
10953 return cxx_sizeof_or_alignof_expr (op1, TREE_CODE (t),
10954 complain & tf_error);
cc23546e
JO
10955
10956 case MODOP_EXPR:
e4c2c34b
JM
10957 {
10958 tree r = build_x_modify_expr
10959 (RECUR (TREE_OPERAND (t, 0)),
10960 TREE_CODE (TREE_OPERAND (t, 1)),
5ade1ed2
DG
10961 RECUR (TREE_OPERAND (t, 2)),
10962 complain);
bcf9a914
JM
10963 /* TREE_NO_WARNING must be set if either the expression was
10964 parenthesized or it uses an operator such as >>= rather
10965 than plain assignment. In the former case, it was already
10966 set and must be copied. In the latter case,
10967 build_x_modify_expr sets it and it must not be reset
10968 here. */
10969 if (TREE_NO_WARNING (t))
10970 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
e4c2c34b
JM
10971 return r;
10972 }
cc23546e
JO
10973
10974 case ARROW_EXPR:
b3445994
MM
10975 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
10976 args, complain, in_decl);
ee76b931
MM
10977 /* Remember that there was a reference to this entity. */
10978 if (DECL_P (op1))
10979 mark_used (op1);
10980 return build_x_arrow (op1);
cc23546e
JO
10981
10982 case NEW_EXPR:
268127ce
DG
10983 {
10984 tree init = RECUR (TREE_OPERAND (t, 3));
10985
10986 if (TREE_OPERAND (t, 3) && !init)
10987 /* If there was an initializer in the the original tree, but
10988 it instantiated to an empty list, then we should pass on
10989 VOID_ZERO_NODE to tell build_new that it was an empty
10990 initializer () rather than no initializer. This can only
10991 happen when the initializer is a pack expansion whose
10992 parameter packs are of length zero. */
10993 init = void_zero_node;
10994
10995 return build_new
10996 (RECUR (TREE_OPERAND (t, 0)),
10997 RECUR (TREE_OPERAND (t, 1)),
10998 RECUR (TREE_OPERAND (t, 2)),
10999 init,
5ade1ed2
DG
11000 NEW_EXPR_USE_GLOBAL (t),
11001 complain);
268127ce 11002 }
cc23546e
JO
11003
11004 case DELETE_EXPR:
11005 return delete_sanity
b3445994
MM
11006 (RECUR (TREE_OPERAND (t, 0)),
11007 RECUR (TREE_OPERAND (t, 1)),
cc23546e
JO
11008 DELETE_EXPR_USE_VEC (t),
11009 DELETE_EXPR_USE_GLOBAL (t));
11010
11011 case COMPOUND_EXPR:
b3445994 11012 return build_x_compound_expr (RECUR (TREE_OPERAND (t, 0)),
5ade1ed2
DG
11013 RECUR (TREE_OPERAND (t, 1)),
11014 complain);
cc23546e 11015
ee76b931 11016 case CALL_EXPR:
cc23546e 11017 {
ee76b931
MM
11018 tree function;
11019 tree call_args;
ee76b931 11020 bool qualified_p;
ee935db4 11021 bool koenig_p;
ee76b931 11022
5039610b 11023 function = CALL_EXPR_FN (t);
6d80c4b9
MM
11024 /* When we parsed the expression, we determined whether or
11025 not Koenig lookup should be performed. */
11026 koenig_p = KOENIG_LOOKUP_P (t);
ee76b931 11027 if (TREE_CODE (function) == SCOPE_REF)
cc23546e 11028 {
ee76b931
MM
11029 qualified_p = true;
11030 function = tsubst_qualified_id (function, args, complain, in_decl,
c8094d83 11031 /*done=*/false,
ee76b931 11032 /*address_p=*/false);
cc23546e 11033 }
ee76b931 11034 else
cc23546e 11035 {
61e71a9e
NS
11036 if (TREE_CODE (function) == COMPONENT_REF)
11037 {
11038 tree op = TREE_OPERAND (function, 1);
11039
11040 qualified_p = (TREE_CODE (op) == SCOPE_REF
11041 || (BASELINK_P (op)
11042 && BASELINK_QUALIFIED_P (op)));
11043 }
11044 else
11045 qualified_p = false;
3db45ab5 11046
c8094d83 11047 function = tsubst_copy_and_build (function, args, complain,
b3445994 11048 in_decl,
015c2c66
MM
11049 !qualified_p,
11050 integral_constant_expression_p);
11051
6d80c4b9
MM
11052 if (BASELINK_P (function))
11053 qualified_p = true;
cc23546e 11054 }
cc23546e 11055
5039610b
SL
11056 /* FIXME: Rewrite this so as not to construct an arglist. */
11057 call_args = RECUR (CALL_EXPR_ARGS (t));
676e33ca
MM
11058
11059 /* We do not perform argument-dependent lookup if normal
11060 lookup finds a non-function, in accordance with the
11061 expected resolution of DR 218. */
ee935db4 11062 if (koenig_p
44370687
MM
11063 && ((is_overloaded_fn (function)
11064 /* If lookup found a member function, the Koenig lookup is
11065 not appropriate, even if an unqualified-name was used
11066 to denote the function. */
11067 && !DECL_FUNCTION_MEMBER_P (get_first_fn (function)))
b3445994 11068 || TREE_CODE (function) == IDENTIFIER_NODE))
6d80c4b9
MM
11069 function = perform_koenig_lookup (function, call_args);
11070
11071 if (TREE_CODE (function) == IDENTIFIER_NODE)
b3445994 11072 {
6d80c4b9
MM
11073 unqualified_name_lookup_error (function);
11074 return error_mark_node;
b3445994
MM
11075 }
11076
11077 /* Remember that there was a reference to this entity. */
11078 if (DECL_P (function))
11079 mark_used (function);
11080
d17811fd
MM
11081 if (TREE_CODE (function) == OFFSET_REF)
11082 return build_offset_ref_call_from_tree (function, call_args);
11083 if (TREE_CODE (function) == COMPONENT_REF)
9f880ef9
MM
11084 {
11085 if (!BASELINK_P (TREE_OPERAND (function, 1)))
11086 return finish_call_expr (function, call_args,
11087 /*disallow_virtual=*/false,
5ade1ed2
DG
11088 /*koenig_p=*/false,
11089 complain);
9f880ef9 11090 else
c8094d83 11091 return (build_new_method_call
9f880ef9
MM
11092 (TREE_OPERAND (function, 0),
11093 TREE_OPERAND (function, 1),
c8094d83 11094 call_args, NULL_TREE,
63c9a190 11095 qualified_p ? LOOKUP_NONVIRTUAL : LOOKUP_NORMAL,
5ade1ed2
DG
11096 /*fn_p=*/NULL,
11097 complain));
9f880ef9 11098 }
c8094d83 11099 return finish_call_expr (function, call_args,
6d80c4b9 11100 /*disallow_virtual=*/qualified_p,
5ade1ed2
DG
11101 koenig_p,
11102 complain);
cc23546e
JO
11103 }
11104
11105 case COND_EXPR:
11106 return build_x_conditional_expr
b3445994
MM
11107 (RECUR (TREE_OPERAND (t, 0)),
11108 RECUR (TREE_OPERAND (t, 1)),
5ade1ed2
DG
11109 RECUR (TREE_OPERAND (t, 2)),
11110 complain);
cc23546e
JO
11111
11112 case PSEUDO_DTOR_EXPR:
c8094d83 11113 return finish_pseudo_destructor_expr
b3445994
MM
11114 (RECUR (TREE_OPERAND (t, 0)),
11115 RECUR (TREE_OPERAND (t, 1)),
11116 RECUR (TREE_OPERAND (t, 2)));
cc23546e
JO
11117
11118 case TREE_LIST:
11119 {
11120 tree purpose, value, chain;
11121
11122 if (t == void_list_node)
11123 return t;
11124
5d80a306
DG
11125 if ((TREE_PURPOSE (t) && PACK_EXPANSION_P (TREE_PURPOSE (t)))
11126 || (TREE_VALUE (t) && PACK_EXPANSION_P (TREE_VALUE (t))))
11127 {
11128 /* We have pack expansions, so expand those and
11129 create a new list out of it. */
11130 tree purposevec = NULL_TREE;
11131 tree valuevec = NULL_TREE;
11132 tree chain;
11133 int i, len = -1;
11134
11135 /* Expand the argument expressions. */
11136 if (TREE_PURPOSE (t))
11137 purposevec = tsubst_pack_expansion (TREE_PURPOSE (t), args,
11138 complain, in_decl);
11139 if (TREE_VALUE (t))
11140 valuevec = tsubst_pack_expansion (TREE_VALUE (t), args,
11141 complain, in_decl);
11142
11143 /* Build the rest of the list. */
11144 chain = TREE_CHAIN (t);
11145 if (chain && chain != void_type_node)
11146 chain = RECUR (chain);
11147
11148 /* Determine the number of arguments. */
11149 if (purposevec && TREE_CODE (purposevec) == TREE_VEC)
11150 {
11151 len = TREE_VEC_LENGTH (purposevec);
11152 gcc_assert (!valuevec || len == TREE_VEC_LENGTH (valuevec));
11153 }
11154 else if (TREE_CODE (valuevec) == TREE_VEC)
11155 len = TREE_VEC_LENGTH (valuevec);
11156 else
11157 {
11158 /* Since we only performed a partial substitution into
11159 the argument pack, we only return a single list
11160 node. */
11161 if (purposevec == TREE_PURPOSE (t)
11162 && valuevec == TREE_VALUE (t)
11163 && chain == TREE_CHAIN (t))
11164 return t;
11165
11166 return tree_cons (purposevec, valuevec, chain);
11167 }
11168
11169 /* Convert the argument vectors into a TREE_LIST */
11170 i = len;
11171 while (i > 0)
11172 {
11173 /* Grab the Ith values. */
11174 i--;
11175 purpose = purposevec ? TREE_VEC_ELT (purposevec, i)
11176 : NULL_TREE;
11177 value
11178 = valuevec ? convert_from_reference (TREE_VEC_ELT (valuevec, i))
11179 : NULL_TREE;
11180
11181 /* Build the list (backwards). */
11182 chain = tree_cons (purpose, value, chain);
11183 }
11184
11185 return chain;
11186 }
11187
cc23546e
JO
11188 purpose = TREE_PURPOSE (t);
11189 if (purpose)
b3445994 11190 purpose = RECUR (purpose);
cc23546e
JO
11191 value = TREE_VALUE (t);
11192 if (value)
b3445994 11193 value = RECUR (value);
cc23546e
JO
11194 chain = TREE_CHAIN (t);
11195 if (chain && chain != void_type_node)
b3445994 11196 chain = RECUR (chain);
cc23546e
JO
11197 if (purpose == TREE_PURPOSE (t)
11198 && value == TREE_VALUE (t)
11199 && chain == TREE_CHAIN (t))
11200 return t;
11201 return tree_cons (purpose, value, chain);
11202 }
11203
11204 case COMPONENT_REF:
11205 {
ee76b931 11206 tree object;
3897c0aa 11207 tree object_type;
ee76b931
MM
11208 tree member;
11209
b3445994
MM
11210 object = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
11211 args, complain, in_decl);
ee76b931
MM
11212 /* Remember that there was a reference to this entity. */
11213 if (DECL_P (object))
11214 mark_used (object);
3897c0aa 11215 object_type = TREE_TYPE (object);
ee76b931
MM
11216
11217 member = TREE_OPERAND (t, 1);
11218 if (BASELINK_P (member))
c8094d83 11219 member = tsubst_baselink (member,
ee76b931
MM
11220 non_reference (TREE_TYPE (object)),
11221 args, complain, in_decl);
11222 else
11223 member = tsubst_copy (member, args, complain, in_decl);
bad1f462
KL
11224 if (member == error_mark_node)
11225 return error_mark_node;
3897c0aa
MM
11226
11227 if (object_type && !CLASS_TYPE_P (object_type))
cc23546e 11228 {
3d9b2eb6
JJ
11229 if (SCALAR_TYPE_P (object_type))
11230 {
11231 tree s = NULL_TREE;
11232 tree dtor = member;
11233
11234 if (TREE_CODE (dtor) == SCOPE_REF)
11235 {
11236 s = TREE_OPERAND (dtor, 0);
11237 dtor = TREE_OPERAND (dtor, 1);
11238 }
11239 if (TREE_CODE (dtor) == BIT_NOT_EXPR)
11240 {
11241 dtor = TREE_OPERAND (dtor, 0);
11242 if (TYPE_P (dtor))
11243 return finish_pseudo_destructor_expr (object, s, dtor);
11244 }
11245 }
cc23546e
JO
11246 }
11247 else if (TREE_CODE (member) == SCOPE_REF
11248 && TREE_CODE (TREE_OPERAND (member, 1)) == TEMPLATE_ID_EXPR)
11249 {
11250 tree tmpl;
11251 tree args;
c8094d83 11252
cc23546e
JO
11253 /* Lookup the template functions now that we know what the
11254 scope is. */
11255 tmpl = TREE_OPERAND (TREE_OPERAND (member, 1), 0);
11256 args = TREE_OPERAND (TREE_OPERAND (member, 1), 1);
c8094d83 11257 member = lookup_qualified_name (TREE_OPERAND (member, 0), tmpl,
12483c9f
NS
11258 /*is_type_p=*/false,
11259 /*complain=*/false);
cc23546e 11260 if (BASELINK_P (member))
44370687 11261 {
c8094d83 11262 BASELINK_FUNCTIONS (member)
44370687
MM
11263 = build_nt (TEMPLATE_ID_EXPR, BASELINK_FUNCTIONS (member),
11264 args);
c8094d83
MS
11265 member = (adjust_result_of_qualified_name_lookup
11266 (member, BINFO_TYPE (BASELINK_BINFO (member)),
3897c0aa 11267 object_type));
44370687 11268 }
cc23546e
JO
11269 else
11270 {
3897c0aa 11271 qualified_name_lookup_error (object_type, tmpl, member);
cc23546e
JO
11272 return error_mark_node;
11273 }
11274 }
2436b51f
MM
11275 else if (TREE_CODE (member) == SCOPE_REF
11276 && !CLASS_TYPE_P (TREE_OPERAND (member, 0))
11277 && TREE_CODE (TREE_OPERAND (member, 0)) != NAMESPACE_DECL)
11278 {
11279 if (complain & tf_error)
11280 {
11281 if (TYPE_P (TREE_OPERAND (member, 0)))
c8094d83 11282 error ("%qT is not a class or namespace",
2436b51f
MM
11283 TREE_OPERAND (member, 0));
11284 else
c8094d83 11285 error ("%qD is not a class or namespace",
2436b51f
MM
11286 TREE_OPERAND (member, 0));
11287 }
11288 return error_mark_node;
11289 }
a3f10e50
NS
11290 else if (TREE_CODE (member) == FIELD_DECL)
11291 return finish_non_static_data_member (member, object, NULL_TREE);
cc23546e 11292
02ed62dd 11293 return finish_class_member_access_expr (object, member,
5ade1ed2
DG
11294 /*template_p=*/false,
11295 complain);
cc23546e
JO
11296 }
11297
11298 case THROW_EXPR:
11299 return build_throw
b3445994 11300 (RECUR (TREE_OPERAND (t, 0)));
cc23546e
JO
11301
11302 case CONSTRUCTOR:
11303 {
4038c495
GB
11304 VEC(constructor_elt,gc) *n;
11305 constructor_elt *ce;
11306 unsigned HOST_WIDE_INT idx;
cc23546e 11307 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
4038c495 11308 bool process_index_p;
5d80a306
DG
11309 int newlen;
11310 bool need_copy_p = false;
cc23546e 11311
a97728cf
VR
11312 if (type == error_mark_node)
11313 return error_mark_node;
11314
cc23546e
JO
11315 /* digest_init will do the wrong thing if we let it. */
11316 if (type && TYPE_PTRMEMFUNC_P (type))
11317 return t;
11318
4038c495 11319 /* We do not want to process the index of aggregate
cc23546e
JO
11320 initializers as they are identifier nodes which will be
11321 looked up by digest_init. */
9e1e64ec 11322 process_index_p = !(type && MAYBE_CLASS_TYPE_P (type));
c8094d83 11323
4038c495 11324 n = VEC_copy (constructor_elt, gc, CONSTRUCTOR_ELTS (t));
5d80a306 11325 newlen = VEC_length (constructor_elt, n);
4038c495
GB
11326 for (idx = 0; VEC_iterate (constructor_elt, n, idx, ce); idx++)
11327 {
11328 if (ce->index && process_index_p)
11329 ce->index = RECUR (ce->index);
5d80a306
DG
11330
11331 if (PACK_EXPANSION_P (ce->value))
11332 {
11333 /* Substitute into the pack expansion. */
11334 ce->value = tsubst_pack_expansion (ce->value, args, complain,
11335 in_decl);
11336
4745e4eb
JJ
11337 if (ce->value == error_mark_node)
11338 ;
11339 else if (TREE_VEC_LENGTH (ce->value) == 1)
5d80a306
DG
11340 /* Just move the argument into place. */
11341 ce->value = TREE_VEC_ELT (ce->value, 0);
11342 else
11343 {
11344 /* Update the length of the final CONSTRUCTOR
11345 arguments vector, and note that we will need to
11346 copy.*/
11347 newlen = newlen + TREE_VEC_LENGTH (ce->value) - 1;
11348 need_copy_p = true;
11349 }
11350 }
11351 else
11352 ce->value = RECUR (ce->value);
cc23546e 11353 }
c8094d83 11354
5d80a306
DG
11355 if (need_copy_p)
11356 {
11357 VEC(constructor_elt,gc) *old_n = n;
11358
11359 n = VEC_alloc (constructor_elt, gc, newlen);
11360 for (idx = 0; VEC_iterate (constructor_elt, old_n, idx, ce);
11361 idx++)
11362 {
11363 if (TREE_CODE (ce->value) == TREE_VEC)
11364 {
11365 int i, len = TREE_VEC_LENGTH (ce->value);
11366 for (i = 0; i < len; ++i)
11367 CONSTRUCTOR_APPEND_ELT (n, 0,
11368 TREE_VEC_ELT (ce->value, i));
11369 }
11370 else
11371 CONSTRUCTOR_APPEND_ELT (n, 0, ce->value);
11372 }
11373 }
11374
05b22df9
MM
11375 if (TREE_HAS_CONSTRUCTOR (t))
11376 return finish_compound_literal (type, n);
cc23546e 11377
05b22df9 11378 return build_constructor (NULL_TREE, n);
cc23546e
JO
11379 }
11380
11381 case TYPEID_EXPR:
11382 {
b3445994 11383 tree operand_0 = RECUR (TREE_OPERAND (t, 0));
cc23546e
JO
11384 if (TYPE_P (operand_0))
11385 return get_typeid (operand_0);
11386 return build_typeid (operand_0);
11387 }
11388
cc23546e 11389 case VAR_DECL:
db24eb1f
NS
11390 if (!args)
11391 return t;
11392 /* Fall through */
c8094d83 11393
db24eb1f
NS
11394 case PARM_DECL:
11395 {
11396 tree r = tsubst_copy (t, args, complain, in_decl);
c8094d83 11397
db24eb1f
NS
11398 if (TREE_CODE (TREE_TYPE (t)) != REFERENCE_TYPE)
11399 /* If the original type was a reference, we'll be wrapped in
11400 the appropriate INDIRECT_REF. */
11401 r = convert_from_reference (r);
11402 return r;
11403 }
cc23546e
JO
11404
11405 case VA_ARG_EXPR:
b3445994 11406 return build_x_va_arg (RECUR (TREE_OPERAND (t, 0)),
c8094d83 11407 tsubst_copy (TREE_TYPE (t), args, complain,
b3445994 11408 in_decl));
cc23546e 11409
4bceb077 11410 case OFFSETOF_EXPR:
c291f8b1 11411 return finish_offsetof (RECUR (TREE_OPERAND (t, 0)));
4bceb077 11412
cb68ec50
PC
11413 case TRAIT_EXPR:
11414 {
11415 tree type1 = tsubst_copy (TRAIT_EXPR_TYPE1 (t), args,
11416 complain, in_decl);
11417
11418 tree type2 = TRAIT_EXPR_TYPE2 (t);
11419 if (type2)
11420 type2 = tsubst_copy (type2, args, complain, in_decl);
11421
11422 return finish_trait_expr (TRAIT_EXPR_KIND (t), type1, type2);
11423 }
11424
0fe0caa6
RH
11425 case STMT_EXPR:
11426 {
11427 tree old_stmt_expr = cur_stmt_expr;
11428 tree stmt_expr = begin_stmt_expr ();
11429
11430 cur_stmt_expr = stmt_expr;
015c2c66
MM
11431 tsubst_expr (STMT_EXPR_STMT (t), args, complain, in_decl,
11432 integral_constant_expression_p);
0fe0caa6
RH
11433 stmt_expr = finish_stmt_expr (stmt_expr, false);
11434 cur_stmt_expr = old_stmt_expr;
11435
11436 return stmt_expr;
11437 }
11438
a5201a91
MM
11439 case CONST_DECL:
11440 t = tsubst_copy (t, args, complain, in_decl);
11441 /* As in finish_id_expression, we resolve enumeration constants
11442 to their underlying values. */
11443 if (TREE_CODE (t) == CONST_DECL)
6193b8b7
DJ
11444 {
11445 used_types_insert (TREE_TYPE (t));
11446 return DECL_INITIAL (t);
11447 }
a5201a91
MM
11448 return t;
11449
cc23546e 11450 default:
e58a9aa1
ZL
11451 /* Handle Objective-C++ constructs, if appropriate. */
11452 {
11453 tree subst
11454 = objcp_tsubst_copy_and_build (t, args, complain,
11455 in_decl, /*function_p=*/false);
11456 if (subst)
11457 return subst;
11458 }
cc23546e
JO
11459 return tsubst_copy (t, args, complain, in_decl);
11460 }
b3445994
MM
11461
11462#undef RECUR
cc23546e
JO
11463}
11464
3e4a3562
NS
11465/* Verify that the instantiated ARGS are valid. For type arguments,
11466 make sure that the type's linkage is ok. For non-type arguments,
34cd5ae7 11467 make sure they are constants if they are integral or enumerations.
9bcb9aae 11468 Emit an error under control of COMPLAIN, and return TRUE on error. */
3e4a3562
NS
11469
11470static bool
3a978d72 11471check_instantiated_args (tree tmpl, tree args, tsubst_flags_t complain)
3e4a3562
NS
11472{
11473 int ix, len = DECL_NTPARMS (tmpl);
11474 bool result = false;
11475
11476 for (ix = 0; ix != len; ix++)
11477 {
11478 tree t = TREE_VEC_ELT (args, ix);
c8094d83 11479
3e4a3562
NS
11480 if (TYPE_P (t))
11481 {
11482 /* [basic.link]: A name with no linkage (notably, the name
11483 of a class or enumeration declared in a local scope)
11484 shall not be used to declare an entity with linkage.
11485 This implies that names with no linkage cannot be used as
11486 template arguments. */
4684cd27 11487 tree nt = no_linkage_check (t, /*relaxed_p=*/false);
3e4a3562
NS
11488
11489 if (nt)
11490 {
cb807ba3 11491 /* DR 488 makes use of a type with no linkage cause
3db45ab5 11492 type deduction to fail. */
2010cdcd
MM
11493 if (complain & tf_error)
11494 {
11495 if (TYPE_ANONYMOUS_P (nt))
11496 error ("%qT is/uses anonymous type", t);
11497 else
9df540a8 11498 error ("template argument for %qD uses local type %qT",
3db45ab5 11499 tmpl, t);
2010cdcd 11500 }
3e4a3562
NS
11501 result = true;
11502 }
11503 /* In order to avoid all sorts of complications, we do not
11504 allow variably-modified types as template arguments. */
5377d5ba 11505 else if (variably_modified_type_p (t, NULL_TREE))
3e4a3562
NS
11506 {
11507 if (complain & tf_error)
0f51ccfc 11508 error ("%qT is a variably modified type", t);
3e4a3562
NS
11509 result = true;
11510 }
11511 }
11512 /* A non-type argument of integral or enumerated type must be a
11513 constant. */
11514 else if (TREE_TYPE (t)
11515 && INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (t))
11516 && !TREE_CONSTANT (t))
11517 {
11518 if (complain & tf_error)
0f51ccfc 11519 error ("integral expression %qE is not constant", t);
3e4a3562
NS
11520 result = true;
11521 }
11522 }
2010cdcd 11523 if (result && (complain & tf_error))
0f51ccfc 11524 error (" trying to instantiate %qD", tmpl);
3e4a3562
NS
11525 return result;
11526}
11527
6ba89f8e 11528/* Instantiate the indicated variable or function template TMPL with
36a117a5
MM
11529 the template arguments in TARG_PTR. */
11530
5566b478 11531tree
3a978d72 11532instantiate_template (tree tmpl, tree targ_ptr, tsubst_flags_t complain)
8d08fdba 11533{
5566b478 11534 tree fndecl;
36a117a5
MM
11535 tree gen_tmpl;
11536 tree spec;
a95799ec 11537 HOST_WIDE_INT saved_processing_template_decl;
5566b478 11538
27fafc8d
JM
11539 if (tmpl == error_mark_node)
11540 return error_mark_node;
11541
50bc768d 11542 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
386b8a85 11543
db9b2174
MM
11544 /* If this function is a clone, handle it specially. */
11545 if (DECL_CLONED_FUNCTION_P (tmpl))
3ad97789 11546 {
a30f62e0 11547 tree spec;
3ad97789 11548 tree clone;
c8094d83 11549
a30f62e0
MM
11550 spec = instantiate_template (DECL_CLONED_FUNCTION (tmpl), targ_ptr,
11551 complain);
11552 if (spec == error_mark_node)
11553 return error_mark_node;
11554
c6002625 11555 /* Look for the clone. */
4684cd27 11556 FOR_EACH_CLONE (clone, spec)
3ad97789
NS
11557 if (DECL_NAME (clone) == DECL_NAME (tmpl))
11558 return clone;
11559 /* We should always have found the clone by now. */
315fb5db 11560 gcc_unreachable ();
3ad97789
NS
11561 return NULL_TREE;
11562 }
c8094d83 11563
36a117a5 11564 /* Check to see if we already have this specialization. */
c8094d83 11565 spec = retrieve_specialization (tmpl, targ_ptr,
c7222c02 11566 /*class_specializations_p=*/false);
36a117a5
MM
11567 if (spec != NULL_TREE)
11568 return spec;
11569
f9a7ae04
MM
11570 gen_tmpl = most_general_template (tmpl);
11571 if (tmpl != gen_tmpl)
386b8a85 11572 {
36a117a5
MM
11573 /* The TMPL is a partial instantiation. To get a full set of
11574 arguments we must add the arguments used to perform the
11575 partial instantiation. */
11576 targ_ptr = add_outermost_template_args (DECL_TI_ARGS (tmpl),
11577 targ_ptr);
36a117a5
MM
11578
11579 /* Check to see if we already have this specialization. */
c7222c02
MM
11580 spec = retrieve_specialization (gen_tmpl, targ_ptr,
11581 /*class_specializations_p=*/false);
75650646
MM
11582 if (spec != NULL_TREE)
11583 return spec;
386b8a85
JM
11584 }
11585
3e4a3562
NS
11586 if (check_instantiated_args (gen_tmpl, INNERMOST_TEMPLATE_ARGS (targ_ptr),
11587 complain))
11588 return error_mark_node;
c8094d83 11589
2b907f5c
KL
11590 /* We are building a FUNCTION_DECL, during which the access of its
11591 parameters and return types have to be checked. However this
11592 FUNCTION_DECL which is the desired context for access checking
11593 is not built yet. We solve this chicken-and-egg problem by
11594 deferring all checks until we have the FUNCTION_DECL. */
11595 push_deferring_access_checks (dk_deferred);
5c74d5b0 11596
a95799ec
MM
11597 /* Although PROCESSING_TEMPLATE_DECL may be true at this point
11598 (because, for example, we have encountered a non-dependent
a1d08991
MM
11599 function call in the body of a template function and must now
11600 determine which of several overloaded functions will be called),
11601 within the instantiation itself we are not processing a
11602 template. */
a95799ec
MM
11603 saved_processing_template_decl = processing_template_decl;
11604 processing_template_decl = 0;
11605 /* Substitute template parameters to obtain the specialization. */
17aec3eb 11606 fndecl = tsubst (DECL_TEMPLATE_RESULT (gen_tmpl),
3e4a3562 11607 targ_ptr, complain, gen_tmpl);
a95799ec 11608 processing_template_decl = saved_processing_template_decl;
6b6b60af
MM
11609 if (fndecl == error_mark_node)
11610 return error_mark_node;
5c74d5b0 11611
2b907f5c
KL
11612 /* Now we know the specialization, compute access previously
11613 deferred. */
11614 push_access_scope (fndecl);
11615 perform_deferred_access_checks ();
11616 pop_access_scope (fndecl);
11617 pop_deferring_access_checks ();
5c74d5b0 11618
36a117a5
MM
11619 /* The DECL_TI_TEMPLATE should always be the immediate parent
11620 template, not the most general template. */
11621 DECL_TI_TEMPLATE (fndecl) = tmpl;
8d08fdba 11622
94350948 11623 /* If we've just instantiated the main entry point for a function,
3ad97789
NS
11624 instantiate all the alternate entry points as well. We do this
11625 by cloning the instantiation of the main entry point, not by
11626 instantiating the template clones. */
11627 if (TREE_CHAIN (gen_tmpl) && DECL_CLONED_FUNCTION_P (TREE_CHAIN (gen_tmpl)))
11628 clone_function_decl (fndecl, /*update_method_vec_p=*/0);
94350948 11629
5566b478 11630 return fndecl;
8d08fdba 11631}
5566b478 11632
4393e105
MM
11633/* The FN is a TEMPLATE_DECL for a function. The ARGS are the
11634 arguments that are being used when calling it. TARGS is a vector
c8094d83 11635 into which the deduced template arguments are placed.
8d08fdba
MS
11636
11637 Return zero for success, 2 for an incomplete match that doesn't resolve
11638 all the types, and 1 for complete failure. An error message will be
11639 printed only for an incomplete match.
11640
e5214479
JM
11641 If FN is a conversion operator, or we are trying to produce a specific
11642 specialization, RETURN_TYPE is the return type desired.
9f54c803
MM
11643
11644 The EXPLICIT_TARGS are explicit template arguments provided via a
11645 template-id.
6467930b 11646
830bfa74
MM
11647 The parameter STRICT is one of:
11648
c8094d83 11649 DEDUCE_CALL:
830bfa74
MM
11650 We are deducing arguments for a function call, as in
11651 [temp.deduct.call].
11652
11653 DEDUCE_CONV:
c8094d83 11654 We are deducing arguments for a conversion function, as in
830bfa74
MM
11655 [temp.deduct.conv].
11656
11657 DEDUCE_EXACT:
62e4a758
NS
11658 We are deducing arguments when doing an explicit instantiation
11659 as in [temp.explicit], when determining an explicit specialization
11660 as in [temp.expl.spec], or when taking the address of a function
a34d3336 11661 template, as in [temp.deduct.funcaddr]. */
8d08fdba
MS
11662
11663int
c8094d83 11664fn_type_unification (tree fn,
0cbd7506
MS
11665 tree explicit_targs,
11666 tree targs,
11667 tree args,
11668 tree return_type,
30f86ec3
FJ
11669 unification_kind_t strict,
11670 int flags)
386b8a85 11671{
4393e105
MM
11672 tree parms;
11673 tree fntype;
adecb3f4 11674 int result;
5d80a306 11675 bool incomplete_argument_packs_p = false;
386b8a85 11676
50bc768d 11677 gcc_assert (TREE_CODE (fn) == TEMPLATE_DECL);
2b59fc25 11678
4393e105
MM
11679 fntype = TREE_TYPE (fn);
11680 if (explicit_targs)
75650646 11681 {
4393e105 11682 /* [temp.deduct]
c8094d83 11683
4393e105
MM
11684 The specified template arguments must match the template
11685 parameters in kind (i.e., type, nontype, template), and there
11686 must not be more arguments than there are parameters;
11687 otherwise type deduction fails.
11688
11689 Nontype arguments must match the types of the corresponding
11690 nontype template parameters, or must be convertible to the
11691 types of the corresponding nontype parameters as specified in
11692 _temp.arg.nontype_, otherwise type deduction fails.
11693
11694 All references in the function type of the function template
11695 to the corresponding template parameters are replaced by the
11696 specified template argument values. If a substitution in a
11697 template parameter or in the function type of the function
11698 template results in an invalid type, type deduction fails. */
5d80a306
DG
11699 tree tparms = DECL_INNERMOST_TEMPLATE_PARMS (fn);
11700 int i, len = TREE_VEC_LENGTH (tparms);
4393e105 11701 tree converted_args;
5d80a306 11702 bool incomplete = false;
75650646 11703
c8a7ed43
AO
11704 if (explicit_targs == error_mark_node)
11705 return 1;
11706
4393e105 11707 converted_args
5d80a306 11708 = (coerce_template_parms (tparms, explicit_targs, NULL_TREE, tf_none,
e7e93965
MM
11709 /*require_all_args=*/false,
11710 /*use_default_args=*/false));
4393e105 11711 if (converted_args == error_mark_node)
75650646 11712 return 1;
386b8a85 11713
ffd49b19 11714 /* Substitute the explicit args into the function type. This is
0cbd7506
MS
11715 necessary so that, for instance, explicitly declared function
11716 arguments can match null pointed constants. If we were given
11717 an incomplete set of explicit args, we must not do semantic
11718 processing during substitution as we could create partial
11719 instantiations. */
5d80a306
DG
11720 for (i = 0; i < len; i++)
11721 {
11722 tree parm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
11723 bool parameter_pack = false;
11724
11725 /* Dig out the actual parm. */
11726 if (TREE_CODE (parm) == TYPE_DECL
11727 || TREE_CODE (parm) == TEMPLATE_DECL)
11728 {
11729 parm = TREE_TYPE (parm);
11730 parameter_pack = TEMPLATE_TYPE_PARAMETER_PACK (parm);
11731 }
11732 else if (TREE_CODE (parm) == PARM_DECL)
11733 {
11734 parm = DECL_INITIAL (parm);
11735 parameter_pack = TEMPLATE_PARM_PARAMETER_PACK (parm);
11736 }
11737
11738 if (parameter_pack)
11739 {
11740 int level, idx;
11741 tree targ;
11742 template_parm_level_and_index (parm, &level, &idx);
11743
11744 /* Mark the argument pack as "incomplete". We could
11745 still deduce more arguments during unification. */
11746 targ = TMPL_ARG (converted_args, level, idx);
b1d7b1c0
DG
11747 if (targ)
11748 {
11749 ARGUMENT_PACK_INCOMPLETE_P(targ) = 1;
11750 ARGUMENT_PACK_EXPLICIT_ARGS (targ)
11751 = ARGUMENT_PACK_ARGS (targ);
11752 }
5d80a306
DG
11753
11754 /* We have some incomplete argument packs. */
11755 incomplete_argument_packs_p = true;
11756 }
11757 }
11758
11759 if (incomplete_argument_packs_p)
11760 /* Any substitution is guaranteed to be incomplete if there
11761 are incomplete argument packs, because we can still deduce
11762 more arguments. */
11763 incomplete = 1;
11764 else
11765 incomplete = NUM_TMPL_ARGS (explicit_targs) != NUM_TMPL_ARGS (targs);
11766
ffd49b19 11767 processing_template_decl += incomplete;
c2ea3a40 11768 fntype = tsubst (fntype, converted_args, tf_none, NULL_TREE);
ffd49b19 11769 processing_template_decl -= incomplete;
c8094d83 11770
4393e105
MM
11771 if (fntype == error_mark_node)
11772 return 1;
050367a3 11773
4393e105 11774 /* Place the explicitly specified arguments in TARGS. */
ffd49b19 11775 for (i = NUM_TMPL_ARGS (converted_args); i--;)
4393e105 11776 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (converted_args, i);
75650646 11777 }
c8094d83 11778
e5214479 11779 /* Never do unification on the 'this' parameter. */
ba139ba8 11780 parms = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (fntype));
c8094d83 11781
8d3631f8
NS
11782 if (return_type)
11783 {
8d3631f8
NS
11784 parms = tree_cons (NULL_TREE, TREE_TYPE (fntype), parms);
11785 args = tree_cons (NULL_TREE, return_type, args);
4393e105
MM
11786 }
11787
4393e105
MM
11788 /* We allow incomplete unification without an error message here
11789 because the standard doesn't seem to explicitly prohibit it. Our
11790 callers must be ready to deal with unification failures in any
11791 event. */
c8094d83 11792 result = type_unification_real (DECL_INNERMOST_TEMPLATE_PARMS (fn),
adecb3f4 11793 targs, parms, args, /*subr=*/0,
30f86ec3 11794 strict, flags);
adecb3f4 11795
5d80a306
DG
11796 if (result == 0 && incomplete_argument_packs_p)
11797 {
11798 int i, len = NUM_TMPL_ARGS (targs);
11799
11800 /* Clear the "incomplete" flags on all argument packs. */
11801 for (i = 0; i < len; i++)
11802 {
11803 tree arg = TREE_VEC_ELT (targs, i);
11804 if (ARGUMENT_PACK_P (arg))
11805 {
11806 ARGUMENT_PACK_INCOMPLETE_P (arg) = 0;
11807 ARGUMENT_PACK_EXPLICIT_ARGS (arg) = NULL_TREE;
11808 }
11809 }
11810 }
11811
4cf36211
DG
11812 /* Now that we have bindings for all of the template arguments,
11813 ensure that the arguments deduced for the template template
11814 parameters have compatible template parameter lists. We cannot
11815 check this property before we have deduced all template
11816 arguments, because the template parameter types of a template
11817 template parameter might depend on prior template parameters
11818 deduced after the template template parameter. The following
11819 ill-formed example illustrates this issue:
11820
11821 template<typename T, template<T> class C> void f(C<5>, T);
11822
11823 template<int N> struct X {};
11824
11825 void g() {
11826 f(X<5>(), 5l); // error: template argument deduction fails
11827 }
11828
11829 The template parameter list of 'C' depends on the template type
11830 parameter 'T', but 'C' is deduced to 'X' before 'T' is deduced to
11831 'long'. Thus, we can't check that 'C' cannot bind to 'X' at the
11832 time that we deduce 'C'. */
11833 if (result == 0
11834 && !template_template_parm_bindings_ok_p
11835 (DECL_INNERMOST_TEMPLATE_PARMS (fn), targs))
11836 return 1;
11837
c8094d83 11838 if (result == 0)
adecb3f4 11839 /* All is well so far. Now, check:
c8094d83
MS
11840
11841 [temp.deduct]
11842
adecb3f4
MM
11843 When all template arguments have been deduced, all uses of
11844 template parameters in nondeduced contexts are replaced with
11845 the corresponding deduced argument values. If the
11846 substitution results in an invalid type, as described above,
11847 type deduction fails. */
c2ea3a40 11848 if (tsubst (TREE_TYPE (fn), targs, tf_none, NULL_TREE)
adecb3f4
MM
11849 == error_mark_node)
11850 return 1;
11851
11852 return result;
830bfa74
MM
11853}
11854
11855/* Adjust types before performing type deduction, as described in
11856 [temp.deduct.call] and [temp.deduct.conv]. The rules in these two
4c7d0dff
MM
11857 sections are symmetric. PARM is the type of a function parameter
11858 or the return type of the conversion function. ARG is the type of
11859 the argument passed to the call, or the type of the value
8af2fec4
RY
11860 initialized with the result of the conversion function.
11861 ARG_EXPR is the original argument expression, which may be null. */
386b8a85 11862
62e4a758 11863static int
c8094d83 11864maybe_adjust_types_for_deduction (unification_kind_t strict,
0cbd7506 11865 tree* parm,
8af2fec4
RY
11866 tree* arg,
11867 tree arg_expr)
830bfa74 11868{
62e4a758 11869 int result = 0;
c8094d83 11870
830bfa74
MM
11871 switch (strict)
11872 {
11873 case DEDUCE_CALL:
11874 break;
11875
11876 case DEDUCE_CONV:
11877 {
4c7d0dff
MM
11878 /* Swap PARM and ARG throughout the remainder of this
11879 function; the handling is precisely symmetric since PARM
11880 will initialize ARG rather than vice versa. */
830bfa74
MM
11881 tree* temp = parm;
11882 parm = arg;
11883 arg = temp;
11884 break;
11885 }
11886
11887 case DEDUCE_EXACT:
11888 /* There is nothing to do in this case. */
62e4a758 11889 return 0;
830bfa74
MM
11890
11891 default:
315fb5db 11892 gcc_unreachable ();
830bfa74
MM
11893 }
11894
11895 if (TREE_CODE (*parm) != REFERENCE_TYPE)
11896 {
11897 /* [temp.deduct.call]
c8094d83 11898
830bfa74 11899 If P is not a reference type:
c8094d83 11900
830bfa74
MM
11901 --If A is an array type, the pointer type produced by the
11902 array-to-pointer standard conversion (_conv.array_) is
11903 used in place of A for type deduction; otherwise,
c8094d83 11904
830bfa74
MM
11905 --If A is a function type, the pointer type produced by
11906 the function-to-pointer standard conversion
11907 (_conv.func_) is used in place of A for type deduction;
11908 otherwise,
c8094d83 11909
830bfa74
MM
11910 --If A is a cv-qualified type, the top level
11911 cv-qualifiers of A's type are ignored for type
11912 deduction. */
11913 if (TREE_CODE (*arg) == ARRAY_TYPE)
11914 *arg = build_pointer_type (TREE_TYPE (*arg));
d8f8dca1 11915 else if (TREE_CODE (*arg) == FUNCTION_TYPE)
830bfa74
MM
11916 *arg = build_pointer_type (*arg);
11917 else
11918 *arg = TYPE_MAIN_VARIANT (*arg);
11919 }
c8094d83 11920
8af2fec4
RY
11921 /* From C++0x [14.8.2.1/3 temp.deduct.call] (after DR606), "If P is
11922 of the form T&&, where T is a template parameter, and the argument
11923 is an lvalue, T is deduced as A& */
11924 if (TREE_CODE (*parm) == REFERENCE_TYPE
11925 && TYPE_REF_IS_RVALUE (*parm)
11926 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
11927 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
11928 && arg_expr && real_lvalue_p (arg_expr))
11929 *arg = build_reference_type (*arg);
11930
830bfa74 11931 /* [temp.deduct.call]
c8094d83 11932
830bfa74
MM
11933 If P is a cv-qualified type, the top level cv-qualifiers
11934 of P's type are ignored for type deduction. If P is a
11935 reference type, the type referred to by P is used for
11936 type deduction. */
11937 *parm = TYPE_MAIN_VARIANT (*parm);
11938 if (TREE_CODE (*parm) == REFERENCE_TYPE)
62e4a758
NS
11939 {
11940 *parm = TREE_TYPE (*parm);
11941 result |= UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
11942 }
1c82cc90
NS
11943
11944 /* DR 322. For conversion deduction, remove a reference type on parm
11945 too (which has been swapped into ARG). */
11946 if (strict == DEDUCE_CONV && TREE_CODE (*arg) == REFERENCE_TYPE)
11947 *arg = TREE_TYPE (*arg);
c8094d83 11948
62e4a758 11949 return result;
386b8a85
JM
11950}
11951
e5214479 11952/* Most parms like fn_type_unification.
9f54c803
MM
11953
11954 If SUBR is 1, we're being called recursively (to unify the
11955 arguments of a function or method parameter of a function
38d18b1a 11956 template). */
386b8a85 11957
4966381a 11958static int
c8094d83 11959type_unification_real (tree tparms,
0cbd7506
MS
11960 tree targs,
11961 tree xparms,
11962 tree xargs,
11963 int subr,
30f86ec3
FJ
11964 unification_kind_t strict,
11965 int flags)
8d08fdba 11966{
8af2fec4 11967 tree parm, arg, arg_expr;
8d08fdba
MS
11968 int i;
11969 int ntparms = TREE_VEC_LENGTH (tparms);
830bfa74 11970 int sub_strict;
bd0d5d4a
JM
11971 int saw_undeduced = 0;
11972 tree parms, args;
8d08fdba 11973
50bc768d
NS
11974 gcc_assert (TREE_CODE (tparms) == TREE_VEC);
11975 gcc_assert (xparms == NULL_TREE || TREE_CODE (xparms) == TREE_LIST);
11976 gcc_assert (!xargs || TREE_CODE (xargs) == TREE_LIST);
11977 gcc_assert (ntparms > 0);
8d08fdba 11978
830bfa74
MM
11979 switch (strict)
11980 {
11981 case DEDUCE_CALL:
028d1f20 11982 sub_strict = (UNIFY_ALLOW_OUTER_LEVEL | UNIFY_ALLOW_MORE_CV_QUAL
0cbd7506 11983 | UNIFY_ALLOW_DERIVED);
830bfa74 11984 break;
c8094d83 11985
830bfa74
MM
11986 case DEDUCE_CONV:
11987 sub_strict = UNIFY_ALLOW_LESS_CV_QUAL;
11988 break;
11989
11990 case DEDUCE_EXACT:
11991 sub_strict = UNIFY_ALLOW_NONE;
11992 break;
c8094d83 11993
830bfa74 11994 default:
315fb5db 11995 gcc_unreachable ();
830bfa74
MM
11996 }
11997
bd0d5d4a
JM
11998 again:
11999 parms = xparms;
12000 args = xargs;
bd0d5d4a 12001
a34d3336
NS
12002 while (parms && parms != void_list_node
12003 && args && args != void_list_node)
8d08fdba 12004 {
5d80a306
DG
12005 if (TREE_CODE (TREE_VALUE (parms)) == TYPE_PACK_EXPANSION)
12006 break;
12007
8d08fdba
MS
12008 parm = TREE_VALUE (parms);
12009 parms = TREE_CHAIN (parms);
12010 arg = TREE_VALUE (args);
12011 args = TREE_CHAIN (args);
8af2fec4 12012 arg_expr = NULL;
8d08fdba
MS
12013
12014 if (arg == error_mark_node)
12015 return 1;
12016 if (arg == unknown_type_node)
34016c81
JM
12017 /* We can't deduce anything from this, but we might get all the
12018 template args from other function args. */
12019 continue;
b7484fbe 12020
03e70705
JM
12021 /* Conversions will be performed on a function argument that
12022 corresponds with a function parameter that contains only
12023 non-deducible template parameters and explicitly specified
12024 template parameters. */
c353b8e3 12025 if (!uses_template_parms (parm))
b7484fbe 12026 {
03e70705
JM
12027 tree type;
12028
2f939d94 12029 if (!TYPE_P (arg))
03e70705
JM
12030 type = TREE_TYPE (arg);
12031 else
c353b8e3 12032 type = arg;
03e70705 12033
fad86f7a 12034 if (same_type_p (parm, type))
343c89cd 12035 continue;
fad86f7a 12036 if (strict != DEDUCE_EXACT
3db45ab5 12037 && can_convert_arg (parm, type, TYPE_P (arg) ? NULL_TREE : arg,
30f86ec3 12038 flags))
fad86f7a 12039 continue;
3db45ab5 12040
b7484fbe
MS
12041 return 1;
12042 }
c8094d83 12043
2f939d94 12044 if (!TYPE_P (arg))
8d08fdba 12045 {
50bc768d 12046 gcc_assert (TREE_TYPE (arg) != NULL_TREE);
34016c81 12047 if (type_unknown_p (arg))
28cbf42c 12048 {
acde59b4 12049 /* [temp.deduct.type]
34016c81 12050
acde59b4
MM
12051 A template-argument can be deduced from a pointer to
12052 function or pointer to member function argument if
12053 the set of overloaded functions does not contain
12054 function templates and at most one of a set of
12055 overloaded functions provides a unique match. */
34016c81 12056 if (resolve_overloaded_unification
acde59b4
MM
12057 (tparms, targs, parm, arg, strict, sub_strict))
12058 continue;
12059
12060 return 1;
28cbf42c 12061 }
8af2fec4 12062 arg_expr = arg;
f9aa54d3 12063 arg = unlowered_expr_type (arg);
08476342
NS
12064 if (arg == error_mark_node)
12065 return 1;
8d08fdba 12066 }
c8094d83 12067
62e4a758 12068 {
0cbd7506 12069 int arg_strict = sub_strict;
c8094d83 12070
0cbd7506 12071 if (!subr)
8af2fec4
RY
12072 arg_strict |= maybe_adjust_types_for_deduction (strict, &parm, &arg,
12073 arg_expr);
4393e105 12074
0cbd7506
MS
12075 if (unify (tparms, targs, parm, arg, arg_strict))
12076 return 1;
62e4a758 12077 }
8d08fdba 12078 }
c8094d83 12079
5d80a306
DG
12080
12081 if (parms
12082 && parms != void_list_node
12083 && TREE_CODE (TREE_VALUE (parms)) == TYPE_PACK_EXPANSION)
12084 {
12085 /* Unify the remaining arguments with the pack expansion type. */
12086 tree argvec;
12087 tree parmvec = make_tree_vec (1);
12088 int len = 0;
12089 tree t;
12090
12091 /* Count the number of arguments that remain. */
12092 for (t = args; t && t != void_list_node; t = TREE_CHAIN (t))
12093 len++;
12094
12095 /* Allocate a TREE_VEC and copy in all of the arguments */
12096 argvec = make_tree_vec (len);
12097 for (i = 0; args && args != void_list_node; args = TREE_CHAIN (args))
12098 {
12099 TREE_VEC_ELT (argvec, i) = TREE_VALUE (args);
12100 ++i;
12101 }
12102
12103 /* Copy the parameter into parmvec. */
12104 TREE_VEC_ELT (parmvec, 0) = TREE_VALUE (parms);
12105 if (unify_pack_expansion (tparms, targs, parmvec, argvec, strict,
12106 /*call_args_p=*/true, /*subr=*/subr))
12107 return 1;
12108
12109 /* Advance to the end of the list of parameters. */
12110 parms = TREE_CHAIN (parms);
12111 }
12112
8d08fdba
MS
12113 /* Fail if we've reached the end of the parm list, and more args
12114 are present, and the parm list isn't variadic. */
12115 if (args && args != void_list_node && parms == void_list_node)
12116 return 1;
f4f206f4 12117 /* Fail if parms are left and they don't have default values. */
a34d3336 12118 if (parms && parms != void_list_node
8d08fdba
MS
12119 && TREE_PURPOSE (parms) == NULL_TREE)
12120 return 1;
bd0d5d4a 12121
8d08fdba
MS
12122 if (!subr)
12123 for (i = 0; i < ntparms; i++)
a34d3336 12124 if (!TREE_VEC_ELT (targs, i))
8d08fdba 12125 {
2d8ba2c7
LM
12126 tree tparm;
12127
12128 if (TREE_VEC_ELT (tparms, i) == error_mark_node)
12129 continue;
12130
12131 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
bd0d5d4a
JM
12132
12133 /* If this is an undeduced nontype parameter that depends on
12134 a type parameter, try another pass; its type may have been
12135 deduced from a later argument than the one from which
12136 this parameter can be deduced. */
12137 if (TREE_CODE (tparm) == PARM_DECL
12138 && uses_template_parms (TREE_TYPE (tparm))
12139 && !saw_undeduced++)
12140 goto again;
12141
9b7dd5e8
DG
12142 /* Core issue #226 (C++0x) [temp.deduct]:
12143
12144 If a template argument has not been deduced, its
12145 default template argument, if any, is used.
12146
c1ae8be5
SM
12147 When we are in C++98 mode, TREE_PURPOSE will either
12148 be NULL_TREE or ERROR_MARK_NODE, so we do not need
12149 to explicitly check cxx_dialect here. */
9b7dd5e8
DG
12150 if (TREE_PURPOSE (TREE_VEC_ELT (tparms, i)))
12151 {
12152 tree arg = tsubst (TREE_PURPOSE (TREE_VEC_ELT (tparms, i)),
12153 targs, tf_none, NULL_TREE);
12154 if (arg == error_mark_node)
12155 return 1;
12156 else
12157 {
12158 TREE_VEC_ELT (targs, i) = arg;
12159 continue;
12160 }
12161 }
12162
b1d7b1c0
DG
12163 /* If the type parameter is a parameter pack, then it will
12164 be deduced to an empty parameter pack. */
12165 if (template_parameter_pack_p (tparm))
12166 {
12167 tree arg;
12168
12169 if (TREE_CODE (tparm) == TEMPLATE_PARM_INDEX)
12170 {
12171 arg = make_node (NONTYPE_ARGUMENT_PACK);
12172 TREE_TYPE (arg) = TREE_TYPE (TEMPLATE_PARM_DECL (tparm));
12173 TREE_CONSTANT (arg) = 1;
12174 }
12175 else
12176 arg = make_node (TYPE_ARGUMENT_PACK);
12177
12178 SET_ARGUMENT_PACK_ARGS (arg, make_tree_vec (0));
12179
12180 TREE_VEC_ELT (targs, i) = arg;
12181 continue;
12182 }
12183
8d08fdba
MS
12184 return 2;
12185 }
c8094d83 12186
8d08fdba
MS
12187 return 0;
12188}
12189
acde59b4
MM
12190/* Subroutine of type_unification_real. Args are like the variables
12191 at the call site. ARG is an overloaded function (or template-id);
12192 we try deducing template args from each of the overloads, and if
12193 only one succeeds, we go with that. Modifies TARGS and returns
12194 true on success. */
34016c81 12195
acde59b4 12196static bool
c8094d83 12197resolve_overloaded_unification (tree tparms,
0cbd7506
MS
12198 tree targs,
12199 tree parm,
12200 tree arg,
12201 unification_kind_t strict,
3a978d72 12202 int sub_strict)
34016c81
JM
12203{
12204 tree tempargs = copy_node (targs);
12205 int good = 0;
f23fb7f5 12206 bool addr_p;
34016c81
JM
12207
12208 if (TREE_CODE (arg) == ADDR_EXPR)
f23fb7f5
MM
12209 {
12210 arg = TREE_OPERAND (arg, 0);
12211 addr_p = true;
12212 }
12213 else
12214 addr_p = false;
9f3d9e46 12215
d8f8dca1
MM
12216 if (TREE_CODE (arg) == COMPONENT_REF)
12217 /* Handle `&x' where `x' is some static or non-static member
12218 function name. */
12219 arg = TREE_OPERAND (arg, 1);
12220
05e0b2f4
JM
12221 if (TREE_CODE (arg) == OFFSET_REF)
12222 arg = TREE_OPERAND (arg, 1);
12223
9f3d9e46 12224 /* Strip baselink information. */
50ad9642
MM
12225 if (BASELINK_P (arg))
12226 arg = BASELINK_FUNCTIONS (arg);
9f3d9e46 12227
34016c81
JM
12228 if (TREE_CODE (arg) == TEMPLATE_ID_EXPR)
12229 {
12230 /* If we got some explicit template args, we need to plug them into
12231 the affected templates before we try to unify, in case the
12232 explicit args will completely resolve the templates in question. */
12233
12234 tree expl_subargs = TREE_OPERAND (arg, 1);
12235 arg = TREE_OPERAND (arg, 0);
12236
12237 for (; arg; arg = OVL_NEXT (arg))
12238 {
12239 tree fn = OVL_CURRENT (arg);
12240 tree subargs, elem;
12241
12242 if (TREE_CODE (fn) != TEMPLATE_DECL)
12243 continue;
12244
cc85b4c5 12245 ++processing_template_decl;
a34d3336
NS
12246 subargs = get_bindings (fn, DECL_TEMPLATE_RESULT (fn),
12247 expl_subargs, /*check_ret=*/false);
34016c81
JM
12248 if (subargs)
12249 {
c2ea3a40 12250 elem = tsubst (TREE_TYPE (fn), subargs, tf_none, NULL_TREE);
c8094d83 12251 good += try_one_overload (tparms, targs, tempargs, parm,
f23fb7f5 12252 elem, strict, sub_strict, addr_p);
34016c81 12253 }
cc85b4c5 12254 --processing_template_decl;
34016c81
JM
12255 }
12256 }
acde59b4
MM
12257 else if (TREE_CODE (arg) != OVERLOAD
12258 && TREE_CODE (arg) != FUNCTION_DECL)
12259 /* If ARG is, for example, "(0, &f)" then its type will be unknown
12260 -- but the deduction does not succeed because the expression is
12261 not just the function on its own. */
12262 return false;
315fb5db 12263 else
acde59b4
MM
12264 for (; arg; arg = OVL_NEXT (arg))
12265 good += try_one_overload (tparms, targs, tempargs, parm,
12266 TREE_TYPE (OVL_CURRENT (arg)),
12267 strict, sub_strict, addr_p);
34016c81
JM
12268
12269 /* [temp.deduct.type] A template-argument can be deduced from a pointer
12270 to function or pointer to member function argument if the set of
12271 overloaded functions does not contain function templates and at most
12272 one of a set of overloaded functions provides a unique match.
12273
12274 So if we found multiple possibilities, we return success but don't
12275 deduce anything. */
12276
12277 if (good == 1)
12278 {
12279 int i = TREE_VEC_LENGTH (targs);
12280 for (; i--; )
12281 if (TREE_VEC_ELT (tempargs, i))
12282 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (tempargs, i);
12283 }
12284 if (good)
acde59b4 12285 return true;
34016c81 12286
acde59b4 12287 return false;
34016c81
JM
12288}
12289
12290/* Subroutine of resolve_overloaded_unification; does deduction for a single
12291 overload. Fills TARGS with any deduced arguments, or error_mark_node if
12292 different overloads deduce different arguments for a given parm.
f23fb7f5
MM
12293 ADDR_P is true if the expression for which deduction is being
12294 performed was of the form "& fn" rather than simply "fn".
12295
34016c81
JM
12296 Returns 1 on success. */
12297
12298static int
3a978d72 12299try_one_overload (tree tparms,
0cbd7506
MS
12300 tree orig_targs,
12301 tree targs,
12302 tree parm,
12303 tree arg,
12304 unification_kind_t strict,
f23fb7f5
MM
12305 int sub_strict,
12306 bool addr_p)
34016c81
JM
12307{
12308 int nargs;
12309 tree tempargs;
12310 int i;
12311
12312 /* [temp.deduct.type] A template-argument can be deduced from a pointer
12313 to function or pointer to member function argument if the set of
12314 overloaded functions does not contain function templates and at most
12315 one of a set of overloaded functions provides a unique match.
12316
12317 So if this is a template, just return success. */
12318
12319 if (uses_template_parms (arg))
12320 return 1;
12321
f23fb7f5
MM
12322 if (TREE_CODE (arg) == METHOD_TYPE)
12323 arg = build_ptrmemfunc_type (build_pointer_type (arg));
12324 else if (addr_p)
12325 arg = build_pointer_type (arg);
12326
8af2fec4 12327 sub_strict |= maybe_adjust_types_for_deduction (strict, &parm, &arg, NULL);
34016c81
JM
12328
12329 /* We don't copy orig_targs for this because if we have already deduced
12330 some template args from previous args, unify would complain when we
12331 try to deduce a template parameter for the same argument, even though
12332 there isn't really a conflict. */
12333 nargs = TREE_VEC_LENGTH (targs);
f31c0a32 12334 tempargs = make_tree_vec (nargs);
34016c81 12335
4393e105 12336 if (unify (tparms, tempargs, parm, arg, sub_strict) != 0)
34016c81
JM
12337 return 0;
12338
12339 /* First make sure we didn't deduce anything that conflicts with
e97e5263 12340 explicitly specified args. */
34016c81
JM
12341 for (i = nargs; i--; )
12342 {
12343 tree elt = TREE_VEC_ELT (tempargs, i);
e97e5263 12344 tree oldelt = TREE_VEC_ELT (orig_targs, i);
34016c81 12345
a34d3336
NS
12346 if (!elt)
12347 /*NOP*/;
34016c81 12348 else if (uses_template_parms (elt))
a34d3336
NS
12349 /* Since we're unifying against ourselves, we will fill in
12350 template args used in the function parm list with our own
12351 template parms. Discard them. */
12352 TREE_VEC_ELT (tempargs, i) = NULL_TREE;
12353 else if (oldelt && !template_args_equal (oldelt, elt))
34016c81
JM
12354 return 0;
12355 }
12356
12357 for (i = nargs; i--; )
12358 {
12359 tree elt = TREE_VEC_ELT (tempargs, i);
12360
12361 if (elt)
12362 TREE_VEC_ELT (targs, i) = elt;
12363 }
12364
12365 return 1;
12366}
12367
4393e105
MM
12368/* PARM is a template class (perhaps with unbound template
12369 parameters). ARG is a fully instantiated type. If ARG can be
12370 bound to PARM, return ARG, otherwise return NULL_TREE. TPARMS and
12371 TARGS are as for unify. */
fcfb9f96
MM
12372
12373static tree
3a978d72 12374try_class_unification (tree tparms, tree targs, tree parm, tree arg)
4393e105 12375{
4393e105
MM
12376 tree copy_of_targs;
12377
12378 if (!CLASSTYPE_TEMPLATE_INFO (arg)
c8094d83 12379 || (most_general_template (CLASSTYPE_TI_TEMPLATE (arg))
68361a03 12380 != most_general_template (CLASSTYPE_TI_TEMPLATE (parm))))
4393e105
MM
12381 return NULL_TREE;
12382
12383 /* We need to make a new template argument vector for the call to
12384 unify. If we used TARGS, we'd clutter it up with the result of
12385 the attempted unification, even if this class didn't work out.
12386 We also don't want to commit ourselves to all the unifications
12387 we've already done, since unification is supposed to be done on
12388 an argument-by-argument basis. In other words, consider the
12389 following pathological case:
12390
12391 template <int I, int J, int K>
12392 struct S {};
c8094d83 12393
4393e105
MM
12394 template <int I, int J>
12395 struct S<I, J, 2> : public S<I, I, I>, S<J, J, J> {};
c8094d83 12396
4393e105
MM
12397 template <int I, int J, int K>
12398 void f(S<I, J, K>, S<I, I, I>);
c8094d83 12399
4393e105 12400 void g() {
0cbd7506
MS
12401 S<0, 0, 0> s0;
12402 S<0, 1, 2> s2;
c8094d83 12403
0cbd7506 12404 f(s0, s2);
4393e105
MM
12405 }
12406
12407 Now, by the time we consider the unification involving `s2', we
12408 already know that we must have `f<0, 0, 0>'. But, even though
0e339752 12409 `S<0, 1, 2>' is derived from `S<0, 0, 0>', the code is invalid
4393e105
MM
12410 because there are two ways to unify base classes of S<0, 1, 2>
12411 with S<I, I, I>. If we kept the already deduced knowledge, we
12412 would reject the possibility I=1. */
f31c0a32 12413 copy_of_targs = make_tree_vec (TREE_VEC_LENGTH (targs));
c8094d83 12414
4393e105 12415 /* If unification failed, we're done. */
74601d7c
KL
12416 if (unify (tparms, copy_of_targs, CLASSTYPE_TI_ARGS (parm),
12417 CLASSTYPE_TI_ARGS (arg), UNIFY_ALLOW_NONE))
4393e105 12418 return NULL_TREE;
74601d7c
KL
12419
12420 return arg;
4393e105
MM
12421}
12422
a3a0fc7f
NS
12423/* Given a template type PARM and a class type ARG, find the unique
12424 base type in ARG that is an instance of PARM. We do not examine
12425 ARG itself; only its base-classes. If there is not exactly one
12426 appropriate base class, return NULL_TREE. PARM may be the type of
12427 a partial specialization, as well as a plain template type. Used
12428 by unify. */
4393e105
MM
12429
12430static tree
a3a0fc7f 12431get_template_base (tree tparms, tree targs, tree parm, tree arg)
fcfb9f96 12432{
a3a0fc7f
NS
12433 tree rval = NULL_TREE;
12434 tree binfo;
12435
9e1e64ec 12436 gcc_assert (RECORD_OR_UNION_CODE_P (TREE_CODE (arg)));
c8094d83 12437
a3a0fc7f
NS
12438 binfo = TYPE_BINFO (complete_type (arg));
12439 if (!binfo)
12440 /* The type could not be completed. */
12441 return NULL_TREE;
fcfb9f96 12442
a3a0fc7f
NS
12443 /* Walk in inheritance graph order. The search order is not
12444 important, and this avoids multiple walks of virtual bases. */
12445 for (binfo = TREE_CHAIN (binfo); binfo; binfo = TREE_CHAIN (binfo))
fcfb9f96 12446 {
a3a0fc7f 12447 tree r = try_class_unification (tparms, targs, parm, BINFO_TYPE (binfo));
fcfb9f96 12448
8d83768f
NS
12449 if (r)
12450 {
12451 /* If there is more than one satisfactory baseclass, then:
fcfb9f96 12452
8d83768f 12453 [temp.deduct.call]
fcfb9f96 12454
8d83768f
NS
12455 If they yield more than one possible deduced A, the type
12456 deduction fails.
4393e105 12457
8d83768f 12458 applies. */
a3a0fc7f
NS
12459 if (rval && !same_type_p (r, rval))
12460 return NULL_TREE;
c8094d83 12461
a3a0fc7f 12462 rval = r;
8d83768f 12463 }
fcfb9f96
MM
12464 }
12465
a3a0fc7f 12466 return rval;
fcfb9f96
MM
12467}
12468
db2767b6
MM
12469/* Returns the level of DECL, which declares a template parameter. */
12470
e9659ab0 12471static int
3a978d72 12472template_decl_level (tree decl)
db2767b6
MM
12473{
12474 switch (TREE_CODE (decl))
12475 {
12476 case TYPE_DECL:
12477 case TEMPLATE_DECL:
12478 return TEMPLATE_TYPE_LEVEL (TREE_TYPE (decl));
12479
12480 case PARM_DECL:
12481 return TEMPLATE_PARM_LEVEL (DECL_INITIAL (decl));
12482
12483 default:
315fb5db 12484 gcc_unreachable ();
db2767b6 12485 }
315fb5db 12486 return 0;
db2767b6
MM
12487}
12488
830bfa74
MM
12489/* Decide whether ARG can be unified with PARM, considering only the
12490 cv-qualifiers of each type, given STRICT as documented for unify.
324f9dfb 12491 Returns nonzero iff the unification is OK on that basis. */
e92cc029 12492
e9659ab0 12493static int
3a978d72 12494check_cv_quals_for_unify (int strict, tree arg, tree parm)
830bfa74 12495{
4f2b0fb2
NS
12496 int arg_quals = cp_type_quals (arg);
12497 int parm_quals = cp_type_quals (parm);
12498
355f774d
NS
12499 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
12500 && !(strict & UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
4f2b0fb2 12501 {
2e9ceb77 12502 /* Although a CVR qualifier is ignored when being applied to a
0cbd7506
MS
12503 substituted template parameter ([8.3.2]/1 for example), that
12504 does not apply during deduction [14.8.2.4]/1, (even though
12505 that is not explicitly mentioned, [14.8.2.4]/9 indicates
12506 this). Except when we're allowing additional CV qualifiers
12507 at the outer level [14.8.2.1]/3,1st bullet. */
2e9ceb77
NS
12508 if ((TREE_CODE (arg) == REFERENCE_TYPE
12509 || TREE_CODE (arg) == FUNCTION_TYPE
12510 || TREE_CODE (arg) == METHOD_TYPE)
12511 && (parm_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE)))
12512 return 0;
12513
12514 if ((!POINTER_TYPE_P (arg) && TREE_CODE (arg) != TEMPLATE_TYPE_PARM)
12515 && (parm_quals & TYPE_QUAL_RESTRICT))
12516 return 0;
4f2b0fb2 12517 }
2e9ceb77 12518
62e4a758 12519 if (!(strict & (UNIFY_ALLOW_MORE_CV_QUAL | UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
4f2b0fb2 12520 && (arg_quals & parm_quals) != parm_quals)
ef637255
MM
12521 return 0;
12522
62e4a758 12523 if (!(strict & (UNIFY_ALLOW_LESS_CV_QUAL | UNIFY_ALLOW_OUTER_LESS_CV_QUAL))
4f2b0fb2 12524 && (parm_quals & arg_quals) != arg_quals)
ef637255
MM
12525 return 0;
12526
ef637255 12527 return 1;
830bfa74
MM
12528}
12529
5d80a306
DG
12530/* Determines the LEVEL and INDEX for the template parameter PARM. */
12531void
12532template_parm_level_and_index (tree parm, int* level, int* index)
12533{
12534 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
12535 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
12536 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
12537 {
12538 *index = TEMPLATE_TYPE_IDX (parm);
12539 *level = TEMPLATE_TYPE_LEVEL (parm);
12540 }
12541 else
12542 {
12543 *index = TEMPLATE_PARM_IDX (parm);
12544 *level = TEMPLATE_PARM_LEVEL (parm);
12545 }
12546}
12547
12548/* Unifies the remaining arguments in PACKED_ARGS with the pack
12549 expansion at the end of PACKED_PARMS. Returns 0 if the type
12550 deduction succeeds, 1 otherwise. STRICT is the same as in
12551 unify. CALL_ARGS_P is true iff PACKED_ARGS is actually a function
12552 call argument list. We'll need to adjust the arguments to make them
12553 types. SUBR tells us if this is from a recursive call to
12554 type_unification_real. */
12555int
12556unify_pack_expansion (tree tparms, tree targs, tree packed_parms,
12557 tree packed_args, int strict, bool call_args_p,
12558 bool subr)
12559{
12560 tree parm
12561 = TREE_VEC_ELT (packed_parms, TREE_VEC_LENGTH (packed_parms) - 1);
12562 tree pattern = PACK_EXPANSION_PATTERN (parm);
12563 tree pack, packs = NULL_TREE;
12564 int i, start = TREE_VEC_LENGTH (packed_parms) - 1;
12565 int len = TREE_VEC_LENGTH (packed_args);
12566
12567 /* Determine the parameter packs we will be deducing from the
12568 pattern, and record their current deductions. */
12569 for (pack = PACK_EXPANSION_PARAMETER_PACKS (parm);
12570 pack; pack = TREE_CHAIN (pack))
12571 {
12572 tree parm_pack = TREE_VALUE (pack);
12573 int idx, level;
12574
12575 /* Determine the index and level of this parameter pack. */
12576 template_parm_level_and_index (parm_pack, &level, &idx);
12577
12578 /* Keep track of the parameter packs and their corresponding
12579 argument packs. */
12580 packs = tree_cons (parm_pack, TMPL_ARG (targs, level, idx), packs);
12581 TREE_TYPE (packs) = make_tree_vec (len - start);
12582 }
12583
12584 /* Loop through all of the arguments that have not yet been
12585 unified and unify each with the pattern. */
12586 for (i = start; i < len; i++)
12587 {
12588 tree parm = pattern;
12589
12590 /* For each parameter pack, clear out the deduced value so that
12591 we can deduce it again. */
12592 for (pack = packs; pack; pack = TREE_CHAIN (pack))
12593 {
12594 int idx, level;
12595 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
12596
12597 TMPL_ARG (targs, level, idx) = NULL_TREE;
12598 }
12599
12600 /* Unify the pattern with the current argument. */
12601 {
12602 tree arg = TREE_VEC_ELT (packed_args, i);
2afad0f6 12603 tree arg_expr = NULL_TREE;
5d80a306
DG
12604 int arg_strict = strict;
12605 bool skip_arg_p = false;
12606
12607 if (call_args_p)
12608 {
12609 int sub_strict;
12610
12611 /* This mirrors what we do in type_unification_real. */
12612 switch (strict)
12613 {
12614 case DEDUCE_CALL:
12615 sub_strict = (UNIFY_ALLOW_OUTER_LEVEL
12616 | UNIFY_ALLOW_MORE_CV_QUAL
12617 | UNIFY_ALLOW_DERIVED);
12618 break;
12619
12620 case DEDUCE_CONV:
12621 sub_strict = UNIFY_ALLOW_LESS_CV_QUAL;
12622 break;
12623
12624 case DEDUCE_EXACT:
12625 sub_strict = UNIFY_ALLOW_NONE;
12626 break;
12627
12628 default:
12629 gcc_unreachable ();
12630 }
12631
12632 if (!TYPE_P (arg))
12633 {
12634 gcc_assert (TREE_TYPE (arg) != NULL_TREE);
12635 if (type_unknown_p (arg))
12636 {
12637 /* [temp.deduct.type] A template-argument can be
12638 deduced from a pointer to function or pointer
12639 to member function argument if the set of
12640 overloaded functions does not contain function
12641 templates and at most one of a set of
12642 overloaded functions provides a unique
12643 match. */
12644
12645 if (resolve_overloaded_unification
12646 (tparms, targs, parm, arg, strict, sub_strict)
12647 != 0)
12648 return 1;
12649 skip_arg_p = true;
12650 }
12651
12652 if (!skip_arg_p)
12653 {
2afad0f6
DG
12654 arg_expr = arg;
12655 arg = unlowered_expr_type (arg);
5d80a306
DG
12656 if (arg == error_mark_node)
12657 return 1;
12658 }
12659 }
12660
12661 arg_strict = sub_strict;
12662
12663 if (!subr)
12664 arg_strict |=
2afad0f6
DG
12665 maybe_adjust_types_for_deduction (strict, &parm, &arg,
12666 arg_expr);
5d80a306
DG
12667 }
12668
12669 if (!skip_arg_p)
12670 {
12671 if (unify (tparms, targs, parm, arg, arg_strict))
12672 return 1;
12673 }
12674 }
12675
12676 /* For each parameter pack, collect the deduced value. */
12677 for (pack = packs; pack; pack = TREE_CHAIN (pack))
12678 {
12679 int idx, level;
12680 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
12681
12682 TREE_VEC_ELT (TREE_TYPE (pack), i - start) =
12683 TMPL_ARG (targs, level, idx);
12684 }
12685 }
12686
12687 /* Verify that the results of unification with the parameter packs
12688 produce results consistent with what we've seen before, and make
12689 the deduced argument packs available. */
12690 for (pack = packs; pack; pack = TREE_CHAIN (pack))
12691 {
12692 tree old_pack = TREE_VALUE (pack);
12693 tree new_args = TREE_TYPE (pack);
db60ff18
DG
12694 int i, len = TREE_VEC_LENGTH (new_args);
12695 bool nondeduced_p = false;
12696
12697 /* If NEW_ARGS contains any NULL_TREE entries, we didn't
12698 actually deduce anything. */
12699 for (i = 0; i < len && !nondeduced_p; ++i)
12700 if (TREE_VEC_ELT (new_args, i) == NULL_TREE)
12701 nondeduced_p = true;
12702 if (nondeduced_p)
12703 continue;
5d80a306
DG
12704
12705 if (old_pack && ARGUMENT_PACK_INCOMPLETE_P (old_pack))
12706 {
12707 /* Prepend the explicit arguments onto NEW_ARGS. */
12708 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
12709 tree old_args = new_args;
12710 int i, explicit_len = TREE_VEC_LENGTH (explicit_args);
12711 int len = explicit_len + TREE_VEC_LENGTH (old_args);
12712
12713 /* Copy the explicit arguments. */
12714 new_args = make_tree_vec (len);
12715 for (i = 0; i < explicit_len; i++)
12716 TREE_VEC_ELT (new_args, i) = TREE_VEC_ELT (explicit_args, i);
12717
12718 /* Copy the deduced arguments. */
12719 for (; i < len; i++)
12720 TREE_VEC_ELT (new_args, i) =
12721 TREE_VEC_ELT (old_args, i - explicit_len);
12722 }
12723
12724 if (!old_pack)
12725 {
12726 tree result;
12727 int idx, level;
12728
12729 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
12730
12731 /* Build the deduced *_ARGUMENT_PACK. */
12732 if (TREE_CODE (TREE_PURPOSE (pack)) == TEMPLATE_PARM_INDEX)
12733 {
12734 result = make_node (NONTYPE_ARGUMENT_PACK);
12735 TREE_TYPE (result) =
12736 TREE_TYPE (TEMPLATE_PARM_DECL (TREE_PURPOSE (pack)));
12737 TREE_CONSTANT (result) = 1;
12738 }
12739 else
12740 result = make_node (TYPE_ARGUMENT_PACK);
12741
12742 SET_ARGUMENT_PACK_ARGS (result, new_args);
12743
12744 /* Note the deduced argument packs for this parameter
12745 pack. */
12746 TMPL_ARG (targs, level, idx) = result;
12747 }
12748 else if (ARGUMENT_PACK_INCOMPLETE_P (old_pack)
12749 && (ARGUMENT_PACK_ARGS (old_pack)
12750 == ARGUMENT_PACK_EXPLICIT_ARGS (old_pack)))
12751 {
12752 /* We only had the explicitly-provided arguments before, but
12753 now we have a complete set of arguments. */
12754 int idx, level;
12755 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
12756 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
12757
12758 /* Keep the original deduced argument pack. */
12759 TMPL_ARG (targs, level, idx) = old_pack;
12760
12761 SET_ARGUMENT_PACK_ARGS (old_pack, new_args);
12762 ARGUMENT_PACK_INCOMPLETE_P (old_pack) = 1;
12763 ARGUMENT_PACK_EXPLICIT_ARGS (old_pack) = explicit_args;
12764 }
12765 else if (!comp_template_args (ARGUMENT_PACK_ARGS (old_pack),
12766 new_args))
12767 /* Inconsistent unification of this parameter pack. */
12768 return 1;
12769 else
12770 {
12771 int idx, level;
12772
12773 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
12774
12775 /* Keep the original deduced argument pack. */
12776 TMPL_ARG (targs, level, idx) = old_pack;
12777 }
12778 }
12779
12780 return 0;
12781}
12782
916b63c3
MM
12783/* Deduce the value of template parameters. TPARMS is the (innermost)
12784 set of template parameters to a template. TARGS is the bindings
12785 for those template parameters, as determined thus far; TARGS may
12786 include template arguments for outer levels of template parameters
12787 as well. PARM is a parameter to a template function, or a
12788 subcomponent of that parameter; ARG is the corresponding argument.
12789 This function attempts to match PARM with ARG in a manner
12790 consistent with the existing assignments in TARGS. If more values
12791 are deduced, then TARGS is updated.
12792
12793 Returns 0 if the type deduction succeeds, 1 otherwise. The
12794 parameter STRICT is a bitwise or of the following flags:
830bfa74
MM
12795
12796 UNIFY_ALLOW_NONE:
12797 Require an exact match between PARM and ARG.
12798 UNIFY_ALLOW_MORE_CV_QUAL:
028d1f20
NS
12799 Allow the deduced ARG to be more cv-qualified (by qualification
12800 conversion) than ARG.
830bfa74
MM
12801 UNIFY_ALLOW_LESS_CV_QUAL:
12802 Allow the deduced ARG to be less cv-qualified than ARG.
12803 UNIFY_ALLOW_DERIVED:
12804 Allow the deduced ARG to be a template base class of ARG,
12805 or a pointer to a template base class of the type pointed to by
161c12b0
JM
12806 ARG.
12807 UNIFY_ALLOW_INTEGER:
12808 Allow any integral type to be deduced. See the TEMPLATE_PARM_INDEX
c8094d83 12809 case for more information.
028d1f20
NS
12810 UNIFY_ALLOW_OUTER_LEVEL:
12811 This is the outermost level of a deduction. Used to determine validity
12812 of qualification conversions. A valid qualification conversion must
12813 have const qualified pointers leading up to the inner type which
12814 requires additional CV quals, except at the outer level, where const
12815 is not required [conv.qual]. It would be normal to set this flag in
62e4a758
NS
12816 addition to setting UNIFY_ALLOW_MORE_CV_QUAL.
12817 UNIFY_ALLOW_OUTER_MORE_CV_QUAL:
12818 This is the outermost level of a deduction, and PARM can be more CV
12819 qualified at this point.
12820 UNIFY_ALLOW_OUTER_LESS_CV_QUAL:
12821 This is the outermost level of a deduction, and PARM can be less CV
8baddbf1 12822 qualified at this point. */
830bfa74 12823
e9659ab0 12824static int
3a978d72 12825unify (tree tparms, tree targs, tree parm, tree arg, int strict)
8d08fdba
MS
12826{
12827 int idx;
050367a3 12828 tree targ;
db2767b6 12829 tree tparm;
028d1f20 12830 int strict_in = strict;
8d08fdba
MS
12831
12832 /* I don't think this will do the right thing with respect to types.
12833 But the only case I've seen it in so far has been array bounds, where
12834 signedness is the only information lost, and I think that will be
12835 okay. */
12836 while (TREE_CODE (parm) == NOP_EXPR)
12837 parm = TREE_OPERAND (parm, 0);
12838
12839 if (arg == error_mark_node)
12840 return 1;
12841 if (arg == unknown_type_node)
34016c81
JM
12842 /* We can't deduce anything from this, but we might get all the
12843 template args from other function args. */
12844 return 0;
12845
db2767b6 12846 /* If PARM uses template parameters, then we can't bail out here,
6bdb985f 12847 even if ARG == PARM, since we won't record unifications for the
db2767b6
MM
12848 template parameters. We might need them if we're trying to
12849 figure out which of two things is more specialized. */
12850 if (arg == parm && !uses_template_parms (parm))
8d08fdba
MS
12851 return 0;
12852
830bfa74
MM
12853 /* Immediately reject some pairs that won't unify because of
12854 cv-qualification mismatches. */
12855 if (TREE_CODE (arg) == TREE_CODE (parm)
2f939d94 12856 && TYPE_P (arg)
d0ab7624 12857 /* It is the elements of the array which hold the cv quals of an array
0cbd7506
MS
12858 type, and the elements might be template type parms. We'll check
12859 when we recurse. */
d0ab7624 12860 && TREE_CODE (arg) != ARRAY_TYPE
830bfa74
MM
12861 /* We check the cv-qualifiers when unifying with template type
12862 parameters below. We want to allow ARG `const T' to unify with
12863 PARM `T' for example, when computing which of two templates
12864 is more specialized, for example. */
12865 && TREE_CODE (arg) != TEMPLATE_TYPE_PARM
028d1f20 12866 && !check_cv_quals_for_unify (strict_in, arg, parm))
49432171
JM
12867 return 1;
12868
028d1f20 12869 if (!(strict & UNIFY_ALLOW_OUTER_LEVEL)
3ea099f1 12870 && TYPE_P (parm) && !CP_TYPE_CONST_P (parm))
028d1f20
NS
12871 strict &= ~UNIFY_ALLOW_MORE_CV_QUAL;
12872 strict &= ~UNIFY_ALLOW_OUTER_LEVEL;
12873 strict &= ~UNIFY_ALLOW_DERIVED;
62e4a758
NS
12874 strict &= ~UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
12875 strict &= ~UNIFY_ALLOW_OUTER_LESS_CV_QUAL;
c8094d83 12876
8d08fdba
MS
12877 switch (TREE_CODE (parm))
12878 {
2ca340ae 12879 case TYPENAME_TYPE:
fccef71e 12880 case SCOPE_REF:
b8c6534b 12881 case UNBOUND_CLASS_TEMPLATE:
2ca340ae
JM
12882 /* In a type which contains a nested-name-specifier, template
12883 argument values cannot be deduced for template parameters used
12884 within the nested-name-specifier. */
12885 return 0;
12886
8d08fdba 12887 case TEMPLATE_TYPE_PARM:
73b0fce8 12888 case TEMPLATE_TEMPLATE_PARM:
a1281f45 12889 case BOUND_TEMPLATE_TEMPLATE_PARM:
db2767b6 12890 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
833be229
PC
12891 if (tparm == error_mark_node)
12892 return 1;
db2767b6
MM
12893
12894 if (TEMPLATE_TYPE_LEVEL (parm)
12895 != template_decl_level (tparm))
12896 /* The PARM is not one we're trying to unify. Just check
12897 to see if it matches ARG. */
12898 return (TREE_CODE (arg) == TREE_CODE (parm)
3bfdc719 12899 && same_type_p (parm, arg)) ? 0 : 1;
73b0fce8 12900 idx = TEMPLATE_TYPE_IDX (parm);
916b63c3 12901 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
db2767b6 12902 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, idx));
050367a3 12903
73b0fce8 12904 /* Check for mixed types and values. */
db2767b6
MM
12905 if ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
12906 && TREE_CODE (tparm) != TYPE_DECL)
c8094d83 12907 || (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
db2767b6 12908 && TREE_CODE (tparm) != TEMPLATE_DECL))
73b0fce8
KL
12909 return 1;
12910
a1281f45 12911 if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
73b0fce8 12912 {
b429fdf0
KL
12913 /* ARG must be constructed from a template class or a template
12914 template parameter. */
12915 if (TREE_CODE (arg) != BOUND_TEMPLATE_TEMPLATE_PARM
4e95268d 12916 && !CLASSTYPE_SPECIALIZATION_OF_PRIMARY_TEMPLATE_P (arg))
a1281f45 12917 return 1;
73b0fce8 12918
a1281f45 12919 {
a1281f45 12920 tree parmvec = TYPE_TI_ARGS (parm);
6df91b00 12921 tree argvec = INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (arg));
a0a5f30f
DG
12922 tree parm_parms
12923 = DECL_INNERMOST_TEMPLATE_PARMS
12924 (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (parm));
4cf36211
DG
12925 int i, len;
12926 int parm_variadic_p = 0;
73b0fce8 12927
e7e93965
MM
12928 /* The resolution to DR150 makes clear that default
12929 arguments for an N-argument may not be used to bind T
12930 to a template template parameter with fewer than N
12931 parameters. It is not safe to permit the binding of
12932 default arguments as an extension, as that may change
12933 the meaning of a conforming program. Consider:
12934
12935 struct Dense { static const unsigned int dim = 1; };
12936
12937 template <template <typename> class View,
12938 typename Block>
12939 void operator+(float, View<Block> const&);
12940
3db45ab5
MS
12941 template <typename Block,
12942 unsigned int Dim = Block::dim>
e7e93965
MM
12943 struct Lvalue_proxy { operator float() const; };
12944
12945 void
12946 test_1d (void) {
12947 Lvalue_proxy<Dense> p;
12948 float b;
12949 b + p;
12950 }
a1281f45 12951
e7e93965
MM
12952 Here, if Lvalue_proxy is permitted to bind to View, then
12953 the global operator+ will be used; if they are not, the
3db45ab5 12954 Lvalue_proxy will be converted to float. */
a0a5f30f
DG
12955 if (coerce_template_parms (parm_parms,
12956 argvec,
e7e93965
MM
12957 TYPE_TI_TEMPLATE (parm),
12958 tf_none,
12959 /*require_all_args=*/true,
12960 /*use_default_args=*/false)
0cbd7506 12961 == error_mark_node)
a1281f45 12962 return 1;
c8094d83
MS
12963
12964 /* Deduce arguments T, i from TT<T> or TT<i>.
a1281f45
KL
12965 We check each element of PARMVEC and ARGVEC individually
12966 rather than the whole TREE_VEC since they can have
12967 different number of elements. */
6b9b6b15 12968
4cf36211
DG
12969 parmvec = expand_template_argument_pack (parmvec);
12970 argvec = expand_template_argument_pack (argvec);
12971
12972 len = TREE_VEC_LENGTH (parmvec);
12973
12974 /* Check if the parameters end in a pack, making them
12975 variadic. */
12976 if (len > 0
12977 && PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, len - 1)))
12978 parm_variadic_p = 1;
12979
12980 if (TREE_VEC_LENGTH (argvec) < len - parm_variadic_p)
12981 return 1;
12982
12983 for (i = 0; i < len - parm_variadic_p; ++i)
a1281f45 12984 {
0cbd7506 12985 if (unify (tparms, targs,
c8094d83
MS
12986 TREE_VEC_ELT (parmvec, i),
12987 TREE_VEC_ELT (argvec, i),
a1281f45
KL
12988 UNIFY_ALLOW_NONE))
12989 return 1;
73b0fce8 12990 }
4cf36211
DG
12991
12992 if (parm_variadic_p
12993 && unify_pack_expansion (tparms, targs,
12994 parmvec, argvec,
12995 UNIFY_ALLOW_NONE,
12996 /*call_args_p=*/false,
12997 /*subr=*/false))
12998 return 1;
a1281f45 12999 }
b429fdf0 13000 arg = TYPE_TI_TEMPLATE (arg);
a1281f45
KL
13001
13002 /* Fall through to deduce template name. */
13003 }
13004
13005 if (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
13006 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
13007 {
13008 /* Deduce template name TT from TT, TT<>, TT<T> and TT<i>. */
13009
13010 /* Simple cases: Value already set, does match or doesn't. */
13011 if (targ != NULL_TREE && template_args_equal (targ, arg))
13012 return 0;
13013 else if (targ)
13014 return 1;
db2767b6
MM
13015 }
13016 else
13017 {
830bfa74
MM
13018 /* If PARM is `const T' and ARG is only `int', we don't have
13019 a match unless we are allowing additional qualification.
13020 If ARG is `const int' and PARM is just `T' that's OK;
13021 that binds `const int' to `T'. */
c8094d83 13022 if (!check_cv_quals_for_unify (strict_in | UNIFY_ALLOW_LESS_CV_QUAL,
830bfa74 13023 arg, parm))
db2767b6
MM
13024 return 1;
13025
830bfa74
MM
13026 /* Consider the case where ARG is `const volatile int' and
13027 PARM is `const T'. Then, T should be `volatile int'. */
c2ea3a40
NS
13028 arg = cp_build_qualified_type_real
13029 (arg, cp_type_quals (arg) & ~cp_type_quals (parm), tf_none);
adecb3f4
MM
13030 if (arg == error_mark_node)
13031 return 1;
73b0fce8 13032
a1281f45
KL
13033 /* Simple cases: Value already set, does match or doesn't. */
13034 if (targ != NULL_TREE && same_type_p (targ, arg))
13035 return 0;
13036 else if (targ)
13037 return 1;
61cd552e 13038
94fc547c
MM
13039 /* Make sure that ARG is not a variable-sized array. (Note
13040 that were talking about variable-sized arrays (like
13041 `int[n]'), rather than arrays of unknown size (like
13042 `int[]').) We'll get very confused by such a type since
13043 the bound of the array will not be computable in an
13044 instantiation. Besides, such types are not allowed in
13045 ISO C++, so we can do as we please here. */
5377d5ba 13046 if (variably_modified_type_p (arg, NULL_TREE))
94fc547c
MM
13047 return 1;
13048 }
61cd552e 13049
5d80a306
DG
13050 /* If ARG is a parameter pack or an expansion, we cannot unify
13051 against it unless PARM is also a parameter pack. */
13052 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
13053 && !template_parameter_pack_p (parm))
13054 return 1;
13055
916b63c3 13056 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
73b0fce8
KL
13057 return 0;
13058
f84b4be9 13059 case TEMPLATE_PARM_INDEX:
db2767b6 13060 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
3e9ac7e5
VR
13061 if (tparm == error_mark_node)
13062 return 1;
db2767b6 13063
c8094d83 13064 if (TEMPLATE_PARM_LEVEL (parm)
db2767b6
MM
13065 != template_decl_level (tparm))
13066 /* The PARM is not one we're trying to unify. Just check
13067 to see if it matches ARG. */
c8a209ca
NS
13068 return !(TREE_CODE (arg) == TREE_CODE (parm)
13069 && cp_tree_equal (parm, arg));
db2767b6 13070
f84b4be9 13071 idx = TEMPLATE_PARM_IDX (parm);
916b63c3 13072 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
db2767b6 13073
050367a3 13074 if (targ)
c8a209ca 13075 return !cp_tree_equal (targ, arg);
8d08fdba 13076
161c12b0
JM
13077 /* [temp.deduct.type] If, in the declaration of a function template
13078 with a non-type template-parameter, the non-type
13079 template-parameter is used in an expression in the function
13080 parameter-list and, if the corresponding template-argument is
13081 deduced, the template-argument type shall match the type of the
13082 template-parameter exactly, except that a template-argument
c8094d83 13083 deduced from an array bound may be of any integral type.
d7c4edd0 13084 The non-type parameter might use already deduced type parameters. */
bd0d5d4a 13085 tparm = tsubst (TREE_TYPE (parm), targs, 0, NULL_TREE);
e2005c8d
KL
13086 if (!TREE_TYPE (arg))
13087 /* Template-parameter dependent expression. Just accept it for now.
13088 It will later be processed in convert_template_argument. */
13089 ;
13090 else if (same_type_p (TREE_TYPE (arg), tparm))
13091 /* OK */;
161c12b0 13092 else if ((strict & UNIFY_ALLOW_INTEGER)
bd0d5d4a
JM
13093 && (TREE_CODE (tparm) == INTEGER_TYPE
13094 || TREE_CODE (tparm) == BOOLEAN_TYPE))
8baddbf1
MM
13095 /* Convert the ARG to the type of PARM; the deduced non-type
13096 template argument must exactly match the types of the
13097 corresponding parameter. */
13098 arg = fold (build_nop (TREE_TYPE (parm), arg));
bd0d5d4a
JM
13099 else if (uses_template_parms (tparm))
13100 /* We haven't deduced the type of this parameter yet. Try again
13101 later. */
13102 return 0;
161c12b0
JM
13103 else
13104 return 1;
13105
5d80a306
DG
13106 /* If ARG is a parameter pack or an expansion, we cannot unify
13107 against it unless PARM is also a parameter pack. */
13108 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
13109 && !TEMPLATE_PARM_PARAMETER_PACK (parm))
13110 return 1;
13111
916b63c3 13112 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
8d08fdba
MS
13113 return 0;
13114
28e8f3a0
GB
13115 case PTRMEM_CST:
13116 {
0cbd7506
MS
13117 /* A pointer-to-member constant can be unified only with
13118 another constant. */
28e8f3a0 13119 if (TREE_CODE (arg) != PTRMEM_CST)
0cbd7506 13120 return 1;
28e8f3a0
GB
13121
13122 /* Just unify the class member. It would be useless (and possibly
0cbd7506
MS
13123 wrong, depending on the strict flags) to unify also
13124 PTRMEM_CST_CLASS, because we want to be sure that both parm and
13125 arg refer to the same variable, even if through different
13126 classes. For instance:
28e8f3a0 13127
0cbd7506
MS
13128 struct A { int x; };
13129 struct B : A { };
28e8f3a0 13130
0cbd7506 13131 Unification of &A::x and &B::x must succeed. */
28e8f3a0 13132 return unify (tparms, targs, PTRMEM_CST_MEMBER (parm),
0cbd7506 13133 PTRMEM_CST_MEMBER (arg), strict);
28e8f3a0
GB
13134 }
13135
8d08fdba 13136 case POINTER_TYPE:
830bfa74 13137 {
830bfa74
MM
13138 if (TREE_CODE (arg) != POINTER_TYPE)
13139 return 1;
c8094d83 13140
830bfa74
MM
13141 /* [temp.deduct.call]
13142
13143 A can be another pointer or pointer to member type that can
13144 be converted to the deduced A via a qualification
13145 conversion (_conv.qual_).
13146
13147 We pass down STRICT here rather than UNIFY_ALLOW_NONE.
13148 This will allow for additional cv-qualification of the
028d1f20 13149 pointed-to types if appropriate. */
c8094d83 13150
028d1f20 13151 if (TREE_CODE (TREE_TYPE (arg)) == RECORD_TYPE)
830bfa74
MM
13152 /* The derived-to-base conversion only persists through one
13153 level of pointers. */
028d1f20 13154 strict |= (strict_in & UNIFY_ALLOW_DERIVED);
830bfa74 13155
c8094d83 13156 return unify (tparms, targs, TREE_TYPE (parm),
028d1f20 13157 TREE_TYPE (arg), strict);
830bfa74 13158 }
8d08fdba
MS
13159
13160 case REFERENCE_TYPE:
830bfa74
MM
13161 if (TREE_CODE (arg) != REFERENCE_TYPE)
13162 return 1;
13163 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
028d1f20 13164 strict & UNIFY_ALLOW_MORE_CV_QUAL);
8d08fdba
MS
13165
13166 case ARRAY_TYPE:
13167 if (TREE_CODE (arg) != ARRAY_TYPE)
13168 return 1;
3042d5be
MM
13169 if ((TYPE_DOMAIN (parm) == NULL_TREE)
13170 != (TYPE_DOMAIN (arg) == NULL_TREE))
13171 return 1;
8baddbf1
MM
13172 if (TYPE_DOMAIN (parm) != NULL_TREE)
13173 {
13174 tree parm_max;
13175 tree arg_max;
6ee3ffe8
MM
13176 bool parm_cst;
13177 bool arg_cst;
8baddbf1
MM
13178
13179 /* Our representation of array types uses "N - 1" as the
13180 TYPE_MAX_VALUE for an array with "N" elements, if "N" is
6ee3ffe8
MM
13181 not an integer constant. We cannot unify arbitrarily
13182 complex expressions, so we eliminate the MINUS_EXPRs
13183 here. */
13184 parm_max = TYPE_MAX_VALUE (TYPE_DOMAIN (parm));
13185 parm_cst = TREE_CODE (parm_max) == INTEGER_CST;
13186 if (!parm_cst)
8baddbf1 13187 {
6ee3ffe8 13188 gcc_assert (TREE_CODE (parm_max) == MINUS_EXPR);
8baddbf1
MM
13189 parm_max = TREE_OPERAND (parm_max, 0);
13190 }
6ee3ffe8
MM
13191 arg_max = TYPE_MAX_VALUE (TYPE_DOMAIN (arg));
13192 arg_cst = TREE_CODE (arg_max) == INTEGER_CST;
13193 if (!arg_cst)
13194 {
13195 /* The ARG_MAX may not be a simple MINUS_EXPR, if we are
13196 trying to unify the type of a variable with the type
13197 of a template parameter. For example:
13198
13199 template <unsigned int N>
13200 void f (char (&) [N]);
13201 int g();
13202 void h(int i) {
13203 char a[g(i)];
13204 f(a);
13205 }
13206
13207 Here, the type of the ARG will be "int [g(i)]", and
13208 may be a SAVE_EXPR, etc. */
13209 if (TREE_CODE (arg_max) != MINUS_EXPR)
13210 return 1;
13211 arg_max = TREE_OPERAND (arg_max, 0);
13212 }
13213
13214 /* If only one of the bounds used a MINUS_EXPR, compensate
13215 by adding one to the other bound. */
13216 if (parm_cst && !arg_cst)
13217 parm_max = fold_build2 (PLUS_EXPR,
13218 integer_type_node,
13219 parm_max,
13220 integer_one_node);
13221 else if (arg_cst && !parm_cst)
13222 arg_max = fold_build2 (PLUS_EXPR,
13223 integer_type_node,
13224 arg_max,
13225 integer_one_node);
8baddbf1
MM
13226
13227 if (unify (tparms, targs, parm_max, arg_max, UNIFY_ALLOW_INTEGER))
13228 return 1;
13229 }
830bfa74 13230 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
712467a4 13231 strict & UNIFY_ALLOW_MORE_CV_QUAL);
8d08fdba
MS
13232
13233 case REAL_TYPE:
37c46b43 13234 case COMPLEX_TYPE:
c00996a3 13235 case VECTOR_TYPE:
8d08fdba 13236 case INTEGER_TYPE:
42976354 13237 case BOOLEAN_TYPE:
3590f0a6 13238 case ENUMERAL_TYPE:
5ad5a526 13239 case VOID_TYPE:
f376e137
MS
13240 if (TREE_CODE (arg) != TREE_CODE (parm))
13241 return 1;
c8094d83 13242
9edc3913 13243 /* We have already checked cv-qualification at the top of the
514a1f18 13244 function. */
8baddbf1 13245 if (!same_type_ignoring_top_level_qualifiers_p (arg, parm))
ca79f85d
JM
13246 return 1;
13247
8d08fdba
MS
13248 /* As far as unification is concerned, this wins. Later checks
13249 will invalidate it if necessary. */
13250 return 0;
13251
13252 /* Types INTEGER_CST and MINUS_EXPR can come from array bounds. */
bd6dd845 13253 /* Type INTEGER_CST can come from ordinary constant template args. */
8d08fdba 13254 case INTEGER_CST:
bd6dd845
MS
13255 while (TREE_CODE (arg) == NOP_EXPR)
13256 arg = TREE_OPERAND (arg, 0);
13257
8d08fdba
MS
13258 if (TREE_CODE (arg) != INTEGER_CST)
13259 return 1;
13260 return !tree_int_cst_equal (parm, arg);
13261
8d08fdba
MS
13262 case TREE_VEC:
13263 {
13264 int i;
13265 if (TREE_CODE (arg) != TREE_VEC)
13266 return 1;
13267 if (TREE_VEC_LENGTH (parm) != TREE_VEC_LENGTH (arg))
13268 return 1;
0dc09a61 13269 for (i = 0; i < TREE_VEC_LENGTH (parm); ++i)
830bfa74 13270 if (unify (tparms, targs,
8d08fdba 13271 TREE_VEC_ELT (parm, i), TREE_VEC_ELT (arg, i),
4393e105 13272 UNIFY_ALLOW_NONE))
8d08fdba
MS
13273 return 1;
13274 return 0;
13275 }
13276
8d08fdba 13277 case RECORD_TYPE:
f181d4ae 13278 case UNION_TYPE:
f181d4ae 13279 if (TREE_CODE (arg) != TREE_CODE (parm))
a4443a08 13280 return 1;
c8094d83 13281
a7a64a77
MM
13282 if (TYPE_PTRMEMFUNC_P (parm))
13283 {
13284 if (!TYPE_PTRMEMFUNC_P (arg))
13285 return 1;
13286
c8094d83 13287 return unify (tparms, targs,
a7a64a77
MM
13288 TYPE_PTRMEMFUNC_FN_TYPE (parm),
13289 TYPE_PTRMEMFUNC_FN_TYPE (arg),
13290 strict);
13291 }
13292
5db698f6 13293 if (CLASSTYPE_TEMPLATE_INFO (parm))
5566b478 13294 {
6467930b 13295 tree t = NULL_TREE;
4393e105 13296
028d1f20 13297 if (strict_in & UNIFY_ALLOW_DERIVED)
4393e105
MM
13298 {
13299 /* First, we try to unify the PARM and ARG directly. */
13300 t = try_class_unification (tparms, targs,
13301 parm, arg);
13302
13303 if (!t)
13304 {
13305 /* Fallback to the special case allowed in
13306 [temp.deduct.call]:
c8094d83 13307
4393e105
MM
13308 If P is a class, and P has the form
13309 template-id, then A can be a derived class of
13310 the deduced A. Likewise, if P is a pointer to
13311 a class of the form template-id, A can be a
13312 pointer to a derived class pointed to by the
13313 deduced A. */
8d83768f 13314 t = get_template_base (tparms, targs, parm, arg);
4393e105 13315
8d83768f 13316 if (!t)
4393e105
MM
13317 return 1;
13318 }
13319 }
c8094d83
MS
13320 else if (CLASSTYPE_TEMPLATE_INFO (arg)
13321 && (CLASSTYPE_TI_TEMPLATE (parm)
9fbf56f7 13322 == CLASSTYPE_TI_TEMPLATE (arg)))
6df47b06
MM
13323 /* Perhaps PARM is something like S<U> and ARG is S<int>.
13324 Then, we should unify `int' and `U'. */
6467930b 13325 t = arg;
4393e105 13326 else
dc957d14 13327 /* There's no chance of unification succeeding. */
5566b478 13328 return 1;
6467930b 13329
830bfa74 13330 return unify (tparms, targs, CLASSTYPE_TI_ARGS (parm),
4393e105 13331 CLASSTYPE_TI_ARGS (t), UNIFY_ALLOW_NONE);
5566b478 13332 }
9edc3913 13333 else if (!same_type_ignoring_top_level_qualifiers_p (parm, arg))
5566b478 13334 return 1;
a4443a08 13335 return 0;
8d08fdba
MS
13336
13337 case METHOD_TYPE:
8d08fdba 13338 case FUNCTION_TYPE:
830bfa74 13339 if (TREE_CODE (arg) != TREE_CODE (parm))
8d08fdba 13340 return 1;
830bfa74 13341
38d18b1a 13342 /* CV qualifications for methods can never be deduced, they must
3db45ab5
MS
13343 match exactly. We need to check them explicitly here,
13344 because type_unification_real treats them as any other
13345 cvqualified parameter. */
38d18b1a
NS
13346 if (TREE_CODE (parm) == METHOD_TYPE
13347 && (!check_cv_quals_for_unify
13348 (UNIFY_ALLOW_NONE,
13349 TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (arg))),
13350 TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (parm))))))
13351 return 1;
13352
830bfa74 13353 if (unify (tparms, targs, TREE_TYPE (parm),
4393e105 13354 TREE_TYPE (arg), UNIFY_ALLOW_NONE))
28cbf42c 13355 return 1;
386b8a85 13356 return type_unification_real (tparms, targs, TYPE_ARG_TYPES (parm),
30f86ec3
FJ
13357 TYPE_ARG_TYPES (arg), 1, DEDUCE_EXACT,
13358 LOOKUP_NORMAL);
a4443a08
MS
13359
13360 case OFFSET_TYPE:
9804209d 13361 /* Unify a pointer to member with a pointer to member function, which
0cbd7506 13362 deduces the type of the member as a function type. */
9804209d 13363 if (TYPE_PTRMEMFUNC_P (arg))
0cbd7506
MS
13364 {
13365 tree method_type;
13366 tree fntype;
13367 cp_cv_quals cv_quals;
13368
13369 /* Check top-level cv qualifiers */
13370 if (!check_cv_quals_for_unify (UNIFY_ALLOW_NONE, arg, parm))
13371 return 1;
13372
13373 if (unify (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
13374 TYPE_PTRMEMFUNC_OBJECT_TYPE (arg), UNIFY_ALLOW_NONE))
13375 return 1;
13376
13377 /* Determine the type of the function we are unifying against. */
13378 method_type = TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (arg));
13379 fntype =
13380 build_function_type (TREE_TYPE (method_type),
13381 TREE_CHAIN (TYPE_ARG_TYPES (method_type)));
13382
13383 /* Extract the cv-qualifiers of the member function from the
13384 implicit object parameter and place them on the function
13385 type to be restored later. */
13386 cv_quals =
13387 cp_type_quals(TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (method_type))));
13388 fntype = build_qualified_type (fntype, cv_quals);
13389 return unify (tparms, targs, TREE_TYPE (parm), fntype, strict);
13390 }
9804209d 13391
a4443a08
MS
13392 if (TREE_CODE (arg) != OFFSET_TYPE)
13393 return 1;
830bfa74 13394 if (unify (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
4393e105 13395 TYPE_OFFSET_BASETYPE (arg), UNIFY_ALLOW_NONE))
a4443a08 13396 return 1;
830bfa74 13397 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
4393e105 13398 strict);
a4443a08 13399
f62dbf03 13400 case CONST_DECL:
a723baf1
MM
13401 if (DECL_TEMPLATE_PARM_P (parm))
13402 return unify (tparms, targs, DECL_INITIAL (parm), arg, strict);
c8094d83 13403 if (arg != integral_constant_value (parm))
f62dbf03
JM
13404 return 1;
13405 return 0;
13406
28e8f3a0 13407 case FIELD_DECL:
027905b4
KL
13408 case TEMPLATE_DECL:
13409 /* Matched cases are handled by the ARG == PARM test above. */
13410 return 1;
13411
5d80a306
DG
13412 case TYPE_ARGUMENT_PACK:
13413 case NONTYPE_ARGUMENT_PACK:
13414 {
13415 tree packed_parms = ARGUMENT_PACK_ARGS (parm);
13416 tree packed_args = ARGUMENT_PACK_ARGS (arg);
13417 int i, len = TREE_VEC_LENGTH (packed_parms);
13418 int argslen = TREE_VEC_LENGTH (packed_args);
13419 int parm_variadic_p = 0;
13420
db60ff18
DG
13421 for (i = 0; i < len; ++i)
13422 {
13423 if (PACK_EXPANSION_P (TREE_VEC_ELT (packed_parms, i)))
13424 {
13425 if (i == len - 1)
13426 /* We can unify against something with a trailing
13427 parameter pack. */
13428 parm_variadic_p = 1;
13429 else
13430 /* Since there is something following the pack
13431 expansion, we cannot unify this template argument
13432 list. */
13433 return 0;
13434 }
13435 }
13436
5d80a306
DG
13437
13438 /* If we don't have enough arguments to satisfy the parameters
13439 (not counting the pack expression at the end), or we have
13440 too many arguments for a parameter list that doesn't end in
13441 a pack expression, we can't unify. */
13442 if (argslen < (len - parm_variadic_p)
13443 || (argslen > len && !parm_variadic_p))
13444 return 1;
13445
13446 /* Unify all of the parameters that precede the (optional)
13447 pack expression. */
13448 for (i = 0; i < len - parm_variadic_p; ++i)
13449 {
13450 if (unify (tparms, targs, TREE_VEC_ELT (packed_parms, i),
13451 TREE_VEC_ELT (packed_args, i), strict))
13452 return 1;
13453 }
13454
13455 if (parm_variadic_p)
13456 return unify_pack_expansion (tparms, targs,
13457 packed_parms, packed_args,
13458 strict, /*call_args_p=*/false,
13459 /*subr=*/false);
13460 return 0;
13461 }
13462
13463 break;
13464
3ad6a8e1
DG
13465 case TYPEOF_TYPE:
13466 case DECLTYPE_TYPE:
13467 /* Cannot deduce anything from TYPEOF_TYPE or DECLTYPE_TYPE
13468 nodes. */
13469 return 0;
13470
1ad8aeeb
DG
13471 case ERROR_MARK:
13472 /* Unification fails if we hit an error node. */
13473 return 1;
13474
8d08fdba 13475 default:
6615c446 13476 gcc_assert (EXPR_P (parm));
c8094d83 13477
98ddffc1 13478 /* We must be looking at an expression. This can happen with
c8094d83
MS
13479 something like:
13480
98ddffc1
NS
13481 template <int I>
13482 void foo(S<I>, S<I + 2>);
050367a3 13483
98ddffc1 13484 This is a "nondeduced context":
050367a3 13485
98ddffc1 13486 [deduct.type]
c8094d83 13487
98ddffc1 13488 The nondeduced contexts are:
050367a3 13489
98ddffc1
NS
13490 --A type that is a template-id in which one or more of
13491 the template-arguments is an expression that references
c8094d83 13492 a template-parameter.
050367a3 13493
98ddffc1
NS
13494 In these cases, we assume deduction succeeded, but don't
13495 actually infer any unifications. */
74601d7c 13496
98ddffc1
NS
13497 if (!uses_template_parms (parm)
13498 && !template_args_equal (parm, arg))
13499 return 1;
13500 else
13501 return 0;
8d08fdba
MS
13502 }
13503}
8d08fdba 13504\f
4684cd27
MM
13505/* Note that DECL can be defined in this translation unit, if
13506 required. */
13507
13508static void
13509mark_definable (tree decl)
13510{
13511 tree clone;
13512 DECL_NOT_REALLY_EXTERN (decl) = 1;
13513 FOR_EACH_CLONE (clone, decl)
13514 DECL_NOT_REALLY_EXTERN (clone) = 1;
13515}
13516
03d0f4af 13517/* Called if RESULT is explicitly instantiated, or is a member of an
4684cd27 13518 explicitly instantiated class. */
03d0f4af 13519
faae18ab 13520void
3a978d72 13521mark_decl_instantiated (tree result, int extern_p)
faae18ab 13522{
415c974c 13523 SET_DECL_EXPLICIT_INSTANTIATION (result);
3ae18eaf 13524
1f6f0cb6
MM
13525 /* If this entity has already been written out, it's too late to
13526 make any modifications. */
13527 if (TREE_ASM_WRITTEN (result))
13528 return;
13529
13530 if (TREE_CODE (result) != FUNCTION_DECL)
13531 /* The TREE_PUBLIC flag for function declarations will have been
13532 set correctly by tsubst. */
13533 TREE_PUBLIC (result) = 1;
13534
346eeb15
JM
13535 /* This might have been set by an earlier implicit instantiation. */
13536 DECL_COMDAT (result) = 0;
13537
4684cd27
MM
13538 if (extern_p)
13539 DECL_NOT_REALLY_EXTERN (result) = 0;
13540 else
faae18ab 13541 {
4684cd27 13542 mark_definable (result);
1a408d07
JM
13543 /* Always make artificials weak. */
13544 if (DECL_ARTIFICIAL (result) && flag_weak)
13545 comdat_linkage (result);
a7d87521
JM
13546 /* For WIN32 we also want to put explicit instantiations in
13547 linkonce sections. */
1a408d07 13548 else if (TREE_PUBLIC (result))
b385c841 13549 maybe_make_one_only (result);
faae18ab 13550 }
c8094d83 13551
4684cd27
MM
13552 /* If EXTERN_P, then this function will not be emitted -- unless
13553 followed by an explicit instantiation, at which point its linkage
13554 will be adjusted. If !EXTERN_P, then this function will be
13555 emitted here. In neither circumstance do we want
13556 import_export_decl to adjust the linkage. */
c8094d83 13557 DECL_INTERFACE_KNOWN (result) = 1;
faae18ab
MS
13558}
13559
e5214479 13560/* Given two function templates PAT1 and PAT2, return:
6467930b
MS
13561
13562 1 if PAT1 is more specialized than PAT2 as described in [temp.func.order].
13563 -1 if PAT2 is more specialized than PAT1.
e5214479
JM
13564 0 if neither is more specialized.
13565
dda04398
NS
13566 LEN indicates the number of parameters we should consider
13567 (defaulted parameters should not be considered).
13568
13569 The 1998 std underspecified function template partial ordering, and
13570 DR214 addresses the issue. We take pairs of arguments, one from
c51940a2 13571 each of the templates, and deduce them against each other. One of
dda04398
NS
13572 the templates will be more specialized if all the *other*
13573 template's arguments deduce against its arguments and at least one
13574 of its arguments *does* *not* deduce against the other template's
13575 corresponding argument. Deduction is done as for class templates.
13576 The arguments used in deduction have reference and top level cv
13577 qualifiers removed. Iff both arguments were originally reference
13578 types *and* deduction succeeds in both directions, the template
13579 with the more cv-qualified argument wins for that pairing (if
13580 neither is more cv-qualified, they both are equal). Unlike regular
13581 deduction, after all the arguments have been deduced in this way,
13582 we do *not* verify the deduced template argument values can be
13583 substituted into non-deduced contexts, nor do we have to verify
13584 that all template arguments have been deduced. */
c8094d83 13585
6467930b 13586int
dda04398
NS
13587more_specialized_fn (tree pat1, tree pat2, int len)
13588{
13589 tree decl1 = DECL_TEMPLATE_RESULT (pat1);
13590 tree decl2 = DECL_TEMPLATE_RESULT (pat2);
13591 tree targs1 = make_tree_vec (DECL_NTPARMS (pat1));
13592 tree targs2 = make_tree_vec (DECL_NTPARMS (pat2));
13593 tree tparms1 = DECL_INNERMOST_TEMPLATE_PARMS (pat1);
13594 tree tparms2 = DECL_INNERMOST_TEMPLATE_PARMS (pat2);
13595 tree args1 = TYPE_ARG_TYPES (TREE_TYPE (decl1));
13596 tree args2 = TYPE_ARG_TYPES (TREE_TYPE (decl2));
13597 int better1 = 0;
13598 int better2 = 0;
3db45ab5 13599
48884537
NS
13600 /* Remove the this parameter from non-static member functions. If
13601 one is a non-static member function and the other is not a static
13602 member function, remove the first parameter from that function
13603 also. This situation occurs for operator functions where we
13604 locate both a member function (with this pointer) and non-member
13605 operator (with explicit first operand). */
dda04398 13606 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl1))
48884537
NS
13607 {
13608 len--; /* LEN is the number of significant arguments for DECL1 */
13609 args1 = TREE_CHAIN (args1);
13610 if (!DECL_STATIC_FUNCTION_P (decl2))
13611 args2 = TREE_CHAIN (args2);
13612 }
13613 else if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl2))
13614 {
13615 args2 = TREE_CHAIN (args2);
13616 if (!DECL_STATIC_FUNCTION_P (decl1))
13617 {
13618 len--;
13619 args1 = TREE_CHAIN (args1);
13620 }
13621 }
3db45ab5 13622
ee307009
NS
13623 /* If only one is a conversion operator, they are unordered. */
13624 if (DECL_CONV_FN_P (decl1) != DECL_CONV_FN_P (decl2))
13625 return 0;
c8094d83 13626
dda04398
NS
13627 /* Consider the return type for a conversion function */
13628 if (DECL_CONV_FN_P (decl1))
13629 {
dda04398
NS
13630 args1 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl1)), args1);
13631 args2 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl2)), args2);
13632 len++;
13633 }
c8094d83 13634
dda04398 13635 processing_template_decl++;
c8094d83 13636
dda04398
NS
13637 while (len--)
13638 {
13639 tree arg1 = TREE_VALUE (args1);
13640 tree arg2 = TREE_VALUE (args2);
13641 int deduce1, deduce2;
13642 int quals1 = -1;
13643 int quals2 = -1;
6467930b 13644
5d80a306
DG
13645 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
13646 && TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
13647 {
13648 /* When both arguments are pack expansions, we need only
13649 unify the patterns themselves. */
13650 arg1 = PACK_EXPANSION_PATTERN (arg1);
13651 arg2 = PACK_EXPANSION_PATTERN (arg2);
13652
13653 /* This is the last comparison we need to do. */
13654 len = 0;
13655 }
13656
dda04398
NS
13657 if (TREE_CODE (arg1) == REFERENCE_TYPE)
13658 {
13659 arg1 = TREE_TYPE (arg1);
13660 quals1 = cp_type_quals (arg1);
13661 }
c8094d83 13662
dda04398
NS
13663 if (TREE_CODE (arg2) == REFERENCE_TYPE)
13664 {
13665 arg2 = TREE_TYPE (arg2);
13666 quals2 = cp_type_quals (arg2);
13667 }
6467930b 13668
dda04398
NS
13669 if ((quals1 < 0) != (quals2 < 0))
13670 {
13671 /* Only of the args is a reference, see if we should apply
13672 array/function pointer decay to it. This is not part of
13673 DR214, but is, IMHO, consistent with the deduction rules
13674 for the function call itself, and with our earlier
13675 implementation of the underspecified partial ordering
13676 rules. (nathan). */
13677 if (quals1 >= 0)
13678 {
13679 switch (TREE_CODE (arg1))
13680 {
13681 case ARRAY_TYPE:
13682 arg1 = TREE_TYPE (arg1);
13683 /* FALLTHROUGH. */
13684 case FUNCTION_TYPE:
13685 arg1 = build_pointer_type (arg1);
13686 break;
c8094d83 13687
dda04398
NS
13688 default:
13689 break;
13690 }
13691 }
13692 else
13693 {
13694 switch (TREE_CODE (arg2))
13695 {
13696 case ARRAY_TYPE:
13697 arg2 = TREE_TYPE (arg2);
13698 /* FALLTHROUGH. */
13699 case FUNCTION_TYPE:
13700 arg2 = build_pointer_type (arg2);
13701 break;
c8094d83 13702
dda04398
NS
13703 default:
13704 break;
13705 }
13706 }
13707 }
c8094d83 13708
dda04398
NS
13709 arg1 = TYPE_MAIN_VARIANT (arg1);
13710 arg2 = TYPE_MAIN_VARIANT (arg2);
c8094d83 13711
5d80a306
DG
13712 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION)
13713 {
b1d7b1c0 13714 int i, len2 = list_length (args2);
5d80a306
DG
13715 tree parmvec = make_tree_vec (1);
13716 tree argvec = make_tree_vec (len2);
13717 tree ta = args2;
13718
13719 /* Setup the parameter vector, which contains only ARG1. */
13720 TREE_VEC_ELT (parmvec, 0) = arg1;
13721
13722 /* Setup the argument vector, which contains the remaining
13723 arguments. */
13724 for (i = 0; i < len2; i++, ta = TREE_CHAIN (ta))
13725 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
13726
13727 deduce1 = !unify_pack_expansion (tparms1, targs1, parmvec,
13728 argvec, UNIFY_ALLOW_NONE,
13729 /*call_args_p=*/false,
13730 /*subr=*/0);
13731
13732 /* We cannot deduce in the other direction, because ARG1 is
13733 a pack expansion but ARG2 is not. */
13734 deduce2 = 0;
13735 }
13736 else if (TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
13737 {
b1d7b1c0 13738 int i, len1 = list_length (args1);
5d80a306
DG
13739 tree parmvec = make_tree_vec (1);
13740 tree argvec = make_tree_vec (len1);
13741 tree ta = args1;
13742
13743 /* Setup the parameter vector, which contains only ARG1. */
13744 TREE_VEC_ELT (parmvec, 0) = arg2;
13745
13746 /* Setup the argument vector, which contains the remaining
13747 arguments. */
13748 for (i = 0; i < len1; i++, ta = TREE_CHAIN (ta))
13749 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
13750
13751 deduce2 = !unify_pack_expansion (tparms2, targs2, parmvec,
13752 argvec, UNIFY_ALLOW_NONE,
13753 /*call_args_p=*/false,
13754 /*subr=*/0);
13755
13756 /* We cannot deduce in the other direction, because ARG2 is
13757 a pack expansion but ARG1 is not.*/
13758 deduce1 = 0;
13759 }
13760
13761 else
13762 {
13763 /* The normal case, where neither argument is a pack
13764 expansion. */
13765 deduce1 = !unify (tparms1, targs1, arg1, arg2, UNIFY_ALLOW_NONE);
13766 deduce2 = !unify (tparms2, targs2, arg2, arg1, UNIFY_ALLOW_NONE);
13767 }
dda04398
NS
13768
13769 if (!deduce1)
13770 better2 = -1;
13771 if (!deduce2)
13772 better1 = -1;
13773 if (better1 < 0 && better2 < 0)
13774 /* We've failed to deduce something in either direction.
13775 These must be unordered. */
13776 break;
c8094d83 13777
dda04398
NS
13778 if (deduce1 && deduce2 && quals1 >= 0 && quals2 >= 0)
13779 {
13780 /* Deduces in both directions, see if quals can
13781 disambiguate. Pretend the worse one failed to deduce. */
13782 if ((quals1 & quals2) == quals2)
13783 deduce1 = 0;
13784 if ((quals1 & quals2) == quals1)
13785 deduce2 = 0;
13786 }
13787 if (deduce1 && !deduce2 && !better2)
13788 better2 = 1;
13789 if (deduce2 && !deduce1 && !better1)
13790 better1 = 1;
c8094d83 13791
5d80a306
DG
13792 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
13793 || TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
13794 /* We have already processed all of the arguments in our
13795 handing of the pack expansion type. */
13796 len = 0;
13797
dda04398
NS
13798 args1 = TREE_CHAIN (args1);
13799 args2 = TREE_CHAIN (args2);
63d34078
JJ
13800
13801 /* Stop when an ellipsis is seen. */
13802 if (args1 == NULL_TREE || args2 == NULL_TREE)
13803 break;
dda04398
NS
13804 }
13805
13806 processing_template_decl--;
13807
5d80a306
DG
13808 /* All things being equal, if the next argument is a pack expansion
13809 for one function but not for the other, prefer the
13810 non-variadic function. */
13811 if ((better1 > 0) - (better2 > 0) == 0
13812 && args1 && TREE_VALUE (args1)
13813 && args2 && TREE_VALUE (args2))
13814 {
13815 if (TREE_CODE (TREE_VALUE (args1)) == TYPE_PACK_EXPANSION)
13816 return TREE_CODE (TREE_VALUE (args2)) == TYPE_PACK_EXPANSION ? 0 : -1;
13817 else if (TREE_CODE (TREE_VALUE (args2)) == TYPE_PACK_EXPANSION)
13818 return 1;
13819 }
13820
dda04398 13821 return (better1 > 0) - (better2 > 0);
73aad9b9 13822}
6467930b 13823
916b63c3 13824/* Determine which of two partial specializations is more specialized.
6467930b 13825
916b63c3
MM
13826 PAT1 is a TREE_LIST whose TREE_TYPE is the _TYPE node corresponding
13827 to the first partial specialization. The TREE_VALUE is the
13828 innermost set of template parameters for the partial
13829 specialization. PAT2 is similar, but for the second template.
13830
13831 Return 1 if the first partial specialization is more specialized;
13832 -1 if the second is more specialized; 0 if neither is more
13833 specialized.
55ece1b3 13834
916b63c3 13835 See [temp.class.order] for information about determining which of
3db45ab5 13836 two templates is more specialized. */
c8094d83 13837
b5791fdc 13838static int
916b63c3 13839more_specialized_class (tree pat1, tree pat2)
73aad9b9
JM
13840{
13841 tree targs;
916b63c3 13842 tree tmpl1, tmpl2;
73aad9b9 13843 int winner = 0;
5d80a306 13844 bool any_deductions = false;
73aad9b9 13845
916b63c3
MM
13846 tmpl1 = TREE_TYPE (pat1);
13847 tmpl2 = TREE_TYPE (pat2);
13848
c8094d83 13849 /* Just like what happens for functions, if we are ordering between
baa49730
GB
13850 different class template specializations, we may encounter dependent
13851 types in the arguments, and we need our dependency check functions
13852 to behave correctly. */
13853 ++processing_template_decl;
3db45ab5 13854 targs = get_class_bindings (TREE_VALUE (pat1),
916b63c3
MM
13855 CLASSTYPE_TI_ARGS (tmpl1),
13856 CLASSTYPE_TI_ARGS (tmpl2));
73aad9b9 13857 if (targs)
5d80a306
DG
13858 {
13859 --winner;
13860 any_deductions = true;
13861 }
73aad9b9 13862
3db45ab5 13863 targs = get_class_bindings (TREE_VALUE (pat2),
916b63c3
MM
13864 CLASSTYPE_TI_ARGS (tmpl2),
13865 CLASSTYPE_TI_ARGS (tmpl1));
73aad9b9 13866 if (targs)
5d80a306
DG
13867 {
13868 ++winner;
13869 any_deductions = true;
13870 }
baa49730 13871 --processing_template_decl;
6467930b 13872
5d80a306
DG
13873 /* In the case of a tie where at least one of the class templates
13874 has a parameter pack at the end, the template with the most
13875 non-packed parameters wins. */
13876 if (winner == 0
13877 && any_deductions
13878 && (template_args_variadic_p (TREE_PURPOSE (pat1))
13879 || template_args_variadic_p (TREE_PURPOSE (pat2))))
13880 {
13881 tree args1 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat1));
13882 tree args2 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat2));
13883 int len1 = TREE_VEC_LENGTH (args1);
13884 int len2 = TREE_VEC_LENGTH (args2);
13885
13886 /* We don't count the pack expansion at the end. */
13887 if (template_args_variadic_p (TREE_PURPOSE (pat1)))
13888 --len1;
13889 if (template_args_variadic_p (TREE_PURPOSE (pat2)))
13890 --len2;
13891
13892 if (len1 > len2)
13893 return 1;
13894 else if (len1 < len2)
13895 return -1;
13896 }
13897
6467930b
MS
13898 return winner;
13899}
73aad9b9
JM
13900
13901/* Return the template arguments that will produce the function signature
e1467ff2 13902 DECL from the function template FN, with the explicit template
a34d3336 13903 arguments EXPLICIT_ARGS. If CHECK_RETTYPE is true, the return type must
4393e105 13904 also match. Return NULL_TREE if no satisfactory arguments could be
a34d3336 13905 found. */
c8094d83 13906
76b9a14d 13907static tree
a34d3336 13908get_bindings (tree fn, tree decl, tree explicit_args, bool check_rettype)
73aad9b9 13909{
98c1c668 13910 int ntparms = DECL_NTPARMS (fn);
f31c0a32 13911 tree targs = make_tree_vec (ntparms);
4393e105 13912 tree decl_type;
03017874 13913 tree decl_arg_types;
98c1c668 13914
4393e105
MM
13915 /* Substitute the explicit template arguments into the type of DECL.
13916 The call to fn_type_unification will handle substitution into the
13917 FN. */
13918 decl_type = TREE_TYPE (decl);
13919 if (explicit_args && uses_template_parms (decl_type))
13920 {
13921 tree tmpl;
13922 tree converted_args;
13923
13924 if (DECL_TEMPLATE_INFO (decl))
13925 tmpl = DECL_TI_TEMPLATE (decl);
13926 else
0e339752 13927 /* We can get here for some invalid specializations. */
4393e105
MM
13928 return NULL_TREE;
13929
13930 converted_args
e7e93965
MM
13931 = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
13932 explicit_args, NULL_TREE,
3db45ab5 13933 tf_none,
e7e93965
MM
13934 /*require_all_args=*/false,
13935 /*use_default_args=*/false);
4393e105
MM
13936 if (converted_args == error_mark_node)
13937 return NULL_TREE;
c8094d83
MS
13938
13939 decl_type = tsubst (decl_type, converted_args, tf_none, NULL_TREE);
4393e105
MM
13940 if (decl_type == error_mark_node)
13941 return NULL_TREE;
13942 }
13943
e5214479 13944 /* Never do unification on the 'this' parameter. */
ba139ba8
MM
13945 decl_arg_types = skip_artificial_parms_for (decl,
13946 TYPE_ARG_TYPES (decl_type));
d7684f2d 13947
c8094d83 13948 if (fn_type_unification (fn, explicit_args, targs,
03017874 13949 decl_arg_types,
8d3631f8 13950 (check_rettype || DECL_CONV_FN_P (fn)
0cbd7506 13951 ? TREE_TYPE (decl_type) : NULL_TREE),
30f86ec3 13952 DEDUCE_EXACT, LOOKUP_NORMAL))
76b9a14d
JM
13953 return NULL_TREE;
13954
76b9a14d
JM
13955 return targs;
13956}
13957
36a117a5
MM
13958/* Return the innermost template arguments that, when applied to a
13959 template specialization whose innermost template parameters are
9471d3e2 13960 TPARMS, and whose specialization arguments are PARMS, yield the
c8094d83 13961 ARGS.
36a117a5
MM
13962
13963 For example, suppose we have:
13964
13965 template <class T, class U> struct S {};
13966 template <class T> struct S<T*, int> {};
13967
13968 Then, suppose we want to get `S<double*, int>'. The TPARMS will be
916b63c3 13969 {T}, the SPEC_ARGS will be {T*, int} and the ARGS will be {double*,
36a117a5
MM
13970 int}. The resulting vector will be {double}, indicating that `T'
13971 is bound to `double'. */
13972
bd6dd845 13973static tree
916b63c3 13974get_class_bindings (tree tparms, tree spec_args, tree args)
73aad9b9 13975{
3b3ba9f0 13976 int i, ntparms = TREE_VEC_LENGTH (tparms);
916b63c3
MM
13977 tree deduced_args;
13978 tree innermost_deduced_args;
73aad9b9 13979
916b63c3
MM
13980 innermost_deduced_args = make_tree_vec (ntparms);
13981 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
13982 {
13983 deduced_args = copy_node (args);
13984 SET_TMPL_ARGS_LEVEL (deduced_args,
13985 TMPL_ARGS_DEPTH (deduced_args),
13986 innermost_deduced_args);
13987 }
13988 else
3db45ab5 13989 deduced_args = innermost_deduced_args;
916b63c3 13990
3db45ab5
MS
13991 if (unify (tparms, deduced_args,
13992 INNERMOST_TEMPLATE_ARGS (spec_args),
13993 INNERMOST_TEMPLATE_ARGS (args),
0cbd7506 13994 UNIFY_ALLOW_NONE))
fcfb9f96 13995 return NULL_TREE;
73aad9b9
JM
13996
13997 for (i = 0; i < ntparms; ++i)
916b63c3 13998 if (! TREE_VEC_ELT (innermost_deduced_args, i))
73aad9b9
JM
13999 return NULL_TREE;
14000
916b63c3
MM
14001 /* Verify that nondeduced template arguments agree with the type
14002 obtained from argument deduction.
3db45ab5 14003
916b63c3
MM
14004 For example:
14005
14006 struct A { typedef int X; };
14007 template <class T, class U> struct C {};
14008 template <class T> struct C<T, typename T::X> {};
14009
14010 Then with the instantiation `C<A, int>', we can deduce that
14011 `T' is `A' but unify () does not check whether `typename T::X'
14012 is `int'. */
14013 spec_args = tsubst (spec_args, deduced_args, tf_none, NULL_TREE);
14014 if (spec_args == error_mark_node
14015 /* We only need to check the innermost arguments; the other
14016 arguments will always agree. */
14017 || !comp_template_args (INNERMOST_TEMPLATE_ARGS (spec_args),
14018 INNERMOST_TEMPLATE_ARGS (args)))
74601d7c
KL
14019 return NULL_TREE;
14020
4cf36211
DG
14021 /* Now that we have bindings for all of the template arguments,
14022 ensure that the arguments deduced for the template template
14023 parameters have compatible template parameter lists. See the use
14024 of template_template_parm_bindings_ok_p in fn_type_unification
14025 for more information. */
14026 if (!template_template_parm_bindings_ok_p (tparms, deduced_args))
14027 return NULL_TREE;
14028
916b63c3 14029 return deduced_args;
73aad9b9
JM
14030}
14031
7ca383e6
MM
14032/* TEMPLATES is a TREE_LIST. Each TREE_VALUE is a TEMPLATE_DECL.
14033 Return the TREE_LIST node with the most specialized template, if
14034 any. If there is no most specialized template, the error_mark_node
14035 is returned.
14036
14037 Note that this function does not look at, or modify, the
14038 TREE_PURPOSE or TREE_TYPE of any of the nodes. Since the node
14039 returned is one of the elements of INSTANTIATIONS, callers may
14040 store information in the TREE_PURPOSE or TREE_TYPE of the nodes,
14041 and retrieve it from the value returned. */
73aad9b9
JM
14042
14043tree
7ca383e6 14044most_specialized_instantiation (tree templates)
73aad9b9 14045{
104bf76a 14046 tree fn, champ;
73aad9b9 14047
dda04398 14048 ++processing_template_decl;
c8094d83 14049
7ca383e6
MM
14050 champ = templates;
14051 for (fn = TREE_CHAIN (templates); fn; fn = TREE_CHAIN (fn))
73aad9b9 14052 {
dda04398 14053 int fate = 0;
c8094d83 14054
a34d3336
NS
14055 if (get_bindings (TREE_VALUE (champ),
14056 DECL_TEMPLATE_RESULT (TREE_VALUE (fn)),
14057 NULL_TREE, /*check_ret=*/false))
dda04398
NS
14058 fate--;
14059
a34d3336
NS
14060 if (get_bindings (TREE_VALUE (fn),
14061 DECL_TEMPLATE_RESULT (TREE_VALUE (champ)),
14062 NULL_TREE, /*check_ret=*/false))
dda04398 14063 fate++;
c8094d83 14064
8ca4bf25
MM
14065 if (fate == -1)
14066 champ = fn;
14067 else if (!fate)
73aad9b9 14068 {
8ca4bf25
MM
14069 /* Equally specialized, move to next function. If there
14070 is no next function, nothing's most specialized. */
14071 fn = TREE_CHAIN (fn);
7ca383e6 14072 champ = fn;
8ca4bf25
MM
14073 if (!fn)
14074 break;
73aad9b9
JM
14075 }
14076 }
c8094d83 14077
dda04398
NS
14078 if (champ)
14079 /* Now verify that champ is better than everything earlier in the
14080 instantiation list. */
7ca383e6 14081 for (fn = templates; fn != champ; fn = TREE_CHAIN (fn))
a34d3336
NS
14082 if (get_bindings (TREE_VALUE (champ),
14083 DECL_TEMPLATE_RESULT (TREE_VALUE (fn)),
14084 NULL_TREE, /*check_ret=*/false)
14085 || !get_bindings (TREE_VALUE (fn),
14086 DECL_TEMPLATE_RESULT (TREE_VALUE (champ)),
14087 NULL_TREE, /*check_ret=*/false))
dda04398
NS
14088 {
14089 champ = NULL_TREE;
14090 break;
14091 }
c8094d83 14092
dda04398 14093 processing_template_decl--;
c8094d83 14094
dda04398
NS
14095 if (!champ)
14096 return error_mark_node;
73aad9b9 14097
7ca383e6 14098 return champ;
73aad9b9
JM
14099}
14100
36a117a5 14101/* If DECL is a specialization of some template, return the most
f9a7ae04
MM
14102 general such template. Otherwise, returns NULL_TREE.
14103
14104 For example, given:
36a117a5
MM
14105
14106 template <class T> struct S { template <class U> void f(U); };
14107
14108 if TMPL is `template <class U> void S<int>::f(U)' this will return
14109 the full template. This function will not trace past partial
14110 specializations, however. For example, given in addition:
14111
14112 template <class T> struct S<T*> { template <class U> void f(U); };
14113
14114 if TMPL is `template <class U> void S<int*>::f(U)' this will return
14115 `template <class T> template <class U> S<T*>::f(U)'. */
73aad9b9 14116
612c671a 14117tree
3a978d72 14118most_general_template (tree decl)
73aad9b9 14119{
f9a7ae04
MM
14120 /* If DECL is a FUNCTION_DECL, find the TEMPLATE_DECL of which it is
14121 an immediate specialization. */
14122 if (TREE_CODE (decl) == FUNCTION_DECL)
14123 {
14124 if (DECL_TEMPLATE_INFO (decl)) {
14125 decl = DECL_TI_TEMPLATE (decl);
14126
14127 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE for a
14128 template friend. */
14129 if (TREE_CODE (decl) != TEMPLATE_DECL)
14130 return NULL_TREE;
14131 } else
14132 return NULL_TREE;
14133 }
14134
14135 /* Look for more and more general templates. */
14136 while (DECL_TEMPLATE_INFO (decl))
14137 {
10b1d5e7
MM
14138 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE in some cases.
14139 (See cp-tree.h for details.) */
f9a7ae04
MM
14140 if (TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
14141 break;
14142
6e049fcd
KL
14143 if (CLASS_TYPE_P (TREE_TYPE (decl))
14144 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
14145 break;
14146
f9a7ae04
MM
14147 /* Stop if we run into an explicitly specialized class template. */
14148 if (!DECL_NAMESPACE_SCOPE_P (decl)
14149 && DECL_CONTEXT (decl)
14150 && CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (decl)))
14151 break;
14152
14153 decl = DECL_TI_TEMPLATE (decl);
14154 }
36a117a5
MM
14155
14156 return decl;
14157}
14158
916b63c3
MM
14159/* Return the most specialized of the class template partial
14160 specializations of TMPL which can produce TYPE, a specialization of
14161 TMPL. The value returned is actually a TREE_LIST; the TREE_TYPE is
14162 a _TYPE node corresponding to the partial specialization, while the
14163 TREE_PURPOSE is the set of template arguments that must be
14164 substituted into the TREE_TYPE in order to generate TYPE.
14165
14166 If the choice of partial specialization is ambiguous, a diagnostic
14167 is issued, and the error_mark_node is returned. If there are no
14168 partial specializations of TMPL matching TYPE, then NULL_TREE is
14169 returned. */
36a117a5 14170
e9659ab0 14171static tree
916b63c3 14172most_specialized_class (tree type, tree tmpl)
36a117a5
MM
14173{
14174 tree list = NULL_TREE;
14175 tree t;
14176 tree champ;
73aad9b9 14177 int fate;
916b63c3
MM
14178 bool ambiguous_p;
14179 tree args;
dc28490d 14180 tree outer_args = NULL_TREE;
73aad9b9 14181
36a117a5 14182 tmpl = most_general_template (tmpl);
916b63c3 14183 args = CLASSTYPE_TI_ARGS (type);
dc28490d
JM
14184
14185 /* For determining which partial specialization to use, only the
14186 innermost args are interesting. */
14187 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
14188 {
14189 outer_args = strip_innermost_template_args (args, 1);
14190 args = INNERMOST_TEMPLATE_ARGS (args);
14191 }
14192
36a117a5 14193 for (t = DECL_TEMPLATE_SPECIALIZATIONS (tmpl); t; t = TREE_CHAIN (t))
73aad9b9 14194 {
916b63c3
MM
14195 tree partial_spec_args;
14196 tree spec_args;
dc28490d 14197 tree parms = TREE_VALUE (t);
916b63c3
MM
14198
14199 partial_spec_args = CLASSTYPE_TI_ARGS (TREE_TYPE (t));
dc28490d
JM
14200 if (outer_args)
14201 {
14202 int i;
14203
fd452cef
JM
14204 ++processing_template_decl;
14205
dc28490d
JM
14206 /* Discard the outer levels of args, and then substitute in the
14207 template args from the enclosing class. */
14208 partial_spec_args = INNERMOST_TEMPLATE_ARGS (partial_spec_args);
14209 partial_spec_args = tsubst_template_args
14210 (partial_spec_args, outer_args, tf_none, NULL_TREE);
14211
14212 /* PARMS already refers to just the innermost parms, but the
14213 template parms in partial_spec_args had their levels lowered
14214 by tsubst, so we need to do the same for the parm list. We
14215 can't just tsubst the TREE_VEC itself, as tsubst wants to
14216 treat a TREE_VEC as an argument vector. */
14217 parms = copy_node (parms);
14218 for (i = TREE_VEC_LENGTH (parms) - 1; i >= 0; --i)
14219 TREE_VEC_ELT (parms, i) =
14220 tsubst (TREE_VEC_ELT (parms, i), outer_args, tf_none, NULL_TREE);
fd452cef
JM
14221
14222 --processing_template_decl;
dc28490d
JM
14223 }
14224 spec_args = get_class_bindings (parms,
3db45ab5 14225 partial_spec_args,
916b63c3 14226 args);
36a117a5 14227 if (spec_args)
73aad9b9 14228 {
dc28490d
JM
14229 if (outer_args)
14230 spec_args = add_to_template_args (outer_args, spec_args);
916b63c3 14231 list = tree_cons (spec_args, TREE_VALUE (t), list);
73aad9b9
JM
14232 TREE_TYPE (list) = TREE_TYPE (t);
14233 }
14234 }
14235
14236 if (! list)
14237 return NULL_TREE;
14238
916b63c3 14239 ambiguous_p = false;
73aad9b9
JM
14240 t = list;
14241 champ = t;
14242 t = TREE_CHAIN (t);
14243 for (; t; t = TREE_CHAIN (t))
14244 {
916b63c3 14245 fate = more_specialized_class (champ, t);
73aad9b9
JM
14246 if (fate == 1)
14247 ;
14248 else
14249 {
14250 if (fate == 0)
14251 {
14252 t = TREE_CHAIN (t);
14253 if (! t)
916b63c3
MM
14254 {
14255 ambiguous_p = true;
14256 break;
14257 }
73aad9b9
JM
14258 }
14259 champ = t;
14260 }
14261 }
14262
916b63c3
MM
14263 if (!ambiguous_p)
14264 for (t = list; t && t != champ; t = TREE_CHAIN (t))
14265 {
14266 fate = more_specialized_class (champ, t);
14267 if (fate != 1)
14268 {
14269 ambiguous_p = true;
14270 break;
14271 }
14272 }
14273
14274 if (ambiguous_p)
73aad9b9 14275 {
916b63c3
MM
14276 const char *str = "candidates are:";
14277 error ("ambiguous class template instantiation for %q#T", type);
14278 for (t = list; t; t = TREE_CHAIN (t))
14279 {
14280 error ("%s %+#T", str, TREE_TYPE (t));
14281 str = " ";
14282 }
14283 return error_mark_node;
73aad9b9
JM
14284 }
14285
14286 return champ;
14287}
14288
eb8845be 14289/* Explicitly instantiate DECL. */
e92cc029 14290
8d08fdba 14291void
eb8845be 14292do_decl_instantiation (tree decl, tree storage)
8d08fdba 14293{
8d08fdba 14294 tree result = NULL_TREE;
faae18ab 14295 int extern_p = 0;
e8abc66f 14296
ad47b891 14297 if (!decl || decl == error_mark_node)
dc957d14 14298 /* An error occurred, for which grokdeclarator has already issued
3fa56191
MM
14299 an appropriate message. */
14300 return;
14301 else if (! DECL_LANG_SPECIFIC (decl))
ec255269 14302 {
0f51ccfc 14303 error ("explicit instantiation of non-template %q#D", decl);
ec255269
MS
14304 return;
14305 }
03d0f4af 14306 else if (TREE_CODE (decl) == VAR_DECL)
6633d636 14307 {
03d0f4af
MM
14308 /* There is an asymmetry here in the way VAR_DECLs and
14309 FUNCTION_DECLs are handled by grokdeclarator. In the case of
14310 the latter, the DECL we get back will be marked as a
14311 template instantiation, and the appropriate
14312 DECL_TEMPLATE_INFO will be set up. This does not happen for
14313 VAR_DECLs so we do the lookup here. Probably, grokdeclarator
14314 should handle VAR_DECLs as it currently handles
14315 FUNCTION_DECLs. */
8259e4f5
PC
14316 if (!DECL_CLASS_SCOPE_P (decl))
14317 {
14318 error ("%qD is not a static data member of a class template", decl);
14319 return;
14320 }
86ac0575 14321 result = lookup_field (DECL_CONTEXT (decl), DECL_NAME (decl), 0, false);
e0860732 14322 if (!result || TREE_CODE (result) != VAR_DECL)
03d0f4af 14323 {
0f51ccfc 14324 error ("no matching template for %qD found", decl);
03d0f4af
MM
14325 return;
14326 }
8ea6dfae
SM
14327 if (!same_type_p (TREE_TYPE (result), TREE_TYPE (decl)))
14328 {
14329 error ("type %qT for explicit instantiation %qD does not match "
14330 "declared type %qT", TREE_TYPE (result), decl,
14331 TREE_TYPE (decl));
14332 return;
14333 }
6633d636
MS
14334 }
14335 else if (TREE_CODE (decl) != FUNCTION_DECL)
14336 {
0f51ccfc 14337 error ("explicit instantiation of %q#D", decl);
6633d636
MS
14338 return;
14339 }
03d0f4af
MM
14340 else
14341 result = decl;
672476cb 14342
03d0f4af 14343 /* Check for various error cases. Note that if the explicit
0e339752 14344 instantiation is valid the RESULT will currently be marked as an
03d0f4af
MM
14345 *implicit* instantiation; DECL_EXPLICIT_INSTANTIATION is not set
14346 until we get here. */
14347
14348 if (DECL_TEMPLATE_SPECIALIZATION (result))
672476cb 14349 {
07782718
KL
14350 /* DR 259 [temp.spec].
14351
14352 Both an explicit instantiation and a declaration of an explicit
14353 specialization shall not appear in a program unless the explicit
14354 instantiation follows a declaration of the explicit specialization.
03d0f4af 14355
07782718
KL
14356 For a given set of template parameters, if an explicit
14357 instantiation of a template appears after a declaration of an
14358 explicit specialization for that template, the explicit
14359 instantiation has no effect. */
672476cb
MM
14360 return;
14361 }
03d0f4af
MM
14362 else if (DECL_EXPLICIT_INSTANTIATION (result))
14363 {
14364 /* [temp.spec]
98c1c668 14365
03d0f4af 14366 No program shall explicitly instantiate any template more
c8094d83 14367 than once.
03d0f4af 14368
4684cd27
MM
14369 We check DECL_NOT_REALLY_EXTERN so as not to complain when
14370 the first instantiation was `extern' and the second is not,
14371 and EXTERN_P for the opposite case. */
14372 if (DECL_NOT_REALLY_EXTERN (result) && !extern_p)
0f51ccfc 14373 pedwarn ("duplicate explicit instantiation of %q#D", result);
4684cd27
MM
14374 /* If an "extern" explicit instantiation follows an ordinary
14375 explicit instantiation, the template is instantiated. */
14376 if (extern_p)
03d0f4af
MM
14377 return;
14378 }
14379 else if (!DECL_IMPLICIT_INSTANTIATION (result))
faae18ab 14380 {
0f51ccfc 14381 error ("no matching template for %qD found", result);
faae18ab
MS
14382 return;
14383 }
03d0f4af 14384 else if (!DECL_TEMPLATE_INFO (result))
6633d636 14385 {
0f51ccfc 14386 pedwarn ("explicit instantiation of non-template %q#D", result);
6633d636
MS
14387 return;
14388 }
14389
f0e01782 14390 if (storage == NULL_TREE)
00595019 14391 ;
faae18ab 14392 else if (storage == ridpointers[(int) RID_EXTERN])
03d0f4af 14393 {
c02f5e29 14394 if (pedantic && !in_system_header)
0f51ccfc 14395 pedwarn ("ISO C++ forbids the use of %<extern%> on explicit "
0cbd7506 14396 "instantiations");
03d0f4af
MM
14397 extern_p = 1;
14398 }
f0e01782 14399 else
0f51ccfc 14400 error ("storage class %qD applied to template instantiation", storage);
3db45ab5 14401
9c12301f 14402 check_explicit_instantiation_namespace (result);
5566b478 14403 mark_decl_instantiated (result, extern_p);
c91a56d2 14404 if (! extern_p)
3db45ab5 14405 instantiate_decl (result, /*defer_ok=*/1,
eba839f9 14406 /*expl_inst_class_mem_p=*/false);
7177d104
MS
14407}
14408
b5791fdc 14409static void
3a978d72 14410mark_class_instantiated (tree t, int extern_p)
faae18ab
MS
14411{
14412 SET_CLASSTYPE_EXPLICIT_INSTANTIATION (t);
eb773359
JM
14413 SET_CLASSTYPE_INTERFACE_KNOWN (t);
14414 CLASSTYPE_INTERFACE_ONLY (t) = extern_p;
faae18ab
MS
14415 TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (t)) = extern_p;
14416 if (! extern_p)
14417 {
14418 CLASSTYPE_DEBUG_REQUESTED (t) = 1;
14419 rest_of_type_compilation (t, 1);
14420 }
c8094d83 14421}
e8abc66f 14422
5e0c54e5 14423/* Called from do_type_instantiation through binding_table_foreach to
9bcb9aae 14424 do recursive instantiation for the type bound in ENTRY. */
5e0c54e5
GDR
14425static void
14426bt_instantiate_type_proc (binding_entry entry, void *data)
14427{
14428 tree storage = *(tree *) data;
14429
9e1e64ec 14430 if (MAYBE_CLASS_TYPE_P (entry->type)
5e0c54e5
GDR
14431 && !uses_template_parms (CLASSTYPE_TI_ARGS (entry->type)))
14432 do_type_instantiation (TYPE_MAIN_DECL (entry->type), storage, 0);
14433}
14434
415c974c
MA
14435/* Called from do_type_instantiation to instantiate a member
14436 (a member function or a static member variable) of an
03fd3f84 14437 explicitly instantiated class template. */
415c974c
MA
14438static void
14439instantiate_class_member (tree decl, int extern_p)
14440{
14441 mark_decl_instantiated (decl, extern_p);
415c974c 14442 if (! extern_p)
3db45ab5 14443 instantiate_decl (decl, /*defer_ok=*/1,
eba839f9 14444 /*expl_inst_class_mem_p=*/true);
415c974c
MA
14445}
14446
a1bcc528
JM
14447/* Perform an explicit instantiation of template class T. STORAGE, if
14448 non-null, is the RID for extern, inline or static. COMPLAIN is
838dfd8a 14449 nonzero if this is called from the parser, zero if called recursively,
a1bcc528 14450 since the standard is unclear (as detailed below). */
c8094d83 14451
7177d104 14452void
3a978d72 14453do_type_instantiation (tree t, tree storage, tsubst_flags_t complain)
7177d104 14454{
e8abc66f
MS
14455 int extern_p = 0;
14456 int nomem_p = 0;
5566b478 14457 int static_p = 0;
4746cf84 14458 int previous_instantiation_extern_p = 0;
5566b478 14459
ca79f85d
JM
14460 if (TREE_CODE (t) == TYPE_DECL)
14461 t = TREE_TYPE (t);
14462
7ddedda4 14463 if (! CLASS_TYPE_P (t) || ! CLASSTYPE_TEMPLATE_INFO (t))
ca79f85d 14464 {
0f51ccfc 14465 error ("explicit instantiation of non-template type %qT", t);
ca79f85d
JM
14466 return;
14467 }
14468
5566b478 14469 complete_type (t);
7177d104 14470
d0f062fb 14471 if (!COMPLETE_TYPE_P (t))
f0e01782 14472 {
c2ea3a40 14473 if (complain & tf_error)
0f51ccfc 14474 error ("explicit instantiation of %q#T before definition of template",
0cbd7506 14475 t);
f0e01782
MS
14476 return;
14477 }
14478
03d0f4af 14479 if (storage != NULL_TREE)
f0e01782 14480 {
c02f5e29 14481 if (pedantic && !in_system_header)
c8094d83 14482 pedwarn("ISO C++ forbids the use of %qE on explicit instantiations",
0cbd7506 14483 storage);
03d0f4af
MM
14484
14485 if (storage == ridpointers[(int) RID_INLINE])
14486 nomem_p = 1;
14487 else if (storage == ridpointers[(int) RID_EXTERN])
14488 extern_p = 1;
14489 else if (storage == ridpointers[(int) RID_STATIC])
14490 static_p = 1;
14491 else
14492 {
0f51ccfc 14493 error ("storage class %qD applied to template instantiation",
0cbd7506 14494 storage);
03d0f4af
MM
14495 extern_p = 0;
14496 }
f0e01782
MS
14497 }
14498
370af2d5 14499 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (t))
03d0f4af 14500 {
07782718 14501 /* DR 259 [temp.spec].
a292b002 14502
07782718
KL
14503 Both an explicit instantiation and a declaration of an explicit
14504 specialization shall not appear in a program unless the explicit
14505 instantiation follows a declaration of the explicit specialization.
14506
14507 For a given set of template parameters, if an explicit
14508 instantiation of a template appears after a declaration of an
14509 explicit specialization for that template, the explicit
14510 instantiation has no effect. */
03d0f4af
MM
14511 return;
14512 }
14513 else if (CLASSTYPE_EXPLICIT_INSTANTIATION (t))
44a8d0b3 14514 {
03d0f4af
MM
14515 /* [temp.spec]
14516
14517 No program shall explicitly instantiate any template more
c8094d83 14518 than once.
03d0f4af 14519
0cbd7506 14520 If PREVIOUS_INSTANTIATION_EXTERN_P, then the first explicit
4746cf84 14521 instantiation was `extern'. If EXTERN_P then the second is.
4684cd27 14522 These cases are OK. */
4746cf84
MA
14523 previous_instantiation_extern_p = CLASSTYPE_INTERFACE_ONLY (t);
14524
14525 if (!previous_instantiation_extern_p && !extern_p
c2ea3a40 14526 && (complain & tf_error))
0f51ccfc 14527 pedwarn ("duplicate explicit instantiation of %q#T", t);
c8094d83 14528
03d0f4af
MM
14529 /* If we've already instantiated the template, just return now. */
14530 if (!CLASSTYPE_INTERFACE_ONLY (t))
14531 return;
44a8d0b3 14532 }
e8abc66f 14533
9c12301f 14534 check_explicit_instantiation_namespace (TYPE_NAME (t));
03d0f4af 14535 mark_class_instantiated (t, extern_p);
03d0f4af 14536
e8abc66f
MS
14537 if (nomem_p)
14538 return;
14539
7177d104 14540 {
db5ae43f 14541 tree tmp;
5566b478 14542
03d0f4af
MM
14543 /* In contrast to implicit instantiation, where only the
14544 declarations, and not the definitions, of members are
14545 instantiated, we have here:
14546
0cbd7506 14547 [temp.explicit]
03d0f4af
MM
14548
14549 The explicit instantiation of a class template specialization
14550 implies the instantiation of all of its members not
14551 previously explicitly specialized in the translation unit
c8094d83 14552 containing the explicit instantiation.
03d0f4af
MM
14553
14554 Of course, we can't instantiate member template classes, since
14555 we don't have any arguments for them. Note that the standard
dc957d14 14556 is unclear on whether the instantiation of the members are
415c974c 14557 *explicit* instantiations or not. However, the most natural
03fd3f84 14558 interpretation is that it should be an explicit instantiation. */
03d0f4af 14559
5566b478
MS
14560 if (! static_p)
14561 for (tmp = TYPE_METHODS (t); tmp; tmp = TREE_CHAIN (tmp))
a7d87521 14562 if (TREE_CODE (tmp) == FUNCTION_DECL
1f109f0f 14563 && DECL_TEMPLATE_INSTANTIATION (tmp))
415c974c 14564 instantiate_class_member (tmp, extern_p);
5566b478
MS
14565
14566 for (tmp = TYPE_FIELDS (t); tmp; tmp = TREE_CHAIN (tmp))
14567 if (TREE_CODE (tmp) == VAR_DECL && DECL_TEMPLATE_INSTANTIATION (tmp))
415c974c 14568 instantiate_class_member (tmp, extern_p);
7177d104 14569
5e0c54e5
GDR
14570 if (CLASSTYPE_NESTED_UTDS (t))
14571 binding_table_foreach (CLASSTYPE_NESTED_UTDS (t),
0cbd7506 14572 bt_instantiate_type_proc, &storage);
a292b002 14573 }
8d08fdba 14574}
a28e3c7f 14575
36a117a5
MM
14576/* Given a function DECL, which is a specialization of TMPL, modify
14577 DECL to be a re-instantiation of TMPL with the same template
14578 arguments. TMPL should be the template into which tsubst'ing
14579 should occur for DECL, not the most general template.
830bfa74
MM
14580
14581 One reason for doing this is a scenario like this:
14582
14583 template <class T>
14584 void f(const T&, int i);
14585
14586 void g() { f(3, 7); }
14587
14588 template <class T>
14589 void f(const T& t, const int i) { }
14590
14591 Note that when the template is first instantiated, with
14592 instantiate_template, the resulting DECL will have no name for the
14593 first parameter, and the wrong type for the second. So, when we go
14594 to instantiate the DECL, we regenerate it. */
14595
e9659ab0 14596static void
3a978d72 14597regenerate_decl_from_template (tree decl, tree tmpl)
830bfa74 14598{
f9a7ae04
MM
14599 /* The arguments used to instantiate DECL, from the most general
14600 template. */
830bfa74 14601 tree args;
830bfa74 14602 tree code_pattern;
830bfa74
MM
14603
14604 args = DECL_TI_ARGS (decl);
14605 code_pattern = DECL_TEMPLATE_RESULT (tmpl);
14606
2b907f5c
KL
14607 /* Make sure that we can see identifiers, and compute access
14608 correctly. */
14609 push_access_scope (decl);
14610
c7222c02
MM
14611 if (TREE_CODE (decl) == FUNCTION_DECL)
14612 {
14613 tree decl_parm;
14614 tree pattern_parm;
14615 tree specs;
14616 int args_depth;
14617 int parms_depth;
c8094d83 14618
c7222c02 14619 args_depth = TMPL_ARGS_DEPTH (args);
c8094d83 14620 parms_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
c7222c02
MM
14621 if (args_depth > parms_depth)
14622 args = get_innermost_template_args (args, parms_depth);
14623
14624 specs = tsubst_exception_specification (TREE_TYPE (code_pattern),
14625 args, tf_error, NULL_TREE);
14626 if (specs)
14627 TREE_TYPE (decl) = build_exception_variant (TREE_TYPE (decl),
14628 specs);
14629
14630 /* Merge parameter declarations. */
c8094d83 14631 decl_parm = skip_artificial_parms_for (decl,
c7222c02 14632 DECL_ARGUMENTS (decl));
c8094d83 14633 pattern_parm
c7222c02
MM
14634 = skip_artificial_parms_for (code_pattern,
14635 DECL_ARGUMENTS (code_pattern));
5d80a306 14636 while (decl_parm && !FUNCTION_PARAMETER_PACK_P (pattern_parm))
c7222c02
MM
14637 {
14638 tree parm_type;
b17bba6d 14639 tree attributes;
5d80a306 14640
c7222c02
MM
14641 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
14642 DECL_NAME (decl_parm) = DECL_NAME (pattern_parm);
14643 parm_type = tsubst (TREE_TYPE (pattern_parm), args, tf_error,
14644 NULL_TREE);
02bab9db 14645 parm_type = type_decays_to (parm_type);
c7222c02
MM
14646 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
14647 TREE_TYPE (decl_parm) = parm_type;
b17bba6d
MM
14648 attributes = DECL_ATTRIBUTES (pattern_parm);
14649 if (DECL_ATTRIBUTES (decl_parm) != attributes)
14650 {
14651 DECL_ATTRIBUTES (decl_parm) = attributes;
14652 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
14653 }
c7222c02
MM
14654 decl_parm = TREE_CHAIN (decl_parm);
14655 pattern_parm = TREE_CHAIN (pattern_parm);
14656 }
5d80a306
DG
14657 /* Merge any parameters that match with the function parameter
14658 pack. */
14659 if (pattern_parm && FUNCTION_PARAMETER_PACK_P (pattern_parm))
14660 {
14661 int i, len;
14662 tree expanded_types;
14663 /* Expand the TYPE_PACK_EXPANSION that provides the types for
14664 the parameters in this function parameter pack. */
14665 expanded_types = tsubst_pack_expansion (TREE_TYPE (pattern_parm),
14666 args, tf_error, NULL_TREE);
14667 len = TREE_VEC_LENGTH (expanded_types);
14668 for (i = 0; i < len; i++)
14669 {
14670 tree parm_type;
14671 tree attributes;
14672
14673 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
14674 /* Rename the parameter to include the index. */
14675 DECL_NAME (decl_parm) =
14676 make_ith_pack_parameter_name (DECL_NAME (pattern_parm), i);
14677 parm_type = TREE_VEC_ELT (expanded_types, i);
14678 parm_type = type_decays_to (parm_type);
14679 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
14680 TREE_TYPE (decl_parm) = parm_type;
14681 attributes = DECL_ATTRIBUTES (pattern_parm);
14682 if (DECL_ATTRIBUTES (decl_parm) != attributes)
14683 {
14684 DECL_ATTRIBUTES (decl_parm) = attributes;
14685 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
14686 }
14687 decl_parm = TREE_CHAIN (decl_parm);
14688 }
14689 }
c7222c02
MM
14690 /* Merge additional specifiers from the CODE_PATTERN. */
14691 if (DECL_DECLARED_INLINE_P (code_pattern)
14692 && !DECL_DECLARED_INLINE_P (decl))
14693 DECL_DECLARED_INLINE_P (decl) = 1;
14694 if (DECL_INLINE (code_pattern) && !DECL_INLINE (decl))
14695 DECL_INLINE (decl) = 1;
14696 }
14697 else if (TREE_CODE (decl) == VAR_DECL)
b794e321
MM
14698 DECL_INITIAL (decl) =
14699 tsubst_expr (DECL_INITIAL (code_pattern), args,
015c2c66
MM
14700 tf_error, DECL_TI_TEMPLATE (decl),
14701 /*integral_constant_expression_p=*/false);
c7222c02
MM
14702 else
14703 gcc_unreachable ();
36a117a5 14704
2b59fc25 14705 pop_access_scope (decl);
830bfa74
MM
14706}
14707
a723baf1
MM
14708/* Return the TEMPLATE_DECL into which DECL_TI_ARGS(DECL) should be
14709 substituted to get DECL. */
14710
d58b7c2d 14711tree
a723baf1
MM
14712template_for_substitution (tree decl)
14713{
14714 tree tmpl = DECL_TI_TEMPLATE (decl);
14715
14716 /* Set TMPL to the template whose DECL_TEMPLATE_RESULT is the pattern
14717 for the instantiation. This is not always the most general
14718 template. Consider, for example:
14719
0cbd7506 14720 template <class T>
a723baf1 14721 struct S { template <class U> void f();
0cbd7506 14722 template <> void f<int>(); };
a723baf1
MM
14723
14724 and an instantiation of S<double>::f<int>. We want TD to be the
14725 specialization S<T>::f<int>, not the more general S<T>::f<U>. */
14726 while (/* An instantiation cannot have a definition, so we need a
14727 more general template. */
14728 DECL_TEMPLATE_INSTANTIATION (tmpl)
14729 /* We must also deal with friend templates. Given:
14730
c8094d83 14731 template <class T> struct S {
a723baf1
MM
14732 template <class U> friend void f() {};
14733 };
14734
14735 S<int>::f<U> say, is not an instantiation of S<T>::f<U>,
14736 so far as the language is concerned, but that's still
14737 where we get the pattern for the instantiation from. On
14738 other hand, if the definition comes outside the class, say:
14739
c8094d83 14740 template <class T> struct S {
a723baf1
MM
14741 template <class U> friend void f();
14742 };
14743 template <class U> friend void f() {}
14744
14745 we don't need to look any further. That's what the check for
14746 DECL_INITIAL is for. */
14747 || (TREE_CODE (decl) == FUNCTION_DECL
14748 && DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (tmpl)
14749 && !DECL_INITIAL (DECL_TEMPLATE_RESULT (tmpl))))
14750 {
14751 /* The present template, TD, should not be a definition. If it
14752 were a definition, we should be using it! Note that we
14753 cannot restructure the loop to just keep going until we find
14754 a template with a definition, since that might go too far if
14755 a specialization was declared, but not defined. */
50bc768d
NS
14756 gcc_assert (TREE_CODE (decl) != VAR_DECL
14757 || DECL_IN_AGGR_P (DECL_TEMPLATE_RESULT (tmpl)));
c8094d83 14758
a723baf1
MM
14759 /* Fetch the more general template. */
14760 tmpl = DECL_TI_TEMPLATE (tmpl);
14761 }
14762
14763 return tmpl;
14764}
14765
16d53b64 14766/* Produce the definition of D, a _DECL generated from a template. If
838dfd8a 14767 DEFER_OK is nonzero, then we don't have to actually do the
415c974c
MA
14768 instantiation now; we just have to do it sometime. Normally it is
14769 an error if this is an explicit instantiation but D is undefined.
eba839f9
MM
14770 EXPL_INST_CLASS_MEM_P is true iff D is a member of an
14771 explicitly instantiated class template. */
f84b4be9 14772
a28e3c7f 14773tree
3db45ab5 14774instantiate_decl (tree d, int defer_ok,
eba839f9 14775 bool expl_inst_class_mem_p)
a28e3c7f 14776{
36a117a5 14777 tree tmpl = DECL_TI_TEMPLATE (d);
65f8b0fb
MM
14778 tree gen_args;
14779 tree args;
830bfa74 14780 tree td;
36a117a5
MM
14781 tree code_pattern;
14782 tree spec;
14783 tree gen_tmpl;
b794e321 14784 bool pattern_defined;
31a714f6 14785 int need_push;
82a98427 14786 location_t saved_loc = input_location;
912291ca 14787 int saved_in_system_header = in_system_header;
f7e4e484 14788 bool external_p;
c8094d83 14789
36a117a5
MM
14790 /* This function should only be used to instantiate templates for
14791 functions and static member variables. */
50bc768d
NS
14792 gcc_assert (TREE_CODE (d) == FUNCTION_DECL
14793 || TREE_CODE (d) == VAR_DECL);
36a117a5 14794
cec24319
MM
14795 /* Variables are never deferred; if instantiation is required, they
14796 are instantiated right away. That allows for better code in the
14797 case that an expression refers to the value of the variable --
14798 if the variable has a constant value the referring expression can
14799 take advantage of that fact. */
14800 if (TREE_CODE (d) == VAR_DECL)
14801 defer_ok = 0;
14802
db9b2174
MM
14803 /* Don't instantiate cloned functions. Instead, instantiate the
14804 functions they cloned. */
14805 if (TREE_CODE (d) == FUNCTION_DECL && DECL_CLONED_FUNCTION_P (d))
14806 d = DECL_CLONED_FUNCTION (d);
14807
fbf1c34b 14808 if (DECL_TEMPLATE_INSTANTIATED (d))
03d0f4af 14809 /* D has already been instantiated. It might seem reasonable to
dc957d14 14810 check whether or not D is an explicit instantiation, and, if so,
03d0f4af
MM
14811 stop here. But when an explicit instantiation is deferred
14812 until the end of the compilation, DECL_EXPLICIT_INSTANTIATION
14813 is set, even though we still need to do the instantiation. */
36a117a5
MM
14814 return d;
14815
14816 /* If we already have a specialization of this declaration, then
14817 there's no reason to instantiate it. Note that
14818 retrieve_specialization gives us both instantiations and
14819 specializations, so we must explicitly check
14820 DECL_TEMPLATE_SPECIALIZATION. */
14821 gen_tmpl = most_general_template (tmpl);
65f8b0fb 14822 gen_args = DECL_TI_ARGS (d);
c7222c02
MM
14823 spec = retrieve_specialization (gen_tmpl, gen_args,
14824 /*class_specializations_p=*/false);
36a117a5
MM
14825 if (spec != NULL_TREE && DECL_TEMPLATE_SPECIALIZATION (spec))
14826 return spec;
14827
14828 /* This needs to happen before any tsubsting. */
14829 if (! push_tinst_level (d))
14830 return d;
14831
297a5329
JM
14832 timevar_push (TV_PARSE);
14833
4d85e00e 14834 /* Set TD to the template whose DECL_TEMPLATE_RESULT is the pattern
a723baf1
MM
14835 for the instantiation. */
14836 td = template_for_substitution (d);
fee23f54 14837 code_pattern = DECL_TEMPLATE_RESULT (td);
27bb8339 14838
2d22db1f 14839 /* We should never be trying to instantiate a member of a class
3db45ab5 14840 template or partial specialization. */
2d22db1f 14841 gcc_assert (d != code_pattern);
3db45ab5 14842
76d3baad
KL
14843 if ((DECL_NAMESPACE_SCOPE_P (d) && !DECL_INITIALIZED_IN_CLASS_P (d))
14844 || DECL_TEMPLATE_SPECIALIZATION (td))
649fc72d
NS
14845 /* In the case of a friend template whose definition is provided
14846 outside the class, we may have too many arguments. Drop the
76d3baad 14847 ones we don't need. The same is true for specializations. */
649fc72d
NS
14848 args = get_innermost_template_args
14849 (gen_args, TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (td)));
14850 else
14851 args = gen_args;
65f8b0fb 14852
5566b478 14853 if (TREE_CODE (d) == FUNCTION_DECL)
39c76b4f 14854 pattern_defined = (DECL_SAVED_TREE (code_pattern) != NULL_TREE);
5566b478 14855 else
36a117a5 14856 pattern_defined = ! DECL_IN_AGGR_P (code_pattern);
b794e321
MM
14857
14858 /* We may be in the middle of deferred access check. Disable it now. */
14859 push_deferring_access_checks (dk_no_deferred);
14860
4684cd27
MM
14861 /* Unless an explicit instantiation directive has already determined
14862 the linkage of D, remember that a definition is available for
14863 this entity. */
c8094d83 14864 if (pattern_defined
4684cd27
MM
14865 && !DECL_INTERFACE_KNOWN (d)
14866 && !DECL_NOT_REALLY_EXTERN (d))
14867 mark_definable (d);
de22184b 14868
f31686a3 14869 input_location = DECL_SOURCE_LOCATION (d);
912291ca 14870 in_system_header = DECL_IN_SYSTEM_HEADER (d);
de22184b 14871
eba839f9
MM
14872 /* If D is a member of an explicitly instantiated class template,
14873 and no definition is available, treat it like an implicit
3db45ab5
MS
14874 instantiation. */
14875 if (!pattern_defined && expl_inst_class_mem_p
14876 && DECL_EXPLICIT_INSTANTIATION (d))
5566b478 14877 {
4684cd27 14878 DECL_NOT_REALLY_EXTERN (d) = 0;
eba839f9 14879 DECL_INTERFACE_KNOWN (d) = 0;
4684cd27 14880 SET_DECL_IMPLICIT_INSTANTIATION (d);
5566b478
MS
14881 }
14882
4f2b0fb2
NS
14883 if (!defer_ok)
14884 {
14885 /* Recheck the substitutions to obtain any warning messages
14886 about ignoring cv qualifiers. */
14887 tree gen = DECL_TEMPLATE_RESULT (gen_tmpl);
14888 tree type = TREE_TYPE (gen);
14889
0e902d98 14890 /* Make sure that we can see identifiers, and compute access
2b59fc25
KL
14891 correctly. D is already the target FUNCTION_DECL with the
14892 right context. */
14893 push_access_scope (d);
0e902d98 14894
4f2b0fb2
NS
14895 if (TREE_CODE (gen) == FUNCTION_DECL)
14896 {
23fca1f5 14897 tsubst (DECL_ARGUMENTS (gen), gen_args, tf_warning_or_error, d);
5d80a306
DG
14898 tsubst_exception_specification (type, gen_args, tf_warning_or_error,
14899 d);
4f2b0fb2
NS
14900 /* Don't simply tsubst the function type, as that will give
14901 duplicate warnings about poor parameter qualifications.
14902 The function arguments are the same as the decl_arguments
c6002625 14903 without the top level cv qualifiers. */
4f2b0fb2
NS
14904 type = TREE_TYPE (type);
14905 }
23fca1f5 14906 tsubst (type, gen_args, tf_warning_or_error, d);
0e902d98 14907
2b59fc25 14908 pop_access_scope (d);
4f2b0fb2 14909 }
c8094d83 14910
f7e4e484
MM
14911 /* Check to see whether we know that this template will be
14912 instantiated in some other file, as with "extern template"
14913 extension. */
14914 external_p = (DECL_INTERFACE_KNOWN (d) && DECL_REALLY_EXTERN (d));
14915 /* In general, we do not instantiate such templates... */
14916 if (external_p
14917 /* ... but we instantiate inline functions so that we can inline
14918 them and ... */
14919 && ! (TREE_CODE (d) == FUNCTION_DECL && DECL_INLINE (d))
14920 /* ... we instantiate static data members whose values are
14921 needed in integral constant expressions. */
3db45ab5 14922 && ! (TREE_CODE (d) == VAR_DECL
f7e4e484 14923 && DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (d)))
930cd796 14924 goto out;
16d53b64 14925 /* Defer all other templates, unless we have been explicitly
f7e4e484
MM
14926 forbidden from doing so. */
14927 if (/* If there is no definition, we cannot instantiate the
14928 template. */
3db45ab5 14929 ! pattern_defined
f7e4e484
MM
14930 /* If it's OK to postpone instantiation, do so. */
14931 || defer_ok
14932 /* If this is a static data member that will be defined
14933 elsewhere, we don't want to instantiate the entire data
14934 member, but we do want to instantiate the initializer so that
14935 we can substitute that elsewhere. */
14936 || (external_p && TREE_CODE (d) == VAR_DECL))
16d53b64 14937 {
b794e321
MM
14938 /* The definition of the static data member is now required so
14939 we must substitute the initializer. */
14940 if (TREE_CODE (d) == VAR_DECL
3db45ab5 14941 && !DECL_INITIAL (d)
b794e321
MM
14942 && DECL_INITIAL (code_pattern))
14943 {
4bff36d3
MM
14944 tree ns;
14945 tree init;
14946
14947 ns = decl_namespace_context (d);
27a725e2 14948 push_nested_namespace (ns);
b794e321 14949 push_nested_class (DECL_CONTEXT (d));
3db45ab5 14950 init = tsubst_expr (DECL_INITIAL (code_pattern),
4bff36d3 14951 args,
015c2c66
MM
14952 tf_warning_or_error, NULL_TREE,
14953 /*integral_constant_expression_p=*/false);
d174af6c
MM
14954 cp_finish_decl (d, init, /*init_const_expr_p=*/false,
14955 /*asmspec_tree=*/NULL_TREE,
86414779 14956 LOOKUP_ONLYCONVERTING);
b794e321 14957 pop_nested_class ();
27a725e2 14958 pop_nested_namespace (ns);
b794e321
MM
14959 }
14960
f7e4e484
MM
14961 /* We restore the source position here because it's used by
14962 add_pending_template. */
82a98427 14963 input_location = saved_loc;
c27be9b9 14964
c8094d83 14965 if (at_eof && !pattern_defined
03d0f4af
MM
14966 && DECL_EXPLICIT_INSTANTIATION (d))
14967 /* [temp.explicit]
14968
14969 The definition of a non-exported function template, a
14970 non-exported member function template, or a non-exported
14971 member function or static data member of a class template
14972 shall be present in every translation unit in which it is
14973 explicitly instantiated. */
33bd39a2 14974 pedwarn
0f51ccfc 14975 ("explicit instantiation of %qD but no definition available", d);
03d0f4af 14976
f7e4e484
MM
14977 /* ??? Historically, we have instantiated inline functions, even
14978 when marked as "extern template". */
14979 if (!(external_p && TREE_CODE (d) == VAR_DECL))
14980 add_pending_template (d);
de22184b 14981 goto out;
5566b478 14982 }
4684cd27
MM
14983 /* Tell the repository that D is available in this translation unit
14984 -- and see if it is supposed to be instantiated here. */
14985 if (TREE_PUBLIC (d) && !DECL_REALLY_EXTERN (d) && !repo_emit_p (d))
14986 {
14987 /* In a PCH file, despite the fact that the repository hasn't
14988 requested instantiation in the PCH it is still possible that
14989 an instantiation will be required in a file that includes the
14990 PCH. */
14991 if (pch_file)
14992 add_pending_template (d);
14993 /* Instantiate inline functions so that the inliner can do its
14994 job, even though we'll not be emitting a copy of this
14995 function. */
c2a124b2 14996 if (!(TREE_CODE (d) == FUNCTION_DECL
c8094d83 14997 && flag_inline_trees
c2a124b2 14998 && DECL_DECLARED_INLINE_P (d)))
4684cd27
MM
14999 goto out;
15000 }
5566b478 15001
6de9cd9a 15002 need_push = !cfun || !global_bindings_p ();
31a714f6
MM
15003 if (need_push)
15004 push_to_top_level ();
414ea4aa 15005
66e0c440
KL
15006 /* Mark D as instantiated so that recursive calls to
15007 instantiate_decl do not try to instantiate it again. */
15008 DECL_TEMPLATE_INSTANTIATED (d) = 1;
15009
2b0a63a3
MM
15010 /* Regenerate the declaration in case the template has been modified
15011 by a subsequent redeclaration. */
15012 regenerate_decl_from_template (d, td);
4684cd27 15013
120722ac 15014 /* We already set the file and line above. Reset them now in case
6de9cd9a 15015 they changed as a result of calling regenerate_decl_from_template. */
f31686a3 15016 input_location = DECL_SOURCE_LOCATION (d);
5156628f 15017
5566b478
MS
15018 if (TREE_CODE (d) == VAR_DECL)
15019 {
e92fb501
MM
15020 tree init;
15021
1d62c33e
MM
15022 /* Clear out DECL_RTL; whatever was there before may not be right
15023 since we've reset the type of the declaration. */
15024 SET_DECL_RTL (d, NULL_RTX);
5566b478 15025 DECL_IN_AGGR_P (d) = 0;
ea56c40c 15026
e92fb501
MM
15027 /* The initializer is placed in DECL_INITIAL by
15028 regenerate_decl_from_template. Pull it out so that
15029 finish_decl can process it. */
15030 init = DECL_INITIAL (d);
15031 DECL_INITIAL (d) = NULL_TREE;
15032 DECL_INITIALIZED_P (d) = 0;
15033
4684cd27
MM
15034 /* Clear DECL_EXTERNAL so that cp_finish_decl will process the
15035 initializer. That function will defer actual emission until
15036 we have a chance to determine linkage. */
15037 DECL_EXTERNAL (d) = 0;
15038
73a8adb6 15039 /* Enter the scope of D so that access-checking works correctly. */
4684cd27 15040 push_nested_class (DECL_CONTEXT (d));
e92fb501 15041 finish_decl (d, init, NULL_TREE);
73a8adb6 15042 pop_nested_class ();
5566b478
MS
15043 }
15044 else if (TREE_CODE (d) == FUNCTION_DECL)
15045 {
6bbf1598 15046 htab_t saved_local_specializations;
a723baf1
MM
15047 tree subst_decl;
15048 tree tmpl_parm;
15049 tree spec_parm;
6bbf1598
MM
15050
15051 /* Save away the current list, in case we are instantiating one
15052 template from within the body of another. */
15053 saved_local_specializations = local_specializations;
15054
6dfbb909 15055 /* Set up the list of local specializations. */
c8094d83 15056 local_specializations = htab_create (37,
69f794a7 15057 hash_local_specialization,
a723baf1 15058 eq_local_specializations,
6dfbb909
MM
15059 NULL);
15060
558475f0 15061 /* Set up context. */
058b15c1 15062 start_preparsed_function (d, NULL_TREE, SF_PRE_PARSED);
5566b478 15063
a723baf1
MM
15064 /* Create substitution entries for the parameters. */
15065 subst_decl = DECL_TEMPLATE_RESULT (template_for_substitution (d));
15066 tmpl_parm = DECL_ARGUMENTS (subst_decl);
15067 spec_parm = DECL_ARGUMENTS (d);
15068 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (d))
15069 {
15070 register_local_specialization (spec_parm, tmpl_parm);
15071 spec_parm = skip_artificial_parms_for (d, spec_parm);
15072 tmpl_parm = skip_artificial_parms_for (subst_decl, tmpl_parm);
15073 }
5d80a306 15074 while (tmpl_parm && !FUNCTION_PARAMETER_PACK_P (tmpl_parm))
a723baf1
MM
15075 {
15076 register_local_specialization (spec_parm, tmpl_parm);
15077 tmpl_parm = TREE_CHAIN (tmpl_parm);
15078 spec_parm = TREE_CHAIN (spec_parm);
15079 }
5d80a306
DG
15080 if (tmpl_parm && FUNCTION_PARAMETER_PACK_P (tmpl_parm))
15081 {
15082 /* Collect all of the extra "packed" parameters into an
15083 argument pack. */
15084 tree parmvec;
15085 tree parmtypevec;
15086 tree argpack = make_node (NONTYPE_ARGUMENT_PACK);
15087 tree argtypepack = make_node (TYPE_ARGUMENT_PACK);
15088 int i, len = 0;
15089 tree t;
15090
15091 /* Count how many parameters remain. */
15092 for (t = spec_parm; t; t = TREE_CHAIN (t))
15093 len++;
15094
15095 /* Fill in PARMVEC and PARMTYPEVEC with all of the parameters. */
15096 parmvec = make_tree_vec (len);
15097 parmtypevec = make_tree_vec (len);
15098 for(i = 0; i < len; i++, spec_parm = TREE_CHAIN (spec_parm))
15099 {
15100 TREE_VEC_ELT (parmvec, i) = spec_parm;
15101 TREE_VEC_ELT (parmtypevec, i) = TREE_TYPE (spec_parm);
15102 }
15103
15104 /* Build the argument packs. */
15105 SET_ARGUMENT_PACK_ARGS (argpack, parmvec);
15106 SET_ARGUMENT_PACK_ARGS (argtypepack, parmtypevec);
15107 TREE_TYPE (argpack) = argtypepack;
15108
15109 /* Register the (value) argument pack as a specialization of
15110 TMPL_PARM, then move on. */
15111 register_local_specialization (argpack, tmpl_parm);
15112 tmpl_parm = TREE_CHAIN (tmpl_parm);
15113 }
50bc768d 15114 gcc_assert (!spec_parm);
a723baf1 15115
558475f0
MM
15116 /* Substitute into the body of the function. */
15117 tsubst_expr (DECL_SAVED_TREE (code_pattern), args,
015c2c66
MM
15118 tf_warning_or_error, tmpl,
15119 /*integral_constant_expression_p=*/false);
558475f0 15120
75407da3
SP
15121 /* Set the current input_location to the end of the function
15122 so that finish_function knows where we are. */
15123 input_location = DECL_STRUCT_FUNCTION (code_pattern)->function_end_locus;
15124
6dfbb909
MM
15125 /* We don't need the local specializations any more. */
15126 htab_delete (local_specializations);
6bbf1598 15127 local_specializations = saved_local_specializations;
6dfbb909 15128
4d6abc1c 15129 /* Finish the function. */
b2dd096b 15130 d = finish_function (0);
8cd2462c 15131 expand_or_defer_fn (d);
5566b478
MS
15132 }
15133
971cbc14
MM
15134 /* We're not deferring instantiation any more. */
15135 TI_PENDING_TEMPLATE_FLAG (DECL_TEMPLATE_INFO (d)) = 0;
15136
31a714f6
MM
15137 if (need_push)
15138 pop_from_top_level ();
414ea4aa 15139
de22184b 15140out:
82a98427 15141 input_location = saved_loc;
912291ca 15142 in_system_header = saved_in_system_header;
7d021397 15143 pop_deferring_access_checks ();
5566b478 15144 pop_tinst_level ();
a28e3c7f 15145
297a5329
JM
15146 timevar_pop (TV_PARSE);
15147
a28e3c7f
MS
15148 return d;
15149}
5566b478 15150
0aafb128 15151/* Run through the list of templates that we wish we could
35046a54
KL
15152 instantiate, and instantiate any we can. RETRIES is the
15153 number of times we retry pending template instantiation. */
0aafb128 15154
35046a54
KL
15155void
15156instantiate_pending_templates (int retries)
0aafb128 15157{
0aafb128 15158 int reconsider;
aad626f7 15159 location_t saved_loc = input_location;
12af7ba3 15160 int saved_in_system_header = in_system_header;
35046a54
KL
15161
15162 /* Instantiating templates may trigger vtable generation. This in turn
15163 may require further template instantiations. We place a limit here
15164 to avoid infinite loop. */
15165 if (pending_templates && retries >= max_tinst_depth)
15166 {
e2c3721c 15167 tree decl = pending_templates->tinst->decl;
96c993a8 15168
dee15844 15169 error ("template instantiation depth exceeds maximum of %d"
96c993a8
JM
15170 " instantiating %q+D, possibly from virtual table generation"
15171 " (use -ftemplate-depth-NN to increase the maximum)",
15172 max_tinst_depth, decl);
15173 if (TREE_CODE (decl) == FUNCTION_DECL)
15174 /* Pretend that we defined it. */
15175 DECL_INITIAL (decl) = error_mark_node;
35046a54
KL
15176 return;
15177 }
15178
c8094d83 15179 do
0aafb128 15180 {
e2c3721c
PB
15181 struct pending_template **t = &pending_templates;
15182 struct pending_template *last = NULL;
0aafb128 15183 reconsider = 0;
0aafb128
MM
15184 while (*t)
15185 {
e2c3721c
PB
15186 tree instantiation = reopen_tinst_level ((*t)->tinst);
15187 bool complete = false;
0aafb128 15188
2f939d94 15189 if (TYPE_P (instantiation))
0aafb128
MM
15190 {
15191 tree fn;
15192
d0f062fb 15193 if (!COMPLETE_TYPE_P (instantiation))
0aafb128
MM
15194 {
15195 instantiate_class_template (instantiation);
15196 if (CLASSTYPE_TEMPLATE_INSTANTIATION (instantiation))
c8094d83 15197 for (fn = TYPE_METHODS (instantiation);
0aafb128
MM
15198 fn;
15199 fn = TREE_CHAIN (fn))
15200 if (! DECL_ARTIFICIAL (fn))
3db45ab5 15201 instantiate_decl (fn,
eba839f9
MM
15202 /*defer_ok=*/0,
15203 /*expl_inst_class_mem_p=*/false);
d0f062fb 15204 if (COMPLETE_TYPE_P (instantiation))
35046a54 15205 reconsider = 1;
0aafb128
MM
15206 }
15207
e2c3721c 15208 complete = COMPLETE_TYPE_P (instantiation);
0aafb128
MM
15209 }
15210 else
15211 {
16d53b64 15212 if (!DECL_TEMPLATE_SPECIALIZATION (instantiation)
0aafb128
MM
15213 && !DECL_TEMPLATE_INSTANTIATED (instantiation))
15214 {
3db45ab5 15215 instantiation
eba839f9
MM
15216 = instantiate_decl (instantiation,
15217 /*defer_ok=*/0,
15218 /*expl_inst_class_mem_p=*/false);
0aafb128 15219 if (DECL_TEMPLATE_INSTANTIATED (instantiation))
35046a54 15220 reconsider = 1;
0aafb128
MM
15221 }
15222
e2c3721c
PB
15223 complete = (DECL_TEMPLATE_SPECIALIZATION (instantiation)
15224 || DECL_TEMPLATE_INSTANTIATED (instantiation));
15225 }
15226
15227 if (complete)
15228 /* If INSTANTIATION has been instantiated, then we don't
15229 need to consider it again in the future. */
15230 *t = (*t)->next;
15231 else
15232 {
15233 last = *t;
15234 t = &(*t)->next;
0aafb128 15235 }
84e5ca0f 15236 tinst_depth = 0;
e2c3721c 15237 current_tinst_level = NULL;
0aafb128 15238 }
46ccf50a 15239 last_pending_template = last;
c8094d83 15240 }
0aafb128
MM
15241 while (reconsider);
15242
aad626f7 15243 input_location = saved_loc;
12af7ba3 15244 in_system_header = saved_in_system_header;
0aafb128
MM
15245}
15246
fd74ca0b
MM
15247/* Substitute ARGVEC into T, which is a list of initializers for
15248 either base class or a non-static data member. The TREE_PURPOSEs
15249 are DECLs, and the TREE_VALUEs are the initializer values. Used by
15250 instantiate_decl. */
4393e105 15251
824b9a4c 15252static tree
3a978d72 15253tsubst_initializer_list (tree t, tree argvec)
5566b478 15254{
2282d28d 15255 tree inits = NULL_TREE;
5566b478
MS
15256
15257 for (; t; t = TREE_CHAIN (t))
15258 {
fd74ca0b
MM
15259 tree decl;
15260 tree init;
5d80a306
DG
15261 tree expanded_bases = NULL_TREE;
15262 tree expanded_arguments = NULL_TREE;
15263 int i, len = 1;
fd74ca0b 15264
5d80a306
DG
15265 if (TREE_CODE (TREE_PURPOSE (t)) == TYPE_PACK_EXPANSION)
15266 {
15267 tree expr;
15268 tree arg;
15269
15270 /* Expand the base class expansion type into separate base
15271 classes. */
15272 expanded_bases = tsubst_pack_expansion (TREE_PURPOSE (t), argvec,
15273 tf_warning_or_error,
15274 NULL_TREE);
15275 if (expanded_bases == error_mark_node)
15276 continue;
15277
15278 /* We'll be building separate TREE_LISTs of arguments for
15279 each base. */
15280 len = TREE_VEC_LENGTH (expanded_bases);
15281 expanded_arguments = make_tree_vec (len);
15282 for (i = 0; i < len; i++)
15283 TREE_VEC_ELT (expanded_arguments, i) = NULL_TREE;
15284
15285 /* Build a dummy EXPR_PACK_EXPANSION that will be used to
15286 expand each argument in the TREE_VALUE of t. */
15287 expr = make_node (EXPR_PACK_EXPANSION);
15288 PACK_EXPANSION_PARAMETER_PACKS (expr) =
15289 PACK_EXPANSION_PARAMETER_PACKS (TREE_PURPOSE (t));
15290
625b6d91
DG
15291 if (TREE_VALUE (t) == void_type_node)
15292 /* VOID_TYPE_NODE is used to indicate
15293 value-initialization. */
15294 {
15295 for (i = 0; i < len; i++)
15296 TREE_VEC_ELT (expanded_arguments, i) = void_type_node;
15297 }
15298 else
15299 {
15300 /* Substitute parameter packs into each argument in the
15301 TREE_LIST. */
15302 in_base_initializer = 1;
15303 for (arg = TREE_VALUE (t); arg; arg = TREE_CHAIN (arg))
15304 {
15305 tree expanded_exprs;
15306
15307 /* Expand the argument. */
15308 SET_PACK_EXPANSION_PATTERN (expr, TREE_VALUE (arg));
15309 expanded_exprs
15310 = tsubst_pack_expansion (expr, argvec,
15311 tf_warning_or_error,
15312 NULL_TREE);
15313
15314 /* Prepend each of the expanded expressions to the
15315 corresponding TREE_LIST in EXPANDED_ARGUMENTS. */
15316 for (i = 0; i < len; i++)
15317 {
15318 TREE_VEC_ELT (expanded_arguments, i) =
15319 tree_cons (NULL_TREE,
15320 TREE_VEC_ELT (expanded_exprs, i),
15321 TREE_VEC_ELT (expanded_arguments, i));
15322 }
15323 }
15324 in_base_initializer = 0;
5d80a306 15325
625b6d91
DG
15326 /* Reverse all of the TREE_LISTs in EXPANDED_ARGUMENTS,
15327 since we built them backwards. */
15328 for (i = 0; i < len; i++)
15329 {
15330 TREE_VEC_ELT (expanded_arguments, i) =
15331 nreverse (TREE_VEC_ELT (expanded_arguments, i));
15332 }
15333 }
5d80a306 15334 }
1f5a253a 15335
5d80a306
DG
15336 for (i = 0; i < len; ++i)
15337 {
15338 if (expanded_bases)
15339 {
15340 decl = TREE_VEC_ELT (expanded_bases, i);
15341 decl = expand_member_init (decl);
15342 init = TREE_VEC_ELT (expanded_arguments, i);
15343 }
15344 else
15345 {
15346 decl = tsubst_copy (TREE_PURPOSE (t), argvec,
15347 tf_warning_or_error, NULL_TREE);
15348
15349 decl = expand_member_init (decl);
15350 if (decl && !DECL_P (decl))
15351 in_base_initializer = 1;
15352
15353 init = tsubst_expr (TREE_VALUE (t), argvec,
15354 tf_warning_or_error, NULL_TREE,
15355 /*integral_constant_expression_p=*/false);
15356 in_base_initializer = 0;
15357 }
15358
15359 if (decl)
15360 {
15361 init = build_tree_list (decl, init);
15362 TREE_CHAIN (init) = inits;
15363 inits = init;
15364 }
15365 }
5566b478 15366 }
2282d28d 15367 return inits;
5566b478
MS
15368}
15369
61a127b3
MM
15370/* Set CURRENT_ACCESS_SPECIFIER based on the protection of DECL. */
15371
15372static void
3a978d72 15373set_current_access_from_decl (tree decl)
61a127b3
MM
15374{
15375 if (TREE_PRIVATE (decl))
15376 current_access_specifier = access_private_node;
15377 else if (TREE_PROTECTED (decl))
15378 current_access_specifier = access_protected_node;
15379 else
15380 current_access_specifier = access_public_node;
15381}
15382
dbfe2124
MM
15383/* Instantiate an enumerated type. TAG is the template type, NEWTAG
15384 is the instantiation (which should have been created with
15385 start_enum) and ARGS are the template arguments to use. */
b87692e5 15386
dbfe2124 15387static void
3a978d72 15388tsubst_enum (tree tag, tree newtag, tree args)
b87692e5 15389{
dbfe2124 15390 tree e;
b87692e5
MS
15391
15392 for (e = TYPE_VALUES (tag); e; e = TREE_CHAIN (e))
15393 {
61a127b3 15394 tree value;
7b6d72fc
MM
15395 tree decl;
15396
15397 decl = TREE_VALUE (e);
61a127b3
MM
15398 /* Note that in a template enum, the TREE_VALUE is the
15399 CONST_DECL, not the corresponding INTEGER_CST. */
c8094d83 15400 value = tsubst_expr (DECL_INITIAL (decl),
015c2c66
MM
15401 args, tf_warning_or_error, NULL_TREE,
15402 /*integral_constant_expression_p=*/true);
61a127b3
MM
15403
15404 /* Give this enumeration constant the correct access. */
7b6d72fc 15405 set_current_access_from_decl (decl);
61a127b3
MM
15406
15407 /* Actually build the enumerator itself. */
c8094d83 15408 build_enumerator (DECL_NAME (decl), value, newtag);
dbfe2124 15409 }
b3d5a58b 15410
219670f1 15411 finish_enum (newtag);
f31686a3
RH
15412 DECL_SOURCE_LOCATION (TYPE_NAME (newtag))
15413 = DECL_SOURCE_LOCATION (TYPE_NAME (tag));
b87692e5 15414}
36a117a5 15415
1f6e1acc
AS
15416/* DECL is a FUNCTION_DECL that is a template specialization. Return
15417 its type -- but without substituting the innermost set of template
15418 arguments. So, innermost set of template parameters will appear in
5c74d5b0 15419 the type. */
1f6e1acc 15420
c8094d83 15421tree
3a978d72 15422get_mostly_instantiated_function_type (tree decl)
1f6e1acc 15423{
1f6e1acc
AS
15424 tree fn_type;
15425 tree tmpl;
15426 tree targs;
15427 tree tparms;
15428 int parm_depth;
15429
15430 tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
15431 targs = DECL_TI_ARGS (decl);
15432 tparms = DECL_TEMPLATE_PARMS (tmpl);
15433 parm_depth = TMPL_PARMS_DEPTH (tparms);
15434
15435 /* There should be as many levels of arguments as there are levels
15436 of parameters. */
50bc768d 15437 gcc_assert (parm_depth == TMPL_ARGS_DEPTH (targs));
1f6e1acc
AS
15438
15439 fn_type = TREE_TYPE (tmpl);
1f6e1acc
AS
15440
15441 if (parm_depth == 1)
15442 /* No substitution is necessary. */
15443 ;
15444 else
15445 {
fae6e246 15446 int i, save_access_control;
1f6e1acc
AS
15447 tree partial_args;
15448
15449 /* Replace the innermost level of the TARGS with NULL_TREEs to
dc957d14 15450 let tsubst know not to substitute for those parameters. */
1f6e1acc
AS
15451 partial_args = make_tree_vec (TREE_VEC_LENGTH (targs));
15452 for (i = 1; i < TMPL_ARGS_DEPTH (targs); ++i)
15453 SET_TMPL_ARGS_LEVEL (partial_args, i,
15454 TMPL_ARGS_LEVEL (targs, i));
15455 SET_TMPL_ARGS_LEVEL (partial_args,
15456 TMPL_ARGS_DEPTH (targs),
15457 make_tree_vec (DECL_NTPARMS (tmpl)));
15458
fae6e246
RH
15459 /* Disable access control as this function is used only during
15460 name-mangling. */
15461 save_access_control = flag_access_control;
15462 flag_access_control = 0;
5c74d5b0 15463
9579624e 15464 ++processing_template_decl;
1f6e1acc
AS
15465 /* Now, do the (partial) substitution to figure out the
15466 appropriate function type. */
c2ea3a40 15467 fn_type = tsubst (fn_type, partial_args, tf_error, NULL_TREE);
9579624e 15468 --processing_template_decl;
1f6e1acc
AS
15469
15470 /* Substitute into the template parameters to obtain the real
15471 innermost set of parameters. This step is important if the
15472 innermost set of template parameters contains value
15473 parameters whose types depend on outer template parameters. */
15474 TREE_VEC_LENGTH (partial_args)--;
c2ea3a40 15475 tparms = tsubst_template_parms (tparms, partial_args, tf_error);
1f6e1acc 15476
fae6e246 15477 flag_access_control = save_access_control;
5c74d5b0 15478 }
1f6e1acc
AS
15479
15480 return fn_type;
15481}
669ec2b4 15482
cb753e49 15483/* Return truthvalue if we're processing a template different from
dc957d14 15484 the last one involved in diagnostics. */
cb753e49 15485int
3a978d72 15486problematic_instantiation_changed (void)
cb753e49
GDR
15487{
15488 return last_template_error_tick != tinst_level_tick;
15489}
15490
15491/* Remember current template involved in diagnostics. */
15492void
3a978d72 15493record_last_problematic_instantiation (void)
cb753e49
GDR
15494{
15495 last_template_error_tick = tinst_level_tick;
15496}
15497
e2c3721c 15498struct tinst_level *
3a978d72 15499current_instantiation (void)
cb753e49
GDR
15500{
15501 return current_tinst_level;
15502}
db3f4e4e
NS
15503
15504/* [temp.param] Check that template non-type parm TYPE is of an allowable
838dfd8a 15505 type. Return zero for ok, nonzero for disallowed. Issue error and
c2ea3a40 15506 warning messages under control of COMPLAIN. */
db3f4e4e
NS
15507
15508static int
3a978d72 15509invalid_nontype_parm_type_p (tree type, tsubst_flags_t complain)
db3f4e4e
NS
15510{
15511 if (INTEGRAL_TYPE_P (type))
15512 return 0;
15513 else if (POINTER_TYPE_P (type))
15514 return 0;
a5ac359a 15515 else if (TYPE_PTR_TO_MEMBER_P (type))
db3f4e4e 15516 return 0;
db3f4e4e
NS
15517 else if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
15518 return 0;
15519 else if (TREE_CODE (type) == TYPENAME_TYPE)
15520 return 0;
c8094d83 15521
c2ea3a40 15522 if (complain & tf_error)
0f51ccfc 15523 error ("%q#T is not a valid type for a template constant parameter", type);
db3f4e4e
NS
15524 return 1;
15525}
e2500fed 15526
5552b43c
MM
15527/* Returns TRUE if TYPE is dependent, in the sense of [temp.dep.type].
15528 Assumes that TYPE really is a type, and not the ERROR_MARK_NODE.*/
1fb3244a 15529
5552b43c
MM
15530static bool
15531dependent_type_p_r (tree type)
1fb3244a
MM
15532{
15533 tree scope;
15534
1fb3244a
MM
15535 /* [temp.dep.type]
15536
15537 A type is dependent if it is:
15538
6615c446
JO
15539 -- a template parameter. Template template parameters are types
15540 for us (since TYPE_P holds true for them) so we handle
15541 them here. */
c8094d83 15542 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
6bf92cb6 15543 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM)
1fb3244a
MM
15544 return true;
15545 /* -- a qualified-id with a nested-name-specifier which contains a
0cbd7506 15546 class-name that names a dependent type or whose unqualified-id
1fb3244a
MM
15547 names a dependent type. */
15548 if (TREE_CODE (type) == TYPENAME_TYPE)
15549 return true;
15550 /* -- a cv-qualified type where the cv-unqualified type is
0cbd7506 15551 dependent. */
1fb3244a
MM
15552 type = TYPE_MAIN_VARIANT (type);
15553 /* -- a compound type constructed from any dependent type. */
a5ac359a 15554 if (TYPE_PTR_TO_MEMBER_P (type))
1fb3244a 15555 return (dependent_type_p (TYPE_PTRMEM_CLASS_TYPE (type))
c8094d83 15556 || dependent_type_p (TYPE_PTRMEM_POINTED_TO_TYPE
1fb3244a
MM
15557 (type)));
15558 else if (TREE_CODE (type) == POINTER_TYPE
15559 || TREE_CODE (type) == REFERENCE_TYPE)
15560 return dependent_type_p (TREE_TYPE (type));
15561 else if (TREE_CODE (type) == FUNCTION_TYPE
15562 || TREE_CODE (type) == METHOD_TYPE)
15563 {
15564 tree arg_type;
15565
15566 if (dependent_type_p (TREE_TYPE (type)))
15567 return true;
c8094d83
MS
15568 for (arg_type = TYPE_ARG_TYPES (type);
15569 arg_type;
1fb3244a
MM
15570 arg_type = TREE_CHAIN (arg_type))
15571 if (dependent_type_p (TREE_VALUE (arg_type)))
15572 return true;
15573 return false;
15574 }
15575 /* -- an array type constructed from any dependent type or whose
0cbd7506 15576 size is specified by a constant expression that is
1fb3244a
MM
15577 value-dependent. */
15578 if (TREE_CODE (type) == ARRAY_TYPE)
15579 {
15580 if (TYPE_DOMAIN (type)
82390eb6 15581 && dependent_type_p (TYPE_DOMAIN (type)))
1fb3244a
MM
15582 return true;
15583 return dependent_type_p (TREE_TYPE (type));
15584 }
82390eb6
JM
15585 else if (TREE_CODE (type) == INTEGER_TYPE
15586 && !TREE_CONSTANT (TYPE_MAX_VALUE (type)))
15587 {
15588 /* If this is the TYPE_DOMAIN of an array type, consider it
15589 dependent. */
15590 return (value_dependent_expression_p (TYPE_MAX_VALUE (type))
15591 || type_dependent_expression_p (TYPE_MAX_VALUE (type)));
15592 }
c8094d83 15593
1fb3244a 15594 /* -- a template-id in which either the template name is a template
86306a6b
NS
15595 parameter ... */
15596 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
1fb3244a 15597 return true;
86306a6b 15598 /* ... or any of the template arguments is a dependent type or
04c06002 15599 an expression that is type-dependent or value-dependent. */
86306a6b 15600 else if (CLASS_TYPE_P (type) && CLASSTYPE_TEMPLATE_INFO (type)
c8094d83 15601 && (any_dependent_template_arguments_p
7e99327d 15602 (INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type)))))
1fb3244a 15603 return true;
c8094d83 15604
3ad6a8e1
DG
15605 /* All TYPEOF_TYPEs and DECLTYPE_TYPEs are dependent; if the
15606 argument of the `typeof' expression is not type-dependent, then
15607 it should already been have resolved. */
15608 if (TREE_CODE (type) == TYPEOF_TYPE
15609 || TREE_CODE (type) == DECLTYPE_TYPE)
1fb3244a 15610 return true;
c8094d83 15611
5d80a306
DG
15612 /* A template argument pack is dependent if any of its packed
15613 arguments are. */
15614 if (TREE_CODE (type) == TYPE_ARGUMENT_PACK)
15615 {
15616 tree args = ARGUMENT_PACK_ARGS (type);
15617 int i, len = TREE_VEC_LENGTH (args);
15618 for (i = 0; i < len; ++i)
15619 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
15620 return true;
15621 }
15622
15623 /* All TYPE_PACK_EXPANSIONs are dependent, because parameter packs must
15624 be template parameters. */
15625 if (TREE_CODE (type) == TYPE_PACK_EXPANSION)
15626 return true;
15627
1fb3244a
MM
15628 /* The standard does not specifically mention types that are local
15629 to template functions or local classes, but they should be
15630 considered dependent too. For example:
15631
c8094d83 15632 template <int I> void f() {
0cbd7506 15633 enum E { a = I };
1fb3244a
MM
15634 S<sizeof (E)> s;
15635 }
15636
15637 The size of `E' cannot be known until the value of `I' has been
15638 determined. Therefore, `E' must be considered dependent. */
15639 scope = TYPE_CONTEXT (type);
15640 if (scope && TYPE_P (scope))
15641 return dependent_type_p (scope);
15642 else if (scope && TREE_CODE (scope) == FUNCTION_DECL)
15643 return type_dependent_expression_p (scope);
15644
15645 /* Other types are non-dependent. */
15646 return false;
15647}
15648
5552b43c
MM
15649/* Returns TRUE if TYPE is dependent, in the sense of
15650 [temp.dep.type]. */
15651
15652bool
15653dependent_type_p (tree type)
15654{
15655 /* If there are no template parameters in scope, then there can't be
15656 any dependent types. */
15657 if (!processing_template_decl)
e7e93965
MM
15658 {
15659 /* If we are not processing a template, then nobody should be
15660 providing us with a dependent type. */
15661 gcc_assert (type);
15662 gcc_assert (TREE_CODE (type) != TEMPLATE_TYPE_PARM);
15663 return false;
15664 }
5552b43c
MM
15665
15666 /* If the type is NULL, we have not computed a type for the entity
15667 in question; in that case, the type is dependent. */
15668 if (!type)
15669 return true;
15670
15671 /* Erroneous types can be considered non-dependent. */
15672 if (type == error_mark_node)
15673 return false;
15674
15675 /* If we have not already computed the appropriate value for TYPE,
15676 do so now. */
15677 if (!TYPE_DEPENDENT_P_VALID (type))
15678 {
15679 TYPE_DEPENDENT_P (type) = dependent_type_p_r (type);
15680 TYPE_DEPENDENT_P_VALID (type) = 1;
15681 }
15682
15683 return TYPE_DEPENDENT_P (type);
15684}
15685
8d83f792
MM
15686/* Returns TRUE if EXPRESSION is dependent, according to CRITERION. */
15687
15688static bool
15689dependent_scope_ref_p (tree expression, bool criterion (tree))
15690{
15691 tree scope;
15692 tree name;
15693
50bc768d 15694 gcc_assert (TREE_CODE (expression) == SCOPE_REF);
8d83f792
MM
15695
15696 if (!TYPE_P (TREE_OPERAND (expression, 0)))
15697 return true;
15698
15699 scope = TREE_OPERAND (expression, 0);
15700 name = TREE_OPERAND (expression, 1);
15701
15702 /* [temp.dep.expr]
15703
15704 An id-expression is type-dependent if it contains a
15705 nested-name-specifier that contains a class-name that names a
15706 dependent type. */
15707 /* The suggested resolution to Core Issue 2 implies that if the
15708 qualifying type is the current class, then we must peek
15709 inside it. */
c8094d83 15710 if (DECL_P (name)
8d83f792
MM
15711 && currently_open_class (scope)
15712 && !criterion (name))
15713 return false;
15714 if (dependent_type_p (scope))
15715 return true;
15716
15717 return false;
15718}
15719
20929c7f 15720/* Returns TRUE if the EXPRESSION is value-dependent, in the sense of
fe89d797
MM
15721 [temp.dep.constexpr]. EXPRESSION is already known to be a constant
15722 expression. */
1fb3244a 15723
14d22dd6 15724bool
1fb3244a
MM
15725value_dependent_expression_p (tree expression)
15726{
15727 if (!processing_template_decl)
15728 return false;
15729
15730 /* A name declared with a dependent type. */
7416ab02 15731 if (DECL_P (expression) && type_dependent_expression_p (expression))
1fb3244a 15732 return true;
c8094d83 15733
7416ab02
NS
15734 switch (TREE_CODE (expression))
15735 {
15736 case IDENTIFIER_NODE:
15737 /* A name that has not been looked up -- must be dependent. */
15738 return true;
15739
15740 case TEMPLATE_PARM_INDEX:
15741 /* A non-type template parm. */
15742 return true;
15743
15744 case CONST_DECL:
15745 /* A non-type template parm. */
15746 if (DECL_TEMPLATE_PARM_P (expression))
d17811fd 15747 return true;
3387721b 15748 return value_dependent_expression_p (DECL_INITIAL (expression));
d36d5600 15749
7416ab02 15750 case VAR_DECL:
c8094d83 15751 /* A constant with integral or enumeration type and is initialized
0cbd7506 15752 with an expression that is value-dependent. */
7416ab02
NS
15753 if (DECL_INITIAL (expression)
15754 && INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (expression))
15755 && value_dependent_expression_p (DECL_INITIAL (expression)))
15756 return true;
15757 return false;
15758
15759 case DYNAMIC_CAST_EXPR:
15760 case STATIC_CAST_EXPR:
15761 case CONST_CAST_EXPR:
15762 case REINTERPRET_CAST_EXPR:
15763 case CAST_EXPR:
15764 /* These expressions are value-dependent if the type to which
0cbd7506
MS
15765 the cast occurs is dependent or the expression being casted
15766 is value-dependent. */
7416ab02
NS
15767 {
15768 tree type = TREE_TYPE (expression);
c8094d83 15769
7416ab02
NS
15770 if (dependent_type_p (type))
15771 return true;
c8094d83 15772
7416ab02
NS
15773 /* A functional cast has a list of operands. */
15774 expression = TREE_OPERAND (expression, 0);
15775 if (!expression)
15776 {
15777 /* If there are no operands, it must be an expression such
15778 as "int()". This should not happen for aggregate types
15779 because it would form non-constant expressions. */
15780 gcc_assert (INTEGRAL_OR_ENUMERATION_TYPE_P (type));
c8094d83 15781
7416ab02
NS
15782 return false;
15783 }
c8094d83 15784
7416ab02 15785 if (TREE_CODE (expression) == TREE_LIST)
32a11c08 15786 return any_value_dependent_elements_p (expression);
c8094d83 15787
d17811fd 15788 return value_dependent_expression_p (expression);
7416ab02 15789 }
c8094d83 15790
7416ab02
NS
15791 case SIZEOF_EXPR:
15792 case ALIGNOF_EXPR:
15793 /* A `sizeof' expression is value-dependent if the operand is
5d80a306 15794 type-dependent or is a pack expansion. */
d17811fd 15795 expression = TREE_OPERAND (expression, 0);
5d80a306
DG
15796 if (PACK_EXPANSION_P (expression))
15797 return true;
15798 else if (TYPE_P (expression))
d17811fd
MM
15799 return dependent_type_p (expression);
15800 return type_dependent_expression_p (expression);
100d337a 15801
7416ab02
NS
15802 case SCOPE_REF:
15803 return dependent_scope_ref_p (expression, value_dependent_expression_p);
100d337a 15804
7416ab02
NS
15805 case COMPONENT_REF:
15806 return (value_dependent_expression_p (TREE_OPERAND (expression, 0))
15807 || value_dependent_expression_p (TREE_OPERAND (expression, 1)));
15808
15809 case CALL_EXPR:
fe89d797
MM
15810 /* A CALL_EXPR may appear in a constant expression if it is a
15811 call to a builtin function, e.g., __builtin_constant_p. All
15812 such calls are value-dependent. */
15813 return true;
7416ab02 15814
5d80a306
DG
15815 case NONTYPE_ARGUMENT_PACK:
15816 /* A NONTYPE_ARGUMENT_PACK is value-dependent if any packed argument
15817 is value-dependent. */
15818 {
15819 tree values = ARGUMENT_PACK_ARGS (expression);
15820 int i, len = TREE_VEC_LENGTH (values);
15821
15822 for (i = 0; i < len; ++i)
15823 if (value_dependent_expression_p (TREE_VEC_ELT (values, i)))
15824 return true;
15825
15826 return false;
15827 }
15828
cb68ec50
PC
15829 case TRAIT_EXPR:
15830 {
15831 tree type2 = TRAIT_EXPR_TYPE2 (expression);
15832 return (dependent_type_p (TRAIT_EXPR_TYPE1 (expression))
15833 || (type2 ? dependent_type_p (type2) : false));
15834 }
15835
f01ec37d
SM
15836 case MODOP_EXPR:
15837 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
15838 || (value_dependent_expression_p (TREE_OPERAND (expression, 2))));
15839
7416ab02
NS
15840 default:
15841 /* A constant expression is value-dependent if any subexpression is
0cbd7506 15842 value-dependent. */
1fb3244a
MM
15843 switch (TREE_CODE_CLASS (TREE_CODE (expression)))
15844 {
7416ab02 15845 case tcc_reference:
6615c446 15846 case tcc_unary:
c8094d83 15847 return (value_dependent_expression_p
1fb3244a 15848 (TREE_OPERAND (expression, 0)));
c8094d83 15849
6615c446
JO
15850 case tcc_comparison:
15851 case tcc_binary:
c8094d83 15852 return ((value_dependent_expression_p
1fb3244a 15853 (TREE_OPERAND (expression, 0)))
c8094d83 15854 || (value_dependent_expression_p
1fb3244a 15855 (TREE_OPERAND (expression, 1))));
c8094d83 15856
6615c446 15857 case tcc_expression:
5039610b 15858 case tcc_vl_exp:
1fb3244a
MM
15859 {
15860 int i;
5039610b 15861 for (i = 0; i < TREE_OPERAND_LENGTH (expression); ++i)
14d22dd6
MM
15862 /* In some cases, some of the operands may be missing.
15863 (For example, in the case of PREDECREMENT_EXPR, the
15864 amount to increment by may be missing.) That doesn't
15865 make the expression dependent. */
15866 if (TREE_OPERAND (expression, i)
15867 && (value_dependent_expression_p
15868 (TREE_OPERAND (expression, i))))
1fb3244a
MM
15869 return true;
15870 return false;
15871 }
c8094d83 15872
6615c446 15873 default:
7416ab02 15874 break;
1fb3244a
MM
15875 }
15876 }
c8094d83 15877
1fb3244a
MM
15878 /* The expression is not value-dependent. */
15879 return false;
15880}
15881
15882/* Returns TRUE if the EXPRESSION is type-dependent, in the sense of
15883 [temp.dep.expr]. */
15884
15885bool
3a978d72 15886type_dependent_expression_p (tree expression)
1fb3244a
MM
15887{
15888 if (!processing_template_decl)
15889 return false;
15890
7efa3e22
NS
15891 if (expression == error_mark_node)
15892 return false;
10b1d5e7
MM
15893
15894 /* An unresolved name is always dependent. */
b01e6d2b
JM
15895 if (TREE_CODE (expression) == IDENTIFIER_NODE
15896 || TREE_CODE (expression) == USING_DECL)
10b1d5e7 15897 return true;
c8094d83 15898
1fb3244a
MM
15899 /* Some expression forms are never type-dependent. */
15900 if (TREE_CODE (expression) == PSEUDO_DTOR_EXPR
15901 || TREE_CODE (expression) == SIZEOF_EXPR
15902 || TREE_CODE (expression) == ALIGNOF_EXPR
cb68ec50 15903 || TREE_CODE (expression) == TRAIT_EXPR
1fb3244a
MM
15904 || TREE_CODE (expression) == TYPEID_EXPR
15905 || TREE_CODE (expression) == DELETE_EXPR
15906 || TREE_CODE (expression) == VEC_DELETE_EXPR
15907 || TREE_CODE (expression) == THROW_EXPR)
15908 return false;
15909
15910 /* The types of these expressions depends only on the type to which
15911 the cast occurs. */
15912 if (TREE_CODE (expression) == DYNAMIC_CAST_EXPR
15913 || TREE_CODE (expression) == STATIC_CAST_EXPR
15914 || TREE_CODE (expression) == CONST_CAST_EXPR
15915 || TREE_CODE (expression) == REINTERPRET_CAST_EXPR
15916 || TREE_CODE (expression) == CAST_EXPR)
15917 return dependent_type_p (TREE_TYPE (expression));
d17811fd 15918
1fb3244a
MM
15919 /* The types of these expressions depends only on the type created
15920 by the expression. */
d17811fd
MM
15921 if (TREE_CODE (expression) == NEW_EXPR
15922 || TREE_CODE (expression) == VEC_NEW_EXPR)
09d2f85f
KL
15923 {
15924 /* For NEW_EXPR tree nodes created inside a template, either
15925 the object type itself or a TREE_LIST may appear as the
15926 operand 1. */
15927 tree type = TREE_OPERAND (expression, 1);
15928 if (TREE_CODE (type) == TREE_LIST)
15929 /* This is an array type. We need to check array dimensions
15930 as well. */
15931 return dependent_type_p (TREE_VALUE (TREE_PURPOSE (type)))
15932 || value_dependent_expression_p
15933 (TREE_OPERAND (TREE_VALUE (type), 1));
15934 else
15935 return dependent_type_p (type);
15936 }
1fb3244a 15937
5a57f1b2
JM
15938 if (TREE_CODE (expression) == SCOPE_REF
15939 && dependent_scope_ref_p (expression,
15940 type_dependent_expression_p))
15941 return true;
15942
15943 if (TREE_CODE (expression) == FUNCTION_DECL
15944 && DECL_LANG_SPECIFIC (expression)
15945 && DECL_TEMPLATE_INFO (expression)
15946 && (any_dependent_template_arguments_p
15947 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (expression)))))
15948 return true;
15949
15950 if (TREE_CODE (expression) == TEMPLATE_DECL
15951 && !DECL_TEMPLATE_TEMPLATE_PARM_P (expression))
15952 return false;
15953
c2acde1e
JM
15954 if (TREE_CODE (expression) == STMT_EXPR)
15955 expression = stmt_expr_value_expr (expression);
15956
d17811fd
MM
15957 if (TREE_TYPE (expression) == unknown_type_node)
15958 {
15959 if (TREE_CODE (expression) == ADDR_EXPR)
15960 return type_dependent_expression_p (TREE_OPERAND (expression, 0));
c353b8e3
MM
15961 if (TREE_CODE (expression) == COMPONENT_REF
15962 || TREE_CODE (expression) == OFFSET_REF)
6cb89308
NS
15963 {
15964 if (type_dependent_expression_p (TREE_OPERAND (expression, 0)))
15965 return true;
15966 expression = TREE_OPERAND (expression, 1);
15967 if (TREE_CODE (expression) == IDENTIFIER_NODE)
15968 return false;
15969 }
3601f003
KL
15970 /* SCOPE_REF with non-null TREE_TYPE is always non-dependent. */
15971 if (TREE_CODE (expression) == SCOPE_REF)
15972 return false;
c8094d83 15973
d17811fd
MM
15974 if (TREE_CODE (expression) == BASELINK)
15975 expression = BASELINK_FUNCTIONS (expression);
c8094d83 15976
d17811fd
MM
15977 if (TREE_CODE (expression) == TEMPLATE_ID_EXPR)
15978 {
ee3071ef
NS
15979 if (any_dependent_template_arguments_p
15980 (TREE_OPERAND (expression, 1)))
d17811fd
MM
15981 return true;
15982 expression = TREE_OPERAND (expression, 0);
15983 }
b207d6e2
MM
15984 gcc_assert (TREE_CODE (expression) == OVERLOAD
15985 || TREE_CODE (expression) == FUNCTION_DECL);
c8094d83 15986
315fb5db 15987 while (expression)
d17811fd 15988 {
315fb5db
NS
15989 if (type_dependent_expression_p (OVL_CURRENT (expression)))
15990 return true;
15991 expression = OVL_NEXT (expression);
d17811fd 15992 }
315fb5db 15993 return false;
d17811fd 15994 }
c8094d83 15995
3ce5fa4f 15996 gcc_assert (TREE_CODE (expression) != TYPE_DECL);
3db45ab5 15997
1fb3244a
MM
15998 return (dependent_type_p (TREE_TYPE (expression)));
15999}
16000
d17811fd
MM
16001/* Returns TRUE if ARGS (a TREE_LIST of arguments to a function call)
16002 contains a type-dependent expression. */
1fb3244a
MM
16003
16004bool
58f9752a 16005any_type_dependent_arguments_p (const_tree args)
d17811fd
MM
16006{
16007 while (args)
16008 {
7efa3e22
NS
16009 tree arg = TREE_VALUE (args);
16010
16011 if (type_dependent_expression_p (arg))
d17811fd
MM
16012 return true;
16013 args = TREE_CHAIN (args);
16014 }
16015 return false;
16016}
16017
32a11c08
MM
16018/* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
16019 expressions) contains any value-dependent expressions. */
16020
16021bool
58f9752a 16022any_value_dependent_elements_p (const_tree list)
32a11c08
MM
16023{
16024 for (; list; list = TREE_CHAIN (list))
16025 if (value_dependent_expression_p (TREE_VALUE (list)))
16026 return true;
16027
16028 return false;
16029}
16030
d17811fd
MM
16031/* Returns TRUE if the ARG (a template argument) is dependent. */
16032
5d80a306 16033bool
1fb3244a
MM
16034dependent_template_arg_p (tree arg)
16035{
16036 if (!processing_template_decl)
16037 return false;
16038
16039 if (TREE_CODE (arg) == TEMPLATE_DECL
16040 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
16041 return dependent_template_p (arg);
5d80a306
DG
16042 else if (ARGUMENT_PACK_P (arg))
16043 {
16044 tree args = ARGUMENT_PACK_ARGS (arg);
16045 int i, len = TREE_VEC_LENGTH (args);
16046 for (i = 0; i < len; ++i)
16047 {
16048 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
16049 return true;
16050 }
16051
16052 return false;
16053 }
1fb3244a
MM
16054 else if (TYPE_P (arg))
16055 return dependent_type_p (arg);
16056 else
16057 return (type_dependent_expression_p (arg)
16058 || value_dependent_expression_p (arg));
16059}
16060
06d40de8
DG
16061/* Returns true if ARGS (a collection of template arguments) contains
16062 any types that require structural equality testing. */
16063
16064bool
16065any_template_arguments_need_structural_equality_p (tree args)
16066{
16067 int i;
16068 int j;
16069
16070 if (!args)
16071 return false;
16072 if (args == error_mark_node)
16073 return true;
16074
16075 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
16076 {
16077 tree level = TMPL_ARGS_LEVEL (args, i + 1);
16078 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
16079 {
16080 tree arg = TREE_VEC_ELT (level, j);
5d80a306
DG
16081 tree packed_args = NULL_TREE;
16082 int k, len = 1;
16083
16084 if (ARGUMENT_PACK_P (arg))
16085 {
16086 /* Look inside the argument pack. */
16087 packed_args = ARGUMENT_PACK_ARGS (arg);
16088 len = TREE_VEC_LENGTH (packed_args);
16089 }
16090
16091 for (k = 0; k < len; ++k)
16092 {
16093 if (packed_args)
16094 arg = TREE_VEC_ELT (packed_args, k);
16095
16096 if (error_operand_p (arg))
16097 return true;
16098 else if (TREE_CODE (arg) == TEMPLATE_DECL
16099 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
16100 continue;
16101 else if (TYPE_P (arg) && TYPE_STRUCTURAL_EQUALITY_P (arg))
16102 return true;
16103 else if (!TYPE_P (arg) && TREE_TYPE (arg)
16104 && TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (arg)))
16105 return true;
16106 }
06d40de8
DG
16107 }
16108 }
16109
16110 return false;
16111}
16112
d17811fd
MM
16113/* Returns true if ARGS (a collection of template arguments) contains
16114 any dependent arguments. */
1fb3244a 16115
d17811fd 16116bool
58f9752a 16117any_dependent_template_arguments_p (const_tree args)
1fb3244a 16118{
bf12d54d 16119 int i;
c353b8e3
MM
16120 int j;
16121
d17811fd
MM
16122 if (!args)
16123 return false;
7e497d0c
VR
16124 if (args == error_mark_node)
16125 return true;
d17811fd 16126
c353b8e3
MM
16127 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
16128 {
58f9752a 16129 const_tree level = TMPL_ARGS_LEVEL (args, i + 1);
c353b8e3
MM
16130 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
16131 if (dependent_template_arg_p (TREE_VEC_ELT (level, j)))
16132 return true;
16133 }
1fb3244a 16134
1fb3244a
MM
16135 return false;
16136}
16137
16138/* Returns TRUE if the template TMPL is dependent. */
16139
16140bool
16141dependent_template_p (tree tmpl)
16142{
b95cc51a
MM
16143 if (TREE_CODE (tmpl) == OVERLOAD)
16144 {
16145 while (tmpl)
16146 {
16147 if (dependent_template_p (OVL_FUNCTION (tmpl)))
16148 return true;
16149 tmpl = OVL_CHAIN (tmpl);
16150 }
16151 return false;
16152 }
16153
1fb3244a
MM
16154 /* Template template parameters are dependent. */
16155 if (DECL_TEMPLATE_TEMPLATE_PARM_P (tmpl)
16156 || TREE_CODE (tmpl) == TEMPLATE_TEMPLATE_PARM)
16157 return true;
27ab0504 16158 /* So are names that have not been looked up. */
acccf788
MM
16159 if (TREE_CODE (tmpl) == SCOPE_REF
16160 || TREE_CODE (tmpl) == IDENTIFIER_NODE)
d17811fd 16161 return true;
1fb3244a
MM
16162 /* So are member templates of dependent classes. */
16163 if (TYPE_P (CP_DECL_CONTEXT (tmpl)))
16164 return dependent_type_p (DECL_CONTEXT (tmpl));
16165 return false;
16166}
16167
d17811fd
MM
16168/* Returns TRUE if the specialization TMPL<ARGS> is dependent. */
16169
16170bool
16171dependent_template_id_p (tree tmpl, tree args)
16172{
16173 return (dependent_template_p (tmpl)
16174 || any_dependent_template_arguments_p (args));
16175}
16176
14d22dd6 16177/* TYPE is a TYPENAME_TYPE. Returns the ordinary TYPE to which the
4195a767
NS
16178 TYPENAME_TYPE corresponds. Returns the original TYPENAME_TYPE if
16179 no such TYPE can be found. Note that this function peers inside
16180 uninstantiated templates and therefore should be used only in
16181 extremely limited situations. ONLY_CURRENT_P restricts this
16182 peering to the currently open classes hierarchy (which is required
16183 when comparing types). */
14d22dd6
MM
16184
16185tree
16186resolve_typename_type (tree type, bool only_current_p)
16187{
16188 tree scope;
16189 tree name;
16190 tree decl;
16191 int quals;
4514aa8c 16192 tree pushed_scope;
4195a767 16193 tree result;
14d22dd6 16194
50bc768d 16195 gcc_assert (TREE_CODE (type) == TYPENAME_TYPE);
14d22dd6
MM
16196
16197 scope = TYPE_CONTEXT (type);
16198 name = TYPE_IDENTIFIER (type);
16199
16200 /* If the SCOPE is itself a TYPENAME_TYPE, then we need to resolve
16201 it first before we can figure out what NAME refers to. */
16202 if (TREE_CODE (scope) == TYPENAME_TYPE)
16203 scope = resolve_typename_type (scope, only_current_p);
16204 /* If we don't know what SCOPE refers to, then we cannot resolve the
16205 TYPENAME_TYPE. */
4195a767
NS
16206 if (TREE_CODE (scope) == TYPENAME_TYPE)
16207 return type;
14d22dd6
MM
16208 /* If the SCOPE is a template type parameter, we have no way of
16209 resolving the name. */
16210 if (TREE_CODE (scope) == TEMPLATE_TYPE_PARM)
16211 return type;
16212 /* If the SCOPE is not the current instantiation, there's no reason
16213 to look inside it. */
16214 if (only_current_p && !currently_open_class (scope))
4195a767 16215 return type;
7a20d689
JM
16216 /* If SCOPE isn't the template itself, it will not have a valid
16217 TYPE_FIELDS list. */
16218 if (same_type_p (scope, CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope)))
16219 /* scope is either the template itself or a compatible instantiation
16220 like X<T>, so look up the name in the original template. */
16221 scope = CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope);
16222 else
16223 /* scope is a partial instantiation, so we can't do the lookup or we
16224 will lose the template arguments. */
16225 return type;
14d22dd6
MM
16226 /* Enter the SCOPE so that name lookup will be resolved as if we
16227 were in the class definition. In particular, SCOPE will no
16228 longer be considered a dependent type. */
4514aa8c 16229 pushed_scope = push_scope (scope);
14d22dd6 16230 /* Look up the declaration. */
86ac0575 16231 decl = lookup_member (scope, name, /*protect=*/0, /*want_type=*/true);
4195a767
NS
16232
16233 result = NULL_TREE;
16234
14d22dd6
MM
16235 /* For a TYPENAME_TYPE like "typename X::template Y<T>", we want to
16236 find a TEMPLATE_DECL. Otherwise, we want to find a TYPE_DECL. */
16237 if (!decl)
4195a767 16238 /*nop*/;
14d22dd6
MM
16239 else if (TREE_CODE (TYPENAME_TYPE_FULLNAME (type)) == IDENTIFIER_NODE
16240 && TREE_CODE (decl) == TYPE_DECL)
4195a767
NS
16241 {
16242 result = TREE_TYPE (decl);
16243 if (result == error_mark_node)
16244 result = NULL_TREE;
16245 }
14d22dd6
MM
16246 else if (TREE_CODE (TYPENAME_TYPE_FULLNAME (type)) == TEMPLATE_ID_EXPR
16247 && DECL_CLASS_TEMPLATE_P (decl))
16248 {
16249 tree tmpl;
16250 tree args;
16251 /* Obtain the template and the arguments. */
16252 tmpl = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 0);
16253 args = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 1);
16254 /* Instantiate the template. */
4195a767
NS
16255 result = lookup_template_class (tmpl, args, NULL_TREE, NULL_TREE,
16256 /*entering_scope=*/0,
16257 tf_error | tf_user);
16258 if (result == error_mark_node)
16259 result = NULL_TREE;
14d22dd6 16260 }
4195a767 16261
14d22dd6 16262 /* Leave the SCOPE. */
4514aa8c
NS
16263 if (pushed_scope)
16264 pop_scope (pushed_scope);
14d22dd6 16265
4195a767
NS
16266 /* If we failed to resolve it, return the original typename. */
16267 if (!result)
16268 return type;
16269
16270 /* If lookup found a typename type, resolve that too. */
16271 if (TREE_CODE (result) == TYPENAME_TYPE && !TYPENAME_IS_RESOLVING_P (result))
16272 {
16273 /* Ill-formed programs can cause infinite recursion here, so we
16274 must catch that. */
16275 TYPENAME_IS_RESOLVING_P (type) = 1;
16276 result = resolve_typename_type (result, only_current_p);
16277 TYPENAME_IS_RESOLVING_P (type) = 0;
16278 }
16279
16280 /* Qualify the resulting type. */
16281 quals = cp_type_quals (type);
16282 if (quals)
16283 result = cp_build_qualified_type (result, cp_type_quals (result) | quals);
16284
16285 return result;
14d22dd6
MM
16286}
16287
d17811fd
MM
16288/* EXPR is an expression which is not type-dependent. Return a proxy
16289 for EXPR that can be used to compute the types of larger
16290 expressions containing EXPR. */
16291
16292tree
16293build_non_dependent_expr (tree expr)
16294{
0deb916c
MM
16295 tree inner_expr;
16296
c8094d83 16297 /* Preserve null pointer constants so that the type of things like
d17811fd
MM
16298 "p == 0" where "p" is a pointer can be determined. */
16299 if (null_ptr_cst_p (expr))
16300 return expr;
16301 /* Preserve OVERLOADs; the functions must be available to resolve
16302 types. */
c497db75 16303 inner_expr = expr;
c2acde1e
JM
16304 if (TREE_CODE (inner_expr) == STMT_EXPR)
16305 inner_expr = stmt_expr_value_expr (inner_expr);
c497db75
AO
16306 if (TREE_CODE (inner_expr) == ADDR_EXPR)
16307 inner_expr = TREE_OPERAND (inner_expr, 0);
16308 if (TREE_CODE (inner_expr) == COMPONENT_REF)
16309 inner_expr = TREE_OPERAND (inner_expr, 1);
2226e997 16310 if (is_overloaded_fn (inner_expr)
6439fffd 16311 || TREE_CODE (inner_expr) == OFFSET_REF)
d17811fd 16312 return expr;
5ae9ba3e
MM
16313 /* There is no need to return a proxy for a variable. */
16314 if (TREE_CODE (expr) == VAR_DECL)
16315 return expr;
7433e6d4
MM
16316 /* Preserve string constants; conversions from string constants to
16317 "char *" are allowed, even though normally a "const char *"
16318 cannot be used to initialize a "char *". */
16319 if (TREE_CODE (expr) == STRING_CST)
16320 return expr;
b7c707d1
MM
16321 /* Preserve arithmetic constants, as an optimization -- there is no
16322 reason to create a new node. */
16323 if (TREE_CODE (expr) == INTEGER_CST || TREE_CODE (expr) == REAL_CST)
16324 return expr;
9b7be7b5
MM
16325 /* Preserve THROW_EXPRs -- all throw-expressions have type "void".
16326 There is at least one place where we want to know that a
16327 particular expression is a throw-expression: when checking a ?:
16328 expression, there are special rules if the second or third
878cbb73 16329 argument is a throw-expression. */
9b7be7b5
MM
16330 if (TREE_CODE (expr) == THROW_EXPR)
16331 return expr;
47d4c811
NS
16332
16333 if (TREE_CODE (expr) == COND_EXPR)
f293ce4b
RS
16334 return build3 (COND_EXPR,
16335 TREE_TYPE (expr),
16336 TREE_OPERAND (expr, 0),
c8094d83 16337 (TREE_OPERAND (expr, 1)
f293ce4b
RS
16338 ? build_non_dependent_expr (TREE_OPERAND (expr, 1))
16339 : build_non_dependent_expr (TREE_OPERAND (expr, 0))),
16340 build_non_dependent_expr (TREE_OPERAND (expr, 2)));
8e1daa34
NS
16341 if (TREE_CODE (expr) == COMPOUND_EXPR
16342 && !COMPOUND_EXPR_OVERLOADED (expr))
f293ce4b
RS
16343 return build2 (COMPOUND_EXPR,
16344 TREE_TYPE (expr),
16345 TREE_OPERAND (expr, 0),
16346 build_non_dependent_expr (TREE_OPERAND (expr, 1)));
c8094d83 16347
fdeff563
NS
16348 /* If the type is unknown, it can't really be non-dependent */
16349 gcc_assert (TREE_TYPE (expr) != unknown_type_node);
3db45ab5 16350
c8094d83 16351 /* Otherwise, build a NON_DEPENDENT_EXPR.
d17811fd
MM
16352
16353 REFERENCE_TYPEs are not stripped for expressions in templates
16354 because doing so would play havoc with mangling. Consider, for
16355 example:
16356
c8094d83 16357 template <typename T> void f<T& g>() { g(); }
d17811fd
MM
16358
16359 In the body of "f", the expression for "g" will have
16360 REFERENCE_TYPE, even though the standard says that it should
16361 not. The reason is that we must preserve the syntactic form of
16362 the expression so that mangling (say) "f<g>" inside the body of
16363 "f" works out correctly. Therefore, the REFERENCE_TYPE is
16364 stripped here. */
018a5803 16365 return build1 (NON_DEPENDENT_EXPR, non_reference (TREE_TYPE (expr)), expr);
d17811fd
MM
16366}
16367
16368/* ARGS is a TREE_LIST of expressions as arguments to a function call.
16369 Return a new TREE_LIST with the various arguments replaced with
16370 equivalent non-dependent expressions. */
16371
16372tree
16373build_non_dependent_args (tree args)
16374{
16375 tree a;
16376 tree new_args;
16377
16378 new_args = NULL_TREE;
16379 for (a = args; a; a = TREE_CHAIN (a))
c8094d83 16380 new_args = tree_cons (NULL_TREE,
d17811fd
MM
16381 build_non_dependent_expr (TREE_VALUE (a)),
16382 new_args);
16383 return nreverse (new_args);
16384}
16385
e2500fed 16386#include "gt-cp-pt.h"
This page took 7.124606 seconds and 5 git commands to generate.