PR c++/54859
[official-gcc.git] / gcc / cp / pt.c
blob50d12b08348c4b4dbcdfd8274b4224051aae9664
1 /* Handle parameterized types (templates) for GNU C++.
2 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 2001, 2002, 2003, 2004, 2005, 2007, 2008, 2009, 2010, 2011, 2012
4 Free Software Foundation, Inc.
5 Written by Ken Raeburn (raeburn@cygnus.com) while at Watchmaker Computing.
6 Rewritten by Jason Merrill (jason@cygnus.com).
8 This file is part of GCC.
10 GCC is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3, or (at your option)
13 any later version.
15 GCC is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with GCC; see the file COPYING3. If not see
22 <http://www.gnu.org/licenses/>. */
24 /* Known bugs or deficiencies include:
26 all methods must be provided in header files; can't use a source
27 file that contains only the method templates and "just win". */
29 #include "config.h"
30 #include "system.h"
31 #include "coretypes.h"
32 #include "tm.h"
33 #include "tree.h"
34 #include "intl.h"
35 #include "pointer-set.h"
36 #include "flags.h"
37 #include "cp-tree.h"
38 #include "c-family/c-common.h"
39 #include "c-family/c-objc.h"
40 #include "cp-objcp-common.h"
41 #include "tree-inline.h"
42 #include "decl.h"
43 #include "toplev.h"
44 #include "timevar.h"
45 #include "tree-iterator.h"
46 #include "vecprim.h"
48 /* The type of functions taking a tree, and some additional data, and
49 returning an int. */
50 typedef int (*tree_fn_t) (tree, void*);
52 /* The PENDING_TEMPLATES is a TREE_LIST of templates whose
53 instantiations have been deferred, either because their definitions
54 were not yet available, or because we were putting off doing the work. */
55 struct GTY ((chain_next ("%h.next"))) pending_template {
56 struct pending_template *next;
57 struct tinst_level *tinst;
60 static GTY(()) struct pending_template *pending_templates;
61 static GTY(()) struct pending_template *last_pending_template;
63 int processing_template_parmlist;
64 static int template_header_count;
66 static GTY(()) tree saved_trees;
67 static VEC(int,heap) *inline_parm_levels;
69 static GTY(()) struct tinst_level *current_tinst_level;
71 static GTY(()) tree saved_access_scope;
73 /* Live only within one (recursive) call to tsubst_expr. We use
74 this to pass the statement expression node from the STMT_EXPR
75 to the EXPR_STMT that is its result. */
76 static tree cur_stmt_expr;
78 /* A map from local variable declarations in the body of the template
79 presently being instantiated to the corresponding instantiated
80 local variables. */
81 static struct pointer_map_t *local_specializations;
83 /* True if we've recursed into fn_type_unification too many times. */
84 static bool excessive_deduction_depth;
86 typedef struct GTY(()) spec_entry
88 tree tmpl;
89 tree args;
90 tree spec;
91 } spec_entry;
93 static GTY ((param_is (spec_entry)))
94 htab_t decl_specializations;
96 static GTY ((param_is (spec_entry)))
97 htab_t type_specializations;
99 /* Contains canonical template parameter types. The vector is indexed by
100 the TEMPLATE_TYPE_IDX of the template parameter. Each element is a
101 TREE_LIST, whose TREE_VALUEs contain the canonical template
102 parameters of various types and levels. */
103 static GTY(()) VEC(tree,gc) *canonical_template_parms;
105 #define UNIFY_ALLOW_NONE 0
106 #define UNIFY_ALLOW_MORE_CV_QUAL 1
107 #define UNIFY_ALLOW_LESS_CV_QUAL 2
108 #define UNIFY_ALLOW_DERIVED 4
109 #define UNIFY_ALLOW_INTEGER 8
110 #define UNIFY_ALLOW_OUTER_LEVEL 16
111 #define UNIFY_ALLOW_OUTER_MORE_CV_QUAL 32
112 #define UNIFY_ALLOW_OUTER_LESS_CV_QUAL 64
114 enum template_base_result {
115 tbr_incomplete_type,
116 tbr_ambiguous_baseclass,
117 tbr_success
120 static void push_access_scope (tree);
121 static void pop_access_scope (tree);
122 static bool resolve_overloaded_unification (tree, tree, tree, tree,
123 unification_kind_t, int,
124 bool);
125 static int try_one_overload (tree, tree, tree, tree, tree,
126 unification_kind_t, int, bool, bool);
127 static int unify (tree, tree, tree, tree, int, bool);
128 static void add_pending_template (tree);
129 static tree reopen_tinst_level (struct tinst_level *);
130 static tree tsubst_initializer_list (tree, tree);
131 static tree get_class_bindings (tree, tree, tree, tree);
132 static tree coerce_template_parms (tree, tree, tree, tsubst_flags_t,
133 bool, bool);
134 static void tsubst_enum (tree, tree, tree);
135 static tree add_to_template_args (tree, tree);
136 static tree add_outermost_template_args (tree, tree);
137 static bool check_instantiated_args (tree, tree, tsubst_flags_t);
138 static int maybe_adjust_types_for_deduction (unification_kind_t, tree*, tree*,
139 tree);
140 static int type_unification_real (tree, tree, tree, const tree *,
141 unsigned int, int, unification_kind_t, int,
142 bool);
143 static void note_template_header (int);
144 static tree convert_nontype_argument_function (tree, tree);
145 static tree convert_nontype_argument (tree, tree, tsubst_flags_t);
146 static tree convert_template_argument (tree, tree, tree,
147 tsubst_flags_t, int, tree);
148 static int for_each_template_parm (tree, tree_fn_t, void*,
149 struct pointer_set_t*, bool);
150 static tree expand_template_argument_pack (tree);
151 static tree build_template_parm_index (int, int, int, tree, tree);
152 static bool inline_needs_template_parms (tree);
153 static void push_inline_template_parms_recursive (tree, int);
154 static tree retrieve_local_specialization (tree);
155 static void register_local_specialization (tree, tree);
156 static hashval_t hash_specialization (const void *p);
157 static tree reduce_template_parm_level (tree, tree, int, tree, tsubst_flags_t);
158 static int mark_template_parm (tree, void *);
159 static int template_parm_this_level_p (tree, void *);
160 static tree tsubst_friend_function (tree, tree);
161 static tree tsubst_friend_class (tree, tree);
162 static int can_complete_type_without_circularity (tree);
163 static tree get_bindings (tree, tree, tree, bool);
164 static int template_decl_level (tree);
165 static int check_cv_quals_for_unify (int, tree, tree);
166 static void template_parm_level_and_index (tree, int*, int*);
167 static int unify_pack_expansion (tree, tree, tree,
168 tree, unification_kind_t, bool, bool);
169 static tree tsubst_template_arg (tree, tree, tsubst_flags_t, tree);
170 static tree tsubst_template_args (tree, tree, tsubst_flags_t, tree);
171 static tree tsubst_template_parms (tree, tree, tsubst_flags_t);
172 static void regenerate_decl_from_template (tree, tree);
173 static tree most_specialized_class (tree, tree, tsubst_flags_t);
174 static tree tsubst_aggr_type (tree, tree, tsubst_flags_t, tree, int);
175 static tree tsubst_arg_types (tree, tree, tree, tsubst_flags_t, tree);
176 static tree tsubst_function_type (tree, tree, tsubst_flags_t, tree);
177 static bool check_specialization_scope (void);
178 static tree process_partial_specialization (tree);
179 static void set_current_access_from_decl (tree);
180 static enum template_base_result get_template_base (tree, tree, tree, tree,
181 bool , tree *);
182 static tree try_class_unification (tree, tree, tree, tree, bool);
183 static int coerce_template_template_parms (tree, tree, tsubst_flags_t,
184 tree, tree);
185 static bool template_template_parm_bindings_ok_p (tree, tree);
186 static int template_args_equal (tree, tree);
187 static void tsubst_default_arguments (tree);
188 static tree for_each_template_parm_r (tree *, int *, void *);
189 static tree copy_default_args_to_explicit_spec_1 (tree, tree);
190 static void copy_default_args_to_explicit_spec (tree);
191 static int invalid_nontype_parm_type_p (tree, tsubst_flags_t);
192 static bool dependent_template_arg_p (tree);
193 static bool any_template_arguments_need_structural_equality_p (tree);
194 static bool dependent_type_p_r (tree);
195 static tree tsubst_expr (tree, tree, tsubst_flags_t, tree, bool);
196 static tree tsubst_copy (tree, tree, tsubst_flags_t, tree);
197 static tree tsubst_pack_expansion (tree, tree, tsubst_flags_t, tree);
198 static tree tsubst_decl (tree, tree, tsubst_flags_t);
199 static void perform_typedefs_access_check (tree tmpl, tree targs);
200 static void append_type_to_template_for_access_check_1 (tree, tree, tree,
201 location_t);
202 static tree listify (tree);
203 static tree listify_autos (tree, tree);
204 static tree template_parm_to_arg (tree t);
205 static bool arg_from_parm_pack_p (tree, tree);
206 static tree current_template_args (void);
207 static tree tsubst_template_parm (tree, tree, tsubst_flags_t);
208 static tree instantiate_alias_template (tree, tree, tsubst_flags_t);
210 /* Make the current scope suitable for access checking when we are
211 processing T. T can be FUNCTION_DECL for instantiated function
212 template, VAR_DECL for static member variable, or TYPE_DECL for
213 alias template (needed by instantiate_decl). */
215 static void
216 push_access_scope (tree t)
218 gcc_assert (TREE_CODE (t) == FUNCTION_DECL
219 || TREE_CODE (t) == TYPE_DECL
220 || TREE_CODE (t) == VAR_DECL);
222 if (DECL_FRIEND_CONTEXT (t))
223 push_nested_class (DECL_FRIEND_CONTEXT (t));
224 else if (DECL_CLASS_SCOPE_P (t))
225 push_nested_class (DECL_CONTEXT (t));
226 else
227 push_to_top_level ();
229 if (TREE_CODE (t) == FUNCTION_DECL)
231 saved_access_scope = tree_cons
232 (NULL_TREE, current_function_decl, saved_access_scope);
233 current_function_decl = t;
237 /* Restore the scope set up by push_access_scope. T is the node we
238 are processing. */
240 static void
241 pop_access_scope (tree t)
243 if (TREE_CODE (t) == FUNCTION_DECL)
245 current_function_decl = TREE_VALUE (saved_access_scope);
246 saved_access_scope = TREE_CHAIN (saved_access_scope);
249 if (DECL_FRIEND_CONTEXT (t) || DECL_CLASS_SCOPE_P (t))
250 pop_nested_class ();
251 else
252 pop_from_top_level ();
255 /* Do any processing required when DECL (a member template
256 declaration) is finished. Returns the TEMPLATE_DECL corresponding
257 to DECL, unless it is a specialization, in which case the DECL
258 itself is returned. */
260 tree
261 finish_member_template_decl (tree decl)
263 if (decl == error_mark_node)
264 return error_mark_node;
266 gcc_assert (DECL_P (decl));
268 if (TREE_CODE (decl) == TYPE_DECL)
270 tree type;
272 type = TREE_TYPE (decl);
273 if (type == error_mark_node)
274 return error_mark_node;
275 if (MAYBE_CLASS_TYPE_P (type)
276 && CLASSTYPE_TEMPLATE_INFO (type)
277 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
279 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
280 check_member_template (tmpl);
281 return tmpl;
283 return NULL_TREE;
285 else if (TREE_CODE (decl) == FIELD_DECL)
286 error ("data member %qD cannot be a member template", decl);
287 else if (DECL_TEMPLATE_INFO (decl))
289 if (!DECL_TEMPLATE_SPECIALIZATION (decl))
291 check_member_template (DECL_TI_TEMPLATE (decl));
292 return DECL_TI_TEMPLATE (decl);
294 else
295 return decl;
297 else
298 error ("invalid member template declaration %qD", decl);
300 return error_mark_node;
303 /* Create a template info node. */
305 tree
306 build_template_info (tree template_decl, tree template_args)
308 tree result = make_node (TEMPLATE_INFO);
309 TI_TEMPLATE (result) = template_decl;
310 TI_ARGS (result) = template_args;
311 return result;
314 /* Return the template info node corresponding to T, whatever T is. */
316 tree
317 get_template_info (const_tree t)
319 tree tinfo = NULL_TREE;
321 if (!t || t == error_mark_node)
322 return NULL;
324 if (DECL_P (t) && DECL_LANG_SPECIFIC (t))
325 tinfo = DECL_TEMPLATE_INFO (t);
327 if (!tinfo && DECL_IMPLICIT_TYPEDEF_P (t))
328 t = TREE_TYPE (t);
330 if (TAGGED_TYPE_P (t))
331 tinfo = TYPE_TEMPLATE_INFO (t);
332 else if (TREE_CODE (t) == BOUND_TEMPLATE_TEMPLATE_PARM)
333 tinfo = TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (t);
335 return tinfo;
338 /* Returns the template nesting level of the indicated class TYPE.
340 For example, in:
341 template <class T>
342 struct A
344 template <class U>
345 struct B {};
348 A<T>::B<U> has depth two, while A<T> has depth one.
349 Both A<T>::B<int> and A<int>::B<U> have depth one, if
350 they are instantiations, not specializations.
352 This function is guaranteed to return 0 if passed NULL_TREE so
353 that, for example, `template_class_depth (current_class_type)' is
354 always safe. */
357 template_class_depth (tree type)
359 int depth;
361 for (depth = 0;
362 type && TREE_CODE (type) != NAMESPACE_DECL;
363 type = (TREE_CODE (type) == FUNCTION_DECL)
364 ? CP_DECL_CONTEXT (type) : CP_TYPE_CONTEXT (type))
366 tree tinfo = get_template_info (type);
368 if (tinfo && PRIMARY_TEMPLATE_P (TI_TEMPLATE (tinfo))
369 && uses_template_parms (INNERMOST_TEMPLATE_ARGS (TI_ARGS (tinfo))))
370 ++depth;
373 return depth;
376 /* Subroutine of maybe_begin_member_template_processing.
377 Returns true if processing DECL needs us to push template parms. */
379 static bool
380 inline_needs_template_parms (tree decl)
382 if (! DECL_TEMPLATE_INFO (decl))
383 return false;
385 return (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (most_general_template (decl)))
386 > (processing_template_decl + DECL_TEMPLATE_SPECIALIZATION (decl)));
389 /* Subroutine of maybe_begin_member_template_processing.
390 Push the template parms in PARMS, starting from LEVELS steps into the
391 chain, and ending at the beginning, since template parms are listed
392 innermost first. */
394 static void
395 push_inline_template_parms_recursive (tree parmlist, int levels)
397 tree parms = TREE_VALUE (parmlist);
398 int i;
400 if (levels > 1)
401 push_inline_template_parms_recursive (TREE_CHAIN (parmlist), levels - 1);
403 ++processing_template_decl;
404 current_template_parms
405 = tree_cons (size_int (processing_template_decl),
406 parms, current_template_parms);
407 TEMPLATE_PARMS_FOR_INLINE (current_template_parms) = 1;
409 begin_scope (TREE_VEC_LENGTH (parms) ? sk_template_parms : sk_template_spec,
410 NULL);
411 for (i = 0; i < TREE_VEC_LENGTH (parms); ++i)
413 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
415 if (parm == error_mark_node)
416 continue;
418 gcc_assert (DECL_P (parm));
420 switch (TREE_CODE (parm))
422 case TYPE_DECL:
423 case TEMPLATE_DECL:
424 pushdecl (parm);
425 break;
427 case PARM_DECL:
429 /* Make a CONST_DECL as is done in process_template_parm.
430 It is ugly that we recreate this here; the original
431 version built in process_template_parm is no longer
432 available. */
433 tree decl = build_decl (DECL_SOURCE_LOCATION (parm),
434 CONST_DECL, DECL_NAME (parm),
435 TREE_TYPE (parm));
436 DECL_ARTIFICIAL (decl) = 1;
437 TREE_CONSTANT (decl) = 1;
438 TREE_READONLY (decl) = 1;
439 DECL_INITIAL (decl) = DECL_INITIAL (parm);
440 SET_DECL_TEMPLATE_PARM_P (decl);
441 pushdecl (decl);
443 break;
445 default:
446 gcc_unreachable ();
451 /* Restore the template parameter context for a member template or
452 a friend template defined in a class definition. */
454 void
455 maybe_begin_member_template_processing (tree decl)
457 tree parms;
458 int levels = 0;
460 if (inline_needs_template_parms (decl))
462 parms = DECL_TEMPLATE_PARMS (most_general_template (decl));
463 levels = TMPL_PARMS_DEPTH (parms) - processing_template_decl;
465 if (DECL_TEMPLATE_SPECIALIZATION (decl))
467 --levels;
468 parms = TREE_CHAIN (parms);
471 push_inline_template_parms_recursive (parms, levels);
474 /* Remember how many levels of template parameters we pushed so that
475 we can pop them later. */
476 VEC_safe_push (int, heap, inline_parm_levels, levels);
479 /* Undo the effects of maybe_begin_member_template_processing. */
481 void
482 maybe_end_member_template_processing (void)
484 int i;
485 int last;
487 if (VEC_length (int, inline_parm_levels) == 0)
488 return;
490 last = VEC_pop (int, inline_parm_levels);
491 for (i = 0; i < last; ++i)
493 --processing_template_decl;
494 current_template_parms = TREE_CHAIN (current_template_parms);
495 poplevel (0, 0, 0);
499 /* Return a new template argument vector which contains all of ARGS,
500 but has as its innermost set of arguments the EXTRA_ARGS. */
502 static tree
503 add_to_template_args (tree args, tree extra_args)
505 tree new_args;
506 int extra_depth;
507 int i;
508 int j;
510 if (args == NULL_TREE || extra_args == error_mark_node)
511 return extra_args;
513 extra_depth = TMPL_ARGS_DEPTH (extra_args);
514 new_args = make_tree_vec (TMPL_ARGS_DEPTH (args) + extra_depth);
516 for (i = 1; i <= TMPL_ARGS_DEPTH (args); ++i)
517 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (args, i));
519 for (j = 1; j <= extra_depth; ++j, ++i)
520 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (extra_args, j));
522 return new_args;
525 /* Like add_to_template_args, but only the outermost ARGS are added to
526 the EXTRA_ARGS. In particular, all but TMPL_ARGS_DEPTH
527 (EXTRA_ARGS) levels are added. This function is used to combine
528 the template arguments from a partial instantiation with the
529 template arguments used to attain the full instantiation from the
530 partial instantiation. */
532 static tree
533 add_outermost_template_args (tree args, tree extra_args)
535 tree new_args;
537 /* If there are more levels of EXTRA_ARGS than there are ARGS,
538 something very fishy is going on. */
539 gcc_assert (TMPL_ARGS_DEPTH (args) >= TMPL_ARGS_DEPTH (extra_args));
541 /* If *all* the new arguments will be the EXTRA_ARGS, just return
542 them. */
543 if (TMPL_ARGS_DEPTH (args) == TMPL_ARGS_DEPTH (extra_args))
544 return extra_args;
546 /* For the moment, we make ARGS look like it contains fewer levels. */
547 TREE_VEC_LENGTH (args) -= TMPL_ARGS_DEPTH (extra_args);
549 new_args = add_to_template_args (args, extra_args);
551 /* Now, we restore ARGS to its full dimensions. */
552 TREE_VEC_LENGTH (args) += TMPL_ARGS_DEPTH (extra_args);
554 return new_args;
557 /* Return the N levels of innermost template arguments from the ARGS. */
559 tree
560 get_innermost_template_args (tree args, int n)
562 tree new_args;
563 int extra_levels;
564 int i;
566 gcc_assert (n >= 0);
568 /* If N is 1, just return the innermost set of template arguments. */
569 if (n == 1)
570 return TMPL_ARGS_LEVEL (args, TMPL_ARGS_DEPTH (args));
572 /* If we're not removing anything, just return the arguments we were
573 given. */
574 extra_levels = TMPL_ARGS_DEPTH (args) - n;
575 gcc_assert (extra_levels >= 0);
576 if (extra_levels == 0)
577 return args;
579 /* Make a new set of arguments, not containing the outer arguments. */
580 new_args = make_tree_vec (n);
581 for (i = 1; i <= n; ++i)
582 SET_TMPL_ARGS_LEVEL (new_args, i,
583 TMPL_ARGS_LEVEL (args, i + extra_levels));
585 return new_args;
588 /* The inverse of get_innermost_template_args: Return all but the innermost
589 EXTRA_LEVELS levels of template arguments from the ARGS. */
591 static tree
592 strip_innermost_template_args (tree args, int extra_levels)
594 tree new_args;
595 int n = TMPL_ARGS_DEPTH (args) - extra_levels;
596 int i;
598 gcc_assert (n >= 0);
600 /* If N is 1, just return the outermost set of template arguments. */
601 if (n == 1)
602 return TMPL_ARGS_LEVEL (args, 1);
604 /* If we're not removing anything, just return the arguments we were
605 given. */
606 gcc_assert (extra_levels >= 0);
607 if (extra_levels == 0)
608 return args;
610 /* Make a new set of arguments, not containing the inner arguments. */
611 new_args = make_tree_vec (n);
612 for (i = 1; i <= n; ++i)
613 SET_TMPL_ARGS_LEVEL (new_args, i,
614 TMPL_ARGS_LEVEL (args, i));
616 return new_args;
619 /* We've got a template header coming up; push to a new level for storing
620 the parms. */
622 void
623 begin_template_parm_list (void)
625 /* We use a non-tag-transparent scope here, which causes pushtag to
626 put tags in this scope, rather than in the enclosing class or
627 namespace scope. This is the right thing, since we want
628 TEMPLATE_DECLS, and not TYPE_DECLS for template classes. For a
629 global template class, push_template_decl handles putting the
630 TEMPLATE_DECL into top-level scope. For a nested template class,
631 e.g.:
633 template <class T> struct S1 {
634 template <class T> struct S2 {};
637 pushtag contains special code to call pushdecl_with_scope on the
638 TEMPLATE_DECL for S2. */
639 begin_scope (sk_template_parms, NULL);
640 ++processing_template_decl;
641 ++processing_template_parmlist;
642 note_template_header (0);
645 /* This routine is called when a specialization is declared. If it is
646 invalid to declare a specialization here, an error is reported and
647 false is returned, otherwise this routine will return true. */
649 static bool
650 check_specialization_scope (void)
652 tree scope = current_scope ();
654 /* [temp.expl.spec]
656 An explicit specialization shall be declared in the namespace of
657 which the template is a member, or, for member templates, in the
658 namespace of which the enclosing class or enclosing class
659 template is a member. An explicit specialization of a member
660 function, member class or static data member of a class template
661 shall be declared in the namespace of which the class template
662 is a member. */
663 if (scope && TREE_CODE (scope) != NAMESPACE_DECL)
665 error ("explicit specialization in non-namespace scope %qD", scope);
666 return false;
669 /* [temp.expl.spec]
671 In an explicit specialization declaration for a member of a class
672 template or a member template that appears in namespace scope,
673 the member template and some of its enclosing class templates may
674 remain unspecialized, except that the declaration shall not
675 explicitly specialize a class member template if its enclosing
676 class templates are not explicitly specialized as well. */
677 if (current_template_parms)
679 error ("enclosing class templates are not explicitly specialized");
680 return false;
683 return true;
686 /* We've just seen template <>. */
688 bool
689 begin_specialization (void)
691 begin_scope (sk_template_spec, NULL);
692 note_template_header (1);
693 return check_specialization_scope ();
696 /* Called at then end of processing a declaration preceded by
697 template<>. */
699 void
700 end_specialization (void)
702 finish_scope ();
703 reset_specialization ();
706 /* Any template <>'s that we have seen thus far are not referring to a
707 function specialization. */
709 void
710 reset_specialization (void)
712 processing_specialization = 0;
713 template_header_count = 0;
716 /* We've just seen a template header. If SPECIALIZATION is nonzero,
717 it was of the form template <>. */
719 static void
720 note_template_header (int specialization)
722 processing_specialization = specialization;
723 template_header_count++;
726 /* We're beginning an explicit instantiation. */
728 void
729 begin_explicit_instantiation (void)
731 gcc_assert (!processing_explicit_instantiation);
732 processing_explicit_instantiation = true;
736 void
737 end_explicit_instantiation (void)
739 gcc_assert (processing_explicit_instantiation);
740 processing_explicit_instantiation = false;
743 /* An explicit specialization or partial specialization of TMPL is being
744 declared. Check that the namespace in which the specialization is
745 occurring is permissible. Returns false iff it is invalid to
746 specialize TMPL in the current namespace. */
748 static bool
749 check_specialization_namespace (tree tmpl)
751 tree tpl_ns = decl_namespace_context (tmpl);
753 /* [tmpl.expl.spec]
755 An explicit specialization shall be declared in the namespace of
756 which the template is a member, or, for member templates, in the
757 namespace of which the enclosing class or enclosing class
758 template is a member. An explicit specialization of a member
759 function, member class or static data member of a class template
760 shall be declared in the namespace of which the class template is
761 a member. */
762 if (current_scope() != DECL_CONTEXT (tmpl)
763 && !at_namespace_scope_p ())
765 error ("specialization of %qD must appear at namespace scope", tmpl);
766 return false;
768 if (is_associated_namespace (current_namespace, tpl_ns))
769 /* Same or super-using namespace. */
770 return true;
771 else
773 permerror (input_location, "specialization of %qD in different namespace", tmpl);
774 permerror (input_location, " from definition of %q+#D", tmpl);
775 return false;
779 /* SPEC is an explicit instantiation. Check that it is valid to
780 perform this explicit instantiation in the current namespace. */
782 static void
783 check_explicit_instantiation_namespace (tree spec)
785 tree ns;
787 /* DR 275: An explicit instantiation shall appear in an enclosing
788 namespace of its template. */
789 ns = decl_namespace_context (spec);
790 if (!is_ancestor (current_namespace, ns))
791 permerror (input_location, "explicit instantiation of %qD in namespace %qD "
792 "(which does not enclose namespace %qD)",
793 spec, current_namespace, ns);
796 /* The TYPE is being declared. If it is a template type, that means it
797 is a partial specialization. Do appropriate error-checking. */
799 tree
800 maybe_process_partial_specialization (tree type)
802 tree context;
804 if (type == error_mark_node)
805 return error_mark_node;
807 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
809 error ("name of class shadows template template parameter %qD",
810 TYPE_NAME (type));
811 return error_mark_node;
814 context = TYPE_CONTEXT (type);
816 if ((CLASS_TYPE_P (type) && CLASSTYPE_USE_TEMPLATE (type))
817 /* Consider non-class instantiations of alias templates as
818 well. */
819 || (TYPE_P (type)
820 && TYPE_TEMPLATE_INFO (type)
821 && DECL_LANG_SPECIFIC (TYPE_NAME (type))
822 && DECL_USE_TEMPLATE (TYPE_NAME (type))))
824 /* This is for ordinary explicit specialization and partial
825 specialization of a template class such as:
827 template <> class C<int>;
831 template <class T> class C<T*>;
833 Make sure that `C<int>' and `C<T*>' are implicit instantiations. */
835 if (CLASS_TYPE_P (type)
836 && CLASSTYPE_IMPLICIT_INSTANTIATION (type)
837 && !COMPLETE_TYPE_P (type))
839 check_specialization_namespace (CLASSTYPE_TI_TEMPLATE (type));
840 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
841 if (processing_template_decl)
843 if (push_template_decl (TYPE_MAIN_DECL (type))
844 == error_mark_node)
845 return error_mark_node;
848 else if (CLASS_TYPE_P (type)
849 && CLASSTYPE_TEMPLATE_INSTANTIATION (type))
850 error ("specialization of %qT after instantiation", type);
852 if (DECL_ALIAS_TEMPLATE_P (TYPE_TI_TEMPLATE (type)))
854 error ("partial specialization of alias template %qD",
855 TYPE_TI_TEMPLATE (type));
856 return error_mark_node;
859 else if (CLASS_TYPE_P (type)
860 && !CLASSTYPE_USE_TEMPLATE (type)
861 && CLASSTYPE_TEMPLATE_INFO (type)
862 && context && CLASS_TYPE_P (context)
863 && CLASSTYPE_TEMPLATE_INFO (context))
865 /* This is for an explicit specialization of member class
866 template according to [temp.expl.spec/18]:
868 template <> template <class U> class C<int>::D;
870 The context `C<int>' must be an implicit instantiation.
871 Otherwise this is just a member class template declared
872 earlier like:
874 template <> class C<int> { template <class U> class D; };
875 template <> template <class U> class C<int>::D;
877 In the first case, `C<int>::D' is a specialization of `C<T>::D'
878 while in the second case, `C<int>::D' is a primary template
879 and `C<T>::D' may not exist. */
881 if (CLASSTYPE_IMPLICIT_INSTANTIATION (context)
882 && !COMPLETE_TYPE_P (type))
884 tree t;
885 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
887 if (current_namespace
888 != decl_namespace_context (tmpl))
890 permerror (input_location, "specializing %q#T in different namespace", type);
891 permerror (input_location, " from definition of %q+#D", tmpl);
894 /* Check for invalid specialization after instantiation:
896 template <> template <> class C<int>::D<int>;
897 template <> template <class U> class C<int>::D; */
899 for (t = DECL_TEMPLATE_INSTANTIATIONS (tmpl);
900 t; t = TREE_CHAIN (t))
902 tree inst = TREE_VALUE (t);
903 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (inst))
905 /* We already have a full specialization of this partial
906 instantiation. Reassign it to the new member
907 specialization template. */
908 spec_entry elt;
909 spec_entry *entry;
910 void **slot;
912 elt.tmpl = most_general_template (tmpl);
913 elt.args = CLASSTYPE_TI_ARGS (inst);
914 elt.spec = inst;
916 htab_remove_elt (type_specializations, &elt);
918 elt.tmpl = tmpl;
919 elt.args = INNERMOST_TEMPLATE_ARGS (elt.args);
921 slot = htab_find_slot (type_specializations, &elt, INSERT);
922 entry = ggc_alloc_spec_entry ();
923 *entry = elt;
924 *slot = entry;
926 else if (COMPLETE_OR_OPEN_TYPE_P (inst))
927 /* But if we've had an implicit instantiation, that's a
928 problem ([temp.expl.spec]/6). */
929 error ("specialization %qT after instantiation %qT",
930 type, inst);
933 /* Mark TYPE as a specialization. And as a result, we only
934 have one level of template argument for the innermost
935 class template. */
936 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
937 CLASSTYPE_TI_ARGS (type)
938 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type));
941 else if (processing_specialization)
943 /* Someday C++0x may allow for enum template specialization. */
944 if (cxx_dialect > cxx98 && TREE_CODE (type) == ENUMERAL_TYPE
945 && CLASS_TYPE_P (context) && CLASSTYPE_USE_TEMPLATE (context))
946 pedwarn (input_location, OPT_Wpedantic, "template specialization "
947 "of %qD not allowed by ISO C++", type);
948 else
950 error ("explicit specialization of non-template %qT", type);
951 return error_mark_node;
955 return type;
958 /* Returns nonzero if we can optimize the retrieval of specializations
959 for TMPL, a TEMPLATE_DECL. In particular, for such a template, we
960 do not use DECL_TEMPLATE_SPECIALIZATIONS at all. */
962 static inline bool
963 optimize_specialization_lookup_p (tree tmpl)
965 return (DECL_FUNCTION_TEMPLATE_P (tmpl)
966 && DECL_CLASS_SCOPE_P (tmpl)
967 /* DECL_CLASS_SCOPE_P holds of T::f even if T is a template
968 parameter. */
969 && CLASS_TYPE_P (DECL_CONTEXT (tmpl))
970 /* The optimized lookup depends on the fact that the
971 template arguments for the member function template apply
972 purely to the containing class, which is not true if the
973 containing class is an explicit or partial
974 specialization. */
975 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (tmpl))
976 && !DECL_MEMBER_TEMPLATE_P (tmpl)
977 && !DECL_CONV_FN_P (tmpl)
978 /* It is possible to have a template that is not a member
979 template and is not a member of a template class:
981 template <typename T>
982 struct S { friend A::f(); };
984 Here, the friend function is a template, but the context does
985 not have template information. The optimized lookup relies
986 on having ARGS be the template arguments for both the class
987 and the function template. */
988 && !DECL_FRIEND_P (DECL_TEMPLATE_RESULT (tmpl)));
991 /* Retrieve the specialization (in the sense of [temp.spec] - a
992 specialization is either an instantiation or an explicit
993 specialization) of TMPL for the given template ARGS. If there is
994 no such specialization, return NULL_TREE. The ARGS are a vector of
995 arguments, or a vector of vectors of arguments, in the case of
996 templates with more than one level of parameters.
998 If TMPL is a type template and CLASS_SPECIALIZATIONS_P is true,
999 then we search for a partial specialization matching ARGS. This
1000 parameter is ignored if TMPL is not a class template. */
1002 static tree
1003 retrieve_specialization (tree tmpl, tree args, hashval_t hash)
1005 if (args == error_mark_node)
1006 return NULL_TREE;
1008 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
1010 /* There should be as many levels of arguments as there are
1011 levels of parameters. */
1012 gcc_assert (TMPL_ARGS_DEPTH (args)
1013 == TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl)));
1015 if (optimize_specialization_lookup_p (tmpl))
1017 tree class_template;
1018 tree class_specialization;
1019 VEC(tree,gc) *methods;
1020 tree fns;
1021 int idx;
1023 /* The template arguments actually apply to the containing
1024 class. Find the class specialization with those
1025 arguments. */
1026 class_template = CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (tmpl));
1027 class_specialization
1028 = retrieve_specialization (class_template, args, 0);
1029 if (!class_specialization)
1030 return NULL_TREE;
1031 /* Now, find the appropriate entry in the CLASSTYPE_METHOD_VEC
1032 for the specialization. */
1033 idx = class_method_index_for_fn (class_specialization, tmpl);
1034 if (idx == -1)
1035 return NULL_TREE;
1036 /* Iterate through the methods with the indicated name, looking
1037 for the one that has an instance of TMPL. */
1038 methods = CLASSTYPE_METHOD_VEC (class_specialization);
1039 for (fns = VEC_index (tree, methods, idx); fns; fns = OVL_NEXT (fns))
1041 tree fn = OVL_CURRENT (fns);
1042 if (DECL_TEMPLATE_INFO (fn) && DECL_TI_TEMPLATE (fn) == tmpl
1043 /* using-declarations can add base methods to the method vec,
1044 and we don't want those here. */
1045 && DECL_CONTEXT (fn) == class_specialization)
1046 return fn;
1048 return NULL_TREE;
1050 else
1052 spec_entry *found;
1053 spec_entry elt;
1054 htab_t specializations;
1056 elt.tmpl = tmpl;
1057 elt.args = args;
1058 elt.spec = NULL_TREE;
1060 if (DECL_CLASS_TEMPLATE_P (tmpl))
1061 specializations = type_specializations;
1062 else
1063 specializations = decl_specializations;
1065 if (hash == 0)
1066 hash = hash_specialization (&elt);
1067 found = (spec_entry *) htab_find_with_hash (specializations, &elt, hash);
1068 if (found)
1069 return found->spec;
1072 return NULL_TREE;
1075 /* Like retrieve_specialization, but for local declarations. */
1077 static tree
1078 retrieve_local_specialization (tree tmpl)
1080 void **slot;
1082 if (local_specializations == NULL)
1083 return NULL_TREE;
1085 slot = pointer_map_contains (local_specializations, tmpl);
1086 return slot ? (tree) *slot : NULL_TREE;
1089 /* Returns nonzero iff DECL is a specialization of TMPL. */
1092 is_specialization_of (tree decl, tree tmpl)
1094 tree t;
1096 if (TREE_CODE (decl) == FUNCTION_DECL)
1098 for (t = decl;
1099 t != NULL_TREE;
1100 t = DECL_TEMPLATE_INFO (t) ? DECL_TI_TEMPLATE (t) : NULL_TREE)
1101 if (t == tmpl)
1102 return 1;
1104 else
1106 gcc_assert (TREE_CODE (decl) == TYPE_DECL);
1108 for (t = TREE_TYPE (decl);
1109 t != NULL_TREE;
1110 t = CLASSTYPE_USE_TEMPLATE (t)
1111 ? TREE_TYPE (CLASSTYPE_TI_TEMPLATE (t)) : NULL_TREE)
1112 if (same_type_ignoring_top_level_qualifiers_p (t, TREE_TYPE (tmpl)))
1113 return 1;
1116 return 0;
1119 /* Returns nonzero iff DECL is a specialization of friend declaration
1120 FRIEND_DECL according to [temp.friend]. */
1122 bool
1123 is_specialization_of_friend (tree decl, tree friend_decl)
1125 bool need_template = true;
1126 int template_depth;
1128 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL
1129 || TREE_CODE (decl) == TYPE_DECL);
1131 /* For [temp.friend/6] when FRIEND_DECL is an ordinary member function
1132 of a template class, we want to check if DECL is a specialization
1133 if this. */
1134 if (TREE_CODE (friend_decl) == FUNCTION_DECL
1135 && DECL_TEMPLATE_INFO (friend_decl)
1136 && !DECL_USE_TEMPLATE (friend_decl))
1138 /* We want a TEMPLATE_DECL for `is_specialization_of'. */
1139 friend_decl = DECL_TI_TEMPLATE (friend_decl);
1140 need_template = false;
1142 else if (TREE_CODE (friend_decl) == TEMPLATE_DECL
1143 && !PRIMARY_TEMPLATE_P (friend_decl))
1144 need_template = false;
1146 /* There is nothing to do if this is not a template friend. */
1147 if (TREE_CODE (friend_decl) != TEMPLATE_DECL)
1148 return false;
1150 if (is_specialization_of (decl, friend_decl))
1151 return true;
1153 /* [temp.friend/6]
1154 A member of a class template may be declared to be a friend of a
1155 non-template class. In this case, the corresponding member of
1156 every specialization of the class template is a friend of the
1157 class granting friendship.
1159 For example, given a template friend declaration
1161 template <class T> friend void A<T>::f();
1163 the member function below is considered a friend
1165 template <> struct A<int> {
1166 void f();
1169 For this type of template friend, TEMPLATE_DEPTH below will be
1170 nonzero. To determine if DECL is a friend of FRIEND, we first
1171 check if the enclosing class is a specialization of another. */
1173 template_depth = template_class_depth (CP_DECL_CONTEXT (friend_decl));
1174 if (template_depth
1175 && DECL_CLASS_SCOPE_P (decl)
1176 && is_specialization_of (TYPE_NAME (DECL_CONTEXT (decl)),
1177 CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (friend_decl))))
1179 /* Next, we check the members themselves. In order to handle
1180 a few tricky cases, such as when FRIEND_DECL's are
1182 template <class T> friend void A<T>::g(T t);
1183 template <class T> template <T t> friend void A<T>::h();
1185 and DECL's are
1187 void A<int>::g(int);
1188 template <int> void A<int>::h();
1190 we need to figure out ARGS, the template arguments from
1191 the context of DECL. This is required for template substitution
1192 of `T' in the function parameter of `g' and template parameter
1193 of `h' in the above examples. Here ARGS corresponds to `int'. */
1195 tree context = DECL_CONTEXT (decl);
1196 tree args = NULL_TREE;
1197 int current_depth = 0;
1199 while (current_depth < template_depth)
1201 if (CLASSTYPE_TEMPLATE_INFO (context))
1203 if (current_depth == 0)
1204 args = TYPE_TI_ARGS (context);
1205 else
1206 args = add_to_template_args (TYPE_TI_ARGS (context), args);
1207 current_depth++;
1209 context = TYPE_CONTEXT (context);
1212 if (TREE_CODE (decl) == FUNCTION_DECL)
1214 bool is_template;
1215 tree friend_type;
1216 tree decl_type;
1217 tree friend_args_type;
1218 tree decl_args_type;
1220 /* Make sure that both DECL and FRIEND_DECL are templates or
1221 non-templates. */
1222 is_template = DECL_TEMPLATE_INFO (decl)
1223 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl));
1224 if (need_template ^ is_template)
1225 return false;
1226 else if (is_template)
1228 /* If both are templates, check template parameter list. */
1229 tree friend_parms
1230 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_decl),
1231 args, tf_none);
1232 if (!comp_template_parms
1233 (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (decl)),
1234 friend_parms))
1235 return false;
1237 decl_type = TREE_TYPE (DECL_TI_TEMPLATE (decl));
1239 else
1240 decl_type = TREE_TYPE (decl);
1242 friend_type = tsubst_function_type (TREE_TYPE (friend_decl), args,
1243 tf_none, NULL_TREE);
1244 if (friend_type == error_mark_node)
1245 return false;
1247 /* Check if return types match. */
1248 if (!same_type_p (TREE_TYPE (decl_type), TREE_TYPE (friend_type)))
1249 return false;
1251 /* Check if function parameter types match, ignoring the
1252 `this' parameter. */
1253 friend_args_type = TYPE_ARG_TYPES (friend_type);
1254 decl_args_type = TYPE_ARG_TYPES (decl_type);
1255 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (friend_decl))
1256 friend_args_type = TREE_CHAIN (friend_args_type);
1257 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1258 decl_args_type = TREE_CHAIN (decl_args_type);
1260 return compparms (decl_args_type, friend_args_type);
1262 else
1264 /* DECL is a TYPE_DECL */
1265 bool is_template;
1266 tree decl_type = TREE_TYPE (decl);
1268 /* Make sure that both DECL and FRIEND_DECL are templates or
1269 non-templates. */
1270 is_template
1271 = CLASSTYPE_TEMPLATE_INFO (decl_type)
1272 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (decl_type));
1274 if (need_template ^ is_template)
1275 return false;
1276 else if (is_template)
1278 tree friend_parms;
1279 /* If both are templates, check the name of the two
1280 TEMPLATE_DECL's first because is_friend didn't. */
1281 if (DECL_NAME (CLASSTYPE_TI_TEMPLATE (decl_type))
1282 != DECL_NAME (friend_decl))
1283 return false;
1285 /* Now check template parameter list. */
1286 friend_parms
1287 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_decl),
1288 args, tf_none);
1289 return comp_template_parms
1290 (DECL_TEMPLATE_PARMS (CLASSTYPE_TI_TEMPLATE (decl_type)),
1291 friend_parms);
1293 else
1294 return (DECL_NAME (decl)
1295 == DECL_NAME (friend_decl));
1298 return false;
1301 /* Register the specialization SPEC as a specialization of TMPL with
1302 the indicated ARGS. IS_FRIEND indicates whether the specialization
1303 is actually just a friend declaration. Returns SPEC, or an
1304 equivalent prior declaration, if available. */
1306 static tree
1307 register_specialization (tree spec, tree tmpl, tree args, bool is_friend,
1308 hashval_t hash)
1310 tree fn;
1311 void **slot = NULL;
1312 spec_entry elt;
1314 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL && DECL_P (spec));
1316 if (TREE_CODE (spec) == FUNCTION_DECL
1317 && uses_template_parms (DECL_TI_ARGS (spec)))
1318 /* This is the FUNCTION_DECL for a partial instantiation. Don't
1319 register it; we want the corresponding TEMPLATE_DECL instead.
1320 We use `uses_template_parms (DECL_TI_ARGS (spec))' rather than
1321 the more obvious `uses_template_parms (spec)' to avoid problems
1322 with default function arguments. In particular, given
1323 something like this:
1325 template <class T> void f(T t1, T t = T())
1327 the default argument expression is not substituted for in an
1328 instantiation unless and until it is actually needed. */
1329 return spec;
1331 if (optimize_specialization_lookup_p (tmpl))
1332 /* We don't put these specializations in the hash table, but we might
1333 want to give an error about a mismatch. */
1334 fn = retrieve_specialization (tmpl, args, 0);
1335 else
1337 elt.tmpl = tmpl;
1338 elt.args = args;
1339 elt.spec = spec;
1341 if (hash == 0)
1342 hash = hash_specialization (&elt);
1344 slot =
1345 htab_find_slot_with_hash (decl_specializations, &elt, hash, INSERT);
1346 if (*slot)
1347 fn = ((spec_entry *) *slot)->spec;
1348 else
1349 fn = NULL_TREE;
1352 /* We can sometimes try to re-register a specialization that we've
1353 already got. In particular, regenerate_decl_from_template calls
1354 duplicate_decls which will update the specialization list. But,
1355 we'll still get called again here anyhow. It's more convenient
1356 to simply allow this than to try to prevent it. */
1357 if (fn == spec)
1358 return spec;
1359 else if (fn && DECL_TEMPLATE_SPECIALIZATION (spec))
1361 if (DECL_TEMPLATE_INSTANTIATION (fn))
1363 if (DECL_ODR_USED (fn)
1364 || DECL_EXPLICIT_INSTANTIATION (fn))
1366 error ("specialization of %qD after instantiation",
1367 fn);
1368 return error_mark_node;
1370 else
1372 tree clone;
1373 /* This situation should occur only if the first
1374 specialization is an implicit instantiation, the
1375 second is an explicit specialization, and the
1376 implicit instantiation has not yet been used. That
1377 situation can occur if we have implicitly
1378 instantiated a member function and then specialized
1379 it later.
1381 We can also wind up here if a friend declaration that
1382 looked like an instantiation turns out to be a
1383 specialization:
1385 template <class T> void foo(T);
1386 class S { friend void foo<>(int) };
1387 template <> void foo(int);
1389 We transform the existing DECL in place so that any
1390 pointers to it become pointers to the updated
1391 declaration.
1393 If there was a definition for the template, but not
1394 for the specialization, we want this to look as if
1395 there were no definition, and vice versa. */
1396 DECL_INITIAL (fn) = NULL_TREE;
1397 duplicate_decls (spec, fn, is_friend);
1398 /* The call to duplicate_decls will have applied
1399 [temp.expl.spec]:
1401 An explicit specialization of a function template
1402 is inline only if it is explicitly declared to be,
1403 and independently of whether its function template
1406 to the primary function; now copy the inline bits to
1407 the various clones. */
1408 FOR_EACH_CLONE (clone, fn)
1410 DECL_DECLARED_INLINE_P (clone)
1411 = DECL_DECLARED_INLINE_P (fn);
1412 DECL_SOURCE_LOCATION (clone)
1413 = DECL_SOURCE_LOCATION (fn);
1415 check_specialization_namespace (tmpl);
1417 return fn;
1420 else if (DECL_TEMPLATE_SPECIALIZATION (fn))
1422 if (!duplicate_decls (spec, fn, is_friend) && DECL_INITIAL (spec))
1423 /* Dup decl failed, but this is a new definition. Set the
1424 line number so any errors match this new
1425 definition. */
1426 DECL_SOURCE_LOCATION (fn) = DECL_SOURCE_LOCATION (spec);
1428 return fn;
1431 else if (fn)
1432 return duplicate_decls (spec, fn, is_friend);
1434 /* A specialization must be declared in the same namespace as the
1435 template it is specializing. */
1436 if (DECL_TEMPLATE_SPECIALIZATION (spec)
1437 && !check_specialization_namespace (tmpl))
1438 DECL_CONTEXT (spec) = DECL_CONTEXT (tmpl);
1440 if (slot != NULL /* !optimize_specialization_lookup_p (tmpl) */)
1442 spec_entry *entry = ggc_alloc_spec_entry ();
1443 gcc_assert (tmpl && args && spec);
1444 *entry = elt;
1445 *slot = entry;
1446 if (TREE_CODE (spec) == FUNCTION_DECL && DECL_NAMESPACE_SCOPE_P (spec)
1447 && PRIMARY_TEMPLATE_P (tmpl)
1448 && DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (tmpl)) == NULL_TREE)
1449 /* TMPL is a forward declaration of a template function; keep a list
1450 of all specializations in case we need to reassign them to a friend
1451 template later in tsubst_friend_function. */
1452 DECL_TEMPLATE_INSTANTIATIONS (tmpl)
1453 = tree_cons (args, spec, DECL_TEMPLATE_INSTANTIATIONS (tmpl));
1456 return spec;
1459 /* Returns true iff two spec_entry nodes are equivalent. Only compares the
1460 TMPL and ARGS members, ignores SPEC. */
1462 static int
1463 eq_specializations (const void *p1, const void *p2)
1465 const spec_entry *e1 = (const spec_entry *)p1;
1466 const spec_entry *e2 = (const spec_entry *)p2;
1468 return (e1->tmpl == e2->tmpl
1469 && comp_template_args (e1->args, e2->args));
1472 /* Returns a hash for a template TMPL and template arguments ARGS. */
1474 static hashval_t
1475 hash_tmpl_and_args (tree tmpl, tree args)
1477 hashval_t val = DECL_UID (tmpl);
1478 return iterative_hash_template_arg (args, val);
1481 /* Returns a hash for a spec_entry node based on the TMPL and ARGS members,
1482 ignoring SPEC. */
1484 static hashval_t
1485 hash_specialization (const void *p)
1487 const spec_entry *e = (const spec_entry *)p;
1488 return hash_tmpl_and_args (e->tmpl, e->args);
1491 /* Recursively calculate a hash value for a template argument ARG, for use
1492 in the hash tables of template specializations. */
1494 hashval_t
1495 iterative_hash_template_arg (tree arg, hashval_t val)
1497 unsigned HOST_WIDE_INT i;
1498 enum tree_code code;
1499 char tclass;
1501 if (arg == NULL_TREE)
1502 return iterative_hash_object (arg, val);
1504 if (!TYPE_P (arg))
1505 STRIP_NOPS (arg);
1507 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
1508 /* We can get one of these when re-hashing a previous entry in the middle
1509 of substituting into a pack expansion. Just look through it. */
1510 arg = ARGUMENT_PACK_SELECT_FROM_PACK (arg);
1512 code = TREE_CODE (arg);
1513 tclass = TREE_CODE_CLASS (code);
1515 val = iterative_hash_object (code, val);
1517 switch (code)
1519 case ERROR_MARK:
1520 return val;
1522 case IDENTIFIER_NODE:
1523 return iterative_hash_object (IDENTIFIER_HASH_VALUE (arg), val);
1525 case TREE_VEC:
1527 int i, len = TREE_VEC_LENGTH (arg);
1528 for (i = 0; i < len; ++i)
1529 val = iterative_hash_template_arg (TREE_VEC_ELT (arg, i), val);
1530 return val;
1533 case TYPE_PACK_EXPANSION:
1534 case EXPR_PACK_EXPANSION:
1535 val = iterative_hash_template_arg (PACK_EXPANSION_PATTERN (arg), val);
1536 return iterative_hash_template_arg (PACK_EXPANSION_EXTRA_ARGS (arg), val);
1538 case TYPE_ARGUMENT_PACK:
1539 case NONTYPE_ARGUMENT_PACK:
1540 return iterative_hash_template_arg (ARGUMENT_PACK_ARGS (arg), val);
1542 case TREE_LIST:
1543 for (; arg; arg = TREE_CHAIN (arg))
1544 val = iterative_hash_template_arg (TREE_VALUE (arg), val);
1545 return val;
1547 case OVERLOAD:
1548 for (; arg; arg = OVL_NEXT (arg))
1549 val = iterative_hash_template_arg (OVL_CURRENT (arg), val);
1550 return val;
1552 case CONSTRUCTOR:
1554 tree field, value;
1555 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (arg), i, field, value)
1557 val = iterative_hash_template_arg (field, val);
1558 val = iterative_hash_template_arg (value, val);
1560 return val;
1563 case PARM_DECL:
1564 if (!DECL_ARTIFICIAL (arg))
1566 val = iterative_hash_object (DECL_PARM_INDEX (arg), val);
1567 val = iterative_hash_object (DECL_PARM_LEVEL (arg), val);
1569 return iterative_hash_template_arg (TREE_TYPE (arg), val);
1571 case TARGET_EXPR:
1572 return iterative_hash_template_arg (TARGET_EXPR_INITIAL (arg), val);
1574 case PTRMEM_CST:
1575 val = iterative_hash_template_arg (PTRMEM_CST_CLASS (arg), val);
1576 return iterative_hash_template_arg (PTRMEM_CST_MEMBER (arg), val);
1578 case TEMPLATE_PARM_INDEX:
1579 val = iterative_hash_template_arg
1580 (TREE_TYPE (TEMPLATE_PARM_DECL (arg)), val);
1581 val = iterative_hash_object (TEMPLATE_PARM_LEVEL (arg), val);
1582 return iterative_hash_object (TEMPLATE_PARM_IDX (arg), val);
1584 case TRAIT_EXPR:
1585 val = iterative_hash_object (TRAIT_EXPR_KIND (arg), val);
1586 val = iterative_hash_template_arg (TRAIT_EXPR_TYPE1 (arg), val);
1587 return iterative_hash_template_arg (TRAIT_EXPR_TYPE2 (arg), val);
1589 case BASELINK:
1590 val = iterative_hash_template_arg (BINFO_TYPE (BASELINK_BINFO (arg)),
1591 val);
1592 return iterative_hash_template_arg (DECL_NAME (get_first_fn (arg)),
1593 val);
1595 case MODOP_EXPR:
1596 val = iterative_hash_template_arg (TREE_OPERAND (arg, 0), val);
1597 code = TREE_CODE (TREE_OPERAND (arg, 1));
1598 val = iterative_hash_object (code, val);
1599 return iterative_hash_template_arg (TREE_OPERAND (arg, 2), val);
1601 case LAMBDA_EXPR:
1602 /* A lambda can't appear in a template arg, but don't crash on
1603 erroneous input. */
1604 gcc_assert (seen_error ());
1605 return val;
1607 case CAST_EXPR:
1608 case IMPLICIT_CONV_EXPR:
1609 case STATIC_CAST_EXPR:
1610 case REINTERPRET_CAST_EXPR:
1611 case CONST_CAST_EXPR:
1612 case DYNAMIC_CAST_EXPR:
1613 case NEW_EXPR:
1614 val = iterative_hash_template_arg (TREE_TYPE (arg), val);
1615 /* Now hash operands as usual. */
1616 break;
1618 default:
1619 break;
1622 switch (tclass)
1624 case tcc_type:
1625 if (TYPE_CANONICAL (arg))
1626 return iterative_hash_object (TYPE_HASH (TYPE_CANONICAL (arg)),
1627 val);
1628 else if (TREE_CODE (arg) == DECLTYPE_TYPE)
1629 return iterative_hash_template_arg (DECLTYPE_TYPE_EXPR (arg), val);
1630 /* Otherwise just compare the types during lookup. */
1631 return val;
1633 case tcc_declaration:
1634 case tcc_constant:
1635 return iterative_hash_expr (arg, val);
1637 default:
1638 gcc_assert (IS_EXPR_CODE_CLASS (tclass));
1640 unsigned n = cp_tree_operand_length (arg);
1641 for (i = 0; i < n; ++i)
1642 val = iterative_hash_template_arg (TREE_OPERAND (arg, i), val);
1643 return val;
1646 gcc_unreachable ();
1647 return 0;
1650 /* Unregister the specialization SPEC as a specialization of TMPL.
1651 Replace it with NEW_SPEC, if NEW_SPEC is non-NULL. Returns true
1652 if the SPEC was listed as a specialization of TMPL.
1654 Note that SPEC has been ggc_freed, so we can't look inside it. */
1656 bool
1657 reregister_specialization (tree spec, tree tinfo, tree new_spec)
1659 spec_entry *entry;
1660 spec_entry elt;
1662 elt.tmpl = most_general_template (TI_TEMPLATE (tinfo));
1663 elt.args = TI_ARGS (tinfo);
1664 elt.spec = NULL_TREE;
1666 entry = (spec_entry *) htab_find (decl_specializations, &elt);
1667 if (entry != NULL)
1669 gcc_assert (entry->spec == spec || entry->spec == new_spec);
1670 gcc_assert (new_spec != NULL_TREE);
1671 entry->spec = new_spec;
1672 return 1;
1675 return 0;
1678 /* Like register_specialization, but for local declarations. We are
1679 registering SPEC, an instantiation of TMPL. */
1681 static void
1682 register_local_specialization (tree spec, tree tmpl)
1684 void **slot;
1686 slot = pointer_map_insert (local_specializations, tmpl);
1687 *slot = spec;
1690 /* TYPE is a class type. Returns true if TYPE is an explicitly
1691 specialized class. */
1693 bool
1694 explicit_class_specialization_p (tree type)
1696 if (!CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
1697 return false;
1698 return !uses_template_parms (CLASSTYPE_TI_ARGS (type));
1701 /* Print the list of functions at FNS, going through all the overloads
1702 for each element of the list. Alternatively, FNS can not be a
1703 TREE_LIST, in which case it will be printed together with all the
1704 overloads.
1706 MORE and *STR should respectively be FALSE and NULL when the function
1707 is called from the outside. They are used internally on recursive
1708 calls. print_candidates manages the two parameters and leaves NULL
1709 in *STR when it ends. */
1711 static void
1712 print_candidates_1 (tree fns, bool more, const char **str)
1714 tree fn, fn2;
1715 char *spaces = NULL;
1717 for (fn = fns; fn; fn = OVL_NEXT (fn))
1718 if (TREE_CODE (fn) == TREE_LIST)
1720 for (fn2 = fn; fn2 != NULL_TREE; fn2 = TREE_CHAIN (fn2))
1721 print_candidates_1 (TREE_VALUE (fn2),
1722 TREE_CHAIN (fn2) || more, str);
1724 else
1726 tree cand = OVL_CURRENT (fn);
1727 if (!*str)
1729 /* Pick the prefix string. */
1730 if (!more && !OVL_NEXT (fns))
1732 inform (DECL_SOURCE_LOCATION (cand),
1733 "candidate is: %#D", cand);
1734 continue;
1737 *str = _("candidates are:");
1738 spaces = get_spaces (*str);
1740 inform (DECL_SOURCE_LOCATION (cand), "%s %#D", *str, cand);
1741 *str = spaces ? spaces : *str;
1744 if (!more)
1746 free (spaces);
1747 *str = NULL;
1751 /* Print the list of candidate FNS in an error message. FNS can also
1752 be a TREE_LIST of non-functions in the case of an ambiguous lookup. */
1754 void
1755 print_candidates (tree fns)
1757 const char *str = NULL;
1758 print_candidates_1 (fns, false, &str);
1759 gcc_assert (str == NULL);
1762 /* Returns the template (one of the functions given by TEMPLATE_ID)
1763 which can be specialized to match the indicated DECL with the
1764 explicit template args given in TEMPLATE_ID. The DECL may be
1765 NULL_TREE if none is available. In that case, the functions in
1766 TEMPLATE_ID are non-members.
1768 If NEED_MEMBER_TEMPLATE is nonzero the function is known to be a
1769 specialization of a member template.
1771 The TEMPLATE_COUNT is the number of references to qualifying
1772 template classes that appeared in the name of the function. See
1773 check_explicit_specialization for a more accurate description.
1775 TSK indicates what kind of template declaration (if any) is being
1776 declared. TSK_TEMPLATE indicates that the declaration given by
1777 DECL, though a FUNCTION_DECL, has template parameters, and is
1778 therefore a template function.
1780 The template args (those explicitly specified and those deduced)
1781 are output in a newly created vector *TARGS_OUT.
1783 If it is impossible to determine the result, an error message is
1784 issued. The error_mark_node is returned to indicate failure. */
1786 static tree
1787 determine_specialization (tree template_id,
1788 tree decl,
1789 tree* targs_out,
1790 int need_member_template,
1791 int template_count,
1792 tmpl_spec_kind tsk)
1794 tree fns;
1795 tree targs;
1796 tree explicit_targs;
1797 tree candidates = NULL_TREE;
1798 /* A TREE_LIST of templates of which DECL may be a specialization.
1799 The TREE_VALUE of each node is a TEMPLATE_DECL. The
1800 corresponding TREE_PURPOSE is the set of template arguments that,
1801 when used to instantiate the template, would produce a function
1802 with the signature of DECL. */
1803 tree templates = NULL_TREE;
1804 int header_count;
1805 cp_binding_level *b;
1807 *targs_out = NULL_TREE;
1809 if (template_id == error_mark_node || decl == error_mark_node)
1810 return error_mark_node;
1812 /* We shouldn't be specializing a member template of an
1813 unspecialized class template; we already gave an error in
1814 check_specialization_scope, now avoid crashing. */
1815 if (template_count && DECL_CLASS_SCOPE_P (decl)
1816 && template_class_depth (DECL_CONTEXT (decl)) > 0)
1818 gcc_assert (errorcount);
1819 return error_mark_node;
1822 fns = TREE_OPERAND (template_id, 0);
1823 explicit_targs = TREE_OPERAND (template_id, 1);
1825 if (fns == error_mark_node)
1826 return error_mark_node;
1828 /* Check for baselinks. */
1829 if (BASELINK_P (fns))
1830 fns = BASELINK_FUNCTIONS (fns);
1832 if (!is_overloaded_fn (fns))
1834 error ("%qD is not a function template", fns);
1835 return error_mark_node;
1838 /* Count the number of template headers specified for this
1839 specialization. */
1840 header_count = 0;
1841 for (b = current_binding_level;
1842 b->kind == sk_template_parms;
1843 b = b->level_chain)
1844 ++header_count;
1846 for (; fns; fns = OVL_NEXT (fns))
1848 tree fn = OVL_CURRENT (fns);
1850 if (TREE_CODE (fn) == TEMPLATE_DECL)
1852 tree decl_arg_types;
1853 tree fn_arg_types;
1854 tree insttype;
1856 /* In case of explicit specialization, we need to check if
1857 the number of template headers appearing in the specialization
1858 is correct. This is usually done in check_explicit_specialization,
1859 but the check done there cannot be exhaustive when specializing
1860 member functions. Consider the following code:
1862 template <> void A<int>::f(int);
1863 template <> template <> void A<int>::f(int);
1865 Assuming that A<int> is not itself an explicit specialization
1866 already, the first line specializes "f" which is a non-template
1867 member function, whilst the second line specializes "f" which
1868 is a template member function. So both lines are syntactically
1869 correct, and check_explicit_specialization does not reject
1870 them.
1872 Here, we can do better, as we are matching the specialization
1873 against the declarations. We count the number of template
1874 headers, and we check if they match TEMPLATE_COUNT + 1
1875 (TEMPLATE_COUNT is the number of qualifying template classes,
1876 plus there must be another header for the member template
1877 itself).
1879 Notice that if header_count is zero, this is not a
1880 specialization but rather a template instantiation, so there
1881 is no check we can perform here. */
1882 if (header_count && header_count != template_count + 1)
1883 continue;
1885 /* Check that the number of template arguments at the
1886 innermost level for DECL is the same as for FN. */
1887 if (current_binding_level->kind == sk_template_parms
1888 && !current_binding_level->explicit_spec_p
1889 && (TREE_VEC_LENGTH (DECL_INNERMOST_TEMPLATE_PARMS (fn))
1890 != TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS
1891 (current_template_parms))))
1892 continue;
1894 /* DECL might be a specialization of FN. */
1895 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
1896 fn_arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn));
1898 /* For a non-static member function, we need to make sure
1899 that the const qualification is the same. Since
1900 get_bindings does not try to merge the "this" parameter,
1901 we must do the comparison explicitly. */
1902 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
1903 && !same_type_p (TREE_VALUE (fn_arg_types),
1904 TREE_VALUE (decl_arg_types)))
1905 continue;
1907 /* Skip the "this" parameter and, for constructors of
1908 classes with virtual bases, the VTT parameter. A
1909 full specialization of a constructor will have a VTT
1910 parameter, but a template never will. */
1911 decl_arg_types
1912 = skip_artificial_parms_for (decl, decl_arg_types);
1913 fn_arg_types
1914 = skip_artificial_parms_for (fn, fn_arg_types);
1916 /* Function templates cannot be specializations; there are
1917 no partial specializations of functions. Therefore, if
1918 the type of DECL does not match FN, there is no
1919 match. */
1920 if (tsk == tsk_template)
1922 if (compparms (fn_arg_types, decl_arg_types))
1923 candidates = tree_cons (NULL_TREE, fn, candidates);
1924 continue;
1927 /* See whether this function might be a specialization of this
1928 template. Suppress access control because we might be trying
1929 to make this specialization a friend, and we have already done
1930 access control for the declaration of the specialization. */
1931 push_deferring_access_checks (dk_no_check);
1932 targs = get_bindings (fn, decl, explicit_targs, /*check_ret=*/true);
1933 pop_deferring_access_checks ();
1935 if (!targs)
1936 /* We cannot deduce template arguments that when used to
1937 specialize TMPL will produce DECL. */
1938 continue;
1940 /* Make sure that the deduced arguments actually work. */
1941 insttype = tsubst (TREE_TYPE (fn), targs, tf_none, NULL_TREE);
1942 if (insttype == error_mark_node)
1943 continue;
1944 fn_arg_types
1945 = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (insttype));
1946 if (!compparms (fn_arg_types, decl_arg_types))
1947 continue;
1949 /* Save this template, and the arguments deduced. */
1950 templates = tree_cons (targs, fn, templates);
1952 else if (need_member_template)
1953 /* FN is an ordinary member function, and we need a
1954 specialization of a member template. */
1956 else if (TREE_CODE (fn) != FUNCTION_DECL)
1957 /* We can get IDENTIFIER_NODEs here in certain erroneous
1958 cases. */
1960 else if (!DECL_FUNCTION_MEMBER_P (fn))
1961 /* This is just an ordinary non-member function. Nothing can
1962 be a specialization of that. */
1964 else if (DECL_ARTIFICIAL (fn))
1965 /* Cannot specialize functions that are created implicitly. */
1967 else
1969 tree decl_arg_types;
1971 /* This is an ordinary member function. However, since
1972 we're here, we can assume it's enclosing class is a
1973 template class. For example,
1975 template <typename T> struct S { void f(); };
1976 template <> void S<int>::f() {}
1978 Here, S<int>::f is a non-template, but S<int> is a
1979 template class. If FN has the same type as DECL, we
1980 might be in business. */
1982 if (!DECL_TEMPLATE_INFO (fn))
1983 /* Its enclosing class is an explicit specialization
1984 of a template class. This is not a candidate. */
1985 continue;
1987 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
1988 TREE_TYPE (TREE_TYPE (fn))))
1989 /* The return types differ. */
1990 continue;
1992 /* Adjust the type of DECL in case FN is a static member. */
1993 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
1994 if (DECL_STATIC_FUNCTION_P (fn)
1995 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1996 decl_arg_types = TREE_CHAIN (decl_arg_types);
1998 if (compparms (TYPE_ARG_TYPES (TREE_TYPE (fn)),
1999 decl_arg_types))
2000 /* They match! */
2001 candidates = tree_cons (NULL_TREE, fn, candidates);
2005 if (templates && TREE_CHAIN (templates))
2007 /* We have:
2009 [temp.expl.spec]
2011 It is possible for a specialization with a given function
2012 signature to be instantiated from more than one function
2013 template. In such cases, explicit specification of the
2014 template arguments must be used to uniquely identify the
2015 function template specialization being specialized.
2017 Note that here, there's no suggestion that we're supposed to
2018 determine which of the candidate templates is most
2019 specialized. However, we, also have:
2021 [temp.func.order]
2023 Partial ordering of overloaded function template
2024 declarations is used in the following contexts to select
2025 the function template to which a function template
2026 specialization refers:
2028 -- when an explicit specialization refers to a function
2029 template.
2031 So, we do use the partial ordering rules, at least for now.
2032 This extension can only serve to make invalid programs valid,
2033 so it's safe. And, there is strong anecdotal evidence that
2034 the committee intended the partial ordering rules to apply;
2035 the EDG front end has that behavior, and John Spicer claims
2036 that the committee simply forgot to delete the wording in
2037 [temp.expl.spec]. */
2038 tree tmpl = most_specialized_instantiation (templates);
2039 if (tmpl != error_mark_node)
2041 templates = tmpl;
2042 TREE_CHAIN (templates) = NULL_TREE;
2046 if (templates == NULL_TREE && candidates == NULL_TREE)
2048 error ("template-id %qD for %q+D does not match any template "
2049 "declaration", template_id, decl);
2050 if (header_count && header_count != template_count + 1)
2051 inform (input_location, "saw %d %<template<>%>, need %d for "
2052 "specializing a member function template",
2053 header_count, template_count + 1);
2054 return error_mark_node;
2056 else if ((templates && TREE_CHAIN (templates))
2057 || (candidates && TREE_CHAIN (candidates))
2058 || (templates && candidates))
2060 error ("ambiguous template specialization %qD for %q+D",
2061 template_id, decl);
2062 candidates = chainon (candidates, templates);
2063 print_candidates (candidates);
2064 return error_mark_node;
2067 /* We have one, and exactly one, match. */
2068 if (candidates)
2070 tree fn = TREE_VALUE (candidates);
2071 *targs_out = copy_node (DECL_TI_ARGS (fn));
2072 /* DECL is a re-declaration or partial instantiation of a template
2073 function. */
2074 if (TREE_CODE (fn) == TEMPLATE_DECL)
2075 return fn;
2076 /* It was a specialization of an ordinary member function in a
2077 template class. */
2078 return DECL_TI_TEMPLATE (fn);
2081 /* It was a specialization of a template. */
2082 targs = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (TREE_VALUE (templates)));
2083 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (targs))
2085 *targs_out = copy_node (targs);
2086 SET_TMPL_ARGS_LEVEL (*targs_out,
2087 TMPL_ARGS_DEPTH (*targs_out),
2088 TREE_PURPOSE (templates));
2090 else
2091 *targs_out = TREE_PURPOSE (templates);
2092 return TREE_VALUE (templates);
2095 /* Returns a chain of parameter types, exactly like the SPEC_TYPES,
2096 but with the default argument values filled in from those in the
2097 TMPL_TYPES. */
2099 static tree
2100 copy_default_args_to_explicit_spec_1 (tree spec_types,
2101 tree tmpl_types)
2103 tree new_spec_types;
2105 if (!spec_types)
2106 return NULL_TREE;
2108 if (spec_types == void_list_node)
2109 return void_list_node;
2111 /* Substitute into the rest of the list. */
2112 new_spec_types =
2113 copy_default_args_to_explicit_spec_1 (TREE_CHAIN (spec_types),
2114 TREE_CHAIN (tmpl_types));
2116 /* Add the default argument for this parameter. */
2117 return hash_tree_cons (TREE_PURPOSE (tmpl_types),
2118 TREE_VALUE (spec_types),
2119 new_spec_types);
2122 /* DECL is an explicit specialization. Replicate default arguments
2123 from the template it specializes. (That way, code like:
2125 template <class T> void f(T = 3);
2126 template <> void f(double);
2127 void g () { f (); }
2129 works, as required.) An alternative approach would be to look up
2130 the correct default arguments at the call-site, but this approach
2131 is consistent with how implicit instantiations are handled. */
2133 static void
2134 copy_default_args_to_explicit_spec (tree decl)
2136 tree tmpl;
2137 tree spec_types;
2138 tree tmpl_types;
2139 tree new_spec_types;
2140 tree old_type;
2141 tree new_type;
2142 tree t;
2143 tree object_type = NULL_TREE;
2144 tree in_charge = NULL_TREE;
2145 tree vtt = NULL_TREE;
2147 /* See if there's anything we need to do. */
2148 tmpl = DECL_TI_TEMPLATE (decl);
2149 tmpl_types = TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (tmpl)));
2150 for (t = tmpl_types; t; t = TREE_CHAIN (t))
2151 if (TREE_PURPOSE (t))
2152 break;
2153 if (!t)
2154 return;
2156 old_type = TREE_TYPE (decl);
2157 spec_types = TYPE_ARG_TYPES (old_type);
2159 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2161 /* Remove the this pointer, but remember the object's type for
2162 CV quals. */
2163 object_type = TREE_TYPE (TREE_VALUE (spec_types));
2164 spec_types = TREE_CHAIN (spec_types);
2165 tmpl_types = TREE_CHAIN (tmpl_types);
2167 if (DECL_HAS_IN_CHARGE_PARM_P (decl))
2169 /* DECL may contain more parameters than TMPL due to the extra
2170 in-charge parameter in constructors and destructors. */
2171 in_charge = spec_types;
2172 spec_types = TREE_CHAIN (spec_types);
2174 if (DECL_HAS_VTT_PARM_P (decl))
2176 vtt = spec_types;
2177 spec_types = TREE_CHAIN (spec_types);
2181 /* Compute the merged default arguments. */
2182 new_spec_types =
2183 copy_default_args_to_explicit_spec_1 (spec_types, tmpl_types);
2185 /* Compute the new FUNCTION_TYPE. */
2186 if (object_type)
2188 if (vtt)
2189 new_spec_types = hash_tree_cons (TREE_PURPOSE (vtt),
2190 TREE_VALUE (vtt),
2191 new_spec_types);
2193 if (in_charge)
2194 /* Put the in-charge parameter back. */
2195 new_spec_types = hash_tree_cons (TREE_PURPOSE (in_charge),
2196 TREE_VALUE (in_charge),
2197 new_spec_types);
2199 new_type = build_method_type_directly (object_type,
2200 TREE_TYPE (old_type),
2201 new_spec_types);
2203 else
2204 new_type = build_function_type (TREE_TYPE (old_type),
2205 new_spec_types);
2206 new_type = cp_build_type_attribute_variant (new_type,
2207 TYPE_ATTRIBUTES (old_type));
2208 new_type = build_exception_variant (new_type,
2209 TYPE_RAISES_EXCEPTIONS (old_type));
2210 TREE_TYPE (decl) = new_type;
2213 /* Return the number of template headers we expect to see for a definition
2214 or specialization of CTYPE or one of its non-template members. */
2217 num_template_headers_for_class (tree ctype)
2219 int num_templates = 0;
2221 while (ctype && CLASS_TYPE_P (ctype))
2223 /* You're supposed to have one `template <...>' for every
2224 template class, but you don't need one for a full
2225 specialization. For example:
2227 template <class T> struct S{};
2228 template <> struct S<int> { void f(); };
2229 void S<int>::f () {}
2231 is correct; there shouldn't be a `template <>' for the
2232 definition of `S<int>::f'. */
2233 if (!CLASSTYPE_TEMPLATE_INFO (ctype))
2234 /* If CTYPE does not have template information of any
2235 kind, then it is not a template, nor is it nested
2236 within a template. */
2237 break;
2238 if (explicit_class_specialization_p (ctype))
2239 break;
2240 if (PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (ctype)))
2241 ++num_templates;
2243 ctype = TYPE_CONTEXT (ctype);
2246 return num_templates;
2249 /* Do a simple sanity check on the template headers that precede the
2250 variable declaration DECL. */
2252 void
2253 check_template_variable (tree decl)
2255 tree ctx = CP_DECL_CONTEXT (decl);
2256 int wanted = num_template_headers_for_class (ctx);
2257 if (!TYPE_P (ctx) || !CLASSTYPE_TEMPLATE_INFO (ctx))
2258 permerror (DECL_SOURCE_LOCATION (decl),
2259 "%qD is not a static data member of a class template", decl);
2260 else if (template_header_count > wanted)
2262 pedwarn (DECL_SOURCE_LOCATION (decl), 0,
2263 "too many template headers for %D (should be %d)",
2264 decl, wanted);
2265 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (ctx))
2266 inform (DECL_SOURCE_LOCATION (decl),
2267 "members of an explicitly specialized class are defined "
2268 "without a template header");
2272 /* Check to see if the function just declared, as indicated in
2273 DECLARATOR, and in DECL, is a specialization of a function
2274 template. We may also discover that the declaration is an explicit
2275 instantiation at this point.
2277 Returns DECL, or an equivalent declaration that should be used
2278 instead if all goes well. Issues an error message if something is
2279 amiss. Returns error_mark_node if the error is not easily
2280 recoverable.
2282 FLAGS is a bitmask consisting of the following flags:
2284 2: The function has a definition.
2285 4: The function is a friend.
2287 The TEMPLATE_COUNT is the number of references to qualifying
2288 template classes that appeared in the name of the function. For
2289 example, in
2291 template <class T> struct S { void f(); };
2292 void S<int>::f();
2294 the TEMPLATE_COUNT would be 1. However, explicitly specialized
2295 classes are not counted in the TEMPLATE_COUNT, so that in
2297 template <class T> struct S {};
2298 template <> struct S<int> { void f(); }
2299 template <> void S<int>::f();
2301 the TEMPLATE_COUNT would be 0. (Note that this declaration is
2302 invalid; there should be no template <>.)
2304 If the function is a specialization, it is marked as such via
2305 DECL_TEMPLATE_SPECIALIZATION. Furthermore, its DECL_TEMPLATE_INFO
2306 is set up correctly, and it is added to the list of specializations
2307 for that template. */
2309 tree
2310 check_explicit_specialization (tree declarator,
2311 tree decl,
2312 int template_count,
2313 int flags)
2315 int have_def = flags & 2;
2316 int is_friend = flags & 4;
2317 int specialization = 0;
2318 int explicit_instantiation = 0;
2319 int member_specialization = 0;
2320 tree ctype = DECL_CLASS_CONTEXT (decl);
2321 tree dname = DECL_NAME (decl);
2322 tmpl_spec_kind tsk;
2324 if (is_friend)
2326 if (!processing_specialization)
2327 tsk = tsk_none;
2328 else
2329 tsk = tsk_excessive_parms;
2331 else
2332 tsk = current_tmpl_spec_kind (template_count);
2334 switch (tsk)
2336 case tsk_none:
2337 if (processing_specialization)
2339 specialization = 1;
2340 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2342 else if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2344 if (is_friend)
2345 /* This could be something like:
2347 template <class T> void f(T);
2348 class S { friend void f<>(int); } */
2349 specialization = 1;
2350 else
2352 /* This case handles bogus declarations like template <>
2353 template <class T> void f<int>(); */
2355 error ("template-id %qD in declaration of primary template",
2356 declarator);
2357 return decl;
2360 break;
2362 case tsk_invalid_member_spec:
2363 /* The error has already been reported in
2364 check_specialization_scope. */
2365 return error_mark_node;
2367 case tsk_invalid_expl_inst:
2368 error ("template parameter list used in explicit instantiation");
2370 /* Fall through. */
2372 case tsk_expl_inst:
2373 if (have_def)
2374 error ("definition provided for explicit instantiation");
2376 explicit_instantiation = 1;
2377 break;
2379 case tsk_excessive_parms:
2380 case tsk_insufficient_parms:
2381 if (tsk == tsk_excessive_parms)
2382 error ("too many template parameter lists in declaration of %qD",
2383 decl);
2384 else if (template_header_count)
2385 error("too few template parameter lists in declaration of %qD", decl);
2386 else
2387 error("explicit specialization of %qD must be introduced by "
2388 "%<template <>%>", decl);
2390 /* Fall through. */
2391 case tsk_expl_spec:
2392 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2393 if (ctype)
2394 member_specialization = 1;
2395 else
2396 specialization = 1;
2397 break;
2399 case tsk_template:
2400 if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2402 /* This case handles bogus declarations like template <>
2403 template <class T> void f<int>(); */
2405 if (uses_template_parms (declarator))
2406 error ("function template partial specialization %qD "
2407 "is not allowed", declarator);
2408 else
2409 error ("template-id %qD in declaration of primary template",
2410 declarator);
2411 return decl;
2414 if (ctype && CLASSTYPE_TEMPLATE_INSTANTIATION (ctype))
2415 /* This is a specialization of a member template, without
2416 specialization the containing class. Something like:
2418 template <class T> struct S {
2419 template <class U> void f (U);
2421 template <> template <class U> void S<int>::f(U) {}
2423 That's a specialization -- but of the entire template. */
2424 specialization = 1;
2425 break;
2427 default:
2428 gcc_unreachable ();
2431 if (specialization || member_specialization)
2433 tree t = TYPE_ARG_TYPES (TREE_TYPE (decl));
2434 for (; t; t = TREE_CHAIN (t))
2435 if (TREE_PURPOSE (t))
2437 permerror (input_location,
2438 "default argument specified in explicit specialization");
2439 break;
2443 if (specialization || member_specialization || explicit_instantiation)
2445 tree tmpl = NULL_TREE;
2446 tree targs = NULL_TREE;
2448 /* Make sure that the declarator is a TEMPLATE_ID_EXPR. */
2449 if (TREE_CODE (declarator) != TEMPLATE_ID_EXPR)
2451 tree fns;
2453 gcc_assert (TREE_CODE (declarator) == IDENTIFIER_NODE);
2454 if (ctype)
2455 fns = dname;
2456 else
2458 /* If there is no class context, the explicit instantiation
2459 must be at namespace scope. */
2460 gcc_assert (DECL_NAMESPACE_SCOPE_P (decl));
2462 /* Find the namespace binding, using the declaration
2463 context. */
2464 fns = lookup_qualified_name (CP_DECL_CONTEXT (decl), dname,
2465 false, true);
2466 if (fns == error_mark_node || !is_overloaded_fn (fns))
2468 error ("%qD is not a template function", dname);
2469 fns = error_mark_node;
2471 else
2473 tree fn = OVL_CURRENT (fns);
2474 if (!is_associated_namespace (CP_DECL_CONTEXT (decl),
2475 CP_DECL_CONTEXT (fn)))
2476 error ("%qD is not declared in %qD",
2477 decl, current_namespace);
2481 declarator = lookup_template_function (fns, NULL_TREE);
2484 if (declarator == error_mark_node)
2485 return error_mark_node;
2487 if (ctype != NULL_TREE && TYPE_BEING_DEFINED (ctype))
2489 if (!explicit_instantiation)
2490 /* A specialization in class scope. This is invalid,
2491 but the error will already have been flagged by
2492 check_specialization_scope. */
2493 return error_mark_node;
2494 else
2496 /* It's not valid to write an explicit instantiation in
2497 class scope, e.g.:
2499 class C { template void f(); }
2501 This case is caught by the parser. However, on
2502 something like:
2504 template class C { void f(); };
2506 (which is invalid) we can get here. The error will be
2507 issued later. */
2511 return decl;
2513 else if (ctype != NULL_TREE
2514 && (TREE_CODE (TREE_OPERAND (declarator, 0)) ==
2515 IDENTIFIER_NODE))
2517 /* Find the list of functions in ctype that have the same
2518 name as the declared function. */
2519 tree name = TREE_OPERAND (declarator, 0);
2520 tree fns = NULL_TREE;
2521 int idx;
2523 if (constructor_name_p (name, ctype))
2525 int is_constructor = DECL_CONSTRUCTOR_P (decl);
2527 if (is_constructor ? !TYPE_HAS_USER_CONSTRUCTOR (ctype)
2528 : !CLASSTYPE_DESTRUCTORS (ctype))
2530 /* From [temp.expl.spec]:
2532 If such an explicit specialization for the member
2533 of a class template names an implicitly-declared
2534 special member function (clause _special_), the
2535 program is ill-formed.
2537 Similar language is found in [temp.explicit]. */
2538 error ("specialization of implicitly-declared special member function");
2539 return error_mark_node;
2542 name = is_constructor ? ctor_identifier : dtor_identifier;
2545 if (!DECL_CONV_FN_P (decl))
2547 idx = lookup_fnfields_1 (ctype, name);
2548 if (idx >= 0)
2549 fns = VEC_index (tree, CLASSTYPE_METHOD_VEC (ctype), idx);
2551 else
2553 VEC(tree,gc) *methods;
2554 tree ovl;
2556 /* For a type-conversion operator, we cannot do a
2557 name-based lookup. We might be looking for `operator
2558 int' which will be a specialization of `operator T'.
2559 So, we find *all* the conversion operators, and then
2560 select from them. */
2561 fns = NULL_TREE;
2563 methods = CLASSTYPE_METHOD_VEC (ctype);
2564 if (methods)
2565 for (idx = CLASSTYPE_FIRST_CONVERSION_SLOT;
2566 VEC_iterate (tree, methods, idx, ovl);
2567 ++idx)
2569 if (!DECL_CONV_FN_P (OVL_CURRENT (ovl)))
2570 /* There are no more conversion functions. */
2571 break;
2573 /* Glue all these conversion functions together
2574 with those we already have. */
2575 for (; ovl; ovl = OVL_NEXT (ovl))
2576 fns = ovl_cons (OVL_CURRENT (ovl), fns);
2580 if (fns == NULL_TREE)
2582 error ("no member function %qD declared in %qT", name, ctype);
2583 return error_mark_node;
2585 else
2586 TREE_OPERAND (declarator, 0) = fns;
2589 /* Figure out what exactly is being specialized at this point.
2590 Note that for an explicit instantiation, even one for a
2591 member function, we cannot tell apriori whether the
2592 instantiation is for a member template, or just a member
2593 function of a template class. Even if a member template is
2594 being instantiated, the member template arguments may be
2595 elided if they can be deduced from the rest of the
2596 declaration. */
2597 tmpl = determine_specialization (declarator, decl,
2598 &targs,
2599 member_specialization,
2600 template_count,
2601 tsk);
2603 if (!tmpl || tmpl == error_mark_node)
2604 /* We couldn't figure out what this declaration was
2605 specializing. */
2606 return error_mark_node;
2607 else
2609 tree gen_tmpl = most_general_template (tmpl);
2611 if (explicit_instantiation)
2613 /* We don't set DECL_EXPLICIT_INSTANTIATION here; that
2614 is done by do_decl_instantiation later. */
2616 int arg_depth = TMPL_ARGS_DEPTH (targs);
2617 int parm_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
2619 if (arg_depth > parm_depth)
2621 /* If TMPL is not the most general template (for
2622 example, if TMPL is a friend template that is
2623 injected into namespace scope), then there will
2624 be too many levels of TARGS. Remove some of them
2625 here. */
2626 int i;
2627 tree new_targs;
2629 new_targs = make_tree_vec (parm_depth);
2630 for (i = arg_depth - parm_depth; i < arg_depth; ++i)
2631 TREE_VEC_ELT (new_targs, i - (arg_depth - parm_depth))
2632 = TREE_VEC_ELT (targs, i);
2633 targs = new_targs;
2636 return instantiate_template (tmpl, targs, tf_error);
2639 /* If we thought that the DECL was a member function, but it
2640 turns out to be specializing a static member function,
2641 make DECL a static member function as well. */
2642 if (DECL_STATIC_FUNCTION_P (tmpl)
2643 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2644 revert_static_member_fn (decl);
2646 /* If this is a specialization of a member template of a
2647 template class, we want to return the TEMPLATE_DECL, not
2648 the specialization of it. */
2649 if (tsk == tsk_template)
2651 tree result = DECL_TEMPLATE_RESULT (tmpl);
2652 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
2653 DECL_INITIAL (result) = NULL_TREE;
2654 if (have_def)
2656 tree parm;
2657 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
2658 DECL_SOURCE_LOCATION (result)
2659 = DECL_SOURCE_LOCATION (decl);
2660 /* We want to use the argument list specified in the
2661 definition, not in the original declaration. */
2662 DECL_ARGUMENTS (result) = DECL_ARGUMENTS (decl);
2663 for (parm = DECL_ARGUMENTS (result); parm;
2664 parm = DECL_CHAIN (parm))
2665 DECL_CONTEXT (parm) = result;
2667 return register_specialization (tmpl, gen_tmpl, targs,
2668 is_friend, 0);
2671 /* Set up the DECL_TEMPLATE_INFO for DECL. */
2672 DECL_TEMPLATE_INFO (decl) = build_template_info (tmpl, targs);
2674 /* Inherit default function arguments from the template
2675 DECL is specializing. */
2676 copy_default_args_to_explicit_spec (decl);
2678 /* This specialization has the same protection as the
2679 template it specializes. */
2680 TREE_PRIVATE (decl) = TREE_PRIVATE (gen_tmpl);
2681 TREE_PROTECTED (decl) = TREE_PROTECTED (gen_tmpl);
2683 /* 7.1.1-1 [dcl.stc]
2685 A storage-class-specifier shall not be specified in an
2686 explicit specialization...
2688 The parser rejects these, so unless action is taken here,
2689 explicit function specializations will always appear with
2690 global linkage.
2692 The action recommended by the C++ CWG in response to C++
2693 defect report 605 is to make the storage class and linkage
2694 of the explicit specialization match the templated function:
2696 http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#605
2698 if (tsk == tsk_expl_spec && DECL_FUNCTION_TEMPLATE_P (gen_tmpl))
2700 tree tmpl_func = DECL_TEMPLATE_RESULT (gen_tmpl);
2701 gcc_assert (TREE_CODE (tmpl_func) == FUNCTION_DECL);
2703 /* This specialization has the same linkage and visibility as
2704 the function template it specializes. */
2705 TREE_PUBLIC (decl) = TREE_PUBLIC (tmpl_func);
2706 if (! TREE_PUBLIC (decl))
2708 DECL_INTERFACE_KNOWN (decl) = 1;
2709 DECL_NOT_REALLY_EXTERN (decl) = 1;
2711 DECL_THIS_STATIC (decl) = DECL_THIS_STATIC (tmpl_func);
2712 if (DECL_VISIBILITY_SPECIFIED (tmpl_func))
2714 DECL_VISIBILITY_SPECIFIED (decl) = 1;
2715 DECL_VISIBILITY (decl) = DECL_VISIBILITY (tmpl_func);
2719 /* If DECL is a friend declaration, declared using an
2720 unqualified name, the namespace associated with DECL may
2721 have been set incorrectly. For example, in:
2723 template <typename T> void f(T);
2724 namespace N {
2725 struct S { friend void f<int>(int); }
2728 we will have set the DECL_CONTEXT for the friend
2729 declaration to N, rather than to the global namespace. */
2730 if (DECL_NAMESPACE_SCOPE_P (decl))
2731 DECL_CONTEXT (decl) = DECL_CONTEXT (tmpl);
2733 if (is_friend && !have_def)
2734 /* This is not really a declaration of a specialization.
2735 It's just the name of an instantiation. But, it's not
2736 a request for an instantiation, either. */
2737 SET_DECL_IMPLICIT_INSTANTIATION (decl);
2738 else if (DECL_CONSTRUCTOR_P (decl) || DECL_DESTRUCTOR_P (decl))
2739 /* This is indeed a specialization. In case of constructors
2740 and destructors, we need in-charge and not-in-charge
2741 versions in V3 ABI. */
2742 clone_function_decl (decl, /*update_method_vec_p=*/0);
2744 /* Register this specialization so that we can find it
2745 again. */
2746 decl = register_specialization (decl, gen_tmpl, targs, is_friend, 0);
2750 return decl;
2753 /* Returns 1 iff PARMS1 and PARMS2 are identical sets of template
2754 parameters. These are represented in the same format used for
2755 DECL_TEMPLATE_PARMS. */
2758 comp_template_parms (const_tree parms1, const_tree parms2)
2760 const_tree p1;
2761 const_tree p2;
2763 if (parms1 == parms2)
2764 return 1;
2766 for (p1 = parms1, p2 = parms2;
2767 p1 != NULL_TREE && p2 != NULL_TREE;
2768 p1 = TREE_CHAIN (p1), p2 = TREE_CHAIN (p2))
2770 tree t1 = TREE_VALUE (p1);
2771 tree t2 = TREE_VALUE (p2);
2772 int i;
2774 gcc_assert (TREE_CODE (t1) == TREE_VEC);
2775 gcc_assert (TREE_CODE (t2) == TREE_VEC);
2777 if (TREE_VEC_LENGTH (t1) != TREE_VEC_LENGTH (t2))
2778 return 0;
2780 for (i = 0; i < TREE_VEC_LENGTH (t2); ++i)
2782 tree parm1 = TREE_VALUE (TREE_VEC_ELT (t1, i));
2783 tree parm2 = TREE_VALUE (TREE_VEC_ELT (t2, i));
2785 /* If either of the template parameters are invalid, assume
2786 they match for the sake of error recovery. */
2787 if (parm1 == error_mark_node || parm2 == error_mark_node)
2788 return 1;
2790 if (TREE_CODE (parm1) != TREE_CODE (parm2))
2791 return 0;
2793 if (TREE_CODE (parm1) == TEMPLATE_TYPE_PARM
2794 && (TEMPLATE_TYPE_PARAMETER_PACK (parm1)
2795 == TEMPLATE_TYPE_PARAMETER_PACK (parm2)))
2796 continue;
2797 else if (!same_type_p (TREE_TYPE (parm1), TREE_TYPE (parm2)))
2798 return 0;
2802 if ((p1 != NULL_TREE) != (p2 != NULL_TREE))
2803 /* One set of parameters has more parameters lists than the
2804 other. */
2805 return 0;
2807 return 1;
2810 /* Determine whether PARM is a parameter pack. */
2812 bool
2813 template_parameter_pack_p (const_tree parm)
2815 /* Determine if we have a non-type template parameter pack. */
2816 if (TREE_CODE (parm) == PARM_DECL)
2817 return (DECL_TEMPLATE_PARM_P (parm)
2818 && TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)));
2819 if (TREE_CODE (parm) == TEMPLATE_PARM_INDEX)
2820 return TEMPLATE_PARM_PARAMETER_PACK (parm);
2822 /* If this is a list of template parameters, we could get a
2823 TYPE_DECL or a TEMPLATE_DECL. */
2824 if (TREE_CODE (parm) == TYPE_DECL || TREE_CODE (parm) == TEMPLATE_DECL)
2825 parm = TREE_TYPE (parm);
2827 /* Otherwise it must be a type template parameter. */
2828 return ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
2829 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
2830 && TEMPLATE_TYPE_PARAMETER_PACK (parm));
2833 /* Determine if T is a function parameter pack. */
2835 bool
2836 function_parameter_pack_p (const_tree t)
2838 if (t && TREE_CODE (t) == PARM_DECL)
2839 return FUNCTION_PARAMETER_PACK_P (t);
2840 return false;
2843 /* Return the function template declaration of PRIMARY_FUNC_TMPL_INST.
2844 PRIMARY_FUNC_TMPL_INST is a primary function template instantiation. */
2846 tree
2847 get_function_template_decl (const_tree primary_func_tmpl_inst)
2849 if (! primary_func_tmpl_inst
2850 || TREE_CODE (primary_func_tmpl_inst) != FUNCTION_DECL
2851 || ! primary_template_instantiation_p (primary_func_tmpl_inst))
2852 return NULL;
2854 return DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (primary_func_tmpl_inst));
2857 /* Return true iff the function parameter PARAM_DECL was expanded
2858 from the function parameter pack PACK. */
2860 bool
2861 function_parameter_expanded_from_pack_p (tree param_decl, tree pack)
2863 if (DECL_ARTIFICIAL (param_decl)
2864 || !function_parameter_pack_p (pack))
2865 return false;
2867 /* The parameter pack and its pack arguments have the same
2868 DECL_PARM_INDEX. */
2869 return DECL_PARM_INDEX (pack) == DECL_PARM_INDEX (param_decl);
2872 /* Determine whether ARGS describes a variadic template args list,
2873 i.e., one that is terminated by a template argument pack. */
2875 static bool
2876 template_args_variadic_p (tree args)
2878 int nargs;
2879 tree last_parm;
2881 if (args == NULL_TREE)
2882 return false;
2884 args = INNERMOST_TEMPLATE_ARGS (args);
2885 nargs = TREE_VEC_LENGTH (args);
2887 if (nargs == 0)
2888 return false;
2890 last_parm = TREE_VEC_ELT (args, nargs - 1);
2892 return ARGUMENT_PACK_P (last_parm);
2895 /* Generate a new name for the parameter pack name NAME (an
2896 IDENTIFIER_NODE) that incorporates its */
2898 static tree
2899 make_ith_pack_parameter_name (tree name, int i)
2901 /* Munge the name to include the parameter index. */
2902 #define NUMBUF_LEN 128
2903 char numbuf[NUMBUF_LEN];
2904 char* newname;
2905 int newname_len;
2907 snprintf (numbuf, NUMBUF_LEN, "%i", i);
2908 newname_len = IDENTIFIER_LENGTH (name)
2909 + strlen (numbuf) + 2;
2910 newname = (char*)alloca (newname_len);
2911 snprintf (newname, newname_len,
2912 "%s#%i", IDENTIFIER_POINTER (name), i);
2913 return get_identifier (newname);
2916 /* Return true if T is a primary function, class or alias template
2917 instantiation. */
2919 bool
2920 primary_template_instantiation_p (const_tree t)
2922 if (!t)
2923 return false;
2925 if (TREE_CODE (t) == FUNCTION_DECL)
2926 return DECL_LANG_SPECIFIC (t)
2927 && DECL_TEMPLATE_INSTANTIATION (t)
2928 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (t));
2929 else if (CLASS_TYPE_P (t) && !TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
2930 return CLASSTYPE_TEMPLATE_INSTANTIATION (t)
2931 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (t));
2932 else if (alias_template_specialization_p (t))
2933 return true;
2934 return false;
2937 /* Return true if PARM is a template template parameter. */
2939 bool
2940 template_template_parameter_p (const_tree parm)
2942 return DECL_TEMPLATE_TEMPLATE_PARM_P (parm);
2945 /* Return true iff PARM is a DECL representing a type template
2946 parameter. */
2948 bool
2949 template_type_parameter_p (const_tree parm)
2951 return (parm
2952 && (TREE_CODE (parm) == TYPE_DECL
2953 || TREE_CODE (parm) == TEMPLATE_DECL)
2954 && DECL_TEMPLATE_PARM_P (parm));
2957 /* Return the template parameters of T if T is a
2958 primary template instantiation, NULL otherwise. */
2960 tree
2961 get_primary_template_innermost_parameters (const_tree t)
2963 tree parms = NULL, template_info = NULL;
2965 if ((template_info = get_template_info (t))
2966 && primary_template_instantiation_p (t))
2967 parms = INNERMOST_TEMPLATE_PARMS
2968 (DECL_TEMPLATE_PARMS (TI_TEMPLATE (template_info)));
2970 return parms;
2973 /* Return the template parameters of the LEVELth level from the full list
2974 of template parameters PARMS. */
2976 tree
2977 get_template_parms_at_level (tree parms, int level)
2979 tree p;
2980 if (!parms
2981 || TREE_CODE (parms) != TREE_LIST
2982 || level > TMPL_PARMS_DEPTH (parms))
2983 return NULL_TREE;
2985 for (p = parms; p; p = TREE_CHAIN (p))
2986 if (TMPL_PARMS_DEPTH (p) == level)
2987 return p;
2989 return NULL_TREE;
2992 /* Returns the template arguments of T if T is a template instantiation,
2993 NULL otherwise. */
2995 tree
2996 get_template_innermost_arguments (const_tree t)
2998 tree args = NULL, template_info = NULL;
3000 if ((template_info = get_template_info (t))
3001 && TI_ARGS (template_info))
3002 args = INNERMOST_TEMPLATE_ARGS (TI_ARGS (template_info));
3004 return args;
3007 /* Return the argument pack elements of T if T is a template argument pack,
3008 NULL otherwise. */
3010 tree
3011 get_template_argument_pack_elems (const_tree t)
3013 if (TREE_CODE (t) != TYPE_ARGUMENT_PACK
3014 && TREE_CODE (t) != NONTYPE_ARGUMENT_PACK)
3015 return NULL;
3017 return ARGUMENT_PACK_ARGS (t);
3020 /* Structure used to track the progress of find_parameter_packs_r. */
3021 struct find_parameter_pack_data
3023 /* TREE_LIST that will contain all of the parameter packs found by
3024 the traversal. */
3025 tree* parameter_packs;
3027 /* Set of AST nodes that have been visited by the traversal. */
3028 struct pointer_set_t *visited;
3031 /* Identifies all of the argument packs that occur in a template
3032 argument and appends them to the TREE_LIST inside DATA, which is a
3033 find_parameter_pack_data structure. This is a subroutine of
3034 make_pack_expansion and uses_parameter_packs. */
3035 static tree
3036 find_parameter_packs_r (tree *tp, int *walk_subtrees, void* data)
3038 tree t = *tp;
3039 struct find_parameter_pack_data* ppd =
3040 (struct find_parameter_pack_data*)data;
3041 bool parameter_pack_p = false;
3043 /* Handle type aliases/typedefs. */
3044 if (TYPE_P (t)
3045 && TYPE_NAME (t)
3046 && TREE_CODE (TYPE_NAME (t)) == TYPE_DECL
3047 && TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
3049 if (TYPE_TEMPLATE_INFO (t))
3050 cp_walk_tree (&TYPE_TI_ARGS (t),
3051 &find_parameter_packs_r,
3052 ppd, ppd->visited);
3053 *walk_subtrees = 0;
3054 return NULL_TREE;
3057 /* Identify whether this is a parameter pack or not. */
3058 switch (TREE_CODE (t))
3060 case TEMPLATE_PARM_INDEX:
3061 if (TEMPLATE_PARM_PARAMETER_PACK (t))
3062 parameter_pack_p = true;
3063 break;
3065 case TEMPLATE_TYPE_PARM:
3066 t = TYPE_MAIN_VARIANT (t);
3067 case TEMPLATE_TEMPLATE_PARM:
3068 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
3069 parameter_pack_p = true;
3070 break;
3072 case PARM_DECL:
3073 if (FUNCTION_PARAMETER_PACK_P (t))
3075 /* We don't want to walk into the type of a PARM_DECL,
3076 because we don't want to see the type parameter pack. */
3077 *walk_subtrees = 0;
3078 parameter_pack_p = true;
3080 break;
3082 case BASES:
3083 parameter_pack_p = true;
3084 break;
3085 default:
3086 /* Not a parameter pack. */
3087 break;
3090 if (parameter_pack_p)
3092 /* Add this parameter pack to the list. */
3093 *ppd->parameter_packs = tree_cons (NULL_TREE, t, *ppd->parameter_packs);
3096 if (TYPE_P (t))
3097 cp_walk_tree (&TYPE_CONTEXT (t),
3098 &find_parameter_packs_r, ppd, ppd->visited);
3100 /* This switch statement will return immediately if we don't find a
3101 parameter pack. */
3102 switch (TREE_CODE (t))
3104 case TEMPLATE_PARM_INDEX:
3105 return NULL_TREE;
3107 case BOUND_TEMPLATE_TEMPLATE_PARM:
3108 /* Check the template itself. */
3109 cp_walk_tree (&TREE_TYPE (TYPE_TI_TEMPLATE (t)),
3110 &find_parameter_packs_r, ppd, ppd->visited);
3111 /* Check the template arguments. */
3112 cp_walk_tree (&TYPE_TI_ARGS (t), &find_parameter_packs_r, ppd,
3113 ppd->visited);
3114 *walk_subtrees = 0;
3115 return NULL_TREE;
3117 case TEMPLATE_TYPE_PARM:
3118 case TEMPLATE_TEMPLATE_PARM:
3119 return NULL_TREE;
3121 case PARM_DECL:
3122 return NULL_TREE;
3124 case RECORD_TYPE:
3125 if (TYPE_PTRMEMFUNC_P (t))
3126 return NULL_TREE;
3127 /* Fall through. */
3129 case UNION_TYPE:
3130 case ENUMERAL_TYPE:
3131 if (TYPE_TEMPLATE_INFO (t))
3132 cp_walk_tree (&TI_ARGS (TYPE_TEMPLATE_INFO (t)),
3133 &find_parameter_packs_r, ppd, ppd->visited);
3135 *walk_subtrees = 0;
3136 return NULL_TREE;
3138 case CONSTRUCTOR:
3139 case TEMPLATE_DECL:
3140 cp_walk_tree (&TREE_TYPE (t),
3141 &find_parameter_packs_r, ppd, ppd->visited);
3142 return NULL_TREE;
3144 case TYPENAME_TYPE:
3145 cp_walk_tree (&TYPENAME_TYPE_FULLNAME (t), &find_parameter_packs_r,
3146 ppd, ppd->visited);
3147 *walk_subtrees = 0;
3148 return NULL_TREE;
3150 case TYPE_PACK_EXPANSION:
3151 case EXPR_PACK_EXPANSION:
3152 *walk_subtrees = 0;
3153 return NULL_TREE;
3155 case INTEGER_TYPE:
3156 cp_walk_tree (&TYPE_MAX_VALUE (t), &find_parameter_packs_r,
3157 ppd, ppd->visited);
3158 *walk_subtrees = 0;
3159 return NULL_TREE;
3161 case IDENTIFIER_NODE:
3162 cp_walk_tree (&TREE_TYPE (t), &find_parameter_packs_r, ppd,
3163 ppd->visited);
3164 *walk_subtrees = 0;
3165 return NULL_TREE;
3167 default:
3168 return NULL_TREE;
3171 return NULL_TREE;
3174 /* Determines if the expression or type T uses any parameter packs. */
3175 bool
3176 uses_parameter_packs (tree t)
3178 tree parameter_packs = NULL_TREE;
3179 struct find_parameter_pack_data ppd;
3180 ppd.parameter_packs = &parameter_packs;
3181 ppd.visited = pointer_set_create ();
3182 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3183 pointer_set_destroy (ppd.visited);
3184 return parameter_packs != NULL_TREE;
3187 /* Turn ARG, which may be an expression, type, or a TREE_LIST
3188 representation a base-class initializer into a parameter pack
3189 expansion. If all goes well, the resulting node will be an
3190 EXPR_PACK_EXPANSION, TYPE_PACK_EXPANSION, or TREE_LIST,
3191 respectively. */
3192 tree
3193 make_pack_expansion (tree arg)
3195 tree result;
3196 tree parameter_packs = NULL_TREE;
3197 bool for_types = false;
3198 struct find_parameter_pack_data ppd;
3200 if (!arg || arg == error_mark_node)
3201 return arg;
3203 if (TREE_CODE (arg) == TREE_LIST)
3205 /* The only time we will see a TREE_LIST here is for a base
3206 class initializer. In this case, the TREE_PURPOSE will be a
3207 _TYPE node (representing the base class expansion we're
3208 initializing) and the TREE_VALUE will be a TREE_LIST
3209 containing the initialization arguments.
3211 The resulting expansion looks somewhat different from most
3212 expansions. Rather than returning just one _EXPANSION, we
3213 return a TREE_LIST whose TREE_PURPOSE is a
3214 TYPE_PACK_EXPANSION containing the bases that will be
3215 initialized. The TREE_VALUE will be identical to the
3216 original TREE_VALUE, which is a list of arguments that will
3217 be passed to each base. We do not introduce any new pack
3218 expansion nodes into the TREE_VALUE (although it is possible
3219 that some already exist), because the TREE_PURPOSE and
3220 TREE_VALUE all need to be expanded together with the same
3221 _EXPANSION node. Note that the TYPE_PACK_EXPANSION in the
3222 resulting TREE_PURPOSE will mention the parameter packs in
3223 both the bases and the arguments to the bases. */
3224 tree purpose;
3225 tree value;
3226 tree parameter_packs = NULL_TREE;
3228 /* Determine which parameter packs will be used by the base
3229 class expansion. */
3230 ppd.visited = pointer_set_create ();
3231 ppd.parameter_packs = &parameter_packs;
3232 cp_walk_tree (&TREE_PURPOSE (arg), &find_parameter_packs_r,
3233 &ppd, ppd.visited);
3235 if (parameter_packs == NULL_TREE)
3237 error ("base initializer expansion %<%T%> contains no parameter packs", arg);
3238 pointer_set_destroy (ppd.visited);
3239 return error_mark_node;
3242 if (TREE_VALUE (arg) != void_type_node)
3244 /* Collect the sets of parameter packs used in each of the
3245 initialization arguments. */
3246 for (value = TREE_VALUE (arg); value; value = TREE_CHAIN (value))
3248 /* Determine which parameter packs will be expanded in this
3249 argument. */
3250 cp_walk_tree (&TREE_VALUE (value), &find_parameter_packs_r,
3251 &ppd, ppd.visited);
3255 pointer_set_destroy (ppd.visited);
3257 /* Create the pack expansion type for the base type. */
3258 purpose = cxx_make_type (TYPE_PACK_EXPANSION);
3259 SET_PACK_EXPANSION_PATTERN (purpose, TREE_PURPOSE (arg));
3260 PACK_EXPANSION_PARAMETER_PACKS (purpose) = parameter_packs;
3262 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3263 they will rarely be compared to anything. */
3264 SET_TYPE_STRUCTURAL_EQUALITY (purpose);
3266 return tree_cons (purpose, TREE_VALUE (arg), NULL_TREE);
3269 if (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL)
3270 for_types = true;
3272 /* Build the PACK_EXPANSION_* node. */
3273 result = for_types
3274 ? cxx_make_type (TYPE_PACK_EXPANSION)
3275 : make_node (EXPR_PACK_EXPANSION);
3276 SET_PACK_EXPANSION_PATTERN (result, arg);
3277 if (TREE_CODE (result) == EXPR_PACK_EXPANSION)
3279 /* Propagate type and const-expression information. */
3280 TREE_TYPE (result) = TREE_TYPE (arg);
3281 TREE_CONSTANT (result) = TREE_CONSTANT (arg);
3283 else
3284 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3285 they will rarely be compared to anything. */
3286 SET_TYPE_STRUCTURAL_EQUALITY (result);
3288 /* Determine which parameter packs will be expanded. */
3289 ppd.parameter_packs = &parameter_packs;
3290 ppd.visited = pointer_set_create ();
3291 cp_walk_tree (&arg, &find_parameter_packs_r, &ppd, ppd.visited);
3292 pointer_set_destroy (ppd.visited);
3294 /* Make sure we found some parameter packs. */
3295 if (parameter_packs == NULL_TREE)
3297 if (TYPE_P (arg))
3298 error ("expansion pattern %<%T%> contains no argument packs", arg);
3299 else
3300 error ("expansion pattern %<%E%> contains no argument packs", arg);
3301 return error_mark_node;
3303 PACK_EXPANSION_PARAMETER_PACKS (result) = parameter_packs;
3305 PACK_EXPANSION_LOCAL_P (result) = at_function_scope_p ();
3307 return result;
3310 /* Checks T for any "bare" parameter packs, which have not yet been
3311 expanded, and issues an error if any are found. This operation can
3312 only be done on full expressions or types (e.g., an expression
3313 statement, "if" condition, etc.), because we could have expressions like:
3315 foo(f(g(h(args)))...)
3317 where "args" is a parameter pack. check_for_bare_parameter_packs
3318 should not be called for the subexpressions args, h(args),
3319 g(h(args)), or f(g(h(args))), because we would produce erroneous
3320 error messages.
3322 Returns TRUE and emits an error if there were bare parameter packs,
3323 returns FALSE otherwise. */
3324 bool
3325 check_for_bare_parameter_packs (tree t)
3327 tree parameter_packs = NULL_TREE;
3328 struct find_parameter_pack_data ppd;
3330 if (!processing_template_decl || !t || t == error_mark_node)
3331 return false;
3333 if (TREE_CODE (t) == TYPE_DECL)
3334 t = TREE_TYPE (t);
3336 ppd.parameter_packs = &parameter_packs;
3337 ppd.visited = pointer_set_create ();
3338 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3339 pointer_set_destroy (ppd.visited);
3341 if (parameter_packs)
3343 error ("parameter packs not expanded with %<...%>:");
3344 while (parameter_packs)
3346 tree pack = TREE_VALUE (parameter_packs);
3347 tree name = NULL_TREE;
3349 if (TREE_CODE (pack) == TEMPLATE_TYPE_PARM
3350 || TREE_CODE (pack) == TEMPLATE_TEMPLATE_PARM)
3351 name = TYPE_NAME (pack);
3352 else if (TREE_CODE (pack) == TEMPLATE_PARM_INDEX)
3353 name = DECL_NAME (TEMPLATE_PARM_DECL (pack));
3354 else
3355 name = DECL_NAME (pack);
3357 if (name)
3358 inform (input_location, " %qD", name);
3359 else
3360 inform (input_location, " <anonymous>");
3362 parameter_packs = TREE_CHAIN (parameter_packs);
3365 return true;
3368 return false;
3371 /* Expand any parameter packs that occur in the template arguments in
3372 ARGS. */
3373 tree
3374 expand_template_argument_pack (tree args)
3376 tree result_args = NULL_TREE;
3377 int in_arg, out_arg = 0, nargs = args ? TREE_VEC_LENGTH (args) : 0;
3378 int num_result_args = -1;
3379 int non_default_args_count = -1;
3381 /* First, determine if we need to expand anything, and the number of
3382 slots we'll need. */
3383 for (in_arg = 0; in_arg < nargs; ++in_arg)
3385 tree arg = TREE_VEC_ELT (args, in_arg);
3386 if (arg == NULL_TREE)
3387 return args;
3388 if (ARGUMENT_PACK_P (arg))
3390 int num_packed = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg));
3391 if (num_result_args < 0)
3392 num_result_args = in_arg + num_packed;
3393 else
3394 num_result_args += num_packed;
3396 else
3398 if (num_result_args >= 0)
3399 num_result_args++;
3403 /* If no expansion is necessary, we're done. */
3404 if (num_result_args < 0)
3405 return args;
3407 /* Expand arguments. */
3408 result_args = make_tree_vec (num_result_args);
3409 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (args))
3410 non_default_args_count =
3411 GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (args);
3412 for (in_arg = 0; in_arg < nargs; ++in_arg)
3414 tree arg = TREE_VEC_ELT (args, in_arg);
3415 if (ARGUMENT_PACK_P (arg))
3417 tree packed = ARGUMENT_PACK_ARGS (arg);
3418 int i, num_packed = TREE_VEC_LENGTH (packed);
3419 for (i = 0; i < num_packed; ++i, ++out_arg)
3420 TREE_VEC_ELT (result_args, out_arg) = TREE_VEC_ELT(packed, i);
3421 if (non_default_args_count > 0)
3422 non_default_args_count += num_packed;
3424 else
3426 TREE_VEC_ELT (result_args, out_arg) = arg;
3427 ++out_arg;
3430 if (non_default_args_count >= 0)
3431 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (result_args, non_default_args_count);
3432 return result_args;
3435 /* Checks if DECL shadows a template parameter.
3437 [temp.local]: A template-parameter shall not be redeclared within its
3438 scope (including nested scopes).
3440 Emits an error and returns TRUE if the DECL shadows a parameter,
3441 returns FALSE otherwise. */
3443 bool
3444 check_template_shadow (tree decl)
3446 tree olddecl;
3448 /* If we're not in a template, we can't possibly shadow a template
3449 parameter. */
3450 if (!current_template_parms)
3451 return true;
3453 /* Figure out what we're shadowing. */
3454 if (TREE_CODE (decl) == OVERLOAD)
3455 decl = OVL_CURRENT (decl);
3456 olddecl = innermost_non_namespace_value (DECL_NAME (decl));
3458 /* If there's no previous binding for this name, we're not shadowing
3459 anything, let alone a template parameter. */
3460 if (!olddecl)
3461 return true;
3463 /* If we're not shadowing a template parameter, we're done. Note
3464 that OLDDECL might be an OVERLOAD (or perhaps even an
3465 ERROR_MARK), so we can't just blithely assume it to be a _DECL
3466 node. */
3467 if (!DECL_P (olddecl) || !DECL_TEMPLATE_PARM_P (olddecl))
3468 return true;
3470 /* We check for decl != olddecl to avoid bogus errors for using a
3471 name inside a class. We check TPFI to avoid duplicate errors for
3472 inline member templates. */
3473 if (decl == olddecl
3474 || TEMPLATE_PARMS_FOR_INLINE (current_template_parms))
3475 return true;
3477 error ("declaration of %q+#D", decl);
3478 error (" shadows template parm %q+#D", olddecl);
3479 return false;
3482 /* Return a new TEMPLATE_PARM_INDEX with the indicated INDEX, LEVEL,
3483 ORIG_LEVEL, DECL, and TYPE. */
3485 static tree
3486 build_template_parm_index (int index,
3487 int level,
3488 int orig_level,
3489 tree decl,
3490 tree type)
3492 tree t = make_node (TEMPLATE_PARM_INDEX);
3493 TEMPLATE_PARM_IDX (t) = index;
3494 TEMPLATE_PARM_LEVEL (t) = level;
3495 TEMPLATE_PARM_ORIG_LEVEL (t) = orig_level;
3496 TEMPLATE_PARM_DECL (t) = decl;
3497 TREE_TYPE (t) = type;
3498 TREE_CONSTANT (t) = TREE_CONSTANT (decl);
3499 TREE_READONLY (t) = TREE_READONLY (decl);
3501 return t;
3504 /* Find the canonical type parameter for the given template type
3505 parameter. Returns the canonical type parameter, which may be TYPE
3506 if no such parameter existed. */
3508 static tree
3509 canonical_type_parameter (tree type)
3511 tree list;
3512 int idx = TEMPLATE_TYPE_IDX (type);
3513 if (!canonical_template_parms)
3514 canonical_template_parms = VEC_alloc (tree, gc, idx+1);
3516 while (VEC_length (tree, canonical_template_parms) <= (unsigned)idx)
3517 VEC_safe_push (tree, gc, canonical_template_parms, NULL_TREE);
3519 list = VEC_index (tree, canonical_template_parms, idx);
3520 while (list && !comptypes (type, TREE_VALUE (list), COMPARE_STRUCTURAL))
3521 list = TREE_CHAIN (list);
3523 if (list)
3524 return TREE_VALUE (list);
3525 else
3527 VEC_replace(tree, canonical_template_parms, idx,
3528 tree_cons (NULL_TREE, type,
3529 VEC_index (tree, canonical_template_parms, idx)));
3530 return type;
3534 /* Return a TEMPLATE_PARM_INDEX, similar to INDEX, but whose
3535 TEMPLATE_PARM_LEVEL has been decreased by LEVELS. If such a
3536 TEMPLATE_PARM_INDEX already exists, it is returned; otherwise, a
3537 new one is created. */
3539 static tree
3540 reduce_template_parm_level (tree index, tree type, int levels, tree args,
3541 tsubst_flags_t complain)
3543 if (TEMPLATE_PARM_DESCENDANTS (index) == NULL_TREE
3544 || (TEMPLATE_PARM_LEVEL (TEMPLATE_PARM_DESCENDANTS (index))
3545 != TEMPLATE_PARM_LEVEL (index) - levels)
3546 || !same_type_p (type, TREE_TYPE (TEMPLATE_PARM_DESCENDANTS (index))))
3548 tree orig_decl = TEMPLATE_PARM_DECL (index);
3549 tree decl, t;
3551 decl = build_decl (DECL_SOURCE_LOCATION (orig_decl),
3552 TREE_CODE (orig_decl), DECL_NAME (orig_decl), type);
3553 TREE_CONSTANT (decl) = TREE_CONSTANT (orig_decl);
3554 TREE_READONLY (decl) = TREE_READONLY (orig_decl);
3555 DECL_ARTIFICIAL (decl) = 1;
3556 SET_DECL_TEMPLATE_PARM_P (decl);
3558 t = build_template_parm_index (TEMPLATE_PARM_IDX (index),
3559 TEMPLATE_PARM_LEVEL (index) - levels,
3560 TEMPLATE_PARM_ORIG_LEVEL (index),
3561 decl, type);
3562 TEMPLATE_PARM_DESCENDANTS (index) = t;
3563 TEMPLATE_PARM_PARAMETER_PACK (t)
3564 = TEMPLATE_PARM_PARAMETER_PACK (index);
3566 /* Template template parameters need this. */
3567 if (TREE_CODE (decl) == TEMPLATE_DECL)
3568 DECL_TEMPLATE_PARMS (decl) = tsubst_template_parms
3569 (DECL_TEMPLATE_PARMS (TEMPLATE_PARM_DECL (index)),
3570 args, complain);
3573 return TEMPLATE_PARM_DESCENDANTS (index);
3576 /* Process information from new template parameter PARM and append it
3577 to the LIST being built. This new parameter is a non-type
3578 parameter iff IS_NON_TYPE is true. This new parameter is a
3579 parameter pack iff IS_PARAMETER_PACK is true. The location of PARM
3580 is in PARM_LOC. NUM_TEMPLATE_PARMS is the size of the template
3581 parameter list PARM belongs to. This is used used to create a
3582 proper canonical type for the type of PARM that is to be created,
3583 iff PARM is a type. If the size is not known, this parameter shall
3584 be set to 0. */
3586 tree
3587 process_template_parm (tree list, location_t parm_loc, tree parm,
3588 bool is_non_type, bool is_parameter_pack)
3590 tree decl = 0;
3591 tree defval;
3592 tree err_parm_list;
3593 int idx = 0;
3595 gcc_assert (TREE_CODE (parm) == TREE_LIST);
3596 defval = TREE_PURPOSE (parm);
3598 if (list)
3600 tree p = tree_last (list);
3602 if (p && TREE_VALUE (p) != error_mark_node)
3604 p = TREE_VALUE (p);
3605 if (TREE_CODE (p) == TYPE_DECL || TREE_CODE (p) == TEMPLATE_DECL)
3606 idx = TEMPLATE_TYPE_IDX (TREE_TYPE (p));
3607 else
3608 idx = TEMPLATE_PARM_IDX (DECL_INITIAL (p));
3611 ++idx;
3613 else
3614 idx = 0;
3616 if (is_non_type)
3618 parm = TREE_VALUE (parm);
3620 SET_DECL_TEMPLATE_PARM_P (parm);
3622 if (TREE_TYPE (parm) == error_mark_node)
3624 err_parm_list = build_tree_list (defval, parm);
3625 TREE_VALUE (err_parm_list) = error_mark_node;
3626 return chainon (list, err_parm_list);
3628 else
3630 /* [temp.param]
3632 The top-level cv-qualifiers on the template-parameter are
3633 ignored when determining its type. */
3634 TREE_TYPE (parm) = TYPE_MAIN_VARIANT (TREE_TYPE (parm));
3635 if (invalid_nontype_parm_type_p (TREE_TYPE (parm), 1))
3637 err_parm_list = build_tree_list (defval, parm);
3638 TREE_VALUE (err_parm_list) = error_mark_node;
3639 return chainon (list, err_parm_list);
3642 if (uses_parameter_packs (TREE_TYPE (parm)) && !is_parameter_pack)
3644 /* This template parameter is not a parameter pack, but it
3645 should be. Complain about "bare" parameter packs. */
3646 check_for_bare_parameter_packs (TREE_TYPE (parm));
3648 /* Recover by calling this a parameter pack. */
3649 is_parameter_pack = true;
3653 /* A template parameter is not modifiable. */
3654 TREE_CONSTANT (parm) = 1;
3655 TREE_READONLY (parm) = 1;
3656 decl = build_decl (parm_loc,
3657 CONST_DECL, DECL_NAME (parm), TREE_TYPE (parm));
3658 TREE_CONSTANT (decl) = 1;
3659 TREE_READONLY (decl) = 1;
3660 DECL_INITIAL (parm) = DECL_INITIAL (decl)
3661 = build_template_parm_index (idx, processing_template_decl,
3662 processing_template_decl,
3663 decl, TREE_TYPE (parm));
3665 TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm))
3666 = is_parameter_pack;
3668 else
3670 tree t;
3671 parm = TREE_VALUE (TREE_VALUE (parm));
3673 if (parm && TREE_CODE (parm) == TEMPLATE_DECL)
3675 t = cxx_make_type (TEMPLATE_TEMPLATE_PARM);
3676 /* This is for distinguishing between real templates and template
3677 template parameters */
3678 TREE_TYPE (parm) = t;
3679 TREE_TYPE (DECL_TEMPLATE_RESULT (parm)) = t;
3680 decl = parm;
3682 else
3684 t = cxx_make_type (TEMPLATE_TYPE_PARM);
3685 /* parm is either IDENTIFIER_NODE or NULL_TREE. */
3686 decl = build_decl (parm_loc,
3687 TYPE_DECL, parm, t);
3690 TYPE_NAME (t) = decl;
3691 TYPE_STUB_DECL (t) = decl;
3692 parm = decl;
3693 TEMPLATE_TYPE_PARM_INDEX (t)
3694 = build_template_parm_index (idx, processing_template_decl,
3695 processing_template_decl,
3696 decl, TREE_TYPE (parm));
3697 TEMPLATE_TYPE_PARAMETER_PACK (t) = is_parameter_pack;
3698 TYPE_CANONICAL (t) = canonical_type_parameter (t);
3700 DECL_ARTIFICIAL (decl) = 1;
3701 SET_DECL_TEMPLATE_PARM_P (decl);
3702 pushdecl (decl);
3703 parm = build_tree_list (defval, parm);
3704 return chainon (list, parm);
3707 /* The end of a template parameter list has been reached. Process the
3708 tree list into a parameter vector, converting each parameter into a more
3709 useful form. Type parameters are saved as IDENTIFIER_NODEs, and others
3710 as PARM_DECLs. */
3712 tree
3713 end_template_parm_list (tree parms)
3715 int nparms;
3716 tree parm, next;
3717 tree saved_parmlist = make_tree_vec (list_length (parms));
3719 current_template_parms
3720 = tree_cons (size_int (processing_template_decl),
3721 saved_parmlist, current_template_parms);
3723 for (parm = parms, nparms = 0; parm; parm = next, nparms++)
3725 next = TREE_CHAIN (parm);
3726 TREE_VEC_ELT (saved_parmlist, nparms) = parm;
3727 TREE_CHAIN (parm) = NULL_TREE;
3730 --processing_template_parmlist;
3732 return saved_parmlist;
3735 /* end_template_decl is called after a template declaration is seen. */
3737 void
3738 end_template_decl (void)
3740 reset_specialization ();
3742 if (! processing_template_decl)
3743 return;
3745 /* This matches the pushlevel in begin_template_parm_list. */
3746 finish_scope ();
3748 --processing_template_decl;
3749 current_template_parms = TREE_CHAIN (current_template_parms);
3752 /* Takes a TREE_LIST representing a template parameter and convert it
3753 into an argument suitable to be passed to the type substitution
3754 functions. Note that If the TREE_LIST contains an error_mark
3755 node, the returned argument is error_mark_node. */
3757 static tree
3758 template_parm_to_arg (tree t)
3761 if (t == NULL_TREE
3762 || TREE_CODE (t) != TREE_LIST)
3763 return t;
3765 if (error_operand_p (TREE_VALUE (t)))
3766 return error_mark_node;
3768 t = TREE_VALUE (t);
3770 if (TREE_CODE (t) == TYPE_DECL
3771 || TREE_CODE (t) == TEMPLATE_DECL)
3773 t = TREE_TYPE (t);
3775 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
3777 /* Turn this argument into a TYPE_ARGUMENT_PACK
3778 with a single element, which expands T. */
3779 tree vec = make_tree_vec (1);
3780 #ifdef ENABLE_CHECKING
3781 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT
3782 (vec, TREE_VEC_LENGTH (vec));
3783 #endif
3784 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
3786 t = cxx_make_type (TYPE_ARGUMENT_PACK);
3787 SET_ARGUMENT_PACK_ARGS (t, vec);
3790 else
3792 t = DECL_INITIAL (t);
3794 if (TEMPLATE_PARM_PARAMETER_PACK (t))
3796 /* Turn this argument into a NONTYPE_ARGUMENT_PACK
3797 with a single element, which expands T. */
3798 tree vec = make_tree_vec (1);
3799 tree type = TREE_TYPE (TEMPLATE_PARM_DECL (t));
3800 #ifdef ENABLE_CHECKING
3801 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT
3802 (vec, TREE_VEC_LENGTH (vec));
3803 #endif
3804 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
3806 t = make_node (NONTYPE_ARGUMENT_PACK);
3807 SET_ARGUMENT_PACK_ARGS (t, vec);
3808 TREE_TYPE (t) = type;
3811 return t;
3814 /* This function returns TRUE if PARM_PACK is a template parameter
3815 pack and if ARG_PACK is what template_parm_to_arg returned when
3816 passed PARM_PACK. */
3818 static bool
3819 arg_from_parm_pack_p (tree arg_pack, tree parm_pack)
3821 /* For clarity in the comments below let's use the representation
3822 argument_pack<elements>' to denote an argument pack and its
3823 elements.
3825 In the 'if' block below, we want to detect cases where
3826 ARG_PACK is argument_pack<PARM_PACK...>. I.e, we want to
3827 check if ARG_PACK is an argument pack which sole element is
3828 the expansion of PARM_PACK. That argument pack is typically
3829 created by template_parm_to_arg when passed a parameter
3830 pack. */
3832 if (arg_pack
3833 && TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg_pack)) == 1
3834 && PACK_EXPANSION_P (TREE_VEC_ELT (ARGUMENT_PACK_ARGS (arg_pack), 0)))
3836 tree expansion = TREE_VEC_ELT (ARGUMENT_PACK_ARGS (arg_pack), 0);
3837 tree pattern = PACK_EXPANSION_PATTERN (expansion);
3838 if ((TYPE_P (pattern) && same_type_p (pattern, parm_pack))
3839 || (!TYPE_P (pattern) && cp_tree_equal (parm_pack, pattern)))
3840 /* The argument pack that the parameter maps to is just an
3841 expansion of the parameter itself, such as one would
3842 find in the implicit typedef of a class inside the
3843 class itself. Consider this parameter "unsubstituted",
3844 so that we will maintain the outer pack expansion. */
3845 return true;
3847 return false;
3850 /* Given a set of template parameters, return them as a set of template
3851 arguments. The template parameters are represented as a TREE_VEC, in
3852 the form documented in cp-tree.h for template arguments. */
3854 static tree
3855 template_parms_to_args (tree parms)
3857 tree header;
3858 tree args = NULL_TREE;
3859 int length = TMPL_PARMS_DEPTH (parms);
3860 int l = length;
3862 /* If there is only one level of template parameters, we do not
3863 create a TREE_VEC of TREE_VECs. Instead, we return a single
3864 TREE_VEC containing the arguments. */
3865 if (length > 1)
3866 args = make_tree_vec (length);
3868 for (header = parms; header; header = TREE_CHAIN (header))
3870 tree a = copy_node (TREE_VALUE (header));
3871 int i;
3873 TREE_TYPE (a) = NULL_TREE;
3874 for (i = TREE_VEC_LENGTH (a) - 1; i >= 0; --i)
3875 TREE_VEC_ELT (a, i) = template_parm_to_arg (TREE_VEC_ELT (a, i));
3877 #ifdef ENABLE_CHECKING
3878 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (a, TREE_VEC_LENGTH (a));
3879 #endif
3881 if (length > 1)
3882 TREE_VEC_ELT (args, --l) = a;
3883 else
3884 args = a;
3887 if (length > 1 && TREE_VEC_ELT (args, 0) == NULL_TREE)
3888 /* This can happen for template parms of a template template
3889 parameter, e.g:
3891 template<template<class T, class U> class TT> struct S;
3893 Consider the level of the parms of TT; T and U both have
3894 level 2; TT has no template parm of level 1. So in this case
3895 the first element of full_template_args is NULL_TREE. If we
3896 leave it like this TMPL_ARG_DEPTH on args returns 1 instead
3897 of 2. This will make tsubst wrongly consider that T and U
3898 have level 1. Instead, let's create a dummy vector as the
3899 first element of full_template_args so that TMPL_ARG_DEPTH
3900 returns the correct depth for args. */
3901 TREE_VEC_ELT (args, 0) = make_tree_vec (1);
3902 return args;
3905 /* Within the declaration of a template, return the currently active
3906 template parameters as an argument TREE_VEC. */
3908 static tree
3909 current_template_args (void)
3911 return template_parms_to_args (current_template_parms);
3914 /* Update the declared TYPE by doing any lookups which were thought to be
3915 dependent, but are not now that we know the SCOPE of the declarator. */
3917 tree
3918 maybe_update_decl_type (tree orig_type, tree scope)
3920 tree type = orig_type;
3922 if (type == NULL_TREE)
3923 return type;
3925 if (TREE_CODE (orig_type) == TYPE_DECL)
3926 type = TREE_TYPE (type);
3928 if (scope && TYPE_P (scope) && dependent_type_p (scope)
3929 && dependent_type_p (type)
3930 /* Don't bother building up the args in this case. */
3931 && TREE_CODE (type) != TEMPLATE_TYPE_PARM)
3933 /* tsubst in the args corresponding to the template parameters,
3934 including auto if present. Most things will be unchanged, but
3935 make_typename_type and tsubst_qualified_id will resolve
3936 TYPENAME_TYPEs and SCOPE_REFs that were previously dependent. */
3937 tree args = current_template_args ();
3938 tree auto_node = type_uses_auto (type);
3939 tree pushed;
3940 if (auto_node)
3942 tree auto_vec = make_tree_vec (1);
3943 TREE_VEC_ELT (auto_vec, 0) = auto_node;
3944 args = add_to_template_args (args, auto_vec);
3946 pushed = push_scope (scope);
3947 type = tsubst (type, args, tf_warning_or_error, NULL_TREE);
3948 if (pushed)
3949 pop_scope (scope);
3952 if (type == error_mark_node)
3953 return orig_type;
3955 if (TREE_CODE (orig_type) == TYPE_DECL)
3957 if (same_type_p (type, TREE_TYPE (orig_type)))
3958 type = orig_type;
3959 else
3960 type = TYPE_NAME (type);
3962 return type;
3965 /* Return a TEMPLATE_DECL corresponding to DECL, using the indicated
3966 template PARMS. If MEMBER_TEMPLATE_P is true, the new template is
3967 a member template. Used by push_template_decl below. */
3969 static tree
3970 build_template_decl (tree decl, tree parms, bool member_template_p)
3972 tree tmpl = build_lang_decl (TEMPLATE_DECL, DECL_NAME (decl), NULL_TREE);
3973 DECL_TEMPLATE_PARMS (tmpl) = parms;
3974 DECL_CONTEXT (tmpl) = DECL_CONTEXT (decl);
3975 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
3976 DECL_MEMBER_TEMPLATE_P (tmpl) = member_template_p;
3978 return tmpl;
3981 struct template_parm_data
3983 /* The level of the template parameters we are currently
3984 processing. */
3985 int level;
3987 /* The index of the specialization argument we are currently
3988 processing. */
3989 int current_arg;
3991 /* An array whose size is the number of template parameters. The
3992 elements are nonzero if the parameter has been used in any one
3993 of the arguments processed so far. */
3994 int* parms;
3996 /* An array whose size is the number of template arguments. The
3997 elements are nonzero if the argument makes use of template
3998 parameters of this level. */
3999 int* arg_uses_template_parms;
4002 /* Subroutine of push_template_decl used to see if each template
4003 parameter in a partial specialization is used in the explicit
4004 argument list. If T is of the LEVEL given in DATA (which is
4005 treated as a template_parm_data*), then DATA->PARMS is marked
4006 appropriately. */
4008 static int
4009 mark_template_parm (tree t, void* data)
4011 int level;
4012 int idx;
4013 struct template_parm_data* tpd = (struct template_parm_data*) data;
4015 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
4017 level = TEMPLATE_PARM_LEVEL (t);
4018 idx = TEMPLATE_PARM_IDX (t);
4020 else
4022 level = TEMPLATE_TYPE_LEVEL (t);
4023 idx = TEMPLATE_TYPE_IDX (t);
4026 if (level == tpd->level)
4028 tpd->parms[idx] = 1;
4029 tpd->arg_uses_template_parms[tpd->current_arg] = 1;
4032 /* Return zero so that for_each_template_parm will continue the
4033 traversal of the tree; we want to mark *every* template parm. */
4034 return 0;
4037 /* Process the partial specialization DECL. */
4039 static tree
4040 process_partial_specialization (tree decl)
4042 tree type = TREE_TYPE (decl);
4043 tree maintmpl = CLASSTYPE_TI_TEMPLATE (type);
4044 tree specargs = CLASSTYPE_TI_ARGS (type);
4045 tree inner_args = INNERMOST_TEMPLATE_ARGS (specargs);
4046 tree main_inner_parms = DECL_INNERMOST_TEMPLATE_PARMS (maintmpl);
4047 tree inner_parms;
4048 tree inst;
4049 int nargs = TREE_VEC_LENGTH (inner_args);
4050 int ntparms;
4051 int i;
4052 bool did_error_intro = false;
4053 struct template_parm_data tpd;
4054 struct template_parm_data tpd2;
4056 gcc_assert (current_template_parms);
4058 inner_parms = INNERMOST_TEMPLATE_PARMS (current_template_parms);
4059 ntparms = TREE_VEC_LENGTH (inner_parms);
4061 /* We check that each of the template parameters given in the
4062 partial specialization is used in the argument list to the
4063 specialization. For example:
4065 template <class T> struct S;
4066 template <class T> struct S<T*>;
4068 The second declaration is OK because `T*' uses the template
4069 parameter T, whereas
4071 template <class T> struct S<int>;
4073 is no good. Even trickier is:
4075 template <class T>
4076 struct S1
4078 template <class U>
4079 struct S2;
4080 template <class U>
4081 struct S2<T>;
4084 The S2<T> declaration is actually invalid; it is a
4085 full-specialization. Of course,
4087 template <class U>
4088 struct S2<T (*)(U)>;
4090 or some such would have been OK. */
4091 tpd.level = TMPL_PARMS_DEPTH (current_template_parms);
4092 tpd.parms = XALLOCAVEC (int, ntparms);
4093 memset (tpd.parms, 0, sizeof (int) * ntparms);
4095 tpd.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4096 memset (tpd.arg_uses_template_parms, 0, sizeof (int) * nargs);
4097 for (i = 0; i < nargs; ++i)
4099 tpd.current_arg = i;
4100 for_each_template_parm (TREE_VEC_ELT (inner_args, i),
4101 &mark_template_parm,
4102 &tpd,
4103 NULL,
4104 /*include_nondeduced_p=*/false);
4106 for (i = 0; i < ntparms; ++i)
4107 if (tpd.parms[i] == 0)
4109 /* One of the template parms was not used in the
4110 specialization. */
4111 if (!did_error_intro)
4113 error ("template parameters not used in partial specialization:");
4114 did_error_intro = true;
4117 error (" %qD", TREE_VALUE (TREE_VEC_ELT (inner_parms, i)));
4120 if (did_error_intro)
4121 return error_mark_node;
4123 /* [temp.class.spec]
4125 The argument list of the specialization shall not be identical to
4126 the implicit argument list of the primary template. */
4127 if (comp_template_args
4128 (inner_args,
4129 INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE
4130 (maintmpl)))))
4131 error ("partial specialization %qT does not specialize any template arguments", type);
4133 /* A partial specialization that replaces multiple parameters of the
4134 primary template with a pack expansion is less specialized for those
4135 parameters. */
4136 if (nargs < DECL_NTPARMS (maintmpl))
4138 error ("partial specialization is not more specialized than the "
4139 "primary template because it replaces multiple parameters "
4140 "with a pack expansion");
4141 inform (DECL_SOURCE_LOCATION (maintmpl), "primary template here");
4142 return decl;
4145 /* [temp.class.spec]
4147 A partially specialized non-type argument expression shall not
4148 involve template parameters of the partial specialization except
4149 when the argument expression is a simple identifier.
4151 The type of a template parameter corresponding to a specialized
4152 non-type argument shall not be dependent on a parameter of the
4153 specialization.
4155 Also, we verify that pack expansions only occur at the
4156 end of the argument list. */
4157 gcc_assert (nargs == DECL_NTPARMS (maintmpl));
4158 tpd2.parms = 0;
4159 for (i = 0; i < nargs; ++i)
4161 tree parm = TREE_VALUE (TREE_VEC_ELT (main_inner_parms, i));
4162 tree arg = TREE_VEC_ELT (inner_args, i);
4163 tree packed_args = NULL_TREE;
4164 int j, len = 1;
4166 if (ARGUMENT_PACK_P (arg))
4168 /* Extract the arguments from the argument pack. We'll be
4169 iterating over these in the following loop. */
4170 packed_args = ARGUMENT_PACK_ARGS (arg);
4171 len = TREE_VEC_LENGTH (packed_args);
4174 for (j = 0; j < len; j++)
4176 if (packed_args)
4177 /* Get the Jth argument in the parameter pack. */
4178 arg = TREE_VEC_ELT (packed_args, j);
4180 if (PACK_EXPANSION_P (arg))
4182 /* Pack expansions must come at the end of the
4183 argument list. */
4184 if ((packed_args && j < len - 1)
4185 || (!packed_args && i < nargs - 1))
4187 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4188 error ("parameter pack argument %qE must be at the "
4189 "end of the template argument list", arg);
4190 else
4191 error ("parameter pack argument %qT must be at the "
4192 "end of the template argument list", arg);
4196 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4197 /* We only care about the pattern. */
4198 arg = PACK_EXPANSION_PATTERN (arg);
4200 if (/* These first two lines are the `non-type' bit. */
4201 !TYPE_P (arg)
4202 && TREE_CODE (arg) != TEMPLATE_DECL
4203 /* This next line is the `argument expression is not just a
4204 simple identifier' condition and also the `specialized
4205 non-type argument' bit. */
4206 && TREE_CODE (arg) != TEMPLATE_PARM_INDEX)
4208 if ((!packed_args && tpd.arg_uses_template_parms[i])
4209 || (packed_args && uses_template_parms (arg)))
4210 error ("template argument %qE involves template parameter(s)",
4211 arg);
4212 else
4214 /* Look at the corresponding template parameter,
4215 marking which template parameters its type depends
4216 upon. */
4217 tree type = TREE_TYPE (parm);
4219 if (!tpd2.parms)
4221 /* We haven't yet initialized TPD2. Do so now. */
4222 tpd2.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4223 /* The number of parameters here is the number in the
4224 main template, which, as checked in the assertion
4225 above, is NARGS. */
4226 tpd2.parms = XALLOCAVEC (int, nargs);
4227 tpd2.level =
4228 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (maintmpl));
4231 /* Mark the template parameters. But this time, we're
4232 looking for the template parameters of the main
4233 template, not in the specialization. */
4234 tpd2.current_arg = i;
4235 tpd2.arg_uses_template_parms[i] = 0;
4236 memset (tpd2.parms, 0, sizeof (int) * nargs);
4237 for_each_template_parm (type,
4238 &mark_template_parm,
4239 &tpd2,
4240 NULL,
4241 /*include_nondeduced_p=*/false);
4243 if (tpd2.arg_uses_template_parms [i])
4245 /* The type depended on some template parameters.
4246 If they are fully specialized in the
4247 specialization, that's OK. */
4248 int j;
4249 int count = 0;
4250 for (j = 0; j < nargs; ++j)
4251 if (tpd2.parms[j] != 0
4252 && tpd.arg_uses_template_parms [j])
4253 ++count;
4254 if (count != 0)
4255 error_n (input_location, count,
4256 "type %qT of template argument %qE depends "
4257 "on a template parameter",
4258 "type %qT of template argument %qE depends "
4259 "on template parameters",
4260 type,
4261 arg);
4268 /* We should only get here once. */
4269 gcc_assert (!COMPLETE_TYPE_P (type));
4271 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)
4272 = tree_cons (specargs, inner_parms,
4273 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl));
4274 TREE_TYPE (DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)) = type;
4276 for (inst = DECL_TEMPLATE_INSTANTIATIONS (maintmpl); inst;
4277 inst = TREE_CHAIN (inst))
4279 tree inst_type = TREE_VALUE (inst);
4280 if (COMPLETE_TYPE_P (inst_type)
4281 && CLASSTYPE_IMPLICIT_INSTANTIATION (inst_type))
4283 tree spec = most_specialized_class (inst_type, maintmpl, tf_none);
4284 if (spec && TREE_TYPE (spec) == type)
4285 permerror (input_location,
4286 "partial specialization of %qT after instantiation "
4287 "of %qT", type, inst_type);
4291 return decl;
4294 /* Check that a template declaration's use of default arguments and
4295 parameter packs is not invalid. Here, PARMS are the template
4296 parameters. IS_PRIMARY is true if DECL is the thing declared by
4297 a primary template. IS_PARTIAL is true if DECL is a partial
4298 specialization.
4300 IS_FRIEND_DECL is nonzero if DECL is a friend function template
4301 declaration (but not a definition); 1 indicates a declaration, 2
4302 indicates a redeclaration. When IS_FRIEND_DECL=2, no errors are
4303 emitted for extraneous default arguments.
4305 Returns TRUE if there were no errors found, FALSE otherwise. */
4307 bool
4308 check_default_tmpl_args (tree decl, tree parms, bool is_primary,
4309 bool is_partial, int is_friend_decl)
4311 const char *msg;
4312 int last_level_to_check;
4313 tree parm_level;
4314 bool no_errors = true;
4316 /* [temp.param]
4318 A default template-argument shall not be specified in a
4319 function template declaration or a function template definition, nor
4320 in the template-parameter-list of the definition of a member of a
4321 class template. */
4323 if (TREE_CODE (CP_DECL_CONTEXT (decl)) == FUNCTION_DECL)
4324 /* You can't have a function template declaration in a local
4325 scope, nor you can you define a member of a class template in a
4326 local scope. */
4327 return true;
4329 if (current_class_type
4330 && !TYPE_BEING_DEFINED (current_class_type)
4331 && DECL_LANG_SPECIFIC (decl)
4332 && DECL_DECLARES_FUNCTION_P (decl)
4333 /* If this is either a friend defined in the scope of the class
4334 or a member function. */
4335 && (DECL_FUNCTION_MEMBER_P (decl)
4336 ? same_type_p (DECL_CONTEXT (decl), current_class_type)
4337 : DECL_FRIEND_CONTEXT (decl)
4338 ? same_type_p (DECL_FRIEND_CONTEXT (decl), current_class_type)
4339 : false)
4340 /* And, if it was a member function, it really was defined in
4341 the scope of the class. */
4342 && (!DECL_FUNCTION_MEMBER_P (decl)
4343 || DECL_INITIALIZED_IN_CLASS_P (decl)))
4344 /* We already checked these parameters when the template was
4345 declared, so there's no need to do it again now. This function
4346 was defined in class scope, but we're processing it's body now
4347 that the class is complete. */
4348 return true;
4350 /* Core issue 226 (C++0x only): the following only applies to class
4351 templates. */
4352 if (is_primary
4353 && ((cxx_dialect == cxx98) || TREE_CODE (decl) != FUNCTION_DECL))
4355 /* [temp.param]
4357 If a template-parameter has a default template-argument, all
4358 subsequent template-parameters shall have a default
4359 template-argument supplied. */
4360 for (parm_level = parms; parm_level; parm_level = TREE_CHAIN (parm_level))
4362 tree inner_parms = TREE_VALUE (parm_level);
4363 int ntparms = TREE_VEC_LENGTH (inner_parms);
4364 int seen_def_arg_p = 0;
4365 int i;
4367 for (i = 0; i < ntparms; ++i)
4369 tree parm = TREE_VEC_ELT (inner_parms, i);
4371 if (parm == error_mark_node)
4372 continue;
4374 if (TREE_PURPOSE (parm))
4375 seen_def_arg_p = 1;
4376 else if (seen_def_arg_p
4377 && !template_parameter_pack_p (TREE_VALUE (parm)))
4379 error ("no default argument for %qD", TREE_VALUE (parm));
4380 /* For better subsequent error-recovery, we indicate that
4381 there should have been a default argument. */
4382 TREE_PURPOSE (parm) = error_mark_node;
4383 no_errors = false;
4385 else if (!is_partial
4386 && !is_friend_decl
4387 /* Don't complain about an enclosing partial
4388 specialization. */
4389 && parm_level == parms
4390 && TREE_CODE (decl) == TYPE_DECL
4391 && i < ntparms - 1
4392 && template_parameter_pack_p (TREE_VALUE (parm)))
4394 /* A primary class template can only have one
4395 parameter pack, at the end of the template
4396 parameter list. */
4398 if (TREE_CODE (TREE_VALUE (parm)) == PARM_DECL)
4399 error ("parameter pack %qE must be at the end of the"
4400 " template parameter list", TREE_VALUE (parm));
4401 else
4402 error ("parameter pack %qT must be at the end of the"
4403 " template parameter list",
4404 TREE_TYPE (TREE_VALUE (parm)));
4406 TREE_VALUE (TREE_VEC_ELT (inner_parms, i))
4407 = error_mark_node;
4408 no_errors = false;
4414 if (((cxx_dialect == cxx98) && TREE_CODE (decl) != TYPE_DECL)
4415 || is_partial
4416 || !is_primary
4417 || is_friend_decl)
4418 /* For an ordinary class template, default template arguments are
4419 allowed at the innermost level, e.g.:
4420 template <class T = int>
4421 struct S {};
4422 but, in a partial specialization, they're not allowed even
4423 there, as we have in [temp.class.spec]:
4425 The template parameter list of a specialization shall not
4426 contain default template argument values.
4428 So, for a partial specialization, or for a function template
4429 (in C++98/C++03), we look at all of them. */
4431 else
4432 /* But, for a primary class template that is not a partial
4433 specialization we look at all template parameters except the
4434 innermost ones. */
4435 parms = TREE_CHAIN (parms);
4437 /* Figure out what error message to issue. */
4438 if (is_friend_decl == 2)
4439 msg = G_("default template arguments may not be used in function template "
4440 "friend re-declaration");
4441 else if (is_friend_decl)
4442 msg = G_("default template arguments may not be used in function template "
4443 "friend declarations");
4444 else if (TREE_CODE (decl) == FUNCTION_DECL && (cxx_dialect == cxx98))
4445 msg = G_("default template arguments may not be used in function templates "
4446 "without -std=c++11 or -std=gnu++11");
4447 else if (is_partial)
4448 msg = G_("default template arguments may not be used in "
4449 "partial specializations");
4450 else
4451 msg = G_("default argument for template parameter for class enclosing %qD");
4453 if (current_class_type && TYPE_BEING_DEFINED (current_class_type))
4454 /* If we're inside a class definition, there's no need to
4455 examine the parameters to the class itself. On the one
4456 hand, they will be checked when the class is defined, and,
4457 on the other, default arguments are valid in things like:
4458 template <class T = double>
4459 struct S { template <class U> void f(U); };
4460 Here the default argument for `S' has no bearing on the
4461 declaration of `f'. */
4462 last_level_to_check = template_class_depth (current_class_type) + 1;
4463 else
4464 /* Check everything. */
4465 last_level_to_check = 0;
4467 for (parm_level = parms;
4468 parm_level && TMPL_PARMS_DEPTH (parm_level) >= last_level_to_check;
4469 parm_level = TREE_CHAIN (parm_level))
4471 tree inner_parms = TREE_VALUE (parm_level);
4472 int i;
4473 int ntparms;
4475 ntparms = TREE_VEC_LENGTH (inner_parms);
4476 for (i = 0; i < ntparms; ++i)
4478 if (TREE_VEC_ELT (inner_parms, i) == error_mark_node)
4479 continue;
4481 if (TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)))
4483 if (msg)
4485 no_errors = false;
4486 if (is_friend_decl == 2)
4487 return no_errors;
4489 error (msg, decl);
4490 msg = 0;
4493 /* Clear out the default argument so that we are not
4494 confused later. */
4495 TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)) = NULL_TREE;
4499 /* At this point, if we're still interested in issuing messages,
4500 they must apply to classes surrounding the object declared. */
4501 if (msg)
4502 msg = G_("default argument for template parameter for class "
4503 "enclosing %qD");
4506 return no_errors;
4509 /* Worker for push_template_decl_real, called via
4510 for_each_template_parm. DATA is really an int, indicating the
4511 level of the parameters we are interested in. If T is a template
4512 parameter of that level, return nonzero. */
4514 static int
4515 template_parm_this_level_p (tree t, void* data)
4517 int this_level = *(int *)data;
4518 int level;
4520 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
4521 level = TEMPLATE_PARM_LEVEL (t);
4522 else
4523 level = TEMPLATE_TYPE_LEVEL (t);
4524 return level == this_level;
4527 /* Creates a TEMPLATE_DECL for the indicated DECL using the template
4528 parameters given by current_template_args, or reuses a
4529 previously existing one, if appropriate. Returns the DECL, or an
4530 equivalent one, if it is replaced via a call to duplicate_decls.
4532 If IS_FRIEND is true, DECL is a friend declaration. */
4534 tree
4535 push_template_decl_real (tree decl, bool is_friend)
4537 tree tmpl;
4538 tree args;
4539 tree info;
4540 tree ctx;
4541 bool is_primary;
4542 bool is_partial;
4543 int new_template_p = 0;
4544 /* True if the template is a member template, in the sense of
4545 [temp.mem]. */
4546 bool member_template_p = false;
4548 if (decl == error_mark_node || !current_template_parms)
4549 return error_mark_node;
4551 /* See if this is a partial specialization. */
4552 is_partial = (DECL_IMPLICIT_TYPEDEF_P (decl)
4553 && TREE_CODE (TREE_TYPE (decl)) != ENUMERAL_TYPE
4554 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)));
4556 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_FRIEND_P (decl))
4557 is_friend = true;
4559 if (is_friend)
4560 /* For a friend, we want the context of the friend function, not
4561 the type of which it is a friend. */
4562 ctx = CP_DECL_CONTEXT (decl);
4563 else if (CP_DECL_CONTEXT (decl)
4564 && TREE_CODE (CP_DECL_CONTEXT (decl)) != NAMESPACE_DECL)
4565 /* In the case of a virtual function, we want the class in which
4566 it is defined. */
4567 ctx = CP_DECL_CONTEXT (decl);
4568 else
4569 /* Otherwise, if we're currently defining some class, the DECL
4570 is assumed to be a member of the class. */
4571 ctx = current_scope ();
4573 if (ctx && TREE_CODE (ctx) == NAMESPACE_DECL)
4574 ctx = NULL_TREE;
4576 if (!DECL_CONTEXT (decl))
4577 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
4579 /* See if this is a primary template. */
4580 if (is_friend && ctx)
4581 /* A friend template that specifies a class context, i.e.
4582 template <typename T> friend void A<T>::f();
4583 is not primary. */
4584 is_primary = false;
4585 else
4586 is_primary = template_parm_scope_p ();
4588 if (is_primary)
4590 if (DECL_CLASS_SCOPE_P (decl))
4591 member_template_p = true;
4592 if (TREE_CODE (decl) == TYPE_DECL
4593 && ANON_AGGRNAME_P (DECL_NAME (decl)))
4595 error ("template class without a name");
4596 return error_mark_node;
4598 else if (TREE_CODE (decl) == FUNCTION_DECL)
4600 if (DECL_DESTRUCTOR_P (decl))
4602 /* [temp.mem]
4604 A destructor shall not be a member template. */
4605 error ("destructor %qD declared as member template", decl);
4606 return error_mark_node;
4608 if (NEW_DELETE_OPNAME_P (DECL_NAME (decl))
4609 && (!prototype_p (TREE_TYPE (decl))
4610 || TYPE_ARG_TYPES (TREE_TYPE (decl)) == void_list_node
4611 || !TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (decl)))
4612 || (TREE_CHAIN (TYPE_ARG_TYPES ((TREE_TYPE (decl))))
4613 == void_list_node)))
4615 /* [basic.stc.dynamic.allocation]
4617 An allocation function can be a function
4618 template. ... Template allocation functions shall
4619 have two or more parameters. */
4620 error ("invalid template declaration of %qD", decl);
4621 return error_mark_node;
4624 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
4625 && CLASS_TYPE_P (TREE_TYPE (decl)))
4626 /* OK */;
4627 else if (TREE_CODE (decl) == TYPE_DECL
4628 && TYPE_DECL_ALIAS_P (decl))
4629 /* alias-declaration */
4630 gcc_assert (!DECL_ARTIFICIAL (decl));
4631 else
4633 error ("template declaration of %q#D", decl);
4634 return error_mark_node;
4638 /* Check to see that the rules regarding the use of default
4639 arguments are not being violated. */
4640 check_default_tmpl_args (decl, current_template_parms,
4641 is_primary, is_partial, /*is_friend_decl=*/0);
4643 /* Ensure that there are no parameter packs in the type of this
4644 declaration that have not been expanded. */
4645 if (TREE_CODE (decl) == FUNCTION_DECL)
4647 /* Check each of the arguments individually to see if there are
4648 any bare parameter packs. */
4649 tree type = TREE_TYPE (decl);
4650 tree arg = DECL_ARGUMENTS (decl);
4651 tree argtype = TYPE_ARG_TYPES (type);
4653 while (arg && argtype)
4655 if (!FUNCTION_PARAMETER_PACK_P (arg)
4656 && check_for_bare_parameter_packs (TREE_TYPE (arg)))
4658 /* This is a PARM_DECL that contains unexpanded parameter
4659 packs. We have already complained about this in the
4660 check_for_bare_parameter_packs call, so just replace
4661 these types with ERROR_MARK_NODE. */
4662 TREE_TYPE (arg) = error_mark_node;
4663 TREE_VALUE (argtype) = error_mark_node;
4666 arg = DECL_CHAIN (arg);
4667 argtype = TREE_CHAIN (argtype);
4670 /* Check for bare parameter packs in the return type and the
4671 exception specifiers. */
4672 if (check_for_bare_parameter_packs (TREE_TYPE (type)))
4673 /* Errors were already issued, set return type to int
4674 as the frontend doesn't expect error_mark_node as
4675 the return type. */
4676 TREE_TYPE (type) = integer_type_node;
4677 if (check_for_bare_parameter_packs (TYPE_RAISES_EXCEPTIONS (type)))
4678 TYPE_RAISES_EXCEPTIONS (type) = NULL_TREE;
4680 else if (check_for_bare_parameter_packs ((TREE_CODE (decl) == TYPE_DECL
4681 && TYPE_DECL_ALIAS_P (decl))
4682 ? DECL_ORIGINAL_TYPE (decl)
4683 : TREE_TYPE (decl)))
4685 TREE_TYPE (decl) = error_mark_node;
4686 return error_mark_node;
4689 if (is_partial)
4690 return process_partial_specialization (decl);
4692 args = current_template_args ();
4694 if (!ctx
4695 || TREE_CODE (ctx) == FUNCTION_DECL
4696 || (CLASS_TYPE_P (ctx) && TYPE_BEING_DEFINED (ctx))
4697 || (is_friend && !DECL_TEMPLATE_INFO (decl)))
4699 if (DECL_LANG_SPECIFIC (decl)
4700 && DECL_TEMPLATE_INFO (decl)
4701 && DECL_TI_TEMPLATE (decl))
4702 tmpl = DECL_TI_TEMPLATE (decl);
4703 /* If DECL is a TYPE_DECL for a class-template, then there won't
4704 be DECL_LANG_SPECIFIC. The information equivalent to
4705 DECL_TEMPLATE_INFO is found in TYPE_TEMPLATE_INFO instead. */
4706 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
4707 && TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
4708 && TYPE_TI_TEMPLATE (TREE_TYPE (decl)))
4710 /* Since a template declaration already existed for this
4711 class-type, we must be redeclaring it here. Make sure
4712 that the redeclaration is valid. */
4713 redeclare_class_template (TREE_TYPE (decl),
4714 current_template_parms);
4715 /* We don't need to create a new TEMPLATE_DECL; just use the
4716 one we already had. */
4717 tmpl = TYPE_TI_TEMPLATE (TREE_TYPE (decl));
4719 else
4721 tmpl = build_template_decl (decl, current_template_parms,
4722 member_template_p);
4723 new_template_p = 1;
4725 if (DECL_LANG_SPECIFIC (decl)
4726 && DECL_TEMPLATE_SPECIALIZATION (decl))
4728 /* A specialization of a member template of a template
4729 class. */
4730 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
4731 DECL_TEMPLATE_INFO (tmpl) = DECL_TEMPLATE_INFO (decl);
4732 DECL_TEMPLATE_INFO (decl) = NULL_TREE;
4736 else
4738 tree a, t, current, parms;
4739 int i;
4740 tree tinfo = get_template_info (decl);
4742 if (!tinfo)
4744 error ("template definition of non-template %q#D", decl);
4745 return error_mark_node;
4748 tmpl = TI_TEMPLATE (tinfo);
4750 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
4751 && DECL_TEMPLATE_INFO (decl) && DECL_TI_ARGS (decl)
4752 && DECL_TEMPLATE_SPECIALIZATION (decl)
4753 && DECL_MEMBER_TEMPLATE_P (tmpl))
4755 tree new_tmpl;
4757 /* The declaration is a specialization of a member
4758 template, declared outside the class. Therefore, the
4759 innermost template arguments will be NULL, so we
4760 replace them with the arguments determined by the
4761 earlier call to check_explicit_specialization. */
4762 args = DECL_TI_ARGS (decl);
4764 new_tmpl
4765 = build_template_decl (decl, current_template_parms,
4766 member_template_p);
4767 DECL_TEMPLATE_RESULT (new_tmpl) = decl;
4768 TREE_TYPE (new_tmpl) = TREE_TYPE (decl);
4769 DECL_TI_TEMPLATE (decl) = new_tmpl;
4770 SET_DECL_TEMPLATE_SPECIALIZATION (new_tmpl);
4771 DECL_TEMPLATE_INFO (new_tmpl)
4772 = build_template_info (tmpl, args);
4774 register_specialization (new_tmpl,
4775 most_general_template (tmpl),
4776 args,
4777 is_friend, 0);
4778 return decl;
4781 /* Make sure the template headers we got make sense. */
4783 parms = DECL_TEMPLATE_PARMS (tmpl);
4784 i = TMPL_PARMS_DEPTH (parms);
4785 if (TMPL_ARGS_DEPTH (args) != i)
4787 error ("expected %d levels of template parms for %q#D, got %d",
4788 i, decl, TMPL_ARGS_DEPTH (args));
4790 else
4791 for (current = decl; i > 0; --i, parms = TREE_CHAIN (parms))
4793 a = TMPL_ARGS_LEVEL (args, i);
4794 t = INNERMOST_TEMPLATE_PARMS (parms);
4796 if (TREE_VEC_LENGTH (t) != TREE_VEC_LENGTH (a))
4798 if (current == decl)
4799 error ("got %d template parameters for %q#D",
4800 TREE_VEC_LENGTH (a), decl);
4801 else
4802 error ("got %d template parameters for %q#T",
4803 TREE_VEC_LENGTH (a), current);
4804 error (" but %d required", TREE_VEC_LENGTH (t));
4805 return error_mark_node;
4808 if (current == decl)
4809 current = ctx;
4810 else if (current == NULL_TREE)
4811 /* Can happen in erroneous input. */
4812 break;
4813 else
4814 current = (TYPE_P (current)
4815 ? TYPE_CONTEXT (current)
4816 : DECL_CONTEXT (current));
4819 /* Check that the parms are used in the appropriate qualifying scopes
4820 in the declarator. */
4821 if (!comp_template_args
4822 (TI_ARGS (tinfo),
4823 TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl)))))
4825 error ("\
4826 template arguments to %qD do not match original template %qD",
4827 decl, DECL_TEMPLATE_RESULT (tmpl));
4828 if (!uses_template_parms (TI_ARGS (tinfo)))
4829 inform (input_location, "use template<> for an explicit specialization");
4830 /* Avoid crash in import_export_decl. */
4831 DECL_INTERFACE_KNOWN (decl) = 1;
4832 return error_mark_node;
4836 DECL_TEMPLATE_RESULT (tmpl) = decl;
4837 TREE_TYPE (tmpl) = TREE_TYPE (decl);
4839 /* Push template declarations for global functions and types. Note
4840 that we do not try to push a global template friend declared in a
4841 template class; such a thing may well depend on the template
4842 parameters of the class. */
4843 if (new_template_p && !ctx
4844 && !(is_friend && template_class_depth (current_class_type) > 0))
4846 tmpl = pushdecl_namespace_level (tmpl, is_friend);
4847 if (tmpl == error_mark_node)
4848 return error_mark_node;
4850 /* Hide template friend classes that haven't been declared yet. */
4851 if (is_friend && TREE_CODE (decl) == TYPE_DECL)
4853 DECL_ANTICIPATED (tmpl) = 1;
4854 DECL_FRIEND_P (tmpl) = 1;
4858 if (is_primary)
4860 tree parms = DECL_TEMPLATE_PARMS (tmpl);
4861 int i;
4863 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
4864 if (DECL_CONV_FN_P (tmpl))
4866 int depth = TMPL_PARMS_DEPTH (parms);
4868 /* It is a conversion operator. See if the type converted to
4869 depends on innermost template operands. */
4871 if (uses_template_parms_level (TREE_TYPE (TREE_TYPE (tmpl)),
4872 depth))
4873 DECL_TEMPLATE_CONV_FN_P (tmpl) = 1;
4876 /* Give template template parms a DECL_CONTEXT of the template
4877 for which they are a parameter. */
4878 parms = INNERMOST_TEMPLATE_PARMS (parms);
4879 for (i = TREE_VEC_LENGTH (parms) - 1; i >= 0; --i)
4881 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
4882 if (TREE_CODE (parm) == TEMPLATE_DECL)
4883 DECL_CONTEXT (parm) = tmpl;
4887 /* The DECL_TI_ARGS of DECL contains full set of arguments referring
4888 back to its most general template. If TMPL is a specialization,
4889 ARGS may only have the innermost set of arguments. Add the missing
4890 argument levels if necessary. */
4891 if (DECL_TEMPLATE_INFO (tmpl))
4892 args = add_outermost_template_args (DECL_TI_ARGS (tmpl), args);
4894 info = build_template_info (tmpl, args);
4896 if (DECL_IMPLICIT_TYPEDEF_P (decl))
4897 SET_TYPE_TEMPLATE_INFO (TREE_TYPE (tmpl), info);
4898 else
4900 if (is_primary && !DECL_LANG_SPECIFIC (decl))
4901 retrofit_lang_decl (decl);
4902 if (DECL_LANG_SPECIFIC (decl))
4903 DECL_TEMPLATE_INFO (decl) = info;
4906 return DECL_TEMPLATE_RESULT (tmpl);
4909 tree
4910 push_template_decl (tree decl)
4912 return push_template_decl_real (decl, false);
4915 /* FN is an inheriting constructor that inherits from the constructor
4916 template INHERITED; turn FN into a constructor template with a matching
4917 template header. */
4919 tree
4920 add_inherited_template_parms (tree fn, tree inherited)
4922 tree inner_parms
4923 = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (inherited));
4924 inner_parms = copy_node (inner_parms);
4925 tree parms
4926 = tree_cons (size_int (processing_template_decl + 1),
4927 inner_parms, current_template_parms);
4928 tree tmpl = build_template_decl (fn, parms, /*member*/true);
4929 tree args = template_parms_to_args (parms);
4930 DECL_TEMPLATE_INFO (fn) = build_template_info (tmpl, args);
4931 TREE_TYPE (tmpl) = TREE_TYPE (fn);
4932 DECL_TEMPLATE_RESULT (tmpl) = fn;
4933 DECL_ARTIFICIAL (tmpl) = true;
4934 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
4935 return tmpl;
4938 /* Called when a class template TYPE is redeclared with the indicated
4939 template PARMS, e.g.:
4941 template <class T> struct S;
4942 template <class T> struct S {}; */
4944 bool
4945 redeclare_class_template (tree type, tree parms)
4947 tree tmpl;
4948 tree tmpl_parms;
4949 int i;
4951 if (!TYPE_TEMPLATE_INFO (type))
4953 error ("%qT is not a template type", type);
4954 return false;
4957 tmpl = TYPE_TI_TEMPLATE (type);
4958 if (!PRIMARY_TEMPLATE_P (tmpl))
4959 /* The type is nested in some template class. Nothing to worry
4960 about here; there are no new template parameters for the nested
4961 type. */
4962 return true;
4964 if (!parms)
4966 error ("template specifiers not specified in declaration of %qD",
4967 tmpl);
4968 return false;
4971 parms = INNERMOST_TEMPLATE_PARMS (parms);
4972 tmpl_parms = DECL_INNERMOST_TEMPLATE_PARMS (tmpl);
4974 if (TREE_VEC_LENGTH (parms) != TREE_VEC_LENGTH (tmpl_parms))
4976 error_n (input_location, TREE_VEC_LENGTH (parms),
4977 "redeclared with %d template parameter",
4978 "redeclared with %d template parameters",
4979 TREE_VEC_LENGTH (parms));
4980 inform_n (input_location, TREE_VEC_LENGTH (tmpl_parms),
4981 "previous declaration %q+D used %d template parameter",
4982 "previous declaration %q+D used %d template parameters",
4983 tmpl, TREE_VEC_LENGTH (tmpl_parms));
4984 return false;
4987 for (i = 0; i < TREE_VEC_LENGTH (tmpl_parms); ++i)
4989 tree tmpl_parm;
4990 tree parm;
4991 tree tmpl_default;
4992 tree parm_default;
4994 if (TREE_VEC_ELT (tmpl_parms, i) == error_mark_node
4995 || TREE_VEC_ELT (parms, i) == error_mark_node)
4996 continue;
4998 tmpl_parm = TREE_VALUE (TREE_VEC_ELT (tmpl_parms, i));
4999 if (tmpl_parm == error_mark_node)
5000 return false;
5002 parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
5003 tmpl_default = TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i));
5004 parm_default = TREE_PURPOSE (TREE_VEC_ELT (parms, i));
5006 /* TMPL_PARM and PARM can be either TYPE_DECL, PARM_DECL, or
5007 TEMPLATE_DECL. */
5008 if (TREE_CODE (tmpl_parm) != TREE_CODE (parm)
5009 || (TREE_CODE (tmpl_parm) != TYPE_DECL
5010 && !same_type_p (TREE_TYPE (tmpl_parm), TREE_TYPE (parm)))
5011 || (TREE_CODE (tmpl_parm) != PARM_DECL
5012 && (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (tmpl_parm))
5013 != TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm))))
5014 || (TREE_CODE (tmpl_parm) == PARM_DECL
5015 && (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (tmpl_parm))
5016 != TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))))
5018 error ("template parameter %q+#D", tmpl_parm);
5019 error ("redeclared here as %q#D", parm);
5020 return false;
5023 if (tmpl_default != NULL_TREE && parm_default != NULL_TREE)
5025 /* We have in [temp.param]:
5027 A template-parameter may not be given default arguments
5028 by two different declarations in the same scope. */
5029 error_at (input_location, "redefinition of default argument for %q#D", parm);
5030 inform (DECL_SOURCE_LOCATION (tmpl_parm),
5031 "original definition appeared here");
5032 return false;
5035 if (parm_default != NULL_TREE)
5036 /* Update the previous template parameters (which are the ones
5037 that will really count) with the new default value. */
5038 TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i)) = parm_default;
5039 else if (tmpl_default != NULL_TREE)
5040 /* Update the new parameters, too; they'll be used as the
5041 parameters for any members. */
5042 TREE_PURPOSE (TREE_VEC_ELT (parms, i)) = tmpl_default;
5045 return true;
5048 /* Simplify EXPR if it is a non-dependent expression. Returns the
5049 (possibly simplified) expression. */
5051 tree
5052 fold_non_dependent_expr_sfinae (tree expr, tsubst_flags_t complain)
5054 if (expr == NULL_TREE)
5055 return NULL_TREE;
5057 /* If we're in a template, but EXPR isn't value dependent, simplify
5058 it. We're supposed to treat:
5060 template <typename T> void f(T[1 + 1]);
5061 template <typename T> void f(T[2]);
5063 as two declarations of the same function, for example. */
5064 if (processing_template_decl
5065 && !type_dependent_expression_p (expr)
5066 && potential_constant_expression (expr)
5067 && !value_dependent_expression_p (expr))
5069 HOST_WIDE_INT saved_processing_template_decl;
5071 saved_processing_template_decl = processing_template_decl;
5072 processing_template_decl = 0;
5073 expr = tsubst_copy_and_build (expr,
5074 /*args=*/NULL_TREE,
5075 complain,
5076 /*in_decl=*/NULL_TREE,
5077 /*function_p=*/false,
5078 /*integral_constant_expression_p=*/true);
5079 processing_template_decl = saved_processing_template_decl;
5081 return expr;
5084 tree
5085 fold_non_dependent_expr (tree expr)
5087 return fold_non_dependent_expr_sfinae (expr, tf_error);
5090 /* Return TRUE iff T is a type alias, a TEMPLATE_DECL for an alias
5091 template declaration, or a TYPE_DECL for an alias declaration. */
5093 bool
5094 alias_type_or_template_p (tree t)
5096 if (t == NULL_TREE)
5097 return false;
5098 return ((TREE_CODE (t) == TYPE_DECL && TYPE_DECL_ALIAS_P (t))
5099 || (TYPE_P (t)
5100 && TYPE_NAME (t)
5101 && TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
5102 || DECL_ALIAS_TEMPLATE_P (t));
5105 /* Return TRUE iff is a specialization of an alias template. */
5107 bool
5108 alias_template_specialization_p (const_tree t)
5110 if (t == NULL_TREE)
5111 return false;
5113 return (TYPE_P (t)
5114 && TYPE_TEMPLATE_INFO (t)
5115 && PRIMARY_TEMPLATE_P (TYPE_TI_TEMPLATE (t))
5116 && DECL_ALIAS_TEMPLATE_P (TYPE_TI_TEMPLATE (t)));
5119 /* Subroutine of convert_nontype_argument. Converts EXPR to TYPE, which
5120 must be a function or a pointer-to-function type, as specified
5121 in [temp.arg.nontype]: disambiguate EXPR if it is an overload set,
5122 and check that the resulting function has external linkage. */
5124 static tree
5125 convert_nontype_argument_function (tree type, tree expr)
5127 tree fns = expr;
5128 tree fn, fn_no_ptr;
5129 linkage_kind linkage;
5131 fn = instantiate_type (type, fns, tf_none);
5132 if (fn == error_mark_node)
5133 return error_mark_node;
5135 fn_no_ptr = fn;
5136 if (TREE_CODE (fn_no_ptr) == ADDR_EXPR)
5137 fn_no_ptr = TREE_OPERAND (fn_no_ptr, 0);
5138 if (BASELINK_P (fn_no_ptr))
5139 fn_no_ptr = BASELINK_FUNCTIONS (fn_no_ptr);
5141 /* [temp.arg.nontype]/1
5143 A template-argument for a non-type, non-template template-parameter
5144 shall be one of:
5145 [...]
5146 -- the address of an object or function with external [C++11: or
5147 internal] linkage. */
5148 linkage = decl_linkage (fn_no_ptr);
5149 if (cxx_dialect >= cxx0x ? linkage == lk_none : linkage != lk_external)
5151 if (cxx_dialect >= cxx0x)
5152 error ("%qE is not a valid template argument for type %qT "
5153 "because %qD has no linkage",
5154 expr, type, fn_no_ptr);
5155 else
5156 error ("%qE is not a valid template argument for type %qT "
5157 "because %qD does not have external linkage",
5158 expr, type, fn_no_ptr);
5159 return NULL_TREE;
5162 return fn;
5165 /* Subroutine of convert_nontype_argument.
5166 Check if EXPR of type TYPE is a valid pointer-to-member constant.
5167 Emit an error otherwise. */
5169 static bool
5170 check_valid_ptrmem_cst_expr (tree type, tree expr,
5171 tsubst_flags_t complain)
5173 STRIP_NOPS (expr);
5174 if (expr && (null_ptr_cst_p (expr) || TREE_CODE (expr) == PTRMEM_CST))
5175 return true;
5176 if (cxx_dialect >= cxx0x && null_member_pointer_value_p (expr))
5177 return true;
5178 if (complain & tf_error)
5180 error ("%qE is not a valid template argument for type %qT",
5181 expr, type);
5182 error ("it must be a pointer-to-member of the form %<&X::Y%>");
5184 return false;
5187 /* Returns TRUE iff the address of OP is value-dependent.
5189 14.6.2.4 [temp.dep.temp]:
5190 A non-integral non-type template-argument is dependent if its type is
5191 dependent or it has either of the following forms
5192 qualified-id
5193 & qualified-id
5194 and contains a nested-name-specifier which specifies a class-name that
5195 names a dependent type.
5197 We generalize this to just say that the address of a member of a
5198 dependent class is value-dependent; the above doesn't cover the
5199 address of a static data member named with an unqualified-id. */
5201 static bool
5202 has_value_dependent_address (tree op)
5204 /* We could use get_inner_reference here, but there's no need;
5205 this is only relevant for template non-type arguments, which
5206 can only be expressed as &id-expression. */
5207 if (DECL_P (op))
5209 tree ctx = CP_DECL_CONTEXT (op);
5210 if (TYPE_P (ctx) && dependent_type_p (ctx))
5211 return true;
5214 return false;
5217 /* The next set of functions are used for providing helpful explanatory
5218 diagnostics for failed overload resolution. Their messages should be
5219 indented by two spaces for consistency with the messages in
5220 call.c */
5222 static int
5223 unify_success (bool /*explain_p*/)
5225 return 0;
5228 static int
5229 unify_parameter_deduction_failure (bool explain_p, tree parm)
5231 if (explain_p)
5232 inform (input_location,
5233 " couldn't deduce template parameter %qD", parm);
5234 return 1;
5237 static int
5238 unify_invalid (bool /*explain_p*/)
5240 return 1;
5243 static int
5244 unify_cv_qual_mismatch (bool explain_p, tree parm, tree arg)
5246 if (explain_p)
5247 inform (input_location,
5248 " types %qT and %qT have incompatible cv-qualifiers",
5249 parm, arg);
5250 return 1;
5253 static int
5254 unify_type_mismatch (bool explain_p, tree parm, tree arg)
5256 if (explain_p)
5257 inform (input_location, " mismatched types %qT and %qT", parm, arg);
5258 return 1;
5261 static int
5262 unify_parameter_pack_mismatch (bool explain_p, tree parm, tree arg)
5264 if (explain_p)
5265 inform (input_location,
5266 " template parameter %qD is not a parameter pack, but "
5267 "argument %qD is",
5268 parm, arg);
5269 return 1;
5272 static int
5273 unify_ptrmem_cst_mismatch (bool explain_p, tree parm, tree arg)
5275 if (explain_p)
5276 inform (input_location,
5277 " template argument %qE does not match "
5278 "pointer-to-member constant %qE",
5279 arg, parm);
5280 return 1;
5283 static int
5284 unify_expression_unequal (bool explain_p, tree parm, tree arg)
5286 if (explain_p)
5287 inform (input_location, " %qE is not equivalent to %qE", parm, arg);
5288 return 1;
5291 static int
5292 unify_parameter_pack_inconsistent (bool explain_p, tree old_arg, tree new_arg)
5294 if (explain_p)
5295 inform (input_location,
5296 " inconsistent parameter pack deduction with %qT and %qT",
5297 old_arg, new_arg);
5298 return 1;
5301 static int
5302 unify_inconsistency (bool explain_p, tree parm, tree first, tree second)
5304 if (explain_p)
5306 if (TYPE_P (parm))
5307 inform (input_location,
5308 " deduced conflicting types for parameter %qT (%qT and %qT)",
5309 parm, first, second);
5310 else
5311 inform (input_location,
5312 " deduced conflicting values for non-type parameter "
5313 "%qE (%qE and %qE)", parm, first, second);
5315 return 1;
5318 static int
5319 unify_vla_arg (bool explain_p, tree arg)
5321 if (explain_p)
5322 inform (input_location,
5323 " variable-sized array type %qT is not "
5324 "a valid template argument",
5325 arg);
5326 return 1;
5329 static int
5330 unify_method_type_error (bool explain_p, tree arg)
5332 if (explain_p)
5333 inform (input_location,
5334 " member function type %qT is not a valid template argument",
5335 arg);
5336 return 1;
5339 static int
5340 unify_arity (bool explain_p, int have, int wanted)
5342 if (explain_p)
5343 inform_n (input_location, wanted,
5344 " candidate expects %d argument, %d provided",
5345 " candidate expects %d arguments, %d provided",
5346 wanted, have);
5347 return 1;
5350 static int
5351 unify_too_many_arguments (bool explain_p, int have, int wanted)
5353 return unify_arity (explain_p, have, wanted);
5356 static int
5357 unify_too_few_arguments (bool explain_p, int have, int wanted)
5359 return unify_arity (explain_p, have, wanted);
5362 static int
5363 unify_arg_conversion (bool explain_p, tree to_type,
5364 tree from_type, tree arg)
5366 if (explain_p)
5367 inform (input_location, " cannot convert %qE (type %qT) to type %qT",
5368 arg, from_type, to_type);
5369 return 1;
5372 static int
5373 unify_no_common_base (bool explain_p, enum template_base_result r,
5374 tree parm, tree arg)
5376 if (explain_p)
5377 switch (r)
5379 case tbr_ambiguous_baseclass:
5380 inform (input_location, " %qT is an ambiguous base class of %qT",
5381 arg, parm);
5382 break;
5383 default:
5384 inform (input_location, " %qT is not derived from %qT", arg, parm);
5385 break;
5387 return 1;
5390 static int
5391 unify_inconsistent_template_template_parameters (bool explain_p)
5393 if (explain_p)
5394 inform (input_location,
5395 " template parameters of a template template argument are "
5396 "inconsistent with other deduced template arguments");
5397 return 1;
5400 static int
5401 unify_template_deduction_failure (bool explain_p, tree parm, tree arg)
5403 if (explain_p)
5404 inform (input_location,
5405 " can't deduce a template for %qT from non-template type %qT",
5406 parm, arg);
5407 return 1;
5410 static int
5411 unify_template_argument_mismatch (bool explain_p, tree parm, tree arg)
5413 if (explain_p)
5414 inform (input_location,
5415 " template argument %qE does not match %qD", arg, parm);
5416 return 1;
5419 static int
5420 unify_overload_resolution_failure (bool explain_p, tree arg)
5422 if (explain_p)
5423 inform (input_location,
5424 " could not resolve address from overloaded function %qE",
5425 arg);
5426 return 1;
5429 /* Attempt to convert the non-type template parameter EXPR to the
5430 indicated TYPE. If the conversion is successful, return the
5431 converted value. If the conversion is unsuccessful, return
5432 NULL_TREE if we issued an error message, or error_mark_node if we
5433 did not. We issue error messages for out-and-out bad template
5434 parameters, but not simply because the conversion failed, since we
5435 might be just trying to do argument deduction. Both TYPE and EXPR
5436 must be non-dependent.
5438 The conversion follows the special rules described in
5439 [temp.arg.nontype], and it is much more strict than an implicit
5440 conversion.
5442 This function is called twice for each template argument (see
5443 lookup_template_class for a more accurate description of this
5444 problem). This means that we need to handle expressions which
5445 are not valid in a C++ source, but can be created from the
5446 first call (for instance, casts to perform conversions). These
5447 hacks can go away after we fix the double coercion problem. */
5449 static tree
5450 convert_nontype_argument (tree type, tree expr, tsubst_flags_t complain)
5452 tree expr_type;
5454 /* Detect immediately string literals as invalid non-type argument.
5455 This special-case is not needed for correctness (we would easily
5456 catch this later), but only to provide better diagnostic for this
5457 common user mistake. As suggested by DR 100, we do not mention
5458 linkage issues in the diagnostic as this is not the point. */
5459 /* FIXME we're making this OK. */
5460 if (TREE_CODE (expr) == STRING_CST)
5462 if (complain & tf_error)
5463 error ("%qE is not a valid template argument for type %qT "
5464 "because string literals can never be used in this context",
5465 expr, type);
5466 return NULL_TREE;
5469 /* Add the ADDR_EXPR now for the benefit of
5470 value_dependent_expression_p. */
5471 if (TYPE_PTROBV_P (type)
5472 && TREE_CODE (TREE_TYPE (expr)) == ARRAY_TYPE)
5474 expr = decay_conversion (expr, complain);
5475 if (expr == error_mark_node)
5476 return error_mark_node;
5479 /* If we are in a template, EXPR may be non-dependent, but still
5480 have a syntactic, rather than semantic, form. For example, EXPR
5481 might be a SCOPE_REF, rather than the VAR_DECL to which the
5482 SCOPE_REF refers. Preserving the qualifying scope is necessary
5483 so that access checking can be performed when the template is
5484 instantiated -- but here we need the resolved form so that we can
5485 convert the argument. */
5486 if (TYPE_REF_OBJ_P (type)
5487 && has_value_dependent_address (expr))
5488 /* If we want the address and it's value-dependent, don't fold. */;
5489 else if (!type_unknown_p (expr))
5490 expr = fold_non_dependent_expr_sfinae (expr, complain);
5491 if (error_operand_p (expr))
5492 return error_mark_node;
5493 expr_type = TREE_TYPE (expr);
5494 if (TREE_CODE (type) == REFERENCE_TYPE)
5495 expr = mark_lvalue_use (expr);
5496 else
5497 expr = mark_rvalue_use (expr);
5499 /* 14.3.2/5: The null pointer{,-to-member} conversion is applied
5500 to a non-type argument of "nullptr". */
5501 if (expr == nullptr_node && TYPE_PTR_OR_PTRMEM_P (type))
5502 expr = convert (type, expr);
5504 /* In C++11, integral or enumeration non-type template arguments can be
5505 arbitrary constant expressions. Pointer and pointer to
5506 member arguments can be general constant expressions that evaluate
5507 to a null value, but otherwise still need to be of a specific form. */
5508 if (cxx_dialect >= cxx0x)
5510 if (TREE_CODE (expr) == PTRMEM_CST)
5511 /* A PTRMEM_CST is already constant, and a valid template
5512 argument for a parameter of pointer to member type, we just want
5513 to leave it in that form rather than lower it to a
5514 CONSTRUCTOR. */;
5515 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
5516 expr = maybe_constant_value (expr);
5517 else if (TYPE_PTR_OR_PTRMEM_P (type))
5519 tree folded = maybe_constant_value (expr);
5520 if (TYPE_PTR_P (type) ? integer_zerop (folded)
5521 : null_member_pointer_value_p (folded))
5522 expr = folded;
5526 /* HACK: Due to double coercion, we can get a
5527 NOP_EXPR<REFERENCE_TYPE>(ADDR_EXPR<POINTER_TYPE> (arg)) here,
5528 which is the tree that we built on the first call (see
5529 below when coercing to reference to object or to reference to
5530 function). We just strip everything and get to the arg.
5531 See g++.old-deja/g++.oliva/template4.C and g++.dg/template/nontype9.C
5532 for examples. */
5533 if (TYPE_REF_OBJ_P (type) || TYPE_REFFN_P (type))
5535 tree probe_type, probe = expr;
5536 if (REFERENCE_REF_P (probe))
5537 probe = TREE_OPERAND (probe, 0);
5538 probe_type = TREE_TYPE (probe);
5539 if (TREE_CODE (probe) == NOP_EXPR)
5541 /* ??? Maybe we could use convert_from_reference here, but we
5542 would need to relax its constraints because the NOP_EXPR
5543 could actually change the type to something more cv-qualified,
5544 and this is not folded by convert_from_reference. */
5545 tree addr = TREE_OPERAND (probe, 0);
5546 gcc_assert (TREE_CODE (probe_type) == REFERENCE_TYPE);
5547 gcc_assert (TREE_CODE (addr) == ADDR_EXPR);
5548 gcc_assert (TREE_CODE (TREE_TYPE (addr)) == POINTER_TYPE);
5549 gcc_assert (same_type_ignoring_top_level_qualifiers_p
5550 (TREE_TYPE (probe_type),
5551 TREE_TYPE (TREE_TYPE (addr))));
5553 expr = TREE_OPERAND (addr, 0);
5554 expr_type = TREE_TYPE (expr);
5558 /* We could also generate a NOP_EXPR(ADDR_EXPR()) when the
5559 parameter is a pointer to object, through decay and
5560 qualification conversion. Let's strip everything. */
5561 else if (TREE_CODE (expr) == NOP_EXPR && TYPE_PTROBV_P (type))
5563 STRIP_NOPS (expr);
5564 gcc_assert (TREE_CODE (expr) == ADDR_EXPR);
5565 gcc_assert (TREE_CODE (TREE_TYPE (expr)) == POINTER_TYPE);
5566 /* Skip the ADDR_EXPR only if it is part of the decay for
5567 an array. Otherwise, it is part of the original argument
5568 in the source code. */
5569 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (expr, 0))) == ARRAY_TYPE)
5570 expr = TREE_OPERAND (expr, 0);
5571 expr_type = TREE_TYPE (expr);
5574 /* [temp.arg.nontype]/5, bullet 1
5576 For a non-type template-parameter of integral or enumeration type,
5577 integral promotions (_conv.prom_) and integral conversions
5578 (_conv.integral_) are applied. */
5579 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
5581 tree t = build_integral_nontype_arg_conv (type, expr, complain);
5582 t = maybe_constant_value (t);
5583 if (t != error_mark_node)
5584 expr = t;
5586 if (!same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (expr)))
5587 return error_mark_node;
5589 /* Notice that there are constant expressions like '4 % 0' which
5590 do not fold into integer constants. */
5591 if (TREE_CODE (expr) != INTEGER_CST)
5593 if (complain & tf_error)
5595 int errs = errorcount, warns = warningcount;
5596 if (processing_template_decl
5597 && !require_potential_constant_expression (expr))
5598 return NULL_TREE;
5599 expr = cxx_constant_value (expr);
5600 if (errorcount > errs || warningcount > warns)
5601 inform (EXPR_LOC_OR_HERE (expr),
5602 "in template argument for type %qT ", type);
5603 if (expr == error_mark_node)
5604 return NULL_TREE;
5605 /* else cxx_constant_value complained but gave us
5606 a real constant, so go ahead. */
5607 gcc_assert (TREE_CODE (expr) == INTEGER_CST);
5609 else
5610 return NULL_TREE;
5613 /* [temp.arg.nontype]/5, bullet 2
5615 For a non-type template-parameter of type pointer to object,
5616 qualification conversions (_conv.qual_) and the array-to-pointer
5617 conversion (_conv.array_) are applied. */
5618 else if (TYPE_PTROBV_P (type))
5620 /* [temp.arg.nontype]/1 (TC1 version, DR 49):
5622 A template-argument for a non-type, non-template template-parameter
5623 shall be one of: [...]
5625 -- the name of a non-type template-parameter;
5626 -- the address of an object or function with external linkage, [...]
5627 expressed as "& id-expression" where the & is optional if the name
5628 refers to a function or array, or if the corresponding
5629 template-parameter is a reference.
5631 Here, we do not care about functions, as they are invalid anyway
5632 for a parameter of type pointer-to-object. */
5634 if (DECL_P (expr) && DECL_TEMPLATE_PARM_P (expr))
5635 /* Non-type template parameters are OK. */
5637 else if (cxx_dialect >= cxx0x && integer_zerop (expr))
5638 /* Null pointer values are OK in C++11. */;
5639 else if (TREE_CODE (expr) != ADDR_EXPR
5640 && TREE_CODE (expr_type) != ARRAY_TYPE)
5642 if (TREE_CODE (expr) == VAR_DECL)
5644 error ("%qD is not a valid template argument "
5645 "because %qD is a variable, not the address of "
5646 "a variable",
5647 expr, expr);
5648 return NULL_TREE;
5650 /* Other values, like integer constants, might be valid
5651 non-type arguments of some other type. */
5652 return error_mark_node;
5654 else
5656 tree decl;
5658 decl = ((TREE_CODE (expr) == ADDR_EXPR)
5659 ? TREE_OPERAND (expr, 0) : expr);
5660 if (TREE_CODE (decl) != VAR_DECL)
5662 error ("%qE is not a valid template argument of type %qT "
5663 "because %qE is not a variable",
5664 expr, type, decl);
5665 return NULL_TREE;
5667 else if (cxx_dialect < cxx0x && !DECL_EXTERNAL_LINKAGE_P (decl))
5669 error ("%qE is not a valid template argument of type %qT "
5670 "because %qD does not have external linkage",
5671 expr, type, decl);
5672 return NULL_TREE;
5674 else if (cxx_dialect >= cxx0x && decl_linkage (decl) == lk_none)
5676 error ("%qE is not a valid template argument of type %qT "
5677 "because %qD has no linkage",
5678 expr, type, decl);
5679 return NULL_TREE;
5683 expr = decay_conversion (expr, complain);
5684 if (expr == error_mark_node)
5685 return error_mark_node;
5687 expr = perform_qualification_conversions (type, expr);
5688 if (expr == error_mark_node)
5689 return error_mark_node;
5691 /* [temp.arg.nontype]/5, bullet 3
5693 For a non-type template-parameter of type reference to object, no
5694 conversions apply. The type referred to by the reference may be more
5695 cv-qualified than the (otherwise identical) type of the
5696 template-argument. The template-parameter is bound directly to the
5697 template-argument, which must be an lvalue. */
5698 else if (TYPE_REF_OBJ_P (type))
5700 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (type),
5701 expr_type))
5702 return error_mark_node;
5704 if (!at_least_as_qualified_p (TREE_TYPE (type), expr_type))
5706 error ("%qE is not a valid template argument for type %qT "
5707 "because of conflicts in cv-qualification", expr, type);
5708 return NULL_TREE;
5711 if (!real_lvalue_p (expr))
5713 error ("%qE is not a valid template argument for type %qT "
5714 "because it is not an lvalue", expr, type);
5715 return NULL_TREE;
5718 /* [temp.arg.nontype]/1
5720 A template-argument for a non-type, non-template template-parameter
5721 shall be one of: [...]
5723 -- the address of an object or function with external linkage. */
5724 if (TREE_CODE (expr) == INDIRECT_REF
5725 && TYPE_REF_OBJ_P (TREE_TYPE (TREE_OPERAND (expr, 0))))
5727 expr = TREE_OPERAND (expr, 0);
5728 if (DECL_P (expr))
5730 error ("%q#D is not a valid template argument for type %qT "
5731 "because a reference variable does not have a constant "
5732 "address", expr, type);
5733 return NULL_TREE;
5737 if (!DECL_P (expr))
5739 error ("%qE is not a valid template argument for type %qT "
5740 "because it is not an object with external linkage",
5741 expr, type);
5742 return NULL_TREE;
5745 if (!DECL_EXTERNAL_LINKAGE_P (expr))
5747 error ("%qE is not a valid template argument for type %qT "
5748 "because object %qD has not external linkage",
5749 expr, type, expr);
5750 return NULL_TREE;
5753 expr = build_nop (type, build_address (expr));
5755 /* [temp.arg.nontype]/5, bullet 4
5757 For a non-type template-parameter of type pointer to function, only
5758 the function-to-pointer conversion (_conv.func_) is applied. If the
5759 template-argument represents a set of overloaded functions (or a
5760 pointer to such), the matching function is selected from the set
5761 (_over.over_). */
5762 else if (TYPE_PTRFN_P (type))
5764 /* If the argument is a template-id, we might not have enough
5765 context information to decay the pointer. */
5766 if (!type_unknown_p (expr_type))
5768 expr = decay_conversion (expr, complain);
5769 if (expr == error_mark_node)
5770 return error_mark_node;
5773 if (cxx_dialect >= cxx0x && integer_zerop (expr))
5774 /* Null pointer values are OK in C++11. */
5775 return perform_qualification_conversions (type, expr);
5777 expr = convert_nontype_argument_function (type, expr);
5778 if (!expr || expr == error_mark_node)
5779 return expr;
5781 if (TREE_CODE (expr) != ADDR_EXPR)
5783 error ("%qE is not a valid template argument for type %qT", expr, type);
5784 error ("it must be the address of a function with external linkage");
5785 return NULL_TREE;
5788 /* [temp.arg.nontype]/5, bullet 5
5790 For a non-type template-parameter of type reference to function, no
5791 conversions apply. If the template-argument represents a set of
5792 overloaded functions, the matching function is selected from the set
5793 (_over.over_). */
5794 else if (TYPE_REFFN_P (type))
5796 if (TREE_CODE (expr) == ADDR_EXPR)
5798 error ("%qE is not a valid template argument for type %qT "
5799 "because it is a pointer", expr, type);
5800 inform (input_location, "try using %qE instead", TREE_OPERAND (expr, 0));
5801 return NULL_TREE;
5804 expr = convert_nontype_argument_function (TREE_TYPE (type), expr);
5805 if (!expr || expr == error_mark_node)
5806 return expr;
5808 expr = build_nop (type, build_address (expr));
5810 /* [temp.arg.nontype]/5, bullet 6
5812 For a non-type template-parameter of type pointer to member function,
5813 no conversions apply. If the template-argument represents a set of
5814 overloaded member functions, the matching member function is selected
5815 from the set (_over.over_). */
5816 else if (TYPE_PTRMEMFUNC_P (type))
5818 expr = instantiate_type (type, expr, tf_none);
5819 if (expr == error_mark_node)
5820 return error_mark_node;
5822 /* [temp.arg.nontype] bullet 1 says the pointer to member
5823 expression must be a pointer-to-member constant. */
5824 if (!check_valid_ptrmem_cst_expr (type, expr, complain))
5825 return error_mark_node;
5827 /* There is no way to disable standard conversions in
5828 resolve_address_of_overloaded_function (called by
5829 instantiate_type). It is possible that the call succeeded by
5830 converting &B::I to &D::I (where B is a base of D), so we need
5831 to reject this conversion here.
5833 Actually, even if there was a way to disable standard conversions,
5834 it would still be better to reject them here so that we can
5835 provide a superior diagnostic. */
5836 if (!same_type_p (TREE_TYPE (expr), type))
5838 error ("%qE is not a valid template argument for type %qT "
5839 "because it is of type %qT", expr, type,
5840 TREE_TYPE (expr));
5841 /* If we are just one standard conversion off, explain. */
5842 if (can_convert (type, TREE_TYPE (expr), complain))
5843 inform (input_location,
5844 "standard conversions are not allowed in this context");
5845 return NULL_TREE;
5848 /* [temp.arg.nontype]/5, bullet 7
5850 For a non-type template-parameter of type pointer to data member,
5851 qualification conversions (_conv.qual_) are applied. */
5852 else if (TYPE_PTRDATAMEM_P (type))
5854 /* [temp.arg.nontype] bullet 1 says the pointer to member
5855 expression must be a pointer-to-member constant. */
5856 if (!check_valid_ptrmem_cst_expr (type, expr, complain))
5857 return error_mark_node;
5859 expr = perform_qualification_conversions (type, expr);
5860 if (expr == error_mark_node)
5861 return expr;
5863 else if (NULLPTR_TYPE_P (type))
5865 if (expr != nullptr_node)
5867 error ("%qE is not a valid template argument for type %qT "
5868 "because it is of type %qT", expr, type, TREE_TYPE (expr));
5869 return NULL_TREE;
5871 return expr;
5873 /* A template non-type parameter must be one of the above. */
5874 else
5875 gcc_unreachable ();
5877 /* Sanity check: did we actually convert the argument to the
5878 right type? */
5879 gcc_assert (same_type_ignoring_top_level_qualifiers_p
5880 (type, TREE_TYPE (expr)));
5881 return expr;
5884 /* Subroutine of coerce_template_template_parms, which returns 1 if
5885 PARM_PARM and ARG_PARM match using the rule for the template
5886 parameters of template template parameters. Both PARM and ARG are
5887 template parameters; the rest of the arguments are the same as for
5888 coerce_template_template_parms.
5890 static int
5891 coerce_template_template_parm (tree parm,
5892 tree arg,
5893 tsubst_flags_t complain,
5894 tree in_decl,
5895 tree outer_args)
5897 if (arg == NULL_TREE || arg == error_mark_node
5898 || parm == NULL_TREE || parm == error_mark_node)
5899 return 0;
5901 if (TREE_CODE (arg) != TREE_CODE (parm))
5902 return 0;
5904 switch (TREE_CODE (parm))
5906 case TEMPLATE_DECL:
5907 /* We encounter instantiations of templates like
5908 template <template <template <class> class> class TT>
5909 class C; */
5911 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
5912 tree argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
5914 if (!coerce_template_template_parms
5915 (parmparm, argparm, complain, in_decl, outer_args))
5916 return 0;
5918 /* Fall through. */
5920 case TYPE_DECL:
5921 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (arg))
5922 && !TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
5923 /* Argument is a parameter pack but parameter is not. */
5924 return 0;
5925 break;
5927 case PARM_DECL:
5928 /* The tsubst call is used to handle cases such as
5930 template <int> class C {};
5931 template <class T, template <T> class TT> class D {};
5932 D<int, C> d;
5934 i.e. the parameter list of TT depends on earlier parameters. */
5935 if (!uses_template_parms (TREE_TYPE (arg))
5936 && !same_type_p
5937 (tsubst (TREE_TYPE (parm), outer_args, complain, in_decl),
5938 TREE_TYPE (arg)))
5939 return 0;
5941 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (arg))
5942 && !TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
5943 /* Argument is a parameter pack but parameter is not. */
5944 return 0;
5946 break;
5948 default:
5949 gcc_unreachable ();
5952 return 1;
5956 /* Return 1 if PARM_PARMS and ARG_PARMS matches using rule for
5957 template template parameters. Both PARM_PARMS and ARG_PARMS are
5958 vectors of TREE_LIST nodes containing TYPE_DECL, TEMPLATE_DECL
5959 or PARM_DECL.
5961 Consider the example:
5962 template <class T> class A;
5963 template<template <class U> class TT> class B;
5965 For B<A>, PARM_PARMS are the parameters to TT, while ARG_PARMS are
5966 the parameters to A, and OUTER_ARGS contains A. */
5968 static int
5969 coerce_template_template_parms (tree parm_parms,
5970 tree arg_parms,
5971 tsubst_flags_t complain,
5972 tree in_decl,
5973 tree outer_args)
5975 int nparms, nargs, i;
5976 tree parm, arg;
5977 int variadic_p = 0;
5979 gcc_assert (TREE_CODE (parm_parms) == TREE_VEC);
5980 gcc_assert (TREE_CODE (arg_parms) == TREE_VEC);
5982 nparms = TREE_VEC_LENGTH (parm_parms);
5983 nargs = TREE_VEC_LENGTH (arg_parms);
5985 /* Determine whether we have a parameter pack at the end of the
5986 template template parameter's template parameter list. */
5987 if (TREE_VEC_ELT (parm_parms, nparms - 1) != error_mark_node)
5989 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, nparms - 1));
5991 if (parm == error_mark_node)
5992 return 0;
5994 switch (TREE_CODE (parm))
5996 case TEMPLATE_DECL:
5997 case TYPE_DECL:
5998 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
5999 variadic_p = 1;
6000 break;
6002 case PARM_DECL:
6003 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
6004 variadic_p = 1;
6005 break;
6007 default:
6008 gcc_unreachable ();
6012 if (nargs != nparms
6013 && !(variadic_p && nargs >= nparms - 1))
6014 return 0;
6016 /* Check all of the template parameters except the parameter pack at
6017 the end (if any). */
6018 for (i = 0; i < nparms - variadic_p; ++i)
6020 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node
6021 || TREE_VEC_ELT (arg_parms, i) == error_mark_node)
6022 continue;
6024 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
6025 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
6027 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
6028 outer_args))
6029 return 0;
6033 if (variadic_p)
6035 /* Check each of the template parameters in the template
6036 argument against the template parameter pack at the end of
6037 the template template parameter. */
6038 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node)
6039 return 0;
6041 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
6043 for (; i < nargs; ++i)
6045 if (TREE_VEC_ELT (arg_parms, i) == error_mark_node)
6046 continue;
6048 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
6050 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
6051 outer_args))
6052 return 0;
6056 return 1;
6059 /* Verifies that the deduced template arguments (in TARGS) for the
6060 template template parameters (in TPARMS) represent valid bindings,
6061 by comparing the template parameter list of each template argument
6062 to the template parameter list of its corresponding template
6063 template parameter, in accordance with DR150. This
6064 routine can only be called after all template arguments have been
6065 deduced. It will return TRUE if all of the template template
6066 parameter bindings are okay, FALSE otherwise. */
6067 bool
6068 template_template_parm_bindings_ok_p (tree tparms, tree targs)
6070 int i, ntparms = TREE_VEC_LENGTH (tparms);
6071 bool ret = true;
6073 /* We're dealing with template parms in this process. */
6074 ++processing_template_decl;
6076 targs = INNERMOST_TEMPLATE_ARGS (targs);
6078 for (i = 0; i < ntparms; ++i)
6080 tree tparm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
6081 tree targ = TREE_VEC_ELT (targs, i);
6083 if (TREE_CODE (tparm) == TEMPLATE_DECL && targ)
6085 tree packed_args = NULL_TREE;
6086 int idx, len = 1;
6088 if (ARGUMENT_PACK_P (targ))
6090 /* Look inside the argument pack. */
6091 packed_args = ARGUMENT_PACK_ARGS (targ);
6092 len = TREE_VEC_LENGTH (packed_args);
6095 for (idx = 0; idx < len; ++idx)
6097 tree targ_parms = NULL_TREE;
6099 if (packed_args)
6100 /* Extract the next argument from the argument
6101 pack. */
6102 targ = TREE_VEC_ELT (packed_args, idx);
6104 if (PACK_EXPANSION_P (targ))
6105 /* Look at the pattern of the pack expansion. */
6106 targ = PACK_EXPANSION_PATTERN (targ);
6108 /* Extract the template parameters from the template
6109 argument. */
6110 if (TREE_CODE (targ) == TEMPLATE_DECL)
6111 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (targ);
6112 else if (TREE_CODE (targ) == TEMPLATE_TEMPLATE_PARM)
6113 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (TYPE_NAME (targ));
6115 /* Verify that we can coerce the template template
6116 parameters from the template argument to the template
6117 parameter. This requires an exact match. */
6118 if (targ_parms
6119 && !coerce_template_template_parms
6120 (DECL_INNERMOST_TEMPLATE_PARMS (tparm),
6121 targ_parms,
6122 tf_none,
6123 tparm,
6124 targs))
6126 ret = false;
6127 goto out;
6133 out:
6135 --processing_template_decl;
6136 return ret;
6139 /* Since type attributes aren't mangled, we need to strip them from
6140 template type arguments. */
6142 static tree
6143 canonicalize_type_argument (tree arg, tsubst_flags_t complain)
6145 tree mv;
6146 if (!arg || arg == error_mark_node || arg == TYPE_CANONICAL (arg))
6147 return arg;
6148 mv = TYPE_MAIN_VARIANT (arg);
6149 arg = strip_typedefs (arg);
6150 if (TYPE_ALIGN (arg) != TYPE_ALIGN (mv)
6151 || TYPE_ATTRIBUTES (arg) != TYPE_ATTRIBUTES (mv))
6153 if (complain & tf_warning)
6154 warning (0, "ignoring attributes on template argument %qT", arg);
6155 arg = build_aligned_type (arg, TYPE_ALIGN (mv));
6156 arg = cp_build_type_attribute_variant (arg, TYPE_ATTRIBUTES (mv));
6158 return arg;
6161 /* Convert the indicated template ARG as necessary to match the
6162 indicated template PARM. Returns the converted ARG, or
6163 error_mark_node if the conversion was unsuccessful. Error and
6164 warning messages are issued under control of COMPLAIN. This
6165 conversion is for the Ith parameter in the parameter list. ARGS is
6166 the full set of template arguments deduced so far. */
6168 static tree
6169 convert_template_argument (tree parm,
6170 tree arg,
6171 tree args,
6172 tsubst_flags_t complain,
6173 int i,
6174 tree in_decl)
6176 tree orig_arg;
6177 tree val;
6178 int is_type, requires_type, is_tmpl_type, requires_tmpl_type;
6180 if (TREE_CODE (arg) == TREE_LIST
6181 && TREE_CODE (TREE_VALUE (arg)) == OFFSET_REF)
6183 /* The template argument was the name of some
6184 member function. That's usually
6185 invalid, but static members are OK. In any
6186 case, grab the underlying fields/functions
6187 and issue an error later if required. */
6188 orig_arg = TREE_VALUE (arg);
6189 TREE_TYPE (arg) = unknown_type_node;
6192 orig_arg = arg;
6194 requires_tmpl_type = TREE_CODE (parm) == TEMPLATE_DECL;
6195 requires_type = (TREE_CODE (parm) == TYPE_DECL
6196 || requires_tmpl_type);
6198 /* When determining whether an argument pack expansion is a template,
6199 look at the pattern. */
6200 if (TREE_CODE (arg) == TYPE_PACK_EXPANSION)
6201 arg = PACK_EXPANSION_PATTERN (arg);
6203 /* Deal with an injected-class-name used as a template template arg. */
6204 if (requires_tmpl_type && CLASS_TYPE_P (arg))
6206 tree t = maybe_get_template_decl_from_type_decl (TYPE_NAME (arg));
6207 if (TREE_CODE (t) == TEMPLATE_DECL)
6209 if (cxx_dialect >= cxx0x)
6210 /* OK under DR 1004. */;
6211 else if (complain & tf_warning_or_error)
6212 pedwarn (input_location, OPT_Wpedantic, "injected-class-name %qD"
6213 " used as template template argument", TYPE_NAME (arg));
6214 else if (flag_pedantic_errors)
6215 t = arg;
6217 arg = t;
6221 is_tmpl_type =
6222 ((TREE_CODE (arg) == TEMPLATE_DECL
6223 && TREE_CODE (DECL_TEMPLATE_RESULT (arg)) == TYPE_DECL)
6224 || (requires_tmpl_type && TREE_CODE (arg) == TYPE_ARGUMENT_PACK)
6225 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
6226 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
6228 if (is_tmpl_type
6229 && (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
6230 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE))
6231 arg = TYPE_STUB_DECL (arg);
6233 is_type = TYPE_P (arg) || is_tmpl_type;
6235 if (requires_type && ! is_type && TREE_CODE (arg) == SCOPE_REF
6236 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_TYPE_PARM)
6238 if (TREE_CODE (TREE_OPERAND (arg, 1)) == BIT_NOT_EXPR)
6240 if (complain & tf_error)
6241 error ("invalid use of destructor %qE as a type", orig_arg);
6242 return error_mark_node;
6245 permerror (input_location,
6246 "to refer to a type member of a template parameter, "
6247 "use %<typename %E%>", orig_arg);
6249 orig_arg = make_typename_type (TREE_OPERAND (arg, 0),
6250 TREE_OPERAND (arg, 1),
6251 typename_type,
6252 complain);
6253 arg = orig_arg;
6254 is_type = 1;
6256 if (is_type != requires_type)
6258 if (in_decl)
6260 if (complain & tf_error)
6262 error ("type/value mismatch at argument %d in template "
6263 "parameter list for %qD",
6264 i + 1, in_decl);
6265 if (is_type)
6266 error (" expected a constant of type %qT, got %qT",
6267 TREE_TYPE (parm),
6268 (DECL_P (arg) ? DECL_NAME (arg) : orig_arg));
6269 else if (requires_tmpl_type)
6270 error (" expected a class template, got %qE", orig_arg);
6271 else
6272 error (" expected a type, got %qE", orig_arg);
6275 return error_mark_node;
6277 if (is_tmpl_type ^ requires_tmpl_type)
6279 if (in_decl && (complain & tf_error))
6281 error ("type/value mismatch at argument %d in template "
6282 "parameter list for %qD",
6283 i + 1, in_decl);
6284 if (is_tmpl_type)
6285 error (" expected a type, got %qT", DECL_NAME (arg));
6286 else
6287 error (" expected a class template, got %qT", orig_arg);
6289 return error_mark_node;
6292 if (is_type)
6294 if (requires_tmpl_type)
6296 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
6297 val = orig_arg;
6298 else if (TREE_CODE (TREE_TYPE (arg)) == UNBOUND_CLASS_TEMPLATE)
6299 /* The number of argument required is not known yet.
6300 Just accept it for now. */
6301 val = TREE_TYPE (arg);
6302 else
6304 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
6305 tree argparm;
6307 argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
6309 if (coerce_template_template_parms (parmparm, argparm,
6310 complain, in_decl,
6311 args))
6313 val = arg;
6315 /* TEMPLATE_TEMPLATE_PARM node is preferred over
6316 TEMPLATE_DECL. */
6317 if (val != error_mark_node)
6319 if (DECL_TEMPLATE_TEMPLATE_PARM_P (val))
6320 val = TREE_TYPE (val);
6321 if (TREE_CODE (orig_arg) == TYPE_PACK_EXPANSION)
6322 val = make_pack_expansion (val);
6325 else
6327 if (in_decl && (complain & tf_error))
6329 error ("type/value mismatch at argument %d in "
6330 "template parameter list for %qD",
6331 i + 1, in_decl);
6332 error (" expected a template of type %qD, got %qT",
6333 parm, orig_arg);
6336 val = error_mark_node;
6340 else
6341 val = orig_arg;
6342 /* We only form one instance of each template specialization.
6343 Therefore, if we use a non-canonical variant (i.e., a
6344 typedef), any future messages referring to the type will use
6345 the typedef, which is confusing if those future uses do not
6346 themselves also use the typedef. */
6347 if (TYPE_P (val))
6348 val = canonicalize_type_argument (val, complain);
6350 else
6352 tree t = tsubst (TREE_TYPE (parm), args, complain, in_decl);
6354 if (invalid_nontype_parm_type_p (t, complain))
6355 return error_mark_node;
6357 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
6359 if (same_type_p (t, TREE_TYPE (orig_arg)))
6360 val = orig_arg;
6361 else
6363 /* Not sure if this is reachable, but it doesn't hurt
6364 to be robust. */
6365 error ("type mismatch in nontype parameter pack");
6366 val = error_mark_node;
6369 else if (!uses_template_parms (orig_arg) && !uses_template_parms (t))
6370 /* We used to call digest_init here. However, digest_init
6371 will report errors, which we don't want when complain
6372 is zero. More importantly, digest_init will try too
6373 hard to convert things: for example, `0' should not be
6374 converted to pointer type at this point according to
6375 the standard. Accepting this is not merely an
6376 extension, since deciding whether or not these
6377 conversions can occur is part of determining which
6378 function template to call, or whether a given explicit
6379 argument specification is valid. */
6380 val = convert_nontype_argument (t, orig_arg, complain);
6381 else
6382 val = strip_typedefs_expr (orig_arg);
6384 if (val == NULL_TREE)
6385 val = error_mark_node;
6386 else if (val == error_mark_node && (complain & tf_error))
6387 error ("could not convert template argument %qE to %qT", orig_arg, t);
6389 if (TREE_CODE (val) == SCOPE_REF)
6391 /* Strip typedefs from the SCOPE_REF. */
6392 tree type = canonicalize_type_argument (TREE_TYPE (val), complain);
6393 tree scope = canonicalize_type_argument (TREE_OPERAND (val, 0),
6394 complain);
6395 val = build_qualified_name (type, scope, TREE_OPERAND (val, 1),
6396 QUALIFIED_NAME_IS_TEMPLATE (val));
6400 return val;
6403 /* Coerces the remaining template arguments in INNER_ARGS (from
6404 ARG_IDX to the end) into the parameter pack at PARM_IDX in PARMS.
6405 Returns the coerced argument pack. PARM_IDX is the position of this
6406 parameter in the template parameter list. ARGS is the original
6407 template argument list. */
6408 static tree
6409 coerce_template_parameter_pack (tree parms,
6410 int parm_idx,
6411 tree args,
6412 tree inner_args,
6413 int arg_idx,
6414 tree new_args,
6415 int* lost,
6416 tree in_decl,
6417 tsubst_flags_t complain)
6419 tree parm = TREE_VEC_ELT (parms, parm_idx);
6420 int nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
6421 tree packed_args;
6422 tree argument_pack;
6423 tree packed_types = NULL_TREE;
6425 if (arg_idx > nargs)
6426 arg_idx = nargs;
6428 packed_args = make_tree_vec (nargs - arg_idx);
6430 if (TREE_CODE (TREE_VALUE (parm)) == PARM_DECL
6431 && uses_parameter_packs (TREE_TYPE (TREE_VALUE (parm))))
6433 /* When the template parameter is a non-type template
6434 parameter pack whose type uses parameter packs, we need
6435 to look at each of the template arguments
6436 separately. Build a vector of the types for these
6437 non-type template parameters in PACKED_TYPES. */
6438 tree expansion
6439 = make_pack_expansion (TREE_TYPE (TREE_VALUE (parm)));
6440 packed_types = tsubst_pack_expansion (expansion, args,
6441 complain, in_decl);
6443 if (packed_types == error_mark_node)
6444 return error_mark_node;
6446 /* Check that we have the right number of arguments. */
6447 if (arg_idx < nargs
6448 && !PACK_EXPANSION_P (TREE_VEC_ELT (inner_args, arg_idx))
6449 && nargs - arg_idx != TREE_VEC_LENGTH (packed_types))
6451 int needed_parms
6452 = TREE_VEC_LENGTH (parms) - 1 + TREE_VEC_LENGTH (packed_types);
6453 error ("wrong number of template arguments (%d, should be %d)",
6454 nargs, needed_parms);
6455 return error_mark_node;
6458 /* If we aren't able to check the actual arguments now
6459 (because they haven't been expanded yet), we can at least
6460 verify that all of the types used for the non-type
6461 template parameter pack are, in fact, valid for non-type
6462 template parameters. */
6463 if (arg_idx < nargs
6464 && PACK_EXPANSION_P (TREE_VEC_ELT (inner_args, arg_idx)))
6466 int j, len = TREE_VEC_LENGTH (packed_types);
6467 for (j = 0; j < len; ++j)
6469 tree t = TREE_VEC_ELT (packed_types, j);
6470 if (invalid_nontype_parm_type_p (t, complain))
6471 return error_mark_node;
6476 /* Convert the remaining arguments, which will be a part of the
6477 parameter pack "parm". */
6478 for (; arg_idx < nargs; ++arg_idx)
6480 tree arg = TREE_VEC_ELT (inner_args, arg_idx);
6481 tree actual_parm = TREE_VALUE (parm);
6483 if (packed_types && !PACK_EXPANSION_P (arg))
6485 /* When we have a vector of types (corresponding to the
6486 non-type template parameter pack that uses parameter
6487 packs in its type, as mention above), and the
6488 argument is not an expansion (which expands to a
6489 currently unknown number of arguments), clone the
6490 parm and give it the next type in PACKED_TYPES. */
6491 actual_parm = copy_node (actual_parm);
6492 TREE_TYPE (actual_parm) =
6493 TREE_VEC_ELT (packed_types, arg_idx - parm_idx);
6496 if (arg == error_mark_node)
6498 if (complain & tf_error)
6499 error ("template argument %d is invalid", arg_idx + 1);
6501 else
6502 arg = convert_template_argument (actual_parm,
6503 arg, new_args, complain, parm_idx,
6504 in_decl);
6505 if (arg == error_mark_node)
6506 (*lost)++;
6507 TREE_VEC_ELT (packed_args, arg_idx - parm_idx) = arg;
6510 if (TREE_CODE (TREE_VALUE (parm)) == TYPE_DECL
6511 || TREE_CODE (TREE_VALUE (parm)) == TEMPLATE_DECL)
6512 argument_pack = cxx_make_type (TYPE_ARGUMENT_PACK);
6513 else
6515 argument_pack = make_node (NONTYPE_ARGUMENT_PACK);
6516 TREE_TYPE (argument_pack)
6517 = tsubst (TREE_TYPE (TREE_VALUE (parm)), new_args, complain, in_decl);
6518 TREE_CONSTANT (argument_pack) = 1;
6521 SET_ARGUMENT_PACK_ARGS (argument_pack, packed_args);
6522 #ifdef ENABLE_CHECKING
6523 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (packed_args,
6524 TREE_VEC_LENGTH (packed_args));
6525 #endif
6526 return argument_pack;
6529 /* Returns true if the template argument vector ARGS contains
6530 any pack expansions, false otherwise. */
6532 static bool
6533 any_pack_expanson_args_p (tree args)
6535 int i;
6536 if (args)
6537 for (i = 0; i < TREE_VEC_LENGTH (args); ++i)
6538 if (PACK_EXPANSION_P (TREE_VEC_ELT (args, i)))
6539 return true;
6540 return false;
6543 /* Convert all template arguments to their appropriate types, and
6544 return a vector containing the innermost resulting template
6545 arguments. If any error occurs, return error_mark_node. Error and
6546 warning messages are issued under control of COMPLAIN.
6548 If REQUIRE_ALL_ARGS is false, argument deduction will be performed
6549 for arguments not specified in ARGS. Otherwise, if
6550 USE_DEFAULT_ARGS is true, default arguments will be used to fill in
6551 unspecified arguments. If REQUIRE_ALL_ARGS is true, but
6552 USE_DEFAULT_ARGS is false, then all arguments must be specified in
6553 ARGS. */
6555 static tree
6556 coerce_template_parms (tree parms,
6557 tree args,
6558 tree in_decl,
6559 tsubst_flags_t complain,
6560 bool require_all_args,
6561 bool use_default_args)
6563 int nparms, nargs, parm_idx, arg_idx, lost = 0;
6564 tree inner_args;
6565 tree new_args;
6566 tree new_inner_args;
6567 int saved_unevaluated_operand;
6568 int saved_inhibit_evaluation_warnings;
6570 /* When used as a boolean value, indicates whether this is a
6571 variadic template parameter list. Since it's an int, we can also
6572 subtract it from nparms to get the number of non-variadic
6573 parameters. */
6574 int variadic_p = 0;
6575 int post_variadic_parms = 0;
6577 if (args == error_mark_node)
6578 return error_mark_node;
6580 nparms = TREE_VEC_LENGTH (parms);
6582 /* Determine if there are any parameter packs. */
6583 for (parm_idx = 0; parm_idx < nparms; ++parm_idx)
6585 tree tparm = TREE_VALUE (TREE_VEC_ELT (parms, parm_idx));
6586 if (variadic_p)
6587 ++post_variadic_parms;
6588 if (template_parameter_pack_p (tparm))
6589 ++variadic_p;
6592 inner_args = INNERMOST_TEMPLATE_ARGS (args);
6593 /* If there are no parameters that follow a parameter pack, we need to
6594 expand any argument packs so that we can deduce a parameter pack from
6595 some non-packed args followed by an argument pack, as in variadic85.C.
6596 If there are such parameters, we need to leave argument packs intact
6597 so the arguments are assigned properly. This can happen when dealing
6598 with a nested class inside a partial specialization of a class
6599 template, as in variadic92.C, or when deducing a template parameter pack
6600 from a sub-declarator, as in variadic114.C. */
6601 if (!post_variadic_parms)
6602 inner_args = expand_template_argument_pack (inner_args);
6604 nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
6605 if ((nargs > nparms && !variadic_p)
6606 || (nargs < nparms - variadic_p
6607 && require_all_args
6608 && !any_pack_expanson_args_p (inner_args)
6609 && (!use_default_args
6610 || (TREE_VEC_ELT (parms, nargs) != error_mark_node
6611 && !TREE_PURPOSE (TREE_VEC_ELT (parms, nargs))))))
6613 if (complain & tf_error)
6615 if (variadic_p)
6617 nparms -= variadic_p;
6618 error ("wrong number of template arguments "
6619 "(%d, should be %d or more)", nargs, nparms);
6621 else
6622 error ("wrong number of template arguments "
6623 "(%d, should be %d)", nargs, nparms);
6625 if (in_decl)
6626 error ("provided for %q+D", in_decl);
6629 return error_mark_node;
6632 /* We need to evaluate the template arguments, even though this
6633 template-id may be nested within a "sizeof". */
6634 saved_unevaluated_operand = cp_unevaluated_operand;
6635 cp_unevaluated_operand = 0;
6636 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
6637 c_inhibit_evaluation_warnings = 0;
6638 new_inner_args = make_tree_vec (nparms);
6639 new_args = add_outermost_template_args (args, new_inner_args);
6640 for (parm_idx = 0, arg_idx = 0; parm_idx < nparms; parm_idx++, arg_idx++)
6642 tree arg;
6643 tree parm;
6645 /* Get the Ith template parameter. */
6646 parm = TREE_VEC_ELT (parms, parm_idx);
6648 if (parm == error_mark_node)
6650 TREE_VEC_ELT (new_inner_args, arg_idx) = error_mark_node;
6651 continue;
6654 /* Calculate the next argument. */
6655 if (arg_idx < nargs)
6656 arg = TREE_VEC_ELT (inner_args, arg_idx);
6657 else
6658 arg = NULL_TREE;
6660 if (template_parameter_pack_p (TREE_VALUE (parm))
6661 && !(arg && ARGUMENT_PACK_P (arg)))
6663 /* All remaining arguments will be placed in the
6664 template parameter pack PARM. */
6665 arg = coerce_template_parameter_pack (parms, parm_idx, args,
6666 inner_args, arg_idx,
6667 new_args, &lost,
6668 in_decl, complain);
6670 /* Store this argument. */
6671 if (arg == error_mark_node)
6672 lost++;
6673 TREE_VEC_ELT (new_inner_args, parm_idx) = arg;
6675 /* We are done with all of the arguments. */
6676 arg_idx = nargs;
6678 continue;
6680 else if (arg)
6682 if (PACK_EXPANSION_P (arg))
6684 /* We don't know how many args we have yet, just
6685 use the unconverted ones for now. */
6686 new_inner_args = inner_args;
6687 break;
6690 else if (require_all_args)
6692 /* There must be a default arg in this case. */
6693 arg = tsubst_template_arg (TREE_PURPOSE (parm), new_args,
6694 complain, in_decl);
6695 /* The position of the first default template argument,
6696 is also the number of non-defaulted arguments in NEW_INNER_ARGS.
6697 Record that. */
6698 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
6699 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args, arg_idx);
6701 else
6702 break;
6704 if (arg == error_mark_node)
6706 if (complain & tf_error)
6707 error ("template argument %d is invalid", arg_idx + 1);
6709 else if (!arg)
6710 /* This only occurs if there was an error in the template
6711 parameter list itself (which we would already have
6712 reported) that we are trying to recover from, e.g., a class
6713 template with a parameter list such as
6714 template<typename..., typename>. */
6715 ++lost;
6716 else
6717 arg = convert_template_argument (TREE_VALUE (parm),
6718 arg, new_args, complain,
6719 parm_idx, in_decl);
6721 if (arg == error_mark_node)
6722 lost++;
6723 TREE_VEC_ELT (new_inner_args, arg_idx) = arg;
6725 cp_unevaluated_operand = saved_unevaluated_operand;
6726 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
6728 if (lost)
6729 return error_mark_node;
6731 #ifdef ENABLE_CHECKING
6732 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
6733 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args,
6734 TREE_VEC_LENGTH (new_inner_args));
6735 #endif
6737 return new_inner_args;
6740 /* Returns 1 if template args OT and NT are equivalent. */
6742 static int
6743 template_args_equal (tree ot, tree nt)
6745 if (nt == ot)
6746 return 1;
6747 if (nt == NULL_TREE || ot == NULL_TREE)
6748 return false;
6750 if (TREE_CODE (nt) == TREE_VEC)
6751 /* For member templates */
6752 return TREE_CODE (ot) == TREE_VEC && comp_template_args (ot, nt);
6753 else if (PACK_EXPANSION_P (ot))
6754 return (PACK_EXPANSION_P (nt)
6755 && template_args_equal (PACK_EXPANSION_PATTERN (ot),
6756 PACK_EXPANSION_PATTERN (nt))
6757 && template_args_equal (PACK_EXPANSION_EXTRA_ARGS (ot),
6758 PACK_EXPANSION_EXTRA_ARGS (nt)));
6759 else if (ARGUMENT_PACK_P (ot))
6761 int i, len;
6762 tree opack, npack;
6764 if (!ARGUMENT_PACK_P (nt))
6765 return 0;
6767 opack = ARGUMENT_PACK_ARGS (ot);
6768 npack = ARGUMENT_PACK_ARGS (nt);
6769 len = TREE_VEC_LENGTH (opack);
6770 if (TREE_VEC_LENGTH (npack) != len)
6771 return 0;
6772 for (i = 0; i < len; ++i)
6773 if (!template_args_equal (TREE_VEC_ELT (opack, i),
6774 TREE_VEC_ELT (npack, i)))
6775 return 0;
6776 return 1;
6778 else if (ot && TREE_CODE (ot) == ARGUMENT_PACK_SELECT)
6780 /* We get here probably because we are in the middle of substituting
6781 into the pattern of a pack expansion. In that case the
6782 ARGUMENT_PACK_SELECT temporarily replaces the pack argument we are
6783 interested in. So we want to use the initial pack argument for
6784 the comparison. */
6785 ot = ARGUMENT_PACK_SELECT_FROM_PACK (ot);
6786 if (nt && TREE_CODE (nt) == ARGUMENT_PACK_SELECT)
6787 nt = ARGUMENT_PACK_SELECT_FROM_PACK (nt);
6788 return template_args_equal (ot, nt);
6790 else if (TYPE_P (nt))
6791 return TYPE_P (ot) && same_type_p (ot, nt);
6792 else if (TREE_CODE (ot) == TREE_VEC || TYPE_P (ot))
6793 return 0;
6794 else
6795 return cp_tree_equal (ot, nt);
6798 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets of
6799 template arguments. Returns 0 otherwise, and updates OLDARG_PTR and
6800 NEWARG_PTR with the offending arguments if they are non-NULL. */
6802 static int
6803 comp_template_args_with_info (tree oldargs, tree newargs,
6804 tree *oldarg_ptr, tree *newarg_ptr)
6806 int i;
6808 if (oldargs == newargs)
6809 return 1;
6811 if (!oldargs || !newargs)
6812 return 0;
6814 if (TREE_VEC_LENGTH (oldargs) != TREE_VEC_LENGTH (newargs))
6815 return 0;
6817 for (i = 0; i < TREE_VEC_LENGTH (oldargs); ++i)
6819 tree nt = TREE_VEC_ELT (newargs, i);
6820 tree ot = TREE_VEC_ELT (oldargs, i);
6822 if (! template_args_equal (ot, nt))
6824 if (oldarg_ptr != NULL)
6825 *oldarg_ptr = ot;
6826 if (newarg_ptr != NULL)
6827 *newarg_ptr = nt;
6828 return 0;
6831 return 1;
6834 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets
6835 of template arguments. Returns 0 otherwise. */
6838 comp_template_args (tree oldargs, tree newargs)
6840 return comp_template_args_with_info (oldargs, newargs, NULL, NULL);
6843 static void
6844 add_pending_template (tree d)
6846 tree ti = (TYPE_P (d)
6847 ? CLASSTYPE_TEMPLATE_INFO (d)
6848 : DECL_TEMPLATE_INFO (d));
6849 struct pending_template *pt;
6850 int level;
6852 if (TI_PENDING_TEMPLATE_FLAG (ti))
6853 return;
6855 /* We are called both from instantiate_decl, where we've already had a
6856 tinst_level pushed, and instantiate_template, where we haven't.
6857 Compensate. */
6858 level = !current_tinst_level || current_tinst_level->decl != d;
6860 if (level)
6861 push_tinst_level (d);
6863 pt = ggc_alloc_pending_template ();
6864 pt->next = NULL;
6865 pt->tinst = current_tinst_level;
6866 if (last_pending_template)
6867 last_pending_template->next = pt;
6868 else
6869 pending_templates = pt;
6871 last_pending_template = pt;
6873 TI_PENDING_TEMPLATE_FLAG (ti) = 1;
6875 if (level)
6876 pop_tinst_level ();
6880 /* Return a TEMPLATE_ID_EXPR corresponding to the indicated FNS and
6881 ARGLIST. Valid choices for FNS are given in the cp-tree.def
6882 documentation for TEMPLATE_ID_EXPR. */
6884 tree
6885 lookup_template_function (tree fns, tree arglist)
6887 tree type;
6889 if (fns == error_mark_node || arglist == error_mark_node)
6890 return error_mark_node;
6892 gcc_assert (!arglist || TREE_CODE (arglist) == TREE_VEC);
6894 if (!is_overloaded_fn (fns) && TREE_CODE (fns) != IDENTIFIER_NODE)
6896 error ("%q#D is not a function template", fns);
6897 return error_mark_node;
6900 if (BASELINK_P (fns))
6902 BASELINK_FUNCTIONS (fns) = build2 (TEMPLATE_ID_EXPR,
6903 unknown_type_node,
6904 BASELINK_FUNCTIONS (fns),
6905 arglist);
6906 return fns;
6909 type = TREE_TYPE (fns);
6910 if (TREE_CODE (fns) == OVERLOAD || !type)
6911 type = unknown_type_node;
6913 return build2 (TEMPLATE_ID_EXPR, type, fns, arglist);
6916 /* Within the scope of a template class S<T>, the name S gets bound
6917 (in build_self_reference) to a TYPE_DECL for the class, not a
6918 TEMPLATE_DECL. If DECL is a TYPE_DECL for current_class_type,
6919 or one of its enclosing classes, and that type is a template,
6920 return the associated TEMPLATE_DECL. Otherwise, the original
6921 DECL is returned.
6923 Also handle the case when DECL is a TREE_LIST of ambiguous
6924 injected-class-names from different bases. */
6926 tree
6927 maybe_get_template_decl_from_type_decl (tree decl)
6929 if (decl == NULL_TREE)
6930 return decl;
6932 /* DR 176: A lookup that finds an injected-class-name (10.2
6933 [class.member.lookup]) can result in an ambiguity in certain cases
6934 (for example, if it is found in more than one base class). If all of
6935 the injected-class-names that are found refer to specializations of
6936 the same class template, and if the name is followed by a
6937 template-argument-list, the reference refers to the class template
6938 itself and not a specialization thereof, and is not ambiguous. */
6939 if (TREE_CODE (decl) == TREE_LIST)
6941 tree t, tmpl = NULL_TREE;
6942 for (t = decl; t; t = TREE_CHAIN (t))
6944 tree elt = maybe_get_template_decl_from_type_decl (TREE_VALUE (t));
6945 if (!tmpl)
6946 tmpl = elt;
6947 else if (tmpl != elt)
6948 break;
6950 if (tmpl && t == NULL_TREE)
6951 return tmpl;
6952 else
6953 return decl;
6956 return (decl != NULL_TREE
6957 && DECL_SELF_REFERENCE_P (decl)
6958 && CLASSTYPE_TEMPLATE_INFO (TREE_TYPE (decl)))
6959 ? CLASSTYPE_TI_TEMPLATE (TREE_TYPE (decl)) : decl;
6962 /* Given an IDENTIFIER_NODE (type TEMPLATE_DECL) and a chain of
6963 parameters, find the desired type.
6965 D1 is the PTYPENAME terminal, and ARGLIST is the list of arguments.
6967 IN_DECL, if non-NULL, is the template declaration we are trying to
6968 instantiate.
6970 If ENTERING_SCOPE is nonzero, we are about to enter the scope of
6971 the class we are looking up.
6973 Issue error and warning messages under control of COMPLAIN.
6975 If the template class is really a local class in a template
6976 function, then the FUNCTION_CONTEXT is the function in which it is
6977 being instantiated.
6979 ??? Note that this function is currently called *twice* for each
6980 template-id: the first time from the parser, while creating the
6981 incomplete type (finish_template_type), and the second type during the
6982 real instantiation (instantiate_template_class). This is surely something
6983 that we want to avoid. It also causes some problems with argument
6984 coercion (see convert_nontype_argument for more information on this). */
6986 static tree
6987 lookup_template_class_1 (tree d1, tree arglist, tree in_decl, tree context,
6988 int entering_scope, tsubst_flags_t complain)
6990 tree templ = NULL_TREE, parmlist;
6991 tree t;
6992 void **slot;
6993 spec_entry *entry;
6994 spec_entry elt;
6995 hashval_t hash;
6997 if (TREE_CODE (d1) == IDENTIFIER_NODE)
6999 tree value = innermost_non_namespace_value (d1);
7000 if (value && DECL_TEMPLATE_TEMPLATE_PARM_P (value))
7001 templ = value;
7002 else
7004 if (context)
7005 push_decl_namespace (context);
7006 templ = lookup_name (d1);
7007 templ = maybe_get_template_decl_from_type_decl (templ);
7008 if (context)
7009 pop_decl_namespace ();
7011 if (templ)
7012 context = DECL_CONTEXT (templ);
7014 else if (TREE_CODE (d1) == TYPE_DECL && MAYBE_CLASS_TYPE_P (TREE_TYPE (d1)))
7016 tree type = TREE_TYPE (d1);
7018 /* If we are declaring a constructor, say A<T>::A<T>, we will get
7019 an implicit typename for the second A. Deal with it. */
7020 if (TREE_CODE (type) == TYPENAME_TYPE && TREE_TYPE (type))
7021 type = TREE_TYPE (type);
7023 if (CLASSTYPE_TEMPLATE_INFO (type))
7025 templ = CLASSTYPE_TI_TEMPLATE (type);
7026 d1 = DECL_NAME (templ);
7029 else if (TREE_CODE (d1) == ENUMERAL_TYPE
7030 || (TYPE_P (d1) && MAYBE_CLASS_TYPE_P (d1)))
7032 templ = TYPE_TI_TEMPLATE (d1);
7033 d1 = DECL_NAME (templ);
7035 else if (TREE_CODE (d1) == TEMPLATE_DECL
7036 && DECL_TEMPLATE_RESULT (d1)
7037 && TREE_CODE (DECL_TEMPLATE_RESULT (d1)) == TYPE_DECL)
7039 templ = d1;
7040 d1 = DECL_NAME (templ);
7041 context = DECL_CONTEXT (templ);
7044 /* Issue an error message if we didn't find a template. */
7045 if (! templ)
7047 if (complain & tf_error)
7048 error ("%qT is not a template", d1);
7049 return error_mark_node;
7052 if (TREE_CODE (templ) != TEMPLATE_DECL
7053 /* Make sure it's a user visible template, if it was named by
7054 the user. */
7055 || ((complain & tf_user) && !DECL_TEMPLATE_PARM_P (templ)
7056 && !PRIMARY_TEMPLATE_P (templ)))
7058 if (complain & tf_error)
7060 error ("non-template type %qT used as a template", d1);
7061 if (in_decl)
7062 error ("for template declaration %q+D", in_decl);
7064 return error_mark_node;
7067 complain &= ~tf_user;
7069 if (DECL_TEMPLATE_TEMPLATE_PARM_P (templ))
7071 /* Create a new TEMPLATE_DECL and TEMPLATE_TEMPLATE_PARM node to store
7072 template arguments */
7074 tree parm;
7075 tree arglist2;
7076 tree outer;
7078 parmlist = DECL_INNERMOST_TEMPLATE_PARMS (templ);
7080 /* Consider an example where a template template parameter declared as
7082 template <class T, class U = std::allocator<T> > class TT
7084 The template parameter level of T and U are one level larger than
7085 of TT. To proper process the default argument of U, say when an
7086 instantiation `TT<int>' is seen, we need to build the full
7087 arguments containing {int} as the innermost level. Outer levels,
7088 available when not appearing as default template argument, can be
7089 obtained from the arguments of the enclosing template.
7091 Suppose that TT is later substituted with std::vector. The above
7092 instantiation is `TT<int, std::allocator<T> >' with TT at
7093 level 1, and T at level 2, while the template arguments at level 1
7094 becomes {std::vector} and the inner level 2 is {int}. */
7096 outer = DECL_CONTEXT (templ);
7097 if (outer)
7098 outer = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (outer)));
7099 else if (current_template_parms)
7100 /* This is an argument of the current template, so we haven't set
7101 DECL_CONTEXT yet. */
7102 outer = current_template_args ();
7104 if (outer)
7105 arglist = add_to_template_args (outer, arglist);
7107 arglist2 = coerce_template_parms (parmlist, arglist, templ,
7108 complain,
7109 /*require_all_args=*/true,
7110 /*use_default_args=*/true);
7111 if (arglist2 == error_mark_node
7112 || (!uses_template_parms (arglist2)
7113 && check_instantiated_args (templ, arglist2, complain)))
7114 return error_mark_node;
7116 parm = bind_template_template_parm (TREE_TYPE (templ), arglist2);
7117 return parm;
7119 else
7121 tree template_type = TREE_TYPE (templ);
7122 tree gen_tmpl;
7123 tree type_decl;
7124 tree found = NULL_TREE;
7125 int arg_depth;
7126 int parm_depth;
7127 int is_dependent_type;
7128 int use_partial_inst_tmpl = false;
7130 if (template_type == error_mark_node)
7131 /* An error occured while building the template TEMPL, and a
7132 diagnostic has most certainly been emitted for that
7133 already. Let's propagate that error. */
7134 return error_mark_node;
7136 gen_tmpl = most_general_template (templ);
7137 parmlist = DECL_TEMPLATE_PARMS (gen_tmpl);
7138 parm_depth = TMPL_PARMS_DEPTH (parmlist);
7139 arg_depth = TMPL_ARGS_DEPTH (arglist);
7141 if (arg_depth == 1 && parm_depth > 1)
7143 /* We've been given an incomplete set of template arguments.
7144 For example, given:
7146 template <class T> struct S1 {
7147 template <class U> struct S2 {};
7148 template <class U> struct S2<U*> {};
7151 we will be called with an ARGLIST of `U*', but the
7152 TEMPLATE will be `template <class T> template
7153 <class U> struct S1<T>::S2'. We must fill in the missing
7154 arguments. */
7155 arglist
7156 = add_outermost_template_args (TYPE_TI_ARGS (TREE_TYPE (templ)),
7157 arglist);
7158 arg_depth = TMPL_ARGS_DEPTH (arglist);
7161 /* Now we should have enough arguments. */
7162 gcc_assert (parm_depth == arg_depth);
7164 /* From here on, we're only interested in the most general
7165 template. */
7167 /* Calculate the BOUND_ARGS. These will be the args that are
7168 actually tsubst'd into the definition to create the
7169 instantiation. */
7170 if (parm_depth > 1)
7172 /* We have multiple levels of arguments to coerce, at once. */
7173 int i;
7174 int saved_depth = TMPL_ARGS_DEPTH (arglist);
7176 tree bound_args = make_tree_vec (parm_depth);
7178 for (i = saved_depth,
7179 t = DECL_TEMPLATE_PARMS (gen_tmpl);
7180 i > 0 && t != NULL_TREE;
7181 --i, t = TREE_CHAIN (t))
7183 tree a;
7184 if (i == saved_depth)
7185 a = coerce_template_parms (TREE_VALUE (t),
7186 arglist, gen_tmpl,
7187 complain,
7188 /*require_all_args=*/true,
7189 /*use_default_args=*/true);
7190 else
7191 /* Outer levels should have already been coerced. */
7192 a = TMPL_ARGS_LEVEL (arglist, i);
7194 /* Don't process further if one of the levels fails. */
7195 if (a == error_mark_node)
7197 /* Restore the ARGLIST to its full size. */
7198 TREE_VEC_LENGTH (arglist) = saved_depth;
7199 return error_mark_node;
7202 SET_TMPL_ARGS_LEVEL (bound_args, i, a);
7204 /* We temporarily reduce the length of the ARGLIST so
7205 that coerce_template_parms will see only the arguments
7206 corresponding to the template parameters it is
7207 examining. */
7208 TREE_VEC_LENGTH (arglist)--;
7211 /* Restore the ARGLIST to its full size. */
7212 TREE_VEC_LENGTH (arglist) = saved_depth;
7214 arglist = bound_args;
7216 else
7217 arglist
7218 = coerce_template_parms (INNERMOST_TEMPLATE_PARMS (parmlist),
7219 INNERMOST_TEMPLATE_ARGS (arglist),
7220 gen_tmpl,
7221 complain,
7222 /*require_all_args=*/true,
7223 /*use_default_args=*/true);
7225 if (arglist == error_mark_node)
7226 /* We were unable to bind the arguments. */
7227 return error_mark_node;
7229 /* In the scope of a template class, explicit references to the
7230 template class refer to the type of the template, not any
7231 instantiation of it. For example, in:
7233 template <class T> class C { void f(C<T>); }
7235 the `C<T>' is just the same as `C'. Outside of the
7236 class, however, such a reference is an instantiation. */
7237 if ((entering_scope
7238 || !PRIMARY_TEMPLATE_P (gen_tmpl)
7239 || currently_open_class (template_type))
7240 /* comp_template_args is expensive, check it last. */
7241 && comp_template_args (TYPE_TI_ARGS (template_type),
7242 arglist))
7243 return template_type;
7245 /* If we already have this specialization, return it. */
7246 elt.tmpl = gen_tmpl;
7247 elt.args = arglist;
7248 hash = hash_specialization (&elt);
7249 entry = (spec_entry *) htab_find_with_hash (type_specializations,
7250 &elt, hash);
7252 if (entry)
7253 return entry->spec;
7255 is_dependent_type = uses_template_parms (arglist);
7257 /* If the deduced arguments are invalid, then the binding
7258 failed. */
7259 if (!is_dependent_type
7260 && check_instantiated_args (gen_tmpl,
7261 INNERMOST_TEMPLATE_ARGS (arglist),
7262 complain))
7263 return error_mark_node;
7265 if (!is_dependent_type
7266 && !PRIMARY_TEMPLATE_P (gen_tmpl)
7267 && !LAMBDA_TYPE_P (TREE_TYPE (gen_tmpl))
7268 && TREE_CODE (CP_DECL_CONTEXT (gen_tmpl)) == NAMESPACE_DECL)
7270 found = xref_tag_from_type (TREE_TYPE (gen_tmpl),
7271 DECL_NAME (gen_tmpl),
7272 /*tag_scope=*/ts_global);
7273 return found;
7276 context = tsubst (DECL_CONTEXT (gen_tmpl), arglist,
7277 complain, in_decl);
7278 if (context == error_mark_node)
7279 return error_mark_node;
7281 if (!context)
7282 context = global_namespace;
7284 /* Create the type. */
7285 if (TREE_CODE (template_type) == ENUMERAL_TYPE)
7287 if (!is_dependent_type)
7289 set_current_access_from_decl (TYPE_NAME (template_type));
7290 t = start_enum (TYPE_IDENTIFIER (template_type), NULL_TREE,
7291 tsubst (ENUM_UNDERLYING_TYPE (template_type),
7292 arglist, complain, in_decl),
7293 SCOPED_ENUM_P (template_type), NULL);
7295 else
7297 /* We don't want to call start_enum for this type, since
7298 the values for the enumeration constants may involve
7299 template parameters. And, no one should be interested
7300 in the enumeration constants for such a type. */
7301 t = cxx_make_type (ENUMERAL_TYPE);
7302 SET_SCOPED_ENUM_P (t, SCOPED_ENUM_P (template_type));
7304 SET_OPAQUE_ENUM_P (t, OPAQUE_ENUM_P (template_type));
7305 ENUM_FIXED_UNDERLYING_TYPE_P (t)
7306 = ENUM_FIXED_UNDERLYING_TYPE_P (template_type);
7308 else if (DECL_ALIAS_TEMPLATE_P (gen_tmpl))
7310 /* The user referred to a specialization of an alias
7311 template represented by GEN_TMPL.
7313 [temp.alias]/2 says:
7315 When a template-id refers to the specialization of an
7316 alias template, it is equivalent to the associated
7317 type obtained by substitution of its
7318 template-arguments for the template-parameters in the
7319 type-id of the alias template. */
7321 t = tsubst (TREE_TYPE (gen_tmpl), arglist, complain, in_decl);
7322 /* Note that the call above (by indirectly calling
7323 register_specialization in tsubst_decl) registers the
7324 TYPE_DECL representing the specialization of the alias
7325 template. So next time someone substitutes ARGLIST for
7326 the template parms into the alias template (GEN_TMPL),
7327 she'll get that TYPE_DECL back. */
7329 if (t == error_mark_node)
7330 return t;
7332 else if (CLASS_TYPE_P (template_type))
7334 t = make_class_type (TREE_CODE (template_type));
7335 CLASSTYPE_DECLARED_CLASS (t)
7336 = CLASSTYPE_DECLARED_CLASS (template_type);
7337 SET_CLASSTYPE_IMPLICIT_INSTANTIATION (t);
7338 TYPE_FOR_JAVA (t) = TYPE_FOR_JAVA (template_type);
7340 /* A local class. Make sure the decl gets registered properly. */
7341 if (context == current_function_decl)
7342 pushtag (DECL_NAME (gen_tmpl), t, /*tag_scope=*/ts_current);
7344 if (comp_template_args (CLASSTYPE_TI_ARGS (template_type), arglist))
7345 /* This instantiation is another name for the primary
7346 template type. Set the TYPE_CANONICAL field
7347 appropriately. */
7348 TYPE_CANONICAL (t) = template_type;
7349 else if (any_template_arguments_need_structural_equality_p (arglist))
7350 /* Some of the template arguments require structural
7351 equality testing, so this template class requires
7352 structural equality testing. */
7353 SET_TYPE_STRUCTURAL_EQUALITY (t);
7355 else
7356 gcc_unreachable ();
7358 /* If we called start_enum or pushtag above, this information
7359 will already be set up. */
7360 if (!TYPE_NAME (t))
7362 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
7364 type_decl = create_implicit_typedef (DECL_NAME (gen_tmpl), t);
7365 DECL_CONTEXT (type_decl) = TYPE_CONTEXT (t);
7366 DECL_SOURCE_LOCATION (type_decl)
7367 = DECL_SOURCE_LOCATION (TYPE_STUB_DECL (template_type));
7369 else
7370 type_decl = TYPE_NAME (t);
7372 if (CLASS_TYPE_P (template_type))
7374 TREE_PRIVATE (type_decl)
7375 = TREE_PRIVATE (TYPE_STUB_DECL (template_type));
7376 TREE_PROTECTED (type_decl)
7377 = TREE_PROTECTED (TYPE_STUB_DECL (template_type));
7378 if (CLASSTYPE_VISIBILITY_SPECIFIED (template_type))
7380 DECL_VISIBILITY_SPECIFIED (type_decl) = 1;
7381 DECL_VISIBILITY (type_decl) = CLASSTYPE_VISIBILITY (template_type);
7385 /* Let's consider the explicit specialization of a member
7386 of a class template specialization that is implicitely instantiated,
7387 e.g.:
7388 template<class T>
7389 struct S
7391 template<class U> struct M {}; //#0
7394 template<>
7395 template<>
7396 struct S<int>::M<char> //#1
7398 int i;
7400 [temp.expl.spec]/4 says this is valid.
7402 In this case, when we write:
7403 S<int>::M<char> m;
7405 M is instantiated from the CLASSTYPE_TI_TEMPLATE of #1, not from
7406 the one of #0.
7408 When we encounter #1, we want to store the partial instantiation
7409 of M (template<class T> S<int>::M<T>) in it's CLASSTYPE_TI_TEMPLATE.
7411 For all cases other than this "explicit specialization of member of a
7412 class template", we just want to store the most general template into
7413 the CLASSTYPE_TI_TEMPLATE of M.
7415 This case of "explicit specialization of member of a class template"
7416 only happens when:
7417 1/ the enclosing class is an instantiation of, and therefore not
7418 the same as, the context of the most general template, and
7419 2/ we aren't looking at the partial instantiation itself, i.e.
7420 the innermost arguments are not the same as the innermost parms of
7421 the most general template.
7423 So it's only when 1/ and 2/ happens that we want to use the partial
7424 instantiation of the member template in lieu of its most general
7425 template. */
7427 if (PRIMARY_TEMPLATE_P (gen_tmpl)
7428 && TMPL_ARGS_HAVE_MULTIPLE_LEVELS (arglist)
7429 /* the enclosing class must be an instantiation... */
7430 && CLASS_TYPE_P (context)
7431 && !same_type_p (context, DECL_CONTEXT (gen_tmpl)))
7433 tree partial_inst_args;
7434 TREE_VEC_LENGTH (arglist)--;
7435 ++processing_template_decl;
7436 partial_inst_args =
7437 tsubst (INNERMOST_TEMPLATE_ARGS
7438 (TYPE_TI_ARGS (TREE_TYPE (gen_tmpl))),
7439 arglist, complain, NULL_TREE);
7440 --processing_template_decl;
7441 TREE_VEC_LENGTH (arglist)++;
7442 use_partial_inst_tmpl =
7443 /*...and we must not be looking at the partial instantiation
7444 itself. */
7445 !comp_template_args (INNERMOST_TEMPLATE_ARGS (arglist),
7446 partial_inst_args);
7449 if (!use_partial_inst_tmpl)
7450 /* This case is easy; there are no member templates involved. */
7451 found = gen_tmpl;
7452 else
7454 /* This is a full instantiation of a member template. Find
7455 the partial instantiation of which this is an instance. */
7457 /* Temporarily reduce by one the number of levels in the ARGLIST
7458 so as to avoid comparing the last set of arguments. */
7459 TREE_VEC_LENGTH (arglist)--;
7460 found = tsubst (gen_tmpl, arglist, complain, NULL_TREE);
7461 TREE_VEC_LENGTH (arglist)++;
7462 /* FOUND is either a proper class type, or an alias
7463 template specialization. In the later case, it's a
7464 TYPE_DECL, resulting from the substituting of arguments
7465 for parameters in the TYPE_DECL of the alias template
7466 done earlier. So be careful while getting the template
7467 of FOUND. */
7468 found = TREE_CODE (found) == TYPE_DECL
7469 ? TYPE_TI_TEMPLATE (TREE_TYPE (found))
7470 : CLASSTYPE_TI_TEMPLATE (found);
7473 SET_TYPE_TEMPLATE_INFO (t, build_template_info (found, arglist));
7475 elt.spec = t;
7476 slot = htab_find_slot_with_hash (type_specializations,
7477 &elt, hash, INSERT);
7478 entry = ggc_alloc_spec_entry ();
7479 *entry = elt;
7480 *slot = entry;
7482 /* Note this use of the partial instantiation so we can check it
7483 later in maybe_process_partial_specialization. */
7484 DECL_TEMPLATE_INSTANTIATIONS (templ)
7485 = tree_cons (arglist, t,
7486 DECL_TEMPLATE_INSTANTIATIONS (templ));
7488 if (TREE_CODE (t) == ENUMERAL_TYPE && !is_dependent_type)
7489 /* Now that the type has been registered on the instantiations
7490 list, we set up the enumerators. Because the enumeration
7491 constants may involve the enumeration type itself, we make
7492 sure to register the type first, and then create the
7493 constants. That way, doing tsubst_expr for the enumeration
7494 constants won't result in recursive calls here; we'll find
7495 the instantiation and exit above. */
7496 tsubst_enum (template_type, t, arglist);
7498 if (CLASS_TYPE_P (template_type) && is_dependent_type)
7499 /* If the type makes use of template parameters, the
7500 code that generates debugging information will crash. */
7501 DECL_IGNORED_P (TYPE_STUB_DECL (t)) = 1;
7503 /* Possibly limit visibility based on template args. */
7504 TREE_PUBLIC (type_decl) = 1;
7505 determine_visibility (type_decl);
7507 return t;
7511 /* Wrapper for lookup_template_class_1. */
7513 tree
7514 lookup_template_class (tree d1, tree arglist, tree in_decl, tree context,
7515 int entering_scope, tsubst_flags_t complain)
7517 tree ret;
7518 timevar_push (TV_TEMPLATE_INST);
7519 ret = lookup_template_class_1 (d1, arglist, in_decl, context,
7520 entering_scope, complain);
7521 timevar_pop (TV_TEMPLATE_INST);
7522 return ret;
7525 struct pair_fn_data
7527 tree_fn_t fn;
7528 void *data;
7529 /* True when we should also visit template parameters that occur in
7530 non-deduced contexts. */
7531 bool include_nondeduced_p;
7532 struct pointer_set_t *visited;
7535 /* Called from for_each_template_parm via walk_tree. */
7537 static tree
7538 for_each_template_parm_r (tree *tp, int *walk_subtrees, void *d)
7540 tree t = *tp;
7541 struct pair_fn_data *pfd = (struct pair_fn_data *) d;
7542 tree_fn_t fn = pfd->fn;
7543 void *data = pfd->data;
7545 if (TYPE_P (t)
7546 && (pfd->include_nondeduced_p || TREE_CODE (t) != TYPENAME_TYPE)
7547 && for_each_template_parm (TYPE_CONTEXT (t), fn, data, pfd->visited,
7548 pfd->include_nondeduced_p))
7549 return error_mark_node;
7551 switch (TREE_CODE (t))
7553 case RECORD_TYPE:
7554 if (TYPE_PTRMEMFUNC_P (t))
7555 break;
7556 /* Fall through. */
7558 case UNION_TYPE:
7559 case ENUMERAL_TYPE:
7560 if (!TYPE_TEMPLATE_INFO (t))
7561 *walk_subtrees = 0;
7562 else if (for_each_template_parm (TI_ARGS (TYPE_TEMPLATE_INFO (t)),
7563 fn, data, pfd->visited,
7564 pfd->include_nondeduced_p))
7565 return error_mark_node;
7566 break;
7568 case INTEGER_TYPE:
7569 if (for_each_template_parm (TYPE_MIN_VALUE (t),
7570 fn, data, pfd->visited,
7571 pfd->include_nondeduced_p)
7572 || for_each_template_parm (TYPE_MAX_VALUE (t),
7573 fn, data, pfd->visited,
7574 pfd->include_nondeduced_p))
7575 return error_mark_node;
7576 break;
7578 case METHOD_TYPE:
7579 /* Since we're not going to walk subtrees, we have to do this
7580 explicitly here. */
7581 if (for_each_template_parm (TYPE_METHOD_BASETYPE (t), fn, data,
7582 pfd->visited, pfd->include_nondeduced_p))
7583 return error_mark_node;
7584 /* Fall through. */
7586 case FUNCTION_TYPE:
7587 /* Check the return type. */
7588 if (for_each_template_parm (TREE_TYPE (t), fn, data, pfd->visited,
7589 pfd->include_nondeduced_p))
7590 return error_mark_node;
7592 /* Check the parameter types. Since default arguments are not
7593 instantiated until they are needed, the TYPE_ARG_TYPES may
7594 contain expressions that involve template parameters. But,
7595 no-one should be looking at them yet. And, once they're
7596 instantiated, they don't contain template parameters, so
7597 there's no point in looking at them then, either. */
7599 tree parm;
7601 for (parm = TYPE_ARG_TYPES (t); parm; parm = TREE_CHAIN (parm))
7602 if (for_each_template_parm (TREE_VALUE (parm), fn, data,
7603 pfd->visited, pfd->include_nondeduced_p))
7604 return error_mark_node;
7606 /* Since we've already handled the TYPE_ARG_TYPES, we don't
7607 want walk_tree walking into them itself. */
7608 *walk_subtrees = 0;
7610 break;
7612 case TYPEOF_TYPE:
7613 case UNDERLYING_TYPE:
7614 if (pfd->include_nondeduced_p
7615 && for_each_template_parm (TYPE_FIELDS (t), fn, data,
7616 pfd->visited,
7617 pfd->include_nondeduced_p))
7618 return error_mark_node;
7619 break;
7621 case FUNCTION_DECL:
7622 case VAR_DECL:
7623 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t)
7624 && for_each_template_parm (DECL_TI_ARGS (t), fn, data,
7625 pfd->visited, pfd->include_nondeduced_p))
7626 return error_mark_node;
7627 /* Fall through. */
7629 case PARM_DECL:
7630 case CONST_DECL:
7631 if (TREE_CODE (t) == CONST_DECL && DECL_TEMPLATE_PARM_P (t)
7632 && for_each_template_parm (DECL_INITIAL (t), fn, data,
7633 pfd->visited, pfd->include_nondeduced_p))
7634 return error_mark_node;
7635 if (DECL_CONTEXT (t)
7636 && pfd->include_nondeduced_p
7637 && for_each_template_parm (DECL_CONTEXT (t), fn, data,
7638 pfd->visited, pfd->include_nondeduced_p))
7639 return error_mark_node;
7640 break;
7642 case BOUND_TEMPLATE_TEMPLATE_PARM:
7643 /* Record template parameters such as `T' inside `TT<T>'. */
7644 if (for_each_template_parm (TYPE_TI_ARGS (t), fn, data, pfd->visited,
7645 pfd->include_nondeduced_p))
7646 return error_mark_node;
7647 /* Fall through. */
7649 case TEMPLATE_TEMPLATE_PARM:
7650 case TEMPLATE_TYPE_PARM:
7651 case TEMPLATE_PARM_INDEX:
7652 if (fn && (*fn)(t, data))
7653 return error_mark_node;
7654 else if (!fn)
7655 return error_mark_node;
7656 break;
7658 case TEMPLATE_DECL:
7659 /* A template template parameter is encountered. */
7660 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t)
7661 && for_each_template_parm (TREE_TYPE (t), fn, data, pfd->visited,
7662 pfd->include_nondeduced_p))
7663 return error_mark_node;
7665 /* Already substituted template template parameter */
7666 *walk_subtrees = 0;
7667 break;
7669 case TYPENAME_TYPE:
7670 if (!fn
7671 || for_each_template_parm (TYPENAME_TYPE_FULLNAME (t), fn,
7672 data, pfd->visited,
7673 pfd->include_nondeduced_p))
7674 return error_mark_node;
7675 break;
7677 case CONSTRUCTOR:
7678 if (TREE_TYPE (t) && TYPE_PTRMEMFUNC_P (TREE_TYPE (t))
7679 && pfd->include_nondeduced_p
7680 && for_each_template_parm (TYPE_PTRMEMFUNC_FN_TYPE
7681 (TREE_TYPE (t)), fn, data,
7682 pfd->visited, pfd->include_nondeduced_p))
7683 return error_mark_node;
7684 break;
7686 case INDIRECT_REF:
7687 case COMPONENT_REF:
7688 /* If there's no type, then this thing must be some expression
7689 involving template parameters. */
7690 if (!fn && !TREE_TYPE (t))
7691 return error_mark_node;
7692 break;
7694 case MODOP_EXPR:
7695 case CAST_EXPR:
7696 case IMPLICIT_CONV_EXPR:
7697 case REINTERPRET_CAST_EXPR:
7698 case CONST_CAST_EXPR:
7699 case STATIC_CAST_EXPR:
7700 case DYNAMIC_CAST_EXPR:
7701 case ARROW_EXPR:
7702 case DOTSTAR_EXPR:
7703 case TYPEID_EXPR:
7704 case PSEUDO_DTOR_EXPR:
7705 if (!fn)
7706 return error_mark_node;
7707 break;
7709 default:
7710 break;
7713 /* We didn't find any template parameters we liked. */
7714 return NULL_TREE;
7717 /* For each TEMPLATE_TYPE_PARM, TEMPLATE_TEMPLATE_PARM,
7718 BOUND_TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX in T,
7719 call FN with the parameter and the DATA.
7720 If FN returns nonzero, the iteration is terminated, and
7721 for_each_template_parm returns 1. Otherwise, the iteration
7722 continues. If FN never returns a nonzero value, the value
7723 returned by for_each_template_parm is 0. If FN is NULL, it is
7724 considered to be the function which always returns 1.
7726 If INCLUDE_NONDEDUCED_P, then this routine will also visit template
7727 parameters that occur in non-deduced contexts. When false, only
7728 visits those template parameters that can be deduced. */
7730 static int
7731 for_each_template_parm (tree t, tree_fn_t fn, void* data,
7732 struct pointer_set_t *visited,
7733 bool include_nondeduced_p)
7735 struct pair_fn_data pfd;
7736 int result;
7738 /* Set up. */
7739 pfd.fn = fn;
7740 pfd.data = data;
7741 pfd.include_nondeduced_p = include_nondeduced_p;
7743 /* Walk the tree. (Conceptually, we would like to walk without
7744 duplicates, but for_each_template_parm_r recursively calls
7745 for_each_template_parm, so we would need to reorganize a fair
7746 bit to use walk_tree_without_duplicates, so we keep our own
7747 visited list.) */
7748 if (visited)
7749 pfd.visited = visited;
7750 else
7751 pfd.visited = pointer_set_create ();
7752 result = cp_walk_tree (&t,
7753 for_each_template_parm_r,
7754 &pfd,
7755 pfd.visited) != NULL_TREE;
7757 /* Clean up. */
7758 if (!visited)
7760 pointer_set_destroy (pfd.visited);
7761 pfd.visited = 0;
7764 return result;
7767 /* Returns true if T depends on any template parameter. */
7770 uses_template_parms (tree t)
7772 bool dependent_p;
7773 int saved_processing_template_decl;
7775 saved_processing_template_decl = processing_template_decl;
7776 if (!saved_processing_template_decl)
7777 processing_template_decl = 1;
7778 if (TYPE_P (t))
7779 dependent_p = dependent_type_p (t);
7780 else if (TREE_CODE (t) == TREE_VEC)
7781 dependent_p = any_dependent_template_arguments_p (t);
7782 else if (TREE_CODE (t) == TREE_LIST)
7783 dependent_p = (uses_template_parms (TREE_VALUE (t))
7784 || uses_template_parms (TREE_CHAIN (t)));
7785 else if (TREE_CODE (t) == TYPE_DECL)
7786 dependent_p = dependent_type_p (TREE_TYPE (t));
7787 else if (DECL_P (t)
7788 || EXPR_P (t)
7789 || TREE_CODE (t) == TEMPLATE_PARM_INDEX
7790 || TREE_CODE (t) == OVERLOAD
7791 || BASELINK_P (t)
7792 || TREE_CODE (t) == IDENTIFIER_NODE
7793 || TREE_CODE (t) == TRAIT_EXPR
7794 || TREE_CODE (t) == CONSTRUCTOR
7795 || CONSTANT_CLASS_P (t))
7796 dependent_p = (type_dependent_expression_p (t)
7797 || value_dependent_expression_p (t));
7798 else
7800 gcc_assert (t == error_mark_node);
7801 dependent_p = false;
7804 processing_template_decl = saved_processing_template_decl;
7806 return dependent_p;
7809 /* Returns true iff current_function_decl is an incompletely instantiated
7810 template. Useful instead of processing_template_decl because the latter
7811 is set to 0 during fold_non_dependent_expr. */
7813 bool
7814 in_template_function (void)
7816 tree fn = current_function_decl;
7817 bool ret;
7818 ++processing_template_decl;
7819 ret = (fn && DECL_LANG_SPECIFIC (fn)
7820 && DECL_TEMPLATE_INFO (fn)
7821 && any_dependent_template_arguments_p (DECL_TI_ARGS (fn)));
7822 --processing_template_decl;
7823 return ret;
7826 /* Returns true if T depends on any template parameter with level LEVEL. */
7829 uses_template_parms_level (tree t, int level)
7831 return for_each_template_parm (t, template_parm_this_level_p, &level, NULL,
7832 /*include_nondeduced_p=*/true);
7835 /* Returns TRUE iff INST is an instantiation we don't need to do in an
7836 ill-formed translation unit, i.e. a variable or function that isn't
7837 usable in a constant expression. */
7839 static inline bool
7840 neglectable_inst_p (tree d)
7842 return (DECL_P (d)
7843 && !(TREE_CODE (d) == FUNCTION_DECL ? DECL_DECLARED_CONSTEXPR_P (d)
7844 : decl_maybe_constant_var_p (d)));
7847 /* Returns TRUE iff we should refuse to instantiate DECL because it's
7848 neglectable and instantiated from within an erroneous instantiation. */
7850 static bool
7851 limit_bad_template_recursion (tree decl)
7853 struct tinst_level *lev = current_tinst_level;
7854 int errs = errorcount + sorrycount;
7855 if (lev == NULL || errs == 0 || !neglectable_inst_p (decl))
7856 return false;
7858 for (; lev; lev = lev->next)
7859 if (neglectable_inst_p (lev->decl))
7860 break;
7862 return (lev && errs > lev->errors);
7865 static int tinst_depth;
7866 extern int max_tinst_depth;
7867 int depth_reached;
7869 static GTY(()) struct tinst_level *last_error_tinst_level;
7871 /* We're starting to instantiate D; record the template instantiation context
7872 for diagnostics and to restore it later. */
7875 push_tinst_level (tree d)
7877 struct tinst_level *new_level;
7879 if (tinst_depth >= max_tinst_depth)
7881 last_error_tinst_level = current_tinst_level;
7882 if (TREE_CODE (d) == TREE_LIST)
7883 error ("template instantiation depth exceeds maximum of %d (use "
7884 "-ftemplate-depth= to increase the maximum) substituting %qS",
7885 max_tinst_depth, d);
7886 else
7887 error ("template instantiation depth exceeds maximum of %d (use "
7888 "-ftemplate-depth= to increase the maximum) instantiating %qD",
7889 max_tinst_depth, d);
7891 print_instantiation_context ();
7893 return 0;
7896 /* If the current instantiation caused problems, don't let it instantiate
7897 anything else. Do allow deduction substitution and decls usable in
7898 constant expressions. */
7899 if (limit_bad_template_recursion (d))
7900 return 0;
7902 new_level = ggc_alloc_tinst_level ();
7903 new_level->decl = d;
7904 new_level->locus = input_location;
7905 new_level->errors = errorcount+sorrycount;
7906 new_level->in_system_header_p = in_system_header;
7907 new_level->next = current_tinst_level;
7908 current_tinst_level = new_level;
7910 ++tinst_depth;
7911 if (GATHER_STATISTICS && (tinst_depth > depth_reached))
7912 depth_reached = tinst_depth;
7914 return 1;
7917 /* We're done instantiating this template; return to the instantiation
7918 context. */
7920 void
7921 pop_tinst_level (void)
7923 /* Restore the filename and line number stashed away when we started
7924 this instantiation. */
7925 input_location = current_tinst_level->locus;
7926 current_tinst_level = current_tinst_level->next;
7927 --tinst_depth;
7930 /* We're instantiating a deferred template; restore the template
7931 instantiation context in which the instantiation was requested, which
7932 is one step out from LEVEL. Return the corresponding DECL or TYPE. */
7934 static tree
7935 reopen_tinst_level (struct tinst_level *level)
7937 struct tinst_level *t;
7939 tinst_depth = 0;
7940 for (t = level; t; t = t->next)
7941 ++tinst_depth;
7943 current_tinst_level = level;
7944 pop_tinst_level ();
7945 if (current_tinst_level)
7946 current_tinst_level->errors = errorcount+sorrycount;
7947 return level->decl;
7950 /* Returns the TINST_LEVEL which gives the original instantiation
7951 context. */
7953 struct tinst_level *
7954 outermost_tinst_level (void)
7956 struct tinst_level *level = current_tinst_level;
7957 if (level)
7958 while (level->next)
7959 level = level->next;
7960 return level;
7963 /* DECL is a friend FUNCTION_DECL or TEMPLATE_DECL. ARGS is the
7964 vector of template arguments, as for tsubst.
7966 Returns an appropriate tsubst'd friend declaration. */
7968 static tree
7969 tsubst_friend_function (tree decl, tree args)
7971 tree new_friend;
7973 if (TREE_CODE (decl) == FUNCTION_DECL
7974 && DECL_TEMPLATE_INSTANTIATION (decl)
7975 && TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
7976 /* This was a friend declared with an explicit template
7977 argument list, e.g.:
7979 friend void f<>(T);
7981 to indicate that f was a template instantiation, not a new
7982 function declaration. Now, we have to figure out what
7983 instantiation of what template. */
7985 tree template_id, arglist, fns;
7986 tree new_args;
7987 tree tmpl;
7988 tree ns = decl_namespace_context (TYPE_MAIN_DECL (current_class_type));
7990 /* Friend functions are looked up in the containing namespace scope.
7991 We must enter that scope, to avoid finding member functions of the
7992 current class with same name. */
7993 push_nested_namespace (ns);
7994 fns = tsubst_expr (DECL_TI_TEMPLATE (decl), args,
7995 tf_warning_or_error, NULL_TREE,
7996 /*integral_constant_expression_p=*/false);
7997 pop_nested_namespace (ns);
7998 arglist = tsubst (DECL_TI_ARGS (decl), args,
7999 tf_warning_or_error, NULL_TREE);
8000 template_id = lookup_template_function (fns, arglist);
8002 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
8003 tmpl = determine_specialization (template_id, new_friend,
8004 &new_args,
8005 /*need_member_template=*/0,
8006 TREE_VEC_LENGTH (args),
8007 tsk_none);
8008 return instantiate_template (tmpl, new_args, tf_error);
8011 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
8013 /* The NEW_FRIEND will look like an instantiation, to the
8014 compiler, but is not an instantiation from the point of view of
8015 the language. For example, we might have had:
8017 template <class T> struct S {
8018 template <class U> friend void f(T, U);
8021 Then, in S<int>, template <class U> void f(int, U) is not an
8022 instantiation of anything. */
8023 if (new_friend == error_mark_node)
8024 return error_mark_node;
8026 DECL_USE_TEMPLATE (new_friend) = 0;
8027 if (TREE_CODE (decl) == TEMPLATE_DECL)
8029 DECL_USE_TEMPLATE (DECL_TEMPLATE_RESULT (new_friend)) = 0;
8030 DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (new_friend))
8031 = DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (decl));
8034 /* The mangled name for the NEW_FRIEND is incorrect. The function
8035 is not a template instantiation and should not be mangled like
8036 one. Therefore, we forget the mangling here; we'll recompute it
8037 later if we need it. */
8038 if (TREE_CODE (new_friend) != TEMPLATE_DECL)
8040 SET_DECL_RTL (new_friend, NULL);
8041 SET_DECL_ASSEMBLER_NAME (new_friend, NULL_TREE);
8044 if (DECL_NAMESPACE_SCOPE_P (new_friend))
8046 tree old_decl;
8047 tree new_friend_template_info;
8048 tree new_friend_result_template_info;
8049 tree ns;
8050 int new_friend_is_defn;
8052 /* We must save some information from NEW_FRIEND before calling
8053 duplicate decls since that function will free NEW_FRIEND if
8054 possible. */
8055 new_friend_template_info = DECL_TEMPLATE_INFO (new_friend);
8056 new_friend_is_defn =
8057 (DECL_INITIAL (DECL_TEMPLATE_RESULT
8058 (template_for_substitution (new_friend)))
8059 != NULL_TREE);
8060 if (TREE_CODE (new_friend) == TEMPLATE_DECL)
8062 /* This declaration is a `primary' template. */
8063 DECL_PRIMARY_TEMPLATE (new_friend) = new_friend;
8065 new_friend_result_template_info
8066 = DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (new_friend));
8068 else
8069 new_friend_result_template_info = NULL_TREE;
8071 /* Make the init_value nonzero so pushdecl knows this is a defn. */
8072 if (new_friend_is_defn)
8073 DECL_INITIAL (new_friend) = error_mark_node;
8075 /* Inside pushdecl_namespace_level, we will push into the
8076 current namespace. However, the friend function should go
8077 into the namespace of the template. */
8078 ns = decl_namespace_context (new_friend);
8079 push_nested_namespace (ns);
8080 old_decl = pushdecl_namespace_level (new_friend, /*is_friend=*/true);
8081 pop_nested_namespace (ns);
8083 if (old_decl == error_mark_node)
8084 return error_mark_node;
8086 if (old_decl != new_friend)
8088 /* This new friend declaration matched an existing
8089 declaration. For example, given:
8091 template <class T> void f(T);
8092 template <class U> class C {
8093 template <class T> friend void f(T) {}
8096 the friend declaration actually provides the definition
8097 of `f', once C has been instantiated for some type. So,
8098 old_decl will be the out-of-class template declaration,
8099 while new_friend is the in-class definition.
8101 But, if `f' was called before this point, the
8102 instantiation of `f' will have DECL_TI_ARGS corresponding
8103 to `T' but not to `U', references to which might appear
8104 in the definition of `f'. Previously, the most general
8105 template for an instantiation of `f' was the out-of-class
8106 version; now it is the in-class version. Therefore, we
8107 run through all specialization of `f', adding to their
8108 DECL_TI_ARGS appropriately. In particular, they need a
8109 new set of outer arguments, corresponding to the
8110 arguments for this class instantiation.
8112 The same situation can arise with something like this:
8114 friend void f(int);
8115 template <class T> class C {
8116 friend void f(T) {}
8119 when `C<int>' is instantiated. Now, `f(int)' is defined
8120 in the class. */
8122 if (!new_friend_is_defn)
8123 /* On the other hand, if the in-class declaration does
8124 *not* provide a definition, then we don't want to alter
8125 existing definitions. We can just leave everything
8126 alone. */
8128 else
8130 tree new_template = TI_TEMPLATE (new_friend_template_info);
8131 tree new_args = TI_ARGS (new_friend_template_info);
8133 /* Overwrite whatever template info was there before, if
8134 any, with the new template information pertaining to
8135 the declaration. */
8136 DECL_TEMPLATE_INFO (old_decl) = new_friend_template_info;
8138 if (TREE_CODE (old_decl) != TEMPLATE_DECL)
8140 /* We should have called reregister_specialization in
8141 duplicate_decls. */
8142 gcc_assert (retrieve_specialization (new_template,
8143 new_args, 0)
8144 == old_decl);
8146 /* Instantiate it if the global has already been used. */
8147 if (DECL_ODR_USED (old_decl))
8148 instantiate_decl (old_decl, /*defer_ok=*/true,
8149 /*expl_inst_class_mem_p=*/false);
8151 else
8153 tree t;
8155 /* Indicate that the old function template is a partial
8156 instantiation. */
8157 DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (old_decl))
8158 = new_friend_result_template_info;
8160 gcc_assert (new_template
8161 == most_general_template (new_template));
8162 gcc_assert (new_template != old_decl);
8164 /* Reassign any specializations already in the hash table
8165 to the new more general template, and add the
8166 additional template args. */
8167 for (t = DECL_TEMPLATE_INSTANTIATIONS (old_decl);
8168 t != NULL_TREE;
8169 t = TREE_CHAIN (t))
8171 tree spec = TREE_VALUE (t);
8172 spec_entry elt;
8174 elt.tmpl = old_decl;
8175 elt.args = DECL_TI_ARGS (spec);
8176 elt.spec = NULL_TREE;
8178 htab_remove_elt (decl_specializations, &elt);
8180 DECL_TI_ARGS (spec)
8181 = add_outermost_template_args (new_args,
8182 DECL_TI_ARGS (spec));
8184 register_specialization
8185 (spec, new_template, DECL_TI_ARGS (spec), true, 0);
8188 DECL_TEMPLATE_INSTANTIATIONS (old_decl) = NULL_TREE;
8192 /* The information from NEW_FRIEND has been merged into OLD_DECL
8193 by duplicate_decls. */
8194 new_friend = old_decl;
8197 else
8199 tree context = DECL_CONTEXT (new_friend);
8200 bool dependent_p;
8202 /* In the code
8203 template <class T> class C {
8204 template <class U> friend void C1<U>::f (); // case 1
8205 friend void C2<T>::f (); // case 2
8207 we only need to make sure CONTEXT is a complete type for
8208 case 2. To distinguish between the two cases, we note that
8209 CONTEXT of case 1 remains dependent type after tsubst while
8210 this isn't true for case 2. */
8211 ++processing_template_decl;
8212 dependent_p = dependent_type_p (context);
8213 --processing_template_decl;
8215 if (!dependent_p
8216 && !complete_type_or_else (context, NULL_TREE))
8217 return error_mark_node;
8219 if (COMPLETE_TYPE_P (context))
8221 /* Check to see that the declaration is really present, and,
8222 possibly obtain an improved declaration. */
8223 tree fn = check_classfn (context,
8224 new_friend, NULL_TREE);
8226 if (fn)
8227 new_friend = fn;
8231 return new_friend;
8234 /* FRIEND_TMPL is a friend TEMPLATE_DECL. ARGS is the vector of
8235 template arguments, as for tsubst.
8237 Returns an appropriate tsubst'd friend type or error_mark_node on
8238 failure. */
8240 static tree
8241 tsubst_friend_class (tree friend_tmpl, tree args)
8243 tree friend_type;
8244 tree tmpl;
8245 tree context;
8247 if (DECL_TEMPLATE_TEMPLATE_PARM_P (friend_tmpl))
8249 tree t = tsubst (TREE_TYPE (friend_tmpl), args, tf_none, NULL_TREE);
8250 return TREE_TYPE (t);
8253 context = CP_DECL_CONTEXT (friend_tmpl);
8255 if (context != global_namespace)
8257 if (TREE_CODE (context) == NAMESPACE_DECL)
8258 push_nested_namespace (context);
8259 else
8260 push_nested_class (tsubst (context, args, tf_none, NULL_TREE));
8263 /* Look for a class template declaration. We look for hidden names
8264 because two friend declarations of the same template are the
8265 same. For example, in:
8267 struct A {
8268 template <typename> friend class F;
8270 template <typename> struct B {
8271 template <typename> friend class F;
8274 both F templates are the same. */
8275 tmpl = lookup_name_real (DECL_NAME (friend_tmpl), 0, 0,
8276 /*block_p=*/true, 0, LOOKUP_HIDDEN);
8278 /* But, if we don't find one, it might be because we're in a
8279 situation like this:
8281 template <class T>
8282 struct S {
8283 template <class U>
8284 friend struct S;
8287 Here, in the scope of (say) S<int>, `S' is bound to a TYPE_DECL
8288 for `S<int>', not the TEMPLATE_DECL. */
8289 if (!tmpl || !DECL_CLASS_TEMPLATE_P (tmpl))
8291 tmpl = lookup_name_prefer_type (DECL_NAME (friend_tmpl), 1);
8292 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
8295 if (tmpl && DECL_CLASS_TEMPLATE_P (tmpl))
8297 /* The friend template has already been declared. Just
8298 check to see that the declarations match, and install any new
8299 default parameters. We must tsubst the default parameters,
8300 of course. We only need the innermost template parameters
8301 because that is all that redeclare_class_template will look
8302 at. */
8303 if (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (friend_tmpl))
8304 > TMPL_ARGS_DEPTH (args))
8306 tree parms;
8307 location_t saved_input_location;
8308 parms = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_tmpl),
8309 args, tf_warning_or_error);
8311 saved_input_location = input_location;
8312 input_location = DECL_SOURCE_LOCATION (friend_tmpl);
8313 redeclare_class_template (TREE_TYPE (tmpl), parms);
8314 input_location = saved_input_location;
8318 friend_type = TREE_TYPE (tmpl);
8320 else
8322 /* The friend template has not already been declared. In this
8323 case, the instantiation of the template class will cause the
8324 injection of this template into the global scope. */
8325 tmpl = tsubst (friend_tmpl, args, tf_warning_or_error, NULL_TREE);
8326 if (tmpl == error_mark_node)
8327 return error_mark_node;
8329 /* The new TMPL is not an instantiation of anything, so we
8330 forget its origins. We don't reset CLASSTYPE_TI_TEMPLATE for
8331 the new type because that is supposed to be the corresponding
8332 template decl, i.e., TMPL. */
8333 DECL_USE_TEMPLATE (tmpl) = 0;
8334 DECL_TEMPLATE_INFO (tmpl) = NULL_TREE;
8335 CLASSTYPE_USE_TEMPLATE (TREE_TYPE (tmpl)) = 0;
8336 CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl))
8337 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl)));
8339 /* Inject this template into the global scope. */
8340 friend_type = TREE_TYPE (pushdecl_top_level_maybe_friend (tmpl, true));
8343 if (context != global_namespace)
8345 if (TREE_CODE (context) == NAMESPACE_DECL)
8346 pop_nested_namespace (context);
8347 else
8348 pop_nested_class ();
8351 return friend_type;
8354 /* Returns zero if TYPE cannot be completed later due to circularity.
8355 Otherwise returns one. */
8357 static int
8358 can_complete_type_without_circularity (tree type)
8360 if (type == NULL_TREE || type == error_mark_node)
8361 return 0;
8362 else if (COMPLETE_TYPE_P (type))
8363 return 1;
8364 else if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type))
8365 return can_complete_type_without_circularity (TREE_TYPE (type));
8366 else if (CLASS_TYPE_P (type)
8367 && TYPE_BEING_DEFINED (TYPE_MAIN_VARIANT (type)))
8368 return 0;
8369 else
8370 return 1;
8373 /* Apply any attributes which had to be deferred until instantiation
8374 time. DECL_P, ATTRIBUTES and ATTR_FLAGS are as cplus_decl_attributes;
8375 ARGS, COMPLAIN, IN_DECL are as tsubst. */
8377 static void
8378 apply_late_template_attributes (tree *decl_p, tree attributes, int attr_flags,
8379 tree args, tsubst_flags_t complain, tree in_decl)
8381 tree last_dep = NULL_TREE;
8382 tree t;
8383 tree *p;
8385 for (t = attributes; t; t = TREE_CHAIN (t))
8386 if (ATTR_IS_DEPENDENT (t))
8388 last_dep = t;
8389 attributes = copy_list (attributes);
8390 break;
8393 if (DECL_P (*decl_p))
8395 if (TREE_TYPE (*decl_p) == error_mark_node)
8396 return;
8397 p = &DECL_ATTRIBUTES (*decl_p);
8399 else
8400 p = &TYPE_ATTRIBUTES (*decl_p);
8402 if (last_dep)
8404 tree late_attrs = NULL_TREE;
8405 tree *q = &late_attrs;
8407 for (*p = attributes; *p; )
8409 t = *p;
8410 if (ATTR_IS_DEPENDENT (t))
8412 *p = TREE_CHAIN (t);
8413 TREE_CHAIN (t) = NULL_TREE;
8414 /* If the first attribute argument is an identifier, don't
8415 pass it through tsubst. Attributes like mode, format,
8416 cleanup and several target specific attributes expect it
8417 unmodified. */
8418 if (TREE_VALUE (t)
8419 && TREE_CODE (TREE_VALUE (t)) == TREE_LIST
8420 && TREE_VALUE (TREE_VALUE (t))
8421 && (TREE_CODE (TREE_VALUE (TREE_VALUE (t)))
8422 == IDENTIFIER_NODE))
8424 tree chain
8425 = tsubst_expr (TREE_CHAIN (TREE_VALUE (t)), args, complain,
8426 in_decl,
8427 /*integral_constant_expression_p=*/false);
8428 if (chain != TREE_CHAIN (TREE_VALUE (t)))
8429 TREE_VALUE (t)
8430 = tree_cons (NULL_TREE, TREE_VALUE (TREE_VALUE (t)),
8431 chain);
8433 else
8434 TREE_VALUE (t)
8435 = tsubst_expr (TREE_VALUE (t), args, complain, in_decl,
8436 /*integral_constant_expression_p=*/false);
8437 *q = t;
8438 q = &TREE_CHAIN (t);
8440 else
8441 p = &TREE_CHAIN (t);
8444 cplus_decl_attributes (decl_p, late_attrs, attr_flags);
8448 /* Perform (or defer) access check for typedefs that were referenced
8449 from within the template TMPL code.
8450 This is a subroutine of instantiate_decl and instantiate_class_template.
8451 TMPL is the template to consider and TARGS is the list of arguments of
8452 that template. */
8454 static void
8455 perform_typedefs_access_check (tree tmpl, tree targs)
8457 location_t saved_location;
8458 int i;
8459 qualified_typedef_usage_t *iter;
8461 if (!tmpl
8462 || (!CLASS_TYPE_P (tmpl)
8463 && TREE_CODE (tmpl) != FUNCTION_DECL))
8464 return;
8466 saved_location = input_location;
8467 FOR_EACH_VEC_ELT (qualified_typedef_usage_t,
8468 get_types_needing_access_check (tmpl),
8469 i, iter)
8471 tree type_decl = iter->typedef_decl;
8472 tree type_scope = iter->context;
8474 if (!type_decl || !type_scope || !CLASS_TYPE_P (type_scope))
8475 continue;
8477 if (uses_template_parms (type_decl))
8478 type_decl = tsubst (type_decl, targs, tf_error, NULL_TREE);
8479 if (uses_template_parms (type_scope))
8480 type_scope = tsubst (type_scope, targs, tf_error, NULL_TREE);
8482 /* Make access check error messages point to the location
8483 of the use of the typedef. */
8484 input_location = iter->locus;
8485 perform_or_defer_access_check (TYPE_BINFO (type_scope),
8486 type_decl, type_decl,
8487 tf_warning_or_error);
8489 input_location = saved_location;
8492 static tree
8493 instantiate_class_template_1 (tree type)
8495 tree templ, args, pattern, t, member;
8496 tree typedecl;
8497 tree pbinfo;
8498 tree base_list;
8499 unsigned int saved_maximum_field_alignment;
8500 tree fn_context;
8502 if (type == error_mark_node)
8503 return error_mark_node;
8505 if (COMPLETE_OR_OPEN_TYPE_P (type)
8506 || uses_template_parms (type))
8507 return type;
8509 /* Figure out which template is being instantiated. */
8510 templ = most_general_template (CLASSTYPE_TI_TEMPLATE (type));
8511 gcc_assert (TREE_CODE (templ) == TEMPLATE_DECL);
8513 /* Determine what specialization of the original template to
8514 instantiate. */
8515 t = most_specialized_class (type, templ, tf_warning_or_error);
8516 if (t == error_mark_node)
8518 TYPE_BEING_DEFINED (type) = 1;
8519 return error_mark_node;
8521 else if (t)
8523 /* This TYPE is actually an instantiation of a partial
8524 specialization. We replace the innermost set of ARGS with
8525 the arguments appropriate for substitution. For example,
8526 given:
8528 template <class T> struct S {};
8529 template <class T> struct S<T*> {};
8531 and supposing that we are instantiating S<int*>, ARGS will
8532 presently be {int*} -- but we need {int}. */
8533 pattern = TREE_TYPE (t);
8534 args = TREE_PURPOSE (t);
8536 else
8538 pattern = TREE_TYPE (templ);
8539 args = CLASSTYPE_TI_ARGS (type);
8542 /* If the template we're instantiating is incomplete, then clearly
8543 there's nothing we can do. */
8544 if (!COMPLETE_TYPE_P (pattern))
8545 return type;
8547 /* If we've recursively instantiated too many templates, stop. */
8548 if (! push_tinst_level (type))
8549 return type;
8551 /* Now we're really doing the instantiation. Mark the type as in
8552 the process of being defined. */
8553 TYPE_BEING_DEFINED (type) = 1;
8555 /* We may be in the middle of deferred access check. Disable
8556 it now. */
8557 push_deferring_access_checks (dk_no_deferred);
8559 fn_context = decl_function_context (TYPE_MAIN_DECL (type));
8560 if (!fn_context)
8561 push_to_top_level ();
8562 /* Use #pragma pack from the template context. */
8563 saved_maximum_field_alignment = maximum_field_alignment;
8564 maximum_field_alignment = TYPE_PRECISION (pattern);
8566 SET_CLASSTYPE_INTERFACE_UNKNOWN (type);
8568 /* Set the input location to the most specialized template definition.
8569 This is needed if tsubsting causes an error. */
8570 typedecl = TYPE_MAIN_DECL (pattern);
8571 input_location = DECL_SOURCE_LOCATION (TYPE_NAME (type)) =
8572 DECL_SOURCE_LOCATION (typedecl);
8574 TYPE_PACKED (type) = TYPE_PACKED (pattern);
8575 TYPE_ALIGN (type) = TYPE_ALIGN (pattern);
8576 TYPE_USER_ALIGN (type) = TYPE_USER_ALIGN (pattern);
8577 TYPE_FOR_JAVA (type) = TYPE_FOR_JAVA (pattern); /* For libjava's JArray<T> */
8578 if (ANON_AGGR_TYPE_P (pattern))
8579 SET_ANON_AGGR_TYPE_P (type);
8580 if (CLASSTYPE_VISIBILITY_SPECIFIED (pattern))
8582 CLASSTYPE_VISIBILITY_SPECIFIED (type) = 1;
8583 CLASSTYPE_VISIBILITY (type) = CLASSTYPE_VISIBILITY (pattern);
8584 /* Adjust visibility for template arguments. */
8585 determine_visibility (TYPE_MAIN_DECL (type));
8587 CLASSTYPE_FINAL (type) = CLASSTYPE_FINAL (pattern);
8589 pbinfo = TYPE_BINFO (pattern);
8591 /* We should never instantiate a nested class before its enclosing
8592 class; we need to look up the nested class by name before we can
8593 instantiate it, and that lookup should instantiate the enclosing
8594 class. */
8595 gcc_assert (!DECL_CLASS_SCOPE_P (TYPE_MAIN_DECL (pattern))
8596 || COMPLETE_OR_OPEN_TYPE_P (TYPE_CONTEXT (type)));
8598 base_list = NULL_TREE;
8599 if (BINFO_N_BASE_BINFOS (pbinfo))
8601 tree pbase_binfo;
8602 tree pushed_scope;
8603 int i;
8605 /* We must enter the scope containing the type, as that is where
8606 the accessibility of types named in dependent bases are
8607 looked up from. */
8608 pushed_scope = push_scope (CP_TYPE_CONTEXT (type));
8610 /* Substitute into each of the bases to determine the actual
8611 basetypes. */
8612 for (i = 0; BINFO_BASE_ITERATE (pbinfo, i, pbase_binfo); i++)
8614 tree base;
8615 tree access = BINFO_BASE_ACCESS (pbinfo, i);
8616 tree expanded_bases = NULL_TREE;
8617 int idx, len = 1;
8619 if (PACK_EXPANSION_P (BINFO_TYPE (pbase_binfo)))
8621 expanded_bases =
8622 tsubst_pack_expansion (BINFO_TYPE (pbase_binfo),
8623 args, tf_error, NULL_TREE);
8624 if (expanded_bases == error_mark_node)
8625 continue;
8627 len = TREE_VEC_LENGTH (expanded_bases);
8630 for (idx = 0; idx < len; idx++)
8632 if (expanded_bases)
8633 /* Extract the already-expanded base class. */
8634 base = TREE_VEC_ELT (expanded_bases, idx);
8635 else
8636 /* Substitute to figure out the base class. */
8637 base = tsubst (BINFO_TYPE (pbase_binfo), args, tf_error,
8638 NULL_TREE);
8640 if (base == error_mark_node)
8641 continue;
8643 base_list = tree_cons (access, base, base_list);
8644 if (BINFO_VIRTUAL_P (pbase_binfo))
8645 TREE_TYPE (base_list) = integer_type_node;
8649 /* The list is now in reverse order; correct that. */
8650 base_list = nreverse (base_list);
8652 if (pushed_scope)
8653 pop_scope (pushed_scope);
8655 /* Now call xref_basetypes to set up all the base-class
8656 information. */
8657 xref_basetypes (type, base_list);
8659 apply_late_template_attributes (&type, TYPE_ATTRIBUTES (pattern),
8660 (int) ATTR_FLAG_TYPE_IN_PLACE,
8661 args, tf_error, NULL_TREE);
8662 fixup_attribute_variants (type);
8664 /* Now that our base classes are set up, enter the scope of the
8665 class, so that name lookups into base classes, etc. will work
8666 correctly. This is precisely analogous to what we do in
8667 begin_class_definition when defining an ordinary non-template
8668 class, except we also need to push the enclosing classes. */
8669 push_nested_class (type);
8671 /* Now members are processed in the order of declaration. */
8672 for (member = CLASSTYPE_DECL_LIST (pattern);
8673 member; member = TREE_CHAIN (member))
8675 tree t = TREE_VALUE (member);
8677 if (TREE_PURPOSE (member))
8679 if (TYPE_P (t))
8681 /* Build new CLASSTYPE_NESTED_UTDS. */
8683 tree newtag;
8684 bool class_template_p;
8686 class_template_p = (TREE_CODE (t) != ENUMERAL_TYPE
8687 && TYPE_LANG_SPECIFIC (t)
8688 && CLASSTYPE_IS_TEMPLATE (t));
8689 /* If the member is a class template, then -- even after
8690 substitution -- there may be dependent types in the
8691 template argument list for the class. We increment
8692 PROCESSING_TEMPLATE_DECL so that dependent_type_p, as
8693 that function will assume that no types are dependent
8694 when outside of a template. */
8695 if (class_template_p)
8696 ++processing_template_decl;
8697 newtag = tsubst (t, args, tf_error, NULL_TREE);
8698 if (class_template_p)
8699 --processing_template_decl;
8700 if (newtag == error_mark_node)
8701 continue;
8703 if (TREE_CODE (newtag) != ENUMERAL_TYPE)
8705 tree name = TYPE_IDENTIFIER (t);
8707 if (class_template_p)
8708 /* Unfortunately, lookup_template_class sets
8709 CLASSTYPE_IMPLICIT_INSTANTIATION for a partial
8710 instantiation (i.e., for the type of a member
8711 template class nested within a template class.)
8712 This behavior is required for
8713 maybe_process_partial_specialization to work
8714 correctly, but is not accurate in this case;
8715 the TAG is not an instantiation of anything.
8716 (The corresponding TEMPLATE_DECL is an
8717 instantiation, but the TYPE is not.) */
8718 CLASSTYPE_USE_TEMPLATE (newtag) = 0;
8720 /* Now, we call pushtag to put this NEWTAG into the scope of
8721 TYPE. We first set up the IDENTIFIER_TYPE_VALUE to avoid
8722 pushtag calling push_template_decl. We don't have to do
8723 this for enums because it will already have been done in
8724 tsubst_enum. */
8725 if (name)
8726 SET_IDENTIFIER_TYPE_VALUE (name, newtag);
8727 pushtag (name, newtag, /*tag_scope=*/ts_current);
8730 else if (TREE_CODE (t) == FUNCTION_DECL
8731 || DECL_FUNCTION_TEMPLATE_P (t))
8733 /* Build new TYPE_METHODS. */
8734 tree r;
8736 if (TREE_CODE (t) == TEMPLATE_DECL)
8737 ++processing_template_decl;
8738 r = tsubst (t, args, tf_error, NULL_TREE);
8739 if (TREE_CODE (t) == TEMPLATE_DECL)
8740 --processing_template_decl;
8741 set_current_access_from_decl (r);
8742 finish_member_declaration (r);
8743 /* Instantiate members marked with attribute used. */
8744 if (r != error_mark_node && DECL_PRESERVE_P (r))
8745 mark_used (r);
8747 else
8749 /* Build new TYPE_FIELDS. */
8750 if (TREE_CODE (t) == STATIC_ASSERT)
8752 tree condition;
8754 ++c_inhibit_evaluation_warnings;
8755 condition =
8756 tsubst_expr (STATIC_ASSERT_CONDITION (t), args,
8757 tf_warning_or_error, NULL_TREE,
8758 /*integral_constant_expression_p=*/true);
8759 --c_inhibit_evaluation_warnings;
8761 finish_static_assert (condition,
8762 STATIC_ASSERT_MESSAGE (t),
8763 STATIC_ASSERT_SOURCE_LOCATION (t),
8764 /*member_p=*/true);
8766 else if (TREE_CODE (t) != CONST_DECL)
8768 tree r;
8770 /* The file and line for this declaration, to
8771 assist in error message reporting. Since we
8772 called push_tinst_level above, we don't need to
8773 restore these. */
8774 input_location = DECL_SOURCE_LOCATION (t);
8776 if (TREE_CODE (t) == TEMPLATE_DECL)
8777 ++processing_template_decl;
8778 r = tsubst (t, args, tf_warning_or_error, NULL_TREE);
8779 if (TREE_CODE (t) == TEMPLATE_DECL)
8780 --processing_template_decl;
8781 if (TREE_CODE (r) == VAR_DECL)
8783 /* In [temp.inst]:
8785 [t]he initialization (and any associated
8786 side-effects) of a static data member does
8787 not occur unless the static data member is
8788 itself used in a way that requires the
8789 definition of the static data member to
8790 exist.
8792 Therefore, we do not substitute into the
8793 initialized for the static data member here. */
8794 finish_static_data_member_decl
8796 /*init=*/NULL_TREE,
8797 /*init_const_expr_p=*/false,
8798 /*asmspec_tree=*/NULL_TREE,
8799 /*flags=*/0);
8800 /* Instantiate members marked with attribute used. */
8801 if (r != error_mark_node && DECL_PRESERVE_P (r))
8802 mark_used (r);
8804 else if (TREE_CODE (r) == FIELD_DECL)
8806 /* Determine whether R has a valid type and can be
8807 completed later. If R is invalid, then it is
8808 replaced by error_mark_node so that it will not be
8809 added to TYPE_FIELDS. */
8810 tree rtype = TREE_TYPE (r);
8811 if (can_complete_type_without_circularity (rtype))
8812 complete_type (rtype);
8814 if (!COMPLETE_TYPE_P (rtype))
8816 cxx_incomplete_type_error (r, rtype);
8817 r = error_mark_node;
8821 /* If it is a TYPE_DECL for a class-scoped ENUMERAL_TYPE,
8822 such a thing will already have been added to the field
8823 list by tsubst_enum in finish_member_declaration in the
8824 CLASSTYPE_NESTED_UTDS case above. */
8825 if (!(TREE_CODE (r) == TYPE_DECL
8826 && TREE_CODE (TREE_TYPE (r)) == ENUMERAL_TYPE
8827 && DECL_ARTIFICIAL (r)))
8829 set_current_access_from_decl (r);
8830 finish_member_declaration (r);
8835 else
8837 if (TYPE_P (t) || DECL_CLASS_TEMPLATE_P (t)
8838 || DECL_TEMPLATE_TEMPLATE_PARM_P (t))
8840 /* Build new CLASSTYPE_FRIEND_CLASSES. */
8842 tree friend_type = t;
8843 bool adjust_processing_template_decl = false;
8845 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
8847 /* template <class T> friend class C; */
8848 friend_type = tsubst_friend_class (friend_type, args);
8849 adjust_processing_template_decl = true;
8851 else if (TREE_CODE (friend_type) == UNBOUND_CLASS_TEMPLATE)
8853 /* template <class T> friend class C::D; */
8854 friend_type = tsubst (friend_type, args,
8855 tf_warning_or_error, NULL_TREE);
8856 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
8857 friend_type = TREE_TYPE (friend_type);
8858 adjust_processing_template_decl = true;
8860 else if (TREE_CODE (friend_type) == TYPENAME_TYPE
8861 || TREE_CODE (friend_type) == TEMPLATE_TYPE_PARM)
8863 /* This could be either
8865 friend class T::C;
8867 when dependent_type_p is false or
8869 template <class U> friend class T::C;
8871 otherwise. */
8872 friend_type = tsubst (friend_type, args,
8873 tf_warning_or_error, NULL_TREE);
8874 /* Bump processing_template_decl for correct
8875 dependent_type_p calculation. */
8876 ++processing_template_decl;
8877 if (dependent_type_p (friend_type))
8878 adjust_processing_template_decl = true;
8879 --processing_template_decl;
8881 else if (!CLASSTYPE_USE_TEMPLATE (friend_type)
8882 && hidden_name_p (TYPE_NAME (friend_type)))
8884 /* friend class C;
8886 where C hasn't been declared yet. Let's lookup name
8887 from namespace scope directly, bypassing any name that
8888 come from dependent base class. */
8889 tree ns = decl_namespace_context (TYPE_MAIN_DECL (friend_type));
8891 /* The call to xref_tag_from_type does injection for friend
8892 classes. */
8893 push_nested_namespace (ns);
8894 friend_type =
8895 xref_tag_from_type (friend_type, NULL_TREE,
8896 /*tag_scope=*/ts_current);
8897 pop_nested_namespace (ns);
8899 else if (uses_template_parms (friend_type))
8900 /* friend class C<T>; */
8901 friend_type = tsubst (friend_type, args,
8902 tf_warning_or_error, NULL_TREE);
8903 /* Otherwise it's
8905 friend class C;
8907 where C is already declared or
8909 friend class C<int>;
8911 We don't have to do anything in these cases. */
8913 if (adjust_processing_template_decl)
8914 /* Trick make_friend_class into realizing that the friend
8915 we're adding is a template, not an ordinary class. It's
8916 important that we use make_friend_class since it will
8917 perform some error-checking and output cross-reference
8918 information. */
8919 ++processing_template_decl;
8921 if (friend_type != error_mark_node)
8922 make_friend_class (type, friend_type, /*complain=*/false);
8924 if (adjust_processing_template_decl)
8925 --processing_template_decl;
8927 else
8929 /* Build new DECL_FRIENDLIST. */
8930 tree r;
8932 /* The file and line for this declaration, to
8933 assist in error message reporting. Since we
8934 called push_tinst_level above, we don't need to
8935 restore these. */
8936 input_location = DECL_SOURCE_LOCATION (t);
8938 if (TREE_CODE (t) == TEMPLATE_DECL)
8940 ++processing_template_decl;
8941 push_deferring_access_checks (dk_no_check);
8944 r = tsubst_friend_function (t, args);
8945 add_friend (type, r, /*complain=*/false);
8946 if (TREE_CODE (t) == TEMPLATE_DECL)
8948 pop_deferring_access_checks ();
8949 --processing_template_decl;
8955 if (CLASSTYPE_LAMBDA_EXPR (type))
8957 tree decl = lambda_function (type);
8958 if (decl)
8960 tree lam = CLASSTYPE_LAMBDA_EXPR (type);
8961 LAMBDA_EXPR_THIS_CAPTURE (lam)
8962 = lookup_field_1 (type, get_identifier ("__this"), false);
8964 instantiate_decl (decl, false, false);
8965 maybe_add_lambda_conv_op (type);
8967 LAMBDA_EXPR_THIS_CAPTURE (lam) = NULL_TREE;
8969 else
8970 gcc_assert (errorcount);
8973 /* Set the file and line number information to whatever is given for
8974 the class itself. This puts error messages involving generated
8975 implicit functions at a predictable point, and the same point
8976 that would be used for non-template classes. */
8977 input_location = DECL_SOURCE_LOCATION (typedecl);
8979 unreverse_member_declarations (type);
8980 finish_struct_1 (type);
8981 TYPE_BEING_DEFINED (type) = 0;
8983 /* We don't instantiate default arguments for member functions. 14.7.1:
8985 The implicit instantiation of a class template specialization causes
8986 the implicit instantiation of the declarations, but not of the
8987 definitions or default arguments, of the class member functions,
8988 member classes, static data members and member templates.... */
8990 /* Some typedefs referenced from within the template code need to be access
8991 checked at template instantiation time, i.e now. These types were
8992 added to the template at parsing time. Let's get those and perform
8993 the access checks then. */
8994 perform_typedefs_access_check (pattern, args);
8995 perform_deferred_access_checks (tf_warning_or_error);
8996 pop_nested_class ();
8997 maximum_field_alignment = saved_maximum_field_alignment;
8998 if (!fn_context)
8999 pop_from_top_level ();
9000 pop_deferring_access_checks ();
9001 pop_tinst_level ();
9003 /* The vtable for a template class can be emitted in any translation
9004 unit in which the class is instantiated. When there is no key
9005 method, however, finish_struct_1 will already have added TYPE to
9006 the keyed_classes list. */
9007 if (TYPE_CONTAINS_VPTR_P (type) && CLASSTYPE_KEY_METHOD (type))
9008 keyed_classes = tree_cons (NULL_TREE, type, keyed_classes);
9010 return type;
9013 /* Wrapper for instantiate_class_template_1. */
9015 tree
9016 instantiate_class_template (tree type)
9018 tree ret;
9019 timevar_push (TV_TEMPLATE_INST);
9020 ret = instantiate_class_template_1 (type);
9021 timevar_pop (TV_TEMPLATE_INST);
9022 return ret;
9025 static tree
9026 tsubst_template_arg (tree t, tree args, tsubst_flags_t complain, tree in_decl)
9028 tree r;
9030 if (!t)
9031 r = t;
9032 else if (TYPE_P (t))
9033 r = tsubst (t, args, complain, in_decl);
9034 else
9036 if (!(complain & tf_warning))
9037 ++c_inhibit_evaluation_warnings;
9038 r = tsubst_expr (t, args, complain, in_decl,
9039 /*integral_constant_expression_p=*/true);
9040 if (!(complain & tf_warning))
9041 --c_inhibit_evaluation_warnings;
9042 /* Preserve the raw-reference nature of T. */
9043 if (TREE_TYPE (t) && TREE_CODE (TREE_TYPE (t)) == REFERENCE_TYPE
9044 && REFERENCE_REF_P (r))
9045 r = TREE_OPERAND (r, 0);
9047 return r;
9050 /* Given a function parameter pack TMPL_PARM and some function parameters
9051 instantiated from it at *SPEC_P, return a NONTYPE_ARGUMENT_PACK of them
9052 and set *SPEC_P to point at the next point in the list. */
9054 static tree
9055 extract_fnparm_pack (tree tmpl_parm, tree *spec_p)
9057 /* Collect all of the extra "packed" parameters into an
9058 argument pack. */
9059 tree parmvec;
9060 tree parmtypevec;
9061 tree argpack = make_node (NONTYPE_ARGUMENT_PACK);
9062 tree argtypepack = cxx_make_type (TYPE_ARGUMENT_PACK);
9063 tree spec_parm = *spec_p;
9064 int i, len;
9066 for (len = 0; spec_parm; ++len, spec_parm = TREE_CHAIN (spec_parm))
9067 if (tmpl_parm
9068 && !function_parameter_expanded_from_pack_p (spec_parm, tmpl_parm))
9069 break;
9071 /* Fill in PARMVEC and PARMTYPEVEC with all of the parameters. */
9072 parmvec = make_tree_vec (len);
9073 parmtypevec = make_tree_vec (len);
9074 spec_parm = *spec_p;
9075 for (i = 0; i < len; i++, spec_parm = DECL_CHAIN (spec_parm))
9077 TREE_VEC_ELT (parmvec, i) = spec_parm;
9078 TREE_VEC_ELT (parmtypevec, i) = TREE_TYPE (spec_parm);
9081 /* Build the argument packs. */
9082 SET_ARGUMENT_PACK_ARGS (argpack, parmvec);
9083 SET_ARGUMENT_PACK_ARGS (argtypepack, parmtypevec);
9084 TREE_TYPE (argpack) = argtypepack;
9085 *spec_p = spec_parm;
9087 return argpack;
9090 /* Give a chain SPEC_PARM of PARM_DECLs, pack them into a
9091 NONTYPE_ARGUMENT_PACK. */
9093 static tree
9094 make_fnparm_pack (tree spec_parm)
9096 return extract_fnparm_pack (NULL_TREE, &spec_parm);
9099 /* Substitute ARGS into T, which is an pack expansion
9100 (i.e. TYPE_PACK_EXPANSION or EXPR_PACK_EXPANSION). Returns a
9101 TREE_VEC with the substituted arguments, a PACK_EXPANSION_* node
9102 (if only a partial substitution could be performed) or
9103 ERROR_MARK_NODE if there was an error. */
9104 tree
9105 tsubst_pack_expansion (tree t, tree args, tsubst_flags_t complain,
9106 tree in_decl)
9108 tree pattern;
9109 tree pack, packs = NULL_TREE;
9110 bool unsubstituted_packs = false;
9111 bool real_packs = false;
9112 int missing_level = 0;
9113 int i, len = -1;
9114 tree result;
9115 struct pointer_map_t *saved_local_specializations = NULL;
9116 bool need_local_specializations = false;
9117 int levels;
9119 gcc_assert (PACK_EXPANSION_P (t));
9120 pattern = PACK_EXPANSION_PATTERN (t);
9122 /* Add in any args remembered from an earlier partial instantiation. */
9123 args = add_to_template_args (PACK_EXPANSION_EXTRA_ARGS (t), args);
9125 levels = TMPL_ARGS_DEPTH (args);
9127 /* Determine the argument packs that will instantiate the parameter
9128 packs used in the expansion expression. While we're at it,
9129 compute the number of arguments to be expanded and make sure it
9130 is consistent. */
9131 for (pack = PACK_EXPANSION_PARAMETER_PACKS (t); pack;
9132 pack = TREE_CHAIN (pack))
9134 tree parm_pack = TREE_VALUE (pack);
9135 tree arg_pack = NULL_TREE;
9136 tree orig_arg = NULL_TREE;
9137 int level = 0;
9139 if (TREE_CODE (parm_pack) == BASES)
9141 if (BASES_DIRECT (parm_pack))
9142 return calculate_direct_bases (tsubst_expr (BASES_TYPE (parm_pack),
9143 args, complain, in_decl, false));
9144 else
9145 return calculate_bases (tsubst_expr (BASES_TYPE (parm_pack),
9146 args, complain, in_decl, false));
9148 if (TREE_CODE (parm_pack) == PARM_DECL)
9150 if (PACK_EXPANSION_LOCAL_P (t))
9151 arg_pack = retrieve_local_specialization (parm_pack);
9152 else
9154 /* We can't rely on local_specializations for a parameter
9155 name used later in a function declaration (such as in a
9156 late-specified return type). Even if it exists, it might
9157 have the wrong value for a recursive call. Just make a
9158 dummy decl, since it's only used for its type. */
9159 arg_pack = tsubst_decl (parm_pack, args, complain);
9160 if (arg_pack && FUNCTION_PARAMETER_PACK_P (arg_pack))
9161 /* Partial instantiation of the parm_pack, we can't build
9162 up an argument pack yet. */
9163 arg_pack = NULL_TREE;
9164 else
9165 arg_pack = make_fnparm_pack (arg_pack);
9166 need_local_specializations = true;
9169 else
9171 int idx;
9172 template_parm_level_and_index (parm_pack, &level, &idx);
9174 if (level <= levels)
9175 arg_pack = TMPL_ARG (args, level, idx);
9178 orig_arg = arg_pack;
9179 if (arg_pack && TREE_CODE (arg_pack) == ARGUMENT_PACK_SELECT)
9180 arg_pack = ARGUMENT_PACK_SELECT_FROM_PACK (arg_pack);
9182 if (arg_pack && !ARGUMENT_PACK_P (arg_pack))
9183 /* This can only happen if we forget to expand an argument
9184 pack somewhere else. Just return an error, silently. */
9186 result = make_tree_vec (1);
9187 TREE_VEC_ELT (result, 0) = error_mark_node;
9188 return result;
9191 if (arg_from_parm_pack_p (arg_pack, parm_pack))
9192 /* The argument pack that the parameter maps to is just an
9193 expansion of the parameter itself, such as one would find
9194 in the implicit typedef of a class inside the class itself.
9195 Consider this parameter "unsubstituted", so that we will
9196 maintain the outer pack expansion. */
9197 arg_pack = NULL_TREE;
9199 if (arg_pack)
9201 int my_len =
9202 TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg_pack));
9204 /* Don't bother trying to do a partial substitution with
9205 incomplete packs; we'll try again after deduction. */
9206 if (ARGUMENT_PACK_INCOMPLETE_P (arg_pack))
9207 return t;
9209 if (len < 0)
9210 len = my_len;
9211 else if (len != my_len)
9213 if (!(complain & tf_error))
9214 /* Fail quietly. */;
9215 else if (TREE_CODE (t) == TYPE_PACK_EXPANSION)
9216 error ("mismatched argument pack lengths while expanding "
9217 "%<%T%>",
9218 pattern);
9219 else
9220 error ("mismatched argument pack lengths while expanding "
9221 "%<%E%>",
9222 pattern);
9223 return error_mark_node;
9226 if (TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg_pack)) == 1
9227 && PACK_EXPANSION_P (TREE_VEC_ELT (ARGUMENT_PACK_ARGS (arg_pack),
9228 0)))
9229 /* This isn't a real argument pack yet. */;
9230 else
9231 real_packs = true;
9233 /* Keep track of the parameter packs and their corresponding
9234 argument packs. */
9235 packs = tree_cons (parm_pack, arg_pack, packs);
9236 TREE_TYPE (packs) = orig_arg;
9238 else
9240 /* We can't substitute for this parameter pack. We use a flag as
9241 well as the missing_level counter because function parameter
9242 packs don't have a level. */
9243 unsubstituted_packs = true;
9244 if (!missing_level || missing_level > level)
9245 missing_level = level;
9249 /* We cannot expand this expansion expression, because we don't have
9250 all of the argument packs we need. */
9251 if (unsubstituted_packs)
9253 if (real_packs)
9255 /* We got some full packs, but we can't substitute them in until we
9256 have values for all the packs. So remember these until then. */
9257 tree save_args;
9259 t = make_pack_expansion (pattern);
9261 /* The call to add_to_template_args above assumes no overlap
9262 between saved args and new args, so prune away any fake
9263 args, i.e. those that satisfied arg_from_parm_pack_p above. */
9264 if (missing_level && levels >= missing_level)
9266 gcc_assert (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args)
9267 && missing_level > 1);
9268 TREE_VEC_LENGTH (args) = missing_level - 1;
9269 save_args = copy_node (args);
9270 TREE_VEC_LENGTH (args) = levels;
9272 else
9273 save_args = args;
9275 PACK_EXPANSION_EXTRA_ARGS (t) = save_args;
9277 else
9279 /* There were no real arguments, we're just replacing a parameter
9280 pack with another version of itself. Substitute into the
9281 pattern and return a PACK_EXPANSION_*. The caller will need to
9282 deal with that. */
9283 if (TREE_CODE (t) == EXPR_PACK_EXPANSION)
9284 t = tsubst_expr (pattern, args, complain, in_decl,
9285 /*integral_constant_expression_p=*/false);
9286 else
9287 t = tsubst (pattern, args, complain, in_decl);
9288 t = make_pack_expansion (t);
9290 return t;
9293 /* We could not find any argument packs that work. */
9294 if (len < 0)
9295 return error_mark_node;
9297 if (need_local_specializations)
9299 /* We're in a late-specified return type, so create our own local
9300 specializations map; the current map is either NULL or (in the
9301 case of recursive unification) might have bindings that we don't
9302 want to use or alter. */
9303 saved_local_specializations = local_specializations;
9304 local_specializations = pointer_map_create ();
9307 /* For each argument in each argument pack, substitute into the
9308 pattern. */
9309 result = make_tree_vec (len);
9310 for (i = 0; i < len; ++i)
9312 /* For parameter pack, change the substitution of the parameter
9313 pack to the ith argument in its argument pack, then expand
9314 the pattern. */
9315 for (pack = packs; pack; pack = TREE_CHAIN (pack))
9317 tree parm = TREE_PURPOSE (pack);
9318 tree arg;
9320 /* Select the Ith argument from the pack. */
9321 if (TREE_CODE (parm) == PARM_DECL)
9323 if (i == 0)
9325 arg = make_node (ARGUMENT_PACK_SELECT);
9326 ARGUMENT_PACK_SELECT_FROM_PACK (arg) = TREE_VALUE (pack);
9327 mark_used (parm);
9328 register_local_specialization (arg, parm);
9330 else
9331 arg = retrieve_local_specialization (parm);
9333 else
9335 int idx, level;
9336 template_parm_level_and_index (parm, &level, &idx);
9338 if (i == 0)
9340 arg = make_node (ARGUMENT_PACK_SELECT);
9341 ARGUMENT_PACK_SELECT_FROM_PACK (arg) = TREE_VALUE (pack);
9342 /* Update the corresponding argument. */
9343 TMPL_ARG (args, level, idx) = arg;
9345 else
9346 /* Re-use the ARGUMENT_PACK_SELECT. */
9347 arg = TMPL_ARG (args, level, idx);
9349 ARGUMENT_PACK_SELECT_INDEX (arg) = i;
9352 /* Substitute into the PATTERN with the altered arguments. */
9353 if (!TYPE_P (pattern))
9354 TREE_VEC_ELT (result, i) =
9355 tsubst_expr (pattern, args, complain, in_decl,
9356 /*integral_constant_expression_p=*/false);
9357 else
9358 TREE_VEC_ELT (result, i) = tsubst (pattern, args, complain, in_decl);
9360 if (TREE_VEC_ELT (result, i) == error_mark_node)
9362 result = error_mark_node;
9363 break;
9367 /* Update ARGS to restore the substitution from parameter packs to
9368 their argument packs. */
9369 for (pack = packs; pack; pack = TREE_CHAIN (pack))
9371 tree parm = TREE_PURPOSE (pack);
9373 if (TREE_CODE (parm) == PARM_DECL)
9374 register_local_specialization (TREE_TYPE (pack), parm);
9375 else
9377 int idx, level;
9378 template_parm_level_and_index (parm, &level, &idx);
9380 /* Update the corresponding argument. */
9381 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
9382 TREE_VEC_ELT (TREE_VEC_ELT (args, level -1 ), idx) =
9383 TREE_TYPE (pack);
9384 else
9385 TREE_VEC_ELT (args, idx) = TREE_TYPE (pack);
9389 if (need_local_specializations)
9391 pointer_map_destroy (local_specializations);
9392 local_specializations = saved_local_specializations;
9395 return result;
9398 /* Given PARM_DECL PARM, find the corresponding PARM_DECL in the template
9399 TMPL. We do this using DECL_PARM_INDEX, which should work even with
9400 parameter packs; all parms generated from a function parameter pack will
9401 have the same DECL_PARM_INDEX. */
9403 tree
9404 get_pattern_parm (tree parm, tree tmpl)
9406 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
9407 tree patparm;
9409 if (DECL_ARTIFICIAL (parm))
9411 for (patparm = DECL_ARGUMENTS (pattern);
9412 patparm; patparm = DECL_CHAIN (patparm))
9413 if (DECL_ARTIFICIAL (patparm)
9414 && DECL_NAME (parm) == DECL_NAME (patparm))
9415 break;
9417 else
9419 patparm = FUNCTION_FIRST_USER_PARM (DECL_TEMPLATE_RESULT (tmpl));
9420 patparm = chain_index (DECL_PARM_INDEX (parm)-1, patparm);
9421 gcc_assert (DECL_PARM_INDEX (patparm)
9422 == DECL_PARM_INDEX (parm));
9425 return patparm;
9428 /* Substitute ARGS into the vector or list of template arguments T. */
9430 static tree
9431 tsubst_template_args (tree t, tree args, tsubst_flags_t complain, tree in_decl)
9433 tree orig_t = t;
9434 int len, need_new = 0, i, expanded_len_adjust = 0, out;
9435 tree *elts;
9437 if (t == error_mark_node)
9438 return error_mark_node;
9440 len = TREE_VEC_LENGTH (t);
9441 elts = XALLOCAVEC (tree, len);
9443 for (i = 0; i < len; i++)
9445 tree orig_arg = TREE_VEC_ELT (t, i);
9446 tree new_arg;
9448 if (TREE_CODE (orig_arg) == TREE_VEC)
9449 new_arg = tsubst_template_args (orig_arg, args, complain, in_decl);
9450 else if (PACK_EXPANSION_P (orig_arg))
9452 /* Substitute into an expansion expression. */
9453 new_arg = tsubst_pack_expansion (orig_arg, args, complain, in_decl);
9455 if (TREE_CODE (new_arg) == TREE_VEC)
9456 /* Add to the expanded length adjustment the number of
9457 expanded arguments. We subtract one from this
9458 measurement, because the argument pack expression
9459 itself is already counted as 1 in
9460 LEN. EXPANDED_LEN_ADJUST can actually be negative, if
9461 the argument pack is empty. */
9462 expanded_len_adjust += TREE_VEC_LENGTH (new_arg) - 1;
9464 else if (ARGUMENT_PACK_P (orig_arg))
9466 /* Substitute into each of the arguments. */
9467 new_arg = TYPE_P (orig_arg)
9468 ? cxx_make_type (TREE_CODE (orig_arg))
9469 : make_node (TREE_CODE (orig_arg));
9471 SET_ARGUMENT_PACK_ARGS (
9472 new_arg,
9473 tsubst_template_args (ARGUMENT_PACK_ARGS (orig_arg),
9474 args, complain, in_decl));
9476 if (ARGUMENT_PACK_ARGS (new_arg) == error_mark_node)
9477 new_arg = error_mark_node;
9479 if (TREE_CODE (new_arg) == NONTYPE_ARGUMENT_PACK) {
9480 TREE_TYPE (new_arg) = tsubst (TREE_TYPE (orig_arg), args,
9481 complain, in_decl);
9482 TREE_CONSTANT (new_arg) = TREE_CONSTANT (orig_arg);
9484 if (TREE_TYPE (new_arg) == error_mark_node)
9485 new_arg = error_mark_node;
9488 else
9489 new_arg = tsubst_template_arg (orig_arg, args, complain, in_decl);
9491 if (new_arg == error_mark_node)
9492 return error_mark_node;
9494 elts[i] = new_arg;
9495 if (new_arg != orig_arg)
9496 need_new = 1;
9499 if (!need_new)
9500 return t;
9502 /* Make space for the expanded arguments coming from template
9503 argument packs. */
9504 t = make_tree_vec (len + expanded_len_adjust);
9505 /* ORIG_T can contain TREE_VECs. That happens if ORIG_T contains the
9506 arguments for a member template.
9507 In that case each TREE_VEC in ORIG_T represents a level of template
9508 arguments, and ORIG_T won't carry any non defaulted argument count.
9509 It will rather be the nested TREE_VECs that will carry one.
9510 In other words, ORIG_T carries a non defaulted argument count only
9511 if it doesn't contain any nested TREE_VEC. */
9512 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t))
9514 int count = GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t);
9515 count += expanded_len_adjust;
9516 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (t, count);
9518 for (i = 0, out = 0; i < len; i++)
9520 if ((PACK_EXPANSION_P (TREE_VEC_ELT (orig_t, i))
9521 || ARGUMENT_PACK_P (TREE_VEC_ELT (orig_t, i)))
9522 && TREE_CODE (elts[i]) == TREE_VEC)
9524 int idx;
9526 /* Now expand the template argument pack "in place". */
9527 for (idx = 0; idx < TREE_VEC_LENGTH (elts[i]); idx++, out++)
9528 TREE_VEC_ELT (t, out) = TREE_VEC_ELT (elts[i], idx);
9530 else
9532 TREE_VEC_ELT (t, out) = elts[i];
9533 out++;
9537 return t;
9540 /* Return the result of substituting ARGS into the template parameters
9541 given by PARMS. If there are m levels of ARGS and m + n levels of
9542 PARMS, then the result will contain n levels of PARMS. For
9543 example, if PARMS is `template <class T> template <class U>
9544 template <T*, U, class V>' and ARGS is {{int}, {double}} then the
9545 result will be `template <int*, double, class V>'. */
9547 static tree
9548 tsubst_template_parms (tree parms, tree args, tsubst_flags_t complain)
9550 tree r = NULL_TREE;
9551 tree* new_parms;
9553 /* When substituting into a template, we must set
9554 PROCESSING_TEMPLATE_DECL as the template parameters may be
9555 dependent if they are based on one-another, and the dependency
9556 predicates are short-circuit outside of templates. */
9557 ++processing_template_decl;
9559 for (new_parms = &r;
9560 TMPL_PARMS_DEPTH (parms) > TMPL_ARGS_DEPTH (args);
9561 new_parms = &(TREE_CHAIN (*new_parms)),
9562 parms = TREE_CHAIN (parms))
9564 tree new_vec =
9565 make_tree_vec (TREE_VEC_LENGTH (TREE_VALUE (parms)));
9566 int i;
9568 for (i = 0; i < TREE_VEC_LENGTH (new_vec); ++i)
9570 tree tuple;
9572 if (parms == error_mark_node)
9573 continue;
9575 tuple = TREE_VEC_ELT (TREE_VALUE (parms), i);
9577 if (tuple == error_mark_node)
9578 continue;
9580 TREE_VEC_ELT (new_vec, i) =
9581 tsubst_template_parm (tuple, args, complain);
9584 *new_parms =
9585 tree_cons (size_int (TMPL_PARMS_DEPTH (parms)
9586 - TMPL_ARGS_DEPTH (args)),
9587 new_vec, NULL_TREE);
9590 --processing_template_decl;
9592 return r;
9595 /* Return the result of substituting ARGS into one template parameter
9596 given by T. T Must be a TREE_LIST which TREE_VALUE is the template
9597 parameter and which TREE_PURPOSE is the default argument of the
9598 template parameter. */
9600 static tree
9601 tsubst_template_parm (tree t, tree args, tsubst_flags_t complain)
9603 tree default_value, parm_decl;
9605 if (args == NULL_TREE
9606 || t == NULL_TREE
9607 || t == error_mark_node)
9608 return t;
9610 gcc_assert (TREE_CODE (t) == TREE_LIST);
9612 default_value = TREE_PURPOSE (t);
9613 parm_decl = TREE_VALUE (t);
9615 parm_decl = tsubst (parm_decl, args, complain, NULL_TREE);
9616 if (TREE_CODE (parm_decl) == PARM_DECL
9617 && invalid_nontype_parm_type_p (TREE_TYPE (parm_decl), complain))
9618 parm_decl = error_mark_node;
9619 default_value = tsubst_template_arg (default_value, args,
9620 complain, NULL_TREE);
9622 return build_tree_list (default_value, parm_decl);
9625 /* Substitute the ARGS into the indicated aggregate (or enumeration)
9626 type T. If T is not an aggregate or enumeration type, it is
9627 handled as if by tsubst. IN_DECL is as for tsubst. If
9628 ENTERING_SCOPE is nonzero, T is the context for a template which
9629 we are presently tsubst'ing. Return the substituted value. */
9631 static tree
9632 tsubst_aggr_type (tree t,
9633 tree args,
9634 tsubst_flags_t complain,
9635 tree in_decl,
9636 int entering_scope)
9638 if (t == NULL_TREE)
9639 return NULL_TREE;
9641 switch (TREE_CODE (t))
9643 case RECORD_TYPE:
9644 if (TYPE_PTRMEMFUNC_P (t))
9645 return tsubst (TYPE_PTRMEMFUNC_FN_TYPE (t), args, complain, in_decl);
9647 /* Else fall through. */
9648 case ENUMERAL_TYPE:
9649 case UNION_TYPE:
9650 if (TYPE_TEMPLATE_INFO (t) && uses_template_parms (t))
9652 tree argvec;
9653 tree context;
9654 tree r;
9655 int saved_unevaluated_operand;
9656 int saved_inhibit_evaluation_warnings;
9658 /* In "sizeof(X<I>)" we need to evaluate "I". */
9659 saved_unevaluated_operand = cp_unevaluated_operand;
9660 cp_unevaluated_operand = 0;
9661 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
9662 c_inhibit_evaluation_warnings = 0;
9664 /* First, determine the context for the type we are looking
9665 up. */
9666 context = TYPE_CONTEXT (t);
9667 if (context && TYPE_P (context))
9669 context = tsubst_aggr_type (context, args, complain,
9670 in_decl, /*entering_scope=*/1);
9671 /* If context is a nested class inside a class template,
9672 it may still need to be instantiated (c++/33959). */
9673 context = complete_type (context);
9676 /* Then, figure out what arguments are appropriate for the
9677 type we are trying to find. For example, given:
9679 template <class T> struct S;
9680 template <class T, class U> void f(T, U) { S<U> su; }
9682 and supposing that we are instantiating f<int, double>,
9683 then our ARGS will be {int, double}, but, when looking up
9684 S we only want {double}. */
9685 argvec = tsubst_template_args (TYPE_TI_ARGS (t), args,
9686 complain, in_decl);
9687 if (argvec == error_mark_node)
9688 r = error_mark_node;
9689 else
9691 r = lookup_template_class (t, argvec, in_decl, context,
9692 entering_scope, complain);
9693 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
9696 cp_unevaluated_operand = saved_unevaluated_operand;
9697 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
9699 return r;
9701 else
9702 /* This is not a template type, so there's nothing to do. */
9703 return t;
9705 default:
9706 return tsubst (t, args, complain, in_decl);
9710 /* Substitute into the default argument ARG (a default argument for
9711 FN), which has the indicated TYPE. */
9713 tree
9714 tsubst_default_argument (tree fn, tree type, tree arg)
9716 tree saved_class_ptr = NULL_TREE;
9717 tree saved_class_ref = NULL_TREE;
9718 int errs = errorcount + sorrycount;
9720 /* This can happen in invalid code. */
9721 if (TREE_CODE (arg) == DEFAULT_ARG)
9722 return arg;
9724 /* This default argument came from a template. Instantiate the
9725 default argument here, not in tsubst. In the case of
9726 something like:
9728 template <class T>
9729 struct S {
9730 static T t();
9731 void f(T = t());
9734 we must be careful to do name lookup in the scope of S<T>,
9735 rather than in the current class. */
9736 push_access_scope (fn);
9737 /* The "this" pointer is not valid in a default argument. */
9738 if (cfun)
9740 saved_class_ptr = current_class_ptr;
9741 cp_function_chain->x_current_class_ptr = NULL_TREE;
9742 saved_class_ref = current_class_ref;
9743 cp_function_chain->x_current_class_ref = NULL_TREE;
9746 push_deferring_access_checks(dk_no_deferred);
9747 /* The default argument expression may cause implicitly defined
9748 member functions to be synthesized, which will result in garbage
9749 collection. We must treat this situation as if we were within
9750 the body of function so as to avoid collecting live data on the
9751 stack. */
9752 ++function_depth;
9753 arg = tsubst_expr (arg, DECL_TI_ARGS (fn),
9754 tf_warning_or_error, NULL_TREE,
9755 /*integral_constant_expression_p=*/false);
9756 --function_depth;
9757 pop_deferring_access_checks();
9759 /* Restore the "this" pointer. */
9760 if (cfun)
9762 cp_function_chain->x_current_class_ptr = saved_class_ptr;
9763 cp_function_chain->x_current_class_ref = saved_class_ref;
9766 if (errorcount+sorrycount > errs)
9767 inform (input_location,
9768 " when instantiating default argument for call to %D", fn);
9770 /* Make sure the default argument is reasonable. */
9771 arg = check_default_argument (type, arg);
9773 pop_access_scope (fn);
9775 return arg;
9778 /* Substitute into all the default arguments for FN. */
9780 static void
9781 tsubst_default_arguments (tree fn)
9783 tree arg;
9784 tree tmpl_args;
9786 tmpl_args = DECL_TI_ARGS (fn);
9788 /* If this function is not yet instantiated, we certainly don't need
9789 its default arguments. */
9790 if (uses_template_parms (tmpl_args))
9791 return;
9792 /* Don't do this again for clones. */
9793 if (DECL_CLONED_FUNCTION_P (fn))
9794 return;
9796 for (arg = TYPE_ARG_TYPES (TREE_TYPE (fn));
9797 arg;
9798 arg = TREE_CHAIN (arg))
9799 if (TREE_PURPOSE (arg))
9800 TREE_PURPOSE (arg) = tsubst_default_argument (fn,
9801 TREE_VALUE (arg),
9802 TREE_PURPOSE (arg));
9805 /* Substitute the ARGS into the T, which is a _DECL. Return the
9806 result of the substitution. Issue error and warning messages under
9807 control of COMPLAIN. */
9809 static tree
9810 tsubst_decl (tree t, tree args, tsubst_flags_t complain)
9812 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
9813 location_t saved_loc;
9814 tree r = NULL_TREE;
9815 tree in_decl = t;
9816 hashval_t hash = 0;
9818 /* Set the filename and linenumber to improve error-reporting. */
9819 saved_loc = input_location;
9820 input_location = DECL_SOURCE_LOCATION (t);
9822 switch (TREE_CODE (t))
9824 case TEMPLATE_DECL:
9826 /* We can get here when processing a member function template,
9827 member class template, or template template parameter. */
9828 tree decl = DECL_TEMPLATE_RESULT (t);
9829 tree spec;
9830 tree tmpl_args;
9831 tree full_args;
9833 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
9835 /* Template template parameter is treated here. */
9836 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
9837 if (new_type == error_mark_node)
9838 RETURN (error_mark_node);
9840 r = copy_decl (t);
9841 DECL_CHAIN (r) = NULL_TREE;
9842 TREE_TYPE (r) = new_type;
9843 DECL_TEMPLATE_RESULT (r)
9844 = build_decl (DECL_SOURCE_LOCATION (decl),
9845 TYPE_DECL, DECL_NAME (decl), new_type);
9846 DECL_TEMPLATE_PARMS (r)
9847 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
9848 complain);
9849 TYPE_NAME (new_type) = r;
9850 break;
9853 /* We might already have an instance of this template.
9854 The ARGS are for the surrounding class type, so the
9855 full args contain the tsubst'd args for the context,
9856 plus the innermost args from the template decl. */
9857 tmpl_args = DECL_CLASS_TEMPLATE_P (t)
9858 ? CLASSTYPE_TI_ARGS (TREE_TYPE (t))
9859 : DECL_TI_ARGS (DECL_TEMPLATE_RESULT (t));
9860 /* Because this is a template, the arguments will still be
9861 dependent, even after substitution. If
9862 PROCESSING_TEMPLATE_DECL is not set, the dependency
9863 predicates will short-circuit. */
9864 ++processing_template_decl;
9865 full_args = tsubst_template_args (tmpl_args, args,
9866 complain, in_decl);
9867 --processing_template_decl;
9868 if (full_args == error_mark_node)
9869 RETURN (error_mark_node);
9871 /* If this is a default template template argument,
9872 tsubst might not have changed anything. */
9873 if (full_args == tmpl_args)
9874 RETURN (t);
9876 hash = hash_tmpl_and_args (t, full_args);
9877 spec = retrieve_specialization (t, full_args, hash);
9878 if (spec != NULL_TREE)
9880 r = spec;
9881 break;
9884 /* Make a new template decl. It will be similar to the
9885 original, but will record the current template arguments.
9886 We also create a new function declaration, which is just
9887 like the old one, but points to this new template, rather
9888 than the old one. */
9889 r = copy_decl (t);
9890 gcc_assert (DECL_LANG_SPECIFIC (r) != 0);
9891 DECL_CHAIN (r) = NULL_TREE;
9893 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
9895 if (TREE_CODE (decl) == TYPE_DECL
9896 && !TYPE_DECL_ALIAS_P (decl))
9898 tree new_type;
9899 ++processing_template_decl;
9900 new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
9901 --processing_template_decl;
9902 if (new_type == error_mark_node)
9903 RETURN (error_mark_node);
9905 TREE_TYPE (r) = new_type;
9906 CLASSTYPE_TI_TEMPLATE (new_type) = r;
9907 DECL_TEMPLATE_RESULT (r) = TYPE_MAIN_DECL (new_type);
9908 DECL_TI_ARGS (r) = CLASSTYPE_TI_ARGS (new_type);
9909 DECL_CONTEXT (r) = TYPE_CONTEXT (new_type);
9911 else
9913 tree new_decl;
9914 ++processing_template_decl;
9915 new_decl = tsubst (decl, args, complain, in_decl);
9916 --processing_template_decl;
9917 if (new_decl == error_mark_node)
9918 RETURN (error_mark_node);
9920 DECL_TEMPLATE_RESULT (r) = new_decl;
9921 DECL_TI_TEMPLATE (new_decl) = r;
9922 TREE_TYPE (r) = TREE_TYPE (new_decl);
9923 DECL_TI_ARGS (r) = DECL_TI_ARGS (new_decl);
9924 DECL_CONTEXT (r) = DECL_CONTEXT (new_decl);
9927 SET_DECL_IMPLICIT_INSTANTIATION (r);
9928 DECL_TEMPLATE_INSTANTIATIONS (r) = NULL_TREE;
9929 DECL_TEMPLATE_SPECIALIZATIONS (r) = NULL_TREE;
9931 /* The template parameters for this new template are all the
9932 template parameters for the old template, except the
9933 outermost level of parameters. */
9934 DECL_TEMPLATE_PARMS (r)
9935 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
9936 complain);
9938 if (PRIMARY_TEMPLATE_P (t))
9939 DECL_PRIMARY_TEMPLATE (r) = r;
9941 if (TREE_CODE (decl) != TYPE_DECL)
9942 /* Record this non-type partial instantiation. */
9943 register_specialization (r, t,
9944 DECL_TI_ARGS (DECL_TEMPLATE_RESULT (r)),
9945 false, hash);
9947 break;
9949 case FUNCTION_DECL:
9951 tree ctx;
9952 tree argvec = NULL_TREE;
9953 tree *friends;
9954 tree gen_tmpl;
9955 tree type;
9956 int member;
9957 int args_depth;
9958 int parms_depth;
9960 /* Nobody should be tsubst'ing into non-template functions. */
9961 gcc_assert (DECL_TEMPLATE_INFO (t) != NULL_TREE);
9963 if (TREE_CODE (DECL_TI_TEMPLATE (t)) == TEMPLATE_DECL)
9965 tree spec;
9966 bool dependent_p;
9968 /* If T is not dependent, just return it. We have to
9969 increment PROCESSING_TEMPLATE_DECL because
9970 value_dependent_expression_p assumes that nothing is
9971 dependent when PROCESSING_TEMPLATE_DECL is zero. */
9972 ++processing_template_decl;
9973 dependent_p = value_dependent_expression_p (t);
9974 --processing_template_decl;
9975 if (!dependent_p)
9976 RETURN (t);
9978 /* Calculate the most general template of which R is a
9979 specialization, and the complete set of arguments used to
9980 specialize R. */
9981 gen_tmpl = most_general_template (DECL_TI_TEMPLATE (t));
9982 argvec = tsubst_template_args (DECL_TI_ARGS
9983 (DECL_TEMPLATE_RESULT
9984 (DECL_TI_TEMPLATE (t))),
9985 args, complain, in_decl);
9986 if (argvec == error_mark_node)
9987 RETURN (error_mark_node);
9989 /* Check to see if we already have this specialization. */
9990 hash = hash_tmpl_and_args (gen_tmpl, argvec);
9991 spec = retrieve_specialization (gen_tmpl, argvec, hash);
9993 if (spec)
9995 r = spec;
9996 break;
9999 /* We can see more levels of arguments than parameters if
10000 there was a specialization of a member template, like
10001 this:
10003 template <class T> struct S { template <class U> void f(); }
10004 template <> template <class U> void S<int>::f(U);
10006 Here, we'll be substituting into the specialization,
10007 because that's where we can find the code we actually
10008 want to generate, but we'll have enough arguments for
10009 the most general template.
10011 We also deal with the peculiar case:
10013 template <class T> struct S {
10014 template <class U> friend void f();
10016 template <class U> void f() {}
10017 template S<int>;
10018 template void f<double>();
10020 Here, the ARGS for the instantiation of will be {int,
10021 double}. But, we only need as many ARGS as there are
10022 levels of template parameters in CODE_PATTERN. We are
10023 careful not to get fooled into reducing the ARGS in
10024 situations like:
10026 template <class T> struct S { template <class U> void f(U); }
10027 template <class T> template <> void S<T>::f(int) {}
10029 which we can spot because the pattern will be a
10030 specialization in this case. */
10031 args_depth = TMPL_ARGS_DEPTH (args);
10032 parms_depth =
10033 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (t)));
10034 if (args_depth > parms_depth
10035 && !DECL_TEMPLATE_SPECIALIZATION (t))
10036 args = get_innermost_template_args (args, parms_depth);
10038 else
10040 /* This special case arises when we have something like this:
10042 template <class T> struct S {
10043 friend void f<int>(int, double);
10046 Here, the DECL_TI_TEMPLATE for the friend declaration
10047 will be an IDENTIFIER_NODE. We are being called from
10048 tsubst_friend_function, and we want only to create a
10049 new decl (R) with appropriate types so that we can call
10050 determine_specialization. */
10051 gen_tmpl = NULL_TREE;
10054 if (DECL_CLASS_SCOPE_P (t))
10056 if (DECL_NAME (t) == constructor_name (DECL_CONTEXT (t)))
10057 member = 2;
10058 else
10059 member = 1;
10060 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args,
10061 complain, t, /*entering_scope=*/1);
10063 else
10065 member = 0;
10066 ctx = DECL_CONTEXT (t);
10068 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10069 if (type == error_mark_node)
10070 RETURN (error_mark_node);
10072 /* If we hit excessive deduction depth, the type is bogus even if
10073 it isn't error_mark_node, so don't build a decl. */
10074 if (excessive_deduction_depth)
10075 RETURN (error_mark_node);
10077 /* We do NOT check for matching decls pushed separately at this
10078 point, as they may not represent instantiations of this
10079 template, and in any case are considered separate under the
10080 discrete model. */
10081 r = copy_decl (t);
10082 DECL_USE_TEMPLATE (r) = 0;
10083 TREE_TYPE (r) = type;
10084 /* Clear out the mangled name and RTL for the instantiation. */
10085 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
10086 SET_DECL_RTL (r, NULL);
10087 /* Leave DECL_INITIAL set on deleted instantiations. */
10088 if (!DECL_DELETED_FN (r))
10089 DECL_INITIAL (r) = NULL_TREE;
10090 DECL_CONTEXT (r) = ctx;
10092 if (member && DECL_CONV_FN_P (r))
10093 /* Type-conversion operator. Reconstruct the name, in
10094 case it's the name of one of the template's parameters. */
10095 DECL_NAME (r) = mangle_conv_op_name_for_type (TREE_TYPE (type));
10097 DECL_ARGUMENTS (r) = tsubst (DECL_ARGUMENTS (t), args,
10098 complain, t);
10099 DECL_RESULT (r) = NULL_TREE;
10101 TREE_STATIC (r) = 0;
10102 TREE_PUBLIC (r) = TREE_PUBLIC (t);
10103 DECL_EXTERNAL (r) = 1;
10104 /* If this is an instantiation of a function with internal
10105 linkage, we already know what object file linkage will be
10106 assigned to the instantiation. */
10107 DECL_INTERFACE_KNOWN (r) = !TREE_PUBLIC (r);
10108 DECL_DEFER_OUTPUT (r) = 0;
10109 DECL_CHAIN (r) = NULL_TREE;
10110 DECL_PENDING_INLINE_INFO (r) = 0;
10111 DECL_PENDING_INLINE_P (r) = 0;
10112 DECL_SAVED_TREE (r) = NULL_TREE;
10113 DECL_STRUCT_FUNCTION (r) = NULL;
10114 TREE_USED (r) = 0;
10115 /* We'll re-clone as appropriate in instantiate_template. */
10116 DECL_CLONED_FUNCTION (r) = NULL_TREE;
10118 /* If we aren't complaining now, return on error before we register
10119 the specialization so that we'll complain eventually. */
10120 if ((complain & tf_error) == 0
10121 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
10122 && !grok_op_properties (r, /*complain=*/false))
10123 RETURN (error_mark_node);
10125 /* Set up the DECL_TEMPLATE_INFO for R. There's no need to do
10126 this in the special friend case mentioned above where
10127 GEN_TMPL is NULL. */
10128 if (gen_tmpl)
10130 DECL_TEMPLATE_INFO (r)
10131 = build_template_info (gen_tmpl, argvec);
10132 SET_DECL_IMPLICIT_INSTANTIATION (r);
10133 register_specialization (r, gen_tmpl, argvec, false, hash);
10135 /* We're not supposed to instantiate default arguments
10136 until they are called, for a template. But, for a
10137 declaration like:
10139 template <class T> void f ()
10140 { extern void g(int i = T()); }
10142 we should do the substitution when the template is
10143 instantiated. We handle the member function case in
10144 instantiate_class_template since the default arguments
10145 might refer to other members of the class. */
10146 if (!member
10147 && !PRIMARY_TEMPLATE_P (gen_tmpl)
10148 && !uses_template_parms (argvec))
10149 tsubst_default_arguments (r);
10151 else
10152 DECL_TEMPLATE_INFO (r) = NULL_TREE;
10154 /* Copy the list of befriending classes. */
10155 for (friends = &DECL_BEFRIENDING_CLASSES (r);
10156 *friends;
10157 friends = &TREE_CHAIN (*friends))
10159 *friends = copy_node (*friends);
10160 TREE_VALUE (*friends) = tsubst (TREE_VALUE (*friends),
10161 args, complain,
10162 in_decl);
10165 if (DECL_CONSTRUCTOR_P (r) || DECL_DESTRUCTOR_P (r))
10167 maybe_retrofit_in_chrg (r);
10168 if (DECL_CONSTRUCTOR_P (r))
10169 grok_ctor_properties (ctx, r);
10170 if (DECL_INHERITED_CTOR_BASE (r))
10171 deduce_inheriting_ctor (r);
10172 /* If this is an instantiation of a member template, clone it.
10173 If it isn't, that'll be handled by
10174 clone_constructors_and_destructors. */
10175 if (PRIMARY_TEMPLATE_P (gen_tmpl))
10176 clone_function_decl (r, /*update_method_vec_p=*/0);
10178 else if ((complain & tf_error) != 0
10179 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
10180 && !grok_op_properties (r, /*complain=*/true))
10181 RETURN (error_mark_node);
10183 if (DECL_FRIEND_P (t) && DECL_FRIEND_CONTEXT (t))
10184 SET_DECL_FRIEND_CONTEXT (r,
10185 tsubst (DECL_FRIEND_CONTEXT (t),
10186 args, complain, in_decl));
10188 /* Possibly limit visibility based on template args. */
10189 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
10190 if (DECL_VISIBILITY_SPECIFIED (t))
10192 DECL_VISIBILITY_SPECIFIED (r) = 0;
10193 DECL_ATTRIBUTES (r)
10194 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
10196 determine_visibility (r);
10197 if (DECL_DEFAULTED_OUTSIDE_CLASS_P (r)
10198 && !processing_template_decl)
10199 defaulted_late_check (r);
10201 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
10202 args, complain, in_decl);
10204 break;
10206 case PARM_DECL:
10208 tree type = NULL_TREE;
10209 int i, len = 1;
10210 tree expanded_types = NULL_TREE;
10211 tree prev_r = NULL_TREE;
10212 tree first_r = NULL_TREE;
10214 if (FUNCTION_PARAMETER_PACK_P (t))
10216 /* If there is a local specialization that isn't a
10217 parameter pack, it means that we're doing a "simple"
10218 substitution from inside tsubst_pack_expansion. Just
10219 return the local specialization (which will be a single
10220 parm). */
10221 tree spec = retrieve_local_specialization (t);
10222 if (spec
10223 && TREE_CODE (spec) == PARM_DECL
10224 && TREE_CODE (TREE_TYPE (spec)) != TYPE_PACK_EXPANSION)
10225 RETURN (spec);
10227 /* Expand the TYPE_PACK_EXPANSION that provides the types for
10228 the parameters in this function parameter pack. */
10229 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
10230 complain, in_decl);
10231 if (TREE_CODE (expanded_types) == TREE_VEC)
10233 len = TREE_VEC_LENGTH (expanded_types);
10235 /* Zero-length parameter packs are boring. Just substitute
10236 into the chain. */
10237 if (len == 0)
10238 RETURN (tsubst (TREE_CHAIN (t), args, complain,
10239 TREE_CHAIN (t)));
10241 else
10243 /* All we did was update the type. Make a note of that. */
10244 type = expanded_types;
10245 expanded_types = NULL_TREE;
10249 /* Loop through all of the parameter's we'll build. When T is
10250 a function parameter pack, LEN is the number of expanded
10251 types in EXPANDED_TYPES; otherwise, LEN is 1. */
10252 r = NULL_TREE;
10253 for (i = 0; i < len; ++i)
10255 prev_r = r;
10256 r = copy_node (t);
10257 if (DECL_TEMPLATE_PARM_P (t))
10258 SET_DECL_TEMPLATE_PARM_P (r);
10260 if (expanded_types)
10261 /* We're on the Ith parameter of the function parameter
10262 pack. */
10264 /* An argument of a function parameter pack is not a parameter
10265 pack. */
10266 FUNCTION_PARAMETER_PACK_P (r) = false;
10268 /* Get the Ith type. */
10269 type = TREE_VEC_ELT (expanded_types, i);
10271 if (DECL_NAME (r))
10272 /* Rename the parameter to include the index. */
10273 DECL_NAME (r) =
10274 make_ith_pack_parameter_name (DECL_NAME (r), i);
10276 else if (!type)
10277 /* We're dealing with a normal parameter. */
10278 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10280 type = type_decays_to (type);
10281 TREE_TYPE (r) = type;
10282 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
10284 if (DECL_INITIAL (r))
10286 if (TREE_CODE (DECL_INITIAL (r)) != TEMPLATE_PARM_INDEX)
10287 DECL_INITIAL (r) = TREE_TYPE (r);
10288 else
10289 DECL_INITIAL (r) = tsubst (DECL_INITIAL (r), args,
10290 complain, in_decl);
10293 DECL_CONTEXT (r) = NULL_TREE;
10295 if (!DECL_TEMPLATE_PARM_P (r))
10296 DECL_ARG_TYPE (r) = type_passed_as (type);
10298 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
10299 args, complain, in_decl);
10301 /* Keep track of the first new parameter we
10302 generate. That's what will be returned to the
10303 caller. */
10304 if (!first_r)
10305 first_r = r;
10307 /* Build a proper chain of parameters when substituting
10308 into a function parameter pack. */
10309 if (prev_r)
10310 DECL_CHAIN (prev_r) = r;
10313 /* If cp_unevaluated_operand is set, we're just looking for a
10314 single dummy parameter, so don't keep going. */
10315 if (DECL_CHAIN (t) && !cp_unevaluated_operand)
10316 DECL_CHAIN (r) = tsubst (DECL_CHAIN (t), args,
10317 complain, DECL_CHAIN (t));
10319 /* FIRST_R contains the start of the chain we've built. */
10320 r = first_r;
10322 break;
10324 case FIELD_DECL:
10326 tree type;
10328 r = copy_decl (t);
10329 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10330 if (type == error_mark_node)
10331 RETURN (error_mark_node);
10332 TREE_TYPE (r) = type;
10333 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
10335 if (DECL_C_BIT_FIELD (r))
10336 /* For bit-fields, DECL_INITIAL gives the number of bits. For
10337 non-bit-fields DECL_INITIAL is a non-static data member
10338 initializer, which gets deferred instantiation. */
10339 DECL_INITIAL (r)
10340 = tsubst_expr (DECL_INITIAL (t), args,
10341 complain, in_decl,
10342 /*integral_constant_expression_p=*/true);
10343 else if (DECL_INITIAL (t))
10345 /* Set up DECL_TEMPLATE_INFO so that we can get at the
10346 NSDMI in perform_member_init. Still set DECL_INITIAL
10347 so that we know there is one. */
10348 DECL_INITIAL (r) = void_zero_node;
10349 gcc_assert (DECL_LANG_SPECIFIC (r) == NULL);
10350 retrofit_lang_decl (r);
10351 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
10353 /* We don't have to set DECL_CONTEXT here; it is set by
10354 finish_member_declaration. */
10355 DECL_CHAIN (r) = NULL_TREE;
10356 if (VOID_TYPE_P (type))
10357 error ("instantiation of %q+D as type %qT", r, type);
10359 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
10360 args, complain, in_decl);
10362 break;
10364 case USING_DECL:
10365 /* We reach here only for member using decls. We also need to check
10366 uses_template_parms because DECL_DEPENDENT_P is not set for a
10367 using-declaration that designates a member of the current
10368 instantiation (c++/53549). */
10369 if (DECL_DEPENDENT_P (t)
10370 || uses_template_parms (USING_DECL_SCOPE (t)))
10372 tree scope = USING_DECL_SCOPE (t);
10373 tree inst_scope = tsubst_copy (USING_DECL_SCOPE (t), args,
10374 complain, in_decl);
10375 tree name = tsubst_copy (DECL_NAME (t), args, complain, in_decl);
10376 if (TREE_CODE (scope) == TEMPLATE_TYPE_PARM
10377 && name == TYPE_IDENTIFIER (scope))
10378 name = TYPE_IDENTIFIER (inst_scope);
10379 r = do_class_using_decl (inst_scope, name);
10380 if (!r)
10381 r = error_mark_node;
10382 else
10384 TREE_PROTECTED (r) = TREE_PROTECTED (t);
10385 TREE_PRIVATE (r) = TREE_PRIVATE (t);
10388 else
10390 r = copy_node (t);
10391 DECL_CHAIN (r) = NULL_TREE;
10393 break;
10395 case TYPE_DECL:
10396 case VAR_DECL:
10398 tree argvec = NULL_TREE;
10399 tree gen_tmpl = NULL_TREE;
10400 tree spec;
10401 tree tmpl = NULL_TREE;
10402 tree ctx;
10403 tree type = NULL_TREE;
10404 bool local_p;
10406 if (TREE_CODE (t) == TYPE_DECL
10407 && t == TYPE_MAIN_DECL (TREE_TYPE (t)))
10409 /* If this is the canonical decl, we don't have to
10410 mess with instantiations, and often we can't (for
10411 typename, template type parms and such). Note that
10412 TYPE_NAME is not correct for the above test if
10413 we've copied the type for a typedef. */
10414 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10415 if (type == error_mark_node)
10416 RETURN (error_mark_node);
10417 r = TYPE_NAME (type);
10418 break;
10421 /* Check to see if we already have the specialization we
10422 need. */
10423 spec = NULL_TREE;
10424 if (DECL_CLASS_SCOPE_P (t) || DECL_NAMESPACE_SCOPE_P (t))
10426 /* T is a static data member or namespace-scope entity.
10427 We have to substitute into namespace-scope variables
10428 (even though such entities are never templates) because
10429 of cases like:
10431 template <class T> void f() { extern T t; }
10433 where the entity referenced is not known until
10434 instantiation time. */
10435 local_p = false;
10436 ctx = DECL_CONTEXT (t);
10437 if (DECL_CLASS_SCOPE_P (t))
10439 ctx = tsubst_aggr_type (ctx, args,
10440 complain,
10441 in_decl, /*entering_scope=*/1);
10442 /* If CTX is unchanged, then T is in fact the
10443 specialization we want. That situation occurs when
10444 referencing a static data member within in its own
10445 class. We can use pointer equality, rather than
10446 same_type_p, because DECL_CONTEXT is always
10447 canonical... */
10448 if (ctx == DECL_CONTEXT (t)
10449 && (TREE_CODE (t) != TYPE_DECL
10450 /* ... unless T is a member template; in which
10451 case our caller can be willing to create a
10452 specialization of that template represented
10453 by T. */
10454 || !(DECL_TI_TEMPLATE (t)
10455 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (t)))))
10456 spec = t;
10459 if (!spec)
10461 tmpl = DECL_TI_TEMPLATE (t);
10462 gen_tmpl = most_general_template (tmpl);
10463 argvec = tsubst (DECL_TI_ARGS (t), args, complain, in_decl);
10464 if (argvec == error_mark_node)
10465 RETURN (error_mark_node);
10466 hash = hash_tmpl_and_args (gen_tmpl, argvec);
10467 spec = retrieve_specialization (gen_tmpl, argvec, hash);
10470 else
10472 /* A local variable. */
10473 local_p = true;
10474 /* Subsequent calls to pushdecl will fill this in. */
10475 ctx = NULL_TREE;
10476 spec = retrieve_local_specialization (t);
10478 /* If we already have the specialization we need, there is
10479 nothing more to do. */
10480 if (spec)
10482 r = spec;
10483 break;
10486 if (TREE_CODE (t) == VAR_DECL && DECL_ANON_UNION_VAR_P (t))
10488 /* Just use name lookup to find a member alias for an anonymous
10489 union, but then add it to the hash table. */
10490 r = lookup_name (DECL_NAME (t));
10491 gcc_assert (DECL_ANON_UNION_VAR_P (r));
10492 register_local_specialization (r, t);
10493 break;
10496 /* Create a new node for the specialization we need. */
10497 r = copy_decl (t);
10498 if (type == NULL_TREE)
10500 if (is_typedef_decl (t))
10501 type = DECL_ORIGINAL_TYPE (t);
10502 else
10503 type = TREE_TYPE (t);
10504 if (TREE_CODE (t) == VAR_DECL
10505 && VAR_HAD_UNKNOWN_BOUND (t)
10506 && type != error_mark_node)
10507 type = strip_array_domain (type);
10508 type = tsubst (type, args, complain, in_decl);
10510 if (TREE_CODE (r) == VAR_DECL)
10512 /* Even if the original location is out of scope, the
10513 newly substituted one is not. */
10514 DECL_DEAD_FOR_LOCAL (r) = 0;
10515 DECL_INITIALIZED_P (r) = 0;
10516 DECL_TEMPLATE_INSTANTIATED (r) = 0;
10517 if (type == error_mark_node)
10518 RETURN (error_mark_node);
10519 if (TREE_CODE (type) == FUNCTION_TYPE)
10521 /* It may seem that this case cannot occur, since:
10523 typedef void f();
10524 void g() { f x; }
10526 declares a function, not a variable. However:
10528 typedef void f();
10529 template <typename T> void g() { T t; }
10530 template void g<f>();
10532 is an attempt to declare a variable with function
10533 type. */
10534 error ("variable %qD has function type",
10535 /* R is not yet sufficiently initialized, so we
10536 just use its name. */
10537 DECL_NAME (r));
10538 RETURN (error_mark_node);
10540 type = complete_type (type);
10541 /* Wait until cp_finish_decl to set this again, to handle
10542 circular dependency (template/instantiate6.C). */
10543 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r) = 0;
10544 type = check_var_type (DECL_NAME (r), type);
10546 if (DECL_HAS_VALUE_EXPR_P (t))
10548 tree ve = DECL_VALUE_EXPR (t);
10549 ve = tsubst_expr (ve, args, complain, in_decl,
10550 /*constant_expression_p=*/false);
10551 if (REFERENCE_REF_P (ve))
10553 gcc_assert (TREE_CODE (type) == REFERENCE_TYPE);
10554 ve = TREE_OPERAND (ve, 0);
10556 SET_DECL_VALUE_EXPR (r, ve);
10559 else if (DECL_SELF_REFERENCE_P (t))
10560 SET_DECL_SELF_REFERENCE_P (r);
10561 TREE_TYPE (r) = type;
10562 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
10563 DECL_CONTEXT (r) = ctx;
10564 /* Clear out the mangled name and RTL for the instantiation. */
10565 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
10566 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
10567 SET_DECL_RTL (r, NULL);
10568 /* The initializer must not be expanded until it is required;
10569 see [temp.inst]. */
10570 DECL_INITIAL (r) = NULL_TREE;
10571 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
10572 SET_DECL_RTL (r, NULL);
10573 DECL_SIZE (r) = DECL_SIZE_UNIT (r) = 0;
10574 if (TREE_CODE (r) == VAR_DECL)
10576 /* Possibly limit visibility based on template args. */
10577 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
10578 if (DECL_VISIBILITY_SPECIFIED (t))
10580 DECL_VISIBILITY_SPECIFIED (r) = 0;
10581 DECL_ATTRIBUTES (r)
10582 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
10584 determine_visibility (r);
10587 if (!local_p)
10589 /* A static data member declaration is always marked
10590 external when it is declared in-class, even if an
10591 initializer is present. We mimic the non-template
10592 processing here. */
10593 DECL_EXTERNAL (r) = 1;
10595 register_specialization (r, gen_tmpl, argvec, false, hash);
10596 DECL_TEMPLATE_INFO (r) = build_template_info (tmpl, argvec);
10597 SET_DECL_IMPLICIT_INSTANTIATION (r);
10599 else if (cp_unevaluated_operand)
10601 /* We're substituting this var in a decltype outside of its
10602 scope, such as for a lambda return type. Don't add it to
10603 local_specializations, do perform auto deduction. */
10604 tree auto_node = type_uses_auto (type);
10605 if (auto_node)
10607 tree init
10608 = tsubst_expr (DECL_INITIAL (t), args, complain, in_decl,
10609 /*constant_expression_p=*/false);
10610 init = resolve_nondeduced_context (init);
10611 TREE_TYPE (r) = type
10612 = do_auto_deduction (type, init, auto_node);
10615 else
10616 register_local_specialization (r, t);
10618 DECL_CHAIN (r) = NULL_TREE;
10620 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r),
10621 /*flags=*/0,
10622 args, complain, in_decl);
10624 /* Preserve a typedef that names a type. */
10625 if (is_typedef_decl (r))
10627 DECL_ORIGINAL_TYPE (r) = NULL_TREE;
10628 set_underlying_type (r);
10631 layout_decl (r, 0);
10633 break;
10635 default:
10636 gcc_unreachable ();
10638 #undef RETURN
10640 out:
10641 /* Restore the file and line information. */
10642 input_location = saved_loc;
10644 return r;
10647 /* Substitute into the ARG_TYPES of a function type.
10648 If END is a TREE_CHAIN, leave it and any following types
10649 un-substituted. */
10651 static tree
10652 tsubst_arg_types (tree arg_types,
10653 tree args,
10654 tree end,
10655 tsubst_flags_t complain,
10656 tree in_decl)
10658 tree remaining_arg_types;
10659 tree type = NULL_TREE;
10660 int i = 1;
10661 tree expanded_args = NULL_TREE;
10662 tree default_arg;
10664 if (!arg_types || arg_types == void_list_node || arg_types == end)
10665 return arg_types;
10667 remaining_arg_types = tsubst_arg_types (TREE_CHAIN (arg_types),
10668 args, end, complain, in_decl);
10669 if (remaining_arg_types == error_mark_node)
10670 return error_mark_node;
10672 if (PACK_EXPANSION_P (TREE_VALUE (arg_types)))
10674 /* For a pack expansion, perform substitution on the
10675 entire expression. Later on, we'll handle the arguments
10676 one-by-one. */
10677 expanded_args = tsubst_pack_expansion (TREE_VALUE (arg_types),
10678 args, complain, in_decl);
10680 if (TREE_CODE (expanded_args) == TREE_VEC)
10681 /* So that we'll spin through the parameters, one by one. */
10682 i = TREE_VEC_LENGTH (expanded_args);
10683 else
10685 /* We only partially substituted into the parameter
10686 pack. Our type is TYPE_PACK_EXPANSION. */
10687 type = expanded_args;
10688 expanded_args = NULL_TREE;
10692 while (i > 0) {
10693 --i;
10695 if (expanded_args)
10696 type = TREE_VEC_ELT (expanded_args, i);
10697 else if (!type)
10698 type = tsubst (TREE_VALUE (arg_types), args, complain, in_decl);
10700 if (type == error_mark_node)
10701 return error_mark_node;
10702 if (VOID_TYPE_P (type))
10704 if (complain & tf_error)
10706 error ("invalid parameter type %qT", type);
10707 if (in_decl)
10708 error ("in declaration %q+D", in_decl);
10710 return error_mark_node;
10713 /* Do array-to-pointer, function-to-pointer conversion, and ignore
10714 top-level qualifiers as required. */
10715 type = cv_unqualified (type_decays_to (type));
10717 /* We do not substitute into default arguments here. The standard
10718 mandates that they be instantiated only when needed, which is
10719 done in build_over_call. */
10720 default_arg = TREE_PURPOSE (arg_types);
10722 if (default_arg && TREE_CODE (default_arg) == DEFAULT_ARG)
10724 /* We've instantiated a template before its default arguments
10725 have been parsed. This can happen for a nested template
10726 class, and is not an error unless we require the default
10727 argument in a call of this function. */
10728 remaining_arg_types =
10729 tree_cons (default_arg, type, remaining_arg_types);
10730 VEC_safe_push (tree, gc, DEFARG_INSTANTIATIONS (default_arg),
10731 remaining_arg_types);
10733 else
10734 remaining_arg_types =
10735 hash_tree_cons (default_arg, type, remaining_arg_types);
10738 return remaining_arg_types;
10741 /* Substitute into a FUNCTION_TYPE or METHOD_TYPE. This routine does
10742 *not* handle the exception-specification for FNTYPE, because the
10743 initial substitution of explicitly provided template parameters
10744 during argument deduction forbids substitution into the
10745 exception-specification:
10747 [temp.deduct]
10749 All references in the function type of the function template to the
10750 corresponding template parameters are replaced by the specified tem-
10751 plate argument values. If a substitution in a template parameter or
10752 in the function type of the function template results in an invalid
10753 type, type deduction fails. [Note: The equivalent substitution in
10754 exception specifications is done only when the function is instanti-
10755 ated, at which point a program is ill-formed if the substitution
10756 results in an invalid type.] */
10758 static tree
10759 tsubst_function_type (tree t,
10760 tree args,
10761 tsubst_flags_t complain,
10762 tree in_decl)
10764 tree return_type;
10765 tree arg_types;
10766 tree fntype;
10768 /* The TYPE_CONTEXT is not used for function/method types. */
10769 gcc_assert (TYPE_CONTEXT (t) == NULL_TREE);
10771 /* Substitute the return type. */
10772 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10773 if (return_type == error_mark_node)
10774 return error_mark_node;
10775 /* The standard does not presently indicate that creation of a
10776 function type with an invalid return type is a deduction failure.
10777 However, that is clearly analogous to creating an array of "void"
10778 or a reference to a reference. This is core issue #486. */
10779 if (TREE_CODE (return_type) == ARRAY_TYPE
10780 || TREE_CODE (return_type) == FUNCTION_TYPE)
10782 if (complain & tf_error)
10784 if (TREE_CODE (return_type) == ARRAY_TYPE)
10785 error ("function returning an array");
10786 else
10787 error ("function returning a function");
10789 return error_mark_node;
10792 /* Substitute the argument types. */
10793 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, NULL_TREE,
10794 complain, in_decl);
10795 if (arg_types == error_mark_node)
10796 return error_mark_node;
10798 /* Construct a new type node and return it. */
10799 if (TREE_CODE (t) == FUNCTION_TYPE)
10801 fntype = build_function_type (return_type, arg_types);
10802 fntype = apply_memfn_quals (fntype, type_memfn_quals (t));
10804 else
10806 tree r = TREE_TYPE (TREE_VALUE (arg_types));
10807 if (! MAYBE_CLASS_TYPE_P (r))
10809 /* [temp.deduct]
10811 Type deduction may fail for any of the following
10812 reasons:
10814 -- Attempting to create "pointer to member of T" when T
10815 is not a class type. */
10816 if (complain & tf_error)
10817 error ("creating pointer to member function of non-class type %qT",
10819 return error_mark_node;
10822 fntype = build_method_type_directly (r, return_type,
10823 TREE_CHAIN (arg_types));
10825 fntype = cp_build_type_attribute_variant (fntype, TYPE_ATTRIBUTES (t));
10827 return fntype;
10830 /* FNTYPE is a FUNCTION_TYPE or METHOD_TYPE. Substitute the template
10831 ARGS into that specification, and return the substituted
10832 specification. If there is no specification, return NULL_TREE. */
10834 static tree
10835 tsubst_exception_specification (tree fntype,
10836 tree args,
10837 tsubst_flags_t complain,
10838 tree in_decl,
10839 bool defer_ok)
10841 tree specs;
10842 tree new_specs;
10844 specs = TYPE_RAISES_EXCEPTIONS (fntype);
10845 new_specs = NULL_TREE;
10846 if (specs && TREE_PURPOSE (specs))
10848 /* A noexcept-specifier. */
10849 tree expr = TREE_PURPOSE (specs);
10850 if (expr == boolean_true_node || expr == boolean_false_node)
10851 new_specs = expr;
10852 else if (defer_ok)
10854 /* Defer instantiation of noexcept-specifiers to avoid
10855 excessive instantiations (c++/49107). */
10856 new_specs = make_node (DEFERRED_NOEXCEPT);
10857 if (DEFERRED_NOEXCEPT_SPEC_P (specs))
10859 /* We already partially instantiated this member template,
10860 so combine the new args with the old. */
10861 DEFERRED_NOEXCEPT_PATTERN (new_specs)
10862 = DEFERRED_NOEXCEPT_PATTERN (expr);
10863 DEFERRED_NOEXCEPT_ARGS (new_specs)
10864 = add_to_template_args (DEFERRED_NOEXCEPT_ARGS (expr), args);
10866 else
10868 DEFERRED_NOEXCEPT_PATTERN (new_specs) = expr;
10869 DEFERRED_NOEXCEPT_ARGS (new_specs) = args;
10872 else
10873 new_specs = tsubst_copy_and_build
10874 (expr, args, complain, in_decl, /*function_p=*/false,
10875 /*integral_constant_expression_p=*/true);
10876 new_specs = build_noexcept_spec (new_specs, complain);
10878 else if (specs)
10880 if (! TREE_VALUE (specs))
10881 new_specs = specs;
10882 else
10883 while (specs)
10885 tree spec;
10886 int i, len = 1;
10887 tree expanded_specs = NULL_TREE;
10889 if (PACK_EXPANSION_P (TREE_VALUE (specs)))
10891 /* Expand the pack expansion type. */
10892 expanded_specs = tsubst_pack_expansion (TREE_VALUE (specs),
10893 args, complain,
10894 in_decl);
10896 if (expanded_specs == error_mark_node)
10897 return error_mark_node;
10898 else if (TREE_CODE (expanded_specs) == TREE_VEC)
10899 len = TREE_VEC_LENGTH (expanded_specs);
10900 else
10902 /* We're substituting into a member template, so
10903 we got a TYPE_PACK_EXPANSION back. Add that
10904 expansion and move on. */
10905 gcc_assert (TREE_CODE (expanded_specs)
10906 == TYPE_PACK_EXPANSION);
10907 new_specs = add_exception_specifier (new_specs,
10908 expanded_specs,
10909 complain);
10910 specs = TREE_CHAIN (specs);
10911 continue;
10915 for (i = 0; i < len; ++i)
10917 if (expanded_specs)
10918 spec = TREE_VEC_ELT (expanded_specs, i);
10919 else
10920 spec = tsubst (TREE_VALUE (specs), args, complain, in_decl);
10921 if (spec == error_mark_node)
10922 return spec;
10923 new_specs = add_exception_specifier (new_specs, spec,
10924 complain);
10927 specs = TREE_CHAIN (specs);
10930 return new_specs;
10933 /* Take the tree structure T and replace template parameters used
10934 therein with the argument vector ARGS. IN_DECL is an associated
10935 decl for diagnostics. If an error occurs, returns ERROR_MARK_NODE.
10936 Issue error and warning messages under control of COMPLAIN. Note
10937 that we must be relatively non-tolerant of extensions here, in
10938 order to preserve conformance; if we allow substitutions that
10939 should not be allowed, we may allow argument deductions that should
10940 not succeed, and therefore report ambiguous overload situations
10941 where there are none. In theory, we could allow the substitution,
10942 but indicate that it should have failed, and allow our caller to
10943 make sure that the right thing happens, but we don't try to do this
10944 yet.
10946 This function is used for dealing with types, decls and the like;
10947 for expressions, use tsubst_expr or tsubst_copy. */
10949 tree
10950 tsubst (tree t, tree args, tsubst_flags_t complain, tree in_decl)
10952 enum tree_code code;
10953 tree type, r = NULL_TREE;
10955 if (t == NULL_TREE || t == error_mark_node
10956 || t == integer_type_node
10957 || t == void_type_node
10958 || t == char_type_node
10959 || t == unknown_type_node
10960 || TREE_CODE (t) == NAMESPACE_DECL
10961 || TREE_CODE (t) == TRANSLATION_UNIT_DECL)
10962 return t;
10964 if (DECL_P (t))
10965 return tsubst_decl (t, args, complain);
10967 if (args == NULL_TREE)
10968 return t;
10970 code = TREE_CODE (t);
10972 if (code == IDENTIFIER_NODE)
10973 type = IDENTIFIER_TYPE_VALUE (t);
10974 else
10975 type = TREE_TYPE (t);
10977 gcc_assert (type != unknown_type_node);
10979 /* Reuse typedefs. We need to do this to handle dependent attributes,
10980 such as attribute aligned. */
10981 if (TYPE_P (t)
10982 && typedef_variant_p (t))
10984 tree decl = TYPE_NAME (t);
10986 if (alias_template_specialization_p (t))
10988 /* DECL represents an alias template and we want to
10989 instantiate it. */
10990 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
10991 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
10992 r = instantiate_alias_template (tmpl, gen_args, complain);
10994 else if (DECL_CLASS_SCOPE_P (decl)
10995 && CLASSTYPE_TEMPLATE_INFO (DECL_CONTEXT (decl))
10996 && uses_template_parms (DECL_CONTEXT (decl)))
10998 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
10999 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
11000 r = retrieve_specialization (tmpl, gen_args, 0);
11002 else if (DECL_FUNCTION_SCOPE_P (decl)
11003 && DECL_TEMPLATE_INFO (DECL_CONTEXT (decl))
11004 && uses_template_parms (DECL_TI_ARGS (DECL_CONTEXT (decl))))
11005 r = retrieve_local_specialization (decl);
11006 else
11007 /* The typedef is from a non-template context. */
11008 return t;
11010 if (r)
11012 r = TREE_TYPE (r);
11013 r = cp_build_qualified_type_real
11014 (r, cp_type_quals (t) | cp_type_quals (r),
11015 complain | tf_ignore_bad_quals);
11016 return r;
11018 else
11019 /* We don't have an instantiation yet, so drop the typedef. */
11020 t = DECL_ORIGINAL_TYPE (decl);
11023 if (type
11024 && code != TYPENAME_TYPE
11025 && code != TEMPLATE_TYPE_PARM
11026 && code != IDENTIFIER_NODE
11027 && code != FUNCTION_TYPE
11028 && code != METHOD_TYPE)
11029 type = tsubst (type, args, complain, in_decl);
11030 if (type == error_mark_node)
11031 return error_mark_node;
11033 switch (code)
11035 case RECORD_TYPE:
11036 case UNION_TYPE:
11037 case ENUMERAL_TYPE:
11038 return tsubst_aggr_type (t, args, complain, in_decl,
11039 /*entering_scope=*/0);
11041 case ERROR_MARK:
11042 case IDENTIFIER_NODE:
11043 case VOID_TYPE:
11044 case REAL_TYPE:
11045 case COMPLEX_TYPE:
11046 case VECTOR_TYPE:
11047 case BOOLEAN_TYPE:
11048 case NULLPTR_TYPE:
11049 case LANG_TYPE:
11050 return t;
11052 case INTEGER_TYPE:
11053 if (t == integer_type_node)
11054 return t;
11056 if (TREE_CODE (TYPE_MIN_VALUE (t)) == INTEGER_CST
11057 && TREE_CODE (TYPE_MAX_VALUE (t)) == INTEGER_CST)
11058 return t;
11061 tree max, omax = TREE_OPERAND (TYPE_MAX_VALUE (t), 0);
11063 max = tsubst_expr (omax, args, complain, in_decl,
11064 /*integral_constant_expression_p=*/false);
11066 /* Fix up type of the magic NOP_EXPR with TREE_SIDE_EFFECTS if
11067 needed. */
11068 if (TREE_CODE (max) == NOP_EXPR
11069 && TREE_SIDE_EFFECTS (omax)
11070 && !TREE_TYPE (max))
11071 TREE_TYPE (max) = TREE_TYPE (TREE_OPERAND (max, 0));
11073 /* If we're in a partial instantiation, preserve the magic NOP_EXPR
11074 with TREE_SIDE_EFFECTS that indicates this is not an integral
11075 constant expression. */
11076 if (processing_template_decl
11077 && TREE_SIDE_EFFECTS (omax) && TREE_CODE (omax) == NOP_EXPR)
11079 gcc_assert (TREE_CODE (max) == NOP_EXPR);
11080 TREE_SIDE_EFFECTS (max) = 1;
11083 return compute_array_index_type (NULL_TREE, max, complain);
11086 case TEMPLATE_TYPE_PARM:
11087 case TEMPLATE_TEMPLATE_PARM:
11088 case BOUND_TEMPLATE_TEMPLATE_PARM:
11089 case TEMPLATE_PARM_INDEX:
11091 int idx;
11092 int level;
11093 int levels;
11094 tree arg = NULL_TREE;
11096 r = NULL_TREE;
11098 gcc_assert (TREE_VEC_LENGTH (args) > 0);
11099 template_parm_level_and_index (t, &level, &idx);
11101 levels = TMPL_ARGS_DEPTH (args);
11102 if (level <= levels)
11104 arg = TMPL_ARG (args, level, idx);
11106 if (arg && TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
11107 /* See through ARGUMENT_PACK_SELECT arguments. */
11108 arg = ARGUMENT_PACK_SELECT_ARG (arg);
11111 if (arg == error_mark_node)
11112 return error_mark_node;
11113 else if (arg != NULL_TREE)
11115 if (ARGUMENT_PACK_P (arg))
11116 /* If ARG is an argument pack, we don't actually want to
11117 perform a substitution here, because substitutions
11118 for argument packs are only done
11119 element-by-element. We can get to this point when
11120 substituting the type of a non-type template
11121 parameter pack, when that type actually contains
11122 template parameter packs from an outer template, e.g.,
11124 template<typename... Types> struct A {
11125 template<Types... Values> struct B { };
11126 }; */
11127 return t;
11129 if (code == TEMPLATE_TYPE_PARM)
11131 int quals;
11132 gcc_assert (TYPE_P (arg));
11134 quals = cp_type_quals (arg) | cp_type_quals (t);
11136 return cp_build_qualified_type_real
11137 (arg, quals, complain | tf_ignore_bad_quals);
11139 else if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
11141 /* We are processing a type constructed from a
11142 template template parameter. */
11143 tree argvec = tsubst (TYPE_TI_ARGS (t),
11144 args, complain, in_decl);
11145 if (argvec == error_mark_node)
11146 return error_mark_node;
11148 gcc_assert (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
11149 || TREE_CODE (arg) == TEMPLATE_DECL
11150 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
11152 if (TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE)
11153 /* Consider this code:
11155 template <template <class> class Template>
11156 struct Internal {
11157 template <class Arg> using Bind = Template<Arg>;
11160 template <template <class> class Template, class Arg>
11161 using Instantiate = Template<Arg>; //#0
11163 template <template <class> class Template,
11164 class Argument>
11165 using Bind =
11166 Instantiate<Internal<Template>::template Bind,
11167 Argument>; //#1
11169 When #1 is parsed, the
11170 BOUND_TEMPLATE_TEMPLATE_PARM representing the
11171 parameter `Template' in #0 matches the
11172 UNBOUND_CLASS_TEMPLATE representing the argument
11173 `Internal<Template>::template Bind'; We then want
11174 to assemble the type `Bind<Argument>' that can't
11175 be fully created right now, because
11176 `Internal<Template>' not being complete, the Bind
11177 template cannot be looked up in that context. So
11178 we need to "store" `Bind<Argument>' for later
11179 when the context of Bind becomes complete. Let's
11180 store that in a TYPENAME_TYPE. */
11181 return make_typename_type (TYPE_CONTEXT (arg),
11182 build_nt (TEMPLATE_ID_EXPR,
11183 TYPE_IDENTIFIER (arg),
11184 argvec),
11185 typename_type,
11186 complain);
11188 /* We can get a TEMPLATE_TEMPLATE_PARM here when we
11189 are resolving nested-types in the signature of a
11190 member function templates. Otherwise ARG is a
11191 TEMPLATE_DECL and is the real template to be
11192 instantiated. */
11193 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
11194 arg = TYPE_NAME (arg);
11196 r = lookup_template_class (arg,
11197 argvec, in_decl,
11198 DECL_CONTEXT (arg),
11199 /*entering_scope=*/0,
11200 complain);
11201 return cp_build_qualified_type_real
11202 (r, cp_type_quals (t), complain);
11204 else
11205 /* TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX. */
11206 return convert_from_reference (unshare_expr (arg));
11209 if (level == 1)
11210 /* This can happen during the attempted tsubst'ing in
11211 unify. This means that we don't yet have any information
11212 about the template parameter in question. */
11213 return t;
11215 /* Early in template argument deduction substitution, we don't
11216 want to reduce the level of 'auto', or it will be confused
11217 with a normal template parm in subsequent deduction. */
11218 if (is_auto (t) && (complain & tf_partial))
11219 return t;
11221 /* If we get here, we must have been looking at a parm for a
11222 more deeply nested template. Make a new version of this
11223 template parameter, but with a lower level. */
11224 switch (code)
11226 case TEMPLATE_TYPE_PARM:
11227 case TEMPLATE_TEMPLATE_PARM:
11228 case BOUND_TEMPLATE_TEMPLATE_PARM:
11229 if (cp_type_quals (t))
11231 r = tsubst (TYPE_MAIN_VARIANT (t), args, complain, in_decl);
11232 r = cp_build_qualified_type_real
11233 (r, cp_type_quals (t),
11234 complain | (code == TEMPLATE_TYPE_PARM
11235 ? tf_ignore_bad_quals : 0));
11237 else
11239 r = copy_type (t);
11240 TEMPLATE_TYPE_PARM_INDEX (r)
11241 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (t),
11242 r, levels, args, complain);
11243 TYPE_STUB_DECL (r) = TYPE_NAME (r) = TEMPLATE_TYPE_DECL (r);
11244 TYPE_MAIN_VARIANT (r) = r;
11245 TYPE_POINTER_TO (r) = NULL_TREE;
11246 TYPE_REFERENCE_TO (r) = NULL_TREE;
11248 if (TREE_CODE (r) == TEMPLATE_TEMPLATE_PARM)
11249 /* We have reduced the level of the template
11250 template parameter, but not the levels of its
11251 template parameters, so canonical_type_parameter
11252 will not be able to find the canonical template
11253 template parameter for this level. Thus, we
11254 require structural equality checking to compare
11255 TEMPLATE_TEMPLATE_PARMs. */
11256 SET_TYPE_STRUCTURAL_EQUALITY (r);
11257 else if (TYPE_STRUCTURAL_EQUALITY_P (t))
11258 SET_TYPE_STRUCTURAL_EQUALITY (r);
11259 else
11260 TYPE_CANONICAL (r) = canonical_type_parameter (r);
11262 if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
11264 tree argvec = tsubst (TYPE_TI_ARGS (t), args,
11265 complain, in_decl);
11266 if (argvec == error_mark_node)
11267 return error_mark_node;
11269 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (r)
11270 = build_template_info (TYPE_TI_TEMPLATE (t), argvec);
11273 break;
11275 case TEMPLATE_PARM_INDEX:
11276 r = reduce_template_parm_level (t, type, levels, args, complain);
11277 break;
11279 default:
11280 gcc_unreachable ();
11283 return r;
11286 case TREE_LIST:
11288 tree purpose, value, chain;
11290 if (t == void_list_node)
11291 return t;
11293 purpose = TREE_PURPOSE (t);
11294 if (purpose)
11296 purpose = tsubst (purpose, args, complain, in_decl);
11297 if (purpose == error_mark_node)
11298 return error_mark_node;
11300 value = TREE_VALUE (t);
11301 if (value)
11303 value = tsubst (value, args, complain, in_decl);
11304 if (value == error_mark_node)
11305 return error_mark_node;
11307 chain = TREE_CHAIN (t);
11308 if (chain && chain != void_type_node)
11310 chain = tsubst (chain, args, complain, in_decl);
11311 if (chain == error_mark_node)
11312 return error_mark_node;
11314 if (purpose == TREE_PURPOSE (t)
11315 && value == TREE_VALUE (t)
11316 && chain == TREE_CHAIN (t))
11317 return t;
11318 return hash_tree_cons (purpose, value, chain);
11321 case TREE_BINFO:
11322 /* We should never be tsubsting a binfo. */
11323 gcc_unreachable ();
11325 case TREE_VEC:
11326 /* A vector of template arguments. */
11327 gcc_assert (!type);
11328 return tsubst_template_args (t, args, complain, in_decl);
11330 case POINTER_TYPE:
11331 case REFERENCE_TYPE:
11333 if (type == TREE_TYPE (t) && TREE_CODE (type) != METHOD_TYPE)
11334 return t;
11336 /* [temp.deduct]
11338 Type deduction may fail for any of the following
11339 reasons:
11341 -- Attempting to create a pointer to reference type.
11342 -- Attempting to create a reference to a reference type or
11343 a reference to void.
11345 Core issue 106 says that creating a reference to a reference
11346 during instantiation is no longer a cause for failure. We
11347 only enforce this check in strict C++98 mode. */
11348 if ((TREE_CODE (type) == REFERENCE_TYPE
11349 && (((cxx_dialect == cxx98) && flag_iso) || code != REFERENCE_TYPE))
11350 || (code == REFERENCE_TYPE && TREE_CODE (type) == VOID_TYPE))
11352 static location_t last_loc;
11354 /* We keep track of the last time we issued this error
11355 message to avoid spewing a ton of messages during a
11356 single bad template instantiation. */
11357 if (complain & tf_error
11358 && last_loc != input_location)
11360 if (TREE_CODE (type) == VOID_TYPE)
11361 error ("forming reference to void");
11362 else if (code == POINTER_TYPE)
11363 error ("forming pointer to reference type %qT", type);
11364 else
11365 error ("forming reference to reference type %qT", type);
11366 last_loc = input_location;
11369 return error_mark_node;
11371 else if (code == POINTER_TYPE)
11373 r = build_pointer_type (type);
11374 if (TREE_CODE (type) == METHOD_TYPE)
11375 r = build_ptrmemfunc_type (r);
11377 else if (TREE_CODE (type) == REFERENCE_TYPE)
11378 /* In C++0x, during template argument substitution, when there is an
11379 attempt to create a reference to a reference type, reference
11380 collapsing is applied as described in [14.3.1/4 temp.arg.type]:
11382 "If a template-argument for a template-parameter T names a type
11383 that is a reference to a type A, an attempt to create the type
11384 'lvalue reference to cv T' creates the type 'lvalue reference to
11385 A,' while an attempt to create the type type rvalue reference to
11386 cv T' creates the type T"
11388 r = cp_build_reference_type
11389 (TREE_TYPE (type),
11390 TYPE_REF_IS_RVALUE (t) && TYPE_REF_IS_RVALUE (type));
11391 else
11392 r = cp_build_reference_type (type, TYPE_REF_IS_RVALUE (t));
11393 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
11395 if (r != error_mark_node)
11396 /* Will this ever be needed for TYPE_..._TO values? */
11397 layout_type (r);
11399 return r;
11401 case OFFSET_TYPE:
11403 r = tsubst (TYPE_OFFSET_BASETYPE (t), args, complain, in_decl);
11404 if (r == error_mark_node || !MAYBE_CLASS_TYPE_P (r))
11406 /* [temp.deduct]
11408 Type deduction may fail for any of the following
11409 reasons:
11411 -- Attempting to create "pointer to member of T" when T
11412 is not a class type. */
11413 if (complain & tf_error)
11414 error ("creating pointer to member of non-class type %qT", r);
11415 return error_mark_node;
11417 if (TREE_CODE (type) == REFERENCE_TYPE)
11419 if (complain & tf_error)
11420 error ("creating pointer to member reference type %qT", type);
11421 return error_mark_node;
11423 if (TREE_CODE (type) == VOID_TYPE)
11425 if (complain & tf_error)
11426 error ("creating pointer to member of type void");
11427 return error_mark_node;
11429 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
11430 if (TREE_CODE (type) == FUNCTION_TYPE)
11432 /* The type of the implicit object parameter gets its
11433 cv-qualifiers from the FUNCTION_TYPE. */
11434 tree memptr;
11435 tree method_type = build_memfn_type (type, r, type_memfn_quals (type));
11436 memptr = build_ptrmemfunc_type (build_pointer_type (method_type));
11437 return cp_build_qualified_type_real (memptr, cp_type_quals (t),
11438 complain);
11440 else
11441 return cp_build_qualified_type_real (build_ptrmem_type (r, type),
11442 cp_type_quals (t),
11443 complain);
11445 case FUNCTION_TYPE:
11446 case METHOD_TYPE:
11448 tree fntype;
11449 tree specs;
11450 fntype = tsubst_function_type (t, args, complain, in_decl);
11451 if (fntype == error_mark_node)
11452 return error_mark_node;
11454 /* Substitute the exception specification. */
11455 specs = tsubst_exception_specification (t, args, complain,
11456 in_decl, /*defer_ok*/true);
11457 if (specs == error_mark_node)
11458 return error_mark_node;
11459 if (specs)
11460 fntype = build_exception_variant (fntype, specs);
11461 return fntype;
11463 case ARRAY_TYPE:
11465 tree domain = tsubst (TYPE_DOMAIN (t), args, complain, in_decl);
11466 if (domain == error_mark_node)
11467 return error_mark_node;
11469 /* As an optimization, we avoid regenerating the array type if
11470 it will obviously be the same as T. */
11471 if (type == TREE_TYPE (t) && domain == TYPE_DOMAIN (t))
11472 return t;
11474 /* These checks should match the ones in grokdeclarator.
11476 [temp.deduct]
11478 The deduction may fail for any of the following reasons:
11480 -- Attempting to create an array with an element type that
11481 is void, a function type, or a reference type, or [DR337]
11482 an abstract class type. */
11483 if (TREE_CODE (type) == VOID_TYPE
11484 || TREE_CODE (type) == FUNCTION_TYPE
11485 || TREE_CODE (type) == REFERENCE_TYPE)
11487 if (complain & tf_error)
11488 error ("creating array of %qT", type);
11489 return error_mark_node;
11491 if (ABSTRACT_CLASS_TYPE_P (type))
11493 if (complain & tf_error)
11494 error ("creating array of %qT, which is an abstract class type",
11495 type);
11496 return error_mark_node;
11499 r = build_cplus_array_type (type, domain);
11501 if (TYPE_USER_ALIGN (t))
11503 TYPE_ALIGN (r) = TYPE_ALIGN (t);
11504 TYPE_USER_ALIGN (r) = 1;
11507 return r;
11510 case TYPENAME_TYPE:
11512 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
11513 in_decl, /*entering_scope=*/1);
11514 tree f = tsubst_copy (TYPENAME_TYPE_FULLNAME (t), args,
11515 complain, in_decl);
11517 if (ctx == error_mark_node || f == error_mark_node)
11518 return error_mark_node;
11520 if (!MAYBE_CLASS_TYPE_P (ctx))
11522 if (complain & tf_error)
11523 error ("%qT is not a class, struct, or union type", ctx);
11524 return error_mark_node;
11526 else if (!uses_template_parms (ctx) && !TYPE_BEING_DEFINED (ctx))
11528 /* Normally, make_typename_type does not require that the CTX
11529 have complete type in order to allow things like:
11531 template <class T> struct S { typename S<T>::X Y; };
11533 But, such constructs have already been resolved by this
11534 point, so here CTX really should have complete type, unless
11535 it's a partial instantiation. */
11536 ctx = complete_type (ctx);
11537 if (!COMPLETE_TYPE_P (ctx))
11539 if (complain & tf_error)
11540 cxx_incomplete_type_error (NULL_TREE, ctx);
11541 return error_mark_node;
11545 f = make_typename_type (ctx, f, typename_type,
11546 complain | tf_keep_type_decl);
11547 if (f == error_mark_node)
11548 return f;
11549 if (TREE_CODE (f) == TYPE_DECL)
11551 complain |= tf_ignore_bad_quals;
11552 f = TREE_TYPE (f);
11555 if (TREE_CODE (f) != TYPENAME_TYPE)
11557 if (TYPENAME_IS_ENUM_P (t) && TREE_CODE (f) != ENUMERAL_TYPE)
11559 if (complain & tf_error)
11560 error ("%qT resolves to %qT, which is not an enumeration type",
11561 t, f);
11562 else
11563 return error_mark_node;
11565 else if (TYPENAME_IS_CLASS_P (t) && !CLASS_TYPE_P (f))
11567 if (complain & tf_error)
11568 error ("%qT resolves to %qT, which is is not a class type",
11569 t, f);
11570 else
11571 return error_mark_node;
11575 return cp_build_qualified_type_real
11576 (f, cp_type_quals (f) | cp_type_quals (t), complain);
11579 case UNBOUND_CLASS_TEMPLATE:
11581 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
11582 in_decl, /*entering_scope=*/1);
11583 tree name = TYPE_IDENTIFIER (t);
11584 tree parm_list = DECL_TEMPLATE_PARMS (TYPE_NAME (t));
11586 if (ctx == error_mark_node || name == error_mark_node)
11587 return error_mark_node;
11589 if (parm_list)
11590 parm_list = tsubst_template_parms (parm_list, args, complain);
11591 return make_unbound_class_template (ctx, name, parm_list, complain);
11594 case TYPEOF_TYPE:
11596 tree type;
11598 ++cp_unevaluated_operand;
11599 ++c_inhibit_evaluation_warnings;
11601 type = tsubst_expr (TYPEOF_TYPE_EXPR (t), args,
11602 complain, in_decl,
11603 /*integral_constant_expression_p=*/false);
11605 --cp_unevaluated_operand;
11606 --c_inhibit_evaluation_warnings;
11608 type = finish_typeof (type);
11609 return cp_build_qualified_type_real (type,
11610 cp_type_quals (t)
11611 | cp_type_quals (type),
11612 complain);
11615 case DECLTYPE_TYPE:
11617 tree type;
11619 ++cp_unevaluated_operand;
11620 ++c_inhibit_evaluation_warnings;
11622 type = tsubst_expr (DECLTYPE_TYPE_EXPR (t), args,
11623 complain, in_decl,
11624 /*integral_constant_expression_p=*/false);
11626 --cp_unevaluated_operand;
11627 --c_inhibit_evaluation_warnings;
11629 if (DECLTYPE_FOR_LAMBDA_CAPTURE (t))
11630 type = lambda_capture_field_type (type);
11631 else if (DECLTYPE_FOR_LAMBDA_PROXY (t))
11632 type = lambda_proxy_type (type);
11633 else
11634 type = finish_decltype_type
11635 (type, DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t), complain);
11636 return cp_build_qualified_type_real (type,
11637 cp_type_quals (t)
11638 | cp_type_quals (type),
11639 complain);
11642 case UNDERLYING_TYPE:
11644 tree type = tsubst (UNDERLYING_TYPE_TYPE (t), args,
11645 complain, in_decl);
11646 return finish_underlying_type (type);
11649 case TYPE_ARGUMENT_PACK:
11650 case NONTYPE_ARGUMENT_PACK:
11652 tree r = TYPE_P (t) ? cxx_make_type (code) : make_node (code);
11653 tree packed_out =
11654 tsubst_template_args (ARGUMENT_PACK_ARGS (t),
11655 args,
11656 complain,
11657 in_decl);
11658 SET_ARGUMENT_PACK_ARGS (r, packed_out);
11660 /* For template nontype argument packs, also substitute into
11661 the type. */
11662 if (code == NONTYPE_ARGUMENT_PACK)
11663 TREE_TYPE (r) = tsubst (TREE_TYPE (t), args, complain, in_decl);
11665 return r;
11667 break;
11669 case INTEGER_CST:
11670 case REAL_CST:
11671 case STRING_CST:
11672 case PLUS_EXPR:
11673 case MINUS_EXPR:
11674 case NEGATE_EXPR:
11675 case NOP_EXPR:
11676 case INDIRECT_REF:
11677 case ADDR_EXPR:
11678 case CALL_EXPR:
11679 case ARRAY_REF:
11680 case SCOPE_REF:
11681 /* We should use one of the expression tsubsts for these codes. */
11682 gcc_unreachable ();
11684 default:
11685 sorry ("use of %qs in template", tree_code_name [(int) code]);
11686 return error_mark_node;
11690 /* Like tsubst_expr for a BASELINK. OBJECT_TYPE, if non-NULL, is the
11691 type of the expression on the left-hand side of the "." or "->"
11692 operator. */
11694 static tree
11695 tsubst_baselink (tree baselink, tree object_type,
11696 tree args, tsubst_flags_t complain, tree in_decl)
11698 tree name;
11699 tree qualifying_scope;
11700 tree fns;
11701 tree optype;
11702 tree template_args = 0;
11703 bool template_id_p = false;
11704 bool qualified = BASELINK_QUALIFIED_P (baselink);
11706 /* A baselink indicates a function from a base class. Both the
11707 BASELINK_ACCESS_BINFO and the base class referenced may
11708 indicate bases of the template class, rather than the
11709 instantiated class. In addition, lookups that were not
11710 ambiguous before may be ambiguous now. Therefore, we perform
11711 the lookup again. */
11712 qualifying_scope = BINFO_TYPE (BASELINK_ACCESS_BINFO (baselink));
11713 qualifying_scope = tsubst (qualifying_scope, args,
11714 complain, in_decl);
11715 fns = BASELINK_FUNCTIONS (baselink);
11716 optype = tsubst (BASELINK_OPTYPE (baselink), args, complain, in_decl);
11717 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
11719 template_id_p = true;
11720 template_args = TREE_OPERAND (fns, 1);
11721 fns = TREE_OPERAND (fns, 0);
11722 if (template_args)
11723 template_args = tsubst_template_args (template_args, args,
11724 complain, in_decl);
11726 name = DECL_NAME (get_first_fn (fns));
11727 if (IDENTIFIER_TYPENAME_P (name))
11728 name = mangle_conv_op_name_for_type (optype);
11729 baselink = lookup_fnfields (qualifying_scope, name, /*protect=*/1);
11730 if (!baselink)
11731 return error_mark_node;
11733 /* If lookup found a single function, mark it as used at this
11734 point. (If it lookup found multiple functions the one selected
11735 later by overload resolution will be marked as used at that
11736 point.) */
11737 if (BASELINK_P (baselink))
11738 fns = BASELINK_FUNCTIONS (baselink);
11739 if (!template_id_p && !really_overloaded_fn (fns))
11740 mark_used (OVL_CURRENT (fns));
11742 /* Add back the template arguments, if present. */
11743 if (BASELINK_P (baselink) && template_id_p)
11744 BASELINK_FUNCTIONS (baselink)
11745 = build_nt (TEMPLATE_ID_EXPR,
11746 BASELINK_FUNCTIONS (baselink),
11747 template_args);
11748 /* Update the conversion operator type. */
11749 BASELINK_OPTYPE (baselink) = optype;
11751 if (!object_type)
11752 object_type = current_class_type;
11754 if (qualified)
11755 baselink = adjust_result_of_qualified_name_lookup (baselink,
11756 qualifying_scope,
11757 object_type);
11758 return baselink;
11761 /* Like tsubst_expr for a SCOPE_REF, given by QUALIFIED_ID. DONE is
11762 true if the qualified-id will be a postfix-expression in-and-of
11763 itself; false if more of the postfix-expression follows the
11764 QUALIFIED_ID. ADDRESS_P is true if the qualified-id is the operand
11765 of "&". */
11767 static tree
11768 tsubst_qualified_id (tree qualified_id, tree args,
11769 tsubst_flags_t complain, tree in_decl,
11770 bool done, bool address_p)
11772 tree expr;
11773 tree scope;
11774 tree name;
11775 bool is_template;
11776 tree template_args;
11777 location_t loc = UNKNOWN_LOCATION;
11779 gcc_assert (TREE_CODE (qualified_id) == SCOPE_REF);
11781 /* Figure out what name to look up. */
11782 name = TREE_OPERAND (qualified_id, 1);
11783 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
11785 is_template = true;
11786 loc = EXPR_LOCATION (name);
11787 template_args = TREE_OPERAND (name, 1);
11788 if (template_args)
11789 template_args = tsubst_template_args (template_args, args,
11790 complain, in_decl);
11791 name = TREE_OPERAND (name, 0);
11793 else
11795 is_template = false;
11796 template_args = NULL_TREE;
11799 /* Substitute into the qualifying scope. When there are no ARGS, we
11800 are just trying to simplify a non-dependent expression. In that
11801 case the qualifying scope may be dependent, and, in any case,
11802 substituting will not help. */
11803 scope = TREE_OPERAND (qualified_id, 0);
11804 if (args)
11806 scope = tsubst (scope, args, complain, in_decl);
11807 expr = tsubst_copy (name, args, complain, in_decl);
11809 else
11810 expr = name;
11812 if (dependent_scope_p (scope))
11814 if (is_template)
11815 expr = build_min_nt_loc (loc, TEMPLATE_ID_EXPR, expr, template_args);
11816 return build_qualified_name (NULL_TREE, scope, expr,
11817 QUALIFIED_NAME_IS_TEMPLATE (qualified_id));
11820 if (!BASELINK_P (name) && !DECL_P (expr))
11822 if (TREE_CODE (expr) == BIT_NOT_EXPR)
11824 /* A BIT_NOT_EXPR is used to represent a destructor. */
11825 if (!check_dtor_name (scope, TREE_OPERAND (expr, 0)))
11827 error ("qualifying type %qT does not match destructor name ~%qT",
11828 scope, TREE_OPERAND (expr, 0));
11829 expr = error_mark_node;
11831 else
11832 expr = lookup_qualified_name (scope, complete_dtor_identifier,
11833 /*is_type_p=*/0, false);
11835 else
11836 expr = lookup_qualified_name (scope, expr, /*is_type_p=*/0, false);
11837 if (TREE_CODE (TREE_CODE (expr) == TEMPLATE_DECL
11838 ? DECL_TEMPLATE_RESULT (expr) : expr) == TYPE_DECL)
11840 if (complain & tf_error)
11842 error ("dependent-name %qE is parsed as a non-type, but "
11843 "instantiation yields a type", qualified_id);
11844 inform (input_location, "say %<typename %E%> if a type is meant", qualified_id);
11846 return error_mark_node;
11850 if (DECL_P (expr))
11852 check_accessibility_of_qualified_id (expr, /*object_type=*/NULL_TREE,
11853 scope);
11854 /* Remember that there was a reference to this entity. */
11855 mark_used (expr);
11858 if (expr == error_mark_node || TREE_CODE (expr) == TREE_LIST)
11860 if (complain & tf_error)
11861 qualified_name_lookup_error (scope,
11862 TREE_OPERAND (qualified_id, 1),
11863 expr, input_location);
11864 return error_mark_node;
11867 if (is_template)
11868 expr = lookup_template_function (expr, template_args);
11870 if (expr == error_mark_node && complain & tf_error)
11871 qualified_name_lookup_error (scope, TREE_OPERAND (qualified_id, 1),
11872 expr, input_location);
11873 else if (TYPE_P (scope))
11875 expr = (adjust_result_of_qualified_name_lookup
11876 (expr, scope, current_class_type));
11877 expr = (finish_qualified_id_expr
11878 (scope, expr, done, address_p && PTRMEM_OK_P (qualified_id),
11879 QUALIFIED_NAME_IS_TEMPLATE (qualified_id),
11880 /*template_arg_p=*/false));
11883 /* Expressions do not generally have reference type. */
11884 if (TREE_CODE (expr) != SCOPE_REF
11885 /* However, if we're about to form a pointer-to-member, we just
11886 want the referenced member referenced. */
11887 && TREE_CODE (expr) != OFFSET_REF)
11888 expr = convert_from_reference (expr);
11890 return expr;
11893 /* Like tsubst, but deals with expressions. This function just replaces
11894 template parms; to finish processing the resultant expression, use
11895 tsubst_copy_and_build or tsubst_expr. */
11897 static tree
11898 tsubst_copy (tree t, tree args, tsubst_flags_t complain, tree in_decl)
11900 enum tree_code code;
11901 tree r;
11903 if (t == NULL_TREE || t == error_mark_node || args == NULL_TREE)
11904 return t;
11906 code = TREE_CODE (t);
11908 switch (code)
11910 case PARM_DECL:
11911 r = retrieve_local_specialization (t);
11913 if (r == NULL_TREE)
11915 /* We get here for a use of 'this' in an NSDMI. */
11916 if (DECL_NAME (t) == this_identifier
11917 && at_function_scope_p ()
11918 && DECL_CONSTRUCTOR_P (current_function_decl))
11919 return current_class_ptr;
11921 /* This can happen for a parameter name used later in a function
11922 declaration (such as in a late-specified return type). Just
11923 make a dummy decl, since it's only used for its type. */
11924 gcc_assert (cp_unevaluated_operand != 0);
11925 r = tsubst_decl (t, args, complain);
11926 /* Give it the template pattern as its context; its true context
11927 hasn't been instantiated yet and this is good enough for
11928 mangling. */
11929 DECL_CONTEXT (r) = DECL_CONTEXT (t);
11932 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
11933 r = ARGUMENT_PACK_SELECT_ARG (r);
11934 mark_used (r);
11935 return r;
11937 case CONST_DECL:
11939 tree enum_type;
11940 tree v;
11942 if (DECL_TEMPLATE_PARM_P (t))
11943 return tsubst_copy (DECL_INITIAL (t), args, complain, in_decl);
11944 /* There is no need to substitute into namespace-scope
11945 enumerators. */
11946 if (DECL_NAMESPACE_SCOPE_P (t))
11947 return t;
11948 /* If ARGS is NULL, then T is known to be non-dependent. */
11949 if (args == NULL_TREE)
11950 return integral_constant_value (t);
11952 /* Unfortunately, we cannot just call lookup_name here.
11953 Consider:
11955 template <int I> int f() {
11956 enum E { a = I };
11957 struct S { void g() { E e = a; } };
11960 When we instantiate f<7>::S::g(), say, lookup_name is not
11961 clever enough to find f<7>::a. */
11962 enum_type
11963 = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
11964 /*entering_scope=*/0);
11966 for (v = TYPE_VALUES (enum_type);
11967 v != NULL_TREE;
11968 v = TREE_CHAIN (v))
11969 if (TREE_PURPOSE (v) == DECL_NAME (t))
11970 return TREE_VALUE (v);
11972 /* We didn't find the name. That should never happen; if
11973 name-lookup found it during preliminary parsing, we
11974 should find it again here during instantiation. */
11975 gcc_unreachable ();
11977 return t;
11979 case FIELD_DECL:
11980 if (DECL_CONTEXT (t))
11982 tree ctx;
11984 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
11985 /*entering_scope=*/1);
11986 if (ctx != DECL_CONTEXT (t))
11988 tree r = lookup_field (ctx, DECL_NAME (t), 0, false);
11989 if (!r)
11991 if (complain & tf_error)
11992 error ("using invalid field %qD", t);
11993 return error_mark_node;
11995 return r;
11999 return t;
12001 case VAR_DECL:
12002 case FUNCTION_DECL:
12003 if ((DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
12004 || local_variable_p (t))
12005 t = tsubst (t, args, complain, in_decl);
12006 mark_used (t);
12007 return t;
12009 case NAMESPACE_DECL:
12010 return t;
12012 case OVERLOAD:
12013 /* An OVERLOAD will always be a non-dependent overload set; an
12014 overload set from function scope will just be represented with an
12015 IDENTIFIER_NODE, and from class scope with a BASELINK. */
12016 gcc_assert (!uses_template_parms (t));
12017 return t;
12019 case BASELINK:
12020 return tsubst_baselink (t, current_class_type, args, complain, in_decl);
12022 case TEMPLATE_DECL:
12023 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
12024 return tsubst (TREE_TYPE (DECL_TEMPLATE_RESULT (t)),
12025 args, complain, in_decl);
12026 else if (DECL_FUNCTION_TEMPLATE_P (t) && DECL_MEMBER_TEMPLATE_P (t))
12027 return tsubst (t, args, complain, in_decl);
12028 else if (DECL_CLASS_SCOPE_P (t)
12029 && uses_template_parms (DECL_CONTEXT (t)))
12031 /* Template template argument like the following example need
12032 special treatment:
12034 template <template <class> class TT> struct C {};
12035 template <class T> struct D {
12036 template <class U> struct E {};
12037 C<E> c; // #1
12039 D<int> d; // #2
12041 We are processing the template argument `E' in #1 for
12042 the template instantiation #2. Originally, `E' is a
12043 TEMPLATE_DECL with `D<T>' as its DECL_CONTEXT. Now we
12044 have to substitute this with one having context `D<int>'. */
12046 tree context = tsubst (DECL_CONTEXT (t), args, complain, in_decl);
12047 return lookup_field (context, DECL_NAME(t), 0, false);
12049 else
12050 /* Ordinary template template argument. */
12051 return t;
12053 case CAST_EXPR:
12054 case REINTERPRET_CAST_EXPR:
12055 case CONST_CAST_EXPR:
12056 case STATIC_CAST_EXPR:
12057 case DYNAMIC_CAST_EXPR:
12058 case IMPLICIT_CONV_EXPR:
12059 case CONVERT_EXPR:
12060 case NOP_EXPR:
12061 return build1
12062 (code, tsubst (TREE_TYPE (t), args, complain, in_decl),
12063 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl));
12065 case SIZEOF_EXPR:
12066 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0)))
12069 tree expanded, op = TREE_OPERAND (t, 0);
12070 int len = 0;
12072 if (SIZEOF_EXPR_TYPE_P (t))
12073 op = TREE_TYPE (op);
12075 ++cp_unevaluated_operand;
12076 ++c_inhibit_evaluation_warnings;
12077 /* We only want to compute the number of arguments. */
12078 expanded = tsubst_pack_expansion (op, args, complain, in_decl);
12079 --cp_unevaluated_operand;
12080 --c_inhibit_evaluation_warnings;
12082 if (TREE_CODE (expanded) == TREE_VEC)
12083 len = TREE_VEC_LENGTH (expanded);
12085 if (expanded == error_mark_node)
12086 return error_mark_node;
12087 else if (PACK_EXPANSION_P (expanded)
12088 || (TREE_CODE (expanded) == TREE_VEC
12089 && len > 0
12090 && PACK_EXPANSION_P (TREE_VEC_ELT (expanded, len-1))))
12092 if (TREE_CODE (expanded) == TREE_VEC)
12093 expanded = TREE_VEC_ELT (expanded, len - 1);
12095 if (TYPE_P (expanded))
12096 return cxx_sizeof_or_alignof_type (expanded, SIZEOF_EXPR,
12097 complain & tf_error);
12098 else
12099 return cxx_sizeof_or_alignof_expr (expanded, SIZEOF_EXPR,
12100 complain & tf_error);
12102 else
12103 return build_int_cst (size_type_node, len);
12105 if (SIZEOF_EXPR_TYPE_P (t))
12107 r = tsubst (TREE_TYPE (TREE_OPERAND (t, 0)),
12108 args, complain, in_decl);
12109 r = build1 (NOP_EXPR, r, error_mark_node);
12110 r = build1 (SIZEOF_EXPR,
12111 tsubst (TREE_TYPE (t), args, complain, in_decl), r);
12112 SIZEOF_EXPR_TYPE_P (r) = 1;
12113 return r;
12115 /* Fall through */
12117 case INDIRECT_REF:
12118 case NEGATE_EXPR:
12119 case TRUTH_NOT_EXPR:
12120 case BIT_NOT_EXPR:
12121 case ADDR_EXPR:
12122 case UNARY_PLUS_EXPR: /* Unary + */
12123 case ALIGNOF_EXPR:
12124 case AT_ENCODE_EXPR:
12125 case ARROW_EXPR:
12126 case THROW_EXPR:
12127 case TYPEID_EXPR:
12128 case REALPART_EXPR:
12129 case IMAGPART_EXPR:
12130 return build1
12131 (code, tsubst (TREE_TYPE (t), args, complain, in_decl),
12132 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl));
12134 case COMPONENT_REF:
12136 tree object;
12137 tree name;
12139 object = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
12140 name = TREE_OPERAND (t, 1);
12141 if (TREE_CODE (name) == BIT_NOT_EXPR)
12143 name = tsubst_copy (TREE_OPERAND (name, 0), args,
12144 complain, in_decl);
12145 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
12147 else if (TREE_CODE (name) == SCOPE_REF
12148 && TREE_CODE (TREE_OPERAND (name, 1)) == BIT_NOT_EXPR)
12150 tree base = tsubst_copy (TREE_OPERAND (name, 0), args,
12151 complain, in_decl);
12152 name = TREE_OPERAND (name, 1);
12153 name = tsubst_copy (TREE_OPERAND (name, 0), args,
12154 complain, in_decl);
12155 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
12156 name = build_qualified_name (/*type=*/NULL_TREE,
12157 base, name,
12158 /*template_p=*/false);
12160 else if (BASELINK_P (name))
12161 name = tsubst_baselink (name,
12162 non_reference (TREE_TYPE (object)),
12163 args, complain,
12164 in_decl);
12165 else
12166 name = tsubst_copy (name, args, complain, in_decl);
12167 return build_nt (COMPONENT_REF, object, name, NULL_TREE);
12170 case PLUS_EXPR:
12171 case MINUS_EXPR:
12172 case MULT_EXPR:
12173 case TRUNC_DIV_EXPR:
12174 case CEIL_DIV_EXPR:
12175 case FLOOR_DIV_EXPR:
12176 case ROUND_DIV_EXPR:
12177 case EXACT_DIV_EXPR:
12178 case BIT_AND_EXPR:
12179 case BIT_IOR_EXPR:
12180 case BIT_XOR_EXPR:
12181 case TRUNC_MOD_EXPR:
12182 case FLOOR_MOD_EXPR:
12183 case TRUTH_ANDIF_EXPR:
12184 case TRUTH_ORIF_EXPR:
12185 case TRUTH_AND_EXPR:
12186 case TRUTH_OR_EXPR:
12187 case RSHIFT_EXPR:
12188 case LSHIFT_EXPR:
12189 case RROTATE_EXPR:
12190 case LROTATE_EXPR:
12191 case EQ_EXPR:
12192 case NE_EXPR:
12193 case MAX_EXPR:
12194 case MIN_EXPR:
12195 case LE_EXPR:
12196 case GE_EXPR:
12197 case LT_EXPR:
12198 case GT_EXPR:
12199 case COMPOUND_EXPR:
12200 case DOTSTAR_EXPR:
12201 case MEMBER_REF:
12202 case PREDECREMENT_EXPR:
12203 case PREINCREMENT_EXPR:
12204 case POSTDECREMENT_EXPR:
12205 case POSTINCREMENT_EXPR:
12206 return build_nt
12207 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
12208 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl));
12210 case SCOPE_REF:
12211 return build_qualified_name (/*type=*/NULL_TREE,
12212 tsubst_copy (TREE_OPERAND (t, 0),
12213 args, complain, in_decl),
12214 tsubst_copy (TREE_OPERAND (t, 1),
12215 args, complain, in_decl),
12216 QUALIFIED_NAME_IS_TEMPLATE (t));
12218 case ARRAY_REF:
12219 return build_nt
12220 (ARRAY_REF,
12221 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
12222 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl),
12223 NULL_TREE, NULL_TREE);
12225 case CALL_EXPR:
12227 int n = VL_EXP_OPERAND_LENGTH (t);
12228 tree result = build_vl_exp (CALL_EXPR, n);
12229 int i;
12230 for (i = 0; i < n; i++)
12231 TREE_OPERAND (t, i) = tsubst_copy (TREE_OPERAND (t, i), args,
12232 complain, in_decl);
12233 return result;
12236 case COND_EXPR:
12237 case MODOP_EXPR:
12238 case PSEUDO_DTOR_EXPR:
12240 r = build_nt
12241 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
12242 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl),
12243 tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl));
12244 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
12245 return r;
12248 case NEW_EXPR:
12250 r = build_nt
12251 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
12252 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl),
12253 tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl));
12254 NEW_EXPR_USE_GLOBAL (r) = NEW_EXPR_USE_GLOBAL (t);
12255 return r;
12258 case DELETE_EXPR:
12260 r = build_nt
12261 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
12262 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl));
12263 DELETE_EXPR_USE_GLOBAL (r) = DELETE_EXPR_USE_GLOBAL (t);
12264 DELETE_EXPR_USE_VEC (r) = DELETE_EXPR_USE_VEC (t);
12265 return r;
12268 case TEMPLATE_ID_EXPR:
12270 /* Substituted template arguments */
12271 tree fn = TREE_OPERAND (t, 0);
12272 tree targs = TREE_OPERAND (t, 1);
12274 fn = tsubst_copy (fn, args, complain, in_decl);
12275 if (targs)
12276 targs = tsubst_template_args (targs, args, complain, in_decl);
12278 return lookup_template_function (fn, targs);
12281 case TREE_LIST:
12283 tree purpose, value, chain;
12285 if (t == void_list_node)
12286 return t;
12288 purpose = TREE_PURPOSE (t);
12289 if (purpose)
12290 purpose = tsubst_copy (purpose, args, complain, in_decl);
12291 value = TREE_VALUE (t);
12292 if (value)
12293 value = tsubst_copy (value, args, complain, in_decl);
12294 chain = TREE_CHAIN (t);
12295 if (chain && chain != void_type_node)
12296 chain = tsubst_copy (chain, args, complain, in_decl);
12297 if (purpose == TREE_PURPOSE (t)
12298 && value == TREE_VALUE (t)
12299 && chain == TREE_CHAIN (t))
12300 return t;
12301 return tree_cons (purpose, value, chain);
12304 case RECORD_TYPE:
12305 case UNION_TYPE:
12306 case ENUMERAL_TYPE:
12307 case INTEGER_TYPE:
12308 case TEMPLATE_TYPE_PARM:
12309 case TEMPLATE_TEMPLATE_PARM:
12310 case BOUND_TEMPLATE_TEMPLATE_PARM:
12311 case TEMPLATE_PARM_INDEX:
12312 case POINTER_TYPE:
12313 case REFERENCE_TYPE:
12314 case OFFSET_TYPE:
12315 case FUNCTION_TYPE:
12316 case METHOD_TYPE:
12317 case ARRAY_TYPE:
12318 case TYPENAME_TYPE:
12319 case UNBOUND_CLASS_TEMPLATE:
12320 case TYPEOF_TYPE:
12321 case DECLTYPE_TYPE:
12322 case TYPE_DECL:
12323 return tsubst (t, args, complain, in_decl);
12325 case IDENTIFIER_NODE:
12326 if (IDENTIFIER_TYPENAME_P (t))
12328 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12329 return mangle_conv_op_name_for_type (new_type);
12331 else
12332 return t;
12334 case CONSTRUCTOR:
12335 /* This is handled by tsubst_copy_and_build. */
12336 gcc_unreachable ();
12338 case VA_ARG_EXPR:
12339 return build_x_va_arg (EXPR_LOCATION (t),
12340 tsubst_copy (TREE_OPERAND (t, 0), args, complain,
12341 in_decl),
12342 tsubst (TREE_TYPE (t), args, complain, in_decl));
12344 case CLEANUP_POINT_EXPR:
12345 /* We shouldn't have built any of these during initial template
12346 generation. Instead, they should be built during instantiation
12347 in response to the saved STMT_IS_FULL_EXPR_P setting. */
12348 gcc_unreachable ();
12350 case OFFSET_REF:
12351 r = build2
12352 (code, tsubst (TREE_TYPE (t), args, complain, in_decl),
12353 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
12354 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl));
12355 PTRMEM_OK_P (r) = PTRMEM_OK_P (t);
12356 mark_used (TREE_OPERAND (r, 1));
12357 return r;
12359 case EXPR_PACK_EXPANSION:
12360 error ("invalid use of pack expansion expression");
12361 return error_mark_node;
12363 case NONTYPE_ARGUMENT_PACK:
12364 error ("use %<...%> to expand argument pack");
12365 return error_mark_node;
12367 case INTEGER_CST:
12368 case REAL_CST:
12369 case STRING_CST:
12370 case COMPLEX_CST:
12372 /* Instantiate any typedefs in the type. */
12373 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12374 r = fold_convert (type, t);
12375 gcc_assert (TREE_CODE (r) == code);
12376 return r;
12379 case PTRMEM_CST:
12380 /* These can sometimes show up in a partial instantiation, but never
12381 involve template parms. */
12382 gcc_assert (!uses_template_parms (t));
12383 return t;
12385 default:
12386 /* We shouldn't get here, but keep going if !ENABLE_CHECKING. */
12387 gcc_checking_assert (false);
12388 return t;
12392 /* Like tsubst_copy, but specifically for OpenMP clauses. */
12394 static tree
12395 tsubst_omp_clauses (tree clauses, tree args, tsubst_flags_t complain,
12396 tree in_decl)
12398 tree new_clauses = NULL, nc, oc;
12400 for (oc = clauses; oc ; oc = OMP_CLAUSE_CHAIN (oc))
12402 nc = copy_node (oc);
12403 OMP_CLAUSE_CHAIN (nc) = new_clauses;
12404 new_clauses = nc;
12406 switch (OMP_CLAUSE_CODE (nc))
12408 case OMP_CLAUSE_LASTPRIVATE:
12409 if (OMP_CLAUSE_LASTPRIVATE_STMT (oc))
12411 OMP_CLAUSE_LASTPRIVATE_STMT (nc) = push_stmt_list ();
12412 tsubst_expr (OMP_CLAUSE_LASTPRIVATE_STMT (oc), args, complain,
12413 in_decl, /*integral_constant_expression_p=*/false);
12414 OMP_CLAUSE_LASTPRIVATE_STMT (nc)
12415 = pop_stmt_list (OMP_CLAUSE_LASTPRIVATE_STMT (nc));
12417 /* FALLTHRU */
12418 case OMP_CLAUSE_PRIVATE:
12419 case OMP_CLAUSE_SHARED:
12420 case OMP_CLAUSE_FIRSTPRIVATE:
12421 case OMP_CLAUSE_REDUCTION:
12422 case OMP_CLAUSE_COPYIN:
12423 case OMP_CLAUSE_COPYPRIVATE:
12424 case OMP_CLAUSE_IF:
12425 case OMP_CLAUSE_NUM_THREADS:
12426 case OMP_CLAUSE_SCHEDULE:
12427 case OMP_CLAUSE_COLLAPSE:
12428 case OMP_CLAUSE_FINAL:
12429 OMP_CLAUSE_OPERAND (nc, 0)
12430 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 0), args, complain,
12431 in_decl, /*integral_constant_expression_p=*/false);
12432 break;
12433 case OMP_CLAUSE_NOWAIT:
12434 case OMP_CLAUSE_ORDERED:
12435 case OMP_CLAUSE_DEFAULT:
12436 case OMP_CLAUSE_UNTIED:
12437 case OMP_CLAUSE_MERGEABLE:
12438 break;
12439 default:
12440 gcc_unreachable ();
12444 return finish_omp_clauses (nreverse (new_clauses));
12447 /* Like tsubst_copy_and_build, but unshare TREE_LIST nodes. */
12449 static tree
12450 tsubst_copy_asm_operands (tree t, tree args, tsubst_flags_t complain,
12451 tree in_decl)
12453 #define RECUR(t) tsubst_copy_asm_operands (t, args, complain, in_decl)
12455 tree purpose, value, chain;
12457 if (t == NULL)
12458 return t;
12460 if (TREE_CODE (t) != TREE_LIST)
12461 return tsubst_copy_and_build (t, args, complain, in_decl,
12462 /*function_p=*/false,
12463 /*integral_constant_expression_p=*/false);
12465 if (t == void_list_node)
12466 return t;
12468 purpose = TREE_PURPOSE (t);
12469 if (purpose)
12470 purpose = RECUR (purpose);
12471 value = TREE_VALUE (t);
12472 if (value)
12474 if (TREE_CODE (value) != LABEL_DECL)
12475 value = RECUR (value);
12476 else
12478 value = lookup_label (DECL_NAME (value));
12479 gcc_assert (TREE_CODE (value) == LABEL_DECL);
12480 TREE_USED (value) = 1;
12483 chain = TREE_CHAIN (t);
12484 if (chain && chain != void_type_node)
12485 chain = RECUR (chain);
12486 return tree_cons (purpose, value, chain);
12487 #undef RECUR
12490 /* Substitute one OMP_FOR iterator. */
12492 static void
12493 tsubst_omp_for_iterator (tree t, int i, tree declv, tree initv,
12494 tree condv, tree incrv, tree *clauses,
12495 tree args, tsubst_flags_t complain, tree in_decl,
12496 bool integral_constant_expression_p)
12498 #define RECUR(NODE) \
12499 tsubst_expr ((NODE), args, complain, in_decl, \
12500 integral_constant_expression_p)
12501 tree decl, init, cond, incr;
12502 bool init_decl;
12504 init = TREE_VEC_ELT (OMP_FOR_INIT (t), i);
12505 gcc_assert (TREE_CODE (init) == MODIFY_EXPR);
12506 decl = TREE_OPERAND (init, 0);
12507 init = TREE_OPERAND (init, 1);
12508 /* Do this before substituting into decl to handle 'auto'. */
12509 init_decl = (init && TREE_CODE (init) == DECL_EXPR);
12510 init = RECUR (init);
12511 decl = RECUR (decl);
12512 if (init_decl)
12514 gcc_assert (!processing_template_decl);
12515 init = DECL_INITIAL (decl);
12516 DECL_INITIAL (decl) = NULL_TREE;
12519 gcc_assert (!type_dependent_expression_p (decl));
12521 if (!CLASS_TYPE_P (TREE_TYPE (decl)))
12523 cond = RECUR (TREE_VEC_ELT (OMP_FOR_COND (t), i));
12524 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
12525 if (TREE_CODE (incr) == MODIFY_EXPR)
12526 incr = build_x_modify_expr (EXPR_LOCATION (incr),
12527 RECUR (TREE_OPERAND (incr, 0)), NOP_EXPR,
12528 RECUR (TREE_OPERAND (incr, 1)),
12529 complain);
12530 else
12531 incr = RECUR (incr);
12532 TREE_VEC_ELT (declv, i) = decl;
12533 TREE_VEC_ELT (initv, i) = init;
12534 TREE_VEC_ELT (condv, i) = cond;
12535 TREE_VEC_ELT (incrv, i) = incr;
12536 return;
12539 if (init && !init_decl)
12541 tree c;
12542 for (c = *clauses; c ; c = OMP_CLAUSE_CHAIN (c))
12544 if ((OMP_CLAUSE_CODE (c) == OMP_CLAUSE_PRIVATE
12545 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE)
12546 && OMP_CLAUSE_DECL (c) == decl)
12547 break;
12548 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_FIRSTPRIVATE
12549 && OMP_CLAUSE_DECL (c) == decl)
12550 error ("iteration variable %qD should not be firstprivate", decl);
12551 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
12552 && OMP_CLAUSE_DECL (c) == decl)
12553 error ("iteration variable %qD should not be reduction", decl);
12555 if (c == NULL)
12557 c = build_omp_clause (input_location, OMP_CLAUSE_PRIVATE);
12558 OMP_CLAUSE_DECL (c) = decl;
12559 c = finish_omp_clauses (c);
12560 if (c)
12562 OMP_CLAUSE_CHAIN (c) = *clauses;
12563 *clauses = c;
12567 cond = TREE_VEC_ELT (OMP_FOR_COND (t), i);
12568 if (COMPARISON_CLASS_P (cond))
12569 cond = build2 (TREE_CODE (cond), boolean_type_node,
12570 RECUR (TREE_OPERAND (cond, 0)),
12571 RECUR (TREE_OPERAND (cond, 1)));
12572 else
12573 cond = RECUR (cond);
12574 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
12575 switch (TREE_CODE (incr))
12577 case PREINCREMENT_EXPR:
12578 case PREDECREMENT_EXPR:
12579 case POSTINCREMENT_EXPR:
12580 case POSTDECREMENT_EXPR:
12581 incr = build2 (TREE_CODE (incr), TREE_TYPE (decl),
12582 RECUR (TREE_OPERAND (incr, 0)), NULL_TREE);
12583 break;
12584 case MODIFY_EXPR:
12585 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
12586 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
12588 tree rhs = TREE_OPERAND (incr, 1);
12589 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl),
12590 RECUR (TREE_OPERAND (incr, 0)),
12591 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
12592 RECUR (TREE_OPERAND (rhs, 0)),
12593 RECUR (TREE_OPERAND (rhs, 1))));
12595 else
12596 incr = RECUR (incr);
12597 break;
12598 case MODOP_EXPR:
12599 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
12600 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
12602 tree lhs = RECUR (TREE_OPERAND (incr, 0));
12603 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
12604 build2 (TREE_CODE (TREE_OPERAND (incr, 1)),
12605 TREE_TYPE (decl), lhs,
12606 RECUR (TREE_OPERAND (incr, 2))));
12608 else if (TREE_CODE (TREE_OPERAND (incr, 1)) == NOP_EXPR
12609 && (TREE_CODE (TREE_OPERAND (incr, 2)) == PLUS_EXPR
12610 || (TREE_CODE (TREE_OPERAND (incr, 2)) == MINUS_EXPR)))
12612 tree rhs = TREE_OPERAND (incr, 2);
12613 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl),
12614 RECUR (TREE_OPERAND (incr, 0)),
12615 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
12616 RECUR (TREE_OPERAND (rhs, 0)),
12617 RECUR (TREE_OPERAND (rhs, 1))));
12619 else
12620 incr = RECUR (incr);
12621 break;
12622 default:
12623 incr = RECUR (incr);
12624 break;
12627 TREE_VEC_ELT (declv, i) = decl;
12628 TREE_VEC_ELT (initv, i) = init;
12629 TREE_VEC_ELT (condv, i) = cond;
12630 TREE_VEC_ELT (incrv, i) = incr;
12631 #undef RECUR
12634 /* Like tsubst_copy for expressions, etc. but also does semantic
12635 processing. */
12637 static tree
12638 tsubst_expr (tree t, tree args, tsubst_flags_t complain, tree in_decl,
12639 bool integral_constant_expression_p)
12641 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
12642 #define RECUR(NODE) \
12643 tsubst_expr ((NODE), args, complain, in_decl, \
12644 integral_constant_expression_p)
12646 tree stmt, tmp;
12647 tree r;
12648 location_t loc;
12650 if (t == NULL_TREE || t == error_mark_node)
12651 return t;
12653 loc = input_location;
12654 if (EXPR_HAS_LOCATION (t))
12655 input_location = EXPR_LOCATION (t);
12656 if (STATEMENT_CODE_P (TREE_CODE (t)))
12657 current_stmt_tree ()->stmts_are_full_exprs_p = STMT_IS_FULL_EXPR_P (t);
12659 switch (TREE_CODE (t))
12661 case STATEMENT_LIST:
12663 tree_stmt_iterator i;
12664 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
12665 RECUR (tsi_stmt (i));
12666 break;
12669 case CTOR_INITIALIZER:
12670 finish_mem_initializers (tsubst_initializer_list
12671 (TREE_OPERAND (t, 0), args));
12672 break;
12674 case RETURN_EXPR:
12675 finish_return_stmt (RECUR (TREE_OPERAND (t, 0)));
12676 break;
12678 case EXPR_STMT:
12679 tmp = RECUR (EXPR_STMT_EXPR (t));
12680 if (EXPR_STMT_STMT_EXPR_RESULT (t))
12681 finish_stmt_expr_expr (tmp, cur_stmt_expr);
12682 else
12683 finish_expr_stmt (tmp);
12684 break;
12686 case USING_STMT:
12687 do_using_directive (USING_STMT_NAMESPACE (t));
12688 break;
12690 case DECL_EXPR:
12692 tree decl, pattern_decl;
12693 tree init;
12695 pattern_decl = decl = DECL_EXPR_DECL (t);
12696 if (TREE_CODE (decl) == LABEL_DECL)
12697 finish_label_decl (DECL_NAME (decl));
12698 else if (TREE_CODE (decl) == USING_DECL)
12700 tree scope = USING_DECL_SCOPE (decl);
12701 tree name = DECL_NAME (decl);
12702 tree decl;
12704 scope = tsubst (scope, args, complain, in_decl);
12705 decl = lookup_qualified_name (scope, name,
12706 /*is_type_p=*/false,
12707 /*complain=*/false);
12708 if (decl == error_mark_node || TREE_CODE (decl) == TREE_LIST)
12709 qualified_name_lookup_error (scope, name, decl, input_location);
12710 else
12711 do_local_using_decl (decl, scope, name);
12713 else
12715 init = DECL_INITIAL (decl);
12716 decl = tsubst (decl, args, complain, in_decl);
12717 if (decl != error_mark_node)
12719 /* By marking the declaration as instantiated, we avoid
12720 trying to instantiate it. Since instantiate_decl can't
12721 handle local variables, and since we've already done
12722 all that needs to be done, that's the right thing to
12723 do. */
12724 if (TREE_CODE (decl) == VAR_DECL)
12725 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
12726 if (TREE_CODE (decl) == VAR_DECL
12727 && ANON_AGGR_TYPE_P (TREE_TYPE (decl)))
12728 /* Anonymous aggregates are a special case. */
12729 finish_anon_union (decl);
12730 else if (is_capture_proxy (DECL_EXPR_DECL (t)))
12732 DECL_CONTEXT (decl) = current_function_decl;
12733 insert_capture_proxy (decl);
12735 else if (DECL_IMPLICIT_TYPEDEF_P (t))
12736 /* We already did a pushtag. */;
12737 else
12739 int const_init = false;
12740 maybe_push_decl (decl);
12741 if (TREE_CODE (decl) == VAR_DECL
12742 && DECL_PRETTY_FUNCTION_P (decl))
12744 /* For __PRETTY_FUNCTION__ we have to adjust the
12745 initializer. */
12746 const char *const name
12747 = cxx_printable_name (current_function_decl, 2);
12748 init = cp_fname_init (name, &TREE_TYPE (decl));
12750 else
12752 tree t = RECUR (init);
12754 if (init && !t)
12756 /* If we had an initializer but it
12757 instantiated to nothing,
12758 value-initialize the object. This will
12759 only occur when the initializer was a
12760 pack expansion where the parameter packs
12761 used in that expansion were of length
12762 zero. */
12763 init = build_value_init (TREE_TYPE (decl),
12764 complain);
12765 if (TREE_CODE (init) == AGGR_INIT_EXPR)
12766 init = get_target_expr_sfinae (init, complain);
12768 else
12769 init = t;
12772 if (TREE_CODE (decl) == VAR_DECL)
12773 const_init = (DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P
12774 (pattern_decl));
12775 cp_finish_decl (decl, init, const_init, NULL_TREE, 0);
12780 break;
12783 case FOR_STMT:
12784 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
12785 RECUR (FOR_INIT_STMT (t));
12786 finish_for_init_stmt (stmt);
12787 tmp = RECUR (FOR_COND (t));
12788 finish_for_cond (tmp, stmt);
12789 tmp = RECUR (FOR_EXPR (t));
12790 finish_for_expr (tmp, stmt);
12791 RECUR (FOR_BODY (t));
12792 finish_for_stmt (stmt);
12793 break;
12795 case RANGE_FOR_STMT:
12797 tree decl, expr;
12798 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
12799 decl = RANGE_FOR_DECL (t);
12800 decl = tsubst (decl, args, complain, in_decl);
12801 maybe_push_decl (decl);
12802 expr = RECUR (RANGE_FOR_EXPR (t));
12803 stmt = cp_convert_range_for (stmt, decl, expr);
12804 RECUR (RANGE_FOR_BODY (t));
12805 finish_for_stmt (stmt);
12807 break;
12809 case WHILE_STMT:
12810 stmt = begin_while_stmt ();
12811 tmp = RECUR (WHILE_COND (t));
12812 finish_while_stmt_cond (tmp, stmt);
12813 RECUR (WHILE_BODY (t));
12814 finish_while_stmt (stmt);
12815 break;
12817 case DO_STMT:
12818 stmt = begin_do_stmt ();
12819 RECUR (DO_BODY (t));
12820 finish_do_body (stmt);
12821 tmp = RECUR (DO_COND (t));
12822 finish_do_stmt (tmp, stmt);
12823 break;
12825 case IF_STMT:
12826 stmt = begin_if_stmt ();
12827 tmp = RECUR (IF_COND (t));
12828 finish_if_stmt_cond (tmp, stmt);
12829 RECUR (THEN_CLAUSE (t));
12830 finish_then_clause (stmt);
12832 if (ELSE_CLAUSE (t))
12834 begin_else_clause (stmt);
12835 RECUR (ELSE_CLAUSE (t));
12836 finish_else_clause (stmt);
12839 finish_if_stmt (stmt);
12840 break;
12842 case BIND_EXPR:
12843 if (BIND_EXPR_BODY_BLOCK (t))
12844 stmt = begin_function_body ();
12845 else
12846 stmt = begin_compound_stmt (BIND_EXPR_TRY_BLOCK (t)
12847 ? BCS_TRY_BLOCK : 0);
12849 RECUR (BIND_EXPR_BODY (t));
12851 if (BIND_EXPR_BODY_BLOCK (t))
12852 finish_function_body (stmt);
12853 else
12854 finish_compound_stmt (stmt);
12855 break;
12857 case BREAK_STMT:
12858 finish_break_stmt ();
12859 break;
12861 case CONTINUE_STMT:
12862 finish_continue_stmt ();
12863 break;
12865 case SWITCH_STMT:
12866 stmt = begin_switch_stmt ();
12867 tmp = RECUR (SWITCH_STMT_COND (t));
12868 finish_switch_cond (tmp, stmt);
12869 RECUR (SWITCH_STMT_BODY (t));
12870 finish_switch_stmt (stmt);
12871 break;
12873 case CASE_LABEL_EXPR:
12874 finish_case_label (EXPR_LOCATION (t),
12875 RECUR (CASE_LOW (t)),
12876 RECUR (CASE_HIGH (t)));
12877 break;
12879 case LABEL_EXPR:
12881 tree decl = LABEL_EXPR_LABEL (t);
12882 tree label;
12884 label = finish_label_stmt (DECL_NAME (decl));
12885 if (DECL_ATTRIBUTES (decl) != NULL_TREE)
12886 cplus_decl_attributes (&label, DECL_ATTRIBUTES (decl), 0);
12888 break;
12890 case GOTO_EXPR:
12891 tmp = GOTO_DESTINATION (t);
12892 if (TREE_CODE (tmp) != LABEL_DECL)
12893 /* Computed goto's must be tsubst'd into. On the other hand,
12894 non-computed gotos must not be; the identifier in question
12895 will have no binding. */
12896 tmp = RECUR (tmp);
12897 else
12898 tmp = DECL_NAME (tmp);
12899 finish_goto_stmt (tmp);
12900 break;
12902 case ASM_EXPR:
12903 tmp = finish_asm_stmt
12904 (ASM_VOLATILE_P (t),
12905 RECUR (ASM_STRING (t)),
12906 tsubst_copy_asm_operands (ASM_OUTPUTS (t), args, complain, in_decl),
12907 tsubst_copy_asm_operands (ASM_INPUTS (t), args, complain, in_decl),
12908 tsubst_copy_asm_operands (ASM_CLOBBERS (t), args, complain, in_decl),
12909 tsubst_copy_asm_operands (ASM_LABELS (t), args, complain, in_decl));
12911 tree asm_expr = tmp;
12912 if (TREE_CODE (asm_expr) == CLEANUP_POINT_EXPR)
12913 asm_expr = TREE_OPERAND (asm_expr, 0);
12914 ASM_INPUT_P (asm_expr) = ASM_INPUT_P (t);
12916 break;
12918 case TRY_BLOCK:
12919 if (CLEANUP_P (t))
12921 stmt = begin_try_block ();
12922 RECUR (TRY_STMTS (t));
12923 finish_cleanup_try_block (stmt);
12924 finish_cleanup (RECUR (TRY_HANDLERS (t)), stmt);
12926 else
12928 tree compound_stmt = NULL_TREE;
12930 if (FN_TRY_BLOCK_P (t))
12931 stmt = begin_function_try_block (&compound_stmt);
12932 else
12933 stmt = begin_try_block ();
12935 RECUR (TRY_STMTS (t));
12937 if (FN_TRY_BLOCK_P (t))
12938 finish_function_try_block (stmt);
12939 else
12940 finish_try_block (stmt);
12942 RECUR (TRY_HANDLERS (t));
12943 if (FN_TRY_BLOCK_P (t))
12944 finish_function_handler_sequence (stmt, compound_stmt);
12945 else
12946 finish_handler_sequence (stmt);
12948 break;
12950 case HANDLER:
12952 tree decl = HANDLER_PARMS (t);
12954 if (decl)
12956 decl = tsubst (decl, args, complain, in_decl);
12957 /* Prevent instantiate_decl from trying to instantiate
12958 this variable. We've already done all that needs to be
12959 done. */
12960 if (decl != error_mark_node)
12961 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
12963 stmt = begin_handler ();
12964 finish_handler_parms (decl, stmt);
12965 RECUR (HANDLER_BODY (t));
12966 finish_handler (stmt);
12968 break;
12970 case TAG_DEFN:
12971 tmp = tsubst (TREE_TYPE (t), args, complain, NULL_TREE);
12972 if (CLASS_TYPE_P (tmp))
12974 /* Local classes are not independent templates; they are
12975 instantiated along with their containing function. And this
12976 way we don't have to deal with pushing out of one local class
12977 to instantiate a member of another local class. */
12978 tree fn;
12979 /* Closures are handled by the LAMBDA_EXPR. */
12980 gcc_assert (!LAMBDA_TYPE_P (TREE_TYPE (t)));
12981 complete_type (tmp);
12982 for (fn = TYPE_METHODS (tmp); fn; fn = DECL_CHAIN (fn))
12983 if (!DECL_ARTIFICIAL (fn))
12984 instantiate_decl (fn, /*defer_ok*/0, /*expl_inst_class*/false);
12986 break;
12988 case STATIC_ASSERT:
12990 tree condition;
12992 ++c_inhibit_evaluation_warnings;
12993 condition =
12994 tsubst_expr (STATIC_ASSERT_CONDITION (t),
12995 args,
12996 complain, in_decl,
12997 /*integral_constant_expression_p=*/true);
12998 --c_inhibit_evaluation_warnings;
13000 finish_static_assert (condition,
13001 STATIC_ASSERT_MESSAGE (t),
13002 STATIC_ASSERT_SOURCE_LOCATION (t),
13003 /*member_p=*/false);
13005 break;
13007 case OMP_PARALLEL:
13008 tmp = tsubst_omp_clauses (OMP_PARALLEL_CLAUSES (t),
13009 args, complain, in_decl);
13010 stmt = begin_omp_parallel ();
13011 RECUR (OMP_PARALLEL_BODY (t));
13012 OMP_PARALLEL_COMBINED (finish_omp_parallel (tmp, stmt))
13013 = OMP_PARALLEL_COMBINED (t);
13014 break;
13016 case OMP_TASK:
13017 tmp = tsubst_omp_clauses (OMP_TASK_CLAUSES (t),
13018 args, complain, in_decl);
13019 stmt = begin_omp_task ();
13020 RECUR (OMP_TASK_BODY (t));
13021 finish_omp_task (tmp, stmt);
13022 break;
13024 case OMP_FOR:
13026 tree clauses, body, pre_body;
13027 tree declv, initv, condv, incrv;
13028 int i;
13030 clauses = tsubst_omp_clauses (OMP_FOR_CLAUSES (t),
13031 args, complain, in_decl);
13032 declv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
13033 initv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
13034 condv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
13035 incrv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
13037 stmt = begin_omp_structured_block ();
13039 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (t)); i++)
13040 tsubst_omp_for_iterator (t, i, declv, initv, condv, incrv,
13041 &clauses, args, complain, in_decl,
13042 integral_constant_expression_p);
13044 pre_body = push_stmt_list ();
13045 RECUR (OMP_FOR_PRE_BODY (t));
13046 pre_body = pop_stmt_list (pre_body);
13048 body = push_stmt_list ();
13049 RECUR (OMP_FOR_BODY (t));
13050 body = pop_stmt_list (body);
13052 t = finish_omp_for (EXPR_LOCATION (t), declv, initv, condv, incrv,
13053 body, pre_body, clauses);
13055 add_stmt (finish_omp_structured_block (stmt));
13057 break;
13059 case OMP_SECTIONS:
13060 case OMP_SINGLE:
13061 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), args, complain, in_decl);
13062 stmt = push_stmt_list ();
13063 RECUR (OMP_BODY (t));
13064 stmt = pop_stmt_list (stmt);
13066 t = copy_node (t);
13067 OMP_BODY (t) = stmt;
13068 OMP_CLAUSES (t) = tmp;
13069 add_stmt (t);
13070 break;
13072 case OMP_SECTION:
13073 case OMP_CRITICAL:
13074 case OMP_MASTER:
13075 case OMP_ORDERED:
13076 stmt = push_stmt_list ();
13077 RECUR (OMP_BODY (t));
13078 stmt = pop_stmt_list (stmt);
13080 t = copy_node (t);
13081 OMP_BODY (t) = stmt;
13082 add_stmt (t);
13083 break;
13085 case OMP_ATOMIC:
13086 gcc_assert (OMP_ATOMIC_DEPENDENT_P (t));
13087 if (TREE_CODE (TREE_OPERAND (t, 1)) != MODIFY_EXPR)
13089 tree op1 = TREE_OPERAND (t, 1);
13090 tree rhs1 = NULL_TREE;
13091 tree lhs, rhs;
13092 if (TREE_CODE (op1) == COMPOUND_EXPR)
13094 rhs1 = RECUR (TREE_OPERAND (op1, 0));
13095 op1 = TREE_OPERAND (op1, 1);
13097 lhs = RECUR (TREE_OPERAND (op1, 0));
13098 rhs = RECUR (TREE_OPERAND (op1, 1));
13099 finish_omp_atomic (OMP_ATOMIC, TREE_CODE (op1), lhs, rhs,
13100 NULL_TREE, NULL_TREE, rhs1);
13102 else
13104 tree op1 = TREE_OPERAND (t, 1);
13105 tree v = NULL_TREE, lhs, rhs = NULL_TREE, lhs1 = NULL_TREE;
13106 tree rhs1 = NULL_TREE;
13107 enum tree_code code = TREE_CODE (TREE_OPERAND (op1, 1));
13108 enum tree_code opcode = NOP_EXPR;
13109 if (code == OMP_ATOMIC_READ)
13111 v = RECUR (TREE_OPERAND (op1, 0));
13112 lhs = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
13114 else if (code == OMP_ATOMIC_CAPTURE_OLD
13115 || code == OMP_ATOMIC_CAPTURE_NEW)
13117 tree op11 = TREE_OPERAND (TREE_OPERAND (op1, 1), 1);
13118 v = RECUR (TREE_OPERAND (op1, 0));
13119 lhs1 = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
13120 if (TREE_CODE (op11) == COMPOUND_EXPR)
13122 rhs1 = RECUR (TREE_OPERAND (op11, 0));
13123 op11 = TREE_OPERAND (op11, 1);
13125 lhs = RECUR (TREE_OPERAND (op11, 0));
13126 rhs = RECUR (TREE_OPERAND (op11, 1));
13127 opcode = TREE_CODE (op11);
13129 else
13131 code = OMP_ATOMIC;
13132 lhs = RECUR (TREE_OPERAND (op1, 0));
13133 rhs = RECUR (TREE_OPERAND (op1, 1));
13135 finish_omp_atomic (code, opcode, lhs, rhs, v, lhs1, rhs1);
13137 break;
13139 case TRANSACTION_EXPR:
13141 int flags = 0;
13142 flags |= (TRANSACTION_EXPR_OUTER (t) ? TM_STMT_ATTR_OUTER : 0);
13143 flags |= (TRANSACTION_EXPR_RELAXED (t) ? TM_STMT_ATTR_RELAXED : 0);
13145 if (TRANSACTION_EXPR_IS_STMT (t))
13147 tree body = TRANSACTION_EXPR_BODY (t);
13148 tree noex = NULL_TREE;
13149 if (TREE_CODE (body) == MUST_NOT_THROW_EXPR)
13151 noex = MUST_NOT_THROW_COND (body);
13152 if (noex == NULL_TREE)
13153 noex = boolean_true_node;
13154 body = TREE_OPERAND (body, 0);
13156 stmt = begin_transaction_stmt (input_location, NULL, flags);
13157 RECUR (body);
13158 finish_transaction_stmt (stmt, NULL, flags, RECUR (noex));
13160 else
13162 stmt = build_transaction_expr (EXPR_LOCATION (t),
13163 RECUR (TRANSACTION_EXPR_BODY (t)),
13164 flags, NULL_TREE);
13165 RETURN (stmt);
13168 break;
13170 case MUST_NOT_THROW_EXPR:
13171 RETURN (build_must_not_throw_expr (RECUR (TREE_OPERAND (t, 0)),
13172 RECUR (MUST_NOT_THROW_COND (t))));
13174 case EXPR_PACK_EXPANSION:
13175 error ("invalid use of pack expansion expression");
13176 RETURN (error_mark_node);
13178 case NONTYPE_ARGUMENT_PACK:
13179 error ("use %<...%> to expand argument pack");
13180 RETURN (error_mark_node);
13182 case COMPOUND_EXPR:
13183 tmp = RECUR (TREE_OPERAND (t, 0));
13184 if (tmp == NULL_TREE)
13185 /* If the first operand was a statement, we're done with it. */
13186 RETURN (RECUR (TREE_OPERAND (t, 1)));
13187 RETURN (build_x_compound_expr (EXPR_LOCATION (t), tmp,
13188 RECUR (TREE_OPERAND (t, 1)),
13189 complain));
13191 default:
13192 gcc_assert (!STATEMENT_CODE_P (TREE_CODE (t)));
13194 RETURN (tsubst_copy_and_build (t, args, complain, in_decl,
13195 /*function_p=*/false,
13196 integral_constant_expression_p));
13199 RETURN (NULL_TREE);
13200 out:
13201 input_location = loc;
13202 return r;
13203 #undef RECUR
13204 #undef RETURN
13207 /* T is a postfix-expression that is not being used in a function
13208 call. Return the substituted version of T. */
13210 static tree
13211 tsubst_non_call_postfix_expression (tree t, tree args,
13212 tsubst_flags_t complain,
13213 tree in_decl)
13215 if (TREE_CODE (t) == SCOPE_REF)
13216 t = tsubst_qualified_id (t, args, complain, in_decl,
13217 /*done=*/false, /*address_p=*/false);
13218 else
13219 t = tsubst_copy_and_build (t, args, complain, in_decl,
13220 /*function_p=*/false,
13221 /*integral_constant_expression_p=*/false);
13223 return t;
13226 /* Like tsubst but deals with expressions and performs semantic
13227 analysis. FUNCTION_P is true if T is the "F" in "F (ARGS)". */
13229 tree
13230 tsubst_copy_and_build (tree t,
13231 tree args,
13232 tsubst_flags_t complain,
13233 tree in_decl,
13234 bool function_p,
13235 bool integral_constant_expression_p)
13237 #define RETURN(EXP) do { retval = (EXP); goto out; } while(0)
13238 #define RECUR(NODE) \
13239 tsubst_copy_and_build (NODE, args, complain, in_decl, \
13240 /*function_p=*/false, \
13241 integral_constant_expression_p)
13243 tree retval, op1;
13244 location_t loc;
13246 if (t == NULL_TREE || t == error_mark_node)
13247 return t;
13249 loc = input_location;
13250 if (EXPR_HAS_LOCATION (t))
13251 input_location = EXPR_LOCATION (t);
13253 switch (TREE_CODE (t))
13255 case USING_DECL:
13256 t = DECL_NAME (t);
13257 /* Fall through. */
13258 case IDENTIFIER_NODE:
13260 tree decl;
13261 cp_id_kind idk;
13262 bool non_integral_constant_expression_p;
13263 const char *error_msg;
13265 if (IDENTIFIER_TYPENAME_P (t))
13267 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13268 t = mangle_conv_op_name_for_type (new_type);
13271 /* Look up the name. */
13272 decl = lookup_name (t);
13274 /* By convention, expressions use ERROR_MARK_NODE to indicate
13275 failure, not NULL_TREE. */
13276 if (decl == NULL_TREE)
13277 decl = error_mark_node;
13279 decl = finish_id_expression (t, decl, NULL_TREE,
13280 &idk,
13281 integral_constant_expression_p,
13282 /*allow_non_integral_constant_expression_p=*/(cxx_dialect >= cxx0x),
13283 &non_integral_constant_expression_p,
13284 /*template_p=*/false,
13285 /*done=*/true,
13286 /*address_p=*/false,
13287 /*template_arg_p=*/false,
13288 &error_msg,
13289 input_location);
13290 if (error_msg)
13291 error (error_msg);
13292 if (!function_p && TREE_CODE (decl) == IDENTIFIER_NODE)
13294 if (complain & tf_error)
13295 unqualified_name_lookup_error (decl);
13296 decl = error_mark_node;
13298 RETURN (decl);
13301 case TEMPLATE_ID_EXPR:
13303 tree object;
13304 tree templ = RECUR (TREE_OPERAND (t, 0));
13305 tree targs = TREE_OPERAND (t, 1);
13307 if (targs)
13308 targs = tsubst_template_args (targs, args, complain, in_decl);
13310 if (TREE_CODE (templ) == COMPONENT_REF)
13312 object = TREE_OPERAND (templ, 0);
13313 templ = TREE_OPERAND (templ, 1);
13315 else
13316 object = NULL_TREE;
13317 templ = lookup_template_function (templ, targs);
13319 if (object)
13320 RETURN (build3 (COMPONENT_REF, TREE_TYPE (templ),
13321 object, templ, NULL_TREE));
13322 else
13323 RETURN (baselink_for_fns (templ));
13326 case INDIRECT_REF:
13328 tree r = RECUR (TREE_OPERAND (t, 0));
13330 if (REFERENCE_REF_P (t))
13332 /* A type conversion to reference type will be enclosed in
13333 such an indirect ref, but the substitution of the cast
13334 will have also added such an indirect ref. */
13335 if (TREE_CODE (TREE_TYPE (r)) == REFERENCE_TYPE)
13336 r = convert_from_reference (r);
13338 else
13339 r = build_x_indirect_ref (input_location, r, RO_UNARY_STAR, complain);
13340 RETURN (r);
13343 case NOP_EXPR:
13344 RETURN (build_nop
13345 (tsubst (TREE_TYPE (t), args, complain, in_decl),
13346 RECUR (TREE_OPERAND (t, 0))));
13348 case IMPLICIT_CONV_EXPR:
13350 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13351 tree expr = RECUR (TREE_OPERAND (t, 0));
13352 int flags = LOOKUP_IMPLICIT;
13353 if (IMPLICIT_CONV_EXPR_DIRECT_INIT (t))
13354 flags = LOOKUP_NORMAL;
13355 RETURN (perform_implicit_conversion_flags (type, expr, complain,
13356 flags));
13359 case CONVERT_EXPR:
13360 RETURN (build1
13361 (CONVERT_EXPR,
13362 tsubst (TREE_TYPE (t), args, complain, in_decl),
13363 RECUR (TREE_OPERAND (t, 0))));
13365 case CAST_EXPR:
13366 case REINTERPRET_CAST_EXPR:
13367 case CONST_CAST_EXPR:
13368 case DYNAMIC_CAST_EXPR:
13369 case STATIC_CAST_EXPR:
13371 tree type;
13372 tree op, r = NULL_TREE;
13374 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13375 if (integral_constant_expression_p
13376 && !cast_valid_in_integral_constant_expression_p (type))
13378 if (complain & tf_error)
13379 error ("a cast to a type other than an integral or "
13380 "enumeration type cannot appear in a constant-expression");
13381 RETURN (error_mark_node);
13384 op = RECUR (TREE_OPERAND (t, 0));
13386 ++c_inhibit_evaluation_warnings;
13387 switch (TREE_CODE (t))
13389 case CAST_EXPR:
13390 r = build_functional_cast (type, op, complain);
13391 break;
13392 case REINTERPRET_CAST_EXPR:
13393 r = build_reinterpret_cast (type, op, complain);
13394 break;
13395 case CONST_CAST_EXPR:
13396 r = build_const_cast (type, op, complain);
13397 break;
13398 case DYNAMIC_CAST_EXPR:
13399 r = build_dynamic_cast (type, op, complain);
13400 break;
13401 case STATIC_CAST_EXPR:
13402 r = build_static_cast (type, op, complain);
13403 break;
13404 default:
13405 gcc_unreachable ();
13407 --c_inhibit_evaluation_warnings;
13409 RETURN (r);
13412 case POSTDECREMENT_EXPR:
13413 case POSTINCREMENT_EXPR:
13414 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
13415 args, complain, in_decl);
13416 RETURN (build_x_unary_op (input_location, TREE_CODE (t), op1, complain));
13418 case PREDECREMENT_EXPR:
13419 case PREINCREMENT_EXPR:
13420 case NEGATE_EXPR:
13421 case BIT_NOT_EXPR:
13422 case ABS_EXPR:
13423 case TRUTH_NOT_EXPR:
13424 case UNARY_PLUS_EXPR: /* Unary + */
13425 case REALPART_EXPR:
13426 case IMAGPART_EXPR:
13427 RETURN (build_x_unary_op (input_location, TREE_CODE (t),
13428 RECUR (TREE_OPERAND (t, 0)), complain));
13430 case FIX_TRUNC_EXPR:
13431 RETURN (cp_build_unary_op (FIX_TRUNC_EXPR, RECUR (TREE_OPERAND (t, 0)),
13432 0, complain));
13434 case ADDR_EXPR:
13435 op1 = TREE_OPERAND (t, 0);
13436 if (TREE_CODE (op1) == LABEL_DECL)
13437 RETURN (finish_label_address_expr (DECL_NAME (op1),
13438 EXPR_LOCATION (op1)));
13439 if (TREE_CODE (op1) == SCOPE_REF)
13440 op1 = tsubst_qualified_id (op1, args, complain, in_decl,
13441 /*done=*/true, /*address_p=*/true);
13442 else
13443 op1 = tsubst_non_call_postfix_expression (op1, args, complain,
13444 in_decl);
13445 RETURN (build_x_unary_op (input_location, ADDR_EXPR, op1, complain));
13447 case PLUS_EXPR:
13448 case MINUS_EXPR:
13449 case MULT_EXPR:
13450 case TRUNC_DIV_EXPR:
13451 case CEIL_DIV_EXPR:
13452 case FLOOR_DIV_EXPR:
13453 case ROUND_DIV_EXPR:
13454 case EXACT_DIV_EXPR:
13455 case BIT_AND_EXPR:
13456 case BIT_IOR_EXPR:
13457 case BIT_XOR_EXPR:
13458 case TRUNC_MOD_EXPR:
13459 case FLOOR_MOD_EXPR:
13460 case TRUTH_ANDIF_EXPR:
13461 case TRUTH_ORIF_EXPR:
13462 case TRUTH_AND_EXPR:
13463 case TRUTH_OR_EXPR:
13464 case RSHIFT_EXPR:
13465 case LSHIFT_EXPR:
13466 case RROTATE_EXPR:
13467 case LROTATE_EXPR:
13468 case EQ_EXPR:
13469 case NE_EXPR:
13470 case MAX_EXPR:
13471 case MIN_EXPR:
13472 case LE_EXPR:
13473 case GE_EXPR:
13474 case LT_EXPR:
13475 case GT_EXPR:
13476 case MEMBER_REF:
13477 case DOTSTAR_EXPR:
13479 tree r;
13481 ++c_inhibit_evaluation_warnings;
13483 r = build_x_binary_op
13484 (input_location, TREE_CODE (t),
13485 RECUR (TREE_OPERAND (t, 0)),
13486 (TREE_NO_WARNING (TREE_OPERAND (t, 0))
13487 ? ERROR_MARK
13488 : TREE_CODE (TREE_OPERAND (t, 0))),
13489 RECUR (TREE_OPERAND (t, 1)),
13490 (TREE_NO_WARNING (TREE_OPERAND (t, 1))
13491 ? ERROR_MARK
13492 : TREE_CODE (TREE_OPERAND (t, 1))),
13493 /*overload=*/NULL,
13494 complain);
13495 if (EXPR_P (r) && TREE_NO_WARNING (t))
13496 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
13498 --c_inhibit_evaluation_warnings;
13500 RETURN (r);
13503 case SCOPE_REF:
13504 RETURN (tsubst_qualified_id (t, args, complain, in_decl, /*done=*/true,
13505 /*address_p=*/false));
13506 case ARRAY_REF:
13507 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
13508 args, complain, in_decl);
13509 RETURN (build_x_array_ref (EXPR_LOCATION (t), op1,
13510 RECUR (TREE_OPERAND (t, 1)), complain));
13512 case SIZEOF_EXPR:
13513 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0)))
13514 RETURN (tsubst_copy (t, args, complain, in_decl));
13515 /* Fall through */
13517 case ALIGNOF_EXPR:
13519 tree r;
13521 op1 = TREE_OPERAND (t, 0);
13522 if (TREE_CODE (t) == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (t))
13523 op1 = TREE_TYPE (op1);
13524 if (!args)
13526 /* When there are no ARGS, we are trying to evaluate a
13527 non-dependent expression from the parser. Trying to do
13528 the substitutions may not work. */
13529 if (!TYPE_P (op1))
13530 op1 = TREE_TYPE (op1);
13532 else
13534 ++cp_unevaluated_operand;
13535 ++c_inhibit_evaluation_warnings;
13536 if (TYPE_P (op1))
13537 op1 = tsubst (op1, args, complain, in_decl);
13538 else
13539 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
13540 /*function_p=*/false,
13541 /*integral_constant_expression_p=*/
13542 false);
13543 --cp_unevaluated_operand;
13544 --c_inhibit_evaluation_warnings;
13546 if (TYPE_P (op1))
13547 r = cxx_sizeof_or_alignof_type (op1, TREE_CODE (t),
13548 complain & tf_error);
13549 else
13550 r = cxx_sizeof_or_alignof_expr (op1, TREE_CODE (t),
13551 complain & tf_error);
13552 if (TREE_CODE (t) == SIZEOF_EXPR && r != error_mark_node)
13554 if (TREE_CODE (r) != SIZEOF_EXPR || TYPE_P (op1))
13556 if (TYPE_P (op1))
13558 r = build_min (SIZEOF_EXPR, size_type_node,
13559 build1 (NOP_EXPR, op1, error_mark_node));
13560 SIZEOF_EXPR_TYPE_P (r) = 1;
13562 else
13563 r = build_min (SIZEOF_EXPR, size_type_node, op1);
13564 TREE_SIDE_EFFECTS (r) = 0;
13565 TREE_READONLY (r) = 1;
13567 SET_EXPR_LOCATION (r, EXPR_LOCATION (t));
13569 RETURN (r);
13572 case AT_ENCODE_EXPR:
13574 op1 = TREE_OPERAND (t, 0);
13575 ++cp_unevaluated_operand;
13576 ++c_inhibit_evaluation_warnings;
13577 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
13578 /*function_p=*/false,
13579 /*integral_constant_expression_p=*/false);
13580 --cp_unevaluated_operand;
13581 --c_inhibit_evaluation_warnings;
13582 RETURN (objc_build_encode_expr (op1));
13585 case NOEXCEPT_EXPR:
13586 op1 = TREE_OPERAND (t, 0);
13587 ++cp_unevaluated_operand;
13588 ++c_inhibit_evaluation_warnings;
13589 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
13590 /*function_p=*/false,
13591 /*integral_constant_expression_p=*/false);
13592 --cp_unevaluated_operand;
13593 --c_inhibit_evaluation_warnings;
13594 RETURN (finish_noexcept_expr (op1, complain));
13596 case MODOP_EXPR:
13598 tree r = build_x_modify_expr
13599 (EXPR_LOCATION (t),
13600 RECUR (TREE_OPERAND (t, 0)),
13601 TREE_CODE (TREE_OPERAND (t, 1)),
13602 RECUR (TREE_OPERAND (t, 2)),
13603 complain);
13604 /* TREE_NO_WARNING must be set if either the expression was
13605 parenthesized or it uses an operator such as >>= rather
13606 than plain assignment. In the former case, it was already
13607 set and must be copied. In the latter case,
13608 build_x_modify_expr sets it and it must not be reset
13609 here. */
13610 if (TREE_NO_WARNING (t))
13611 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
13612 RETURN (r);
13615 case ARROW_EXPR:
13616 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
13617 args, complain, in_decl);
13618 /* Remember that there was a reference to this entity. */
13619 if (DECL_P (op1))
13620 mark_used (op1);
13621 RETURN (build_x_arrow (input_location, op1, complain));
13623 case NEW_EXPR:
13625 tree placement = RECUR (TREE_OPERAND (t, 0));
13626 tree init = RECUR (TREE_OPERAND (t, 3));
13627 VEC(tree,gc) *placement_vec;
13628 VEC(tree,gc) *init_vec;
13629 tree ret;
13631 if (placement == NULL_TREE)
13632 placement_vec = NULL;
13633 else
13635 placement_vec = make_tree_vector ();
13636 for (; placement != NULL_TREE; placement = TREE_CHAIN (placement))
13637 VEC_safe_push (tree, gc, placement_vec, TREE_VALUE (placement));
13640 /* If there was an initializer in the original tree, but it
13641 instantiated to an empty list, then we should pass a
13642 non-NULL empty vector to tell build_new that it was an
13643 empty initializer() rather than no initializer. This can
13644 only happen when the initializer is a pack expansion whose
13645 parameter packs are of length zero. */
13646 if (init == NULL_TREE && TREE_OPERAND (t, 3) == NULL_TREE)
13647 init_vec = NULL;
13648 else
13650 init_vec = make_tree_vector ();
13651 if (init == void_zero_node)
13652 gcc_assert (init_vec != NULL);
13653 else
13655 for (; init != NULL_TREE; init = TREE_CHAIN (init))
13656 VEC_safe_push (tree, gc, init_vec, TREE_VALUE (init));
13660 ret = build_new (&placement_vec,
13661 tsubst (TREE_OPERAND (t, 1), args, complain, in_decl),
13662 RECUR (TREE_OPERAND (t, 2)),
13663 &init_vec,
13664 NEW_EXPR_USE_GLOBAL (t),
13665 complain);
13667 if (placement_vec != NULL)
13668 release_tree_vector (placement_vec);
13669 if (init_vec != NULL)
13670 release_tree_vector (init_vec);
13672 RETURN (ret);
13675 case DELETE_EXPR:
13676 RETURN (delete_sanity
13677 (RECUR (TREE_OPERAND (t, 0)),
13678 RECUR (TREE_OPERAND (t, 1)),
13679 DELETE_EXPR_USE_VEC (t),
13680 DELETE_EXPR_USE_GLOBAL (t),
13681 complain));
13683 case COMPOUND_EXPR:
13684 RETURN (build_x_compound_expr (EXPR_LOCATION (t),
13685 RECUR (TREE_OPERAND (t, 0)),
13686 RECUR (TREE_OPERAND (t, 1)),
13687 complain));
13689 case CALL_EXPR:
13691 tree function;
13692 VEC(tree,gc) *call_args;
13693 unsigned int nargs, i;
13694 bool qualified_p;
13695 bool koenig_p;
13696 tree ret;
13698 function = CALL_EXPR_FN (t);
13699 /* When we parsed the expression, we determined whether or
13700 not Koenig lookup should be performed. */
13701 koenig_p = KOENIG_LOOKUP_P (t);
13702 if (TREE_CODE (function) == SCOPE_REF)
13704 qualified_p = true;
13705 function = tsubst_qualified_id (function, args, complain, in_decl,
13706 /*done=*/false,
13707 /*address_p=*/false);
13709 else if (koenig_p && TREE_CODE (function) == IDENTIFIER_NODE)
13711 /* Do nothing; calling tsubst_copy_and_build on an identifier
13712 would incorrectly perform unqualified lookup again.
13714 Note that we can also have an IDENTIFIER_NODE if the earlier
13715 unqualified lookup found a member function; in that case
13716 koenig_p will be false and we do want to do the lookup
13717 again to find the instantiated member function.
13719 FIXME but doing that causes c++/15272, so we need to stop
13720 using IDENTIFIER_NODE in that situation. */
13721 qualified_p = false;
13723 else
13725 if (TREE_CODE (function) == COMPONENT_REF)
13727 tree op = TREE_OPERAND (function, 1);
13729 qualified_p = (TREE_CODE (op) == SCOPE_REF
13730 || (BASELINK_P (op)
13731 && BASELINK_QUALIFIED_P (op)));
13733 else
13734 qualified_p = false;
13736 function = tsubst_copy_and_build (function, args, complain,
13737 in_decl,
13738 !qualified_p,
13739 integral_constant_expression_p);
13741 if (BASELINK_P (function))
13742 qualified_p = true;
13745 nargs = call_expr_nargs (t);
13746 call_args = make_tree_vector ();
13747 for (i = 0; i < nargs; ++i)
13749 tree arg = CALL_EXPR_ARG (t, i);
13751 if (!PACK_EXPANSION_P (arg))
13752 VEC_safe_push (tree, gc, call_args,
13753 RECUR (CALL_EXPR_ARG (t, i)));
13754 else
13756 /* Expand the pack expansion and push each entry onto
13757 CALL_ARGS. */
13758 arg = tsubst_pack_expansion (arg, args, complain, in_decl);
13759 if (TREE_CODE (arg) == TREE_VEC)
13761 unsigned int len, j;
13763 len = TREE_VEC_LENGTH (arg);
13764 for (j = 0; j < len; ++j)
13766 tree value = TREE_VEC_ELT (arg, j);
13767 if (value != NULL_TREE)
13768 value = convert_from_reference (value);
13769 VEC_safe_push (tree, gc, call_args, value);
13772 else
13774 /* A partial substitution. Add one entry. */
13775 VEC_safe_push (tree, gc, call_args, arg);
13780 /* We do not perform argument-dependent lookup if normal
13781 lookup finds a non-function, in accordance with the
13782 expected resolution of DR 218. */
13783 if (koenig_p
13784 && ((is_overloaded_fn (function)
13785 /* If lookup found a member function, the Koenig lookup is
13786 not appropriate, even if an unqualified-name was used
13787 to denote the function. */
13788 && !DECL_FUNCTION_MEMBER_P (get_first_fn (function)))
13789 || TREE_CODE (function) == IDENTIFIER_NODE)
13790 /* Only do this when substitution turns a dependent call
13791 into a non-dependent call. */
13792 && type_dependent_expression_p_push (t)
13793 && !any_type_dependent_arguments_p (call_args))
13794 function = perform_koenig_lookup (function, call_args, false,
13795 tf_none);
13797 if (TREE_CODE (function) == IDENTIFIER_NODE
13798 && !any_type_dependent_arguments_p (call_args))
13800 if (koenig_p && (complain & tf_warning_or_error))
13802 /* For backwards compatibility and good diagnostics, try
13803 the unqualified lookup again if we aren't in SFINAE
13804 context. */
13805 tree unq = (tsubst_copy_and_build
13806 (function, args, complain, in_decl, true,
13807 integral_constant_expression_p));
13808 if (unq == error_mark_node)
13809 RETURN (error_mark_node);
13811 if (unq != function)
13813 tree fn = unq;
13814 if (TREE_CODE (fn) == INDIRECT_REF)
13815 fn = TREE_OPERAND (fn, 0);
13816 if (TREE_CODE (fn) == COMPONENT_REF)
13817 fn = TREE_OPERAND (fn, 1);
13818 if (is_overloaded_fn (fn))
13819 fn = get_first_fn (fn);
13820 permerror (EXPR_LOC_OR_HERE (t),
13821 "%qD was not declared in this scope, "
13822 "and no declarations were found by "
13823 "argument-dependent lookup at the point "
13824 "of instantiation", function);
13825 if (!DECL_P (fn))
13826 /* Can't say anything more. */;
13827 else if (DECL_CLASS_SCOPE_P (fn))
13829 inform (EXPR_LOC_OR_HERE (t),
13830 "declarations in dependent base %qT are "
13831 "not found by unqualified lookup",
13832 DECL_CLASS_CONTEXT (fn));
13833 if (current_class_ptr)
13834 inform (EXPR_LOC_OR_HERE (t),
13835 "use %<this->%D%> instead", function);
13836 else
13837 inform (EXPR_LOC_OR_HERE (t),
13838 "use %<%T::%D%> instead",
13839 current_class_name, function);
13841 else
13842 inform (0, "%q+D declared here, later in the "
13843 "translation unit", fn);
13844 function = unq;
13847 if (TREE_CODE (function) == IDENTIFIER_NODE)
13849 if (complain & tf_error)
13850 unqualified_name_lookup_error (function);
13851 release_tree_vector (call_args);
13852 RETURN (error_mark_node);
13856 /* Remember that there was a reference to this entity. */
13857 if (DECL_P (function))
13858 mark_used (function);
13860 if (TREE_CODE (function) == OFFSET_REF)
13861 ret = build_offset_ref_call_from_tree (function, &call_args,
13862 complain);
13863 else if (TREE_CODE (function) == COMPONENT_REF)
13865 tree instance = TREE_OPERAND (function, 0);
13866 tree fn = TREE_OPERAND (function, 1);
13868 if (processing_template_decl
13869 && (type_dependent_expression_p (instance)
13870 || (!BASELINK_P (fn)
13871 && TREE_CODE (fn) != FIELD_DECL)
13872 || type_dependent_expression_p (fn)
13873 || any_type_dependent_arguments_p (call_args)))
13874 ret = build_nt_call_vec (function, call_args);
13875 else if (!BASELINK_P (fn))
13876 ret = finish_call_expr (function, &call_args,
13877 /*disallow_virtual=*/false,
13878 /*koenig_p=*/false,
13879 complain);
13880 else
13881 ret = (build_new_method_call
13882 (instance, fn,
13883 &call_args, NULL_TREE,
13884 qualified_p ? LOOKUP_NONVIRTUAL : LOOKUP_NORMAL,
13885 /*fn_p=*/NULL,
13886 complain));
13888 else
13889 ret = finish_call_expr (function, &call_args,
13890 /*disallow_virtual=*/qualified_p,
13891 koenig_p,
13892 complain);
13894 release_tree_vector (call_args);
13896 RETURN (ret);
13899 case COND_EXPR:
13901 tree cond = RECUR (TREE_OPERAND (t, 0));
13902 tree exp1, exp2;
13904 if (TREE_CODE (cond) == INTEGER_CST)
13906 if (integer_zerop (cond))
13908 ++c_inhibit_evaluation_warnings;
13909 exp1 = RECUR (TREE_OPERAND (t, 1));
13910 --c_inhibit_evaluation_warnings;
13911 exp2 = RECUR (TREE_OPERAND (t, 2));
13913 else
13915 exp1 = RECUR (TREE_OPERAND (t, 1));
13916 ++c_inhibit_evaluation_warnings;
13917 exp2 = RECUR (TREE_OPERAND (t, 2));
13918 --c_inhibit_evaluation_warnings;
13921 else
13923 exp1 = RECUR (TREE_OPERAND (t, 1));
13924 exp2 = RECUR (TREE_OPERAND (t, 2));
13927 RETURN (build_x_conditional_expr (EXPR_LOCATION (t),
13928 cond, exp1, exp2, complain));
13931 case PSEUDO_DTOR_EXPR:
13932 RETURN (finish_pseudo_destructor_expr
13933 (RECUR (TREE_OPERAND (t, 0)),
13934 RECUR (TREE_OPERAND (t, 1)),
13935 tsubst (TREE_OPERAND (t, 2), args, complain, in_decl)));
13937 case TREE_LIST:
13939 tree purpose, value, chain;
13941 if (t == void_list_node)
13942 RETURN (t);
13944 if ((TREE_PURPOSE (t) && PACK_EXPANSION_P (TREE_PURPOSE (t)))
13945 || (TREE_VALUE (t) && PACK_EXPANSION_P (TREE_VALUE (t))))
13947 /* We have pack expansions, so expand those and
13948 create a new list out of it. */
13949 tree purposevec = NULL_TREE;
13950 tree valuevec = NULL_TREE;
13951 tree chain;
13952 int i, len = -1;
13954 /* Expand the argument expressions. */
13955 if (TREE_PURPOSE (t))
13956 purposevec = tsubst_pack_expansion (TREE_PURPOSE (t), args,
13957 complain, in_decl);
13958 if (TREE_VALUE (t))
13959 valuevec = tsubst_pack_expansion (TREE_VALUE (t), args,
13960 complain, in_decl);
13962 /* Build the rest of the list. */
13963 chain = TREE_CHAIN (t);
13964 if (chain && chain != void_type_node)
13965 chain = RECUR (chain);
13967 /* Determine the number of arguments. */
13968 if (purposevec && TREE_CODE (purposevec) == TREE_VEC)
13970 len = TREE_VEC_LENGTH (purposevec);
13971 gcc_assert (!valuevec || len == TREE_VEC_LENGTH (valuevec));
13973 else if (TREE_CODE (valuevec) == TREE_VEC)
13974 len = TREE_VEC_LENGTH (valuevec);
13975 else
13977 /* Since we only performed a partial substitution into
13978 the argument pack, we only RETURN (a single list
13979 node. */
13980 if (purposevec == TREE_PURPOSE (t)
13981 && valuevec == TREE_VALUE (t)
13982 && chain == TREE_CHAIN (t))
13983 RETURN (t);
13985 RETURN (tree_cons (purposevec, valuevec, chain));
13988 /* Convert the argument vectors into a TREE_LIST */
13989 i = len;
13990 while (i > 0)
13992 /* Grab the Ith values. */
13993 i--;
13994 purpose = purposevec ? TREE_VEC_ELT (purposevec, i)
13995 : NULL_TREE;
13996 value
13997 = valuevec ? convert_from_reference (TREE_VEC_ELT (valuevec, i))
13998 : NULL_TREE;
14000 /* Build the list (backwards). */
14001 chain = tree_cons (purpose, value, chain);
14004 RETURN (chain);
14007 purpose = TREE_PURPOSE (t);
14008 if (purpose)
14009 purpose = RECUR (purpose);
14010 value = TREE_VALUE (t);
14011 if (value)
14012 value = RECUR (value);
14013 chain = TREE_CHAIN (t);
14014 if (chain && chain != void_type_node)
14015 chain = RECUR (chain);
14016 if (purpose == TREE_PURPOSE (t)
14017 && value == TREE_VALUE (t)
14018 && chain == TREE_CHAIN (t))
14019 RETURN (t);
14020 RETURN (tree_cons (purpose, value, chain));
14023 case COMPONENT_REF:
14025 tree object;
14026 tree object_type;
14027 tree member;
14029 object = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
14030 args, complain, in_decl);
14031 /* Remember that there was a reference to this entity. */
14032 if (DECL_P (object))
14033 mark_used (object);
14034 object_type = TREE_TYPE (object);
14036 member = TREE_OPERAND (t, 1);
14037 if (BASELINK_P (member))
14038 member = tsubst_baselink (member,
14039 non_reference (TREE_TYPE (object)),
14040 args, complain, in_decl);
14041 else
14042 member = tsubst_copy (member, args, complain, in_decl);
14043 if (member == error_mark_node)
14044 RETURN (error_mark_node);
14046 if (type_dependent_expression_p (object))
14047 /* We can't do much here. */;
14048 else if (!CLASS_TYPE_P (object_type))
14050 if (scalarish_type_p (object_type))
14052 tree s = NULL_TREE;
14053 tree dtor = member;
14055 if (TREE_CODE (dtor) == SCOPE_REF)
14057 s = TREE_OPERAND (dtor, 0);
14058 dtor = TREE_OPERAND (dtor, 1);
14060 if (TREE_CODE (dtor) == BIT_NOT_EXPR)
14062 dtor = TREE_OPERAND (dtor, 0);
14063 if (TYPE_P (dtor))
14064 RETURN (finish_pseudo_destructor_expr (object, s, dtor));
14068 else if (TREE_CODE (member) == SCOPE_REF
14069 && TREE_CODE (TREE_OPERAND (member, 1)) == TEMPLATE_ID_EXPR)
14071 /* Lookup the template functions now that we know what the
14072 scope is. */
14073 tree scope = TREE_OPERAND (member, 0);
14074 tree tmpl = TREE_OPERAND (TREE_OPERAND (member, 1), 0);
14075 tree args = TREE_OPERAND (TREE_OPERAND (member, 1), 1);
14076 member = lookup_qualified_name (scope, tmpl,
14077 /*is_type_p=*/false,
14078 /*complain=*/false);
14079 if (BASELINK_P (member))
14081 BASELINK_FUNCTIONS (member)
14082 = build_nt (TEMPLATE_ID_EXPR, BASELINK_FUNCTIONS (member),
14083 args);
14084 member = (adjust_result_of_qualified_name_lookup
14085 (member, BINFO_TYPE (BASELINK_BINFO (member)),
14086 object_type));
14088 else
14090 qualified_name_lookup_error (scope, tmpl, member,
14091 input_location);
14092 RETURN (error_mark_node);
14095 else if (TREE_CODE (member) == SCOPE_REF
14096 && !CLASS_TYPE_P (TREE_OPERAND (member, 0))
14097 && TREE_CODE (TREE_OPERAND (member, 0)) != NAMESPACE_DECL)
14099 if (complain & tf_error)
14101 if (TYPE_P (TREE_OPERAND (member, 0)))
14102 error ("%qT is not a class or namespace",
14103 TREE_OPERAND (member, 0));
14104 else
14105 error ("%qD is not a class or namespace",
14106 TREE_OPERAND (member, 0));
14108 RETURN (error_mark_node);
14110 else if (TREE_CODE (member) == FIELD_DECL)
14111 RETURN (finish_non_static_data_member (member, object, NULL_TREE));
14113 RETURN (finish_class_member_access_expr (object, member,
14114 /*template_p=*/false,
14115 complain));
14118 case THROW_EXPR:
14119 RETURN (build_throw
14120 (RECUR (TREE_OPERAND (t, 0))));
14122 case CONSTRUCTOR:
14124 VEC(constructor_elt,gc) *n;
14125 constructor_elt *ce;
14126 unsigned HOST_WIDE_INT idx;
14127 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14128 bool process_index_p;
14129 int newlen;
14130 bool need_copy_p = false;
14131 tree r;
14133 if (type == error_mark_node)
14134 RETURN (error_mark_node);
14136 /* digest_init will do the wrong thing if we let it. */
14137 if (type && TYPE_PTRMEMFUNC_P (type))
14138 RETURN (t);
14140 /* We do not want to process the index of aggregate
14141 initializers as they are identifier nodes which will be
14142 looked up by digest_init. */
14143 process_index_p = !(type && MAYBE_CLASS_TYPE_P (type));
14145 n = VEC_copy (constructor_elt, gc, CONSTRUCTOR_ELTS (t));
14146 newlen = VEC_length (constructor_elt, n);
14147 FOR_EACH_VEC_ELT (constructor_elt, n, idx, ce)
14149 if (ce->index && process_index_p)
14150 ce->index = RECUR (ce->index);
14152 if (PACK_EXPANSION_P (ce->value))
14154 /* Substitute into the pack expansion. */
14155 ce->value = tsubst_pack_expansion (ce->value, args, complain,
14156 in_decl);
14158 if (ce->value == error_mark_node
14159 || PACK_EXPANSION_P (ce->value))
14161 else if (TREE_VEC_LENGTH (ce->value) == 1)
14162 /* Just move the argument into place. */
14163 ce->value = TREE_VEC_ELT (ce->value, 0);
14164 else
14166 /* Update the length of the final CONSTRUCTOR
14167 arguments vector, and note that we will need to
14168 copy.*/
14169 newlen = newlen + TREE_VEC_LENGTH (ce->value) - 1;
14170 need_copy_p = true;
14173 else
14174 ce->value = RECUR (ce->value);
14177 if (need_copy_p)
14179 VEC(constructor_elt,gc) *old_n = n;
14181 n = VEC_alloc (constructor_elt, gc, newlen);
14182 FOR_EACH_VEC_ELT (constructor_elt, old_n, idx, ce)
14184 if (TREE_CODE (ce->value) == TREE_VEC)
14186 int i, len = TREE_VEC_LENGTH (ce->value);
14187 for (i = 0; i < len; ++i)
14188 CONSTRUCTOR_APPEND_ELT (n, 0,
14189 TREE_VEC_ELT (ce->value, i));
14191 else
14192 CONSTRUCTOR_APPEND_ELT (n, 0, ce->value);
14196 r = build_constructor (init_list_type_node, n);
14197 CONSTRUCTOR_IS_DIRECT_INIT (r) = CONSTRUCTOR_IS_DIRECT_INIT (t);
14199 if (TREE_HAS_CONSTRUCTOR (t))
14200 RETURN (finish_compound_literal (type, r, complain));
14202 TREE_TYPE (r) = type;
14203 RETURN (r);
14206 case TYPEID_EXPR:
14208 tree operand_0 = TREE_OPERAND (t, 0);
14209 if (TYPE_P (operand_0))
14211 operand_0 = tsubst (operand_0, args, complain, in_decl);
14212 RETURN (get_typeid (operand_0));
14214 else
14216 operand_0 = RECUR (operand_0);
14217 RETURN (build_typeid (operand_0));
14221 case VAR_DECL:
14222 if (!args)
14223 RETURN (t);
14224 /* Fall through */
14226 case PARM_DECL:
14228 tree r = tsubst_copy (t, args, complain, in_decl);
14230 if (TREE_CODE (TREE_TYPE (t)) != REFERENCE_TYPE)
14231 /* If the original type was a reference, we'll be wrapped in
14232 the appropriate INDIRECT_REF. */
14233 r = convert_from_reference (r);
14234 RETURN (r);
14237 case VA_ARG_EXPR:
14238 RETURN (build_x_va_arg (EXPR_LOCATION (t),
14239 RECUR (TREE_OPERAND (t, 0)),
14240 tsubst (TREE_TYPE (t), args, complain, in_decl)));
14242 case OFFSETOF_EXPR:
14243 RETURN (finish_offsetof (RECUR (TREE_OPERAND (t, 0))));
14245 case TRAIT_EXPR:
14247 tree type1 = tsubst_copy (TRAIT_EXPR_TYPE1 (t), args,
14248 complain, in_decl);
14250 tree type2 = TRAIT_EXPR_TYPE2 (t);
14251 if (type2)
14252 type2 = tsubst_copy (type2, args, complain, in_decl);
14254 RETURN (finish_trait_expr (TRAIT_EXPR_KIND (t), type1, type2));
14257 case STMT_EXPR:
14259 tree old_stmt_expr = cur_stmt_expr;
14260 tree stmt_expr = begin_stmt_expr ();
14262 cur_stmt_expr = stmt_expr;
14263 tsubst_expr (STMT_EXPR_STMT (t), args, complain, in_decl,
14264 integral_constant_expression_p);
14265 stmt_expr = finish_stmt_expr (stmt_expr, false);
14266 cur_stmt_expr = old_stmt_expr;
14268 /* If the resulting list of expression statement is empty,
14269 fold it further into void_zero_node. */
14270 if (empty_expr_stmt_p (stmt_expr))
14271 stmt_expr = void_zero_node;
14273 RETURN (stmt_expr);
14276 case LAMBDA_EXPR:
14278 tree r = build_lambda_expr ();
14280 tree type = tsubst (LAMBDA_EXPR_CLOSURE (t), args, complain, NULL_TREE);
14281 LAMBDA_EXPR_CLOSURE (r) = type;
14282 CLASSTYPE_LAMBDA_EXPR (type) = r;
14284 LAMBDA_EXPR_LOCATION (r)
14285 = LAMBDA_EXPR_LOCATION (t);
14286 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (r)
14287 = LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (t);
14288 LAMBDA_EXPR_MUTABLE_P (r) = LAMBDA_EXPR_MUTABLE_P (t);
14289 LAMBDA_EXPR_DISCRIMINATOR (r)
14290 = (LAMBDA_EXPR_DISCRIMINATOR (t));
14291 /* For a function scope, we want to use tsubst so that we don't
14292 complain about referring to an auto function before its return
14293 type has been deduced. Otherwise, we want to use tsubst_copy so
14294 that we look up the existing field/parameter/variable rather
14295 than build a new one. */
14296 tree scope = LAMBDA_EXPR_EXTRA_SCOPE (t);
14297 if (scope && TREE_CODE (scope) == FUNCTION_DECL)
14298 scope = tsubst (LAMBDA_EXPR_EXTRA_SCOPE (t), args,
14299 complain, in_decl);
14300 else
14301 scope = RECUR (scope);
14302 LAMBDA_EXPR_EXTRA_SCOPE (r) = scope;
14303 LAMBDA_EXPR_RETURN_TYPE (r)
14304 = tsubst (LAMBDA_EXPR_RETURN_TYPE (t), args, complain, in_decl);
14306 gcc_assert (LAMBDA_EXPR_THIS_CAPTURE (t) == NULL_TREE
14307 && LAMBDA_EXPR_PENDING_PROXIES (t) == NULL);
14309 /* Do this again now that LAMBDA_EXPR_EXTRA_SCOPE is set. */
14310 determine_visibility (TYPE_NAME (type));
14311 /* Now that we know visibility, instantiate the type so we have a
14312 declaration of the op() for later calls to lambda_function. */
14313 complete_type (type);
14315 /* The capture list refers to closure members, so this needs to
14316 wait until after we finish instantiating the type. */
14317 LAMBDA_EXPR_CAPTURE_LIST (r)
14318 = RECUR (LAMBDA_EXPR_CAPTURE_LIST (t));
14320 RETURN (build_lambda_object (r));
14323 case TARGET_EXPR:
14324 /* We can get here for a constant initializer of non-dependent type.
14325 FIXME stop folding in cp_parser_initializer_clause. */
14326 gcc_assert (TREE_CONSTANT (t));
14328 tree r = get_target_expr_sfinae (RECUR (TARGET_EXPR_INITIAL (t)),
14329 complain);
14330 TREE_CONSTANT (r) = true;
14331 RETURN (r);
14334 case TRANSACTION_EXPR:
14335 RETURN (tsubst_expr(t, args, complain, in_decl,
14336 integral_constant_expression_p));
14338 default:
14339 /* Handle Objective-C++ constructs, if appropriate. */
14341 tree subst
14342 = objcp_tsubst_copy_and_build (t, args, complain,
14343 in_decl, /*function_p=*/false);
14344 if (subst)
14345 RETURN (subst);
14347 RETURN (tsubst_copy (t, args, complain, in_decl));
14350 #undef RECUR
14351 #undef RETURN
14352 out:
14353 input_location = loc;
14354 return retval;
14357 /* Verify that the instantiated ARGS are valid. For type arguments,
14358 make sure that the type's linkage is ok. For non-type arguments,
14359 make sure they are constants if they are integral or enumerations.
14360 Emit an error under control of COMPLAIN, and return TRUE on error. */
14362 static bool
14363 check_instantiated_arg (tree tmpl, tree t, tsubst_flags_t complain)
14365 if (dependent_template_arg_p (t))
14366 return false;
14367 if (ARGUMENT_PACK_P (t))
14369 tree vec = ARGUMENT_PACK_ARGS (t);
14370 int len = TREE_VEC_LENGTH (vec);
14371 bool result = false;
14372 int i;
14374 for (i = 0; i < len; ++i)
14375 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (vec, i), complain))
14376 result = true;
14377 return result;
14379 else if (TYPE_P (t))
14381 /* [basic.link]: A name with no linkage (notably, the name
14382 of a class or enumeration declared in a local scope)
14383 shall not be used to declare an entity with linkage.
14384 This implies that names with no linkage cannot be used as
14385 template arguments
14387 DR 757 relaxes this restriction for C++0x. */
14388 tree nt = (cxx_dialect > cxx98 ? NULL_TREE
14389 : no_linkage_check (t, /*relaxed_p=*/false));
14391 if (nt)
14393 /* DR 488 makes use of a type with no linkage cause
14394 type deduction to fail. */
14395 if (complain & tf_error)
14397 if (TYPE_ANONYMOUS_P (nt))
14398 error ("%qT is/uses anonymous type", t);
14399 else
14400 error ("template argument for %qD uses local type %qT",
14401 tmpl, t);
14403 return true;
14405 /* In order to avoid all sorts of complications, we do not
14406 allow variably-modified types as template arguments. */
14407 else if (variably_modified_type_p (t, NULL_TREE))
14409 if (complain & tf_error)
14410 error ("%qT is a variably modified type", t);
14411 return true;
14414 /* A non-type argument of integral or enumerated type must be a
14415 constant. */
14416 else if (TREE_TYPE (t)
14417 && INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (t))
14418 && !TREE_CONSTANT (t))
14420 if (complain & tf_error)
14421 error ("integral expression %qE is not constant", t);
14422 return true;
14424 return false;
14427 static bool
14428 check_instantiated_args (tree tmpl, tree args, tsubst_flags_t complain)
14430 int ix, len = DECL_NTPARMS (tmpl);
14431 bool result = false;
14433 for (ix = 0; ix != len; ix++)
14435 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (args, ix), complain))
14436 result = true;
14438 if (result && (complain & tf_error))
14439 error (" trying to instantiate %qD", tmpl);
14440 return result;
14443 /* We're out of SFINAE context now, so generate diagnostics for the access
14444 errors we saw earlier when instantiating D from TMPL and ARGS. */
14446 static void
14447 recheck_decl_substitution (tree d, tree tmpl, tree args)
14449 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
14450 tree type = TREE_TYPE (pattern);
14451 location_t loc = input_location;
14453 push_access_scope (d);
14454 push_deferring_access_checks (dk_no_deferred);
14455 input_location = DECL_SOURCE_LOCATION (pattern);
14456 tsubst (type, args, tf_warning_or_error, d);
14457 input_location = loc;
14458 pop_deferring_access_checks ();
14459 pop_access_scope (d);
14462 /* Instantiate the indicated variable, function, or alias template TMPL with
14463 the template arguments in TARG_PTR. */
14465 static tree
14466 instantiate_template_1 (tree tmpl, tree orig_args, tsubst_flags_t complain)
14468 tree targ_ptr = orig_args;
14469 tree fndecl;
14470 tree gen_tmpl;
14471 tree spec;
14472 bool access_ok = true;
14474 if (tmpl == error_mark_node)
14475 return error_mark_node;
14477 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
14479 /* If this function is a clone, handle it specially. */
14480 if (DECL_CLONED_FUNCTION_P (tmpl))
14482 tree spec;
14483 tree clone;
14485 /* Use DECL_ABSTRACT_ORIGIN because only FUNCTION_DECLs have
14486 DECL_CLONED_FUNCTION. */
14487 spec = instantiate_template (DECL_ABSTRACT_ORIGIN (tmpl),
14488 targ_ptr, complain);
14489 if (spec == error_mark_node)
14490 return error_mark_node;
14492 /* Look for the clone. */
14493 FOR_EACH_CLONE (clone, spec)
14494 if (DECL_NAME (clone) == DECL_NAME (tmpl))
14495 return clone;
14496 /* We should always have found the clone by now. */
14497 gcc_unreachable ();
14498 return NULL_TREE;
14501 /* Check to see if we already have this specialization. */
14502 gen_tmpl = most_general_template (tmpl);
14503 if (tmpl != gen_tmpl)
14504 /* The TMPL is a partial instantiation. To get a full set of
14505 arguments we must add the arguments used to perform the
14506 partial instantiation. */
14507 targ_ptr = add_outermost_template_args (DECL_TI_ARGS (tmpl),
14508 targ_ptr);
14510 /* It would be nice to avoid hashing here and then again in tsubst_decl,
14511 but it doesn't seem to be on the hot path. */
14512 spec = retrieve_specialization (gen_tmpl, targ_ptr, 0);
14514 gcc_assert (tmpl == gen_tmpl
14515 || ((fndecl = retrieve_specialization (tmpl, orig_args, 0))
14516 == spec)
14517 || fndecl == NULL_TREE);
14519 if (spec != NULL_TREE)
14521 if (FNDECL_HAS_ACCESS_ERRORS (spec))
14523 if (complain & tf_error)
14524 recheck_decl_substitution (spec, gen_tmpl, targ_ptr);
14525 return error_mark_node;
14527 return spec;
14530 if (check_instantiated_args (gen_tmpl, INNERMOST_TEMPLATE_ARGS (targ_ptr),
14531 complain))
14532 return error_mark_node;
14534 /* We are building a FUNCTION_DECL, during which the access of its
14535 parameters and return types have to be checked. However this
14536 FUNCTION_DECL which is the desired context for access checking
14537 is not built yet. We solve this chicken-and-egg problem by
14538 deferring all checks until we have the FUNCTION_DECL. */
14539 push_deferring_access_checks (dk_deferred);
14541 /* Instantiation of the function happens in the context of the function
14542 template, not the context of the overload resolution we're doing. */
14543 push_to_top_level ();
14544 /* If there are dependent arguments, e.g. because we're doing partial
14545 ordering, make sure processing_template_decl stays set. */
14546 if (uses_template_parms (targ_ptr))
14547 ++processing_template_decl;
14548 if (DECL_CLASS_SCOPE_P (gen_tmpl))
14550 tree ctx = tsubst (DECL_CONTEXT (gen_tmpl), targ_ptr,
14551 complain, gen_tmpl);
14552 push_nested_class (ctx);
14554 /* Substitute template parameters to obtain the specialization. */
14555 fndecl = tsubst (DECL_TEMPLATE_RESULT (gen_tmpl),
14556 targ_ptr, complain, gen_tmpl);
14557 if (DECL_CLASS_SCOPE_P (gen_tmpl))
14558 pop_nested_class ();
14559 pop_from_top_level ();
14561 if (fndecl == error_mark_node)
14563 pop_deferring_access_checks ();
14564 return error_mark_node;
14567 /* The DECL_TI_TEMPLATE should always be the immediate parent
14568 template, not the most general template. */
14569 DECL_TI_TEMPLATE (fndecl) = tmpl;
14571 /* Now we know the specialization, compute access previously
14572 deferred. */
14573 push_access_scope (fndecl);
14574 if (!perform_deferred_access_checks (complain))
14575 access_ok = false;
14576 pop_access_scope (fndecl);
14577 pop_deferring_access_checks ();
14579 /* If we've just instantiated the main entry point for a function,
14580 instantiate all the alternate entry points as well. We do this
14581 by cloning the instantiation of the main entry point, not by
14582 instantiating the template clones. */
14583 if (DECL_CHAIN (gen_tmpl) && DECL_CLONED_FUNCTION_P (DECL_CHAIN (gen_tmpl)))
14584 clone_function_decl (fndecl, /*update_method_vec_p=*/0);
14586 if (!access_ok)
14588 if (!(complain & tf_error))
14590 /* Remember to reinstantiate when we're out of SFINAE so the user
14591 can see the errors. */
14592 FNDECL_HAS_ACCESS_ERRORS (fndecl) = true;
14594 return error_mark_node;
14596 return fndecl;
14599 /* Wrapper for instantiate_template_1. */
14601 tree
14602 instantiate_template (tree tmpl, tree orig_args, tsubst_flags_t complain)
14604 tree ret;
14605 timevar_push (TV_TEMPLATE_INST);
14606 ret = instantiate_template_1 (tmpl, orig_args, complain);
14607 timevar_pop (TV_TEMPLATE_INST);
14608 return ret;
14611 /* Instantiate the alias template TMPL with ARGS. Also push a template
14612 instantiation level, which instantiate_template doesn't do because
14613 functions and variables have sufficient context established by the
14614 callers. */
14616 static tree
14617 instantiate_alias_template (tree tmpl, tree args, tsubst_flags_t complain)
14619 struct pending_template *old_last_pend = last_pending_template;
14620 struct tinst_level *old_error_tinst = last_error_tinst_level;
14621 if (tmpl == error_mark_node || args == error_mark_node)
14622 return error_mark_node;
14623 tree tinst = build_tree_list (tmpl, args);
14624 if (!push_tinst_level (tinst))
14626 ggc_free (tinst);
14627 return error_mark_node;
14629 tree r = instantiate_template (tmpl, args, complain);
14630 pop_tinst_level ();
14631 /* We can't free this if a pending_template entry or last_error_tinst_level
14632 is pointing at it. */
14633 if (last_pending_template == old_last_pend
14634 && last_error_tinst_level == old_error_tinst)
14635 ggc_free (tinst);
14637 return r;
14640 /* PARM is a template parameter pack for FN. Returns true iff
14641 PARM is used in a deducible way in the argument list of FN. */
14643 static bool
14644 pack_deducible_p (tree parm, tree fn)
14646 tree t = FUNCTION_FIRST_USER_PARMTYPE (fn);
14647 for (; t; t = TREE_CHAIN (t))
14649 tree type = TREE_VALUE (t);
14650 tree packs;
14651 if (!PACK_EXPANSION_P (type))
14652 continue;
14653 for (packs = PACK_EXPANSION_PARAMETER_PACKS (type);
14654 packs; packs = TREE_CHAIN (packs))
14655 if (TREE_VALUE (packs) == parm)
14657 /* The template parameter pack is used in a function parameter
14658 pack. If this is the end of the parameter list, the
14659 template parameter pack is deducible. */
14660 if (TREE_CHAIN (t) == void_list_node)
14661 return true;
14662 else
14663 /* Otherwise, not. Well, it could be deduced from
14664 a non-pack parameter, but doing so would end up with
14665 a deduction mismatch, so don't bother. */
14666 return false;
14669 /* The template parameter pack isn't used in any function parameter
14670 packs, but it might be used deeper, e.g. tuple<Args...>. */
14671 return true;
14674 /* The FN is a TEMPLATE_DECL for a function. ARGS is an array with
14675 NARGS elements of the arguments that are being used when calling
14676 it. TARGS is a vector into which the deduced template arguments
14677 are placed.
14679 Return zero for success, 2 for an incomplete match that doesn't resolve
14680 all the types, and 1 for complete failure. An error message will be
14681 printed only for an incomplete match.
14683 If FN is a conversion operator, or we are trying to produce a specific
14684 specialization, RETURN_TYPE is the return type desired.
14686 The EXPLICIT_TARGS are explicit template arguments provided via a
14687 template-id.
14689 The parameter STRICT is one of:
14691 DEDUCE_CALL:
14692 We are deducing arguments for a function call, as in
14693 [temp.deduct.call].
14695 DEDUCE_CONV:
14696 We are deducing arguments for a conversion function, as in
14697 [temp.deduct.conv].
14699 DEDUCE_EXACT:
14700 We are deducing arguments when doing an explicit instantiation
14701 as in [temp.explicit], when determining an explicit specialization
14702 as in [temp.expl.spec], or when taking the address of a function
14703 template, as in [temp.deduct.funcaddr]. */
14705 tree
14706 fn_type_unification (tree fn,
14707 tree explicit_targs,
14708 tree targs,
14709 const tree *args,
14710 unsigned int nargs,
14711 tree return_type,
14712 unification_kind_t strict,
14713 int flags,
14714 bool explain_p)
14716 tree parms;
14717 tree fntype;
14718 tree decl = NULL_TREE;
14719 tsubst_flags_t complain = (explain_p ? tf_warning_or_error : tf_none);
14720 bool ok;
14721 static int deduction_depth;
14722 struct pending_template *old_last_pend = last_pending_template;
14723 struct tinst_level *old_error_tinst = last_error_tinst_level;
14724 tree tparms = DECL_INNERMOST_TEMPLATE_PARMS (fn);
14725 tree tinst;
14726 tree r = error_mark_node;
14728 /* Adjust any explicit template arguments before entering the
14729 substitution context. */
14730 if (explicit_targs)
14732 explicit_targs
14733 = (coerce_template_parms (tparms, explicit_targs, NULL_TREE,
14734 complain,
14735 /*require_all_args=*/false,
14736 /*use_default_args=*/false));
14737 if (explicit_targs == error_mark_node)
14738 return error_mark_node;
14741 /* In C++0x, it's possible to have a function template whose type depends
14742 on itself recursively. This is most obvious with decltype, but can also
14743 occur with enumeration scope (c++/48969). So we need to catch infinite
14744 recursion and reject the substitution at deduction time; this function
14745 will return error_mark_node for any repeated substitution.
14747 This also catches excessive recursion such as when f<N> depends on
14748 f<N-1> across all integers, and returns error_mark_node for all the
14749 substitutions back up to the initial one.
14751 This is, of course, not reentrant. */
14752 if (excessive_deduction_depth)
14753 return error_mark_node;
14754 tinst = build_tree_list (fn, targs);
14755 if (!push_tinst_level (tinst))
14757 excessive_deduction_depth = true;
14758 ggc_free (tinst);
14759 return error_mark_node;
14761 ++deduction_depth;
14762 push_deferring_access_checks (dk_deferred);
14764 gcc_assert (TREE_CODE (fn) == TEMPLATE_DECL);
14766 fntype = TREE_TYPE (fn);
14767 if (explicit_targs)
14769 /* [temp.deduct]
14771 The specified template arguments must match the template
14772 parameters in kind (i.e., type, nontype, template), and there
14773 must not be more arguments than there are parameters;
14774 otherwise type deduction fails.
14776 Nontype arguments must match the types of the corresponding
14777 nontype template parameters, or must be convertible to the
14778 types of the corresponding nontype parameters as specified in
14779 _temp.arg.nontype_, otherwise type deduction fails.
14781 All references in the function type of the function template
14782 to the corresponding template parameters are replaced by the
14783 specified template argument values. If a substitution in a
14784 template parameter or in the function type of the function
14785 template results in an invalid type, type deduction fails. */
14786 int i, len = TREE_VEC_LENGTH (tparms);
14787 location_t loc = input_location;
14788 bool incomplete = false;
14790 /* Substitute the explicit args into the function type. This is
14791 necessary so that, for instance, explicitly declared function
14792 arguments can match null pointed constants. If we were given
14793 an incomplete set of explicit args, we must not do semantic
14794 processing during substitution as we could create partial
14795 instantiations. */
14796 for (i = 0; i < len; i++)
14798 tree parm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
14799 bool parameter_pack = false;
14800 tree targ = TREE_VEC_ELT (explicit_targs, i);
14802 /* Dig out the actual parm. */
14803 if (TREE_CODE (parm) == TYPE_DECL
14804 || TREE_CODE (parm) == TEMPLATE_DECL)
14806 parm = TREE_TYPE (parm);
14807 parameter_pack = TEMPLATE_TYPE_PARAMETER_PACK (parm);
14809 else if (TREE_CODE (parm) == PARM_DECL)
14811 parm = DECL_INITIAL (parm);
14812 parameter_pack = TEMPLATE_PARM_PARAMETER_PACK (parm);
14815 if (!parameter_pack && targ == NULL_TREE)
14816 /* No explicit argument for this template parameter. */
14817 incomplete = true;
14819 if (parameter_pack && pack_deducible_p (parm, fn))
14821 /* Mark the argument pack as "incomplete". We could
14822 still deduce more arguments during unification.
14823 We remove this mark in type_unification_real. */
14824 if (targ)
14826 ARGUMENT_PACK_INCOMPLETE_P(targ) = 1;
14827 ARGUMENT_PACK_EXPLICIT_ARGS (targ)
14828 = ARGUMENT_PACK_ARGS (targ);
14831 /* We have some incomplete argument packs. */
14832 incomplete = true;
14836 processing_template_decl += incomplete;
14837 input_location = DECL_SOURCE_LOCATION (fn);
14838 fntype = tsubst (TREE_TYPE (fn), explicit_targs,
14839 complain | tf_partial, NULL_TREE);
14840 input_location = loc;
14841 processing_template_decl -= incomplete;
14843 if (fntype == error_mark_node)
14844 goto fail;
14846 /* Place the explicitly specified arguments in TARGS. */
14847 for (i = NUM_TMPL_ARGS (explicit_targs); i--;)
14848 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (explicit_targs, i);
14851 /* Never do unification on the 'this' parameter. */
14852 parms = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (fntype));
14854 if (return_type)
14856 tree *new_args;
14858 parms = tree_cons (NULL_TREE, TREE_TYPE (fntype), parms);
14859 new_args = XALLOCAVEC (tree, nargs + 1);
14860 new_args[0] = return_type;
14861 memcpy (new_args + 1, args, nargs * sizeof (tree));
14862 args = new_args;
14863 ++nargs;
14866 /* We allow incomplete unification without an error message here
14867 because the standard doesn't seem to explicitly prohibit it. Our
14868 callers must be ready to deal with unification failures in any
14869 event. */
14871 pop_tinst_level ();
14872 ok = !type_unification_real (DECL_INNERMOST_TEMPLATE_PARMS (fn),
14873 targs, parms, args, nargs, /*subr=*/0,
14874 strict, flags, explain_p);
14875 push_tinst_level (tinst);
14876 if (!ok)
14877 goto fail;
14879 /* Now that we have bindings for all of the template arguments,
14880 ensure that the arguments deduced for the template template
14881 parameters have compatible template parameter lists. We cannot
14882 check this property before we have deduced all template
14883 arguments, because the template parameter types of a template
14884 template parameter might depend on prior template parameters
14885 deduced after the template template parameter. The following
14886 ill-formed example illustrates this issue:
14888 template<typename T, template<T> class C> void f(C<5>, T);
14890 template<int N> struct X {};
14892 void g() {
14893 f(X<5>(), 5l); // error: template argument deduction fails
14896 The template parameter list of 'C' depends on the template type
14897 parameter 'T', but 'C' is deduced to 'X' before 'T' is deduced to
14898 'long'. Thus, we can't check that 'C' cannot bind to 'X' at the
14899 time that we deduce 'C'. */
14900 if (!template_template_parm_bindings_ok_p
14901 (DECL_INNERMOST_TEMPLATE_PARMS (fn), targs))
14903 unify_inconsistent_template_template_parameters (explain_p);
14904 goto fail;
14907 /* All is well so far. Now, check:
14909 [temp.deduct]
14911 When all template arguments have been deduced, all uses of
14912 template parameters in nondeduced contexts are replaced with
14913 the corresponding deduced argument values. If the
14914 substitution results in an invalid type, as described above,
14915 type deduction fails. */
14916 decl = instantiate_template (fn, targs, complain);
14917 if (decl == error_mark_node)
14918 goto fail;
14920 /* Now perform any access checks encountered during deduction, such as
14921 for default template arguments. */
14922 push_access_scope (decl);
14923 ok = perform_deferred_access_checks (complain);
14924 pop_access_scope (decl);
14925 if (!ok)
14926 goto fail;
14928 /* If we're looking for an exact match, check that what we got
14929 is indeed an exact match. It might not be if some template
14930 parameters are used in non-deduced contexts. */
14931 if (strict == DEDUCE_EXACT)
14933 tree substed = TREE_TYPE (decl);
14934 unsigned int i;
14936 tree sarg
14937 = skip_artificial_parms_for (decl, TYPE_ARG_TYPES (substed));
14938 if (return_type)
14939 sarg = tree_cons (NULL_TREE, TREE_TYPE (substed), sarg);
14940 for (i = 0; i < nargs && sarg; ++i, sarg = TREE_CHAIN (sarg))
14941 if (!same_type_p (args[i], TREE_VALUE (sarg)))
14943 unify_type_mismatch (explain_p, args[i],
14944 TREE_VALUE (sarg));
14945 goto fail;
14949 r = decl;
14951 fail:
14952 pop_deferring_access_checks ();
14953 --deduction_depth;
14954 if (excessive_deduction_depth)
14956 if (deduction_depth == 0)
14957 /* Reset once we're all the way out. */
14958 excessive_deduction_depth = false;
14961 pop_tinst_level ();
14962 /* We can't free this if a pending_template entry or last_error_tinst_level
14963 is pointing at it. */
14964 if (last_pending_template == old_last_pend
14965 && last_error_tinst_level == old_error_tinst)
14966 ggc_free (tinst);
14968 return r;
14971 /* Adjust types before performing type deduction, as described in
14972 [temp.deduct.call] and [temp.deduct.conv]. The rules in these two
14973 sections are symmetric. PARM is the type of a function parameter
14974 or the return type of the conversion function. ARG is the type of
14975 the argument passed to the call, or the type of the value
14976 initialized with the result of the conversion function.
14977 ARG_EXPR is the original argument expression, which may be null. */
14979 static int
14980 maybe_adjust_types_for_deduction (unification_kind_t strict,
14981 tree* parm,
14982 tree* arg,
14983 tree arg_expr)
14985 int result = 0;
14987 switch (strict)
14989 case DEDUCE_CALL:
14990 break;
14992 case DEDUCE_CONV:
14994 /* Swap PARM and ARG throughout the remainder of this
14995 function; the handling is precisely symmetric since PARM
14996 will initialize ARG rather than vice versa. */
14997 tree* temp = parm;
14998 parm = arg;
14999 arg = temp;
15000 break;
15003 case DEDUCE_EXACT:
15004 /* Core issue #873: Do the DR606 thing (see below) for these cases,
15005 too, but here handle it by stripping the reference from PARM
15006 rather than by adding it to ARG. */
15007 if (TREE_CODE (*parm) == REFERENCE_TYPE
15008 && TYPE_REF_IS_RVALUE (*parm)
15009 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
15010 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
15011 && TREE_CODE (*arg) == REFERENCE_TYPE
15012 && !TYPE_REF_IS_RVALUE (*arg))
15013 *parm = TREE_TYPE (*parm);
15014 /* Nothing else to do in this case. */
15015 return 0;
15017 default:
15018 gcc_unreachable ();
15021 if (TREE_CODE (*parm) != REFERENCE_TYPE)
15023 /* [temp.deduct.call]
15025 If P is not a reference type:
15027 --If A is an array type, the pointer type produced by the
15028 array-to-pointer standard conversion (_conv.array_) is
15029 used in place of A for type deduction; otherwise,
15031 --If A is a function type, the pointer type produced by
15032 the function-to-pointer standard conversion
15033 (_conv.func_) is used in place of A for type deduction;
15034 otherwise,
15036 --If A is a cv-qualified type, the top level
15037 cv-qualifiers of A's type are ignored for type
15038 deduction. */
15039 if (TREE_CODE (*arg) == ARRAY_TYPE)
15040 *arg = build_pointer_type (TREE_TYPE (*arg));
15041 else if (TREE_CODE (*arg) == FUNCTION_TYPE)
15042 *arg = build_pointer_type (*arg);
15043 else
15044 *arg = TYPE_MAIN_VARIANT (*arg);
15047 /* From C++0x [14.8.2.1/3 temp.deduct.call] (after DR606), "If P is
15048 of the form T&&, where T is a template parameter, and the argument
15049 is an lvalue, T is deduced as A& */
15050 if (TREE_CODE (*parm) == REFERENCE_TYPE
15051 && TYPE_REF_IS_RVALUE (*parm)
15052 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
15053 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
15054 && (arg_expr ? real_lvalue_p (arg_expr)
15055 /* try_one_overload doesn't provide an arg_expr, but
15056 functions are always lvalues. */
15057 : TREE_CODE (*arg) == FUNCTION_TYPE))
15058 *arg = build_reference_type (*arg);
15060 /* [temp.deduct.call]
15062 If P is a cv-qualified type, the top level cv-qualifiers
15063 of P's type are ignored for type deduction. If P is a
15064 reference type, the type referred to by P is used for
15065 type deduction. */
15066 *parm = TYPE_MAIN_VARIANT (*parm);
15067 if (TREE_CODE (*parm) == REFERENCE_TYPE)
15069 *parm = TREE_TYPE (*parm);
15070 result |= UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
15073 /* DR 322. For conversion deduction, remove a reference type on parm
15074 too (which has been swapped into ARG). */
15075 if (strict == DEDUCE_CONV && TREE_CODE (*arg) == REFERENCE_TYPE)
15076 *arg = TREE_TYPE (*arg);
15078 return result;
15081 /* Subroutine of unify_one_argument. PARM is a function parameter of a
15082 template which does contain any deducible template parameters; check if
15083 ARG is a suitable match for it. STRICT, FLAGS and EXPLAIN_P are as in
15084 unify_one_argument. */
15086 static int
15087 check_non_deducible_conversion (tree parm, tree arg, int strict,
15088 int flags, bool explain_p)
15090 tree type;
15092 if (!TYPE_P (arg))
15093 type = TREE_TYPE (arg);
15094 else
15095 type = arg;
15097 if (same_type_p (parm, type))
15098 return unify_success (explain_p);
15100 if (strict == DEDUCE_CONV)
15102 if (can_convert_arg (type, parm, NULL_TREE, flags,
15103 explain_p ? tf_warning_or_error : tf_none))
15104 return unify_success (explain_p);
15106 else if (strict != DEDUCE_EXACT)
15108 if (can_convert_arg (parm, type,
15109 TYPE_P (arg) ? NULL_TREE : arg,
15110 flags, explain_p ? tf_warning_or_error : tf_none))
15111 return unify_success (explain_p);
15114 if (strict == DEDUCE_EXACT)
15115 return unify_type_mismatch (explain_p, parm, arg);
15116 else
15117 return unify_arg_conversion (explain_p, parm, type, arg);
15120 /* Subroutine of type_unification_real and unify_pack_expansion to
15121 handle unification of a single P/A pair. Parameters are as
15122 for those functions. */
15124 static int
15125 unify_one_argument (tree tparms, tree targs, tree parm, tree arg,
15126 int subr, unification_kind_t strict, int flags,
15127 bool explain_p)
15129 tree arg_expr = NULL_TREE;
15130 int arg_strict;
15132 if (arg == error_mark_node || parm == error_mark_node)
15133 return unify_invalid (explain_p);
15134 if (arg == unknown_type_node)
15135 /* We can't deduce anything from this, but we might get all the
15136 template args from other function args. */
15137 return unify_success (explain_p);
15139 /* FIXME uses_deducible_template_parms */
15140 if (TYPE_P (parm) && !uses_template_parms (parm))
15141 return check_non_deducible_conversion (parm, arg, strict, flags,
15142 explain_p);
15144 switch (strict)
15146 case DEDUCE_CALL:
15147 arg_strict = (UNIFY_ALLOW_OUTER_LEVEL
15148 | UNIFY_ALLOW_MORE_CV_QUAL
15149 | UNIFY_ALLOW_DERIVED);
15150 break;
15152 case DEDUCE_CONV:
15153 arg_strict = UNIFY_ALLOW_LESS_CV_QUAL;
15154 break;
15156 case DEDUCE_EXACT:
15157 arg_strict = UNIFY_ALLOW_NONE;
15158 break;
15160 default:
15161 gcc_unreachable ();
15164 /* We only do these transformations if this is the top-level
15165 parameter_type_list in a call or declaration matching; in other
15166 situations (nested function declarators, template argument lists) we
15167 won't be comparing a type to an expression, and we don't do any type
15168 adjustments. */
15169 if (!subr)
15171 if (!TYPE_P (arg))
15173 gcc_assert (TREE_TYPE (arg) != NULL_TREE);
15174 if (type_unknown_p (arg))
15176 /* [temp.deduct.type] A template-argument can be
15177 deduced from a pointer to function or pointer
15178 to member function argument if the set of
15179 overloaded functions does not contain function
15180 templates and at most one of a set of
15181 overloaded functions provides a unique
15182 match. */
15184 if (resolve_overloaded_unification
15185 (tparms, targs, parm, arg, strict,
15186 arg_strict, explain_p))
15187 return unify_success (explain_p);
15188 return unify_overload_resolution_failure (explain_p, arg);
15191 arg_expr = arg;
15192 arg = unlowered_expr_type (arg);
15193 if (arg == error_mark_node)
15194 return unify_invalid (explain_p);
15197 arg_strict |=
15198 maybe_adjust_types_for_deduction (strict, &parm, &arg, arg_expr);
15200 else
15201 gcc_assert ((TYPE_P (parm) || TREE_CODE (parm) == TEMPLATE_DECL)
15202 == (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL));
15204 /* For deduction from an init-list we need the actual list. */
15205 if (arg_expr && BRACE_ENCLOSED_INITIALIZER_P (arg_expr))
15206 arg = arg_expr;
15207 return unify (tparms, targs, parm, arg, arg_strict, explain_p);
15210 /* Most parms like fn_type_unification.
15212 If SUBR is 1, we're being called recursively (to unify the
15213 arguments of a function or method parameter of a function
15214 template). */
15216 static int
15217 type_unification_real (tree tparms,
15218 tree targs,
15219 tree xparms,
15220 const tree *xargs,
15221 unsigned int xnargs,
15222 int subr,
15223 unification_kind_t strict,
15224 int flags,
15225 bool explain_p)
15227 tree parm, arg;
15228 int i;
15229 int ntparms = TREE_VEC_LENGTH (tparms);
15230 int saw_undeduced = 0;
15231 tree parms;
15232 const tree *args;
15233 unsigned int nargs;
15234 unsigned int ia;
15236 gcc_assert (TREE_CODE (tparms) == TREE_VEC);
15237 gcc_assert (xparms == NULL_TREE || TREE_CODE (xparms) == TREE_LIST);
15238 gcc_assert (ntparms > 0);
15240 /* Reset the number of non-defaulted template arguments contained
15241 in TARGS. */
15242 NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs) = NULL_TREE;
15244 again:
15245 parms = xparms;
15246 args = xargs;
15247 nargs = xnargs;
15249 ia = 0;
15250 while (parms && parms != void_list_node
15251 && ia < nargs)
15253 parm = TREE_VALUE (parms);
15255 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION
15256 && (!TREE_CHAIN (parms) || TREE_CHAIN (parms) == void_list_node))
15257 /* For a function parameter pack that occurs at the end of the
15258 parameter-declaration-list, the type A of each remaining
15259 argument of the call is compared with the type P of the
15260 declarator-id of the function parameter pack. */
15261 break;
15263 parms = TREE_CHAIN (parms);
15265 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION)
15266 /* For a function parameter pack that does not occur at the
15267 end of the parameter-declaration-list, the type of the
15268 parameter pack is a non-deduced context. */
15269 continue;
15271 arg = args[ia];
15272 ++ia;
15274 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
15275 flags, explain_p))
15276 return 1;
15279 if (parms
15280 && parms != void_list_node
15281 && TREE_CODE (TREE_VALUE (parms)) == TYPE_PACK_EXPANSION)
15283 /* Unify the remaining arguments with the pack expansion type. */
15284 tree argvec;
15285 tree parmvec = make_tree_vec (1);
15287 /* Allocate a TREE_VEC and copy in all of the arguments */
15288 argvec = make_tree_vec (nargs - ia);
15289 for (i = 0; ia < nargs; ++ia, ++i)
15290 TREE_VEC_ELT (argvec, i) = args[ia];
15292 /* Copy the parameter into parmvec. */
15293 TREE_VEC_ELT (parmvec, 0) = TREE_VALUE (parms);
15294 if (unify_pack_expansion (tparms, targs, parmvec, argvec, strict,
15295 /*subr=*/subr, explain_p))
15296 return 1;
15298 /* Advance to the end of the list of parameters. */
15299 parms = TREE_CHAIN (parms);
15302 /* Fail if we've reached the end of the parm list, and more args
15303 are present, and the parm list isn't variadic. */
15304 if (ia < nargs && parms == void_list_node)
15305 return unify_too_many_arguments (explain_p, nargs, ia);
15306 /* Fail if parms are left and they don't have default values. */
15307 if (parms && parms != void_list_node
15308 && TREE_PURPOSE (parms) == NULL_TREE)
15310 unsigned int count = nargs;
15311 tree p = parms;
15312 while (p && p != void_list_node)
15314 count++;
15315 p = TREE_CHAIN (p);
15317 return unify_too_few_arguments (explain_p, ia, count);
15320 if (!subr)
15322 tsubst_flags_t complain = (explain_p
15323 ? tf_warning_or_error
15324 : tf_none);
15326 /* Check to see if we need another pass before we start clearing
15327 ARGUMENT_PACK_INCOMPLETE_P. */
15328 for (i = 0; i < ntparms; i++)
15330 tree targ = TREE_VEC_ELT (targs, i);
15331 tree tparm = TREE_VEC_ELT (tparms, i);
15333 if (targ || tparm == error_mark_node)
15334 continue;
15335 tparm = TREE_VALUE (tparm);
15337 /* If this is an undeduced nontype parameter that depends on
15338 a type parameter, try another pass; its type may have been
15339 deduced from a later argument than the one from which
15340 this parameter can be deduced. */
15341 if (TREE_CODE (tparm) == PARM_DECL
15342 && uses_template_parms (TREE_TYPE (tparm))
15343 && !saw_undeduced++)
15344 goto again;
15347 for (i = 0; i < ntparms; i++)
15349 tree targ = TREE_VEC_ELT (targs, i);
15350 tree tparm = TREE_VEC_ELT (tparms, i);
15352 /* Clear the "incomplete" flags on all argument packs now so that
15353 substituting them into later default arguments works. */
15354 if (targ && ARGUMENT_PACK_P (targ))
15356 ARGUMENT_PACK_INCOMPLETE_P (targ) = 0;
15357 ARGUMENT_PACK_EXPLICIT_ARGS (targ) = NULL_TREE;
15360 if (targ || tparm == error_mark_node)
15361 continue;
15362 tparm = TREE_VALUE (tparm);
15364 /* Core issue #226 (C++0x) [temp.deduct]:
15366 If a template argument has not been deduced, its
15367 default template argument, if any, is used.
15369 When we are in C++98 mode, TREE_PURPOSE will either
15370 be NULL_TREE or ERROR_MARK_NODE, so we do not need
15371 to explicitly check cxx_dialect here. */
15372 if (TREE_PURPOSE (TREE_VEC_ELT (tparms, i)))
15374 tree parm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
15375 tree arg = TREE_PURPOSE (TREE_VEC_ELT (tparms, i));
15376 location_t save_loc = input_location;
15377 if (DECL_P (parm))
15378 input_location = DECL_SOURCE_LOCATION (parm);
15379 arg = tsubst_template_arg (arg, targs, complain, NULL_TREE);
15380 arg = convert_template_argument (parm, arg, targs, complain,
15381 i, NULL_TREE);
15382 input_location = save_loc;
15383 if (arg == error_mark_node)
15384 return 1;
15385 else
15387 TREE_VEC_ELT (targs, i) = arg;
15388 /* The position of the first default template argument,
15389 is also the number of non-defaulted arguments in TARGS.
15390 Record that. */
15391 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
15392 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, i);
15393 continue;
15397 /* If the type parameter is a parameter pack, then it will
15398 be deduced to an empty parameter pack. */
15399 if (template_parameter_pack_p (tparm))
15401 tree arg;
15403 if (TREE_CODE (tparm) == TEMPLATE_PARM_INDEX)
15405 arg = make_node (NONTYPE_ARGUMENT_PACK);
15406 TREE_TYPE (arg) = TREE_TYPE (TEMPLATE_PARM_DECL (tparm));
15407 TREE_CONSTANT (arg) = 1;
15409 else
15410 arg = cxx_make_type (TYPE_ARGUMENT_PACK);
15412 SET_ARGUMENT_PACK_ARGS (arg, make_tree_vec (0));
15414 TREE_VEC_ELT (targs, i) = arg;
15415 continue;
15418 return unify_parameter_deduction_failure (explain_p, tparm);
15421 #ifdef ENABLE_CHECKING
15422 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
15423 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, TREE_VEC_LENGTH (targs));
15424 #endif
15426 return unify_success (explain_p);
15429 /* Subroutine of type_unification_real. Args are like the variables
15430 at the call site. ARG is an overloaded function (or template-id);
15431 we try deducing template args from each of the overloads, and if
15432 only one succeeds, we go with that. Modifies TARGS and returns
15433 true on success. */
15435 static bool
15436 resolve_overloaded_unification (tree tparms,
15437 tree targs,
15438 tree parm,
15439 tree arg,
15440 unification_kind_t strict,
15441 int sub_strict,
15442 bool explain_p)
15444 tree tempargs = copy_node (targs);
15445 int good = 0;
15446 tree goodfn = NULL_TREE;
15447 bool addr_p;
15449 if (TREE_CODE (arg) == ADDR_EXPR)
15451 arg = TREE_OPERAND (arg, 0);
15452 addr_p = true;
15454 else
15455 addr_p = false;
15457 if (TREE_CODE (arg) == COMPONENT_REF)
15458 /* Handle `&x' where `x' is some static or non-static member
15459 function name. */
15460 arg = TREE_OPERAND (arg, 1);
15462 if (TREE_CODE (arg) == OFFSET_REF)
15463 arg = TREE_OPERAND (arg, 1);
15465 /* Strip baselink information. */
15466 if (BASELINK_P (arg))
15467 arg = BASELINK_FUNCTIONS (arg);
15469 if (TREE_CODE (arg) == TEMPLATE_ID_EXPR)
15471 /* If we got some explicit template args, we need to plug them into
15472 the affected templates before we try to unify, in case the
15473 explicit args will completely resolve the templates in question. */
15475 int ok = 0;
15476 tree expl_subargs = TREE_OPERAND (arg, 1);
15477 arg = TREE_OPERAND (arg, 0);
15479 for (; arg; arg = OVL_NEXT (arg))
15481 tree fn = OVL_CURRENT (arg);
15482 tree subargs, elem;
15484 if (TREE_CODE (fn) != TEMPLATE_DECL)
15485 continue;
15487 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
15488 expl_subargs, NULL_TREE, tf_none,
15489 /*require_all_args=*/true,
15490 /*use_default_args=*/true);
15491 if (subargs != error_mark_node
15492 && !any_dependent_template_arguments_p (subargs))
15494 elem = tsubst (TREE_TYPE (fn), subargs, tf_none, NULL_TREE);
15495 if (try_one_overload (tparms, targs, tempargs, parm,
15496 elem, strict, sub_strict, addr_p, explain_p)
15497 && (!goodfn || !same_type_p (goodfn, elem)))
15499 goodfn = elem;
15500 ++good;
15503 else if (subargs)
15504 ++ok;
15506 /* If no templates (or more than one) are fully resolved by the
15507 explicit arguments, this template-id is a non-deduced context; it
15508 could still be OK if we deduce all template arguments for the
15509 enclosing call through other arguments. */
15510 if (good != 1)
15511 good = ok;
15513 else if (TREE_CODE (arg) != OVERLOAD
15514 && TREE_CODE (arg) != FUNCTION_DECL)
15515 /* If ARG is, for example, "(0, &f)" then its type will be unknown
15516 -- but the deduction does not succeed because the expression is
15517 not just the function on its own. */
15518 return false;
15519 else
15520 for (; arg; arg = OVL_NEXT (arg))
15521 if (try_one_overload (tparms, targs, tempargs, parm,
15522 TREE_TYPE (OVL_CURRENT (arg)),
15523 strict, sub_strict, addr_p, explain_p)
15524 && (!goodfn || !decls_match (goodfn, OVL_CURRENT (arg))))
15526 goodfn = OVL_CURRENT (arg);
15527 ++good;
15530 /* [temp.deduct.type] A template-argument can be deduced from a pointer
15531 to function or pointer to member function argument if the set of
15532 overloaded functions does not contain function templates and at most
15533 one of a set of overloaded functions provides a unique match.
15535 So if we found multiple possibilities, we return success but don't
15536 deduce anything. */
15538 if (good == 1)
15540 int i = TREE_VEC_LENGTH (targs);
15541 for (; i--; )
15542 if (TREE_VEC_ELT (tempargs, i))
15543 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (tempargs, i);
15545 if (good)
15546 return true;
15548 return false;
15551 /* Core DR 115: In contexts where deduction is done and fails, or in
15552 contexts where deduction is not done, if a template argument list is
15553 specified and it, along with any default template arguments, identifies
15554 a single function template specialization, then the template-id is an
15555 lvalue for the function template specialization. */
15557 tree
15558 resolve_nondeduced_context (tree orig_expr)
15560 tree expr, offset, baselink;
15561 bool addr;
15563 if (!type_unknown_p (orig_expr))
15564 return orig_expr;
15566 expr = orig_expr;
15567 addr = false;
15568 offset = NULL_TREE;
15569 baselink = NULL_TREE;
15571 if (TREE_CODE (expr) == ADDR_EXPR)
15573 expr = TREE_OPERAND (expr, 0);
15574 addr = true;
15576 if (TREE_CODE (expr) == OFFSET_REF)
15578 offset = expr;
15579 expr = TREE_OPERAND (expr, 1);
15581 if (BASELINK_P (expr))
15583 baselink = expr;
15584 expr = BASELINK_FUNCTIONS (expr);
15587 if (TREE_CODE (expr) == TEMPLATE_ID_EXPR)
15589 int good = 0;
15590 tree goodfn = NULL_TREE;
15592 /* If we got some explicit template args, we need to plug them into
15593 the affected templates before we try to unify, in case the
15594 explicit args will completely resolve the templates in question. */
15596 tree expl_subargs = TREE_OPERAND (expr, 1);
15597 tree arg = TREE_OPERAND (expr, 0);
15598 tree badfn = NULL_TREE;
15599 tree badargs = NULL_TREE;
15601 for (; arg; arg = OVL_NEXT (arg))
15603 tree fn = OVL_CURRENT (arg);
15604 tree subargs, elem;
15606 if (TREE_CODE (fn) != TEMPLATE_DECL)
15607 continue;
15609 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
15610 expl_subargs, NULL_TREE, tf_none,
15611 /*require_all_args=*/true,
15612 /*use_default_args=*/true);
15613 if (subargs != error_mark_node
15614 && !any_dependent_template_arguments_p (subargs))
15616 elem = instantiate_template (fn, subargs, tf_none);
15617 if (elem == error_mark_node)
15619 badfn = fn;
15620 badargs = subargs;
15622 else if (elem && (!goodfn || !decls_match (goodfn, elem)))
15624 goodfn = elem;
15625 ++good;
15629 if (good == 1)
15631 mark_used (goodfn);
15632 expr = goodfn;
15633 if (baselink)
15634 expr = build_baselink (BASELINK_BINFO (baselink),
15635 BASELINK_ACCESS_BINFO (baselink),
15636 expr, BASELINK_OPTYPE (baselink));
15637 if (offset)
15639 tree base
15640 = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (offset, 0)));
15641 expr = build_offset_ref (base, expr, addr);
15643 if (addr)
15644 expr = cp_build_addr_expr (expr, tf_warning_or_error);
15645 return expr;
15647 else if (good == 0 && badargs)
15648 /* There were no good options and at least one bad one, so let the
15649 user know what the problem is. */
15650 instantiate_template (badfn, badargs, tf_warning_or_error);
15652 return orig_expr;
15655 /* Subroutine of resolve_overloaded_unification; does deduction for a single
15656 overload. Fills TARGS with any deduced arguments, or error_mark_node if
15657 different overloads deduce different arguments for a given parm.
15658 ADDR_P is true if the expression for which deduction is being
15659 performed was of the form "& fn" rather than simply "fn".
15661 Returns 1 on success. */
15663 static int
15664 try_one_overload (tree tparms,
15665 tree orig_targs,
15666 tree targs,
15667 tree parm,
15668 tree arg,
15669 unification_kind_t strict,
15670 int sub_strict,
15671 bool addr_p,
15672 bool explain_p)
15674 int nargs;
15675 tree tempargs;
15676 int i;
15678 if (arg == error_mark_node)
15679 return 0;
15681 /* [temp.deduct.type] A template-argument can be deduced from a pointer
15682 to function or pointer to member function argument if the set of
15683 overloaded functions does not contain function templates and at most
15684 one of a set of overloaded functions provides a unique match.
15686 So if this is a template, just return success. */
15688 if (uses_template_parms (arg))
15689 return 1;
15691 if (TREE_CODE (arg) == METHOD_TYPE)
15692 arg = build_ptrmemfunc_type (build_pointer_type (arg));
15693 else if (addr_p)
15694 arg = build_pointer_type (arg);
15696 sub_strict |= maybe_adjust_types_for_deduction (strict, &parm, &arg, NULL);
15698 /* We don't copy orig_targs for this because if we have already deduced
15699 some template args from previous args, unify would complain when we
15700 try to deduce a template parameter for the same argument, even though
15701 there isn't really a conflict. */
15702 nargs = TREE_VEC_LENGTH (targs);
15703 tempargs = make_tree_vec (nargs);
15705 if (unify (tparms, tempargs, parm, arg, sub_strict, explain_p))
15706 return 0;
15708 /* First make sure we didn't deduce anything that conflicts with
15709 explicitly specified args. */
15710 for (i = nargs; i--; )
15712 tree elt = TREE_VEC_ELT (tempargs, i);
15713 tree oldelt = TREE_VEC_ELT (orig_targs, i);
15715 if (!elt)
15716 /*NOP*/;
15717 else if (uses_template_parms (elt))
15718 /* Since we're unifying against ourselves, we will fill in
15719 template args used in the function parm list with our own
15720 template parms. Discard them. */
15721 TREE_VEC_ELT (tempargs, i) = NULL_TREE;
15722 else if (oldelt && !template_args_equal (oldelt, elt))
15723 return 0;
15726 for (i = nargs; i--; )
15728 tree elt = TREE_VEC_ELT (tempargs, i);
15730 if (elt)
15731 TREE_VEC_ELT (targs, i) = elt;
15734 return 1;
15737 /* PARM is a template class (perhaps with unbound template
15738 parameters). ARG is a fully instantiated type. If ARG can be
15739 bound to PARM, return ARG, otherwise return NULL_TREE. TPARMS and
15740 TARGS are as for unify. */
15742 static tree
15743 try_class_unification (tree tparms, tree targs, tree parm, tree arg,
15744 bool explain_p)
15746 tree copy_of_targs;
15748 if (!CLASSTYPE_TEMPLATE_INFO (arg)
15749 || (most_general_template (CLASSTYPE_TI_TEMPLATE (arg))
15750 != most_general_template (CLASSTYPE_TI_TEMPLATE (parm))))
15751 return NULL_TREE;
15753 /* We need to make a new template argument vector for the call to
15754 unify. If we used TARGS, we'd clutter it up with the result of
15755 the attempted unification, even if this class didn't work out.
15756 We also don't want to commit ourselves to all the unifications
15757 we've already done, since unification is supposed to be done on
15758 an argument-by-argument basis. In other words, consider the
15759 following pathological case:
15761 template <int I, int J, int K>
15762 struct S {};
15764 template <int I, int J>
15765 struct S<I, J, 2> : public S<I, I, I>, S<J, J, J> {};
15767 template <int I, int J, int K>
15768 void f(S<I, J, K>, S<I, I, I>);
15770 void g() {
15771 S<0, 0, 0> s0;
15772 S<0, 1, 2> s2;
15774 f(s0, s2);
15777 Now, by the time we consider the unification involving `s2', we
15778 already know that we must have `f<0, 0, 0>'. But, even though
15779 `S<0, 1, 2>' is derived from `S<0, 0, 0>', the code is invalid
15780 because there are two ways to unify base classes of S<0, 1, 2>
15781 with S<I, I, I>. If we kept the already deduced knowledge, we
15782 would reject the possibility I=1. */
15783 copy_of_targs = make_tree_vec (TREE_VEC_LENGTH (targs));
15785 /* If unification failed, we're done. */
15786 if (unify (tparms, copy_of_targs, CLASSTYPE_TI_ARGS (parm),
15787 CLASSTYPE_TI_ARGS (arg), UNIFY_ALLOW_NONE, explain_p))
15788 return NULL_TREE;
15790 return arg;
15793 /* Given a template type PARM and a class type ARG, find the unique
15794 base type in ARG that is an instance of PARM. We do not examine
15795 ARG itself; only its base-classes. If there is not exactly one
15796 appropriate base class, return NULL_TREE. PARM may be the type of
15797 a partial specialization, as well as a plain template type. Used
15798 by unify. */
15800 static enum template_base_result
15801 get_template_base (tree tparms, tree targs, tree parm, tree arg,
15802 bool explain_p, tree *result)
15804 tree rval = NULL_TREE;
15805 tree binfo;
15807 gcc_assert (RECORD_OR_UNION_CODE_P (TREE_CODE (arg)));
15809 binfo = TYPE_BINFO (complete_type (arg));
15810 if (!binfo)
15812 /* The type could not be completed. */
15813 *result = NULL_TREE;
15814 return tbr_incomplete_type;
15817 /* Walk in inheritance graph order. The search order is not
15818 important, and this avoids multiple walks of virtual bases. */
15819 for (binfo = TREE_CHAIN (binfo); binfo; binfo = TREE_CHAIN (binfo))
15821 tree r = try_class_unification (tparms, targs, parm,
15822 BINFO_TYPE (binfo), explain_p);
15824 if (r)
15826 /* If there is more than one satisfactory baseclass, then:
15828 [temp.deduct.call]
15830 If they yield more than one possible deduced A, the type
15831 deduction fails.
15833 applies. */
15834 if (rval && !same_type_p (r, rval))
15836 *result = NULL_TREE;
15837 return tbr_ambiguous_baseclass;
15840 rval = r;
15844 *result = rval;
15845 return tbr_success;
15848 /* Returns the level of DECL, which declares a template parameter. */
15850 static int
15851 template_decl_level (tree decl)
15853 switch (TREE_CODE (decl))
15855 case TYPE_DECL:
15856 case TEMPLATE_DECL:
15857 return TEMPLATE_TYPE_LEVEL (TREE_TYPE (decl));
15859 case PARM_DECL:
15860 return TEMPLATE_PARM_LEVEL (DECL_INITIAL (decl));
15862 default:
15863 gcc_unreachable ();
15865 return 0;
15868 /* Decide whether ARG can be unified with PARM, considering only the
15869 cv-qualifiers of each type, given STRICT as documented for unify.
15870 Returns nonzero iff the unification is OK on that basis. */
15872 static int
15873 check_cv_quals_for_unify (int strict, tree arg, tree parm)
15875 int arg_quals = cp_type_quals (arg);
15876 int parm_quals = cp_type_quals (parm);
15878 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
15879 && !(strict & UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
15881 /* Although a CVR qualifier is ignored when being applied to a
15882 substituted template parameter ([8.3.2]/1 for example), that
15883 does not allow us to unify "const T" with "int&" because both
15884 types are not of the form "cv-list T" [14.8.2.5 temp.deduct.type].
15885 It is ok when we're allowing additional CV qualifiers
15886 at the outer level [14.8.2.1]/3,1st bullet. */
15887 if ((TREE_CODE (arg) == REFERENCE_TYPE
15888 || TREE_CODE (arg) == FUNCTION_TYPE
15889 || TREE_CODE (arg) == METHOD_TYPE)
15890 && (parm_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE)))
15891 return 0;
15893 if ((!POINTER_TYPE_P (arg) && TREE_CODE (arg) != TEMPLATE_TYPE_PARM)
15894 && (parm_quals & TYPE_QUAL_RESTRICT))
15895 return 0;
15898 if (!(strict & (UNIFY_ALLOW_MORE_CV_QUAL | UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
15899 && (arg_quals & parm_quals) != parm_quals)
15900 return 0;
15902 if (!(strict & (UNIFY_ALLOW_LESS_CV_QUAL | UNIFY_ALLOW_OUTER_LESS_CV_QUAL))
15903 && (parm_quals & arg_quals) != arg_quals)
15904 return 0;
15906 return 1;
15909 /* Determines the LEVEL and INDEX for the template parameter PARM. */
15910 void
15911 template_parm_level_and_index (tree parm, int* level, int* index)
15913 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
15914 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
15915 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
15917 *index = TEMPLATE_TYPE_IDX (parm);
15918 *level = TEMPLATE_TYPE_LEVEL (parm);
15920 else
15922 *index = TEMPLATE_PARM_IDX (parm);
15923 *level = TEMPLATE_PARM_LEVEL (parm);
15927 #define RECUR_AND_CHECK_FAILURE(TP, TA, P, A, S, EP) \
15928 do { \
15929 if (unify (TP, TA, P, A, S, EP)) \
15930 return 1; \
15931 } while (0);
15933 /* Unifies the remaining arguments in PACKED_ARGS with the pack
15934 expansion at the end of PACKED_PARMS. Returns 0 if the type
15935 deduction succeeds, 1 otherwise. STRICT is the same as in
15936 unify. CALL_ARGS_P is true iff PACKED_ARGS is actually a function
15937 call argument list. We'll need to adjust the arguments to make them
15938 types. SUBR tells us if this is from a recursive call to
15939 type_unification_real, or for comparing two template argument
15940 lists. */
15942 static int
15943 unify_pack_expansion (tree tparms, tree targs, tree packed_parms,
15944 tree packed_args, unification_kind_t strict,
15945 bool subr, bool explain_p)
15947 tree parm
15948 = TREE_VEC_ELT (packed_parms, TREE_VEC_LENGTH (packed_parms) - 1);
15949 tree pattern = PACK_EXPANSION_PATTERN (parm);
15950 tree pack, packs = NULL_TREE;
15951 int i, start = TREE_VEC_LENGTH (packed_parms) - 1;
15952 int len = TREE_VEC_LENGTH (packed_args);
15954 /* Determine the parameter packs we will be deducing from the
15955 pattern, and record their current deductions. */
15956 for (pack = PACK_EXPANSION_PARAMETER_PACKS (parm);
15957 pack; pack = TREE_CHAIN (pack))
15959 tree parm_pack = TREE_VALUE (pack);
15960 int idx, level;
15962 /* Determine the index and level of this parameter pack. */
15963 template_parm_level_and_index (parm_pack, &level, &idx);
15965 /* Keep track of the parameter packs and their corresponding
15966 argument packs. */
15967 packs = tree_cons (parm_pack, TMPL_ARG (targs, level, idx), packs);
15968 TREE_TYPE (packs) = make_tree_vec (len - start);
15971 /* Loop through all of the arguments that have not yet been
15972 unified and unify each with the pattern. */
15973 for (i = start; i < len; i++)
15975 tree parm;
15976 bool any_explicit = false;
15977 tree arg = TREE_VEC_ELT (packed_args, i);
15979 /* For each parameter pack, set its TMPL_ARG to either NULL_TREE
15980 or the element of its argument pack at the current index if
15981 this argument was explicitly specified. */
15982 for (pack = packs; pack; pack = TREE_CHAIN (pack))
15984 int idx, level;
15985 tree arg, pargs;
15986 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
15988 arg = NULL_TREE;
15989 if (TREE_VALUE (pack)
15990 && (pargs = ARGUMENT_PACK_EXPLICIT_ARGS (TREE_VALUE (pack)))
15991 && (i < TREE_VEC_LENGTH (pargs)))
15993 any_explicit = true;
15994 arg = TREE_VEC_ELT (pargs, i);
15996 TMPL_ARG (targs, level, idx) = arg;
15999 /* If we had explicit template arguments, substitute them into the
16000 pattern before deduction. */
16001 if (any_explicit)
16003 /* Some arguments might still be unspecified or dependent. */
16004 bool dependent;
16005 ++processing_template_decl;
16006 dependent = any_dependent_template_arguments_p (targs);
16007 if (!dependent)
16008 --processing_template_decl;
16009 parm = tsubst (pattern, targs,
16010 explain_p ? tf_warning_or_error : tf_none,
16011 NULL_TREE);
16012 if (dependent)
16013 --processing_template_decl;
16014 if (parm == error_mark_node)
16015 return 1;
16017 else
16018 parm = pattern;
16020 /* Unify the pattern with the current argument. */
16021 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
16022 LOOKUP_IMPLICIT, explain_p))
16023 return 1;
16025 /* For each parameter pack, collect the deduced value. */
16026 for (pack = packs; pack; pack = TREE_CHAIN (pack))
16028 int idx, level;
16029 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
16031 TREE_VEC_ELT (TREE_TYPE (pack), i - start) =
16032 TMPL_ARG (targs, level, idx);
16036 /* Verify that the results of unification with the parameter packs
16037 produce results consistent with what we've seen before, and make
16038 the deduced argument packs available. */
16039 for (pack = packs; pack; pack = TREE_CHAIN (pack))
16041 tree old_pack = TREE_VALUE (pack);
16042 tree new_args = TREE_TYPE (pack);
16043 int i, len = TREE_VEC_LENGTH (new_args);
16044 int idx, level;
16045 bool nondeduced_p = false;
16047 /* By default keep the original deduced argument pack.
16048 If necessary, more specific code is going to update the
16049 resulting deduced argument later down in this function. */
16050 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
16051 TMPL_ARG (targs, level, idx) = old_pack;
16053 /* If NEW_ARGS contains any NULL_TREE entries, we didn't
16054 actually deduce anything. */
16055 for (i = 0; i < len && !nondeduced_p; ++i)
16056 if (TREE_VEC_ELT (new_args, i) == NULL_TREE)
16057 nondeduced_p = true;
16058 if (nondeduced_p)
16059 continue;
16061 if (old_pack && ARGUMENT_PACK_INCOMPLETE_P (old_pack))
16063 /* If we had fewer function args than explicit template args,
16064 just use the explicits. */
16065 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
16066 int explicit_len = TREE_VEC_LENGTH (explicit_args);
16067 if (len < explicit_len)
16068 new_args = explicit_args;
16071 if (!old_pack)
16073 tree result;
16074 /* Build the deduced *_ARGUMENT_PACK. */
16075 if (TREE_CODE (TREE_PURPOSE (pack)) == TEMPLATE_PARM_INDEX)
16077 result = make_node (NONTYPE_ARGUMENT_PACK);
16078 TREE_TYPE (result) =
16079 TREE_TYPE (TEMPLATE_PARM_DECL (TREE_PURPOSE (pack)));
16080 TREE_CONSTANT (result) = 1;
16082 else
16083 result = cxx_make_type (TYPE_ARGUMENT_PACK);
16085 SET_ARGUMENT_PACK_ARGS (result, new_args);
16087 /* Note the deduced argument packs for this parameter
16088 pack. */
16089 TMPL_ARG (targs, level, idx) = result;
16091 else if (ARGUMENT_PACK_INCOMPLETE_P (old_pack)
16092 && (ARGUMENT_PACK_ARGS (old_pack)
16093 == ARGUMENT_PACK_EXPLICIT_ARGS (old_pack)))
16095 /* We only had the explicitly-provided arguments before, but
16096 now we have a complete set of arguments. */
16097 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
16099 SET_ARGUMENT_PACK_ARGS (old_pack, new_args);
16100 ARGUMENT_PACK_INCOMPLETE_P (old_pack) = 1;
16101 ARGUMENT_PACK_EXPLICIT_ARGS (old_pack) = explicit_args;
16103 else
16105 tree bad_old_arg = NULL_TREE, bad_new_arg = NULL_TREE;
16106 tree old_args = ARGUMENT_PACK_ARGS (old_pack);
16108 if (!comp_template_args_with_info (old_args, new_args,
16109 &bad_old_arg, &bad_new_arg))
16110 /* Inconsistent unification of this parameter pack. */
16111 return unify_parameter_pack_inconsistent (explain_p,
16112 bad_old_arg,
16113 bad_new_arg);
16117 return unify_success (explain_p);
16120 /* Deduce the value of template parameters. TPARMS is the (innermost)
16121 set of template parameters to a template. TARGS is the bindings
16122 for those template parameters, as determined thus far; TARGS may
16123 include template arguments for outer levels of template parameters
16124 as well. PARM is a parameter to a template function, or a
16125 subcomponent of that parameter; ARG is the corresponding argument.
16126 This function attempts to match PARM with ARG in a manner
16127 consistent with the existing assignments in TARGS. If more values
16128 are deduced, then TARGS is updated.
16130 Returns 0 if the type deduction succeeds, 1 otherwise. The
16131 parameter STRICT is a bitwise or of the following flags:
16133 UNIFY_ALLOW_NONE:
16134 Require an exact match between PARM and ARG.
16135 UNIFY_ALLOW_MORE_CV_QUAL:
16136 Allow the deduced ARG to be more cv-qualified (by qualification
16137 conversion) than ARG.
16138 UNIFY_ALLOW_LESS_CV_QUAL:
16139 Allow the deduced ARG to be less cv-qualified than ARG.
16140 UNIFY_ALLOW_DERIVED:
16141 Allow the deduced ARG to be a template base class of ARG,
16142 or a pointer to a template base class of the type pointed to by
16143 ARG.
16144 UNIFY_ALLOW_INTEGER:
16145 Allow any integral type to be deduced. See the TEMPLATE_PARM_INDEX
16146 case for more information.
16147 UNIFY_ALLOW_OUTER_LEVEL:
16148 This is the outermost level of a deduction. Used to determine validity
16149 of qualification conversions. A valid qualification conversion must
16150 have const qualified pointers leading up to the inner type which
16151 requires additional CV quals, except at the outer level, where const
16152 is not required [conv.qual]. It would be normal to set this flag in
16153 addition to setting UNIFY_ALLOW_MORE_CV_QUAL.
16154 UNIFY_ALLOW_OUTER_MORE_CV_QUAL:
16155 This is the outermost level of a deduction, and PARM can be more CV
16156 qualified at this point.
16157 UNIFY_ALLOW_OUTER_LESS_CV_QUAL:
16158 This is the outermost level of a deduction, and PARM can be less CV
16159 qualified at this point. */
16161 static int
16162 unify (tree tparms, tree targs, tree parm, tree arg, int strict,
16163 bool explain_p)
16165 int idx;
16166 tree targ;
16167 tree tparm;
16168 int strict_in = strict;
16170 /* I don't think this will do the right thing with respect to types.
16171 But the only case I've seen it in so far has been array bounds, where
16172 signedness is the only information lost, and I think that will be
16173 okay. */
16174 while (TREE_CODE (parm) == NOP_EXPR)
16175 parm = TREE_OPERAND (parm, 0);
16177 if (arg == error_mark_node)
16178 return unify_invalid (explain_p);
16179 if (arg == unknown_type_node
16180 || arg == init_list_type_node)
16181 /* We can't deduce anything from this, but we might get all the
16182 template args from other function args. */
16183 return unify_success (explain_p);
16185 /* If PARM uses template parameters, then we can't bail out here,
16186 even if ARG == PARM, since we won't record unifications for the
16187 template parameters. We might need them if we're trying to
16188 figure out which of two things is more specialized. */
16189 if (arg == parm && !uses_template_parms (parm))
16190 return unify_success (explain_p);
16192 /* Handle init lists early, so the rest of the function can assume
16193 we're dealing with a type. */
16194 if (BRACE_ENCLOSED_INITIALIZER_P (arg))
16196 tree elt, elttype;
16197 unsigned i;
16198 tree orig_parm = parm;
16200 /* Replace T with std::initializer_list<T> for deduction. */
16201 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
16202 && flag_deduce_init_list)
16203 parm = listify (parm);
16205 if (!is_std_init_list (parm))
16206 /* We can only deduce from an initializer list argument if the
16207 parameter is std::initializer_list; otherwise this is a
16208 non-deduced context. */
16209 return unify_success (explain_p);
16211 elttype = TREE_VEC_ELT (CLASSTYPE_TI_ARGS (parm), 0);
16213 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (arg), i, elt)
16215 int elt_strict = strict;
16217 if (elt == error_mark_node)
16218 return unify_invalid (explain_p);
16220 if (!BRACE_ENCLOSED_INITIALIZER_P (elt))
16222 tree type = TREE_TYPE (elt);
16223 /* It should only be possible to get here for a call. */
16224 gcc_assert (elt_strict & UNIFY_ALLOW_OUTER_LEVEL);
16225 elt_strict |= maybe_adjust_types_for_deduction
16226 (DEDUCE_CALL, &elttype, &type, elt);
16227 elt = type;
16230 RECUR_AND_CHECK_FAILURE (tparms, targs, elttype, elt, elt_strict,
16231 explain_p);
16234 /* If the std::initializer_list<T> deduction worked, replace the
16235 deduced A with std::initializer_list<A>. */
16236 if (orig_parm != parm)
16238 idx = TEMPLATE_TYPE_IDX (orig_parm);
16239 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
16240 targ = listify (targ);
16241 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = targ;
16243 return unify_success (explain_p);
16246 /* Immediately reject some pairs that won't unify because of
16247 cv-qualification mismatches. */
16248 if (TREE_CODE (arg) == TREE_CODE (parm)
16249 && TYPE_P (arg)
16250 /* It is the elements of the array which hold the cv quals of an array
16251 type, and the elements might be template type parms. We'll check
16252 when we recurse. */
16253 && TREE_CODE (arg) != ARRAY_TYPE
16254 /* We check the cv-qualifiers when unifying with template type
16255 parameters below. We want to allow ARG `const T' to unify with
16256 PARM `T' for example, when computing which of two templates
16257 is more specialized, for example. */
16258 && TREE_CODE (arg) != TEMPLATE_TYPE_PARM
16259 && !check_cv_quals_for_unify (strict_in, arg, parm))
16260 return unify_cv_qual_mismatch (explain_p, parm, arg);
16262 if (!(strict & UNIFY_ALLOW_OUTER_LEVEL)
16263 && TYPE_P (parm) && !CP_TYPE_CONST_P (parm))
16264 strict &= ~UNIFY_ALLOW_MORE_CV_QUAL;
16265 strict &= ~UNIFY_ALLOW_OUTER_LEVEL;
16266 strict &= ~UNIFY_ALLOW_DERIVED;
16267 strict &= ~UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
16268 strict &= ~UNIFY_ALLOW_OUTER_LESS_CV_QUAL;
16270 switch (TREE_CODE (parm))
16272 case TYPENAME_TYPE:
16273 case SCOPE_REF:
16274 case UNBOUND_CLASS_TEMPLATE:
16275 /* In a type which contains a nested-name-specifier, template
16276 argument values cannot be deduced for template parameters used
16277 within the nested-name-specifier. */
16278 return unify_success (explain_p);
16280 case TEMPLATE_TYPE_PARM:
16281 case TEMPLATE_TEMPLATE_PARM:
16282 case BOUND_TEMPLATE_TEMPLATE_PARM:
16283 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
16284 if (tparm == error_mark_node)
16285 return unify_invalid (explain_p);
16287 if (TEMPLATE_TYPE_LEVEL (parm)
16288 != template_decl_level (tparm))
16289 /* The PARM is not one we're trying to unify. Just check
16290 to see if it matches ARG. */
16292 if (TREE_CODE (arg) == TREE_CODE (parm)
16293 && (is_auto (parm) ? is_auto (arg)
16294 : same_type_p (parm, arg)))
16295 return unify_success (explain_p);
16296 else
16297 return unify_type_mismatch (explain_p, parm, arg);
16299 idx = TEMPLATE_TYPE_IDX (parm);
16300 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
16301 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, idx));
16302 if (tparm == error_mark_node)
16303 return unify_invalid (explain_p);
16305 /* Check for mixed types and values. */
16306 if ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
16307 && TREE_CODE (tparm) != TYPE_DECL)
16308 || (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
16309 && TREE_CODE (tparm) != TEMPLATE_DECL))
16310 gcc_unreachable ();
16312 if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
16314 /* ARG must be constructed from a template class or a template
16315 template parameter. */
16316 if (TREE_CODE (arg) != BOUND_TEMPLATE_TEMPLATE_PARM
16317 && !CLASSTYPE_SPECIALIZATION_OF_PRIMARY_TEMPLATE_P (arg))
16318 return unify_template_deduction_failure (explain_p, parm, arg);
16321 tree parmvec = TYPE_TI_ARGS (parm);
16322 tree argvec = INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (arg));
16323 tree full_argvec = add_to_template_args (targs, argvec);
16324 tree parm_parms
16325 = DECL_INNERMOST_TEMPLATE_PARMS
16326 (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (parm));
16327 int i, len;
16328 int parm_variadic_p = 0;
16330 /* The resolution to DR150 makes clear that default
16331 arguments for an N-argument may not be used to bind T
16332 to a template template parameter with fewer than N
16333 parameters. It is not safe to permit the binding of
16334 default arguments as an extension, as that may change
16335 the meaning of a conforming program. Consider:
16337 struct Dense { static const unsigned int dim = 1; };
16339 template <template <typename> class View,
16340 typename Block>
16341 void operator+(float, View<Block> const&);
16343 template <typename Block,
16344 unsigned int Dim = Block::dim>
16345 struct Lvalue_proxy { operator float() const; };
16347 void
16348 test_1d (void) {
16349 Lvalue_proxy<Dense> p;
16350 float b;
16351 b + p;
16354 Here, if Lvalue_proxy is permitted to bind to View, then
16355 the global operator+ will be used; if they are not, the
16356 Lvalue_proxy will be converted to float. */
16357 if (coerce_template_parms (parm_parms,
16358 full_argvec,
16359 TYPE_TI_TEMPLATE (parm),
16360 (explain_p
16361 ? tf_warning_or_error
16362 : tf_none),
16363 /*require_all_args=*/true,
16364 /*use_default_args=*/false)
16365 == error_mark_node)
16366 return 1;
16368 /* Deduce arguments T, i from TT<T> or TT<i>.
16369 We check each element of PARMVEC and ARGVEC individually
16370 rather than the whole TREE_VEC since they can have
16371 different number of elements. */
16373 parmvec = expand_template_argument_pack (parmvec);
16374 argvec = expand_template_argument_pack (argvec);
16376 len = TREE_VEC_LENGTH (parmvec);
16378 /* Check if the parameters end in a pack, making them
16379 variadic. */
16380 if (len > 0
16381 && PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, len - 1)))
16382 parm_variadic_p = 1;
16384 if (TREE_VEC_LENGTH (argvec) < len - parm_variadic_p)
16385 return unify_too_few_arguments (explain_p,
16386 TREE_VEC_LENGTH (argvec), len);
16388 for (i = 0; i < len - parm_variadic_p; ++i)
16390 RECUR_AND_CHECK_FAILURE (tparms, targs,
16391 TREE_VEC_ELT (parmvec, i),
16392 TREE_VEC_ELT (argvec, i),
16393 UNIFY_ALLOW_NONE, explain_p);
16396 if (parm_variadic_p
16397 && unify_pack_expansion (tparms, targs,
16398 parmvec, argvec,
16399 DEDUCE_EXACT,
16400 /*subr=*/true, explain_p))
16401 return 1;
16403 arg = TYPE_TI_TEMPLATE (arg);
16405 /* Fall through to deduce template name. */
16408 if (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
16409 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
16411 /* Deduce template name TT from TT, TT<>, TT<T> and TT<i>. */
16413 /* Simple cases: Value already set, does match or doesn't. */
16414 if (targ != NULL_TREE && template_args_equal (targ, arg))
16415 return unify_success (explain_p);
16416 else if (targ)
16417 return unify_inconsistency (explain_p, parm, targ, arg);
16419 else
16421 /* If PARM is `const T' and ARG is only `int', we don't have
16422 a match unless we are allowing additional qualification.
16423 If ARG is `const int' and PARM is just `T' that's OK;
16424 that binds `const int' to `T'. */
16425 if (!check_cv_quals_for_unify (strict_in | UNIFY_ALLOW_LESS_CV_QUAL,
16426 arg, parm))
16427 return unify_cv_qual_mismatch (explain_p, parm, arg);
16429 /* Consider the case where ARG is `const volatile int' and
16430 PARM is `const T'. Then, T should be `volatile int'. */
16431 arg = cp_build_qualified_type_real
16432 (arg, cp_type_quals (arg) & ~cp_type_quals (parm), tf_none);
16433 if (arg == error_mark_node)
16434 return unify_invalid (explain_p);
16436 /* Simple cases: Value already set, does match or doesn't. */
16437 if (targ != NULL_TREE && same_type_p (targ, arg))
16438 return unify_success (explain_p);
16439 else if (targ)
16440 return unify_inconsistency (explain_p, parm, targ, arg);
16442 /* Make sure that ARG is not a variable-sized array. (Note
16443 that were talking about variable-sized arrays (like
16444 `int[n]'), rather than arrays of unknown size (like
16445 `int[]').) We'll get very confused by such a type since
16446 the bound of the array is not constant, and therefore
16447 not mangleable. Besides, such types are not allowed in
16448 ISO C++, so we can do as we please here. We do allow
16449 them for 'auto' deduction, since that isn't ABI-exposed. */
16450 if (!is_auto (parm) && variably_modified_type_p (arg, NULL_TREE))
16451 return unify_vla_arg (explain_p, arg);
16453 /* Strip typedefs as in convert_template_argument. */
16454 arg = canonicalize_type_argument (arg, tf_none);
16457 /* If ARG is a parameter pack or an expansion, we cannot unify
16458 against it unless PARM is also a parameter pack. */
16459 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
16460 && !template_parameter_pack_p (parm))
16461 return unify_parameter_pack_mismatch (explain_p, parm, arg);
16463 /* If the argument deduction results is a METHOD_TYPE,
16464 then there is a problem.
16465 METHOD_TYPE doesn't map to any real C++ type the result of
16466 the deduction can not be of that type. */
16467 if (TREE_CODE (arg) == METHOD_TYPE)
16468 return unify_method_type_error (explain_p, arg);
16470 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
16471 return unify_success (explain_p);
16473 case TEMPLATE_PARM_INDEX:
16474 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
16475 if (tparm == error_mark_node)
16476 return unify_invalid (explain_p);
16478 if (TEMPLATE_PARM_LEVEL (parm)
16479 != template_decl_level (tparm))
16481 /* The PARM is not one we're trying to unify. Just check
16482 to see if it matches ARG. */
16483 int result = !(TREE_CODE (arg) == TREE_CODE (parm)
16484 && cp_tree_equal (parm, arg));
16485 if (result)
16486 unify_expression_unequal (explain_p, parm, arg);
16487 return result;
16490 idx = TEMPLATE_PARM_IDX (parm);
16491 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
16493 if (targ)
16495 int x = !cp_tree_equal (targ, arg);
16496 if (x)
16497 unify_inconsistency (explain_p, parm, targ, arg);
16498 return x;
16501 /* [temp.deduct.type] If, in the declaration of a function template
16502 with a non-type template-parameter, the non-type
16503 template-parameter is used in an expression in the function
16504 parameter-list and, if the corresponding template-argument is
16505 deduced, the template-argument type shall match the type of the
16506 template-parameter exactly, except that a template-argument
16507 deduced from an array bound may be of any integral type.
16508 The non-type parameter might use already deduced type parameters. */
16509 tparm = tsubst (TREE_TYPE (parm), targs, 0, NULL_TREE);
16510 if (!TREE_TYPE (arg))
16511 /* Template-parameter dependent expression. Just accept it for now.
16512 It will later be processed in convert_template_argument. */
16514 else if (same_type_p (TREE_TYPE (arg), tparm))
16515 /* OK */;
16516 else if ((strict & UNIFY_ALLOW_INTEGER)
16517 && (TREE_CODE (tparm) == INTEGER_TYPE
16518 || TREE_CODE (tparm) == BOOLEAN_TYPE))
16519 /* Convert the ARG to the type of PARM; the deduced non-type
16520 template argument must exactly match the types of the
16521 corresponding parameter. */
16522 arg = fold (build_nop (tparm, arg));
16523 else if (uses_template_parms (tparm))
16524 /* We haven't deduced the type of this parameter yet. Try again
16525 later. */
16526 return unify_success (explain_p);
16527 else
16528 return unify_type_mismatch (explain_p, tparm, arg);
16530 /* If ARG is a parameter pack or an expansion, we cannot unify
16531 against it unless PARM is also a parameter pack. */
16532 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
16533 && !TEMPLATE_PARM_PARAMETER_PACK (parm))
16534 return unify_parameter_pack_mismatch (explain_p, parm, arg);
16536 arg = strip_typedefs_expr (arg);
16537 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
16538 return unify_success (explain_p);
16540 case PTRMEM_CST:
16542 /* A pointer-to-member constant can be unified only with
16543 another constant. */
16544 if (TREE_CODE (arg) != PTRMEM_CST)
16545 return unify_ptrmem_cst_mismatch (explain_p, parm, arg);
16547 /* Just unify the class member. It would be useless (and possibly
16548 wrong, depending on the strict flags) to unify also
16549 PTRMEM_CST_CLASS, because we want to be sure that both parm and
16550 arg refer to the same variable, even if through different
16551 classes. For instance:
16553 struct A { int x; };
16554 struct B : A { };
16556 Unification of &A::x and &B::x must succeed. */
16557 return unify (tparms, targs, PTRMEM_CST_MEMBER (parm),
16558 PTRMEM_CST_MEMBER (arg), strict, explain_p);
16561 case POINTER_TYPE:
16563 if (TREE_CODE (arg) != POINTER_TYPE)
16564 return unify_type_mismatch (explain_p, parm, arg);
16566 /* [temp.deduct.call]
16568 A can be another pointer or pointer to member type that can
16569 be converted to the deduced A via a qualification
16570 conversion (_conv.qual_).
16572 We pass down STRICT here rather than UNIFY_ALLOW_NONE.
16573 This will allow for additional cv-qualification of the
16574 pointed-to types if appropriate. */
16576 if (TREE_CODE (TREE_TYPE (arg)) == RECORD_TYPE)
16577 /* The derived-to-base conversion only persists through one
16578 level of pointers. */
16579 strict |= (strict_in & UNIFY_ALLOW_DERIVED);
16581 return unify (tparms, targs, TREE_TYPE (parm),
16582 TREE_TYPE (arg), strict, explain_p);
16585 case REFERENCE_TYPE:
16586 if (TREE_CODE (arg) != REFERENCE_TYPE)
16587 return unify_type_mismatch (explain_p, parm, arg);
16588 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
16589 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
16591 case ARRAY_TYPE:
16592 if (TREE_CODE (arg) != ARRAY_TYPE)
16593 return unify_type_mismatch (explain_p, parm, arg);
16594 if ((TYPE_DOMAIN (parm) == NULL_TREE)
16595 != (TYPE_DOMAIN (arg) == NULL_TREE))
16596 return unify_type_mismatch (explain_p, parm, arg);
16597 if (TYPE_DOMAIN (parm) != NULL_TREE)
16599 tree parm_max;
16600 tree arg_max;
16601 bool parm_cst;
16602 bool arg_cst;
16604 /* Our representation of array types uses "N - 1" as the
16605 TYPE_MAX_VALUE for an array with "N" elements, if "N" is
16606 not an integer constant. We cannot unify arbitrarily
16607 complex expressions, so we eliminate the MINUS_EXPRs
16608 here. */
16609 parm_max = TYPE_MAX_VALUE (TYPE_DOMAIN (parm));
16610 parm_cst = TREE_CODE (parm_max) == INTEGER_CST;
16611 if (!parm_cst)
16613 gcc_assert (TREE_CODE (parm_max) == MINUS_EXPR);
16614 parm_max = TREE_OPERAND (parm_max, 0);
16616 arg_max = TYPE_MAX_VALUE (TYPE_DOMAIN (arg));
16617 arg_cst = TREE_CODE (arg_max) == INTEGER_CST;
16618 if (!arg_cst)
16620 /* The ARG_MAX may not be a simple MINUS_EXPR, if we are
16621 trying to unify the type of a variable with the type
16622 of a template parameter. For example:
16624 template <unsigned int N>
16625 void f (char (&) [N]);
16626 int g();
16627 void h(int i) {
16628 char a[g(i)];
16629 f(a);
16632 Here, the type of the ARG will be "int [g(i)]", and
16633 may be a SAVE_EXPR, etc. */
16634 if (TREE_CODE (arg_max) != MINUS_EXPR)
16635 return unify_vla_arg (explain_p, arg);
16636 arg_max = TREE_OPERAND (arg_max, 0);
16639 /* If only one of the bounds used a MINUS_EXPR, compensate
16640 by adding one to the other bound. */
16641 if (parm_cst && !arg_cst)
16642 parm_max = fold_build2_loc (input_location, PLUS_EXPR,
16643 integer_type_node,
16644 parm_max,
16645 integer_one_node);
16646 else if (arg_cst && !parm_cst)
16647 arg_max = fold_build2_loc (input_location, PLUS_EXPR,
16648 integer_type_node,
16649 arg_max,
16650 integer_one_node);
16652 RECUR_AND_CHECK_FAILURE (tparms, targs, parm_max, arg_max,
16653 UNIFY_ALLOW_INTEGER, explain_p);
16655 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
16656 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
16658 case REAL_TYPE:
16659 case COMPLEX_TYPE:
16660 case VECTOR_TYPE:
16661 case INTEGER_TYPE:
16662 case BOOLEAN_TYPE:
16663 case ENUMERAL_TYPE:
16664 case VOID_TYPE:
16665 case NULLPTR_TYPE:
16666 if (TREE_CODE (arg) != TREE_CODE (parm))
16667 return unify_type_mismatch (explain_p, parm, arg);
16669 /* We have already checked cv-qualification at the top of the
16670 function. */
16671 if (!same_type_ignoring_top_level_qualifiers_p (arg, parm))
16672 return unify_type_mismatch (explain_p, parm, arg);
16674 /* As far as unification is concerned, this wins. Later checks
16675 will invalidate it if necessary. */
16676 return unify_success (explain_p);
16678 /* Types INTEGER_CST and MINUS_EXPR can come from array bounds. */
16679 /* Type INTEGER_CST can come from ordinary constant template args. */
16680 case INTEGER_CST:
16681 while (TREE_CODE (arg) == NOP_EXPR)
16682 arg = TREE_OPERAND (arg, 0);
16684 if (TREE_CODE (arg) != INTEGER_CST)
16685 return unify_template_argument_mismatch (explain_p, parm, arg);
16686 return (tree_int_cst_equal (parm, arg)
16687 ? unify_success (explain_p)
16688 : unify_template_argument_mismatch (explain_p, parm, arg));
16690 case TREE_VEC:
16692 int i, len, argslen;
16693 int parm_variadic_p = 0;
16695 if (TREE_CODE (arg) != TREE_VEC)
16696 return unify_template_argument_mismatch (explain_p, parm, arg);
16698 len = TREE_VEC_LENGTH (parm);
16699 argslen = TREE_VEC_LENGTH (arg);
16701 /* Check for pack expansions in the parameters. */
16702 for (i = 0; i < len; ++i)
16704 if (PACK_EXPANSION_P (TREE_VEC_ELT (parm, i)))
16706 if (i == len - 1)
16707 /* We can unify against something with a trailing
16708 parameter pack. */
16709 parm_variadic_p = 1;
16710 else
16711 /* [temp.deduct.type]/9: If the template argument list of
16712 P contains a pack expansion that is not the last
16713 template argument, the entire template argument list
16714 is a non-deduced context. */
16715 return unify_success (explain_p);
16719 /* If we don't have enough arguments to satisfy the parameters
16720 (not counting the pack expression at the end), or we have
16721 too many arguments for a parameter list that doesn't end in
16722 a pack expression, we can't unify. */
16723 if (parm_variadic_p
16724 ? argslen < len - parm_variadic_p
16725 : argslen != len)
16726 return unify_arity (explain_p, TREE_VEC_LENGTH (arg), len);
16728 /* Unify all of the parameters that precede the (optional)
16729 pack expression. */
16730 for (i = 0; i < len - parm_variadic_p; ++i)
16732 RECUR_AND_CHECK_FAILURE (tparms, targs,
16733 TREE_VEC_ELT (parm, i),
16734 TREE_VEC_ELT (arg, i),
16735 UNIFY_ALLOW_NONE, explain_p);
16737 if (parm_variadic_p)
16738 return unify_pack_expansion (tparms, targs, parm, arg,
16739 DEDUCE_EXACT,
16740 /*subr=*/true, explain_p);
16741 return unify_success (explain_p);
16744 case RECORD_TYPE:
16745 case UNION_TYPE:
16746 if (TREE_CODE (arg) != TREE_CODE (parm))
16747 return unify_type_mismatch (explain_p, parm, arg);
16749 if (TYPE_PTRMEMFUNC_P (parm))
16751 if (!TYPE_PTRMEMFUNC_P (arg))
16752 return unify_type_mismatch (explain_p, parm, arg);
16754 return unify (tparms, targs,
16755 TYPE_PTRMEMFUNC_FN_TYPE (parm),
16756 TYPE_PTRMEMFUNC_FN_TYPE (arg),
16757 strict, explain_p);
16760 if (CLASSTYPE_TEMPLATE_INFO (parm))
16762 tree t = NULL_TREE;
16764 if (strict_in & UNIFY_ALLOW_DERIVED)
16766 /* First, we try to unify the PARM and ARG directly. */
16767 t = try_class_unification (tparms, targs,
16768 parm, arg, explain_p);
16770 if (!t)
16772 /* Fallback to the special case allowed in
16773 [temp.deduct.call]:
16775 If P is a class, and P has the form
16776 template-id, then A can be a derived class of
16777 the deduced A. Likewise, if P is a pointer to
16778 a class of the form template-id, A can be a
16779 pointer to a derived class pointed to by the
16780 deduced A. */
16781 enum template_base_result r;
16782 r = get_template_base (tparms, targs, parm, arg,
16783 explain_p, &t);
16785 if (!t)
16786 return unify_no_common_base (explain_p, r, parm, arg);
16789 else if (CLASSTYPE_TEMPLATE_INFO (arg)
16790 && (CLASSTYPE_TI_TEMPLATE (parm)
16791 == CLASSTYPE_TI_TEMPLATE (arg)))
16792 /* Perhaps PARM is something like S<U> and ARG is S<int>.
16793 Then, we should unify `int' and `U'. */
16794 t = arg;
16795 else
16796 /* There's no chance of unification succeeding. */
16797 return unify_type_mismatch (explain_p, parm, arg);
16799 return unify (tparms, targs, CLASSTYPE_TI_ARGS (parm),
16800 CLASSTYPE_TI_ARGS (t), UNIFY_ALLOW_NONE, explain_p);
16802 else if (!same_type_ignoring_top_level_qualifiers_p (parm, arg))
16803 return unify_type_mismatch (explain_p, parm, arg);
16804 return unify_success (explain_p);
16806 case METHOD_TYPE:
16807 case FUNCTION_TYPE:
16809 unsigned int nargs;
16810 tree *args;
16811 tree a;
16812 unsigned int i;
16814 if (TREE_CODE (arg) != TREE_CODE (parm))
16815 return unify_type_mismatch (explain_p, parm, arg);
16817 /* CV qualifications for methods can never be deduced, they must
16818 match exactly. We need to check them explicitly here,
16819 because type_unification_real treats them as any other
16820 cv-qualified parameter. */
16821 if (TREE_CODE (parm) == METHOD_TYPE
16822 && (!check_cv_quals_for_unify
16823 (UNIFY_ALLOW_NONE,
16824 class_of_this_parm (arg),
16825 class_of_this_parm (parm))))
16826 return unify_cv_qual_mismatch (explain_p, parm, arg);
16828 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm),
16829 TREE_TYPE (arg), UNIFY_ALLOW_NONE, explain_p);
16831 nargs = list_length (TYPE_ARG_TYPES (arg));
16832 args = XALLOCAVEC (tree, nargs);
16833 for (a = TYPE_ARG_TYPES (arg), i = 0;
16834 a != NULL_TREE && a != void_list_node;
16835 a = TREE_CHAIN (a), ++i)
16836 args[i] = TREE_VALUE (a);
16837 nargs = i;
16839 return type_unification_real (tparms, targs, TYPE_ARG_TYPES (parm),
16840 args, nargs, 1, DEDUCE_EXACT,
16841 LOOKUP_NORMAL, explain_p);
16844 case OFFSET_TYPE:
16845 /* Unify a pointer to member with a pointer to member function, which
16846 deduces the type of the member as a function type. */
16847 if (TYPE_PTRMEMFUNC_P (arg))
16849 tree method_type;
16850 tree fntype;
16852 /* Check top-level cv qualifiers */
16853 if (!check_cv_quals_for_unify (UNIFY_ALLOW_NONE, arg, parm))
16854 return unify_cv_qual_mismatch (explain_p, parm, arg);
16856 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
16857 TYPE_PTRMEMFUNC_OBJECT_TYPE (arg),
16858 UNIFY_ALLOW_NONE, explain_p);
16860 /* Determine the type of the function we are unifying against. */
16861 method_type = TREE_TYPE (TYPE_PTRMEMFUNC_FN_TYPE (arg));
16862 fntype =
16863 build_function_type (TREE_TYPE (method_type),
16864 TREE_CHAIN (TYPE_ARG_TYPES (method_type)));
16866 /* Extract the cv-qualifiers of the member function from the
16867 implicit object parameter and place them on the function
16868 type to be restored later. */
16869 fntype = apply_memfn_quals (fntype, type_memfn_quals (method_type));
16870 return unify (tparms, targs, TREE_TYPE (parm), fntype, strict, explain_p);
16873 if (TREE_CODE (arg) != OFFSET_TYPE)
16874 return unify_type_mismatch (explain_p, parm, arg);
16875 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
16876 TYPE_OFFSET_BASETYPE (arg),
16877 UNIFY_ALLOW_NONE, explain_p);
16878 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
16879 strict, explain_p);
16881 case CONST_DECL:
16882 if (DECL_TEMPLATE_PARM_P (parm))
16883 return unify (tparms, targs, DECL_INITIAL (parm), arg, strict, explain_p);
16884 if (arg != integral_constant_value (parm))
16885 return unify_template_argument_mismatch (explain_p, parm, arg);
16886 return unify_success (explain_p);
16888 case FIELD_DECL:
16889 case TEMPLATE_DECL:
16890 /* Matched cases are handled by the ARG == PARM test above. */
16891 return unify_template_argument_mismatch (explain_p, parm, arg);
16893 case VAR_DECL:
16894 /* A non-type template parameter that is a variable should be a
16895 an integral constant, in which case, it whould have been
16896 folded into its (constant) value. So we should not be getting
16897 a variable here. */
16898 gcc_unreachable ();
16900 case TYPE_ARGUMENT_PACK:
16901 case NONTYPE_ARGUMENT_PACK:
16902 return unify (tparms, targs, ARGUMENT_PACK_ARGS (parm),
16903 ARGUMENT_PACK_ARGS (arg), strict, explain_p);
16905 case TYPEOF_TYPE:
16906 case DECLTYPE_TYPE:
16907 case UNDERLYING_TYPE:
16908 /* Cannot deduce anything from TYPEOF_TYPE, DECLTYPE_TYPE,
16909 or UNDERLYING_TYPE nodes. */
16910 return unify_success (explain_p);
16912 case ERROR_MARK:
16913 /* Unification fails if we hit an error node. */
16914 return unify_invalid (explain_p);
16916 default:
16917 /* An unresolved overload is a nondeduced context. */
16918 if (is_overloaded_fn (parm) || type_unknown_p (parm))
16919 return unify_success (explain_p);
16920 gcc_assert (EXPR_P (parm));
16922 /* We must be looking at an expression. This can happen with
16923 something like:
16925 template <int I>
16926 void foo(S<I>, S<I + 2>);
16928 This is a "nondeduced context":
16930 [deduct.type]
16932 The nondeduced contexts are:
16934 --A type that is a template-id in which one or more of
16935 the template-arguments is an expression that references
16936 a template-parameter.
16938 In these cases, we assume deduction succeeded, but don't
16939 actually infer any unifications. */
16941 if (!uses_template_parms (parm)
16942 && !template_args_equal (parm, arg))
16943 return unify_expression_unequal (explain_p, parm, arg);
16944 else
16945 return unify_success (explain_p);
16948 #undef RECUR_AND_CHECK_FAILURE
16950 /* Note that DECL can be defined in this translation unit, if
16951 required. */
16953 static void
16954 mark_definable (tree decl)
16956 tree clone;
16957 DECL_NOT_REALLY_EXTERN (decl) = 1;
16958 FOR_EACH_CLONE (clone, decl)
16959 DECL_NOT_REALLY_EXTERN (clone) = 1;
16962 /* Called if RESULT is explicitly instantiated, or is a member of an
16963 explicitly instantiated class. */
16965 void
16966 mark_decl_instantiated (tree result, int extern_p)
16968 SET_DECL_EXPLICIT_INSTANTIATION (result);
16970 /* If this entity has already been written out, it's too late to
16971 make any modifications. */
16972 if (TREE_ASM_WRITTEN (result))
16973 return;
16975 if (TREE_CODE (result) != FUNCTION_DECL)
16976 /* The TREE_PUBLIC flag for function declarations will have been
16977 set correctly by tsubst. */
16978 TREE_PUBLIC (result) = 1;
16980 /* This might have been set by an earlier implicit instantiation. */
16981 DECL_COMDAT (result) = 0;
16983 if (extern_p)
16984 DECL_NOT_REALLY_EXTERN (result) = 0;
16985 else
16987 mark_definable (result);
16988 /* Always make artificials weak. */
16989 if (DECL_ARTIFICIAL (result) && flag_weak)
16990 comdat_linkage (result);
16991 /* For WIN32 we also want to put explicit instantiations in
16992 linkonce sections. */
16993 else if (TREE_PUBLIC (result))
16994 maybe_make_one_only (result);
16997 /* If EXTERN_P, then this function will not be emitted -- unless
16998 followed by an explicit instantiation, at which point its linkage
16999 will be adjusted. If !EXTERN_P, then this function will be
17000 emitted here. In neither circumstance do we want
17001 import_export_decl to adjust the linkage. */
17002 DECL_INTERFACE_KNOWN (result) = 1;
17005 /* Subroutine of more_specialized_fn: check whether TARGS is missing any
17006 important template arguments. If any are missing, we check whether
17007 they're important by using error_mark_node for substituting into any
17008 args that were used for partial ordering (the ones between ARGS and END)
17009 and seeing if it bubbles up. */
17011 static bool
17012 check_undeduced_parms (tree targs, tree args, tree end)
17014 bool found = false;
17015 int i;
17016 for (i = TREE_VEC_LENGTH (targs) - 1; i >= 0; --i)
17017 if (TREE_VEC_ELT (targs, i) == NULL_TREE)
17019 found = true;
17020 TREE_VEC_ELT (targs, i) = error_mark_node;
17022 if (found)
17024 tree substed = tsubst_arg_types (args, targs, end, tf_none, NULL_TREE);
17025 if (substed == error_mark_node)
17026 return true;
17028 return false;
17031 /* Given two function templates PAT1 and PAT2, return:
17033 1 if PAT1 is more specialized than PAT2 as described in [temp.func.order].
17034 -1 if PAT2 is more specialized than PAT1.
17035 0 if neither is more specialized.
17037 LEN indicates the number of parameters we should consider
17038 (defaulted parameters should not be considered).
17040 The 1998 std underspecified function template partial ordering, and
17041 DR214 addresses the issue. We take pairs of arguments, one from
17042 each of the templates, and deduce them against each other. One of
17043 the templates will be more specialized if all the *other*
17044 template's arguments deduce against its arguments and at least one
17045 of its arguments *does* *not* deduce against the other template's
17046 corresponding argument. Deduction is done as for class templates.
17047 The arguments used in deduction have reference and top level cv
17048 qualifiers removed. Iff both arguments were originally reference
17049 types *and* deduction succeeds in both directions, the template
17050 with the more cv-qualified argument wins for that pairing (if
17051 neither is more cv-qualified, they both are equal). Unlike regular
17052 deduction, after all the arguments have been deduced in this way,
17053 we do *not* verify the deduced template argument values can be
17054 substituted into non-deduced contexts.
17056 The logic can be a bit confusing here, because we look at deduce1 and
17057 targs1 to see if pat2 is at least as specialized, and vice versa; if we
17058 can find template arguments for pat1 to make arg1 look like arg2, that
17059 means that arg2 is at least as specialized as arg1. */
17062 more_specialized_fn (tree pat1, tree pat2, int len)
17064 tree decl1 = DECL_TEMPLATE_RESULT (pat1);
17065 tree decl2 = DECL_TEMPLATE_RESULT (pat2);
17066 tree targs1 = make_tree_vec (DECL_NTPARMS (pat1));
17067 tree targs2 = make_tree_vec (DECL_NTPARMS (pat2));
17068 tree tparms1 = DECL_INNERMOST_TEMPLATE_PARMS (pat1);
17069 tree tparms2 = DECL_INNERMOST_TEMPLATE_PARMS (pat2);
17070 tree args1 = TYPE_ARG_TYPES (TREE_TYPE (decl1));
17071 tree args2 = TYPE_ARG_TYPES (TREE_TYPE (decl2));
17072 tree origs1, origs2;
17073 bool lose1 = false;
17074 bool lose2 = false;
17076 /* Remove the this parameter from non-static member functions. If
17077 one is a non-static member function and the other is not a static
17078 member function, remove the first parameter from that function
17079 also. This situation occurs for operator functions where we
17080 locate both a member function (with this pointer) and non-member
17081 operator (with explicit first operand). */
17082 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl1))
17084 len--; /* LEN is the number of significant arguments for DECL1 */
17085 args1 = TREE_CHAIN (args1);
17086 if (!DECL_STATIC_FUNCTION_P (decl2))
17087 args2 = TREE_CHAIN (args2);
17089 else if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl2))
17091 args2 = TREE_CHAIN (args2);
17092 if (!DECL_STATIC_FUNCTION_P (decl1))
17094 len--;
17095 args1 = TREE_CHAIN (args1);
17099 /* If only one is a conversion operator, they are unordered. */
17100 if (DECL_CONV_FN_P (decl1) != DECL_CONV_FN_P (decl2))
17101 return 0;
17103 /* Consider the return type for a conversion function */
17104 if (DECL_CONV_FN_P (decl1))
17106 args1 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl1)), args1);
17107 args2 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl2)), args2);
17108 len++;
17111 processing_template_decl++;
17113 origs1 = args1;
17114 origs2 = args2;
17116 while (len--
17117 /* Stop when an ellipsis is seen. */
17118 && args1 != NULL_TREE && args2 != NULL_TREE)
17120 tree arg1 = TREE_VALUE (args1);
17121 tree arg2 = TREE_VALUE (args2);
17122 int deduce1, deduce2;
17123 int quals1 = -1;
17124 int quals2 = -1;
17126 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
17127 && TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
17129 /* When both arguments are pack expansions, we need only
17130 unify the patterns themselves. */
17131 arg1 = PACK_EXPANSION_PATTERN (arg1);
17132 arg2 = PACK_EXPANSION_PATTERN (arg2);
17134 /* This is the last comparison we need to do. */
17135 len = 0;
17138 if (TREE_CODE (arg1) == REFERENCE_TYPE)
17140 arg1 = TREE_TYPE (arg1);
17141 quals1 = cp_type_quals (arg1);
17144 if (TREE_CODE (arg2) == REFERENCE_TYPE)
17146 arg2 = TREE_TYPE (arg2);
17147 quals2 = cp_type_quals (arg2);
17150 arg1 = TYPE_MAIN_VARIANT (arg1);
17151 arg2 = TYPE_MAIN_VARIANT (arg2);
17153 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION)
17155 int i, len2 = list_length (args2);
17156 tree parmvec = make_tree_vec (1);
17157 tree argvec = make_tree_vec (len2);
17158 tree ta = args2;
17160 /* Setup the parameter vector, which contains only ARG1. */
17161 TREE_VEC_ELT (parmvec, 0) = arg1;
17163 /* Setup the argument vector, which contains the remaining
17164 arguments. */
17165 for (i = 0; i < len2; i++, ta = TREE_CHAIN (ta))
17166 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
17168 deduce1 = (unify_pack_expansion (tparms1, targs1, parmvec,
17169 argvec, DEDUCE_EXACT,
17170 /*subr=*/true, /*explain_p=*/false)
17171 == 0);
17173 /* We cannot deduce in the other direction, because ARG1 is
17174 a pack expansion but ARG2 is not. */
17175 deduce2 = 0;
17177 else if (TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
17179 int i, len1 = list_length (args1);
17180 tree parmvec = make_tree_vec (1);
17181 tree argvec = make_tree_vec (len1);
17182 tree ta = args1;
17184 /* Setup the parameter vector, which contains only ARG1. */
17185 TREE_VEC_ELT (parmvec, 0) = arg2;
17187 /* Setup the argument vector, which contains the remaining
17188 arguments. */
17189 for (i = 0; i < len1; i++, ta = TREE_CHAIN (ta))
17190 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
17192 deduce2 = (unify_pack_expansion (tparms2, targs2, parmvec,
17193 argvec, DEDUCE_EXACT,
17194 /*subr=*/true, /*explain_p=*/false)
17195 == 0);
17197 /* We cannot deduce in the other direction, because ARG2 is
17198 a pack expansion but ARG1 is not.*/
17199 deduce1 = 0;
17202 else
17204 /* The normal case, where neither argument is a pack
17205 expansion. */
17206 deduce1 = (unify (tparms1, targs1, arg1, arg2,
17207 UNIFY_ALLOW_NONE, /*explain_p=*/false)
17208 == 0);
17209 deduce2 = (unify (tparms2, targs2, arg2, arg1,
17210 UNIFY_ALLOW_NONE, /*explain_p=*/false)
17211 == 0);
17214 /* If we couldn't deduce arguments for tparms1 to make arg1 match
17215 arg2, then arg2 is not as specialized as arg1. */
17216 if (!deduce1)
17217 lose2 = true;
17218 if (!deduce2)
17219 lose1 = true;
17221 /* "If, for a given type, deduction succeeds in both directions
17222 (i.e., the types are identical after the transformations above)
17223 and if the type from the argument template is more cv-qualified
17224 than the type from the parameter template (as described above)
17225 that type is considered to be more specialized than the other. If
17226 neither type is more cv-qualified than the other then neither type
17227 is more specialized than the other." */
17229 if (deduce1 && deduce2
17230 && quals1 != quals2 && quals1 >= 0 && quals2 >= 0)
17232 if ((quals1 & quals2) == quals2)
17233 lose2 = true;
17234 if ((quals1 & quals2) == quals1)
17235 lose1 = true;
17238 if (lose1 && lose2)
17239 /* We've failed to deduce something in either direction.
17240 These must be unordered. */
17241 break;
17243 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
17244 || TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
17245 /* We have already processed all of the arguments in our
17246 handing of the pack expansion type. */
17247 len = 0;
17249 args1 = TREE_CHAIN (args1);
17250 args2 = TREE_CHAIN (args2);
17253 /* "In most cases, all template parameters must have values in order for
17254 deduction to succeed, but for partial ordering purposes a template
17255 parameter may remain without a value provided it is not used in the
17256 types being used for partial ordering."
17258 Thus, if we are missing any of the targs1 we need to substitute into
17259 origs1, then pat2 is not as specialized as pat1. This can happen when
17260 there is a nondeduced context. */
17261 if (!lose2 && check_undeduced_parms (targs1, origs1, args1))
17262 lose2 = true;
17263 if (!lose1 && check_undeduced_parms (targs2, origs2, args2))
17264 lose1 = true;
17266 processing_template_decl--;
17268 /* All things being equal, if the next argument is a pack expansion
17269 for one function but not for the other, prefer the
17270 non-variadic function. FIXME this is bogus; see c++/41958. */
17271 if (lose1 == lose2
17272 && args1 && TREE_VALUE (args1)
17273 && args2 && TREE_VALUE (args2))
17275 lose1 = TREE_CODE (TREE_VALUE (args1)) == TYPE_PACK_EXPANSION;
17276 lose2 = TREE_CODE (TREE_VALUE (args2)) == TYPE_PACK_EXPANSION;
17279 if (lose1 == lose2)
17280 return 0;
17281 else if (!lose1)
17282 return 1;
17283 else
17284 return -1;
17287 /* Determine which of two partial specializations of MAIN_TMPL is more
17288 specialized.
17290 PAT1 is a TREE_LIST whose TREE_TYPE is the _TYPE node corresponding
17291 to the first partial specialization. The TREE_VALUE is the
17292 innermost set of template parameters for the partial
17293 specialization. PAT2 is similar, but for the second template.
17295 Return 1 if the first partial specialization is more specialized;
17296 -1 if the second is more specialized; 0 if neither is more
17297 specialized.
17299 See [temp.class.order] for information about determining which of
17300 two templates is more specialized. */
17302 static int
17303 more_specialized_class (tree main_tmpl, tree pat1, tree pat2)
17305 tree targs;
17306 tree tmpl1, tmpl2;
17307 int winner = 0;
17308 bool any_deductions = false;
17310 tmpl1 = TREE_TYPE (pat1);
17311 tmpl2 = TREE_TYPE (pat2);
17313 /* Just like what happens for functions, if we are ordering between
17314 different class template specializations, we may encounter dependent
17315 types in the arguments, and we need our dependency check functions
17316 to behave correctly. */
17317 ++processing_template_decl;
17318 targs = get_class_bindings (main_tmpl, TREE_VALUE (pat1),
17319 CLASSTYPE_TI_ARGS (tmpl1),
17320 CLASSTYPE_TI_ARGS (tmpl2));
17321 if (targs)
17323 --winner;
17324 any_deductions = true;
17327 targs = get_class_bindings (main_tmpl, TREE_VALUE (pat2),
17328 CLASSTYPE_TI_ARGS (tmpl2),
17329 CLASSTYPE_TI_ARGS (tmpl1));
17330 if (targs)
17332 ++winner;
17333 any_deductions = true;
17335 --processing_template_decl;
17337 /* In the case of a tie where at least one of the class templates
17338 has a parameter pack at the end, the template with the most
17339 non-packed parameters wins. */
17340 if (winner == 0
17341 && any_deductions
17342 && (template_args_variadic_p (TREE_PURPOSE (pat1))
17343 || template_args_variadic_p (TREE_PURPOSE (pat2))))
17345 tree args1 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat1));
17346 tree args2 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat2));
17347 int len1 = TREE_VEC_LENGTH (args1);
17348 int len2 = TREE_VEC_LENGTH (args2);
17350 /* We don't count the pack expansion at the end. */
17351 if (template_args_variadic_p (TREE_PURPOSE (pat1)))
17352 --len1;
17353 if (template_args_variadic_p (TREE_PURPOSE (pat2)))
17354 --len2;
17356 if (len1 > len2)
17357 return 1;
17358 else if (len1 < len2)
17359 return -1;
17362 return winner;
17365 /* Return the template arguments that will produce the function signature
17366 DECL from the function template FN, with the explicit template
17367 arguments EXPLICIT_ARGS. If CHECK_RETTYPE is true, the return type must
17368 also match. Return NULL_TREE if no satisfactory arguments could be
17369 found. */
17371 static tree
17372 get_bindings (tree fn, tree decl, tree explicit_args, bool check_rettype)
17374 int ntparms = DECL_NTPARMS (fn);
17375 tree targs = make_tree_vec (ntparms);
17376 tree decl_type = TREE_TYPE (decl);
17377 tree decl_arg_types;
17378 tree *args;
17379 unsigned int nargs, ix;
17380 tree arg;
17382 gcc_assert (decl != DECL_TEMPLATE_RESULT (fn));
17384 /* Never do unification on the 'this' parameter. */
17385 decl_arg_types = skip_artificial_parms_for (decl,
17386 TYPE_ARG_TYPES (decl_type));
17388 nargs = list_length (decl_arg_types);
17389 args = XALLOCAVEC (tree, nargs);
17390 for (arg = decl_arg_types, ix = 0;
17391 arg != NULL_TREE && arg != void_list_node;
17392 arg = TREE_CHAIN (arg), ++ix)
17393 args[ix] = TREE_VALUE (arg);
17395 if (fn_type_unification (fn, explicit_args, targs,
17396 args, ix,
17397 (check_rettype || DECL_CONV_FN_P (fn)
17398 ? TREE_TYPE (decl_type) : NULL_TREE),
17399 DEDUCE_EXACT, LOOKUP_NORMAL, /*explain_p=*/false)
17400 == error_mark_node)
17401 return NULL_TREE;
17403 return targs;
17406 /* Return the innermost template arguments that, when applied to a partial
17407 specialization of MAIN_TMPL whose innermost template parameters are
17408 TPARMS, and whose specialization arguments are SPEC_ARGS, yield the
17409 ARGS.
17411 For example, suppose we have:
17413 template <class T, class U> struct S {};
17414 template <class T> struct S<T*, int> {};
17416 Then, suppose we want to get `S<double*, int>'. The TPARMS will be
17417 {T}, the SPEC_ARGS will be {T*, int} and the ARGS will be {double*,
17418 int}. The resulting vector will be {double}, indicating that `T'
17419 is bound to `double'. */
17421 static tree
17422 get_class_bindings (tree main_tmpl, tree tparms, tree spec_args, tree args)
17424 int i, ntparms = TREE_VEC_LENGTH (tparms);
17425 tree deduced_args;
17426 tree innermost_deduced_args;
17428 innermost_deduced_args = make_tree_vec (ntparms);
17429 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
17431 deduced_args = copy_node (args);
17432 SET_TMPL_ARGS_LEVEL (deduced_args,
17433 TMPL_ARGS_DEPTH (deduced_args),
17434 innermost_deduced_args);
17436 else
17437 deduced_args = innermost_deduced_args;
17439 if (unify (tparms, deduced_args,
17440 INNERMOST_TEMPLATE_ARGS (spec_args),
17441 INNERMOST_TEMPLATE_ARGS (args),
17442 UNIFY_ALLOW_NONE, /*explain_p=*/false))
17443 return NULL_TREE;
17445 for (i = 0; i < ntparms; ++i)
17446 if (! TREE_VEC_ELT (innermost_deduced_args, i))
17447 return NULL_TREE;
17449 /* Verify that nondeduced template arguments agree with the type
17450 obtained from argument deduction.
17452 For example:
17454 struct A { typedef int X; };
17455 template <class T, class U> struct C {};
17456 template <class T> struct C<T, typename T::X> {};
17458 Then with the instantiation `C<A, int>', we can deduce that
17459 `T' is `A' but unify () does not check whether `typename T::X'
17460 is `int'. */
17461 spec_args = tsubst (spec_args, deduced_args, tf_none, NULL_TREE);
17462 spec_args = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (main_tmpl),
17463 spec_args, main_tmpl,
17464 tf_none, false, false);
17465 if (spec_args == error_mark_node
17466 /* We only need to check the innermost arguments; the other
17467 arguments will always agree. */
17468 || !comp_template_args (INNERMOST_TEMPLATE_ARGS (spec_args),
17469 INNERMOST_TEMPLATE_ARGS (args)))
17470 return NULL_TREE;
17472 /* Now that we have bindings for all of the template arguments,
17473 ensure that the arguments deduced for the template template
17474 parameters have compatible template parameter lists. See the use
17475 of template_template_parm_bindings_ok_p in fn_type_unification
17476 for more information. */
17477 if (!template_template_parm_bindings_ok_p (tparms, deduced_args))
17478 return NULL_TREE;
17480 return deduced_args;
17483 /* TEMPLATES is a TREE_LIST. Each TREE_VALUE is a TEMPLATE_DECL.
17484 Return the TREE_LIST node with the most specialized template, if
17485 any. If there is no most specialized template, the error_mark_node
17486 is returned.
17488 Note that this function does not look at, or modify, the
17489 TREE_PURPOSE or TREE_TYPE of any of the nodes. Since the node
17490 returned is one of the elements of INSTANTIATIONS, callers may
17491 store information in the TREE_PURPOSE or TREE_TYPE of the nodes,
17492 and retrieve it from the value returned. */
17494 tree
17495 most_specialized_instantiation (tree templates)
17497 tree fn, champ;
17499 ++processing_template_decl;
17501 champ = templates;
17502 for (fn = TREE_CHAIN (templates); fn; fn = TREE_CHAIN (fn))
17504 int fate = 0;
17506 if (get_bindings (TREE_VALUE (champ),
17507 DECL_TEMPLATE_RESULT (TREE_VALUE (fn)),
17508 NULL_TREE, /*check_ret=*/true))
17509 fate--;
17511 if (get_bindings (TREE_VALUE (fn),
17512 DECL_TEMPLATE_RESULT (TREE_VALUE (champ)),
17513 NULL_TREE, /*check_ret=*/true))
17514 fate++;
17516 if (fate == -1)
17517 champ = fn;
17518 else if (!fate)
17520 /* Equally specialized, move to next function. If there
17521 is no next function, nothing's most specialized. */
17522 fn = TREE_CHAIN (fn);
17523 champ = fn;
17524 if (!fn)
17525 break;
17529 if (champ)
17530 /* Now verify that champ is better than everything earlier in the
17531 instantiation list. */
17532 for (fn = templates; fn != champ; fn = TREE_CHAIN (fn))
17533 if (get_bindings (TREE_VALUE (champ),
17534 DECL_TEMPLATE_RESULT (TREE_VALUE (fn)),
17535 NULL_TREE, /*check_ret=*/true)
17536 || !get_bindings (TREE_VALUE (fn),
17537 DECL_TEMPLATE_RESULT (TREE_VALUE (champ)),
17538 NULL_TREE, /*check_ret=*/true))
17540 champ = NULL_TREE;
17541 break;
17544 processing_template_decl--;
17546 if (!champ)
17547 return error_mark_node;
17549 return champ;
17552 /* If DECL is a specialization of some template, return the most
17553 general such template. Otherwise, returns NULL_TREE.
17555 For example, given:
17557 template <class T> struct S { template <class U> void f(U); };
17559 if TMPL is `template <class U> void S<int>::f(U)' this will return
17560 the full template. This function will not trace past partial
17561 specializations, however. For example, given in addition:
17563 template <class T> struct S<T*> { template <class U> void f(U); };
17565 if TMPL is `template <class U> void S<int*>::f(U)' this will return
17566 `template <class T> template <class U> S<T*>::f(U)'. */
17568 tree
17569 most_general_template (tree decl)
17571 /* If DECL is a FUNCTION_DECL, find the TEMPLATE_DECL of which it is
17572 an immediate specialization. */
17573 if (TREE_CODE (decl) == FUNCTION_DECL)
17575 if (DECL_TEMPLATE_INFO (decl)) {
17576 decl = DECL_TI_TEMPLATE (decl);
17578 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE for a
17579 template friend. */
17580 if (TREE_CODE (decl) != TEMPLATE_DECL)
17581 return NULL_TREE;
17582 } else
17583 return NULL_TREE;
17586 /* Look for more and more general templates. */
17587 while (DECL_TEMPLATE_INFO (decl))
17589 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE in some cases.
17590 (See cp-tree.h for details.) */
17591 if (TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
17592 break;
17594 if (CLASS_TYPE_P (TREE_TYPE (decl))
17595 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
17596 break;
17598 /* Stop if we run into an explicitly specialized class template. */
17599 if (!DECL_NAMESPACE_SCOPE_P (decl)
17600 && DECL_CONTEXT (decl)
17601 && CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (decl)))
17602 break;
17604 decl = DECL_TI_TEMPLATE (decl);
17607 return decl;
17610 /* Return the most specialized of the class template partial
17611 specializations of TMPL which can produce TYPE, a specialization of
17612 TMPL. The value returned is actually a TREE_LIST; the TREE_TYPE is
17613 a _TYPE node corresponding to the partial specialization, while the
17614 TREE_PURPOSE is the set of template arguments that must be
17615 substituted into the TREE_TYPE in order to generate TYPE.
17617 If the choice of partial specialization is ambiguous, a diagnostic
17618 is issued, and the error_mark_node is returned. If there are no
17619 partial specializations of TMPL matching TYPE, then NULL_TREE is
17620 returned. */
17622 static tree
17623 most_specialized_class (tree type, tree tmpl, tsubst_flags_t complain)
17625 tree list = NULL_TREE;
17626 tree t;
17627 tree champ;
17628 int fate;
17629 bool ambiguous_p;
17630 tree args;
17631 tree outer_args = NULL_TREE;
17633 tmpl = most_general_template (tmpl);
17634 args = CLASSTYPE_TI_ARGS (type);
17636 /* For determining which partial specialization to use, only the
17637 innermost args are interesting. */
17638 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
17640 outer_args = strip_innermost_template_args (args, 1);
17641 args = INNERMOST_TEMPLATE_ARGS (args);
17644 for (t = DECL_TEMPLATE_SPECIALIZATIONS (tmpl); t; t = TREE_CHAIN (t))
17646 tree partial_spec_args;
17647 tree spec_args;
17648 tree parms = TREE_VALUE (t);
17650 partial_spec_args = CLASSTYPE_TI_ARGS (TREE_TYPE (t));
17652 ++processing_template_decl;
17654 if (outer_args)
17656 int i;
17658 /* Discard the outer levels of args, and then substitute in the
17659 template args from the enclosing class. */
17660 partial_spec_args = INNERMOST_TEMPLATE_ARGS (partial_spec_args);
17661 partial_spec_args = tsubst_template_args
17662 (partial_spec_args, outer_args, tf_none, NULL_TREE);
17664 /* PARMS already refers to just the innermost parms, but the
17665 template parms in partial_spec_args had their levels lowered
17666 by tsubst, so we need to do the same for the parm list. We
17667 can't just tsubst the TREE_VEC itself, as tsubst wants to
17668 treat a TREE_VEC as an argument vector. */
17669 parms = copy_node (parms);
17670 for (i = TREE_VEC_LENGTH (parms) - 1; i >= 0; --i)
17671 TREE_VEC_ELT (parms, i) =
17672 tsubst (TREE_VEC_ELT (parms, i), outer_args, tf_none, NULL_TREE);
17676 partial_spec_args =
17677 coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
17678 add_to_template_args (outer_args,
17679 partial_spec_args),
17680 tmpl, tf_none,
17681 /*require_all_args=*/true,
17682 /*use_default_args=*/true);
17684 --processing_template_decl;
17686 if (partial_spec_args == error_mark_node)
17687 return error_mark_node;
17689 spec_args = get_class_bindings (tmpl, parms,
17690 partial_spec_args,
17691 args);
17692 if (spec_args)
17694 if (outer_args)
17695 spec_args = add_to_template_args (outer_args, spec_args);
17696 list = tree_cons (spec_args, TREE_VALUE (t), list);
17697 TREE_TYPE (list) = TREE_TYPE (t);
17701 if (! list)
17702 return NULL_TREE;
17704 ambiguous_p = false;
17705 t = list;
17706 champ = t;
17707 t = TREE_CHAIN (t);
17708 for (; t; t = TREE_CHAIN (t))
17710 fate = more_specialized_class (tmpl, champ, t);
17711 if (fate == 1)
17713 else
17715 if (fate == 0)
17717 t = TREE_CHAIN (t);
17718 if (! t)
17720 ambiguous_p = true;
17721 break;
17724 champ = t;
17728 if (!ambiguous_p)
17729 for (t = list; t && t != champ; t = TREE_CHAIN (t))
17731 fate = more_specialized_class (tmpl, champ, t);
17732 if (fate != 1)
17734 ambiguous_p = true;
17735 break;
17739 if (ambiguous_p)
17741 const char *str;
17742 char *spaces = NULL;
17743 if (!(complain & tf_error))
17744 return error_mark_node;
17745 error ("ambiguous class template instantiation for %q#T", type);
17746 str = ngettext ("candidate is:", "candidates are:", list_length (list));
17747 for (t = list; t; t = TREE_CHAIN (t))
17749 error ("%s %+#T", spaces ? spaces : str, TREE_TYPE (t));
17750 spaces = spaces ? spaces : get_spaces (str);
17752 free (spaces);
17753 return error_mark_node;
17756 return champ;
17759 /* Explicitly instantiate DECL. */
17761 void
17762 do_decl_instantiation (tree decl, tree storage)
17764 tree result = NULL_TREE;
17765 int extern_p = 0;
17767 if (!decl || decl == error_mark_node)
17768 /* An error occurred, for which grokdeclarator has already issued
17769 an appropriate message. */
17770 return;
17771 else if (! DECL_LANG_SPECIFIC (decl))
17773 error ("explicit instantiation of non-template %q#D", decl);
17774 return;
17776 else if (TREE_CODE (decl) == VAR_DECL)
17778 /* There is an asymmetry here in the way VAR_DECLs and
17779 FUNCTION_DECLs are handled by grokdeclarator. In the case of
17780 the latter, the DECL we get back will be marked as a
17781 template instantiation, and the appropriate
17782 DECL_TEMPLATE_INFO will be set up. This does not happen for
17783 VAR_DECLs so we do the lookup here. Probably, grokdeclarator
17784 should handle VAR_DECLs as it currently handles
17785 FUNCTION_DECLs. */
17786 if (!DECL_CLASS_SCOPE_P (decl))
17788 error ("%qD is not a static data member of a class template", decl);
17789 return;
17791 result = lookup_field (DECL_CONTEXT (decl), DECL_NAME (decl), 0, false);
17792 if (!result || TREE_CODE (result) != VAR_DECL)
17794 error ("no matching template for %qD found", decl);
17795 return;
17797 if (!same_type_p (TREE_TYPE (result), TREE_TYPE (decl)))
17799 error ("type %qT for explicit instantiation %qD does not match "
17800 "declared type %qT", TREE_TYPE (result), decl,
17801 TREE_TYPE (decl));
17802 return;
17805 else if (TREE_CODE (decl) != FUNCTION_DECL)
17807 error ("explicit instantiation of %q#D", decl);
17808 return;
17810 else
17811 result = decl;
17813 /* Check for various error cases. Note that if the explicit
17814 instantiation is valid the RESULT will currently be marked as an
17815 *implicit* instantiation; DECL_EXPLICIT_INSTANTIATION is not set
17816 until we get here. */
17818 if (DECL_TEMPLATE_SPECIALIZATION (result))
17820 /* DR 259 [temp.spec].
17822 Both an explicit instantiation and a declaration of an explicit
17823 specialization shall not appear in a program unless the explicit
17824 instantiation follows a declaration of the explicit specialization.
17826 For a given set of template parameters, if an explicit
17827 instantiation of a template appears after a declaration of an
17828 explicit specialization for that template, the explicit
17829 instantiation has no effect. */
17830 return;
17832 else if (DECL_EXPLICIT_INSTANTIATION (result))
17834 /* [temp.spec]
17836 No program shall explicitly instantiate any template more
17837 than once.
17839 We check DECL_NOT_REALLY_EXTERN so as not to complain when
17840 the first instantiation was `extern' and the second is not,
17841 and EXTERN_P for the opposite case. */
17842 if (DECL_NOT_REALLY_EXTERN (result) && !extern_p)
17843 permerror (input_location, "duplicate explicit instantiation of %q#D", result);
17844 /* If an "extern" explicit instantiation follows an ordinary
17845 explicit instantiation, the template is instantiated. */
17846 if (extern_p)
17847 return;
17849 else if (!DECL_IMPLICIT_INSTANTIATION (result))
17851 error ("no matching template for %qD found", result);
17852 return;
17854 else if (!DECL_TEMPLATE_INFO (result))
17856 permerror (input_location, "explicit instantiation of non-template %q#D", result);
17857 return;
17860 if (storage == NULL_TREE)
17862 else if (storage == ridpointers[(int) RID_EXTERN])
17864 if (!in_system_header && (cxx_dialect == cxx98))
17865 pedwarn (input_location, OPT_Wpedantic,
17866 "ISO C++ 1998 forbids the use of %<extern%> on explicit "
17867 "instantiations");
17868 extern_p = 1;
17870 else
17871 error ("storage class %qD applied to template instantiation", storage);
17873 check_explicit_instantiation_namespace (result);
17874 mark_decl_instantiated (result, extern_p);
17875 if (! extern_p)
17876 instantiate_decl (result, /*defer_ok=*/1,
17877 /*expl_inst_class_mem_p=*/false);
17880 static void
17881 mark_class_instantiated (tree t, int extern_p)
17883 SET_CLASSTYPE_EXPLICIT_INSTANTIATION (t);
17884 SET_CLASSTYPE_INTERFACE_KNOWN (t);
17885 CLASSTYPE_INTERFACE_ONLY (t) = extern_p;
17886 TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (t)) = extern_p;
17887 if (! extern_p)
17889 CLASSTYPE_DEBUG_REQUESTED (t) = 1;
17890 rest_of_type_compilation (t, 1);
17894 /* Called from do_type_instantiation through binding_table_foreach to
17895 do recursive instantiation for the type bound in ENTRY. */
17896 static void
17897 bt_instantiate_type_proc (binding_entry entry, void *data)
17899 tree storage = *(tree *) data;
17901 if (MAYBE_CLASS_TYPE_P (entry->type)
17902 && !uses_template_parms (CLASSTYPE_TI_ARGS (entry->type)))
17903 do_type_instantiation (TYPE_MAIN_DECL (entry->type), storage, 0);
17906 /* Called from do_type_instantiation to instantiate a member
17907 (a member function or a static member variable) of an
17908 explicitly instantiated class template. */
17909 static void
17910 instantiate_class_member (tree decl, int extern_p)
17912 mark_decl_instantiated (decl, extern_p);
17913 if (! extern_p)
17914 instantiate_decl (decl, /*defer_ok=*/1,
17915 /*expl_inst_class_mem_p=*/true);
17918 /* Perform an explicit instantiation of template class T. STORAGE, if
17919 non-null, is the RID for extern, inline or static. COMPLAIN is
17920 nonzero if this is called from the parser, zero if called recursively,
17921 since the standard is unclear (as detailed below). */
17923 void
17924 do_type_instantiation (tree t, tree storage, tsubst_flags_t complain)
17926 int extern_p = 0;
17927 int nomem_p = 0;
17928 int static_p = 0;
17929 int previous_instantiation_extern_p = 0;
17931 if (TREE_CODE (t) == TYPE_DECL)
17932 t = TREE_TYPE (t);
17934 if (! CLASS_TYPE_P (t) || ! CLASSTYPE_TEMPLATE_INFO (t))
17936 tree tmpl =
17937 (TYPE_TEMPLATE_INFO (t)) ? TYPE_TI_TEMPLATE (t) : NULL;
17938 if (tmpl)
17939 error ("explicit instantiation of non-class template %qD", tmpl);
17940 else
17941 error ("explicit instantiation of non-template type %qT", t);
17942 return;
17945 complete_type (t);
17947 if (!COMPLETE_TYPE_P (t))
17949 if (complain & tf_error)
17950 error ("explicit instantiation of %q#T before definition of template",
17952 return;
17955 if (storage != NULL_TREE)
17957 if (!in_system_header)
17959 if (storage == ridpointers[(int) RID_EXTERN])
17961 if (cxx_dialect == cxx98)
17962 pedwarn (input_location, OPT_Wpedantic,
17963 "ISO C++ 1998 forbids the use of %<extern%> on "
17964 "explicit instantiations");
17966 else
17967 pedwarn (input_location, OPT_Wpedantic,
17968 "ISO C++ forbids the use of %qE"
17969 " on explicit instantiations", storage);
17972 if (storage == ridpointers[(int) RID_INLINE])
17973 nomem_p = 1;
17974 else if (storage == ridpointers[(int) RID_EXTERN])
17975 extern_p = 1;
17976 else if (storage == ridpointers[(int) RID_STATIC])
17977 static_p = 1;
17978 else
17980 error ("storage class %qD applied to template instantiation",
17981 storage);
17982 extern_p = 0;
17986 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (t))
17988 /* DR 259 [temp.spec].
17990 Both an explicit instantiation and a declaration of an explicit
17991 specialization shall not appear in a program unless the explicit
17992 instantiation follows a declaration of the explicit specialization.
17994 For a given set of template parameters, if an explicit
17995 instantiation of a template appears after a declaration of an
17996 explicit specialization for that template, the explicit
17997 instantiation has no effect. */
17998 return;
18000 else if (CLASSTYPE_EXPLICIT_INSTANTIATION (t))
18002 /* [temp.spec]
18004 No program shall explicitly instantiate any template more
18005 than once.
18007 If PREVIOUS_INSTANTIATION_EXTERN_P, then the first explicit
18008 instantiation was `extern'. If EXTERN_P then the second is.
18009 These cases are OK. */
18010 previous_instantiation_extern_p = CLASSTYPE_INTERFACE_ONLY (t);
18012 if (!previous_instantiation_extern_p && !extern_p
18013 && (complain & tf_error))
18014 permerror (input_location, "duplicate explicit instantiation of %q#T", t);
18016 /* If we've already instantiated the template, just return now. */
18017 if (!CLASSTYPE_INTERFACE_ONLY (t))
18018 return;
18021 check_explicit_instantiation_namespace (TYPE_NAME (t));
18022 mark_class_instantiated (t, extern_p);
18024 if (nomem_p)
18025 return;
18028 tree tmp;
18030 /* In contrast to implicit instantiation, where only the
18031 declarations, and not the definitions, of members are
18032 instantiated, we have here:
18034 [temp.explicit]
18036 The explicit instantiation of a class template specialization
18037 implies the instantiation of all of its members not
18038 previously explicitly specialized in the translation unit
18039 containing the explicit instantiation.
18041 Of course, we can't instantiate member template classes, since
18042 we don't have any arguments for them. Note that the standard
18043 is unclear on whether the instantiation of the members are
18044 *explicit* instantiations or not. However, the most natural
18045 interpretation is that it should be an explicit instantiation. */
18047 if (! static_p)
18048 for (tmp = TYPE_METHODS (t); tmp; tmp = DECL_CHAIN (tmp))
18049 if (TREE_CODE (tmp) == FUNCTION_DECL
18050 && DECL_TEMPLATE_INSTANTIATION (tmp))
18051 instantiate_class_member (tmp, extern_p);
18053 for (tmp = TYPE_FIELDS (t); tmp; tmp = DECL_CHAIN (tmp))
18054 if (TREE_CODE (tmp) == VAR_DECL && DECL_TEMPLATE_INSTANTIATION (tmp))
18055 instantiate_class_member (tmp, extern_p);
18057 if (CLASSTYPE_NESTED_UTDS (t))
18058 binding_table_foreach (CLASSTYPE_NESTED_UTDS (t),
18059 bt_instantiate_type_proc, &storage);
18063 /* Given a function DECL, which is a specialization of TMPL, modify
18064 DECL to be a re-instantiation of TMPL with the same template
18065 arguments. TMPL should be the template into which tsubst'ing
18066 should occur for DECL, not the most general template.
18068 One reason for doing this is a scenario like this:
18070 template <class T>
18071 void f(const T&, int i);
18073 void g() { f(3, 7); }
18075 template <class T>
18076 void f(const T& t, const int i) { }
18078 Note that when the template is first instantiated, with
18079 instantiate_template, the resulting DECL will have no name for the
18080 first parameter, and the wrong type for the second. So, when we go
18081 to instantiate the DECL, we regenerate it. */
18083 static void
18084 regenerate_decl_from_template (tree decl, tree tmpl)
18086 /* The arguments used to instantiate DECL, from the most general
18087 template. */
18088 tree args;
18089 tree code_pattern;
18091 args = DECL_TI_ARGS (decl);
18092 code_pattern = DECL_TEMPLATE_RESULT (tmpl);
18094 /* Make sure that we can see identifiers, and compute access
18095 correctly. */
18096 push_access_scope (decl);
18098 if (TREE_CODE (decl) == FUNCTION_DECL)
18100 tree decl_parm;
18101 tree pattern_parm;
18102 tree specs;
18103 int args_depth;
18104 int parms_depth;
18106 args_depth = TMPL_ARGS_DEPTH (args);
18107 parms_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
18108 if (args_depth > parms_depth)
18109 args = get_innermost_template_args (args, parms_depth);
18111 specs = tsubst_exception_specification (TREE_TYPE (code_pattern),
18112 args, tf_error, NULL_TREE,
18113 /*defer_ok*/false);
18114 if (specs && specs != error_mark_node)
18115 TREE_TYPE (decl) = build_exception_variant (TREE_TYPE (decl),
18116 specs);
18118 /* Merge parameter declarations. */
18119 decl_parm = skip_artificial_parms_for (decl,
18120 DECL_ARGUMENTS (decl));
18121 pattern_parm
18122 = skip_artificial_parms_for (code_pattern,
18123 DECL_ARGUMENTS (code_pattern));
18124 while (decl_parm && !FUNCTION_PARAMETER_PACK_P (pattern_parm))
18126 tree parm_type;
18127 tree attributes;
18129 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
18130 DECL_NAME (decl_parm) = DECL_NAME (pattern_parm);
18131 parm_type = tsubst (TREE_TYPE (pattern_parm), args, tf_error,
18132 NULL_TREE);
18133 parm_type = type_decays_to (parm_type);
18134 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
18135 TREE_TYPE (decl_parm) = parm_type;
18136 attributes = DECL_ATTRIBUTES (pattern_parm);
18137 if (DECL_ATTRIBUTES (decl_parm) != attributes)
18139 DECL_ATTRIBUTES (decl_parm) = attributes;
18140 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
18142 decl_parm = DECL_CHAIN (decl_parm);
18143 pattern_parm = DECL_CHAIN (pattern_parm);
18145 /* Merge any parameters that match with the function parameter
18146 pack. */
18147 if (pattern_parm && FUNCTION_PARAMETER_PACK_P (pattern_parm))
18149 int i, len;
18150 tree expanded_types;
18151 /* Expand the TYPE_PACK_EXPANSION that provides the types for
18152 the parameters in this function parameter pack. */
18153 expanded_types = tsubst_pack_expansion (TREE_TYPE (pattern_parm),
18154 args, tf_error, NULL_TREE);
18155 len = TREE_VEC_LENGTH (expanded_types);
18156 for (i = 0; i < len; i++)
18158 tree parm_type;
18159 tree attributes;
18161 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
18162 /* Rename the parameter to include the index. */
18163 DECL_NAME (decl_parm) =
18164 make_ith_pack_parameter_name (DECL_NAME (pattern_parm), i);
18165 parm_type = TREE_VEC_ELT (expanded_types, i);
18166 parm_type = type_decays_to (parm_type);
18167 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
18168 TREE_TYPE (decl_parm) = parm_type;
18169 attributes = DECL_ATTRIBUTES (pattern_parm);
18170 if (DECL_ATTRIBUTES (decl_parm) != attributes)
18172 DECL_ATTRIBUTES (decl_parm) = attributes;
18173 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
18175 decl_parm = DECL_CHAIN (decl_parm);
18178 /* Merge additional specifiers from the CODE_PATTERN. */
18179 if (DECL_DECLARED_INLINE_P (code_pattern)
18180 && !DECL_DECLARED_INLINE_P (decl))
18181 DECL_DECLARED_INLINE_P (decl) = 1;
18183 else if (TREE_CODE (decl) == VAR_DECL)
18185 DECL_INITIAL (decl) =
18186 tsubst_expr (DECL_INITIAL (code_pattern), args,
18187 tf_error, DECL_TI_TEMPLATE (decl),
18188 /*integral_constant_expression_p=*/false);
18189 if (VAR_HAD_UNKNOWN_BOUND (decl))
18190 TREE_TYPE (decl) = tsubst (TREE_TYPE (code_pattern), args,
18191 tf_error, DECL_TI_TEMPLATE (decl));
18193 else
18194 gcc_unreachable ();
18196 pop_access_scope (decl);
18199 /* Return the TEMPLATE_DECL into which DECL_TI_ARGS(DECL) should be
18200 substituted to get DECL. */
18202 tree
18203 template_for_substitution (tree decl)
18205 tree tmpl = DECL_TI_TEMPLATE (decl);
18207 /* Set TMPL to the template whose DECL_TEMPLATE_RESULT is the pattern
18208 for the instantiation. This is not always the most general
18209 template. Consider, for example:
18211 template <class T>
18212 struct S { template <class U> void f();
18213 template <> void f<int>(); };
18215 and an instantiation of S<double>::f<int>. We want TD to be the
18216 specialization S<T>::f<int>, not the more general S<T>::f<U>. */
18217 while (/* An instantiation cannot have a definition, so we need a
18218 more general template. */
18219 DECL_TEMPLATE_INSTANTIATION (tmpl)
18220 /* We must also deal with friend templates. Given:
18222 template <class T> struct S {
18223 template <class U> friend void f() {};
18226 S<int>::f<U> say, is not an instantiation of S<T>::f<U>,
18227 so far as the language is concerned, but that's still
18228 where we get the pattern for the instantiation from. On
18229 other hand, if the definition comes outside the class, say:
18231 template <class T> struct S {
18232 template <class U> friend void f();
18234 template <class U> friend void f() {}
18236 we don't need to look any further. That's what the check for
18237 DECL_INITIAL is for. */
18238 || (TREE_CODE (decl) == FUNCTION_DECL
18239 && DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (tmpl)
18240 && !DECL_INITIAL (DECL_TEMPLATE_RESULT (tmpl))))
18242 /* The present template, TD, should not be a definition. If it
18243 were a definition, we should be using it! Note that we
18244 cannot restructure the loop to just keep going until we find
18245 a template with a definition, since that might go too far if
18246 a specialization was declared, but not defined. */
18247 gcc_assert (TREE_CODE (decl) != VAR_DECL
18248 || DECL_IN_AGGR_P (DECL_TEMPLATE_RESULT (tmpl)));
18250 /* Fetch the more general template. */
18251 tmpl = DECL_TI_TEMPLATE (tmpl);
18254 return tmpl;
18257 /* Returns true if we need to instantiate this template instance even if we
18258 know we aren't going to emit it.. */
18260 bool
18261 always_instantiate_p (tree decl)
18263 /* We always instantiate inline functions so that we can inline them. An
18264 explicit instantiation declaration prohibits implicit instantiation of
18265 non-inline functions. With high levels of optimization, we would
18266 normally inline non-inline functions -- but we're not allowed to do
18267 that for "extern template" functions. Therefore, we check
18268 DECL_DECLARED_INLINE_P, rather than possibly_inlined_p. */
18269 return ((TREE_CODE (decl) == FUNCTION_DECL
18270 && (DECL_DECLARED_INLINE_P (decl)
18271 || type_uses_auto (TREE_TYPE (TREE_TYPE (decl)))))
18272 /* And we need to instantiate static data members so that
18273 their initializers are available in integral constant
18274 expressions. */
18275 || (TREE_CODE (decl) == VAR_DECL
18276 && decl_maybe_constant_var_p (decl)));
18279 /* If FN has a noexcept-specifier that hasn't been instantiated yet,
18280 instantiate it now, modifying TREE_TYPE (fn). */
18282 void
18283 maybe_instantiate_noexcept (tree fn)
18285 tree fntype, spec, noex, clone;
18287 if (DECL_CLONED_FUNCTION_P (fn))
18288 fn = DECL_CLONED_FUNCTION (fn);
18289 fntype = TREE_TYPE (fn);
18290 spec = TYPE_RAISES_EXCEPTIONS (fntype);
18292 if (!DEFERRED_NOEXCEPT_SPEC_P (spec))
18293 return;
18295 noex = TREE_PURPOSE (spec);
18297 if (TREE_CODE (noex) == DEFERRED_NOEXCEPT)
18299 if (push_tinst_level (fn))
18301 push_access_scope (fn);
18302 input_location = DECL_SOURCE_LOCATION (fn);
18303 noex = tsubst_copy_and_build (DEFERRED_NOEXCEPT_PATTERN (noex),
18304 DEFERRED_NOEXCEPT_ARGS (noex),
18305 tf_warning_or_error, fn,
18306 /*function_p=*/false,
18307 /*integral_constant_expression_p=*/true);
18308 pop_access_scope (fn);
18309 pop_tinst_level ();
18310 spec = build_noexcept_spec (noex, tf_warning_or_error);
18311 if (spec == error_mark_node)
18312 spec = noexcept_false_spec;
18314 else
18315 spec = noexcept_false_spec;
18317 else
18319 /* This is an implicitly declared function, so NOEX is a list of
18320 other functions to evaluate and merge. */
18321 tree elt;
18322 spec = noexcept_true_spec;
18323 for (elt = noex; elt; elt = OVL_NEXT (elt))
18325 tree fn = OVL_CURRENT (elt);
18326 tree subspec;
18327 maybe_instantiate_noexcept (fn);
18328 subspec = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (fn));
18329 spec = merge_exception_specifiers (spec, subspec, NULL_TREE);
18333 TREE_TYPE (fn) = build_exception_variant (fntype, spec);
18335 FOR_EACH_CLONE (clone, fn)
18337 if (TREE_TYPE (clone) == fntype)
18338 TREE_TYPE (clone) = TREE_TYPE (fn);
18339 else
18340 TREE_TYPE (clone) = build_exception_variant (TREE_TYPE (clone), spec);
18344 /* Produce the definition of D, a _DECL generated from a template. If
18345 DEFER_OK is nonzero, then we don't have to actually do the
18346 instantiation now; we just have to do it sometime. Normally it is
18347 an error if this is an explicit instantiation but D is undefined.
18348 EXPL_INST_CLASS_MEM_P is true iff D is a member of an
18349 explicitly instantiated class template. */
18351 tree
18352 instantiate_decl (tree d, int defer_ok,
18353 bool expl_inst_class_mem_p)
18355 tree tmpl = DECL_TI_TEMPLATE (d);
18356 tree gen_args;
18357 tree args;
18358 tree td;
18359 tree code_pattern;
18360 tree spec;
18361 tree gen_tmpl;
18362 bool pattern_defined;
18363 location_t saved_loc = input_location;
18364 bool external_p;
18365 tree fn_context;
18366 bool nested;
18368 /* This function should only be used to instantiate templates for
18369 functions and static member variables. */
18370 gcc_assert (TREE_CODE (d) == FUNCTION_DECL
18371 || TREE_CODE (d) == VAR_DECL);
18373 /* Variables are never deferred; if instantiation is required, they
18374 are instantiated right away. That allows for better code in the
18375 case that an expression refers to the value of the variable --
18376 if the variable has a constant value the referring expression can
18377 take advantage of that fact. */
18378 if (TREE_CODE (d) == VAR_DECL
18379 || DECL_DECLARED_CONSTEXPR_P (d))
18380 defer_ok = 0;
18382 /* Don't instantiate cloned functions. Instead, instantiate the
18383 functions they cloned. */
18384 if (TREE_CODE (d) == FUNCTION_DECL && DECL_CLONED_FUNCTION_P (d))
18385 d = DECL_CLONED_FUNCTION (d);
18387 if (DECL_TEMPLATE_INSTANTIATED (d)
18388 || (TREE_CODE (d) == FUNCTION_DECL
18389 && DECL_DEFAULTED_FN (d) && DECL_INITIAL (d))
18390 || DECL_TEMPLATE_SPECIALIZATION (d))
18391 /* D has already been instantiated or explicitly specialized, so
18392 there's nothing for us to do here.
18394 It might seem reasonable to check whether or not D is an explicit
18395 instantiation, and, if so, stop here. But when an explicit
18396 instantiation is deferred until the end of the compilation,
18397 DECL_EXPLICIT_INSTANTIATION is set, even though we still need to do
18398 the instantiation. */
18399 return d;
18401 /* Check to see whether we know that this template will be
18402 instantiated in some other file, as with "extern template"
18403 extension. */
18404 external_p = (DECL_INTERFACE_KNOWN (d) && DECL_REALLY_EXTERN (d));
18406 /* In general, we do not instantiate such templates. */
18407 if (external_p && !always_instantiate_p (d))
18408 return d;
18410 gen_tmpl = most_general_template (tmpl);
18411 gen_args = DECL_TI_ARGS (d);
18413 if (tmpl != gen_tmpl)
18414 /* We should already have the extra args. */
18415 gcc_assert (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (gen_tmpl))
18416 == TMPL_ARGS_DEPTH (gen_args));
18417 /* And what's in the hash table should match D. */
18418 gcc_assert ((spec = retrieve_specialization (gen_tmpl, gen_args, 0)) == d
18419 || spec == NULL_TREE);
18421 /* This needs to happen before any tsubsting. */
18422 if (! push_tinst_level (d))
18423 return d;
18425 timevar_push (TV_TEMPLATE_INST);
18427 /* Set TD to the template whose DECL_TEMPLATE_RESULT is the pattern
18428 for the instantiation. */
18429 td = template_for_substitution (d);
18430 code_pattern = DECL_TEMPLATE_RESULT (td);
18432 /* We should never be trying to instantiate a member of a class
18433 template or partial specialization. */
18434 gcc_assert (d != code_pattern);
18436 if ((DECL_NAMESPACE_SCOPE_P (d) && !DECL_INITIALIZED_IN_CLASS_P (d))
18437 || DECL_TEMPLATE_SPECIALIZATION (td))
18438 /* In the case of a friend template whose definition is provided
18439 outside the class, we may have too many arguments. Drop the
18440 ones we don't need. The same is true for specializations. */
18441 args = get_innermost_template_args
18442 (gen_args, TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (td)));
18443 else
18444 args = gen_args;
18446 if (TREE_CODE (d) == FUNCTION_DECL)
18447 pattern_defined = (DECL_SAVED_TREE (code_pattern) != NULL_TREE
18448 || DECL_DEFAULTED_OUTSIDE_CLASS_P (code_pattern));
18449 else
18450 pattern_defined = ! DECL_IN_AGGR_P (code_pattern);
18452 /* We may be in the middle of deferred access check. Disable it now. */
18453 push_deferring_access_checks (dk_no_deferred);
18455 /* Unless an explicit instantiation directive has already determined
18456 the linkage of D, remember that a definition is available for
18457 this entity. */
18458 if (pattern_defined
18459 && !DECL_INTERFACE_KNOWN (d)
18460 && !DECL_NOT_REALLY_EXTERN (d))
18461 mark_definable (d);
18463 DECL_SOURCE_LOCATION (td) = DECL_SOURCE_LOCATION (code_pattern);
18464 DECL_SOURCE_LOCATION (d) = DECL_SOURCE_LOCATION (code_pattern);
18465 input_location = DECL_SOURCE_LOCATION (d);
18467 /* If D is a member of an explicitly instantiated class template,
18468 and no definition is available, treat it like an implicit
18469 instantiation. */
18470 if (!pattern_defined && expl_inst_class_mem_p
18471 && DECL_EXPLICIT_INSTANTIATION (d))
18473 /* Leave linkage flags alone on instantiations with anonymous
18474 visibility. */
18475 if (TREE_PUBLIC (d))
18477 DECL_NOT_REALLY_EXTERN (d) = 0;
18478 DECL_INTERFACE_KNOWN (d) = 0;
18480 SET_DECL_IMPLICIT_INSTANTIATION (d);
18483 if (TREE_CODE (d) == FUNCTION_DECL)
18484 maybe_instantiate_noexcept (d);
18486 /* Defer all other templates, unless we have been explicitly
18487 forbidden from doing so. */
18488 if (/* If there is no definition, we cannot instantiate the
18489 template. */
18490 ! pattern_defined
18491 /* If it's OK to postpone instantiation, do so. */
18492 || defer_ok
18493 /* If this is a static data member that will be defined
18494 elsewhere, we don't want to instantiate the entire data
18495 member, but we do want to instantiate the initializer so that
18496 we can substitute that elsewhere. */
18497 || (external_p && TREE_CODE (d) == VAR_DECL))
18499 /* The definition of the static data member is now required so
18500 we must substitute the initializer. */
18501 if (TREE_CODE (d) == VAR_DECL
18502 && !DECL_INITIAL (d)
18503 && DECL_INITIAL (code_pattern))
18505 tree ns;
18506 tree init;
18507 bool const_init = false;
18509 ns = decl_namespace_context (d);
18510 push_nested_namespace (ns);
18511 push_nested_class (DECL_CONTEXT (d));
18512 init = tsubst_expr (DECL_INITIAL (code_pattern),
18513 args,
18514 tf_warning_or_error, NULL_TREE,
18515 /*integral_constant_expression_p=*/false);
18516 /* Make sure the initializer is still constant, in case of
18517 circular dependency (template/instantiate6.C). */
18518 const_init
18519 = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
18520 cp_finish_decl (d, init, /*init_const_expr_p=*/const_init,
18521 /*asmspec_tree=*/NULL_TREE,
18522 LOOKUP_ONLYCONVERTING);
18523 pop_nested_class ();
18524 pop_nested_namespace (ns);
18527 /* We restore the source position here because it's used by
18528 add_pending_template. */
18529 input_location = saved_loc;
18531 if (at_eof && !pattern_defined
18532 && DECL_EXPLICIT_INSTANTIATION (d)
18533 && DECL_NOT_REALLY_EXTERN (d))
18534 /* [temp.explicit]
18536 The definition of a non-exported function template, a
18537 non-exported member function template, or a non-exported
18538 member function or static data member of a class template
18539 shall be present in every translation unit in which it is
18540 explicitly instantiated. */
18541 permerror (input_location, "explicit instantiation of %qD "
18542 "but no definition available", d);
18544 /* If we're in unevaluated context, we just wanted to get the
18545 constant value; this isn't an odr use, so don't queue
18546 a full instantiation. */
18547 if (cp_unevaluated_operand != 0)
18548 goto out;
18549 /* ??? Historically, we have instantiated inline functions, even
18550 when marked as "extern template". */
18551 if (!(external_p && TREE_CODE (d) == VAR_DECL))
18552 add_pending_template (d);
18553 goto out;
18555 /* Tell the repository that D is available in this translation unit
18556 -- and see if it is supposed to be instantiated here. */
18557 if (TREE_PUBLIC (d) && !DECL_REALLY_EXTERN (d) && !repo_emit_p (d))
18559 /* In a PCH file, despite the fact that the repository hasn't
18560 requested instantiation in the PCH it is still possible that
18561 an instantiation will be required in a file that includes the
18562 PCH. */
18563 if (pch_file)
18564 add_pending_template (d);
18565 /* Instantiate inline functions so that the inliner can do its
18566 job, even though we'll not be emitting a copy of this
18567 function. */
18568 if (!(TREE_CODE (d) == FUNCTION_DECL && possibly_inlined_p (d)))
18569 goto out;
18572 fn_context = decl_function_context (d);
18573 nested = (current_function_decl != NULL_TREE);
18574 if (!fn_context)
18575 push_to_top_level ();
18576 else if (nested)
18577 push_function_context ();
18579 /* Mark D as instantiated so that recursive calls to
18580 instantiate_decl do not try to instantiate it again. */
18581 DECL_TEMPLATE_INSTANTIATED (d) = 1;
18583 /* Regenerate the declaration in case the template has been modified
18584 by a subsequent redeclaration. */
18585 regenerate_decl_from_template (d, td);
18587 /* We already set the file and line above. Reset them now in case
18588 they changed as a result of calling regenerate_decl_from_template. */
18589 input_location = DECL_SOURCE_LOCATION (d);
18591 if (TREE_CODE (d) == VAR_DECL)
18593 tree init;
18594 bool const_init = false;
18596 /* Clear out DECL_RTL; whatever was there before may not be right
18597 since we've reset the type of the declaration. */
18598 SET_DECL_RTL (d, NULL);
18599 DECL_IN_AGGR_P (d) = 0;
18601 /* The initializer is placed in DECL_INITIAL by
18602 regenerate_decl_from_template so we don't need to
18603 push/pop_access_scope again here. Pull it out so that
18604 cp_finish_decl can process it. */
18605 init = DECL_INITIAL (d);
18606 DECL_INITIAL (d) = NULL_TREE;
18607 DECL_INITIALIZED_P (d) = 0;
18609 /* Clear DECL_EXTERNAL so that cp_finish_decl will process the
18610 initializer. That function will defer actual emission until
18611 we have a chance to determine linkage. */
18612 DECL_EXTERNAL (d) = 0;
18614 /* Enter the scope of D so that access-checking works correctly. */
18615 push_nested_class (DECL_CONTEXT (d));
18616 const_init = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
18617 cp_finish_decl (d, init, const_init, NULL_TREE, 0);
18618 pop_nested_class ();
18620 else if (TREE_CODE (d) == FUNCTION_DECL && DECL_DEFAULTED_FN (code_pattern))
18621 synthesize_method (d);
18622 else if (TREE_CODE (d) == FUNCTION_DECL)
18624 struct pointer_map_t *saved_local_specializations;
18625 tree subst_decl;
18626 tree tmpl_parm;
18627 tree spec_parm;
18629 /* Save away the current list, in case we are instantiating one
18630 template from within the body of another. */
18631 saved_local_specializations = local_specializations;
18633 /* Set up the list of local specializations. */
18634 local_specializations = pointer_map_create ();
18636 /* Set up context. */
18637 start_preparsed_function (d, NULL_TREE, SF_PRE_PARSED);
18639 /* Some typedefs referenced from within the template code need to be
18640 access checked at template instantiation time, i.e now. These
18641 types were added to the template at parsing time. Let's get those
18642 and perform the access checks then. */
18643 perform_typedefs_access_check (DECL_TEMPLATE_RESULT (gen_tmpl),
18644 gen_args);
18646 /* Create substitution entries for the parameters. */
18647 subst_decl = DECL_TEMPLATE_RESULT (template_for_substitution (d));
18648 tmpl_parm = DECL_ARGUMENTS (subst_decl);
18649 spec_parm = DECL_ARGUMENTS (d);
18650 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (d))
18652 register_local_specialization (spec_parm, tmpl_parm);
18653 spec_parm = skip_artificial_parms_for (d, spec_parm);
18654 tmpl_parm = skip_artificial_parms_for (subst_decl, tmpl_parm);
18656 for (; tmpl_parm; tmpl_parm = DECL_CHAIN (tmpl_parm))
18658 if (!FUNCTION_PARAMETER_PACK_P (tmpl_parm))
18660 register_local_specialization (spec_parm, tmpl_parm);
18661 spec_parm = DECL_CHAIN (spec_parm);
18663 else
18665 /* Register the (value) argument pack as a specialization of
18666 TMPL_PARM, then move on. */
18667 tree argpack = extract_fnparm_pack (tmpl_parm, &spec_parm);
18668 register_local_specialization (argpack, tmpl_parm);
18671 gcc_assert (!spec_parm);
18673 /* Substitute into the body of the function. */
18674 tsubst_expr (DECL_SAVED_TREE (code_pattern), args,
18675 tf_warning_or_error, tmpl,
18676 /*integral_constant_expression_p=*/false);
18678 /* Set the current input_location to the end of the function
18679 so that finish_function knows where we are. */
18680 input_location = DECL_STRUCT_FUNCTION (code_pattern)->function_end_locus;
18682 /* We don't need the local specializations any more. */
18683 pointer_map_destroy (local_specializations);
18684 local_specializations = saved_local_specializations;
18686 /* Finish the function. */
18687 d = finish_function (0);
18688 expand_or_defer_fn (d);
18691 /* We're not deferring instantiation any more. */
18692 TI_PENDING_TEMPLATE_FLAG (DECL_TEMPLATE_INFO (d)) = 0;
18694 if (!fn_context)
18695 pop_from_top_level ();
18696 else if (nested)
18697 pop_function_context ();
18699 out:
18700 input_location = saved_loc;
18701 pop_deferring_access_checks ();
18702 pop_tinst_level ();
18704 timevar_pop (TV_TEMPLATE_INST);
18706 return d;
18709 /* Run through the list of templates that we wish we could
18710 instantiate, and instantiate any we can. RETRIES is the
18711 number of times we retry pending template instantiation. */
18713 void
18714 instantiate_pending_templates (int retries)
18716 int reconsider;
18717 location_t saved_loc = input_location;
18719 /* Instantiating templates may trigger vtable generation. This in turn
18720 may require further template instantiations. We place a limit here
18721 to avoid infinite loop. */
18722 if (pending_templates && retries >= max_tinst_depth)
18724 tree decl = pending_templates->tinst->decl;
18726 error ("template instantiation depth exceeds maximum of %d"
18727 " instantiating %q+D, possibly from virtual table generation"
18728 " (use -ftemplate-depth= to increase the maximum)",
18729 max_tinst_depth, decl);
18730 if (TREE_CODE (decl) == FUNCTION_DECL)
18731 /* Pretend that we defined it. */
18732 DECL_INITIAL (decl) = error_mark_node;
18733 return;
18738 struct pending_template **t = &pending_templates;
18739 struct pending_template *last = NULL;
18740 reconsider = 0;
18741 while (*t)
18743 tree instantiation = reopen_tinst_level ((*t)->tinst);
18744 bool complete = false;
18746 if (TYPE_P (instantiation))
18748 tree fn;
18750 if (!COMPLETE_TYPE_P (instantiation))
18752 instantiate_class_template (instantiation);
18753 if (CLASSTYPE_TEMPLATE_INSTANTIATION (instantiation))
18754 for (fn = TYPE_METHODS (instantiation);
18756 fn = TREE_CHAIN (fn))
18757 if (! DECL_ARTIFICIAL (fn))
18758 instantiate_decl (fn,
18759 /*defer_ok=*/0,
18760 /*expl_inst_class_mem_p=*/false);
18761 if (COMPLETE_TYPE_P (instantiation))
18762 reconsider = 1;
18765 complete = COMPLETE_TYPE_P (instantiation);
18767 else
18769 if (!DECL_TEMPLATE_SPECIALIZATION (instantiation)
18770 && !DECL_TEMPLATE_INSTANTIATED (instantiation))
18772 instantiation
18773 = instantiate_decl (instantiation,
18774 /*defer_ok=*/0,
18775 /*expl_inst_class_mem_p=*/false);
18776 if (DECL_TEMPLATE_INSTANTIATED (instantiation))
18777 reconsider = 1;
18780 complete = (DECL_TEMPLATE_SPECIALIZATION (instantiation)
18781 || DECL_TEMPLATE_INSTANTIATED (instantiation));
18784 if (complete)
18785 /* If INSTANTIATION has been instantiated, then we don't
18786 need to consider it again in the future. */
18787 *t = (*t)->next;
18788 else
18790 last = *t;
18791 t = &(*t)->next;
18793 tinst_depth = 0;
18794 current_tinst_level = NULL;
18796 last_pending_template = last;
18798 while (reconsider);
18800 input_location = saved_loc;
18803 /* Substitute ARGVEC into T, which is a list of initializers for
18804 either base class or a non-static data member. The TREE_PURPOSEs
18805 are DECLs, and the TREE_VALUEs are the initializer values. Used by
18806 instantiate_decl. */
18808 static tree
18809 tsubst_initializer_list (tree t, tree argvec)
18811 tree inits = NULL_TREE;
18813 for (; t; t = TREE_CHAIN (t))
18815 tree decl;
18816 tree init;
18817 tree expanded_bases = NULL_TREE;
18818 tree expanded_arguments = NULL_TREE;
18819 int i, len = 1;
18821 if (TREE_CODE (TREE_PURPOSE (t)) == TYPE_PACK_EXPANSION)
18823 tree expr;
18824 tree arg;
18826 /* Expand the base class expansion type into separate base
18827 classes. */
18828 expanded_bases = tsubst_pack_expansion (TREE_PURPOSE (t), argvec,
18829 tf_warning_or_error,
18830 NULL_TREE);
18831 if (expanded_bases == error_mark_node)
18832 continue;
18834 /* We'll be building separate TREE_LISTs of arguments for
18835 each base. */
18836 len = TREE_VEC_LENGTH (expanded_bases);
18837 expanded_arguments = make_tree_vec (len);
18838 for (i = 0; i < len; i++)
18839 TREE_VEC_ELT (expanded_arguments, i) = NULL_TREE;
18841 /* Build a dummy EXPR_PACK_EXPANSION that will be used to
18842 expand each argument in the TREE_VALUE of t. */
18843 expr = make_node (EXPR_PACK_EXPANSION);
18844 PACK_EXPANSION_LOCAL_P (expr) = true;
18845 PACK_EXPANSION_PARAMETER_PACKS (expr) =
18846 PACK_EXPANSION_PARAMETER_PACKS (TREE_PURPOSE (t));
18848 if (TREE_VALUE (t) == void_type_node)
18849 /* VOID_TYPE_NODE is used to indicate
18850 value-initialization. */
18852 for (i = 0; i < len; i++)
18853 TREE_VEC_ELT (expanded_arguments, i) = void_type_node;
18855 else
18857 /* Substitute parameter packs into each argument in the
18858 TREE_LIST. */
18859 in_base_initializer = 1;
18860 for (arg = TREE_VALUE (t); arg; arg = TREE_CHAIN (arg))
18862 tree expanded_exprs;
18864 /* Expand the argument. */
18865 SET_PACK_EXPANSION_PATTERN (expr, TREE_VALUE (arg));
18866 expanded_exprs
18867 = tsubst_pack_expansion (expr, argvec,
18868 tf_warning_or_error,
18869 NULL_TREE);
18870 if (expanded_exprs == error_mark_node)
18871 continue;
18873 /* Prepend each of the expanded expressions to the
18874 corresponding TREE_LIST in EXPANDED_ARGUMENTS. */
18875 for (i = 0; i < len; i++)
18877 TREE_VEC_ELT (expanded_arguments, i) =
18878 tree_cons (NULL_TREE,
18879 TREE_VEC_ELT (expanded_exprs, i),
18880 TREE_VEC_ELT (expanded_arguments, i));
18883 in_base_initializer = 0;
18885 /* Reverse all of the TREE_LISTs in EXPANDED_ARGUMENTS,
18886 since we built them backwards. */
18887 for (i = 0; i < len; i++)
18889 TREE_VEC_ELT (expanded_arguments, i) =
18890 nreverse (TREE_VEC_ELT (expanded_arguments, i));
18895 for (i = 0; i < len; ++i)
18897 if (expanded_bases)
18899 decl = TREE_VEC_ELT (expanded_bases, i);
18900 decl = expand_member_init (decl);
18901 init = TREE_VEC_ELT (expanded_arguments, i);
18903 else
18905 tree tmp;
18906 decl = tsubst_copy (TREE_PURPOSE (t), argvec,
18907 tf_warning_or_error, NULL_TREE);
18909 decl = expand_member_init (decl);
18910 if (decl && !DECL_P (decl))
18911 in_base_initializer = 1;
18913 init = TREE_VALUE (t);
18914 tmp = init;
18915 if (init != void_type_node)
18916 init = tsubst_expr (init, argvec,
18917 tf_warning_or_error, NULL_TREE,
18918 /*integral_constant_expression_p=*/false);
18919 if (init == NULL_TREE && tmp != NULL_TREE)
18920 /* If we had an initializer but it instantiated to nothing,
18921 value-initialize the object. This will only occur when
18922 the initializer was a pack expansion where the parameter
18923 packs used in that expansion were of length zero. */
18924 init = void_type_node;
18925 in_base_initializer = 0;
18928 if (decl)
18930 init = build_tree_list (decl, init);
18931 TREE_CHAIN (init) = inits;
18932 inits = init;
18936 return inits;
18939 /* Set CURRENT_ACCESS_SPECIFIER based on the protection of DECL. */
18941 static void
18942 set_current_access_from_decl (tree decl)
18944 if (TREE_PRIVATE (decl))
18945 current_access_specifier = access_private_node;
18946 else if (TREE_PROTECTED (decl))
18947 current_access_specifier = access_protected_node;
18948 else
18949 current_access_specifier = access_public_node;
18952 /* Instantiate an enumerated type. TAG is the template type, NEWTAG
18953 is the instantiation (which should have been created with
18954 start_enum) and ARGS are the template arguments to use. */
18956 static void
18957 tsubst_enum (tree tag, tree newtag, tree args)
18959 tree e;
18961 if (SCOPED_ENUM_P (newtag))
18962 begin_scope (sk_scoped_enum, newtag);
18964 for (e = TYPE_VALUES (tag); e; e = TREE_CHAIN (e))
18966 tree value;
18967 tree decl;
18969 decl = TREE_VALUE (e);
18970 /* Note that in a template enum, the TREE_VALUE is the
18971 CONST_DECL, not the corresponding INTEGER_CST. */
18972 value = tsubst_expr (DECL_INITIAL (decl),
18973 args, tf_warning_or_error, NULL_TREE,
18974 /*integral_constant_expression_p=*/true);
18976 /* Give this enumeration constant the correct access. */
18977 set_current_access_from_decl (decl);
18979 /* Actually build the enumerator itself. */
18980 build_enumerator
18981 (DECL_NAME (decl), value, newtag, DECL_SOURCE_LOCATION (decl));
18984 if (SCOPED_ENUM_P (newtag))
18985 finish_scope ();
18987 finish_enum_value_list (newtag);
18988 finish_enum (newtag);
18990 DECL_SOURCE_LOCATION (TYPE_NAME (newtag))
18991 = DECL_SOURCE_LOCATION (TYPE_NAME (tag));
18994 /* DECL is a FUNCTION_DECL that is a template specialization. Return
18995 its type -- but without substituting the innermost set of template
18996 arguments. So, innermost set of template parameters will appear in
18997 the type. */
18999 tree
19000 get_mostly_instantiated_function_type (tree decl)
19002 tree fn_type;
19003 tree tmpl;
19004 tree targs;
19005 tree tparms;
19006 int parm_depth;
19008 tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
19009 targs = DECL_TI_ARGS (decl);
19010 tparms = DECL_TEMPLATE_PARMS (tmpl);
19011 parm_depth = TMPL_PARMS_DEPTH (tparms);
19013 /* There should be as many levels of arguments as there are levels
19014 of parameters. */
19015 gcc_assert (parm_depth == TMPL_ARGS_DEPTH (targs));
19017 fn_type = TREE_TYPE (tmpl);
19019 if (parm_depth == 1)
19020 /* No substitution is necessary. */
19022 else
19024 int i;
19025 tree partial_args;
19027 /* Replace the innermost level of the TARGS with NULL_TREEs to
19028 let tsubst know not to substitute for those parameters. */
19029 partial_args = make_tree_vec (TREE_VEC_LENGTH (targs));
19030 for (i = 1; i < TMPL_ARGS_DEPTH (targs); ++i)
19031 SET_TMPL_ARGS_LEVEL (partial_args, i,
19032 TMPL_ARGS_LEVEL (targs, i));
19033 SET_TMPL_ARGS_LEVEL (partial_args,
19034 TMPL_ARGS_DEPTH (targs),
19035 make_tree_vec (DECL_NTPARMS (tmpl)));
19037 /* Make sure that we can see identifiers, and compute access
19038 correctly. */
19039 push_access_scope (decl);
19041 ++processing_template_decl;
19042 /* Now, do the (partial) substitution to figure out the
19043 appropriate function type. */
19044 fn_type = tsubst (fn_type, partial_args, tf_error, NULL_TREE);
19045 --processing_template_decl;
19047 /* Substitute into the template parameters to obtain the real
19048 innermost set of parameters. This step is important if the
19049 innermost set of template parameters contains value
19050 parameters whose types depend on outer template parameters. */
19051 TREE_VEC_LENGTH (partial_args)--;
19052 tparms = tsubst_template_parms (tparms, partial_args, tf_error);
19054 pop_access_scope (decl);
19057 return fn_type;
19060 /* Return truthvalue if we're processing a template different from
19061 the last one involved in diagnostics. */
19063 problematic_instantiation_changed (void)
19065 return current_tinst_level != last_error_tinst_level;
19068 /* Remember current template involved in diagnostics. */
19069 void
19070 record_last_problematic_instantiation (void)
19072 last_error_tinst_level = current_tinst_level;
19075 struct tinst_level *
19076 current_instantiation (void)
19078 return current_tinst_level;
19081 /* [temp.param] Check that template non-type parm TYPE is of an allowable
19082 type. Return zero for ok, nonzero for disallowed. Issue error and
19083 warning messages under control of COMPLAIN. */
19085 static int
19086 invalid_nontype_parm_type_p (tree type, tsubst_flags_t complain)
19088 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
19089 return 0;
19090 else if (POINTER_TYPE_P (type))
19091 return 0;
19092 else if (TYPE_PTRMEM_P (type))
19093 return 0;
19094 else if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
19095 return 0;
19096 else if (TREE_CODE (type) == TYPENAME_TYPE)
19097 return 0;
19098 else if (TREE_CODE (type) == DECLTYPE_TYPE)
19099 return 0;
19100 else if (TREE_CODE (type) == NULLPTR_TYPE)
19101 return 0;
19103 if (complain & tf_error)
19105 if (type == error_mark_node)
19106 inform (input_location, "invalid template non-type parameter");
19107 else
19108 error ("%q#T is not a valid type for a template non-type parameter",
19109 type);
19111 return 1;
19114 /* Returns TRUE if TYPE is dependent, in the sense of [temp.dep.type].
19115 Assumes that TYPE really is a type, and not the ERROR_MARK_NODE.*/
19117 static bool
19118 dependent_type_p_r (tree type)
19120 tree scope;
19122 /* [temp.dep.type]
19124 A type is dependent if it is:
19126 -- a template parameter. Template template parameters are types
19127 for us (since TYPE_P holds true for them) so we handle
19128 them here. */
19129 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
19130 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM)
19131 return true;
19132 /* -- a qualified-id with a nested-name-specifier which contains a
19133 class-name that names a dependent type or whose unqualified-id
19134 names a dependent type. */
19135 if (TREE_CODE (type) == TYPENAME_TYPE)
19136 return true;
19137 /* -- a cv-qualified type where the cv-unqualified type is
19138 dependent. */
19139 type = TYPE_MAIN_VARIANT (type);
19140 /* -- a compound type constructed from any dependent type. */
19141 if (TYPE_PTRMEM_P (type))
19142 return (dependent_type_p (TYPE_PTRMEM_CLASS_TYPE (type))
19143 || dependent_type_p (TYPE_PTRMEM_POINTED_TO_TYPE
19144 (type)));
19145 else if (TREE_CODE (type) == POINTER_TYPE
19146 || TREE_CODE (type) == REFERENCE_TYPE)
19147 return dependent_type_p (TREE_TYPE (type));
19148 else if (TREE_CODE (type) == FUNCTION_TYPE
19149 || TREE_CODE (type) == METHOD_TYPE)
19151 tree arg_type;
19153 if (dependent_type_p (TREE_TYPE (type)))
19154 return true;
19155 for (arg_type = TYPE_ARG_TYPES (type);
19156 arg_type;
19157 arg_type = TREE_CHAIN (arg_type))
19158 if (dependent_type_p (TREE_VALUE (arg_type)))
19159 return true;
19160 return false;
19162 /* -- an array type constructed from any dependent type or whose
19163 size is specified by a constant expression that is
19164 value-dependent.
19166 We checked for type- and value-dependence of the bounds in
19167 compute_array_index_type, so TYPE_DEPENDENT_P is already set. */
19168 if (TREE_CODE (type) == ARRAY_TYPE)
19170 if (TYPE_DOMAIN (type)
19171 && dependent_type_p (TYPE_DOMAIN (type)))
19172 return true;
19173 return dependent_type_p (TREE_TYPE (type));
19176 /* -- a template-id in which either the template name is a template
19177 parameter ... */
19178 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
19179 return true;
19180 /* ... or any of the template arguments is a dependent type or
19181 an expression that is type-dependent or value-dependent. */
19182 else if (CLASS_TYPE_P (type) && CLASSTYPE_TEMPLATE_INFO (type)
19183 && (any_dependent_template_arguments_p
19184 (INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type)))))
19185 return true;
19187 /* All TYPEOF_TYPEs, DECLTYPE_TYPEs, and UNDERLYING_TYPEs are
19188 dependent; if the argument of the `typeof' expression is not
19189 type-dependent, then it should already been have resolved. */
19190 if (TREE_CODE (type) == TYPEOF_TYPE
19191 || TREE_CODE (type) == DECLTYPE_TYPE
19192 || TREE_CODE (type) == UNDERLYING_TYPE)
19193 return true;
19195 /* A template argument pack is dependent if any of its packed
19196 arguments are. */
19197 if (TREE_CODE (type) == TYPE_ARGUMENT_PACK)
19199 tree args = ARGUMENT_PACK_ARGS (type);
19200 int i, len = TREE_VEC_LENGTH (args);
19201 for (i = 0; i < len; ++i)
19202 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
19203 return true;
19206 /* All TYPE_PACK_EXPANSIONs are dependent, because parameter packs must
19207 be template parameters. */
19208 if (TREE_CODE (type) == TYPE_PACK_EXPANSION)
19209 return true;
19211 /* The standard does not specifically mention types that are local
19212 to template functions or local classes, but they should be
19213 considered dependent too. For example:
19215 template <int I> void f() {
19216 enum E { a = I };
19217 S<sizeof (E)> s;
19220 The size of `E' cannot be known until the value of `I' has been
19221 determined. Therefore, `E' must be considered dependent. */
19222 scope = TYPE_CONTEXT (type);
19223 if (scope && TYPE_P (scope))
19224 return dependent_type_p (scope);
19225 /* Don't use type_dependent_expression_p here, as it can lead
19226 to infinite recursion trying to determine whether a lambda
19227 nested in a lambda is dependent (c++/47687). */
19228 else if (scope && TREE_CODE (scope) == FUNCTION_DECL
19229 && DECL_LANG_SPECIFIC (scope)
19230 && DECL_TEMPLATE_INFO (scope)
19231 && (any_dependent_template_arguments_p
19232 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (scope)))))
19233 return true;
19235 /* Other types are non-dependent. */
19236 return false;
19239 /* Returns TRUE if TYPE is dependent, in the sense of
19240 [temp.dep.type]. Note that a NULL type is considered dependent. */
19242 bool
19243 dependent_type_p (tree type)
19245 /* If there are no template parameters in scope, then there can't be
19246 any dependent types. */
19247 if (!processing_template_decl)
19249 /* If we are not processing a template, then nobody should be
19250 providing us with a dependent type. */
19251 gcc_assert (type);
19252 gcc_assert (TREE_CODE (type) != TEMPLATE_TYPE_PARM || is_auto (type));
19253 return false;
19256 /* If the type is NULL, we have not computed a type for the entity
19257 in question; in that case, the type is dependent. */
19258 if (!type)
19259 return true;
19261 /* Erroneous types can be considered non-dependent. */
19262 if (type == error_mark_node)
19263 return false;
19265 /* If we have not already computed the appropriate value for TYPE,
19266 do so now. */
19267 if (!TYPE_DEPENDENT_P_VALID (type))
19269 TYPE_DEPENDENT_P (type) = dependent_type_p_r (type);
19270 TYPE_DEPENDENT_P_VALID (type) = 1;
19273 return TYPE_DEPENDENT_P (type);
19276 /* Returns TRUE if SCOPE is a dependent scope, in which we can't do any
19277 lookup. In other words, a dependent type that is not the current
19278 instantiation. */
19280 bool
19281 dependent_scope_p (tree scope)
19283 return (scope && TYPE_P (scope) && dependent_type_p (scope)
19284 && !currently_open_class (scope));
19287 /* Returns TRUE if the EXPRESSION is value-dependent, in the sense of
19288 [temp.dep.constexpr]. EXPRESSION is already known to be a constant
19289 expression. */
19291 /* Note that this predicate is not appropriate for general expressions;
19292 only constant expressions (that satisfy potential_constant_expression)
19293 can be tested for value dependence. */
19295 bool
19296 value_dependent_expression_p (tree expression)
19298 if (!processing_template_decl)
19299 return false;
19301 /* A name declared with a dependent type. */
19302 if (DECL_P (expression) && type_dependent_expression_p (expression))
19303 return true;
19305 switch (TREE_CODE (expression))
19307 case IDENTIFIER_NODE:
19308 /* A name that has not been looked up -- must be dependent. */
19309 return true;
19311 case TEMPLATE_PARM_INDEX:
19312 /* A non-type template parm. */
19313 return true;
19315 case CONST_DECL:
19316 /* A non-type template parm. */
19317 if (DECL_TEMPLATE_PARM_P (expression))
19318 return true;
19319 return value_dependent_expression_p (DECL_INITIAL (expression));
19321 case VAR_DECL:
19322 /* A constant with literal type and is initialized
19323 with an expression that is value-dependent.
19325 Note that a non-dependent parenthesized initializer will have
19326 already been replaced with its constant value, so if we see
19327 a TREE_LIST it must be dependent. */
19328 if (DECL_INITIAL (expression)
19329 && decl_constant_var_p (expression)
19330 && (TREE_CODE (DECL_INITIAL (expression)) == TREE_LIST
19331 || value_dependent_expression_p (DECL_INITIAL (expression))))
19332 return true;
19333 return false;
19335 case DYNAMIC_CAST_EXPR:
19336 case STATIC_CAST_EXPR:
19337 case CONST_CAST_EXPR:
19338 case REINTERPRET_CAST_EXPR:
19339 case CAST_EXPR:
19340 /* These expressions are value-dependent if the type to which
19341 the cast occurs is dependent or the expression being casted
19342 is value-dependent. */
19344 tree type = TREE_TYPE (expression);
19346 if (dependent_type_p (type))
19347 return true;
19349 /* A functional cast has a list of operands. */
19350 expression = TREE_OPERAND (expression, 0);
19351 if (!expression)
19353 /* If there are no operands, it must be an expression such
19354 as "int()". This should not happen for aggregate types
19355 because it would form non-constant expressions. */
19356 gcc_assert (cxx_dialect >= cxx0x
19357 || INTEGRAL_OR_ENUMERATION_TYPE_P (type));
19359 return false;
19362 if (TREE_CODE (expression) == TREE_LIST)
19363 return any_value_dependent_elements_p (expression);
19365 return value_dependent_expression_p (expression);
19368 case SIZEOF_EXPR:
19369 if (SIZEOF_EXPR_TYPE_P (expression))
19370 return dependent_type_p (TREE_TYPE (TREE_OPERAND (expression, 0)));
19371 /* FALLTHRU */
19372 case ALIGNOF_EXPR:
19373 case TYPEID_EXPR:
19374 /* A `sizeof' expression is value-dependent if the operand is
19375 type-dependent or is a pack expansion. */
19376 expression = TREE_OPERAND (expression, 0);
19377 if (PACK_EXPANSION_P (expression))
19378 return true;
19379 else if (TYPE_P (expression))
19380 return dependent_type_p (expression);
19381 return instantiation_dependent_expression_p (expression);
19383 case AT_ENCODE_EXPR:
19384 /* An 'encode' expression is value-dependent if the operand is
19385 type-dependent. */
19386 expression = TREE_OPERAND (expression, 0);
19387 return dependent_type_p (expression);
19389 case NOEXCEPT_EXPR:
19390 expression = TREE_OPERAND (expression, 0);
19391 return instantiation_dependent_expression_p (expression);
19393 case SCOPE_REF:
19394 /* instantiation_dependent_r treats this as dependent so that we
19395 check access at instantiation time, and all instantiation-dependent
19396 expressions should also be considered value-dependent. */
19397 return true;
19399 case COMPONENT_REF:
19400 return (value_dependent_expression_p (TREE_OPERAND (expression, 0))
19401 || value_dependent_expression_p (TREE_OPERAND (expression, 1)));
19403 case NONTYPE_ARGUMENT_PACK:
19404 /* A NONTYPE_ARGUMENT_PACK is value-dependent if any packed argument
19405 is value-dependent. */
19407 tree values = ARGUMENT_PACK_ARGS (expression);
19408 int i, len = TREE_VEC_LENGTH (values);
19410 for (i = 0; i < len; ++i)
19411 if (value_dependent_expression_p (TREE_VEC_ELT (values, i)))
19412 return true;
19414 return false;
19417 case TRAIT_EXPR:
19419 tree type2 = TRAIT_EXPR_TYPE2 (expression);
19420 return (dependent_type_p (TRAIT_EXPR_TYPE1 (expression))
19421 || (type2 ? dependent_type_p (type2) : false));
19424 case MODOP_EXPR:
19425 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
19426 || (value_dependent_expression_p (TREE_OPERAND (expression, 2))));
19428 case ARRAY_REF:
19429 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
19430 || (value_dependent_expression_p (TREE_OPERAND (expression, 1))));
19432 case ADDR_EXPR:
19434 tree op = TREE_OPERAND (expression, 0);
19435 return (value_dependent_expression_p (op)
19436 || has_value_dependent_address (op));
19439 case CALL_EXPR:
19441 tree fn = get_callee_fndecl (expression);
19442 int i, nargs;
19443 if (!fn && value_dependent_expression_p (CALL_EXPR_FN (expression)))
19444 return true;
19445 nargs = call_expr_nargs (expression);
19446 for (i = 0; i < nargs; ++i)
19448 tree op = CALL_EXPR_ARG (expression, i);
19449 /* In a call to a constexpr member function, look through the
19450 implicit ADDR_EXPR on the object argument so that it doesn't
19451 cause the call to be considered value-dependent. We also
19452 look through it in potential_constant_expression. */
19453 if (i == 0 && fn && DECL_DECLARED_CONSTEXPR_P (fn)
19454 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
19455 && TREE_CODE (op) == ADDR_EXPR)
19456 op = TREE_OPERAND (op, 0);
19457 if (value_dependent_expression_p (op))
19458 return true;
19460 return false;
19463 case TEMPLATE_ID_EXPR:
19464 /* If a TEMPLATE_ID_EXPR involves a dependent name, it will be
19465 type-dependent. */
19466 return type_dependent_expression_p (expression);
19468 case CONSTRUCTOR:
19470 unsigned ix;
19471 tree val;
19472 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), ix, val)
19473 if (value_dependent_expression_p (val))
19474 return true;
19475 return false;
19478 case STMT_EXPR:
19479 /* Treat a GNU statement expression as dependent to avoid crashing
19480 under fold_non_dependent_expr; it can't be constant. */
19481 return true;
19483 default:
19484 /* A constant expression is value-dependent if any subexpression is
19485 value-dependent. */
19486 switch (TREE_CODE_CLASS (TREE_CODE (expression)))
19488 case tcc_reference:
19489 case tcc_unary:
19490 case tcc_comparison:
19491 case tcc_binary:
19492 case tcc_expression:
19493 case tcc_vl_exp:
19495 int i, len = cp_tree_operand_length (expression);
19497 for (i = 0; i < len; i++)
19499 tree t = TREE_OPERAND (expression, i);
19501 /* In some cases, some of the operands may be missing.l
19502 (For example, in the case of PREDECREMENT_EXPR, the
19503 amount to increment by may be missing.) That doesn't
19504 make the expression dependent. */
19505 if (t && value_dependent_expression_p (t))
19506 return true;
19509 break;
19510 default:
19511 break;
19513 break;
19516 /* The expression is not value-dependent. */
19517 return false;
19520 /* Returns TRUE if the EXPRESSION is type-dependent, in the sense of
19521 [temp.dep.expr]. Note that an expression with no type is
19522 considered dependent. Other parts of the compiler arrange for an
19523 expression with type-dependent subexpressions to have no type, so
19524 this function doesn't have to be fully recursive. */
19526 bool
19527 type_dependent_expression_p (tree expression)
19529 if (!processing_template_decl)
19530 return false;
19532 if (expression == error_mark_node)
19533 return false;
19535 /* An unresolved name is always dependent. */
19536 if (TREE_CODE (expression) == IDENTIFIER_NODE
19537 || TREE_CODE (expression) == USING_DECL)
19538 return true;
19540 /* Some expression forms are never type-dependent. */
19541 if (TREE_CODE (expression) == PSEUDO_DTOR_EXPR
19542 || TREE_CODE (expression) == SIZEOF_EXPR
19543 || TREE_CODE (expression) == ALIGNOF_EXPR
19544 || TREE_CODE (expression) == AT_ENCODE_EXPR
19545 || TREE_CODE (expression) == NOEXCEPT_EXPR
19546 || TREE_CODE (expression) == TRAIT_EXPR
19547 || TREE_CODE (expression) == TYPEID_EXPR
19548 || TREE_CODE (expression) == DELETE_EXPR
19549 || TREE_CODE (expression) == VEC_DELETE_EXPR
19550 || TREE_CODE (expression) == THROW_EXPR)
19551 return false;
19553 /* The types of these expressions depends only on the type to which
19554 the cast occurs. */
19555 if (TREE_CODE (expression) == DYNAMIC_CAST_EXPR
19556 || TREE_CODE (expression) == STATIC_CAST_EXPR
19557 || TREE_CODE (expression) == CONST_CAST_EXPR
19558 || TREE_CODE (expression) == REINTERPRET_CAST_EXPR
19559 || TREE_CODE (expression) == IMPLICIT_CONV_EXPR
19560 || TREE_CODE (expression) == CAST_EXPR)
19561 return dependent_type_p (TREE_TYPE (expression));
19563 /* The types of these expressions depends only on the type created
19564 by the expression. */
19565 if (TREE_CODE (expression) == NEW_EXPR
19566 || TREE_CODE (expression) == VEC_NEW_EXPR)
19568 /* For NEW_EXPR tree nodes created inside a template, either
19569 the object type itself or a TREE_LIST may appear as the
19570 operand 1. */
19571 tree type = TREE_OPERAND (expression, 1);
19572 if (TREE_CODE (type) == TREE_LIST)
19573 /* This is an array type. We need to check array dimensions
19574 as well. */
19575 return dependent_type_p (TREE_VALUE (TREE_PURPOSE (type)))
19576 || value_dependent_expression_p
19577 (TREE_OPERAND (TREE_VALUE (type), 1));
19578 else
19579 return dependent_type_p (type);
19582 if (TREE_CODE (expression) == SCOPE_REF)
19584 tree scope = TREE_OPERAND (expression, 0);
19585 tree name = TREE_OPERAND (expression, 1);
19587 /* 14.6.2.2 [temp.dep.expr]: An id-expression is type-dependent if it
19588 contains an identifier associated by name lookup with one or more
19589 declarations declared with a dependent type, or...a
19590 nested-name-specifier or qualified-id that names a member of an
19591 unknown specialization. */
19592 return (type_dependent_expression_p (name)
19593 || dependent_scope_p (scope));
19596 if (TREE_CODE (expression) == FUNCTION_DECL
19597 && DECL_LANG_SPECIFIC (expression)
19598 && DECL_TEMPLATE_INFO (expression)
19599 && (any_dependent_template_arguments_p
19600 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (expression)))))
19601 return true;
19603 if (TREE_CODE (expression) == TEMPLATE_DECL
19604 && !DECL_TEMPLATE_TEMPLATE_PARM_P (expression))
19605 return false;
19607 if (TREE_CODE (expression) == STMT_EXPR)
19608 expression = stmt_expr_value_expr (expression);
19610 if (BRACE_ENCLOSED_INITIALIZER_P (expression))
19612 tree elt;
19613 unsigned i;
19615 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), i, elt)
19617 if (type_dependent_expression_p (elt))
19618 return true;
19620 return false;
19623 /* A static data member of the current instantiation with incomplete
19624 array type is type-dependent, as the definition and specializations
19625 can have different bounds. */
19626 if (TREE_CODE (expression) == VAR_DECL
19627 && DECL_CLASS_SCOPE_P (expression)
19628 && dependent_type_p (DECL_CONTEXT (expression))
19629 && VAR_HAD_UNKNOWN_BOUND (expression))
19630 return true;
19632 if (TREE_TYPE (expression) == unknown_type_node)
19634 if (TREE_CODE (expression) == ADDR_EXPR)
19635 return type_dependent_expression_p (TREE_OPERAND (expression, 0));
19636 if (TREE_CODE (expression) == COMPONENT_REF
19637 || TREE_CODE (expression) == OFFSET_REF)
19639 if (type_dependent_expression_p (TREE_OPERAND (expression, 0)))
19640 return true;
19641 expression = TREE_OPERAND (expression, 1);
19642 if (TREE_CODE (expression) == IDENTIFIER_NODE)
19643 return false;
19645 /* SCOPE_REF with non-null TREE_TYPE is always non-dependent. */
19646 if (TREE_CODE (expression) == SCOPE_REF)
19647 return false;
19649 if (BASELINK_P (expression))
19650 expression = BASELINK_FUNCTIONS (expression);
19652 if (TREE_CODE (expression) == TEMPLATE_ID_EXPR)
19654 if (any_dependent_template_arguments_p
19655 (TREE_OPERAND (expression, 1)))
19656 return true;
19657 expression = TREE_OPERAND (expression, 0);
19659 gcc_assert (TREE_CODE (expression) == OVERLOAD
19660 || TREE_CODE (expression) == FUNCTION_DECL);
19662 while (expression)
19664 if (type_dependent_expression_p (OVL_CURRENT (expression)))
19665 return true;
19666 expression = OVL_NEXT (expression);
19668 return false;
19671 gcc_assert (TREE_CODE (expression) != TYPE_DECL);
19673 return (dependent_type_p (TREE_TYPE (expression)));
19676 /* walk_tree callback function for instantiation_dependent_expression_p,
19677 below. Returns non-zero if a dependent subexpression is found. */
19679 static tree
19680 instantiation_dependent_r (tree *tp, int *walk_subtrees,
19681 void * /*data*/)
19683 if (TYPE_P (*tp))
19685 /* We don't have to worry about decltype currently because decltype
19686 of an instantiation-dependent expr is a dependent type. This
19687 might change depending on the resolution of DR 1172. */
19688 *walk_subtrees = false;
19689 return NULL_TREE;
19691 enum tree_code code = TREE_CODE (*tp);
19692 switch (code)
19694 /* Don't treat an argument list as dependent just because it has no
19695 TREE_TYPE. */
19696 case TREE_LIST:
19697 case TREE_VEC:
19698 return NULL_TREE;
19700 case TEMPLATE_PARM_INDEX:
19701 return *tp;
19703 /* Handle expressions with type operands. */
19704 case SIZEOF_EXPR:
19705 case ALIGNOF_EXPR:
19706 case TYPEID_EXPR:
19707 case AT_ENCODE_EXPR:
19708 case TRAIT_EXPR:
19710 tree op = TREE_OPERAND (*tp, 0);
19711 if (code == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (*tp))
19712 op = TREE_TYPE (op);
19713 if (TYPE_P (op))
19715 if (dependent_type_p (op)
19716 || (code == TRAIT_EXPR
19717 && dependent_type_p (TREE_OPERAND (*tp, 1))))
19718 return *tp;
19719 else
19721 *walk_subtrees = false;
19722 return NULL_TREE;
19725 break;
19728 case COMPONENT_REF:
19729 if (TREE_CODE (TREE_OPERAND (*tp, 1)) == IDENTIFIER_NODE)
19730 /* In a template, finish_class_member_access_expr creates a
19731 COMPONENT_REF with an IDENTIFIER_NODE for op1 even if it isn't
19732 type-dependent, so that we can check access control at
19733 instantiation time (PR 42277). See also Core issue 1273. */
19734 return *tp;
19735 break;
19737 case SCOPE_REF:
19738 /* Similarly, finish_qualified_id_expr builds up a SCOPE_REF in a
19739 template so that we can check access at instantiation time even
19740 though we know which member it resolves to. */
19741 return *tp;
19743 default:
19744 break;
19747 if (type_dependent_expression_p (*tp))
19748 return *tp;
19749 else
19750 return NULL_TREE;
19753 /* Returns TRUE if the EXPRESSION is instantiation-dependent, in the
19754 sense defined by the ABI:
19756 "An expression is instantiation-dependent if it is type-dependent
19757 or value-dependent, or it has a subexpression that is type-dependent
19758 or value-dependent." */
19760 bool
19761 instantiation_dependent_expression_p (tree expression)
19763 tree result;
19765 if (!processing_template_decl)
19766 return false;
19768 if (expression == error_mark_node)
19769 return false;
19771 result = cp_walk_tree_without_duplicates (&expression,
19772 instantiation_dependent_r, NULL);
19773 return result != NULL_TREE;
19776 /* Like type_dependent_expression_p, but it also works while not processing
19777 a template definition, i.e. during substitution or mangling. */
19779 bool
19780 type_dependent_expression_p_push (tree expr)
19782 bool b;
19783 ++processing_template_decl;
19784 b = type_dependent_expression_p (expr);
19785 --processing_template_decl;
19786 return b;
19789 /* Returns TRUE if ARGS contains a type-dependent expression. */
19791 bool
19792 any_type_dependent_arguments_p (const VEC(tree,gc) *args)
19794 unsigned int i;
19795 tree arg;
19797 FOR_EACH_VEC_ELT (tree, args, i, arg)
19799 if (type_dependent_expression_p (arg))
19800 return true;
19802 return false;
19805 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
19806 expressions) contains any type-dependent expressions. */
19808 bool
19809 any_type_dependent_elements_p (const_tree list)
19811 for (; list; list = TREE_CHAIN (list))
19812 if (value_dependent_expression_p (TREE_VALUE (list)))
19813 return true;
19815 return false;
19818 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
19819 expressions) contains any value-dependent expressions. */
19821 bool
19822 any_value_dependent_elements_p (const_tree list)
19824 for (; list; list = TREE_CHAIN (list))
19825 if (value_dependent_expression_p (TREE_VALUE (list)))
19826 return true;
19828 return false;
19831 /* Returns TRUE if the ARG (a template argument) is dependent. */
19833 bool
19834 dependent_template_arg_p (tree arg)
19836 if (!processing_template_decl)
19837 return false;
19839 /* Assume a template argument that was wrongly written by the user
19840 is dependent. This is consistent with what
19841 any_dependent_template_arguments_p [that calls this function]
19842 does. */
19843 if (!arg || arg == error_mark_node)
19844 return true;
19846 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
19847 arg = ARGUMENT_PACK_SELECT_ARG (arg);
19849 if (TREE_CODE (arg) == TEMPLATE_DECL
19850 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
19851 return dependent_template_p (arg);
19852 else if (ARGUMENT_PACK_P (arg))
19854 tree args = ARGUMENT_PACK_ARGS (arg);
19855 int i, len = TREE_VEC_LENGTH (args);
19856 for (i = 0; i < len; ++i)
19858 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
19859 return true;
19862 return false;
19864 else if (TYPE_P (arg))
19865 return dependent_type_p (arg);
19866 else
19867 return (type_dependent_expression_p (arg)
19868 || value_dependent_expression_p (arg));
19871 /* Returns true if ARGS (a collection of template arguments) contains
19872 any types that require structural equality testing. */
19874 bool
19875 any_template_arguments_need_structural_equality_p (tree args)
19877 int i;
19878 int j;
19880 if (!args)
19881 return false;
19882 if (args == error_mark_node)
19883 return true;
19885 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
19887 tree level = TMPL_ARGS_LEVEL (args, i + 1);
19888 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
19890 tree arg = TREE_VEC_ELT (level, j);
19891 tree packed_args = NULL_TREE;
19892 int k, len = 1;
19894 if (ARGUMENT_PACK_P (arg))
19896 /* Look inside the argument pack. */
19897 packed_args = ARGUMENT_PACK_ARGS (arg);
19898 len = TREE_VEC_LENGTH (packed_args);
19901 for (k = 0; k < len; ++k)
19903 if (packed_args)
19904 arg = TREE_VEC_ELT (packed_args, k);
19906 if (error_operand_p (arg))
19907 return true;
19908 else if (TREE_CODE (arg) == TEMPLATE_DECL
19909 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
19910 continue;
19911 else if (TYPE_P (arg) && TYPE_STRUCTURAL_EQUALITY_P (arg))
19912 return true;
19913 else if (!TYPE_P (arg) && TREE_TYPE (arg)
19914 && TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (arg)))
19915 return true;
19920 return false;
19923 /* Returns true if ARGS (a collection of template arguments) contains
19924 any dependent arguments. */
19926 bool
19927 any_dependent_template_arguments_p (const_tree args)
19929 int i;
19930 int j;
19932 if (!args)
19933 return false;
19934 if (args == error_mark_node)
19935 return true;
19937 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
19939 const_tree level = TMPL_ARGS_LEVEL (args, i + 1);
19940 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
19941 if (dependent_template_arg_p (TREE_VEC_ELT (level, j)))
19942 return true;
19945 return false;
19948 /* Returns TRUE if the template TMPL is dependent. */
19950 bool
19951 dependent_template_p (tree tmpl)
19953 if (TREE_CODE (tmpl) == OVERLOAD)
19955 while (tmpl)
19957 if (dependent_template_p (OVL_CURRENT (tmpl)))
19958 return true;
19959 tmpl = OVL_NEXT (tmpl);
19961 return false;
19964 /* Template template parameters are dependent. */
19965 if (DECL_TEMPLATE_TEMPLATE_PARM_P (tmpl)
19966 || TREE_CODE (tmpl) == TEMPLATE_TEMPLATE_PARM)
19967 return true;
19968 /* So are names that have not been looked up. */
19969 if (TREE_CODE (tmpl) == SCOPE_REF
19970 || TREE_CODE (tmpl) == IDENTIFIER_NODE)
19971 return true;
19972 /* So are member templates of dependent classes. */
19973 if (TYPE_P (CP_DECL_CONTEXT (tmpl)))
19974 return dependent_type_p (DECL_CONTEXT (tmpl));
19975 return false;
19978 /* Returns TRUE if the specialization TMPL<ARGS> is dependent. */
19980 bool
19981 dependent_template_id_p (tree tmpl, tree args)
19983 return (dependent_template_p (tmpl)
19984 || any_dependent_template_arguments_p (args));
19987 /* Returns TRUE if OMP_FOR with DECLV, INITV, CONDV and INCRV vectors
19988 is dependent. */
19990 bool
19991 dependent_omp_for_p (tree declv, tree initv, tree condv, tree incrv)
19993 int i;
19995 if (!processing_template_decl)
19996 return false;
19998 for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
20000 tree decl = TREE_VEC_ELT (declv, i);
20001 tree init = TREE_VEC_ELT (initv, i);
20002 tree cond = TREE_VEC_ELT (condv, i);
20003 tree incr = TREE_VEC_ELT (incrv, i);
20005 if (type_dependent_expression_p (decl))
20006 return true;
20008 if (init && type_dependent_expression_p (init))
20009 return true;
20011 if (type_dependent_expression_p (cond))
20012 return true;
20014 if (COMPARISON_CLASS_P (cond)
20015 && (type_dependent_expression_p (TREE_OPERAND (cond, 0))
20016 || type_dependent_expression_p (TREE_OPERAND (cond, 1))))
20017 return true;
20019 if (TREE_CODE (incr) == MODOP_EXPR)
20021 if (type_dependent_expression_p (TREE_OPERAND (incr, 0))
20022 || type_dependent_expression_p (TREE_OPERAND (incr, 2)))
20023 return true;
20025 else if (type_dependent_expression_p (incr))
20026 return true;
20027 else if (TREE_CODE (incr) == MODIFY_EXPR)
20029 if (type_dependent_expression_p (TREE_OPERAND (incr, 0)))
20030 return true;
20031 else if (BINARY_CLASS_P (TREE_OPERAND (incr, 1)))
20033 tree t = TREE_OPERAND (incr, 1);
20034 if (type_dependent_expression_p (TREE_OPERAND (t, 0))
20035 || type_dependent_expression_p (TREE_OPERAND (t, 1)))
20036 return true;
20041 return false;
20044 /* TYPE is a TYPENAME_TYPE. Returns the ordinary TYPE to which the
20045 TYPENAME_TYPE corresponds. Returns the original TYPENAME_TYPE if
20046 no such TYPE can be found. Note that this function peers inside
20047 uninstantiated templates and therefore should be used only in
20048 extremely limited situations. ONLY_CURRENT_P restricts this
20049 peering to the currently open classes hierarchy (which is required
20050 when comparing types). */
20052 tree
20053 resolve_typename_type (tree type, bool only_current_p)
20055 tree scope;
20056 tree name;
20057 tree decl;
20058 int quals;
20059 tree pushed_scope;
20060 tree result;
20062 gcc_assert (TREE_CODE (type) == TYPENAME_TYPE);
20064 scope = TYPE_CONTEXT (type);
20065 /* Usually the non-qualified identifier of a TYPENAME_TYPE is
20066 TYPE_IDENTIFIER (type). But when 'type' is a typedef variant of
20067 a TYPENAME_TYPE node, then TYPE_NAME (type) is set to the TYPE_DECL representing
20068 the typedef. In that case TYPE_IDENTIFIER (type) is not the non-qualified
20069 identifier of the TYPENAME_TYPE anymore.
20070 So by getting the TYPE_IDENTIFIER of the _main declaration_ of the
20071 TYPENAME_TYPE instead, we avoid messing up with a possible
20072 typedef variant case. */
20073 name = TYPE_IDENTIFIER (TYPE_MAIN_VARIANT (type));
20075 /* If the SCOPE is itself a TYPENAME_TYPE, then we need to resolve
20076 it first before we can figure out what NAME refers to. */
20077 if (TREE_CODE (scope) == TYPENAME_TYPE)
20078 scope = resolve_typename_type (scope, only_current_p);
20079 /* If we don't know what SCOPE refers to, then we cannot resolve the
20080 TYPENAME_TYPE. */
20081 if (TREE_CODE (scope) == TYPENAME_TYPE)
20082 return type;
20083 /* If the SCOPE is a template type parameter, we have no way of
20084 resolving the name. */
20085 if (TREE_CODE (scope) == TEMPLATE_TYPE_PARM)
20086 return type;
20087 /* If the SCOPE is not the current instantiation, there's no reason
20088 to look inside it. */
20089 if (only_current_p && !currently_open_class (scope))
20090 return type;
20091 /* If this is a typedef, we don't want to look inside (c++/11987). */
20092 if (typedef_variant_p (type))
20093 return type;
20094 /* If SCOPE isn't the template itself, it will not have a valid
20095 TYPE_FIELDS list. */
20096 if (same_type_p (scope, CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope)))
20097 /* scope is either the template itself or a compatible instantiation
20098 like X<T>, so look up the name in the original template. */
20099 scope = CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope);
20100 else
20101 /* scope is a partial instantiation, so we can't do the lookup or we
20102 will lose the template arguments. */
20103 return type;
20104 /* Enter the SCOPE so that name lookup will be resolved as if we
20105 were in the class definition. In particular, SCOPE will no
20106 longer be considered a dependent type. */
20107 pushed_scope = push_scope (scope);
20108 /* Look up the declaration. */
20109 decl = lookup_member (scope, name, /*protect=*/0, /*want_type=*/true,
20110 tf_warning_or_error);
20112 result = NULL_TREE;
20114 /* For a TYPENAME_TYPE like "typename X::template Y<T>", we want to
20115 find a TEMPLATE_DECL. Otherwise, we want to find a TYPE_DECL. */
20116 if (!decl)
20117 /*nop*/;
20118 else if (TREE_CODE (TYPENAME_TYPE_FULLNAME (type)) == IDENTIFIER_NODE
20119 && TREE_CODE (decl) == TYPE_DECL)
20121 result = TREE_TYPE (decl);
20122 if (result == error_mark_node)
20123 result = NULL_TREE;
20125 else if (TREE_CODE (TYPENAME_TYPE_FULLNAME (type)) == TEMPLATE_ID_EXPR
20126 && DECL_CLASS_TEMPLATE_P (decl))
20128 tree tmpl;
20129 tree args;
20130 /* Obtain the template and the arguments. */
20131 tmpl = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 0);
20132 args = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 1);
20133 /* Instantiate the template. */
20134 result = lookup_template_class (tmpl, args, NULL_TREE, NULL_TREE,
20135 /*entering_scope=*/0,
20136 tf_error | tf_user);
20137 if (result == error_mark_node)
20138 result = NULL_TREE;
20141 /* Leave the SCOPE. */
20142 if (pushed_scope)
20143 pop_scope (pushed_scope);
20145 /* If we failed to resolve it, return the original typename. */
20146 if (!result)
20147 return type;
20149 /* If lookup found a typename type, resolve that too. */
20150 if (TREE_CODE (result) == TYPENAME_TYPE && !TYPENAME_IS_RESOLVING_P (result))
20152 /* Ill-formed programs can cause infinite recursion here, so we
20153 must catch that. */
20154 TYPENAME_IS_RESOLVING_P (type) = 1;
20155 result = resolve_typename_type (result, only_current_p);
20156 TYPENAME_IS_RESOLVING_P (type) = 0;
20159 /* Qualify the resulting type. */
20160 quals = cp_type_quals (type);
20161 if (quals)
20162 result = cp_build_qualified_type (result, cp_type_quals (result) | quals);
20164 return result;
20167 /* EXPR is an expression which is not type-dependent. Return a proxy
20168 for EXPR that can be used to compute the types of larger
20169 expressions containing EXPR. */
20171 tree
20172 build_non_dependent_expr (tree expr)
20174 tree inner_expr;
20176 #ifdef ENABLE_CHECKING
20177 /* Try to get a constant value for all non-type-dependent expressions in
20178 order to expose bugs in *_dependent_expression_p and constexpr. */
20179 if (cxx_dialect >= cxx0x)
20180 maybe_constant_value (fold_non_dependent_expr_sfinae (expr, tf_none));
20181 #endif
20183 /* Preserve OVERLOADs; the functions must be available to resolve
20184 types. */
20185 inner_expr = expr;
20186 if (TREE_CODE (inner_expr) == STMT_EXPR)
20187 inner_expr = stmt_expr_value_expr (inner_expr);
20188 if (TREE_CODE (inner_expr) == ADDR_EXPR)
20189 inner_expr = TREE_OPERAND (inner_expr, 0);
20190 if (TREE_CODE (inner_expr) == COMPONENT_REF)
20191 inner_expr = TREE_OPERAND (inner_expr, 1);
20192 if (is_overloaded_fn (inner_expr)
20193 || TREE_CODE (inner_expr) == OFFSET_REF)
20194 return expr;
20195 /* There is no need to return a proxy for a variable. */
20196 if (TREE_CODE (expr) == VAR_DECL)
20197 return expr;
20198 /* Preserve string constants; conversions from string constants to
20199 "char *" are allowed, even though normally a "const char *"
20200 cannot be used to initialize a "char *". */
20201 if (TREE_CODE (expr) == STRING_CST)
20202 return expr;
20203 /* Preserve arithmetic constants, as an optimization -- there is no
20204 reason to create a new node. */
20205 if (TREE_CODE (expr) == INTEGER_CST || TREE_CODE (expr) == REAL_CST)
20206 return expr;
20207 /* Preserve THROW_EXPRs -- all throw-expressions have type "void".
20208 There is at least one place where we want to know that a
20209 particular expression is a throw-expression: when checking a ?:
20210 expression, there are special rules if the second or third
20211 argument is a throw-expression. */
20212 if (TREE_CODE (expr) == THROW_EXPR)
20213 return expr;
20215 /* Don't wrap an initializer list, we need to be able to look inside. */
20216 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
20217 return expr;
20219 /* Don't wrap a dummy object, we need to be able to test for it. */
20220 if (is_dummy_object (expr))
20221 return expr;
20223 if (TREE_CODE (expr) == COND_EXPR)
20224 return build3 (COND_EXPR,
20225 TREE_TYPE (expr),
20226 TREE_OPERAND (expr, 0),
20227 (TREE_OPERAND (expr, 1)
20228 ? build_non_dependent_expr (TREE_OPERAND (expr, 1))
20229 : build_non_dependent_expr (TREE_OPERAND (expr, 0))),
20230 build_non_dependent_expr (TREE_OPERAND (expr, 2)));
20231 if (TREE_CODE (expr) == COMPOUND_EXPR
20232 && !COMPOUND_EXPR_OVERLOADED (expr))
20233 return build2 (COMPOUND_EXPR,
20234 TREE_TYPE (expr),
20235 TREE_OPERAND (expr, 0),
20236 build_non_dependent_expr (TREE_OPERAND (expr, 1)));
20238 /* If the type is unknown, it can't really be non-dependent */
20239 gcc_assert (TREE_TYPE (expr) != unknown_type_node);
20241 /* Otherwise, build a NON_DEPENDENT_EXPR. */
20242 return build1 (NON_DEPENDENT_EXPR, TREE_TYPE (expr), expr);
20245 /* ARGS is a vector of expressions as arguments to a function call.
20246 Replace the arguments with equivalent non-dependent expressions.
20247 This modifies ARGS in place. */
20249 void
20250 make_args_non_dependent (VEC(tree,gc) *args)
20252 unsigned int ix;
20253 tree arg;
20255 FOR_EACH_VEC_ELT (tree, args, ix, arg)
20257 tree newarg = build_non_dependent_expr (arg);
20258 if (newarg != arg)
20259 VEC_replace (tree, args, ix, newarg);
20263 /* Returns a type which represents 'auto'. We use a TEMPLATE_TYPE_PARM
20264 with a level one deeper than the actual template parms. */
20266 tree
20267 make_auto (void)
20269 tree au = cxx_make_type (TEMPLATE_TYPE_PARM);
20270 TYPE_NAME (au) = build_decl (BUILTINS_LOCATION,
20271 TYPE_DECL, get_identifier ("auto"), au);
20272 TYPE_STUB_DECL (au) = TYPE_NAME (au);
20273 TEMPLATE_TYPE_PARM_INDEX (au) = build_template_parm_index
20274 (0, processing_template_decl + 1, processing_template_decl + 1,
20275 TYPE_NAME (au), NULL_TREE);
20276 TYPE_CANONICAL (au) = canonical_type_parameter (au);
20277 DECL_ARTIFICIAL (TYPE_NAME (au)) = 1;
20278 SET_DECL_TEMPLATE_PARM_P (TYPE_NAME (au));
20280 return au;
20283 /* Given type ARG, return std::initializer_list<ARG>. */
20285 static tree
20286 listify (tree arg)
20288 tree std_init_list = namespace_binding
20289 (get_identifier ("initializer_list"), std_node);
20290 tree argvec;
20291 if (!std_init_list || !DECL_CLASS_TEMPLATE_P (std_init_list))
20293 error ("deducing from brace-enclosed initializer list requires "
20294 "#include <initializer_list>");
20295 return error_mark_node;
20297 argvec = make_tree_vec (1);
20298 TREE_VEC_ELT (argvec, 0) = arg;
20299 return lookup_template_class (std_init_list, argvec, NULL_TREE,
20300 NULL_TREE, 0, tf_warning_or_error);
20303 /* Replace auto in TYPE with std::initializer_list<auto>. */
20305 static tree
20306 listify_autos (tree type, tree auto_node)
20308 tree init_auto = listify (auto_node);
20309 tree argvec = make_tree_vec (1);
20310 TREE_VEC_ELT (argvec, 0) = init_auto;
20311 if (processing_template_decl)
20312 argvec = add_to_template_args (current_template_args (), argvec);
20313 return tsubst (type, argvec, tf_warning_or_error, NULL_TREE);
20316 /* Replace occurrences of 'auto' in TYPE with the appropriate type deduced
20317 from INIT. AUTO_NODE is the TEMPLATE_TYPE_PARM used for 'auto' in TYPE. */
20319 tree
20320 do_auto_deduction (tree type, tree init, tree auto_node)
20322 tree parms, tparms, targs;
20323 tree args[1];
20324 int val;
20326 if (init == error_mark_node)
20327 return error_mark_node;
20329 if (type_dependent_expression_p (init))
20330 /* Defining a subset of type-dependent expressions that we can deduce
20331 from ahead of time isn't worth the trouble. */
20332 return type;
20334 /* [dcl.spec.auto]: Obtain P from T by replacing the occurrences of auto
20335 with either a new invented type template parameter U or, if the
20336 initializer is a braced-init-list (8.5.4), with
20337 std::initializer_list<U>. */
20338 if (BRACE_ENCLOSED_INITIALIZER_P (init))
20339 type = listify_autos (type, auto_node);
20341 init = resolve_nondeduced_context (init);
20343 parms = build_tree_list (NULL_TREE, type);
20344 args[0] = init;
20345 tparms = make_tree_vec (1);
20346 targs = make_tree_vec (1);
20347 TREE_VEC_ELT (tparms, 0)
20348 = build_tree_list (NULL_TREE, TYPE_NAME (auto_node));
20349 val = type_unification_real (tparms, targs, parms, args, 1, 0,
20350 DEDUCE_CALL, LOOKUP_NORMAL,
20351 /*explain_p=*/false);
20352 if (val > 0)
20354 if (processing_template_decl)
20355 /* Try again at instantiation time. */
20356 return type;
20357 if (type && type != error_mark_node)
20358 /* If type is error_mark_node a diagnostic must have been
20359 emitted by now. Also, having a mention to '<type error>'
20360 in the diagnostic is not really useful to the user. */
20362 if (cfun && auto_node == current_function_auto_return_pattern
20363 && LAMBDA_FUNCTION_P (current_function_decl))
20364 error ("unable to deduce lambda return type from %qE", init);
20365 else
20366 error ("unable to deduce %qT from %qE", type, init);
20368 return error_mark_node;
20371 /* If the list of declarators contains more than one declarator, the type
20372 of each declared variable is determined as described above. If the
20373 type deduced for the template parameter U is not the same in each
20374 deduction, the program is ill-formed. */
20375 if (TREE_TYPE (auto_node)
20376 && !same_type_p (TREE_TYPE (auto_node), TREE_VEC_ELT (targs, 0)))
20378 if (cfun && auto_node == current_function_auto_return_pattern
20379 && LAMBDA_FUNCTION_P (current_function_decl))
20380 error ("inconsistent types %qT and %qT deduced for "
20381 "lambda return type", TREE_TYPE (auto_node),
20382 TREE_VEC_ELT (targs, 0));
20383 else
20384 error ("inconsistent deduction for %qT: %qT and then %qT",
20385 auto_node, TREE_TYPE (auto_node), TREE_VEC_ELT (targs, 0));
20386 return error_mark_node;
20388 TREE_TYPE (auto_node) = TREE_VEC_ELT (targs, 0);
20390 if (processing_template_decl)
20391 targs = add_to_template_args (current_template_args (), targs);
20392 return tsubst (type, targs, tf_warning_or_error, NULL_TREE);
20395 /* Substitutes LATE_RETURN_TYPE for 'auto' in TYPE and returns the
20396 result. */
20398 tree
20399 splice_late_return_type (tree type, tree late_return_type)
20401 tree argvec;
20403 if (late_return_type == NULL_TREE)
20404 return type;
20405 argvec = make_tree_vec (1);
20406 TREE_VEC_ELT (argvec, 0) = late_return_type;
20407 if (processing_template_parmlist)
20408 /* For a late-specified return type in a template type-parameter, we
20409 need to add a dummy argument level for its parmlist. */
20410 argvec = add_to_template_args
20411 (make_tree_vec (processing_template_parmlist), argvec);
20412 if (current_template_parms)
20413 argvec = add_to_template_args (current_template_args (), argvec);
20414 return tsubst (type, argvec, tf_warning_or_error, NULL_TREE);
20417 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto'. */
20419 bool
20420 is_auto (const_tree type)
20422 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
20423 && TYPE_IDENTIFIER (type) == get_identifier ("auto"))
20424 return true;
20425 else
20426 return false;
20429 /* Returns true iff TYPE contains a use of 'auto'. Since auto can only
20430 appear as a type-specifier for the declaration in question, we don't
20431 have to look through the whole type. */
20433 tree
20434 type_uses_auto (tree type)
20436 enum tree_code code;
20437 if (is_auto (type))
20438 return type;
20440 code = TREE_CODE (type);
20442 if (code == POINTER_TYPE || code == REFERENCE_TYPE
20443 || code == OFFSET_TYPE || code == FUNCTION_TYPE
20444 || code == METHOD_TYPE || code == ARRAY_TYPE)
20445 return type_uses_auto (TREE_TYPE (type));
20447 if (TYPE_PTRMEMFUNC_P (type))
20448 return type_uses_auto (TREE_TYPE (TREE_TYPE
20449 (TYPE_PTRMEMFUNC_FN_TYPE (type))));
20451 return NULL_TREE;
20454 /* For a given template T, return the vector of typedefs referenced
20455 in T for which access check is needed at T instantiation time.
20456 T is either a FUNCTION_DECL or a RECORD_TYPE.
20457 Those typedefs were added to T by the function
20458 append_type_to_template_for_access_check. */
20460 VEC(qualified_typedef_usage_t,gc)*
20461 get_types_needing_access_check (tree t)
20463 tree ti;
20464 VEC(qualified_typedef_usage_t,gc) *result = NULL;
20466 if (!t || t == error_mark_node)
20467 return NULL;
20469 if (!(ti = get_template_info (t)))
20470 return NULL;
20472 if (CLASS_TYPE_P (t)
20473 || TREE_CODE (t) == FUNCTION_DECL)
20475 if (!TI_TEMPLATE (ti))
20476 return NULL;
20478 result = TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti);
20481 return result;
20484 /* Append the typedef TYPE_DECL used in template T to a list of typedefs
20485 tied to T. That list of typedefs will be access checked at
20486 T instantiation time.
20487 T is either a FUNCTION_DECL or a RECORD_TYPE.
20488 TYPE_DECL is a TYPE_DECL node representing a typedef.
20489 SCOPE is the scope through which TYPE_DECL is accessed.
20490 LOCATION is the location of the usage point of TYPE_DECL.
20492 This function is a subroutine of
20493 append_type_to_template_for_access_check. */
20495 static void
20496 append_type_to_template_for_access_check_1 (tree t,
20497 tree type_decl,
20498 tree scope,
20499 location_t location)
20501 qualified_typedef_usage_t typedef_usage;
20502 tree ti;
20504 if (!t || t == error_mark_node)
20505 return;
20507 gcc_assert ((TREE_CODE (t) == FUNCTION_DECL
20508 || CLASS_TYPE_P (t))
20509 && type_decl
20510 && TREE_CODE (type_decl) == TYPE_DECL
20511 && scope);
20513 if (!(ti = get_template_info (t)))
20514 return;
20516 gcc_assert (TI_TEMPLATE (ti));
20518 typedef_usage.typedef_decl = type_decl;
20519 typedef_usage.context = scope;
20520 typedef_usage.locus = location;
20522 VEC_safe_push (qualified_typedef_usage_t, gc,
20523 TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti),
20524 typedef_usage);
20527 /* Append TYPE_DECL to the template TEMPL.
20528 TEMPL is either a class type, a FUNCTION_DECL or a a TEMPLATE_DECL.
20529 At TEMPL instanciation time, TYPE_DECL will be checked to see
20530 if it can be accessed through SCOPE.
20531 LOCATION is the location of the usage point of TYPE_DECL.
20533 e.g. consider the following code snippet:
20535 class C
20537 typedef int myint;
20540 template<class U> struct S
20542 C::myint mi; // <-- usage point of the typedef C::myint
20545 S<char> s;
20547 At S<char> instantiation time, we need to check the access of C::myint
20548 In other words, we need to check the access of the myint typedef through
20549 the C scope. For that purpose, this function will add the myint typedef
20550 and the scope C through which its being accessed to a list of typedefs
20551 tied to the template S. That list will be walked at template instantiation
20552 time and access check performed on each typedefs it contains.
20553 Note that this particular code snippet should yield an error because
20554 myint is private to C. */
20556 void
20557 append_type_to_template_for_access_check (tree templ,
20558 tree type_decl,
20559 tree scope,
20560 location_t location)
20562 qualified_typedef_usage_t *iter;
20563 int i;
20565 gcc_assert (type_decl && (TREE_CODE (type_decl) == TYPE_DECL));
20567 /* Make sure we don't append the type to the template twice. */
20568 FOR_EACH_VEC_ELT (qualified_typedef_usage_t,
20569 get_types_needing_access_check (templ),
20570 i, iter)
20571 if (iter->typedef_decl == type_decl && scope == iter->context)
20572 return;
20574 append_type_to_template_for_access_check_1 (templ, type_decl,
20575 scope, location);
20578 /* Set up the hash tables for template instantiations. */
20580 void
20581 init_template_processing (void)
20583 decl_specializations = htab_create_ggc (37,
20584 hash_specialization,
20585 eq_specializations,
20586 ggc_free);
20587 type_specializations = htab_create_ggc (37,
20588 hash_specialization,
20589 eq_specializations,
20590 ggc_free);
20593 /* Print stats about the template hash tables for -fstats. */
20595 void
20596 print_template_statistics (void)
20598 fprintf (stderr, "decl_specializations: size %ld, %ld elements, "
20599 "%f collisions\n", (long) htab_size (decl_specializations),
20600 (long) htab_elements (decl_specializations),
20601 htab_collisions (decl_specializations));
20602 fprintf (stderr, "type_specializations: size %ld, %ld elements, "
20603 "%f collisions\n", (long) htab_size (type_specializations),
20604 (long) htab_elements (type_specializations),
20605 htab_collisions (type_specializations));
20608 #include "gt-cp-pt.h"