Fix PR c++/79360
[official-gcc.git] / gcc / cp / pt.c
blob6072432382d51afa304f7a791e57e5cd2098f761
1 /* Handle parameterized types (templates) for GNU -*- C++ -*-.
2 Copyright (C) 1992-2017 Free Software Foundation, Inc.
3 Written by Ken Raeburn (raeburn@cygnus.com) while at Watchmaker Computing.
4 Rewritten by Jason Merrill (jason@cygnus.com).
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 /* Known bugs or deficiencies include:
24 all methods must be provided in header files; can't use a source
25 file that contains only the method templates and "just win". */
27 #include "config.h"
28 #include "system.h"
29 #include "coretypes.h"
30 #include "cp-tree.h"
31 #include "timevar.h"
32 #include "stringpool.h"
33 #include "varasm.h"
34 #include "attribs.h"
35 #include "stor-layout.h"
36 #include "intl.h"
37 #include "c-family/c-objc.h"
38 #include "cp-objcp-common.h"
39 #include "toplev.h"
40 #include "tree-iterator.h"
41 #include "type-utils.h"
42 #include "gimplify.h"
44 /* The type of functions taking a tree, and some additional data, and
45 returning an int. */
46 typedef int (*tree_fn_t) (tree, void*);
48 /* The PENDING_TEMPLATES is a TREE_LIST of templates whose
49 instantiations have been deferred, either because their definitions
50 were not yet available, or because we were putting off doing the work. */
51 struct GTY ((chain_next ("%h.next"))) pending_template {
52 struct pending_template *next;
53 struct tinst_level *tinst;
56 static GTY(()) struct pending_template *pending_templates;
57 static GTY(()) struct pending_template *last_pending_template;
59 int processing_template_parmlist;
60 static int template_header_count;
62 static GTY(()) tree saved_trees;
63 static vec<int> inline_parm_levels;
65 static GTY(()) struct tinst_level *current_tinst_level;
67 static GTY(()) tree saved_access_scope;
69 /* Live only within one (recursive) call to tsubst_expr. We use
70 this to pass the statement expression node from the STMT_EXPR
71 to the EXPR_STMT that is its result. */
72 static tree cur_stmt_expr;
74 // -------------------------------------------------------------------------- //
75 // Local Specialization Stack
77 // Implementation of the RAII helper for creating new local
78 // specializations.
79 local_specialization_stack::local_specialization_stack ()
80 : saved (local_specializations)
82 local_specializations = new hash_map<tree, tree>;
85 local_specialization_stack::~local_specialization_stack ()
87 delete local_specializations;
88 local_specializations = saved;
91 /* True if we've recursed into fn_type_unification too many times. */
92 static bool excessive_deduction_depth;
94 struct GTY((for_user)) spec_entry
96 tree tmpl;
97 tree args;
98 tree spec;
101 struct spec_hasher : ggc_ptr_hash<spec_entry>
103 static hashval_t hash (spec_entry *);
104 static bool equal (spec_entry *, spec_entry *);
107 static GTY (()) hash_table<spec_hasher> *decl_specializations;
109 static GTY (()) hash_table<spec_hasher> *type_specializations;
111 /* Contains canonical template parameter types. The vector is indexed by
112 the TEMPLATE_TYPE_IDX of the template parameter. Each element is a
113 TREE_LIST, whose TREE_VALUEs contain the canonical template
114 parameters of various types and levels. */
115 static GTY(()) vec<tree, va_gc> *canonical_template_parms;
117 #define UNIFY_ALLOW_NONE 0
118 #define UNIFY_ALLOW_MORE_CV_QUAL 1
119 #define UNIFY_ALLOW_LESS_CV_QUAL 2
120 #define UNIFY_ALLOW_DERIVED 4
121 #define UNIFY_ALLOW_INTEGER 8
122 #define UNIFY_ALLOW_OUTER_LEVEL 16
123 #define UNIFY_ALLOW_OUTER_MORE_CV_QUAL 32
124 #define UNIFY_ALLOW_OUTER_LESS_CV_QUAL 64
126 enum template_base_result {
127 tbr_incomplete_type,
128 tbr_ambiguous_baseclass,
129 tbr_success
132 static void push_access_scope (tree);
133 static void pop_access_scope (tree);
134 static bool resolve_overloaded_unification (tree, tree, tree, tree,
135 unification_kind_t, int,
136 bool);
137 static int try_one_overload (tree, tree, tree, tree, tree,
138 unification_kind_t, int, bool, bool);
139 static int unify (tree, tree, tree, tree, int, bool);
140 static void add_pending_template (tree);
141 static tree reopen_tinst_level (struct tinst_level *);
142 static tree tsubst_initializer_list (tree, tree);
143 static tree get_partial_spec_bindings (tree, tree, tree);
144 static tree coerce_template_parms (tree, tree, tree, tsubst_flags_t,
145 bool, bool);
146 static tree coerce_innermost_template_parms (tree, tree, tree, tsubst_flags_t,
147 bool, bool);
148 static void tsubst_enum (tree, tree, tree);
149 static tree add_to_template_args (tree, tree);
150 static tree add_outermost_template_args (tree, tree);
151 static bool check_instantiated_args (tree, tree, tsubst_flags_t);
152 static int maybe_adjust_types_for_deduction (unification_kind_t, tree*, tree*,
153 tree);
154 static int type_unification_real (tree, tree, tree, const tree *,
155 unsigned int, int, unification_kind_t, int,
156 vec<deferred_access_check, va_gc> **,
157 bool);
158 static void note_template_header (int);
159 static tree convert_nontype_argument_function (tree, tree, tsubst_flags_t);
160 static tree convert_nontype_argument (tree, tree, tsubst_flags_t);
161 static tree convert_template_argument (tree, tree, tree,
162 tsubst_flags_t, int, tree);
163 static tree for_each_template_parm (tree, tree_fn_t, void*,
164 hash_set<tree> *, bool, tree_fn_t = NULL);
165 static tree expand_template_argument_pack (tree);
166 static tree build_template_parm_index (int, int, int, tree, tree);
167 static bool inline_needs_template_parms (tree, bool);
168 static void push_inline_template_parms_recursive (tree, int);
169 static tree reduce_template_parm_level (tree, tree, int, tree, tsubst_flags_t);
170 static int mark_template_parm (tree, void *);
171 static int template_parm_this_level_p (tree, void *);
172 static tree tsubst_friend_function (tree, tree);
173 static tree tsubst_friend_class (tree, tree);
174 static int can_complete_type_without_circularity (tree);
175 static tree get_bindings (tree, tree, tree, bool);
176 static int template_decl_level (tree);
177 static int check_cv_quals_for_unify (int, tree, tree);
178 static void template_parm_level_and_index (tree, int*, int*);
179 static int unify_pack_expansion (tree, tree, tree,
180 tree, unification_kind_t, bool, bool);
181 static tree copy_template_args (tree);
182 static tree tsubst_template_arg (tree, tree, tsubst_flags_t, tree);
183 static tree tsubst_template_args (tree, tree, tsubst_flags_t, tree);
184 static tree tsubst_template_parms (tree, tree, tsubst_flags_t);
185 static tree most_specialized_partial_spec (tree, tsubst_flags_t);
186 static tree tsubst_aggr_type (tree, tree, tsubst_flags_t, tree, int);
187 static tree tsubst_arg_types (tree, tree, tree, tsubst_flags_t, tree);
188 static tree tsubst_function_type (tree, tree, tsubst_flags_t, tree);
189 static bool check_specialization_scope (void);
190 static tree process_partial_specialization (tree);
191 static void set_current_access_from_decl (tree);
192 static enum template_base_result get_template_base (tree, tree, tree, tree,
193 bool , tree *);
194 static tree try_class_unification (tree, tree, tree, tree, bool);
195 static int coerce_template_template_parms (tree, tree, tsubst_flags_t,
196 tree, tree);
197 static bool template_template_parm_bindings_ok_p (tree, tree);
198 static void tsubst_default_arguments (tree, tsubst_flags_t);
199 static tree for_each_template_parm_r (tree *, int *, void *);
200 static tree copy_default_args_to_explicit_spec_1 (tree, tree);
201 static void copy_default_args_to_explicit_spec (tree);
202 static int invalid_nontype_parm_type_p (tree, tsubst_flags_t);
203 static bool dependent_template_arg_p (tree);
204 static bool any_template_arguments_need_structural_equality_p (tree);
205 static bool dependent_type_p_r (tree);
206 static tree tsubst_copy (tree, tree, tsubst_flags_t, tree);
207 static tree tsubst_decl (tree, tree, tsubst_flags_t);
208 static void perform_typedefs_access_check (tree tmpl, tree targs);
209 static void append_type_to_template_for_access_check_1 (tree, tree, tree,
210 location_t);
211 static tree listify (tree);
212 static tree listify_autos (tree, tree);
213 static tree tsubst_template_parm (tree, tree, tsubst_flags_t);
214 static tree instantiate_alias_template (tree, tree, tsubst_flags_t);
215 static bool complex_alias_template_p (const_tree tmpl);
216 static tree tsubst_attributes (tree, tree, tsubst_flags_t, tree);
217 static tree canonicalize_expr_argument (tree, tsubst_flags_t);
219 /* Make the current scope suitable for access checking when we are
220 processing T. T can be FUNCTION_DECL for instantiated function
221 template, VAR_DECL for static member variable, or TYPE_DECL for
222 alias template (needed by instantiate_decl). */
224 static void
225 push_access_scope (tree t)
227 gcc_assert (VAR_OR_FUNCTION_DECL_P (t)
228 || TREE_CODE (t) == TYPE_DECL);
230 if (DECL_FRIEND_CONTEXT (t))
231 push_nested_class (DECL_FRIEND_CONTEXT (t));
232 else if (DECL_CLASS_SCOPE_P (t))
233 push_nested_class (DECL_CONTEXT (t));
234 else
235 push_to_top_level ();
237 if (TREE_CODE (t) == FUNCTION_DECL)
239 saved_access_scope = tree_cons
240 (NULL_TREE, current_function_decl, saved_access_scope);
241 current_function_decl = t;
245 /* Restore the scope set up by push_access_scope. T is the node we
246 are processing. */
248 static void
249 pop_access_scope (tree t)
251 if (TREE_CODE (t) == FUNCTION_DECL)
253 current_function_decl = TREE_VALUE (saved_access_scope);
254 saved_access_scope = TREE_CHAIN (saved_access_scope);
257 if (DECL_FRIEND_CONTEXT (t) || DECL_CLASS_SCOPE_P (t))
258 pop_nested_class ();
259 else
260 pop_from_top_level ();
263 /* Do any processing required when DECL (a member template
264 declaration) is finished. Returns the TEMPLATE_DECL corresponding
265 to DECL, unless it is a specialization, in which case the DECL
266 itself is returned. */
268 tree
269 finish_member_template_decl (tree decl)
271 if (decl == error_mark_node)
272 return error_mark_node;
274 gcc_assert (DECL_P (decl));
276 if (TREE_CODE (decl) == TYPE_DECL)
278 tree type;
280 type = TREE_TYPE (decl);
281 if (type == error_mark_node)
282 return error_mark_node;
283 if (MAYBE_CLASS_TYPE_P (type)
284 && CLASSTYPE_TEMPLATE_INFO (type)
285 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
287 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
288 check_member_template (tmpl);
289 return tmpl;
291 return NULL_TREE;
293 else if (TREE_CODE (decl) == FIELD_DECL)
294 error ("data member %qD cannot be a member template", decl);
295 else if (DECL_TEMPLATE_INFO (decl))
297 if (!DECL_TEMPLATE_SPECIALIZATION (decl))
299 check_member_template (DECL_TI_TEMPLATE (decl));
300 return DECL_TI_TEMPLATE (decl);
302 else
303 return decl;
305 else
306 error ("invalid member template declaration %qD", decl);
308 return error_mark_node;
311 /* Create a template info node. */
313 tree
314 build_template_info (tree template_decl, tree template_args)
316 tree result = make_node (TEMPLATE_INFO);
317 TI_TEMPLATE (result) = template_decl;
318 TI_ARGS (result) = template_args;
319 return result;
322 /* Return the template info node corresponding to T, whatever T is. */
324 tree
325 get_template_info (const_tree t)
327 tree tinfo = NULL_TREE;
329 if (!t || t == error_mark_node)
330 return NULL;
332 if (TREE_CODE (t) == NAMESPACE_DECL
333 || TREE_CODE (t) == PARM_DECL)
334 return NULL;
336 if (DECL_P (t) && DECL_LANG_SPECIFIC (t))
337 tinfo = DECL_TEMPLATE_INFO (t);
339 if (!tinfo && DECL_IMPLICIT_TYPEDEF_P (t))
340 t = TREE_TYPE (t);
342 if (OVERLOAD_TYPE_P (t))
343 tinfo = TYPE_TEMPLATE_INFO (t);
344 else if (TREE_CODE (t) == BOUND_TEMPLATE_TEMPLATE_PARM)
345 tinfo = TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (t);
347 return tinfo;
350 /* Returns the template nesting level of the indicated class TYPE.
352 For example, in:
353 template <class T>
354 struct A
356 template <class U>
357 struct B {};
360 A<T>::B<U> has depth two, while A<T> has depth one.
361 Both A<T>::B<int> and A<int>::B<U> have depth one, if
362 they are instantiations, not specializations.
364 This function is guaranteed to return 0 if passed NULL_TREE so
365 that, for example, `template_class_depth (current_class_type)' is
366 always safe. */
369 template_class_depth (tree type)
371 int depth;
373 for (depth = 0; type && TREE_CODE (type) != NAMESPACE_DECL; )
375 tree tinfo = get_template_info (type);
377 if (tinfo && PRIMARY_TEMPLATE_P (TI_TEMPLATE (tinfo))
378 && uses_template_parms (INNERMOST_TEMPLATE_ARGS (TI_ARGS (tinfo))))
379 ++depth;
381 if (DECL_P (type))
382 type = CP_DECL_CONTEXT (type);
383 else if (LAMBDA_TYPE_P (type))
384 type = LAMBDA_TYPE_EXTRA_SCOPE (type);
385 else
386 type = CP_TYPE_CONTEXT (type);
389 return depth;
392 /* Subroutine of maybe_begin_member_template_processing.
393 Returns true if processing DECL needs us to push template parms. */
395 static bool
396 inline_needs_template_parms (tree decl, bool nsdmi)
398 if (!decl || (!nsdmi && ! DECL_TEMPLATE_INFO (decl)))
399 return false;
401 return (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (most_general_template (decl)))
402 > (processing_template_decl + DECL_TEMPLATE_SPECIALIZATION (decl)));
405 /* Subroutine of maybe_begin_member_template_processing.
406 Push the template parms in PARMS, starting from LEVELS steps into the
407 chain, and ending at the beginning, since template parms are listed
408 innermost first. */
410 static void
411 push_inline_template_parms_recursive (tree parmlist, int levels)
413 tree parms = TREE_VALUE (parmlist);
414 int i;
416 if (levels > 1)
417 push_inline_template_parms_recursive (TREE_CHAIN (parmlist), levels - 1);
419 ++processing_template_decl;
420 current_template_parms
421 = tree_cons (size_int (processing_template_decl),
422 parms, current_template_parms);
423 TEMPLATE_PARMS_FOR_INLINE (current_template_parms) = 1;
425 begin_scope (TREE_VEC_LENGTH (parms) ? sk_template_parms : sk_template_spec,
426 NULL);
427 for (i = 0; i < TREE_VEC_LENGTH (parms); ++i)
429 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
431 if (error_operand_p (parm))
432 continue;
434 gcc_assert (DECL_P (parm));
436 switch (TREE_CODE (parm))
438 case TYPE_DECL:
439 case TEMPLATE_DECL:
440 pushdecl (parm);
441 break;
443 case PARM_DECL:
444 /* Push the CONST_DECL. */
445 pushdecl (TEMPLATE_PARM_DECL (DECL_INITIAL (parm)));
446 break;
448 default:
449 gcc_unreachable ();
454 /* Restore the template parameter context for a member template, a
455 friend template defined in a class definition, or a non-template
456 member of template class. */
458 void
459 maybe_begin_member_template_processing (tree decl)
461 tree parms;
462 int levels = 0;
463 bool nsdmi = TREE_CODE (decl) == FIELD_DECL;
465 if (nsdmi)
467 tree ctx = DECL_CONTEXT (decl);
468 decl = (CLASSTYPE_TEMPLATE_INFO (ctx)
469 /* Disregard full specializations (c++/60999). */
470 && uses_template_parms (ctx)
471 ? CLASSTYPE_TI_TEMPLATE (ctx) : NULL_TREE);
474 if (inline_needs_template_parms (decl, nsdmi))
476 parms = DECL_TEMPLATE_PARMS (most_general_template (decl));
477 levels = TMPL_PARMS_DEPTH (parms) - processing_template_decl;
479 if (DECL_TEMPLATE_SPECIALIZATION (decl))
481 --levels;
482 parms = TREE_CHAIN (parms);
485 push_inline_template_parms_recursive (parms, levels);
488 /* Remember how many levels of template parameters we pushed so that
489 we can pop them later. */
490 inline_parm_levels.safe_push (levels);
493 /* Undo the effects of maybe_begin_member_template_processing. */
495 void
496 maybe_end_member_template_processing (void)
498 int i;
499 int last;
501 if (inline_parm_levels.length () == 0)
502 return;
504 last = inline_parm_levels.pop ();
505 for (i = 0; i < last; ++i)
507 --processing_template_decl;
508 current_template_parms = TREE_CHAIN (current_template_parms);
509 poplevel (0, 0, 0);
513 /* Return a new template argument vector which contains all of ARGS,
514 but has as its innermost set of arguments the EXTRA_ARGS. */
516 static tree
517 add_to_template_args (tree args, tree extra_args)
519 tree new_args;
520 int extra_depth;
521 int i;
522 int j;
524 if (args == NULL_TREE || extra_args == error_mark_node)
525 return extra_args;
527 extra_depth = TMPL_ARGS_DEPTH (extra_args);
528 new_args = make_tree_vec (TMPL_ARGS_DEPTH (args) + extra_depth);
530 for (i = 1; i <= TMPL_ARGS_DEPTH (args); ++i)
531 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (args, i));
533 for (j = 1; j <= extra_depth; ++j, ++i)
534 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (extra_args, j));
536 return new_args;
539 /* Like add_to_template_args, but only the outermost ARGS are added to
540 the EXTRA_ARGS. In particular, all but TMPL_ARGS_DEPTH
541 (EXTRA_ARGS) levels are added. This function is used to combine
542 the template arguments from a partial instantiation with the
543 template arguments used to attain the full instantiation from the
544 partial instantiation. */
546 static tree
547 add_outermost_template_args (tree args, tree extra_args)
549 tree new_args;
551 /* If there are more levels of EXTRA_ARGS than there are ARGS,
552 something very fishy is going on. */
553 gcc_assert (TMPL_ARGS_DEPTH (args) >= TMPL_ARGS_DEPTH (extra_args));
555 /* If *all* the new arguments will be the EXTRA_ARGS, just return
556 them. */
557 if (TMPL_ARGS_DEPTH (args) == TMPL_ARGS_DEPTH (extra_args))
558 return extra_args;
560 /* For the moment, we make ARGS look like it contains fewer levels. */
561 TREE_VEC_LENGTH (args) -= TMPL_ARGS_DEPTH (extra_args);
563 new_args = add_to_template_args (args, extra_args);
565 /* Now, we restore ARGS to its full dimensions. */
566 TREE_VEC_LENGTH (args) += TMPL_ARGS_DEPTH (extra_args);
568 return new_args;
571 /* Return the N levels of innermost template arguments from the ARGS. */
573 tree
574 get_innermost_template_args (tree args, int n)
576 tree new_args;
577 int extra_levels;
578 int i;
580 gcc_assert (n >= 0);
582 /* If N is 1, just return the innermost set of template arguments. */
583 if (n == 1)
584 return TMPL_ARGS_LEVEL (args, TMPL_ARGS_DEPTH (args));
586 /* If we're not removing anything, just return the arguments we were
587 given. */
588 extra_levels = TMPL_ARGS_DEPTH (args) - n;
589 gcc_assert (extra_levels >= 0);
590 if (extra_levels == 0)
591 return args;
593 /* Make a new set of arguments, not containing the outer arguments. */
594 new_args = make_tree_vec (n);
595 for (i = 1; i <= n; ++i)
596 SET_TMPL_ARGS_LEVEL (new_args, i,
597 TMPL_ARGS_LEVEL (args, i + extra_levels));
599 return new_args;
602 /* The inverse of get_innermost_template_args: Return all but the innermost
603 EXTRA_LEVELS levels of template arguments from the ARGS. */
605 static tree
606 strip_innermost_template_args (tree args, int extra_levels)
608 tree new_args;
609 int n = TMPL_ARGS_DEPTH (args) - extra_levels;
610 int i;
612 gcc_assert (n >= 0);
614 /* If N is 1, just return the outermost set of template arguments. */
615 if (n == 1)
616 return TMPL_ARGS_LEVEL (args, 1);
618 /* If we're not removing anything, just return the arguments we were
619 given. */
620 gcc_assert (extra_levels >= 0);
621 if (extra_levels == 0)
622 return args;
624 /* Make a new set of arguments, not containing the inner arguments. */
625 new_args = make_tree_vec (n);
626 for (i = 1; i <= n; ++i)
627 SET_TMPL_ARGS_LEVEL (new_args, i,
628 TMPL_ARGS_LEVEL (args, i));
630 return new_args;
633 /* We've got a template header coming up; push to a new level for storing
634 the parms. */
636 void
637 begin_template_parm_list (void)
639 /* We use a non-tag-transparent scope here, which causes pushtag to
640 put tags in this scope, rather than in the enclosing class or
641 namespace scope. This is the right thing, since we want
642 TEMPLATE_DECLS, and not TYPE_DECLS for template classes. For a
643 global template class, push_template_decl handles putting the
644 TEMPLATE_DECL into top-level scope. For a nested template class,
645 e.g.:
647 template <class T> struct S1 {
648 template <class T> struct S2 {};
651 pushtag contains special code to call pushdecl_with_scope on the
652 TEMPLATE_DECL for S2. */
653 begin_scope (sk_template_parms, NULL);
654 ++processing_template_decl;
655 ++processing_template_parmlist;
656 note_template_header (0);
658 /* Add a dummy parameter level while we process the parameter list. */
659 current_template_parms
660 = tree_cons (size_int (processing_template_decl),
661 make_tree_vec (0),
662 current_template_parms);
665 /* This routine is called when a specialization is declared. If it is
666 invalid to declare a specialization here, an error is reported and
667 false is returned, otherwise this routine will return true. */
669 static bool
670 check_specialization_scope (void)
672 tree scope = current_scope ();
674 /* [temp.expl.spec]
676 An explicit specialization shall be declared in the namespace of
677 which the template is a member, or, for member templates, in the
678 namespace of which the enclosing class or enclosing class
679 template is a member. An explicit specialization of a member
680 function, member class or static data member of a class template
681 shall be declared in the namespace of which the class template
682 is a member. */
683 if (scope && TREE_CODE (scope) != NAMESPACE_DECL)
685 error ("explicit specialization in non-namespace scope %qD", scope);
686 return false;
689 /* [temp.expl.spec]
691 In an explicit specialization declaration for a member of a class
692 template or a member template that appears in namespace scope,
693 the member template and some of its enclosing class templates may
694 remain unspecialized, except that the declaration shall not
695 explicitly specialize a class member template if its enclosing
696 class templates are not explicitly specialized as well. */
697 if (current_template_parms)
699 error ("enclosing class templates are not explicitly specialized");
700 return false;
703 return true;
706 /* We've just seen template <>. */
708 bool
709 begin_specialization (void)
711 begin_scope (sk_template_spec, NULL);
712 note_template_header (1);
713 return check_specialization_scope ();
716 /* Called at then end of processing a declaration preceded by
717 template<>. */
719 void
720 end_specialization (void)
722 finish_scope ();
723 reset_specialization ();
726 /* Any template <>'s that we have seen thus far are not referring to a
727 function specialization. */
729 void
730 reset_specialization (void)
732 processing_specialization = 0;
733 template_header_count = 0;
736 /* We've just seen a template header. If SPECIALIZATION is nonzero,
737 it was of the form template <>. */
739 static void
740 note_template_header (int specialization)
742 processing_specialization = specialization;
743 template_header_count++;
746 /* We're beginning an explicit instantiation. */
748 void
749 begin_explicit_instantiation (void)
751 gcc_assert (!processing_explicit_instantiation);
752 processing_explicit_instantiation = true;
756 void
757 end_explicit_instantiation (void)
759 gcc_assert (processing_explicit_instantiation);
760 processing_explicit_instantiation = false;
763 /* An explicit specialization or partial specialization of TMPL is being
764 declared. Check that the namespace in which the specialization is
765 occurring is permissible. Returns false iff it is invalid to
766 specialize TMPL in the current namespace. */
768 static bool
769 check_specialization_namespace (tree tmpl)
771 tree tpl_ns = decl_namespace_context (tmpl);
773 /* [tmpl.expl.spec]
775 An explicit specialization shall be declared in a namespace enclosing the
776 specialized template. An explicit specialization whose declarator-id is
777 not qualified shall be declared in the nearest enclosing namespace of the
778 template, or, if the namespace is inline (7.3.1), any namespace from its
779 enclosing namespace set. */
780 if (current_scope() != DECL_CONTEXT (tmpl)
781 && !at_namespace_scope_p ())
783 error ("specialization of %qD must appear at namespace scope", tmpl);
784 return false;
787 if (cxx_dialect < cxx11
788 ? is_associated_namespace (current_namespace, tpl_ns)
789 : is_ancestor (current_namespace, tpl_ns))
790 /* Same or enclosing namespace. */
791 return true;
792 else
794 permerror (input_location,
795 "specialization of %qD in different namespace", tmpl);
796 inform (DECL_SOURCE_LOCATION (tmpl),
797 " from definition of %q#D", tmpl);
798 return false;
802 /* SPEC is an explicit instantiation. Check that it is valid to
803 perform this explicit instantiation in the current namespace. */
805 static void
806 check_explicit_instantiation_namespace (tree spec)
808 tree ns;
810 /* DR 275: An explicit instantiation shall appear in an enclosing
811 namespace of its template. */
812 ns = decl_namespace_context (spec);
813 if (!is_ancestor (current_namespace, ns))
814 permerror (input_location, "explicit instantiation of %qD in namespace %qD "
815 "(which does not enclose namespace %qD)",
816 spec, current_namespace, ns);
819 // Returns the type of a template specialization only if that
820 // specialization needs to be defined. Otherwise (e.g., if the type has
821 // already been defined), the function returns NULL_TREE.
822 static tree
823 maybe_new_partial_specialization (tree type)
825 // An implicit instantiation of an incomplete type implies
826 // the definition of a new class template.
828 // template<typename T>
829 // struct S;
831 // template<typename T>
832 // struct S<T*>;
834 // Here, S<T*> is an implicit instantiation of S whose type
835 // is incomplete.
836 if (CLASSTYPE_IMPLICIT_INSTANTIATION (type) && !COMPLETE_TYPE_P (type))
837 return type;
839 // It can also be the case that TYPE is a completed specialization.
840 // Continuing the previous example, suppose we also declare:
842 // template<typename T>
843 // requires Integral<T>
844 // struct S<T*>;
846 // Here, S<T*> refers to the specialization S<T*> defined
847 // above. However, we need to differentiate definitions because
848 // we intend to define a new partial specialization. In this case,
849 // we rely on the fact that the constraints are different for
850 // this declaration than that above.
852 // Note that we also get here for injected class names and
853 // late-parsed template definitions. We must ensure that we
854 // do not create new type declarations for those cases.
855 if (flag_concepts && CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
857 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
858 tree args = CLASSTYPE_TI_ARGS (type);
860 // If there are no template parameters, this cannot be a new
861 // partial template specializtion?
862 if (!current_template_parms)
863 return NULL_TREE;
865 // The injected-class-name is not a new partial specialization.
866 if (DECL_SELF_REFERENCE_P (TYPE_NAME (type)))
867 return NULL_TREE;
869 // If the constraints are not the same as those of the primary
870 // then, we can probably create a new specialization.
871 tree type_constr = current_template_constraints ();
873 if (type == TREE_TYPE (tmpl))
875 tree main_constr = get_constraints (tmpl);
876 if (equivalent_constraints (type_constr, main_constr))
877 return NULL_TREE;
880 // Also, if there's a pre-existing specialization with matching
881 // constraints, then this also isn't new.
882 tree specs = DECL_TEMPLATE_SPECIALIZATIONS (tmpl);
883 while (specs)
885 tree spec_tmpl = TREE_VALUE (specs);
886 tree spec_args = TREE_PURPOSE (specs);
887 tree spec_constr = get_constraints (spec_tmpl);
888 if (comp_template_args (args, spec_args)
889 && equivalent_constraints (type_constr, spec_constr))
890 return NULL_TREE;
891 specs = TREE_CHAIN (specs);
894 // Create a new type node (and corresponding type decl)
895 // for the newly declared specialization.
896 tree t = make_class_type (TREE_CODE (type));
897 CLASSTYPE_DECLARED_CLASS (t) = CLASSTYPE_DECLARED_CLASS (type);
898 SET_TYPE_TEMPLATE_INFO (t, build_template_info (tmpl, args));
900 /* We only need a separate type node for storing the definition of this
901 partial specialization; uses of S<T*> are unconstrained, so all are
902 equivalent. So keep TYPE_CANONICAL the same. */
903 TYPE_CANONICAL (t) = TYPE_CANONICAL (type);
905 // Build the corresponding type decl.
906 tree d = create_implicit_typedef (DECL_NAME (tmpl), t);
907 DECL_CONTEXT (d) = TYPE_CONTEXT (t);
908 DECL_SOURCE_LOCATION (d) = input_location;
910 return t;
913 return NULL_TREE;
916 /* The TYPE is being declared. If it is a template type, that means it
917 is a partial specialization. Do appropriate error-checking. */
919 tree
920 maybe_process_partial_specialization (tree type)
922 tree context;
924 if (type == error_mark_node)
925 return error_mark_node;
927 /* A lambda that appears in specialization context is not itself a
928 specialization. */
929 if (CLASS_TYPE_P (type) && CLASSTYPE_LAMBDA_EXPR (type))
930 return type;
932 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
934 error ("name of class shadows template template parameter %qD",
935 TYPE_NAME (type));
936 return error_mark_node;
939 context = TYPE_CONTEXT (type);
941 if (TYPE_ALIAS_P (type))
943 tree tinfo = TYPE_ALIAS_TEMPLATE_INFO (type);
945 if (tinfo && DECL_ALIAS_TEMPLATE_P (TI_TEMPLATE (tinfo)))
946 error ("specialization of alias template %qD",
947 TI_TEMPLATE (tinfo));
948 else
949 error ("explicit specialization of non-template %qT", type);
950 return error_mark_node;
952 else if (CLASS_TYPE_P (type) && CLASSTYPE_USE_TEMPLATE (type))
954 /* This is for ordinary explicit specialization and partial
955 specialization of a template class such as:
957 template <> class C<int>;
961 template <class T> class C<T*>;
963 Make sure that `C<int>' and `C<T*>' are implicit instantiations. */
965 if (tree t = maybe_new_partial_specialization (type))
967 if (!check_specialization_namespace (CLASSTYPE_TI_TEMPLATE (t))
968 && !at_namespace_scope_p ())
969 return error_mark_node;
970 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (t);
971 DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (t)) = input_location;
972 if (processing_template_decl)
974 tree decl = push_template_decl (TYPE_MAIN_DECL (t));
975 if (decl == error_mark_node)
976 return error_mark_node;
977 return TREE_TYPE (decl);
980 else if (CLASSTYPE_TEMPLATE_INSTANTIATION (type))
981 error ("specialization of %qT after instantiation", type);
982 else if (errorcount && !processing_specialization
983 && CLASSTYPE_TEMPLATE_SPECIALIZATION (type)
984 && !uses_template_parms (CLASSTYPE_TI_ARGS (type)))
985 /* Trying to define a specialization either without a template<> header
986 or in an inappropriate place. We've already given an error, so just
987 bail now so we don't actually define the specialization. */
988 return error_mark_node;
990 else if (CLASS_TYPE_P (type)
991 && !CLASSTYPE_USE_TEMPLATE (type)
992 && CLASSTYPE_TEMPLATE_INFO (type)
993 && context && CLASS_TYPE_P (context)
994 && CLASSTYPE_TEMPLATE_INFO (context))
996 /* This is for an explicit specialization of member class
997 template according to [temp.expl.spec/18]:
999 template <> template <class U> class C<int>::D;
1001 The context `C<int>' must be an implicit instantiation.
1002 Otherwise this is just a member class template declared
1003 earlier like:
1005 template <> class C<int> { template <class U> class D; };
1006 template <> template <class U> class C<int>::D;
1008 In the first case, `C<int>::D' is a specialization of `C<T>::D'
1009 while in the second case, `C<int>::D' is a primary template
1010 and `C<T>::D' may not exist. */
1012 if (CLASSTYPE_IMPLICIT_INSTANTIATION (context)
1013 && !COMPLETE_TYPE_P (type))
1015 tree t;
1016 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
1018 if (current_namespace
1019 != decl_namespace_context (tmpl))
1021 permerror (input_location,
1022 "specializing %q#T in different namespace", type);
1023 permerror (DECL_SOURCE_LOCATION (tmpl),
1024 " from definition of %q#D", tmpl);
1027 /* Check for invalid specialization after instantiation:
1029 template <> template <> class C<int>::D<int>;
1030 template <> template <class U> class C<int>::D; */
1032 for (t = DECL_TEMPLATE_INSTANTIATIONS (tmpl);
1033 t; t = TREE_CHAIN (t))
1035 tree inst = TREE_VALUE (t);
1036 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (inst)
1037 || !COMPLETE_OR_OPEN_TYPE_P (inst))
1039 /* We already have a full specialization of this partial
1040 instantiation, or a full specialization has been
1041 looked up but not instantiated. Reassign it to the
1042 new member specialization template. */
1043 spec_entry elt;
1044 spec_entry *entry;
1046 elt.tmpl = most_general_template (tmpl);
1047 elt.args = CLASSTYPE_TI_ARGS (inst);
1048 elt.spec = inst;
1050 type_specializations->remove_elt (&elt);
1052 elt.tmpl = tmpl;
1053 elt.args = INNERMOST_TEMPLATE_ARGS (elt.args);
1055 spec_entry **slot
1056 = type_specializations->find_slot (&elt, INSERT);
1057 entry = ggc_alloc<spec_entry> ();
1058 *entry = elt;
1059 *slot = entry;
1061 else
1062 /* But if we've had an implicit instantiation, that's a
1063 problem ([temp.expl.spec]/6). */
1064 error ("specialization %qT after instantiation %qT",
1065 type, inst);
1068 /* Mark TYPE as a specialization. And as a result, we only
1069 have one level of template argument for the innermost
1070 class template. */
1071 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
1072 DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)) = input_location;
1073 CLASSTYPE_TI_ARGS (type)
1074 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type));
1077 else if (processing_specialization)
1079 /* Someday C++0x may allow for enum template specialization. */
1080 if (cxx_dialect > cxx98 && TREE_CODE (type) == ENUMERAL_TYPE
1081 && CLASS_TYPE_P (context) && CLASSTYPE_USE_TEMPLATE (context))
1082 pedwarn (input_location, OPT_Wpedantic, "template specialization "
1083 "of %qD not allowed by ISO C++", type);
1084 else
1086 error ("explicit specialization of non-template %qT", type);
1087 return error_mark_node;
1091 return type;
1094 /* Returns nonzero if we can optimize the retrieval of specializations
1095 for TMPL, a TEMPLATE_DECL. In particular, for such a template, we
1096 do not use DECL_TEMPLATE_SPECIALIZATIONS at all. */
1098 static inline bool
1099 optimize_specialization_lookup_p (tree tmpl)
1101 return (DECL_FUNCTION_TEMPLATE_P (tmpl)
1102 && DECL_CLASS_SCOPE_P (tmpl)
1103 /* DECL_CLASS_SCOPE_P holds of T::f even if T is a template
1104 parameter. */
1105 && CLASS_TYPE_P (DECL_CONTEXT (tmpl))
1106 /* The optimized lookup depends on the fact that the
1107 template arguments for the member function template apply
1108 purely to the containing class, which is not true if the
1109 containing class is an explicit or partial
1110 specialization. */
1111 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (tmpl))
1112 && !DECL_MEMBER_TEMPLATE_P (tmpl)
1113 && !DECL_CONV_FN_P (tmpl)
1114 /* It is possible to have a template that is not a member
1115 template and is not a member of a template class:
1117 template <typename T>
1118 struct S { friend A::f(); };
1120 Here, the friend function is a template, but the context does
1121 not have template information. The optimized lookup relies
1122 on having ARGS be the template arguments for both the class
1123 and the function template. */
1124 && !DECL_FRIEND_P (DECL_TEMPLATE_RESULT (tmpl)));
1127 /* Make sure ARGS doesn't use any inappropriate typedefs; we should have
1128 gone through coerce_template_parms by now. */
1130 static void
1131 verify_unstripped_args (tree args)
1133 ++processing_template_decl;
1134 if (!any_dependent_template_arguments_p (args))
1136 tree inner = INNERMOST_TEMPLATE_ARGS (args);
1137 for (int i = 0; i < TREE_VEC_LENGTH (inner); ++i)
1139 tree arg = TREE_VEC_ELT (inner, i);
1140 if (TREE_CODE (arg) == TEMPLATE_DECL)
1141 /* OK */;
1142 else if (TYPE_P (arg))
1143 gcc_assert (strip_typedefs (arg, NULL) == arg);
1144 else if (strip_typedefs (TREE_TYPE (arg), NULL) != TREE_TYPE (arg))
1145 /* Allow typedefs on the type of a non-type argument, since a
1146 parameter can have them. */;
1147 else
1148 gcc_assert (strip_typedefs_expr (arg, NULL) == arg);
1151 --processing_template_decl;
1154 /* Retrieve the specialization (in the sense of [temp.spec] - a
1155 specialization is either an instantiation or an explicit
1156 specialization) of TMPL for the given template ARGS. If there is
1157 no such specialization, return NULL_TREE. The ARGS are a vector of
1158 arguments, or a vector of vectors of arguments, in the case of
1159 templates with more than one level of parameters.
1161 If TMPL is a type template and CLASS_SPECIALIZATIONS_P is true,
1162 then we search for a partial specialization matching ARGS. This
1163 parameter is ignored if TMPL is not a class template.
1165 We can also look up a FIELD_DECL, if it is a lambda capture pack; the
1166 result is a NONTYPE_ARGUMENT_PACK. */
1168 static tree
1169 retrieve_specialization (tree tmpl, tree args, hashval_t hash)
1171 if (tmpl == NULL_TREE)
1172 return NULL_TREE;
1174 if (args == error_mark_node)
1175 return NULL_TREE;
1177 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL
1178 || TREE_CODE (tmpl) == FIELD_DECL);
1180 /* There should be as many levels of arguments as there are
1181 levels of parameters. */
1182 gcc_assert (TMPL_ARGS_DEPTH (args)
1183 == (TREE_CODE (tmpl) == TEMPLATE_DECL
1184 ? TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl))
1185 : template_class_depth (DECL_CONTEXT (tmpl))));
1187 if (flag_checking)
1188 verify_unstripped_args (args);
1190 if (optimize_specialization_lookup_p (tmpl))
1192 tree class_template;
1193 tree class_specialization;
1194 vec<tree, va_gc> *methods;
1195 tree fns;
1196 int idx;
1198 /* The template arguments actually apply to the containing
1199 class. Find the class specialization with those
1200 arguments. */
1201 class_template = CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (tmpl));
1202 class_specialization
1203 = retrieve_specialization (class_template, args, 0);
1204 if (!class_specialization)
1205 return NULL_TREE;
1206 /* Now, find the appropriate entry in the CLASSTYPE_METHOD_VEC
1207 for the specialization. */
1208 idx = class_method_index_for_fn (class_specialization, tmpl);
1209 if (idx == -1)
1210 return NULL_TREE;
1211 /* Iterate through the methods with the indicated name, looking
1212 for the one that has an instance of TMPL. */
1213 methods = CLASSTYPE_METHOD_VEC (class_specialization);
1214 for (fns = (*methods)[idx]; fns; fns = OVL_NEXT (fns))
1216 tree fn = OVL_CURRENT (fns);
1217 if (DECL_TEMPLATE_INFO (fn) && DECL_TI_TEMPLATE (fn) == tmpl
1218 /* using-declarations can add base methods to the method vec,
1219 and we don't want those here. */
1220 && DECL_CONTEXT (fn) == class_specialization)
1221 return fn;
1223 return NULL_TREE;
1225 else
1227 spec_entry *found;
1228 spec_entry elt;
1229 hash_table<spec_hasher> *specializations;
1231 elt.tmpl = tmpl;
1232 elt.args = args;
1233 elt.spec = NULL_TREE;
1235 if (DECL_CLASS_TEMPLATE_P (tmpl))
1236 specializations = type_specializations;
1237 else
1238 specializations = decl_specializations;
1240 if (hash == 0)
1241 hash = spec_hasher::hash (&elt);
1242 found = specializations->find_with_hash (&elt, hash);
1243 if (found)
1244 return found->spec;
1247 return NULL_TREE;
1250 /* Like retrieve_specialization, but for local declarations. */
1252 tree
1253 retrieve_local_specialization (tree tmpl)
1255 if (local_specializations == NULL)
1256 return NULL_TREE;
1258 tree *slot = local_specializations->get (tmpl);
1259 return slot ? *slot : NULL_TREE;
1262 /* Returns nonzero iff DECL is a specialization of TMPL. */
1265 is_specialization_of (tree decl, tree tmpl)
1267 tree t;
1269 if (TREE_CODE (decl) == FUNCTION_DECL)
1271 for (t = decl;
1272 t != NULL_TREE;
1273 t = DECL_TEMPLATE_INFO (t) ? DECL_TI_TEMPLATE (t) : NULL_TREE)
1274 if (t == tmpl)
1275 return 1;
1277 else
1279 gcc_assert (TREE_CODE (decl) == TYPE_DECL);
1281 for (t = TREE_TYPE (decl);
1282 t != NULL_TREE;
1283 t = CLASSTYPE_USE_TEMPLATE (t)
1284 ? TREE_TYPE (CLASSTYPE_TI_TEMPLATE (t)) : NULL_TREE)
1285 if (same_type_ignoring_top_level_qualifiers_p (t, TREE_TYPE (tmpl)))
1286 return 1;
1289 return 0;
1292 /* Returns nonzero iff DECL is a specialization of friend declaration
1293 FRIEND_DECL according to [temp.friend]. */
1295 bool
1296 is_specialization_of_friend (tree decl, tree friend_decl)
1298 bool need_template = true;
1299 int template_depth;
1301 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL
1302 || TREE_CODE (decl) == TYPE_DECL);
1304 /* For [temp.friend/6] when FRIEND_DECL is an ordinary member function
1305 of a template class, we want to check if DECL is a specialization
1306 if this. */
1307 if (TREE_CODE (friend_decl) == FUNCTION_DECL
1308 && DECL_TEMPLATE_INFO (friend_decl)
1309 && !DECL_USE_TEMPLATE (friend_decl))
1311 /* We want a TEMPLATE_DECL for `is_specialization_of'. */
1312 friend_decl = DECL_TI_TEMPLATE (friend_decl);
1313 need_template = false;
1315 else if (TREE_CODE (friend_decl) == TEMPLATE_DECL
1316 && !PRIMARY_TEMPLATE_P (friend_decl))
1317 need_template = false;
1319 /* There is nothing to do if this is not a template friend. */
1320 if (TREE_CODE (friend_decl) != TEMPLATE_DECL)
1321 return false;
1323 if (is_specialization_of (decl, friend_decl))
1324 return true;
1326 /* [temp.friend/6]
1327 A member of a class template may be declared to be a friend of a
1328 non-template class. In this case, the corresponding member of
1329 every specialization of the class template is a friend of the
1330 class granting friendship.
1332 For example, given a template friend declaration
1334 template <class T> friend void A<T>::f();
1336 the member function below is considered a friend
1338 template <> struct A<int> {
1339 void f();
1342 For this type of template friend, TEMPLATE_DEPTH below will be
1343 nonzero. To determine if DECL is a friend of FRIEND, we first
1344 check if the enclosing class is a specialization of another. */
1346 template_depth = template_class_depth (CP_DECL_CONTEXT (friend_decl));
1347 if (template_depth
1348 && DECL_CLASS_SCOPE_P (decl)
1349 && is_specialization_of (TYPE_NAME (DECL_CONTEXT (decl)),
1350 CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (friend_decl))))
1352 /* Next, we check the members themselves. In order to handle
1353 a few tricky cases, such as when FRIEND_DECL's are
1355 template <class T> friend void A<T>::g(T t);
1356 template <class T> template <T t> friend void A<T>::h();
1358 and DECL's are
1360 void A<int>::g(int);
1361 template <int> void A<int>::h();
1363 we need to figure out ARGS, the template arguments from
1364 the context of DECL. This is required for template substitution
1365 of `T' in the function parameter of `g' and template parameter
1366 of `h' in the above examples. Here ARGS corresponds to `int'. */
1368 tree context = DECL_CONTEXT (decl);
1369 tree args = NULL_TREE;
1370 int current_depth = 0;
1372 while (current_depth < template_depth)
1374 if (CLASSTYPE_TEMPLATE_INFO (context))
1376 if (current_depth == 0)
1377 args = TYPE_TI_ARGS (context);
1378 else
1379 args = add_to_template_args (TYPE_TI_ARGS (context), args);
1380 current_depth++;
1382 context = TYPE_CONTEXT (context);
1385 if (TREE_CODE (decl) == FUNCTION_DECL)
1387 bool is_template;
1388 tree friend_type;
1389 tree decl_type;
1390 tree friend_args_type;
1391 tree decl_args_type;
1393 /* Make sure that both DECL and FRIEND_DECL are templates or
1394 non-templates. */
1395 is_template = DECL_TEMPLATE_INFO (decl)
1396 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl));
1397 if (need_template ^ is_template)
1398 return false;
1399 else if (is_template)
1401 /* If both are templates, check template parameter list. */
1402 tree friend_parms
1403 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_decl),
1404 args, tf_none);
1405 if (!comp_template_parms
1406 (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (decl)),
1407 friend_parms))
1408 return false;
1410 decl_type = TREE_TYPE (DECL_TI_TEMPLATE (decl));
1412 else
1413 decl_type = TREE_TYPE (decl);
1415 friend_type = tsubst_function_type (TREE_TYPE (friend_decl), args,
1416 tf_none, NULL_TREE);
1417 if (friend_type == error_mark_node)
1418 return false;
1420 /* Check if return types match. */
1421 if (!same_type_p (TREE_TYPE (decl_type), TREE_TYPE (friend_type)))
1422 return false;
1424 /* Check if function parameter types match, ignoring the
1425 `this' parameter. */
1426 friend_args_type = TYPE_ARG_TYPES (friend_type);
1427 decl_args_type = TYPE_ARG_TYPES (decl_type);
1428 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (friend_decl))
1429 friend_args_type = TREE_CHAIN (friend_args_type);
1430 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1431 decl_args_type = TREE_CHAIN (decl_args_type);
1433 return compparms (decl_args_type, friend_args_type);
1435 else
1437 /* DECL is a TYPE_DECL */
1438 bool is_template;
1439 tree decl_type = TREE_TYPE (decl);
1441 /* Make sure that both DECL and FRIEND_DECL are templates or
1442 non-templates. */
1443 is_template
1444 = CLASSTYPE_TEMPLATE_INFO (decl_type)
1445 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (decl_type));
1447 if (need_template ^ is_template)
1448 return false;
1449 else if (is_template)
1451 tree friend_parms;
1452 /* If both are templates, check the name of the two
1453 TEMPLATE_DECL's first because is_friend didn't. */
1454 if (DECL_NAME (CLASSTYPE_TI_TEMPLATE (decl_type))
1455 != DECL_NAME (friend_decl))
1456 return false;
1458 /* Now check template parameter list. */
1459 friend_parms
1460 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_decl),
1461 args, tf_none);
1462 return comp_template_parms
1463 (DECL_TEMPLATE_PARMS (CLASSTYPE_TI_TEMPLATE (decl_type)),
1464 friend_parms);
1466 else
1467 return (DECL_NAME (decl)
1468 == DECL_NAME (friend_decl));
1471 return false;
1474 /* Register the specialization SPEC as a specialization of TMPL with
1475 the indicated ARGS. IS_FRIEND indicates whether the specialization
1476 is actually just a friend declaration. Returns SPEC, or an
1477 equivalent prior declaration, if available.
1479 We also store instantiations of field packs in the hash table, even
1480 though they are not themselves templates, to make lookup easier. */
1482 static tree
1483 register_specialization (tree spec, tree tmpl, tree args, bool is_friend,
1484 hashval_t hash)
1486 tree fn;
1487 spec_entry **slot = NULL;
1488 spec_entry elt;
1490 gcc_assert ((TREE_CODE (tmpl) == TEMPLATE_DECL && DECL_P (spec))
1491 || (TREE_CODE (tmpl) == FIELD_DECL
1492 && TREE_CODE (spec) == NONTYPE_ARGUMENT_PACK));
1494 if (TREE_CODE (spec) == FUNCTION_DECL
1495 && uses_template_parms (DECL_TI_ARGS (spec)))
1496 /* This is the FUNCTION_DECL for a partial instantiation. Don't
1497 register it; we want the corresponding TEMPLATE_DECL instead.
1498 We use `uses_template_parms (DECL_TI_ARGS (spec))' rather than
1499 the more obvious `uses_template_parms (spec)' to avoid problems
1500 with default function arguments. In particular, given
1501 something like this:
1503 template <class T> void f(T t1, T t = T())
1505 the default argument expression is not substituted for in an
1506 instantiation unless and until it is actually needed. */
1507 return spec;
1509 if (optimize_specialization_lookup_p (tmpl))
1510 /* We don't put these specializations in the hash table, but we might
1511 want to give an error about a mismatch. */
1512 fn = retrieve_specialization (tmpl, args, 0);
1513 else
1515 elt.tmpl = tmpl;
1516 elt.args = args;
1517 elt.spec = spec;
1519 if (hash == 0)
1520 hash = spec_hasher::hash (&elt);
1522 slot =
1523 decl_specializations->find_slot_with_hash (&elt, hash, INSERT);
1524 if (*slot)
1525 fn = ((spec_entry *) *slot)->spec;
1526 else
1527 fn = NULL_TREE;
1530 /* We can sometimes try to re-register a specialization that we've
1531 already got. In particular, regenerate_decl_from_template calls
1532 duplicate_decls which will update the specialization list. But,
1533 we'll still get called again here anyhow. It's more convenient
1534 to simply allow this than to try to prevent it. */
1535 if (fn == spec)
1536 return spec;
1537 else if (fn && DECL_TEMPLATE_SPECIALIZATION (spec))
1539 if (DECL_TEMPLATE_INSTANTIATION (fn))
1541 if (DECL_ODR_USED (fn)
1542 || DECL_EXPLICIT_INSTANTIATION (fn))
1544 error ("specialization of %qD after instantiation",
1545 fn);
1546 return error_mark_node;
1548 else
1550 tree clone;
1551 /* This situation should occur only if the first
1552 specialization is an implicit instantiation, the
1553 second is an explicit specialization, and the
1554 implicit instantiation has not yet been used. That
1555 situation can occur if we have implicitly
1556 instantiated a member function and then specialized
1557 it later.
1559 We can also wind up here if a friend declaration that
1560 looked like an instantiation turns out to be a
1561 specialization:
1563 template <class T> void foo(T);
1564 class S { friend void foo<>(int) };
1565 template <> void foo(int);
1567 We transform the existing DECL in place so that any
1568 pointers to it become pointers to the updated
1569 declaration.
1571 If there was a definition for the template, but not
1572 for the specialization, we want this to look as if
1573 there were no definition, and vice versa. */
1574 DECL_INITIAL (fn) = NULL_TREE;
1575 duplicate_decls (spec, fn, is_friend);
1576 /* The call to duplicate_decls will have applied
1577 [temp.expl.spec]:
1579 An explicit specialization of a function template
1580 is inline only if it is explicitly declared to be,
1581 and independently of whether its function template
1584 to the primary function; now copy the inline bits to
1585 the various clones. */
1586 FOR_EACH_CLONE (clone, fn)
1588 DECL_DECLARED_INLINE_P (clone)
1589 = DECL_DECLARED_INLINE_P (fn);
1590 DECL_SOURCE_LOCATION (clone)
1591 = DECL_SOURCE_LOCATION (fn);
1592 DECL_DELETED_FN (clone)
1593 = DECL_DELETED_FN (fn);
1595 check_specialization_namespace (tmpl);
1597 return fn;
1600 else if (DECL_TEMPLATE_SPECIALIZATION (fn))
1602 if (!duplicate_decls (spec, fn, is_friend) && DECL_INITIAL (spec))
1603 /* Dup decl failed, but this is a new definition. Set the
1604 line number so any errors match this new
1605 definition. */
1606 DECL_SOURCE_LOCATION (fn) = DECL_SOURCE_LOCATION (spec);
1608 return fn;
1611 else if (fn)
1612 return duplicate_decls (spec, fn, is_friend);
1614 /* A specialization must be declared in the same namespace as the
1615 template it is specializing. */
1616 if (DECL_P (spec) && DECL_TEMPLATE_SPECIALIZATION (spec)
1617 && !check_specialization_namespace (tmpl))
1618 DECL_CONTEXT (spec) = DECL_CONTEXT (tmpl);
1620 if (slot != NULL /* !optimize_specialization_lookup_p (tmpl) */)
1622 spec_entry *entry = ggc_alloc<spec_entry> ();
1623 gcc_assert (tmpl && args && spec);
1624 *entry = elt;
1625 *slot = entry;
1626 if ((TREE_CODE (spec) == FUNCTION_DECL && DECL_NAMESPACE_SCOPE_P (spec)
1627 && PRIMARY_TEMPLATE_P (tmpl)
1628 && DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (tmpl)) == NULL_TREE)
1629 || variable_template_p (tmpl))
1630 /* If TMPL is a forward declaration of a template function, keep a list
1631 of all specializations in case we need to reassign them to a friend
1632 template later in tsubst_friend_function.
1634 Also keep a list of all variable template instantiations so that
1635 process_partial_specialization can check whether a later partial
1636 specialization would have used it. */
1637 DECL_TEMPLATE_INSTANTIATIONS (tmpl)
1638 = tree_cons (args, spec, DECL_TEMPLATE_INSTANTIATIONS (tmpl));
1641 return spec;
1644 /* Returns true iff two spec_entry nodes are equivalent. */
1646 int comparing_specializations;
1648 bool
1649 spec_hasher::equal (spec_entry *e1, spec_entry *e2)
1651 int equal;
1653 ++comparing_specializations;
1654 equal = (e1->tmpl == e2->tmpl
1655 && comp_template_args (e1->args, e2->args));
1656 if (equal && flag_concepts
1657 /* tmpl could be a FIELD_DECL for a capture pack. */
1658 && TREE_CODE (e1->tmpl) == TEMPLATE_DECL
1659 && VAR_P (DECL_TEMPLATE_RESULT (e1->tmpl))
1660 && uses_template_parms (e1->args))
1662 /* Partial specializations of a variable template can be distinguished by
1663 constraints. */
1664 tree c1 = e1->spec ? get_constraints (e1->spec) : NULL_TREE;
1665 tree c2 = e2->spec ? get_constraints (e2->spec) : NULL_TREE;
1666 equal = equivalent_constraints (c1, c2);
1668 --comparing_specializations;
1670 return equal;
1673 /* Returns a hash for a template TMPL and template arguments ARGS. */
1675 static hashval_t
1676 hash_tmpl_and_args (tree tmpl, tree args)
1678 hashval_t val = iterative_hash_object (DECL_UID (tmpl), 0);
1679 return iterative_hash_template_arg (args, val);
1682 /* Returns a hash for a spec_entry node based on the TMPL and ARGS members,
1683 ignoring SPEC. */
1685 hashval_t
1686 spec_hasher::hash (spec_entry *e)
1688 return hash_tmpl_and_args (e->tmpl, e->args);
1691 /* Recursively calculate a hash value for a template argument ARG, for use
1692 in the hash tables of template specializations. */
1694 hashval_t
1695 iterative_hash_template_arg (tree arg, hashval_t val)
1697 unsigned HOST_WIDE_INT i;
1698 enum tree_code code;
1699 char tclass;
1701 if (arg == NULL_TREE)
1702 return iterative_hash_object (arg, val);
1704 if (!TYPE_P (arg))
1705 STRIP_NOPS (arg);
1707 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
1708 gcc_unreachable ();
1710 code = TREE_CODE (arg);
1711 tclass = TREE_CODE_CLASS (code);
1713 val = iterative_hash_object (code, val);
1715 switch (code)
1717 case ERROR_MARK:
1718 return val;
1720 case IDENTIFIER_NODE:
1721 return iterative_hash_object (IDENTIFIER_HASH_VALUE (arg), val);
1723 case TREE_VEC:
1725 int i, len = TREE_VEC_LENGTH (arg);
1726 for (i = 0; i < len; ++i)
1727 val = iterative_hash_template_arg (TREE_VEC_ELT (arg, i), val);
1728 return val;
1731 case TYPE_PACK_EXPANSION:
1732 case EXPR_PACK_EXPANSION:
1733 val = iterative_hash_template_arg (PACK_EXPANSION_PATTERN (arg), val);
1734 return iterative_hash_template_arg (PACK_EXPANSION_EXTRA_ARGS (arg), val);
1736 case TYPE_ARGUMENT_PACK:
1737 case NONTYPE_ARGUMENT_PACK:
1738 return iterative_hash_template_arg (ARGUMENT_PACK_ARGS (arg), val);
1740 case TREE_LIST:
1741 for (; arg; arg = TREE_CHAIN (arg))
1742 val = iterative_hash_template_arg (TREE_VALUE (arg), val);
1743 return val;
1745 case OVERLOAD:
1746 for (; arg; arg = OVL_NEXT (arg))
1747 val = iterative_hash_template_arg (OVL_CURRENT (arg), val);
1748 return val;
1750 case CONSTRUCTOR:
1752 tree field, value;
1753 iterative_hash_template_arg (TREE_TYPE (arg), val);
1754 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (arg), i, field, value)
1756 val = iterative_hash_template_arg (field, val);
1757 val = iterative_hash_template_arg (value, val);
1759 return val;
1762 case PARM_DECL:
1763 if (!DECL_ARTIFICIAL (arg))
1765 val = iterative_hash_object (DECL_PARM_INDEX (arg), val);
1766 val = iterative_hash_object (DECL_PARM_LEVEL (arg), val);
1768 return iterative_hash_template_arg (TREE_TYPE (arg), val);
1770 case TARGET_EXPR:
1771 return iterative_hash_template_arg (TARGET_EXPR_INITIAL (arg), val);
1773 case PTRMEM_CST:
1774 val = iterative_hash_template_arg (PTRMEM_CST_CLASS (arg), val);
1775 return iterative_hash_template_arg (PTRMEM_CST_MEMBER (arg), val);
1777 case TEMPLATE_PARM_INDEX:
1778 val = iterative_hash_template_arg
1779 (TREE_TYPE (TEMPLATE_PARM_DECL (arg)), val);
1780 val = iterative_hash_object (TEMPLATE_PARM_LEVEL (arg), val);
1781 return iterative_hash_object (TEMPLATE_PARM_IDX (arg), val);
1783 case TRAIT_EXPR:
1784 val = iterative_hash_object (TRAIT_EXPR_KIND (arg), val);
1785 val = iterative_hash_template_arg (TRAIT_EXPR_TYPE1 (arg), val);
1786 return iterative_hash_template_arg (TRAIT_EXPR_TYPE2 (arg), val);
1788 case BASELINK:
1789 val = iterative_hash_template_arg (BINFO_TYPE (BASELINK_BINFO (arg)),
1790 val);
1791 return iterative_hash_template_arg (DECL_NAME (get_first_fn (arg)),
1792 val);
1794 case MODOP_EXPR:
1795 val = iterative_hash_template_arg (TREE_OPERAND (arg, 0), val);
1796 code = TREE_CODE (TREE_OPERAND (arg, 1));
1797 val = iterative_hash_object (code, val);
1798 return iterative_hash_template_arg (TREE_OPERAND (arg, 2), val);
1800 case LAMBDA_EXPR:
1801 /* A lambda can't appear in a template arg, but don't crash on
1802 erroneous input. */
1803 gcc_assert (seen_error ());
1804 return val;
1806 case CAST_EXPR:
1807 case IMPLICIT_CONV_EXPR:
1808 case STATIC_CAST_EXPR:
1809 case REINTERPRET_CAST_EXPR:
1810 case CONST_CAST_EXPR:
1811 case DYNAMIC_CAST_EXPR:
1812 case NEW_EXPR:
1813 val = iterative_hash_template_arg (TREE_TYPE (arg), val);
1814 /* Now hash operands as usual. */
1815 break;
1817 default:
1818 break;
1821 switch (tclass)
1823 case tcc_type:
1824 if (alias_template_specialization_p (arg))
1826 // We want an alias specialization that survived strip_typedefs
1827 // to hash differently from its TYPE_CANONICAL, to avoid hash
1828 // collisions that compare as different in template_args_equal.
1829 // These could be dependent specializations that strip_typedefs
1830 // left alone, or untouched specializations because
1831 // coerce_template_parms returns the unconverted template
1832 // arguments if it sees incomplete argument packs.
1833 tree ti = TYPE_ALIAS_TEMPLATE_INFO (arg);
1834 return hash_tmpl_and_args (TI_TEMPLATE (ti), TI_ARGS (ti));
1836 if (TYPE_CANONICAL (arg))
1837 return iterative_hash_object (TYPE_HASH (TYPE_CANONICAL (arg)),
1838 val);
1839 else if (TREE_CODE (arg) == DECLTYPE_TYPE)
1840 return iterative_hash_template_arg (DECLTYPE_TYPE_EXPR (arg), val);
1841 /* Otherwise just compare the types during lookup. */
1842 return val;
1844 case tcc_declaration:
1845 case tcc_constant:
1846 return iterative_hash_expr (arg, val);
1848 default:
1849 gcc_assert (IS_EXPR_CODE_CLASS (tclass));
1851 unsigned n = cp_tree_operand_length (arg);
1852 for (i = 0; i < n; ++i)
1853 val = iterative_hash_template_arg (TREE_OPERAND (arg, i), val);
1854 return val;
1857 gcc_unreachable ();
1858 return 0;
1861 /* Unregister the specialization SPEC as a specialization of TMPL.
1862 Replace it with NEW_SPEC, if NEW_SPEC is non-NULL. Returns true
1863 if the SPEC was listed as a specialization of TMPL.
1865 Note that SPEC has been ggc_freed, so we can't look inside it. */
1867 bool
1868 reregister_specialization (tree spec, tree tinfo, tree new_spec)
1870 spec_entry *entry;
1871 spec_entry elt;
1873 elt.tmpl = most_general_template (TI_TEMPLATE (tinfo));
1874 elt.args = TI_ARGS (tinfo);
1875 elt.spec = NULL_TREE;
1877 entry = decl_specializations->find (&elt);
1878 if (entry != NULL)
1880 gcc_assert (entry->spec == spec || entry->spec == new_spec);
1881 gcc_assert (new_spec != NULL_TREE);
1882 entry->spec = new_spec;
1883 return 1;
1886 return 0;
1889 /* Like register_specialization, but for local declarations. We are
1890 registering SPEC, an instantiation of TMPL. */
1892 void
1893 register_local_specialization (tree spec, tree tmpl)
1895 local_specializations->put (tmpl, spec);
1898 /* TYPE is a class type. Returns true if TYPE is an explicitly
1899 specialized class. */
1901 bool
1902 explicit_class_specialization_p (tree type)
1904 if (!CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
1905 return false;
1906 return !uses_template_parms (CLASSTYPE_TI_ARGS (type));
1909 /* Print the list of functions at FNS, going through all the overloads
1910 for each element of the list. Alternatively, FNS can not be a
1911 TREE_LIST, in which case it will be printed together with all the
1912 overloads.
1914 MORE and *STR should respectively be FALSE and NULL when the function
1915 is called from the outside. They are used internally on recursive
1916 calls. print_candidates manages the two parameters and leaves NULL
1917 in *STR when it ends. */
1919 static void
1920 print_candidates_1 (tree fns, bool more, const char **str)
1922 tree fn, fn2;
1923 char *spaces = NULL;
1925 for (fn = fns; fn; fn = OVL_NEXT (fn))
1926 if (TREE_CODE (fn) == TREE_LIST)
1928 for (fn2 = fn; fn2 != NULL_TREE; fn2 = TREE_CHAIN (fn2))
1929 print_candidates_1 (TREE_VALUE (fn2),
1930 TREE_CHAIN (fn2) || more, str);
1932 else
1934 tree cand = OVL_CURRENT (fn);
1935 if (!*str)
1937 /* Pick the prefix string. */
1938 if (!more && !OVL_NEXT (fns))
1940 inform (DECL_SOURCE_LOCATION (cand),
1941 "candidate is: %#D", cand);
1942 continue;
1945 *str = _("candidates are:");
1946 spaces = get_spaces (*str);
1948 inform (DECL_SOURCE_LOCATION (cand), "%s %#D", *str, cand);
1949 *str = spaces ? spaces : *str;
1952 if (!more)
1954 free (spaces);
1955 *str = NULL;
1959 /* Print the list of candidate FNS in an error message. FNS can also
1960 be a TREE_LIST of non-functions in the case of an ambiguous lookup. */
1962 void
1963 print_candidates (tree fns)
1965 const char *str = NULL;
1966 print_candidates_1 (fns, false, &str);
1967 gcc_assert (str == NULL);
1970 /* Get a (possibly) constrained template declaration for the
1971 purpose of ordering candidates. */
1972 static tree
1973 get_template_for_ordering (tree list)
1975 gcc_assert (TREE_CODE (list) == TREE_LIST);
1976 tree f = TREE_VALUE (list);
1977 if (tree ti = DECL_TEMPLATE_INFO (f))
1978 return TI_TEMPLATE (ti);
1979 return f;
1982 /* Among candidates having the same signature, return the
1983 most constrained or NULL_TREE if there is no best candidate.
1984 If the signatures of candidates vary (e.g., template
1985 specialization vs. member function), then there can be no
1986 most constrained.
1988 Note that we don't compare constraints on the functions
1989 themselves, but rather those of their templates. */
1990 static tree
1991 most_constrained_function (tree candidates)
1993 // Try to find the best candidate in a first pass.
1994 tree champ = candidates;
1995 for (tree c = TREE_CHAIN (champ); c; c = TREE_CHAIN (c))
1997 int winner = more_constrained (get_template_for_ordering (champ),
1998 get_template_for_ordering (c));
1999 if (winner == -1)
2000 champ = c; // The candidate is more constrained
2001 else if (winner == 0)
2002 return NULL_TREE; // Neither is more constrained
2005 // Verify that the champ is better than previous candidates.
2006 for (tree c = candidates; c != champ; c = TREE_CHAIN (c)) {
2007 if (!more_constrained (get_template_for_ordering (champ),
2008 get_template_for_ordering (c)))
2009 return NULL_TREE;
2012 return champ;
2016 /* Returns the template (one of the functions given by TEMPLATE_ID)
2017 which can be specialized to match the indicated DECL with the
2018 explicit template args given in TEMPLATE_ID. The DECL may be
2019 NULL_TREE if none is available. In that case, the functions in
2020 TEMPLATE_ID are non-members.
2022 If NEED_MEMBER_TEMPLATE is nonzero the function is known to be a
2023 specialization of a member template.
2025 The TEMPLATE_COUNT is the number of references to qualifying
2026 template classes that appeared in the name of the function. See
2027 check_explicit_specialization for a more accurate description.
2029 TSK indicates what kind of template declaration (if any) is being
2030 declared. TSK_TEMPLATE indicates that the declaration given by
2031 DECL, though a FUNCTION_DECL, has template parameters, and is
2032 therefore a template function.
2034 The template args (those explicitly specified and those deduced)
2035 are output in a newly created vector *TARGS_OUT.
2037 If it is impossible to determine the result, an error message is
2038 issued. The error_mark_node is returned to indicate failure. */
2040 static tree
2041 determine_specialization (tree template_id,
2042 tree decl,
2043 tree* targs_out,
2044 int need_member_template,
2045 int template_count,
2046 tmpl_spec_kind tsk)
2048 tree fns;
2049 tree targs;
2050 tree explicit_targs;
2051 tree candidates = NULL_TREE;
2053 /* A TREE_LIST of templates of which DECL may be a specialization.
2054 The TREE_VALUE of each node is a TEMPLATE_DECL. The
2055 corresponding TREE_PURPOSE is the set of template arguments that,
2056 when used to instantiate the template, would produce a function
2057 with the signature of DECL. */
2058 tree templates = NULL_TREE;
2059 int header_count;
2060 cp_binding_level *b;
2062 *targs_out = NULL_TREE;
2064 if (template_id == error_mark_node || decl == error_mark_node)
2065 return error_mark_node;
2067 /* We shouldn't be specializing a member template of an
2068 unspecialized class template; we already gave an error in
2069 check_specialization_scope, now avoid crashing. */
2070 if (template_count && DECL_CLASS_SCOPE_P (decl)
2071 && template_class_depth (DECL_CONTEXT (decl)) > 0)
2073 gcc_assert (errorcount);
2074 return error_mark_node;
2077 fns = TREE_OPERAND (template_id, 0);
2078 explicit_targs = TREE_OPERAND (template_id, 1);
2080 if (fns == error_mark_node)
2081 return error_mark_node;
2083 /* Check for baselinks. */
2084 if (BASELINK_P (fns))
2085 fns = BASELINK_FUNCTIONS (fns);
2087 if (TREE_CODE (decl) == FUNCTION_DECL && !is_overloaded_fn (fns))
2089 error ("%qD is not a function template", fns);
2090 return error_mark_node;
2092 else if (VAR_P (decl) && !variable_template_p (fns))
2094 error ("%qD is not a variable template", fns);
2095 return error_mark_node;
2098 /* Count the number of template headers specified for this
2099 specialization. */
2100 header_count = 0;
2101 for (b = current_binding_level;
2102 b->kind == sk_template_parms;
2103 b = b->level_chain)
2104 ++header_count;
2106 tree orig_fns = fns;
2108 if (variable_template_p (fns))
2110 tree parms = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (fns));
2111 targs = coerce_template_parms (parms, explicit_targs, fns,
2112 tf_warning_or_error,
2113 /*req_all*/true, /*use_defarg*/true);
2114 if (targs != error_mark_node)
2115 templates = tree_cons (targs, fns, templates);
2117 else for (; fns; fns = OVL_NEXT (fns))
2119 tree fn = OVL_CURRENT (fns);
2121 if (TREE_CODE (fn) == TEMPLATE_DECL)
2123 tree decl_arg_types;
2124 tree fn_arg_types;
2125 tree insttype;
2127 /* In case of explicit specialization, we need to check if
2128 the number of template headers appearing in the specialization
2129 is correct. This is usually done in check_explicit_specialization,
2130 but the check done there cannot be exhaustive when specializing
2131 member functions. Consider the following code:
2133 template <> void A<int>::f(int);
2134 template <> template <> void A<int>::f(int);
2136 Assuming that A<int> is not itself an explicit specialization
2137 already, the first line specializes "f" which is a non-template
2138 member function, whilst the second line specializes "f" which
2139 is a template member function. So both lines are syntactically
2140 correct, and check_explicit_specialization does not reject
2141 them.
2143 Here, we can do better, as we are matching the specialization
2144 against the declarations. We count the number of template
2145 headers, and we check if they match TEMPLATE_COUNT + 1
2146 (TEMPLATE_COUNT is the number of qualifying template classes,
2147 plus there must be another header for the member template
2148 itself).
2150 Notice that if header_count is zero, this is not a
2151 specialization but rather a template instantiation, so there
2152 is no check we can perform here. */
2153 if (header_count && header_count != template_count + 1)
2154 continue;
2156 /* Check that the number of template arguments at the
2157 innermost level for DECL is the same as for FN. */
2158 if (current_binding_level->kind == sk_template_parms
2159 && !current_binding_level->explicit_spec_p
2160 && (TREE_VEC_LENGTH (DECL_INNERMOST_TEMPLATE_PARMS (fn))
2161 != TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS
2162 (current_template_parms))))
2163 continue;
2165 /* DECL might be a specialization of FN. */
2166 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
2167 fn_arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn));
2169 /* For a non-static member function, we need to make sure
2170 that the const qualification is the same. Since
2171 get_bindings does not try to merge the "this" parameter,
2172 we must do the comparison explicitly. */
2173 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
2174 && !same_type_p (TREE_VALUE (fn_arg_types),
2175 TREE_VALUE (decl_arg_types)))
2176 continue;
2178 /* Skip the "this" parameter and, for constructors of
2179 classes with virtual bases, the VTT parameter. A
2180 full specialization of a constructor will have a VTT
2181 parameter, but a template never will. */
2182 decl_arg_types
2183 = skip_artificial_parms_for (decl, decl_arg_types);
2184 fn_arg_types
2185 = skip_artificial_parms_for (fn, fn_arg_types);
2187 /* Function templates cannot be specializations; there are
2188 no partial specializations of functions. Therefore, if
2189 the type of DECL does not match FN, there is no
2190 match.
2192 Note that it should never be the case that we have both
2193 candidates added here, and for regular member functions
2194 below. */
2195 if (tsk == tsk_template)
2197 if (compparms (fn_arg_types, decl_arg_types))
2198 candidates = tree_cons (NULL_TREE, fn, candidates);
2199 continue;
2202 /* See whether this function might be a specialization of this
2203 template. Suppress access control because we might be trying
2204 to make this specialization a friend, and we have already done
2205 access control for the declaration of the specialization. */
2206 push_deferring_access_checks (dk_no_check);
2207 targs = get_bindings (fn, decl, explicit_targs, /*check_ret=*/true);
2208 pop_deferring_access_checks ();
2210 if (!targs)
2211 /* We cannot deduce template arguments that when used to
2212 specialize TMPL will produce DECL. */
2213 continue;
2215 /* Remove, from the set of candidates, all those functions
2216 whose constraints are not satisfied. */
2217 if (flag_concepts && !constraints_satisfied_p (fn, targs))
2218 continue;
2220 // Then, try to form the new function type.
2221 insttype = tsubst (TREE_TYPE (fn), targs, tf_fndecl_type, NULL_TREE);
2222 if (insttype == error_mark_node)
2223 continue;
2224 fn_arg_types
2225 = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (insttype));
2226 if (!compparms (fn_arg_types, decl_arg_types))
2227 continue;
2229 /* Save this template, and the arguments deduced. */
2230 templates = tree_cons (targs, fn, templates);
2232 else if (need_member_template)
2233 /* FN is an ordinary member function, and we need a
2234 specialization of a member template. */
2236 else if (TREE_CODE (fn) != FUNCTION_DECL)
2237 /* We can get IDENTIFIER_NODEs here in certain erroneous
2238 cases. */
2240 else if (!DECL_FUNCTION_MEMBER_P (fn))
2241 /* This is just an ordinary non-member function. Nothing can
2242 be a specialization of that. */
2244 else if (DECL_ARTIFICIAL (fn))
2245 /* Cannot specialize functions that are created implicitly. */
2247 else
2249 tree decl_arg_types;
2251 /* This is an ordinary member function. However, since
2252 we're here, we can assume its enclosing class is a
2253 template class. For example,
2255 template <typename T> struct S { void f(); };
2256 template <> void S<int>::f() {}
2258 Here, S<int>::f is a non-template, but S<int> is a
2259 template class. If FN has the same type as DECL, we
2260 might be in business. */
2262 if (!DECL_TEMPLATE_INFO (fn))
2263 /* Its enclosing class is an explicit specialization
2264 of a template class. This is not a candidate. */
2265 continue;
2267 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
2268 TREE_TYPE (TREE_TYPE (fn))))
2269 /* The return types differ. */
2270 continue;
2272 /* Adjust the type of DECL in case FN is a static member. */
2273 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
2274 if (DECL_STATIC_FUNCTION_P (fn)
2275 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2276 decl_arg_types = TREE_CHAIN (decl_arg_types);
2278 if (!compparms (TYPE_ARG_TYPES (TREE_TYPE (fn)),
2279 decl_arg_types))
2280 continue;
2282 // If the deduced arguments do not satisfy the constraints,
2283 // this is not a candidate.
2284 if (flag_concepts && !constraints_satisfied_p (fn))
2285 continue;
2287 // Add the candidate.
2288 candidates = tree_cons (NULL_TREE, fn, candidates);
2292 if (templates && TREE_CHAIN (templates))
2294 /* We have:
2296 [temp.expl.spec]
2298 It is possible for a specialization with a given function
2299 signature to be instantiated from more than one function
2300 template. In such cases, explicit specification of the
2301 template arguments must be used to uniquely identify the
2302 function template specialization being specialized.
2304 Note that here, there's no suggestion that we're supposed to
2305 determine which of the candidate templates is most
2306 specialized. However, we, also have:
2308 [temp.func.order]
2310 Partial ordering of overloaded function template
2311 declarations is used in the following contexts to select
2312 the function template to which a function template
2313 specialization refers:
2315 -- when an explicit specialization refers to a function
2316 template.
2318 So, we do use the partial ordering rules, at least for now.
2319 This extension can only serve to make invalid programs valid,
2320 so it's safe. And, there is strong anecdotal evidence that
2321 the committee intended the partial ordering rules to apply;
2322 the EDG front end has that behavior, and John Spicer claims
2323 that the committee simply forgot to delete the wording in
2324 [temp.expl.spec]. */
2325 tree tmpl = most_specialized_instantiation (templates);
2326 if (tmpl != error_mark_node)
2328 templates = tmpl;
2329 TREE_CHAIN (templates) = NULL_TREE;
2333 // Concepts allows multiple declarations of member functions
2334 // with the same signature. Like above, we need to rely on
2335 // on the partial ordering of those candidates to determine which
2336 // is the best.
2337 if (flag_concepts && candidates && TREE_CHAIN (candidates))
2339 if (tree cand = most_constrained_function (candidates))
2341 candidates = cand;
2342 TREE_CHAIN (cand) = NULL_TREE;
2346 if (templates == NULL_TREE && candidates == NULL_TREE)
2348 error ("template-id %qD for %q+D does not match any template "
2349 "declaration", template_id, decl);
2350 if (header_count && header_count != template_count + 1)
2351 inform (input_location, "saw %d %<template<>%>, need %d for "
2352 "specializing a member function template",
2353 header_count, template_count + 1);
2354 else
2355 print_candidates (orig_fns);
2356 return error_mark_node;
2358 else if ((templates && TREE_CHAIN (templates))
2359 || (candidates && TREE_CHAIN (candidates))
2360 || (templates && candidates))
2362 error ("ambiguous template specialization %qD for %q+D",
2363 template_id, decl);
2364 candidates = chainon (candidates, templates);
2365 print_candidates (candidates);
2366 return error_mark_node;
2369 /* We have one, and exactly one, match. */
2370 if (candidates)
2372 tree fn = TREE_VALUE (candidates);
2373 *targs_out = copy_node (DECL_TI_ARGS (fn));
2375 // Propagate the candidate's constraints to the declaration.
2376 set_constraints (decl, get_constraints (fn));
2378 /* DECL is a re-declaration or partial instantiation of a template
2379 function. */
2380 if (TREE_CODE (fn) == TEMPLATE_DECL)
2381 return fn;
2382 /* It was a specialization of an ordinary member function in a
2383 template class. */
2384 return DECL_TI_TEMPLATE (fn);
2387 /* It was a specialization of a template. */
2388 targs = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (TREE_VALUE (templates)));
2389 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (targs))
2391 *targs_out = copy_node (targs);
2392 SET_TMPL_ARGS_LEVEL (*targs_out,
2393 TMPL_ARGS_DEPTH (*targs_out),
2394 TREE_PURPOSE (templates));
2396 else
2397 *targs_out = TREE_PURPOSE (templates);
2398 return TREE_VALUE (templates);
2401 /* Returns a chain of parameter types, exactly like the SPEC_TYPES,
2402 but with the default argument values filled in from those in the
2403 TMPL_TYPES. */
2405 static tree
2406 copy_default_args_to_explicit_spec_1 (tree spec_types,
2407 tree tmpl_types)
2409 tree new_spec_types;
2411 if (!spec_types)
2412 return NULL_TREE;
2414 if (spec_types == void_list_node)
2415 return void_list_node;
2417 /* Substitute into the rest of the list. */
2418 new_spec_types =
2419 copy_default_args_to_explicit_spec_1 (TREE_CHAIN (spec_types),
2420 TREE_CHAIN (tmpl_types));
2422 /* Add the default argument for this parameter. */
2423 return hash_tree_cons (TREE_PURPOSE (tmpl_types),
2424 TREE_VALUE (spec_types),
2425 new_spec_types);
2428 /* DECL is an explicit specialization. Replicate default arguments
2429 from the template it specializes. (That way, code like:
2431 template <class T> void f(T = 3);
2432 template <> void f(double);
2433 void g () { f (); }
2435 works, as required.) An alternative approach would be to look up
2436 the correct default arguments at the call-site, but this approach
2437 is consistent with how implicit instantiations are handled. */
2439 static void
2440 copy_default_args_to_explicit_spec (tree decl)
2442 tree tmpl;
2443 tree spec_types;
2444 tree tmpl_types;
2445 tree new_spec_types;
2446 tree old_type;
2447 tree new_type;
2448 tree t;
2449 tree object_type = NULL_TREE;
2450 tree in_charge = NULL_TREE;
2451 tree vtt = NULL_TREE;
2453 /* See if there's anything we need to do. */
2454 tmpl = DECL_TI_TEMPLATE (decl);
2455 tmpl_types = TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (tmpl)));
2456 for (t = tmpl_types; t; t = TREE_CHAIN (t))
2457 if (TREE_PURPOSE (t))
2458 break;
2459 if (!t)
2460 return;
2462 old_type = TREE_TYPE (decl);
2463 spec_types = TYPE_ARG_TYPES (old_type);
2465 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2467 /* Remove the this pointer, but remember the object's type for
2468 CV quals. */
2469 object_type = TREE_TYPE (TREE_VALUE (spec_types));
2470 spec_types = TREE_CHAIN (spec_types);
2471 tmpl_types = TREE_CHAIN (tmpl_types);
2473 if (DECL_HAS_IN_CHARGE_PARM_P (decl))
2475 /* DECL may contain more parameters than TMPL due to the extra
2476 in-charge parameter in constructors and destructors. */
2477 in_charge = spec_types;
2478 spec_types = TREE_CHAIN (spec_types);
2480 if (DECL_HAS_VTT_PARM_P (decl))
2482 vtt = spec_types;
2483 spec_types = TREE_CHAIN (spec_types);
2487 /* Compute the merged default arguments. */
2488 new_spec_types =
2489 copy_default_args_to_explicit_spec_1 (spec_types, tmpl_types);
2491 /* Compute the new FUNCTION_TYPE. */
2492 if (object_type)
2494 if (vtt)
2495 new_spec_types = hash_tree_cons (TREE_PURPOSE (vtt),
2496 TREE_VALUE (vtt),
2497 new_spec_types);
2499 if (in_charge)
2500 /* Put the in-charge parameter back. */
2501 new_spec_types = hash_tree_cons (TREE_PURPOSE (in_charge),
2502 TREE_VALUE (in_charge),
2503 new_spec_types);
2505 new_type = build_method_type_directly (object_type,
2506 TREE_TYPE (old_type),
2507 new_spec_types);
2509 else
2510 new_type = build_function_type (TREE_TYPE (old_type),
2511 new_spec_types);
2512 new_type = cp_build_type_attribute_variant (new_type,
2513 TYPE_ATTRIBUTES (old_type));
2514 new_type = build_exception_variant (new_type,
2515 TYPE_RAISES_EXCEPTIONS (old_type));
2517 if (TYPE_HAS_LATE_RETURN_TYPE (old_type))
2518 TYPE_HAS_LATE_RETURN_TYPE (new_type) = 1;
2520 TREE_TYPE (decl) = new_type;
2523 /* Return the number of template headers we expect to see for a definition
2524 or specialization of CTYPE or one of its non-template members. */
2527 num_template_headers_for_class (tree ctype)
2529 int num_templates = 0;
2531 while (ctype && CLASS_TYPE_P (ctype))
2533 /* You're supposed to have one `template <...>' for every
2534 template class, but you don't need one for a full
2535 specialization. For example:
2537 template <class T> struct S{};
2538 template <> struct S<int> { void f(); };
2539 void S<int>::f () {}
2541 is correct; there shouldn't be a `template <>' for the
2542 definition of `S<int>::f'. */
2543 if (!CLASSTYPE_TEMPLATE_INFO (ctype))
2544 /* If CTYPE does not have template information of any
2545 kind, then it is not a template, nor is it nested
2546 within a template. */
2547 break;
2548 if (explicit_class_specialization_p (ctype))
2549 break;
2550 if (PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (ctype)))
2551 ++num_templates;
2553 ctype = TYPE_CONTEXT (ctype);
2556 return num_templates;
2559 /* Do a simple sanity check on the template headers that precede the
2560 variable declaration DECL. */
2562 void
2563 check_template_variable (tree decl)
2565 tree ctx = CP_DECL_CONTEXT (decl);
2566 int wanted = num_template_headers_for_class (ctx);
2567 if (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl)
2568 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl)))
2570 if (cxx_dialect < cxx14)
2571 pedwarn (DECL_SOURCE_LOCATION (decl), 0,
2572 "variable templates only available with "
2573 "-std=c++14 or -std=gnu++14");
2575 // Namespace-scope variable templates should have a template header.
2576 ++wanted;
2578 if (template_header_count > wanted)
2580 bool warned = pedwarn (DECL_SOURCE_LOCATION (decl), 0,
2581 "too many template headers for %D (should be %d)",
2582 decl, wanted);
2583 if (warned && CLASS_TYPE_P (ctx)
2584 && CLASSTYPE_TEMPLATE_SPECIALIZATION (ctx))
2585 inform (DECL_SOURCE_LOCATION (decl),
2586 "members of an explicitly specialized class are defined "
2587 "without a template header");
2591 /* An explicit specialization whose declarator-id or class-head-name is not
2592 qualified shall be declared in the nearest enclosing namespace of the
2593 template, or, if the namespace is inline (7.3.1), any namespace from its
2594 enclosing namespace set.
2596 If the name declared in the explicit instantiation is an unqualified name,
2597 the explicit instantiation shall appear in the namespace where its template
2598 is declared or, if that namespace is inline (7.3.1), any namespace from its
2599 enclosing namespace set. */
2601 void
2602 check_unqualified_spec_or_inst (tree t, location_t loc)
2604 tree tmpl = most_general_template (t);
2605 if (DECL_NAMESPACE_SCOPE_P (tmpl)
2606 && !is_associated_namespace (current_namespace,
2607 CP_DECL_CONTEXT (tmpl)))
2609 if (processing_specialization)
2610 permerror (loc, "explicit specialization of %qD outside its "
2611 "namespace must use a nested-name-specifier", tmpl);
2612 else if (processing_explicit_instantiation
2613 && cxx_dialect >= cxx11)
2614 /* This was allowed in C++98, so only pedwarn. */
2615 pedwarn (loc, OPT_Wpedantic, "explicit instantiation of %qD "
2616 "outside its namespace must use a nested-name-"
2617 "specifier", tmpl);
2621 /* Check to see if the function just declared, as indicated in
2622 DECLARATOR, and in DECL, is a specialization of a function
2623 template. We may also discover that the declaration is an explicit
2624 instantiation at this point.
2626 Returns DECL, or an equivalent declaration that should be used
2627 instead if all goes well. Issues an error message if something is
2628 amiss. Returns error_mark_node if the error is not easily
2629 recoverable.
2631 FLAGS is a bitmask consisting of the following flags:
2633 2: The function has a definition.
2634 4: The function is a friend.
2636 The TEMPLATE_COUNT is the number of references to qualifying
2637 template classes that appeared in the name of the function. For
2638 example, in
2640 template <class T> struct S { void f(); };
2641 void S<int>::f();
2643 the TEMPLATE_COUNT would be 1. However, explicitly specialized
2644 classes are not counted in the TEMPLATE_COUNT, so that in
2646 template <class T> struct S {};
2647 template <> struct S<int> { void f(); }
2648 template <> void S<int>::f();
2650 the TEMPLATE_COUNT would be 0. (Note that this declaration is
2651 invalid; there should be no template <>.)
2653 If the function is a specialization, it is marked as such via
2654 DECL_TEMPLATE_SPECIALIZATION. Furthermore, its DECL_TEMPLATE_INFO
2655 is set up correctly, and it is added to the list of specializations
2656 for that template. */
2658 tree
2659 check_explicit_specialization (tree declarator,
2660 tree decl,
2661 int template_count,
2662 int flags)
2664 int have_def = flags & 2;
2665 int is_friend = flags & 4;
2666 bool is_concept = flags & 8;
2667 int specialization = 0;
2668 int explicit_instantiation = 0;
2669 int member_specialization = 0;
2670 tree ctype = DECL_CLASS_CONTEXT (decl);
2671 tree dname = DECL_NAME (decl);
2672 tmpl_spec_kind tsk;
2674 if (is_friend)
2676 if (!processing_specialization)
2677 tsk = tsk_none;
2678 else
2679 tsk = tsk_excessive_parms;
2681 else
2682 tsk = current_tmpl_spec_kind (template_count);
2684 switch (tsk)
2686 case tsk_none:
2687 if (processing_specialization && !VAR_P (decl))
2689 specialization = 1;
2690 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2692 else if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2694 if (is_friend)
2695 /* This could be something like:
2697 template <class T> void f(T);
2698 class S { friend void f<>(int); } */
2699 specialization = 1;
2700 else
2702 /* This case handles bogus declarations like template <>
2703 template <class T> void f<int>(); */
2705 error ("template-id %qD in declaration of primary template",
2706 declarator);
2707 return decl;
2710 break;
2712 case tsk_invalid_member_spec:
2713 /* The error has already been reported in
2714 check_specialization_scope. */
2715 return error_mark_node;
2717 case tsk_invalid_expl_inst:
2718 error ("template parameter list used in explicit instantiation");
2720 /* Fall through. */
2722 case tsk_expl_inst:
2723 if (have_def)
2724 error ("definition provided for explicit instantiation");
2726 explicit_instantiation = 1;
2727 break;
2729 case tsk_excessive_parms:
2730 case tsk_insufficient_parms:
2731 if (tsk == tsk_excessive_parms)
2732 error ("too many template parameter lists in declaration of %qD",
2733 decl);
2734 else if (template_header_count)
2735 error("too few template parameter lists in declaration of %qD", decl);
2736 else
2737 error("explicit specialization of %qD must be introduced by "
2738 "%<template <>%>", decl);
2740 /* Fall through. */
2741 case tsk_expl_spec:
2742 if (is_concept)
2743 error ("explicit specialization declared %<concept%>");
2745 if (VAR_P (decl) && TREE_CODE (declarator) != TEMPLATE_ID_EXPR)
2746 /* In cases like template<> constexpr bool v = true;
2747 We'll give an error in check_template_variable. */
2748 break;
2750 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2751 if (ctype)
2752 member_specialization = 1;
2753 else
2754 specialization = 1;
2755 break;
2757 case tsk_template:
2758 if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2760 /* This case handles bogus declarations like template <>
2761 template <class T> void f<int>(); */
2763 if (!uses_template_parms (declarator))
2764 error ("template-id %qD in declaration of primary template",
2765 declarator);
2766 else if (variable_template_p (TREE_OPERAND (declarator, 0)))
2768 /* Partial specialization of variable template. */
2769 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2770 specialization = 1;
2771 goto ok;
2773 else if (cxx_dialect < cxx14)
2774 error ("non-type partial specialization %qD "
2775 "is not allowed", declarator);
2776 else
2777 error ("non-class, non-variable partial specialization %qD "
2778 "is not allowed", declarator);
2779 return decl;
2780 ok:;
2783 if (ctype && CLASSTYPE_TEMPLATE_INSTANTIATION (ctype))
2784 /* This is a specialization of a member template, without
2785 specialization the containing class. Something like:
2787 template <class T> struct S {
2788 template <class U> void f (U);
2790 template <> template <class U> void S<int>::f(U) {}
2792 That's a specialization -- but of the entire template. */
2793 specialization = 1;
2794 break;
2796 default:
2797 gcc_unreachable ();
2800 if ((specialization || member_specialization)
2801 /* This doesn't apply to variable templates. */
2802 && (TREE_CODE (TREE_TYPE (decl)) == FUNCTION_TYPE
2803 || TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE))
2805 tree t = TYPE_ARG_TYPES (TREE_TYPE (decl));
2806 for (; t; t = TREE_CHAIN (t))
2807 if (TREE_PURPOSE (t))
2809 permerror (input_location,
2810 "default argument specified in explicit specialization");
2811 break;
2815 if (specialization || member_specialization || explicit_instantiation)
2817 tree tmpl = NULL_TREE;
2818 tree targs = NULL_TREE;
2819 bool was_template_id = (TREE_CODE (declarator) == TEMPLATE_ID_EXPR);
2821 /* Make sure that the declarator is a TEMPLATE_ID_EXPR. */
2822 if (!was_template_id)
2824 tree fns;
2826 gcc_assert (identifier_p (declarator));
2827 if (ctype)
2828 fns = dname;
2829 else
2831 /* If there is no class context, the explicit instantiation
2832 must be at namespace scope. */
2833 gcc_assert (DECL_NAMESPACE_SCOPE_P (decl));
2835 /* Find the namespace binding, using the declaration
2836 context. */
2837 fns = lookup_qualified_name (CP_DECL_CONTEXT (decl), dname,
2838 false, true);
2839 if (fns == error_mark_node)
2840 /* If lookup fails, look for a friend declaration so we can
2841 give a better diagnostic. */
2842 fns = lookup_qualified_name (CP_DECL_CONTEXT (decl), dname,
2843 /*type*/false, /*complain*/true,
2844 /*hidden*/true);
2846 if (fns == error_mark_node || !is_overloaded_fn (fns))
2848 error ("%qD is not a template function", dname);
2849 fns = error_mark_node;
2853 declarator = lookup_template_function (fns, NULL_TREE);
2856 if (declarator == error_mark_node)
2857 return error_mark_node;
2859 if (ctype != NULL_TREE && TYPE_BEING_DEFINED (ctype))
2861 if (!explicit_instantiation)
2862 /* A specialization in class scope. This is invalid,
2863 but the error will already have been flagged by
2864 check_specialization_scope. */
2865 return error_mark_node;
2866 else
2868 /* It's not valid to write an explicit instantiation in
2869 class scope, e.g.:
2871 class C { template void f(); }
2873 This case is caught by the parser. However, on
2874 something like:
2876 template class C { void f(); };
2878 (which is invalid) we can get here. The error will be
2879 issued later. */
2883 return decl;
2885 else if (ctype != NULL_TREE
2886 && (identifier_p (TREE_OPERAND (declarator, 0))))
2888 // We'll match variable templates in start_decl.
2889 if (VAR_P (decl))
2890 return decl;
2892 /* Find the list of functions in ctype that have the same
2893 name as the declared function. */
2894 tree name = TREE_OPERAND (declarator, 0);
2895 tree fns = NULL_TREE;
2896 int idx;
2898 if (constructor_name_p (name, ctype))
2900 int is_constructor = DECL_CONSTRUCTOR_P (decl);
2902 if (is_constructor ? !TYPE_HAS_USER_CONSTRUCTOR (ctype)
2903 : !CLASSTYPE_DESTRUCTORS (ctype))
2905 /* From [temp.expl.spec]:
2907 If such an explicit specialization for the member
2908 of a class template names an implicitly-declared
2909 special member function (clause _special_), the
2910 program is ill-formed.
2912 Similar language is found in [temp.explicit]. */
2913 error ("specialization of implicitly-declared special member function");
2914 return error_mark_node;
2917 name = is_constructor ? ctor_identifier : dtor_identifier;
2920 if (!DECL_CONV_FN_P (decl))
2922 idx = lookup_fnfields_1 (ctype, name);
2923 if (idx >= 0)
2924 fns = (*CLASSTYPE_METHOD_VEC (ctype))[idx];
2926 else
2928 vec<tree, va_gc> *methods;
2929 tree ovl;
2931 /* For a type-conversion operator, we cannot do a
2932 name-based lookup. We might be looking for `operator
2933 int' which will be a specialization of `operator T'.
2934 So, we find *all* the conversion operators, and then
2935 select from them. */
2936 fns = NULL_TREE;
2938 methods = CLASSTYPE_METHOD_VEC (ctype);
2939 if (methods)
2940 for (idx = CLASSTYPE_FIRST_CONVERSION_SLOT;
2941 methods->iterate (idx, &ovl);
2942 ++idx)
2944 if (!DECL_CONV_FN_P (OVL_CURRENT (ovl)))
2945 /* There are no more conversion functions. */
2946 break;
2948 /* Glue all these conversion functions together
2949 with those we already have. */
2950 for (; ovl; ovl = OVL_NEXT (ovl))
2951 fns = ovl_cons (OVL_CURRENT (ovl), fns);
2955 if (fns == NULL_TREE)
2957 error ("no member function %qD declared in %qT", name, ctype);
2958 return error_mark_node;
2960 else
2961 TREE_OPERAND (declarator, 0) = fns;
2964 /* Figure out what exactly is being specialized at this point.
2965 Note that for an explicit instantiation, even one for a
2966 member function, we cannot tell apriori whether the
2967 instantiation is for a member template, or just a member
2968 function of a template class. Even if a member template is
2969 being instantiated, the member template arguments may be
2970 elided if they can be deduced from the rest of the
2971 declaration. */
2972 tmpl = determine_specialization (declarator, decl,
2973 &targs,
2974 member_specialization,
2975 template_count,
2976 tsk);
2978 if (!tmpl || tmpl == error_mark_node)
2979 /* We couldn't figure out what this declaration was
2980 specializing. */
2981 return error_mark_node;
2982 else
2984 if (TREE_CODE (decl) == FUNCTION_DECL
2985 && DECL_HIDDEN_FRIEND_P (tmpl))
2987 if (pedwarn (DECL_SOURCE_LOCATION (decl), 0,
2988 "friend declaration %qD is not visible to "
2989 "explicit specialization", tmpl))
2990 inform (DECL_SOURCE_LOCATION (tmpl),
2991 "friend declaration here");
2993 else if (!ctype && !is_friend
2994 && CP_DECL_CONTEXT (decl) == current_namespace)
2995 check_unqualified_spec_or_inst (tmpl, DECL_SOURCE_LOCATION (decl));
2997 tree gen_tmpl = most_general_template (tmpl);
2999 if (explicit_instantiation)
3001 /* We don't set DECL_EXPLICIT_INSTANTIATION here; that
3002 is done by do_decl_instantiation later. */
3004 int arg_depth = TMPL_ARGS_DEPTH (targs);
3005 int parm_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
3007 if (arg_depth > parm_depth)
3009 /* If TMPL is not the most general template (for
3010 example, if TMPL is a friend template that is
3011 injected into namespace scope), then there will
3012 be too many levels of TARGS. Remove some of them
3013 here. */
3014 int i;
3015 tree new_targs;
3017 new_targs = make_tree_vec (parm_depth);
3018 for (i = arg_depth - parm_depth; i < arg_depth; ++i)
3019 TREE_VEC_ELT (new_targs, i - (arg_depth - parm_depth))
3020 = TREE_VEC_ELT (targs, i);
3021 targs = new_targs;
3024 return instantiate_template (tmpl, targs, tf_error);
3027 /* If we thought that the DECL was a member function, but it
3028 turns out to be specializing a static member function,
3029 make DECL a static member function as well. */
3030 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
3031 && DECL_STATIC_FUNCTION_P (tmpl)
3032 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
3033 revert_static_member_fn (decl);
3035 /* If this is a specialization of a member template of a
3036 template class, we want to return the TEMPLATE_DECL, not
3037 the specialization of it. */
3038 if (tsk == tsk_template && !was_template_id)
3040 tree result = DECL_TEMPLATE_RESULT (tmpl);
3041 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
3042 DECL_INITIAL (result) = NULL_TREE;
3043 if (have_def)
3045 tree parm;
3046 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
3047 DECL_SOURCE_LOCATION (result)
3048 = DECL_SOURCE_LOCATION (decl);
3049 /* We want to use the argument list specified in the
3050 definition, not in the original declaration. */
3051 DECL_ARGUMENTS (result) = DECL_ARGUMENTS (decl);
3052 for (parm = DECL_ARGUMENTS (result); parm;
3053 parm = DECL_CHAIN (parm))
3054 DECL_CONTEXT (parm) = result;
3056 return register_specialization (tmpl, gen_tmpl, targs,
3057 is_friend, 0);
3060 /* Set up the DECL_TEMPLATE_INFO for DECL. */
3061 DECL_TEMPLATE_INFO (decl) = build_template_info (tmpl, targs);
3063 if (was_template_id)
3064 TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (decl)) = true;
3066 /* Inherit default function arguments from the template
3067 DECL is specializing. */
3068 if (DECL_FUNCTION_TEMPLATE_P (tmpl))
3069 copy_default_args_to_explicit_spec (decl);
3071 /* This specialization has the same protection as the
3072 template it specializes. */
3073 TREE_PRIVATE (decl) = TREE_PRIVATE (gen_tmpl);
3074 TREE_PROTECTED (decl) = TREE_PROTECTED (gen_tmpl);
3076 /* 7.1.1-1 [dcl.stc]
3078 A storage-class-specifier shall not be specified in an
3079 explicit specialization...
3081 The parser rejects these, so unless action is taken here,
3082 explicit function specializations will always appear with
3083 global linkage.
3085 The action recommended by the C++ CWG in response to C++
3086 defect report 605 is to make the storage class and linkage
3087 of the explicit specialization match the templated function:
3089 http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#605
3091 if (tsk == tsk_expl_spec && DECL_FUNCTION_TEMPLATE_P (gen_tmpl))
3093 tree tmpl_func = DECL_TEMPLATE_RESULT (gen_tmpl);
3094 gcc_assert (TREE_CODE (tmpl_func) == FUNCTION_DECL);
3096 /* A concept cannot be specialized. */
3097 if (DECL_DECLARED_CONCEPT_P (tmpl_func))
3099 error ("explicit specialization of function concept %qD",
3100 gen_tmpl);
3101 return error_mark_node;
3104 /* This specialization has the same linkage and visibility as
3105 the function template it specializes. */
3106 TREE_PUBLIC (decl) = TREE_PUBLIC (tmpl_func);
3107 if (! TREE_PUBLIC (decl))
3109 DECL_INTERFACE_KNOWN (decl) = 1;
3110 DECL_NOT_REALLY_EXTERN (decl) = 1;
3112 DECL_THIS_STATIC (decl) = DECL_THIS_STATIC (tmpl_func);
3113 if (DECL_VISIBILITY_SPECIFIED (tmpl_func))
3115 DECL_VISIBILITY_SPECIFIED (decl) = 1;
3116 DECL_VISIBILITY (decl) = DECL_VISIBILITY (tmpl_func);
3120 /* If DECL is a friend declaration, declared using an
3121 unqualified name, the namespace associated with DECL may
3122 have been set incorrectly. For example, in:
3124 template <typename T> void f(T);
3125 namespace N {
3126 struct S { friend void f<int>(int); }
3129 we will have set the DECL_CONTEXT for the friend
3130 declaration to N, rather than to the global namespace. */
3131 if (DECL_NAMESPACE_SCOPE_P (decl))
3132 DECL_CONTEXT (decl) = DECL_CONTEXT (tmpl);
3134 if (is_friend && !have_def)
3135 /* This is not really a declaration of a specialization.
3136 It's just the name of an instantiation. But, it's not
3137 a request for an instantiation, either. */
3138 SET_DECL_IMPLICIT_INSTANTIATION (decl);
3139 else if (TREE_CODE (decl) == FUNCTION_DECL)
3140 /* A specialization is not necessarily COMDAT. */
3141 DECL_COMDAT (decl) = (TREE_PUBLIC (decl)
3142 && DECL_DECLARED_INLINE_P (decl));
3143 else if (VAR_P (decl))
3144 DECL_COMDAT (decl) = false;
3146 /* If this is a full specialization, register it so that we can find
3147 it again. Partial specializations will be registered in
3148 process_partial_specialization. */
3149 if (!processing_template_decl)
3150 decl = register_specialization (decl, gen_tmpl, targs,
3151 is_friend, 0);
3153 /* A 'structor should already have clones. */
3154 gcc_assert (decl == error_mark_node
3155 || variable_template_p (tmpl)
3156 || !(DECL_CONSTRUCTOR_P (decl)
3157 || DECL_DESTRUCTOR_P (decl))
3158 || DECL_CLONED_FUNCTION_P (DECL_CHAIN (decl)));
3162 return decl;
3165 /* Returns 1 iff PARMS1 and PARMS2 are identical sets of template
3166 parameters. These are represented in the same format used for
3167 DECL_TEMPLATE_PARMS. */
3170 comp_template_parms (const_tree parms1, const_tree parms2)
3172 const_tree p1;
3173 const_tree p2;
3175 if (parms1 == parms2)
3176 return 1;
3178 for (p1 = parms1, p2 = parms2;
3179 p1 != NULL_TREE && p2 != NULL_TREE;
3180 p1 = TREE_CHAIN (p1), p2 = TREE_CHAIN (p2))
3182 tree t1 = TREE_VALUE (p1);
3183 tree t2 = TREE_VALUE (p2);
3184 int i;
3186 gcc_assert (TREE_CODE (t1) == TREE_VEC);
3187 gcc_assert (TREE_CODE (t2) == TREE_VEC);
3189 if (TREE_VEC_LENGTH (t1) != TREE_VEC_LENGTH (t2))
3190 return 0;
3192 for (i = 0; i < TREE_VEC_LENGTH (t2); ++i)
3194 tree parm1 = TREE_VALUE (TREE_VEC_ELT (t1, i));
3195 tree parm2 = TREE_VALUE (TREE_VEC_ELT (t2, i));
3197 /* If either of the template parameters are invalid, assume
3198 they match for the sake of error recovery. */
3199 if (error_operand_p (parm1) || error_operand_p (parm2))
3200 return 1;
3202 if (TREE_CODE (parm1) != TREE_CODE (parm2))
3203 return 0;
3205 if (TREE_CODE (parm1) == TEMPLATE_TYPE_PARM
3206 && (TEMPLATE_TYPE_PARAMETER_PACK (parm1)
3207 == TEMPLATE_TYPE_PARAMETER_PACK (parm2)))
3208 continue;
3209 else if (!same_type_p (TREE_TYPE (parm1), TREE_TYPE (parm2)))
3210 return 0;
3214 if ((p1 != NULL_TREE) != (p2 != NULL_TREE))
3215 /* One set of parameters has more parameters lists than the
3216 other. */
3217 return 0;
3219 return 1;
3222 /* Determine whether PARM is a parameter pack. */
3224 bool
3225 template_parameter_pack_p (const_tree parm)
3227 /* Determine if we have a non-type template parameter pack. */
3228 if (TREE_CODE (parm) == PARM_DECL)
3229 return (DECL_TEMPLATE_PARM_P (parm)
3230 && TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)));
3231 if (TREE_CODE (parm) == TEMPLATE_PARM_INDEX)
3232 return TEMPLATE_PARM_PARAMETER_PACK (parm);
3234 /* If this is a list of template parameters, we could get a
3235 TYPE_DECL or a TEMPLATE_DECL. */
3236 if (TREE_CODE (parm) == TYPE_DECL || TREE_CODE (parm) == TEMPLATE_DECL)
3237 parm = TREE_TYPE (parm);
3239 /* Otherwise it must be a type template parameter. */
3240 return ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
3241 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
3242 && TEMPLATE_TYPE_PARAMETER_PACK (parm));
3245 /* Determine if T is a function parameter pack. */
3247 bool
3248 function_parameter_pack_p (const_tree t)
3250 if (t && TREE_CODE (t) == PARM_DECL)
3251 return DECL_PACK_P (t);
3252 return false;
3255 /* Return the function template declaration of PRIMARY_FUNC_TMPL_INST.
3256 PRIMARY_FUNC_TMPL_INST is a primary function template instantiation. */
3258 tree
3259 get_function_template_decl (const_tree primary_func_tmpl_inst)
3261 if (! primary_func_tmpl_inst
3262 || TREE_CODE (primary_func_tmpl_inst) != FUNCTION_DECL
3263 || ! primary_template_instantiation_p (primary_func_tmpl_inst))
3264 return NULL;
3266 return DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (primary_func_tmpl_inst));
3269 /* Return true iff the function parameter PARAM_DECL was expanded
3270 from the function parameter pack PACK. */
3272 bool
3273 function_parameter_expanded_from_pack_p (tree param_decl, tree pack)
3275 if (DECL_ARTIFICIAL (param_decl)
3276 || !function_parameter_pack_p (pack))
3277 return false;
3279 /* The parameter pack and its pack arguments have the same
3280 DECL_PARM_INDEX. */
3281 return DECL_PARM_INDEX (pack) == DECL_PARM_INDEX (param_decl);
3284 /* Determine whether ARGS describes a variadic template args list,
3285 i.e., one that is terminated by a template argument pack. */
3287 static bool
3288 template_args_variadic_p (tree args)
3290 int nargs;
3291 tree last_parm;
3293 if (args == NULL_TREE)
3294 return false;
3296 args = INNERMOST_TEMPLATE_ARGS (args);
3297 nargs = TREE_VEC_LENGTH (args);
3299 if (nargs == 0)
3300 return false;
3302 last_parm = TREE_VEC_ELT (args, nargs - 1);
3304 return ARGUMENT_PACK_P (last_parm);
3307 /* Generate a new name for the parameter pack name NAME (an
3308 IDENTIFIER_NODE) that incorporates its */
3310 static tree
3311 make_ith_pack_parameter_name (tree name, int i)
3313 /* Munge the name to include the parameter index. */
3314 #define NUMBUF_LEN 128
3315 char numbuf[NUMBUF_LEN];
3316 char* newname;
3317 int newname_len;
3319 if (name == NULL_TREE)
3320 return name;
3321 snprintf (numbuf, NUMBUF_LEN, "%i", i);
3322 newname_len = IDENTIFIER_LENGTH (name)
3323 + strlen (numbuf) + 2;
3324 newname = (char*)alloca (newname_len);
3325 snprintf (newname, newname_len,
3326 "%s#%i", IDENTIFIER_POINTER (name), i);
3327 return get_identifier (newname);
3330 /* Return true if T is a primary function, class or alias template
3331 instantiation. */
3333 bool
3334 primary_template_instantiation_p (const_tree t)
3336 if (!t)
3337 return false;
3339 if (TREE_CODE (t) == FUNCTION_DECL)
3340 return DECL_LANG_SPECIFIC (t)
3341 && DECL_TEMPLATE_INSTANTIATION (t)
3342 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (t));
3343 else if (CLASS_TYPE_P (t) && !TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
3344 return CLASSTYPE_TEMPLATE_INSTANTIATION (t)
3345 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (t));
3346 else if (alias_template_specialization_p (t))
3347 return true;
3348 return false;
3351 /* Return true if PARM is a template template parameter. */
3353 bool
3354 template_template_parameter_p (const_tree parm)
3356 return DECL_TEMPLATE_TEMPLATE_PARM_P (parm);
3359 /* Return true iff PARM is a DECL representing a type template
3360 parameter. */
3362 bool
3363 template_type_parameter_p (const_tree parm)
3365 return (parm
3366 && (TREE_CODE (parm) == TYPE_DECL
3367 || TREE_CODE (parm) == TEMPLATE_DECL)
3368 && DECL_TEMPLATE_PARM_P (parm));
3371 /* Return the template parameters of T if T is a
3372 primary template instantiation, NULL otherwise. */
3374 tree
3375 get_primary_template_innermost_parameters (const_tree t)
3377 tree parms = NULL, template_info = NULL;
3379 if ((template_info = get_template_info (t))
3380 && primary_template_instantiation_p (t))
3381 parms = INNERMOST_TEMPLATE_PARMS
3382 (DECL_TEMPLATE_PARMS (TI_TEMPLATE (template_info)));
3384 return parms;
3387 /* Return the template parameters of the LEVELth level from the full list
3388 of template parameters PARMS. */
3390 tree
3391 get_template_parms_at_level (tree parms, int level)
3393 tree p;
3394 if (!parms
3395 || TREE_CODE (parms) != TREE_LIST
3396 || level > TMPL_PARMS_DEPTH (parms))
3397 return NULL_TREE;
3399 for (p = parms; p; p = TREE_CHAIN (p))
3400 if (TMPL_PARMS_DEPTH (p) == level)
3401 return p;
3403 return NULL_TREE;
3406 /* Returns the template arguments of T if T is a template instantiation,
3407 NULL otherwise. */
3409 tree
3410 get_template_innermost_arguments (const_tree t)
3412 tree args = NULL, template_info = NULL;
3414 if ((template_info = get_template_info (t))
3415 && TI_ARGS (template_info))
3416 args = INNERMOST_TEMPLATE_ARGS (TI_ARGS (template_info));
3418 return args;
3421 /* Return the argument pack elements of T if T is a template argument pack,
3422 NULL otherwise. */
3424 tree
3425 get_template_argument_pack_elems (const_tree t)
3427 if (TREE_CODE (t) != TYPE_ARGUMENT_PACK
3428 && TREE_CODE (t) != NONTYPE_ARGUMENT_PACK)
3429 return NULL;
3431 return ARGUMENT_PACK_ARGS (t);
3434 /* Structure used to track the progress of find_parameter_packs_r. */
3435 struct find_parameter_pack_data
3437 /* TREE_LIST that will contain all of the parameter packs found by
3438 the traversal. */
3439 tree* parameter_packs;
3441 /* Set of AST nodes that have been visited by the traversal. */
3442 hash_set<tree> *visited;
3444 /* True iff we're making a type pack expansion. */
3445 bool type_pack_expansion_p;
3448 /* Identifies all of the argument packs that occur in a template
3449 argument and appends them to the TREE_LIST inside DATA, which is a
3450 find_parameter_pack_data structure. This is a subroutine of
3451 make_pack_expansion and uses_parameter_packs. */
3452 static tree
3453 find_parameter_packs_r (tree *tp, int *walk_subtrees, void* data)
3455 tree t = *tp;
3456 struct find_parameter_pack_data* ppd =
3457 (struct find_parameter_pack_data*)data;
3458 bool parameter_pack_p = false;
3460 /* Handle type aliases/typedefs. */
3461 if (TYPE_ALIAS_P (t))
3463 if (tree tinfo = TYPE_ALIAS_TEMPLATE_INFO (t))
3464 cp_walk_tree (&TI_ARGS (tinfo),
3465 &find_parameter_packs_r,
3466 ppd, ppd->visited);
3467 *walk_subtrees = 0;
3468 return NULL_TREE;
3471 /* Identify whether this is a parameter pack or not. */
3472 switch (TREE_CODE (t))
3474 case TEMPLATE_PARM_INDEX:
3475 if (TEMPLATE_PARM_PARAMETER_PACK (t))
3476 parameter_pack_p = true;
3477 break;
3479 case TEMPLATE_TYPE_PARM:
3480 t = TYPE_MAIN_VARIANT (t);
3481 /* FALLTHRU */
3482 case TEMPLATE_TEMPLATE_PARM:
3483 /* If the placeholder appears in the decl-specifier-seq of a function
3484 parameter pack (14.6.3), or the type-specifier-seq of a type-id that
3485 is a pack expansion, the invented template parameter is a template
3486 parameter pack. */
3487 if (ppd->type_pack_expansion_p && is_auto_or_concept (t))
3488 TEMPLATE_TYPE_PARAMETER_PACK (t) = true;
3489 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
3490 parameter_pack_p = true;
3491 break;
3493 case FIELD_DECL:
3494 case PARM_DECL:
3495 if (DECL_PACK_P (t))
3497 /* We don't want to walk into the type of a PARM_DECL,
3498 because we don't want to see the type parameter pack. */
3499 *walk_subtrees = 0;
3500 parameter_pack_p = true;
3502 break;
3504 /* Look through a lambda capture proxy to the field pack. */
3505 case VAR_DECL:
3506 if (DECL_HAS_VALUE_EXPR_P (t))
3508 tree v = DECL_VALUE_EXPR (t);
3509 cp_walk_tree (&v,
3510 &find_parameter_packs_r,
3511 ppd, ppd->visited);
3512 *walk_subtrees = 0;
3514 else if (variable_template_specialization_p (t))
3516 cp_walk_tree (&DECL_TI_ARGS (t),
3517 find_parameter_packs_r,
3518 ppd, ppd->visited);
3519 *walk_subtrees = 0;
3521 break;
3523 case BASES:
3524 parameter_pack_p = true;
3525 break;
3526 default:
3527 /* Not a parameter pack. */
3528 break;
3531 if (parameter_pack_p)
3533 /* Add this parameter pack to the list. */
3534 *ppd->parameter_packs = tree_cons (NULL_TREE, t, *ppd->parameter_packs);
3537 if (TYPE_P (t))
3538 cp_walk_tree (&TYPE_CONTEXT (t),
3539 &find_parameter_packs_r, ppd, ppd->visited);
3541 /* This switch statement will return immediately if we don't find a
3542 parameter pack. */
3543 switch (TREE_CODE (t))
3545 case TEMPLATE_PARM_INDEX:
3546 return NULL_TREE;
3548 case BOUND_TEMPLATE_TEMPLATE_PARM:
3549 /* Check the template itself. */
3550 cp_walk_tree (&TREE_TYPE (TYPE_TI_TEMPLATE (t)),
3551 &find_parameter_packs_r, ppd, ppd->visited);
3552 /* Check the template arguments. */
3553 cp_walk_tree (&TYPE_TI_ARGS (t), &find_parameter_packs_r, ppd,
3554 ppd->visited);
3555 *walk_subtrees = 0;
3556 return NULL_TREE;
3558 case TEMPLATE_TYPE_PARM:
3559 case TEMPLATE_TEMPLATE_PARM:
3560 return NULL_TREE;
3562 case PARM_DECL:
3563 return NULL_TREE;
3565 case RECORD_TYPE:
3566 if (TYPE_PTRMEMFUNC_P (t))
3567 return NULL_TREE;
3568 /* Fall through. */
3570 case UNION_TYPE:
3571 case ENUMERAL_TYPE:
3572 if (TYPE_TEMPLATE_INFO (t))
3573 cp_walk_tree (&TYPE_TI_ARGS (t),
3574 &find_parameter_packs_r, ppd, ppd->visited);
3576 *walk_subtrees = 0;
3577 return NULL_TREE;
3579 case CONSTRUCTOR:
3580 case TEMPLATE_DECL:
3581 cp_walk_tree (&TREE_TYPE (t),
3582 &find_parameter_packs_r, ppd, ppd->visited);
3583 return NULL_TREE;
3585 case TYPENAME_TYPE:
3586 cp_walk_tree (&TYPENAME_TYPE_FULLNAME (t), &find_parameter_packs_r,
3587 ppd, ppd->visited);
3588 *walk_subtrees = 0;
3589 return NULL_TREE;
3591 case TYPE_PACK_EXPANSION:
3592 case EXPR_PACK_EXPANSION:
3593 *walk_subtrees = 0;
3594 return NULL_TREE;
3596 case INTEGER_TYPE:
3597 cp_walk_tree (&TYPE_MAX_VALUE (t), &find_parameter_packs_r,
3598 ppd, ppd->visited);
3599 *walk_subtrees = 0;
3600 return NULL_TREE;
3602 case IDENTIFIER_NODE:
3603 cp_walk_tree (&TREE_TYPE (t), &find_parameter_packs_r, ppd,
3604 ppd->visited);
3605 *walk_subtrees = 0;
3606 return NULL_TREE;
3608 case DECLTYPE_TYPE:
3610 /* When traversing a DECLTYPE_TYPE_EXPR, we need to set
3611 type_pack_expansion_p to false so that any placeholders
3612 within the expression don't get marked as parameter packs. */
3613 bool type_pack_expansion_p = ppd->type_pack_expansion_p;
3614 ppd->type_pack_expansion_p = false;
3615 cp_walk_tree (&DECLTYPE_TYPE_EXPR (t), &find_parameter_packs_r,
3616 ppd, ppd->visited);
3617 ppd->type_pack_expansion_p = type_pack_expansion_p;
3618 *walk_subtrees = 0;
3619 return NULL_TREE;
3622 default:
3623 return NULL_TREE;
3626 return NULL_TREE;
3629 /* Determines if the expression or type T uses any parameter packs. */
3630 bool
3631 uses_parameter_packs (tree t)
3633 tree parameter_packs = NULL_TREE;
3634 struct find_parameter_pack_data ppd;
3635 ppd.parameter_packs = &parameter_packs;
3636 ppd.visited = new hash_set<tree>;
3637 ppd.type_pack_expansion_p = false;
3638 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3639 delete ppd.visited;
3640 return parameter_packs != NULL_TREE;
3643 /* Turn ARG, which may be an expression, type, or a TREE_LIST
3644 representation a base-class initializer into a parameter pack
3645 expansion. If all goes well, the resulting node will be an
3646 EXPR_PACK_EXPANSION, TYPE_PACK_EXPANSION, or TREE_LIST,
3647 respectively. */
3648 tree
3649 make_pack_expansion (tree arg)
3651 tree result;
3652 tree parameter_packs = NULL_TREE;
3653 bool for_types = false;
3654 struct find_parameter_pack_data ppd;
3656 if (!arg || arg == error_mark_node)
3657 return arg;
3659 if (TREE_CODE (arg) == TREE_LIST && TREE_PURPOSE (arg))
3661 /* A TREE_LIST with a non-null TREE_PURPOSE is for a base
3662 class initializer. In this case, the TREE_PURPOSE will be a
3663 _TYPE node (representing the base class expansion we're
3664 initializing) and the TREE_VALUE will be a TREE_LIST
3665 containing the initialization arguments.
3667 The resulting expansion looks somewhat different from most
3668 expansions. Rather than returning just one _EXPANSION, we
3669 return a TREE_LIST whose TREE_PURPOSE is a
3670 TYPE_PACK_EXPANSION containing the bases that will be
3671 initialized. The TREE_VALUE will be identical to the
3672 original TREE_VALUE, which is a list of arguments that will
3673 be passed to each base. We do not introduce any new pack
3674 expansion nodes into the TREE_VALUE (although it is possible
3675 that some already exist), because the TREE_PURPOSE and
3676 TREE_VALUE all need to be expanded together with the same
3677 _EXPANSION node. Note that the TYPE_PACK_EXPANSION in the
3678 resulting TREE_PURPOSE will mention the parameter packs in
3679 both the bases and the arguments to the bases. */
3680 tree purpose;
3681 tree value;
3682 tree parameter_packs = NULL_TREE;
3684 /* Determine which parameter packs will be used by the base
3685 class expansion. */
3686 ppd.visited = new hash_set<tree>;
3687 ppd.parameter_packs = &parameter_packs;
3688 ppd.type_pack_expansion_p = true;
3689 gcc_assert (TYPE_P (TREE_PURPOSE (arg)));
3690 cp_walk_tree (&TREE_PURPOSE (arg), &find_parameter_packs_r,
3691 &ppd, ppd.visited);
3693 if (parameter_packs == NULL_TREE)
3695 error ("base initializer expansion %<%T%> contains no parameter packs", arg);
3696 delete ppd.visited;
3697 return error_mark_node;
3700 if (TREE_VALUE (arg) != void_type_node)
3702 /* Collect the sets of parameter packs used in each of the
3703 initialization arguments. */
3704 for (value = TREE_VALUE (arg); value; value = TREE_CHAIN (value))
3706 /* Determine which parameter packs will be expanded in this
3707 argument. */
3708 cp_walk_tree (&TREE_VALUE (value), &find_parameter_packs_r,
3709 &ppd, ppd.visited);
3713 delete ppd.visited;
3715 /* Create the pack expansion type for the base type. */
3716 purpose = cxx_make_type (TYPE_PACK_EXPANSION);
3717 SET_PACK_EXPANSION_PATTERN (purpose, TREE_PURPOSE (arg));
3718 PACK_EXPANSION_PARAMETER_PACKS (purpose) = parameter_packs;
3720 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3721 they will rarely be compared to anything. */
3722 SET_TYPE_STRUCTURAL_EQUALITY (purpose);
3724 return tree_cons (purpose, TREE_VALUE (arg), NULL_TREE);
3727 if (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL)
3728 for_types = true;
3730 /* Build the PACK_EXPANSION_* node. */
3731 result = for_types
3732 ? cxx_make_type (TYPE_PACK_EXPANSION)
3733 : make_node (EXPR_PACK_EXPANSION);
3734 SET_PACK_EXPANSION_PATTERN (result, arg);
3735 if (TREE_CODE (result) == EXPR_PACK_EXPANSION)
3737 /* Propagate type and const-expression information. */
3738 TREE_TYPE (result) = TREE_TYPE (arg);
3739 TREE_CONSTANT (result) = TREE_CONSTANT (arg);
3740 /* Mark this read now, since the expansion might be length 0. */
3741 mark_exp_read (arg);
3743 else
3744 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3745 they will rarely be compared to anything. */
3746 SET_TYPE_STRUCTURAL_EQUALITY (result);
3748 /* Determine which parameter packs will be expanded. */
3749 ppd.parameter_packs = &parameter_packs;
3750 ppd.visited = new hash_set<tree>;
3751 ppd.type_pack_expansion_p = TYPE_P (arg);
3752 cp_walk_tree (&arg, &find_parameter_packs_r, &ppd, ppd.visited);
3753 delete ppd.visited;
3755 /* Make sure we found some parameter packs. */
3756 if (parameter_packs == NULL_TREE)
3758 if (TYPE_P (arg))
3759 error ("expansion pattern %<%T%> contains no argument packs", arg);
3760 else
3761 error ("expansion pattern %<%E%> contains no argument packs", arg);
3762 return error_mark_node;
3764 PACK_EXPANSION_PARAMETER_PACKS (result) = parameter_packs;
3766 PACK_EXPANSION_LOCAL_P (result) = at_function_scope_p ();
3768 return result;
3771 /* Checks T for any "bare" parameter packs, which have not yet been
3772 expanded, and issues an error if any are found. This operation can
3773 only be done on full expressions or types (e.g., an expression
3774 statement, "if" condition, etc.), because we could have expressions like:
3776 foo(f(g(h(args)))...)
3778 where "args" is a parameter pack. check_for_bare_parameter_packs
3779 should not be called for the subexpressions args, h(args),
3780 g(h(args)), or f(g(h(args))), because we would produce erroneous
3781 error messages.
3783 Returns TRUE and emits an error if there were bare parameter packs,
3784 returns FALSE otherwise. */
3785 bool
3786 check_for_bare_parameter_packs (tree t)
3788 tree parameter_packs = NULL_TREE;
3789 struct find_parameter_pack_data ppd;
3791 if (!processing_template_decl || !t || t == error_mark_node)
3792 return false;
3794 if (TREE_CODE (t) == TYPE_DECL)
3795 t = TREE_TYPE (t);
3797 ppd.parameter_packs = &parameter_packs;
3798 ppd.visited = new hash_set<tree>;
3799 ppd.type_pack_expansion_p = false;
3800 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3801 delete ppd.visited;
3803 if (parameter_packs)
3805 location_t loc = EXPR_LOC_OR_LOC (t, input_location);
3806 error_at (loc, "parameter packs not expanded with %<...%>:");
3807 while (parameter_packs)
3809 tree pack = TREE_VALUE (parameter_packs);
3810 tree name = NULL_TREE;
3812 if (TREE_CODE (pack) == TEMPLATE_TYPE_PARM
3813 || TREE_CODE (pack) == TEMPLATE_TEMPLATE_PARM)
3814 name = TYPE_NAME (pack);
3815 else if (TREE_CODE (pack) == TEMPLATE_PARM_INDEX)
3816 name = DECL_NAME (TEMPLATE_PARM_DECL (pack));
3817 else
3818 name = DECL_NAME (pack);
3820 if (name)
3821 inform (loc, " %qD", name);
3822 else
3823 inform (loc, " <anonymous>");
3825 parameter_packs = TREE_CHAIN (parameter_packs);
3828 return true;
3831 return false;
3834 /* Expand any parameter packs that occur in the template arguments in
3835 ARGS. */
3836 tree
3837 expand_template_argument_pack (tree args)
3839 if (args == error_mark_node)
3840 return error_mark_node;
3842 tree result_args = NULL_TREE;
3843 int in_arg, out_arg = 0, nargs = args ? TREE_VEC_LENGTH (args) : 0;
3844 int num_result_args = -1;
3845 int non_default_args_count = -1;
3847 /* First, determine if we need to expand anything, and the number of
3848 slots we'll need. */
3849 for (in_arg = 0; in_arg < nargs; ++in_arg)
3851 tree arg = TREE_VEC_ELT (args, in_arg);
3852 if (arg == NULL_TREE)
3853 return args;
3854 if (ARGUMENT_PACK_P (arg))
3856 int num_packed = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg));
3857 if (num_result_args < 0)
3858 num_result_args = in_arg + num_packed;
3859 else
3860 num_result_args += num_packed;
3862 else
3864 if (num_result_args >= 0)
3865 num_result_args++;
3869 /* If no expansion is necessary, we're done. */
3870 if (num_result_args < 0)
3871 return args;
3873 /* Expand arguments. */
3874 result_args = make_tree_vec (num_result_args);
3875 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (args))
3876 non_default_args_count =
3877 GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (args);
3878 for (in_arg = 0; in_arg < nargs; ++in_arg)
3880 tree arg = TREE_VEC_ELT (args, in_arg);
3881 if (ARGUMENT_PACK_P (arg))
3883 tree packed = ARGUMENT_PACK_ARGS (arg);
3884 int i, num_packed = TREE_VEC_LENGTH (packed);
3885 for (i = 0; i < num_packed; ++i, ++out_arg)
3886 TREE_VEC_ELT (result_args, out_arg) = TREE_VEC_ELT(packed, i);
3887 if (non_default_args_count > 0)
3888 non_default_args_count += num_packed - 1;
3890 else
3892 TREE_VEC_ELT (result_args, out_arg) = arg;
3893 ++out_arg;
3896 if (non_default_args_count >= 0)
3897 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (result_args, non_default_args_count);
3898 return result_args;
3901 /* Checks if DECL shadows a template parameter.
3903 [temp.local]: A template-parameter shall not be redeclared within its
3904 scope (including nested scopes).
3906 Emits an error and returns TRUE if the DECL shadows a parameter,
3907 returns FALSE otherwise. */
3909 bool
3910 check_template_shadow (tree decl)
3912 tree olddecl;
3914 /* If we're not in a template, we can't possibly shadow a template
3915 parameter. */
3916 if (!current_template_parms)
3917 return true;
3919 /* Figure out what we're shadowing. */
3920 if (TREE_CODE (decl) == OVERLOAD)
3921 decl = OVL_CURRENT (decl);
3922 olddecl = innermost_non_namespace_value (DECL_NAME (decl));
3924 /* If there's no previous binding for this name, we're not shadowing
3925 anything, let alone a template parameter. */
3926 if (!olddecl)
3927 return true;
3929 /* If we're not shadowing a template parameter, we're done. Note
3930 that OLDDECL might be an OVERLOAD (or perhaps even an
3931 ERROR_MARK), so we can't just blithely assume it to be a _DECL
3932 node. */
3933 if (!DECL_P (olddecl) || !DECL_TEMPLATE_PARM_P (olddecl))
3934 return true;
3936 /* We check for decl != olddecl to avoid bogus errors for using a
3937 name inside a class. We check TPFI to avoid duplicate errors for
3938 inline member templates. */
3939 if (decl == olddecl
3940 || (DECL_TEMPLATE_PARM_P (decl)
3941 && TEMPLATE_PARMS_FOR_INLINE (current_template_parms)))
3942 return true;
3944 /* Don't complain about the injected class name, as we've already
3945 complained about the class itself. */
3946 if (DECL_SELF_REFERENCE_P (decl))
3947 return false;
3949 if (DECL_TEMPLATE_PARM_P (decl))
3950 error ("declaration of template parameter %q+D shadows "
3951 "template parameter", decl);
3952 else
3953 error ("declaration of %q+#D shadows template parameter", decl);
3954 inform (DECL_SOURCE_LOCATION (olddecl),
3955 "template parameter %qD declared here", olddecl);
3956 return false;
3959 /* Return a new TEMPLATE_PARM_INDEX with the indicated INDEX, LEVEL,
3960 ORIG_LEVEL, DECL, and TYPE. */
3962 static tree
3963 build_template_parm_index (int index,
3964 int level,
3965 int orig_level,
3966 tree decl,
3967 tree type)
3969 tree t = make_node (TEMPLATE_PARM_INDEX);
3970 TEMPLATE_PARM_IDX (t) = index;
3971 TEMPLATE_PARM_LEVEL (t) = level;
3972 TEMPLATE_PARM_ORIG_LEVEL (t) = orig_level;
3973 TEMPLATE_PARM_DECL (t) = decl;
3974 TREE_TYPE (t) = type;
3975 TREE_CONSTANT (t) = TREE_CONSTANT (decl);
3976 TREE_READONLY (t) = TREE_READONLY (decl);
3978 return t;
3981 /* Find the canonical type parameter for the given template type
3982 parameter. Returns the canonical type parameter, which may be TYPE
3983 if no such parameter existed. */
3985 static tree
3986 canonical_type_parameter (tree type)
3988 tree list;
3989 int idx = TEMPLATE_TYPE_IDX (type);
3990 if (!canonical_template_parms)
3991 vec_alloc (canonical_template_parms, idx+1);
3993 while (canonical_template_parms->length () <= (unsigned)idx)
3994 vec_safe_push (canonical_template_parms, NULL_TREE);
3996 list = (*canonical_template_parms)[idx];
3997 while (list && !comptypes (type, TREE_VALUE (list), COMPARE_STRUCTURAL))
3998 list = TREE_CHAIN (list);
4000 if (list)
4001 return TREE_VALUE (list);
4002 else
4004 (*canonical_template_parms)[idx]
4005 = tree_cons (NULL_TREE, type,
4006 (*canonical_template_parms)[idx]);
4007 return type;
4011 /* Return a TEMPLATE_PARM_INDEX, similar to INDEX, but whose
4012 TEMPLATE_PARM_LEVEL has been decreased by LEVELS. If such a
4013 TEMPLATE_PARM_INDEX already exists, it is returned; otherwise, a
4014 new one is created. */
4016 static tree
4017 reduce_template_parm_level (tree index, tree type, int levels, tree args,
4018 tsubst_flags_t complain)
4020 if (TEMPLATE_PARM_DESCENDANTS (index) == NULL_TREE
4021 || (TEMPLATE_PARM_LEVEL (TEMPLATE_PARM_DESCENDANTS (index))
4022 != TEMPLATE_PARM_LEVEL (index) - levels)
4023 || !same_type_p (type, TREE_TYPE (TEMPLATE_PARM_DESCENDANTS (index))))
4025 tree orig_decl = TEMPLATE_PARM_DECL (index);
4026 tree decl, t;
4028 decl = build_decl (DECL_SOURCE_LOCATION (orig_decl),
4029 TREE_CODE (orig_decl), DECL_NAME (orig_decl), type);
4030 TREE_CONSTANT (decl) = TREE_CONSTANT (orig_decl);
4031 TREE_READONLY (decl) = TREE_READONLY (orig_decl);
4032 DECL_ARTIFICIAL (decl) = 1;
4033 SET_DECL_TEMPLATE_PARM_P (decl);
4035 t = build_template_parm_index (TEMPLATE_PARM_IDX (index),
4036 TEMPLATE_PARM_LEVEL (index) - levels,
4037 TEMPLATE_PARM_ORIG_LEVEL (index),
4038 decl, type);
4039 TEMPLATE_PARM_DESCENDANTS (index) = t;
4040 TEMPLATE_PARM_PARAMETER_PACK (t)
4041 = TEMPLATE_PARM_PARAMETER_PACK (index);
4043 /* Template template parameters need this. */
4044 if (TREE_CODE (decl) == TEMPLATE_DECL)
4046 DECL_TEMPLATE_RESULT (decl)
4047 = build_decl (DECL_SOURCE_LOCATION (decl),
4048 TYPE_DECL, DECL_NAME (decl), type);
4049 DECL_ARTIFICIAL (DECL_TEMPLATE_RESULT (decl)) = true;
4050 DECL_TEMPLATE_PARMS (decl) = tsubst_template_parms
4051 (DECL_TEMPLATE_PARMS (orig_decl), args, complain);
4055 return TEMPLATE_PARM_DESCENDANTS (index);
4058 /* Process information from new template parameter PARM and append it
4059 to the LIST being built. This new parameter is a non-type
4060 parameter iff IS_NON_TYPE is true. This new parameter is a
4061 parameter pack iff IS_PARAMETER_PACK is true. The location of PARM
4062 is in PARM_LOC. */
4064 tree
4065 process_template_parm (tree list, location_t parm_loc, tree parm,
4066 bool is_non_type, bool is_parameter_pack)
4068 tree decl = 0;
4069 int idx = 0;
4071 gcc_assert (TREE_CODE (parm) == TREE_LIST);
4072 tree defval = TREE_PURPOSE (parm);
4073 tree constr = TREE_TYPE (parm);
4075 if (list)
4077 tree p = tree_last (list);
4079 if (p && TREE_VALUE (p) != error_mark_node)
4081 p = TREE_VALUE (p);
4082 if (TREE_CODE (p) == TYPE_DECL || TREE_CODE (p) == TEMPLATE_DECL)
4083 idx = TEMPLATE_TYPE_IDX (TREE_TYPE (p));
4084 else
4085 idx = TEMPLATE_PARM_IDX (DECL_INITIAL (p));
4088 ++idx;
4091 if (is_non_type)
4093 parm = TREE_VALUE (parm);
4095 SET_DECL_TEMPLATE_PARM_P (parm);
4097 if (TREE_TYPE (parm) != error_mark_node)
4099 /* [temp.param]
4101 The top-level cv-qualifiers on the template-parameter are
4102 ignored when determining its type. */
4103 TREE_TYPE (parm) = TYPE_MAIN_VARIANT (TREE_TYPE (parm));
4104 if (invalid_nontype_parm_type_p (TREE_TYPE (parm), 1))
4105 TREE_TYPE (parm) = error_mark_node;
4106 else if (uses_parameter_packs (TREE_TYPE (parm))
4107 && !is_parameter_pack
4108 /* If we're in a nested template parameter list, the template
4109 template parameter could be a parameter pack. */
4110 && processing_template_parmlist == 1)
4112 /* This template parameter is not a parameter pack, but it
4113 should be. Complain about "bare" parameter packs. */
4114 check_for_bare_parameter_packs (TREE_TYPE (parm));
4116 /* Recover by calling this a parameter pack. */
4117 is_parameter_pack = true;
4121 /* A template parameter is not modifiable. */
4122 TREE_CONSTANT (parm) = 1;
4123 TREE_READONLY (parm) = 1;
4124 decl = build_decl (parm_loc,
4125 CONST_DECL, DECL_NAME (parm), TREE_TYPE (parm));
4126 TREE_CONSTANT (decl) = 1;
4127 TREE_READONLY (decl) = 1;
4128 DECL_INITIAL (parm) = DECL_INITIAL (decl)
4129 = build_template_parm_index (idx, processing_template_decl,
4130 processing_template_decl,
4131 decl, TREE_TYPE (parm));
4133 TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm))
4134 = is_parameter_pack;
4136 else
4138 tree t;
4139 parm = TREE_VALUE (TREE_VALUE (parm));
4141 if (parm && TREE_CODE (parm) == TEMPLATE_DECL)
4143 t = cxx_make_type (TEMPLATE_TEMPLATE_PARM);
4144 /* This is for distinguishing between real templates and template
4145 template parameters */
4146 TREE_TYPE (parm) = t;
4147 TREE_TYPE (DECL_TEMPLATE_RESULT (parm)) = t;
4148 decl = parm;
4150 else
4152 t = cxx_make_type (TEMPLATE_TYPE_PARM);
4153 /* parm is either IDENTIFIER_NODE or NULL_TREE. */
4154 decl = build_decl (parm_loc,
4155 TYPE_DECL, parm, t);
4158 TYPE_NAME (t) = decl;
4159 TYPE_STUB_DECL (t) = decl;
4160 parm = decl;
4161 TEMPLATE_TYPE_PARM_INDEX (t)
4162 = build_template_parm_index (idx, processing_template_decl,
4163 processing_template_decl,
4164 decl, TREE_TYPE (parm));
4165 TEMPLATE_TYPE_PARAMETER_PACK (t) = is_parameter_pack;
4166 TYPE_CANONICAL (t) = canonical_type_parameter (t);
4168 DECL_ARTIFICIAL (decl) = 1;
4169 SET_DECL_TEMPLATE_PARM_P (decl);
4171 /* Build requirements for the type/template parameter.
4172 This must be done after SET_DECL_TEMPLATE_PARM_P or
4173 process_template_parm could fail. */
4174 tree reqs = finish_shorthand_constraint (parm, constr);
4176 pushdecl (decl);
4178 /* Build the parameter node linking the parameter declaration,
4179 its default argument (if any), and its constraints (if any). */
4180 parm = build_tree_list (defval, parm);
4181 TEMPLATE_PARM_CONSTRAINTS (parm) = reqs;
4183 return chainon (list, parm);
4186 /* The end of a template parameter list has been reached. Process the
4187 tree list into a parameter vector, converting each parameter into a more
4188 useful form. Type parameters are saved as IDENTIFIER_NODEs, and others
4189 as PARM_DECLs. */
4191 tree
4192 end_template_parm_list (tree parms)
4194 int nparms;
4195 tree parm, next;
4196 tree saved_parmlist = make_tree_vec (list_length (parms));
4198 /* Pop the dummy parameter level and add the real one. */
4199 current_template_parms = TREE_CHAIN (current_template_parms);
4201 current_template_parms
4202 = tree_cons (size_int (processing_template_decl),
4203 saved_parmlist, current_template_parms);
4205 for (parm = parms, nparms = 0; parm; parm = next, nparms++)
4207 next = TREE_CHAIN (parm);
4208 TREE_VEC_ELT (saved_parmlist, nparms) = parm;
4209 TREE_CHAIN (parm) = NULL_TREE;
4212 --processing_template_parmlist;
4214 return saved_parmlist;
4217 // Explicitly indicate the end of the template parameter list. We assume
4218 // that the current template parameters have been constructed and/or
4219 // managed explicitly, as when creating new template template parameters
4220 // from a shorthand constraint.
4221 void
4222 end_template_parm_list ()
4224 --processing_template_parmlist;
4227 /* end_template_decl is called after a template declaration is seen. */
4229 void
4230 end_template_decl (void)
4232 reset_specialization ();
4234 if (! processing_template_decl)
4235 return;
4237 /* This matches the pushlevel in begin_template_parm_list. */
4238 finish_scope ();
4240 --processing_template_decl;
4241 current_template_parms = TREE_CHAIN (current_template_parms);
4244 /* Takes a TREE_LIST representing a template parameter and convert it
4245 into an argument suitable to be passed to the type substitution
4246 functions. Note that If the TREE_LIST contains an error_mark
4247 node, the returned argument is error_mark_node. */
4249 tree
4250 template_parm_to_arg (tree t)
4253 if (t == NULL_TREE
4254 || TREE_CODE (t) != TREE_LIST)
4255 return t;
4257 if (error_operand_p (TREE_VALUE (t)))
4258 return error_mark_node;
4260 t = TREE_VALUE (t);
4262 if (TREE_CODE (t) == TYPE_DECL
4263 || TREE_CODE (t) == TEMPLATE_DECL)
4265 t = TREE_TYPE (t);
4267 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
4269 /* Turn this argument into a TYPE_ARGUMENT_PACK
4270 with a single element, which expands T. */
4271 tree vec = make_tree_vec (1);
4272 if (CHECKING_P)
4273 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (vec, TREE_VEC_LENGTH (vec));
4275 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
4277 t = cxx_make_type (TYPE_ARGUMENT_PACK);
4278 SET_ARGUMENT_PACK_ARGS (t, vec);
4281 else
4283 t = DECL_INITIAL (t);
4285 if (TEMPLATE_PARM_PARAMETER_PACK (t))
4287 /* Turn this argument into a NONTYPE_ARGUMENT_PACK
4288 with a single element, which expands T. */
4289 tree vec = make_tree_vec (1);
4290 tree type = TREE_TYPE (TEMPLATE_PARM_DECL (t));
4291 if (CHECKING_P)
4292 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (vec, TREE_VEC_LENGTH (vec));
4294 t = convert_from_reference (t);
4295 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
4297 t = make_node (NONTYPE_ARGUMENT_PACK);
4298 SET_ARGUMENT_PACK_ARGS (t, vec);
4299 TREE_TYPE (t) = type;
4301 else
4302 t = convert_from_reference (t);
4304 return t;
4307 /* Given a single level of template parameters (a TREE_VEC), return it
4308 as a set of template arguments. */
4310 static tree
4311 template_parms_level_to_args (tree parms)
4313 tree a = copy_node (parms);
4314 TREE_TYPE (a) = NULL_TREE;
4315 for (int i = TREE_VEC_LENGTH (a) - 1; i >= 0; --i)
4316 TREE_VEC_ELT (a, i) = template_parm_to_arg (TREE_VEC_ELT (a, i));
4318 if (CHECKING_P)
4319 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (a, TREE_VEC_LENGTH (a));
4321 return a;
4324 /* Given a set of template parameters, return them as a set of template
4325 arguments. The template parameters are represented as a TREE_VEC, in
4326 the form documented in cp-tree.h for template arguments. */
4328 static tree
4329 template_parms_to_args (tree parms)
4331 tree header;
4332 tree args = NULL_TREE;
4333 int length = TMPL_PARMS_DEPTH (parms);
4334 int l = length;
4336 /* If there is only one level of template parameters, we do not
4337 create a TREE_VEC of TREE_VECs. Instead, we return a single
4338 TREE_VEC containing the arguments. */
4339 if (length > 1)
4340 args = make_tree_vec (length);
4342 for (header = parms; header; header = TREE_CHAIN (header))
4344 tree a = template_parms_level_to_args (TREE_VALUE (header));
4346 if (length > 1)
4347 TREE_VEC_ELT (args, --l) = a;
4348 else
4349 args = a;
4352 return args;
4355 /* Within the declaration of a template, return the currently active
4356 template parameters as an argument TREE_VEC. */
4358 static tree
4359 current_template_args (void)
4361 return template_parms_to_args (current_template_parms);
4364 /* Update the declared TYPE by doing any lookups which were thought to be
4365 dependent, but are not now that we know the SCOPE of the declarator. */
4367 tree
4368 maybe_update_decl_type (tree orig_type, tree scope)
4370 tree type = orig_type;
4372 if (type == NULL_TREE)
4373 return type;
4375 if (TREE_CODE (orig_type) == TYPE_DECL)
4376 type = TREE_TYPE (type);
4378 if (scope && TYPE_P (scope) && dependent_type_p (scope)
4379 && dependent_type_p (type)
4380 /* Don't bother building up the args in this case. */
4381 && TREE_CODE (type) != TEMPLATE_TYPE_PARM)
4383 /* tsubst in the args corresponding to the template parameters,
4384 including auto if present. Most things will be unchanged, but
4385 make_typename_type and tsubst_qualified_id will resolve
4386 TYPENAME_TYPEs and SCOPE_REFs that were previously dependent. */
4387 tree args = current_template_args ();
4388 tree auto_node = type_uses_auto (type);
4389 tree pushed;
4390 if (auto_node)
4392 tree auto_vec = make_tree_vec (1);
4393 TREE_VEC_ELT (auto_vec, 0) = auto_node;
4394 args = add_to_template_args (args, auto_vec);
4396 pushed = push_scope (scope);
4397 type = tsubst (type, args, tf_warning_or_error, NULL_TREE);
4398 if (pushed)
4399 pop_scope (scope);
4402 if (type == error_mark_node)
4403 return orig_type;
4405 if (TREE_CODE (orig_type) == TYPE_DECL)
4407 if (same_type_p (type, TREE_TYPE (orig_type)))
4408 type = orig_type;
4409 else
4410 type = TYPE_NAME (type);
4412 return type;
4415 /* Return a TEMPLATE_DECL corresponding to DECL, using the indicated
4416 template PARMS and constraints, CONSTR. If MEMBER_TEMPLATE_P is true,
4417 the new template is a member template. */
4419 tree
4420 build_template_decl (tree decl, tree parms, bool member_template_p)
4422 tree tmpl = build_lang_decl (TEMPLATE_DECL, DECL_NAME (decl), NULL_TREE);
4423 DECL_TEMPLATE_PARMS (tmpl) = parms;
4424 DECL_CONTEXT (tmpl) = DECL_CONTEXT (decl);
4425 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
4426 DECL_MEMBER_TEMPLATE_P (tmpl) = member_template_p;
4428 return tmpl;
4431 struct template_parm_data
4433 /* The level of the template parameters we are currently
4434 processing. */
4435 int level;
4437 /* The index of the specialization argument we are currently
4438 processing. */
4439 int current_arg;
4441 /* An array whose size is the number of template parameters. The
4442 elements are nonzero if the parameter has been used in any one
4443 of the arguments processed so far. */
4444 int* parms;
4446 /* An array whose size is the number of template arguments. The
4447 elements are nonzero if the argument makes use of template
4448 parameters of this level. */
4449 int* arg_uses_template_parms;
4452 /* Subroutine of push_template_decl used to see if each template
4453 parameter in a partial specialization is used in the explicit
4454 argument list. If T is of the LEVEL given in DATA (which is
4455 treated as a template_parm_data*), then DATA->PARMS is marked
4456 appropriately. */
4458 static int
4459 mark_template_parm (tree t, void* data)
4461 int level;
4462 int idx;
4463 struct template_parm_data* tpd = (struct template_parm_data*) data;
4465 template_parm_level_and_index (t, &level, &idx);
4467 if (level == tpd->level)
4469 tpd->parms[idx] = 1;
4470 tpd->arg_uses_template_parms[tpd->current_arg] = 1;
4473 /* In C++17 the type of a non-type argument is a deduced context. */
4474 if (cxx_dialect >= cxx1z
4475 && TREE_CODE (t) == TEMPLATE_PARM_INDEX)
4476 for_each_template_parm (TREE_TYPE (t),
4477 &mark_template_parm,
4478 data,
4479 NULL,
4480 /*include_nondeduced_p=*/false);
4482 /* Return zero so that for_each_template_parm will continue the
4483 traversal of the tree; we want to mark *every* template parm. */
4484 return 0;
4487 /* Process the partial specialization DECL. */
4489 static tree
4490 process_partial_specialization (tree decl)
4492 tree type = TREE_TYPE (decl);
4493 tree tinfo = get_template_info (decl);
4494 tree maintmpl = TI_TEMPLATE (tinfo);
4495 tree specargs = TI_ARGS (tinfo);
4496 tree inner_args = INNERMOST_TEMPLATE_ARGS (specargs);
4497 tree main_inner_parms = DECL_INNERMOST_TEMPLATE_PARMS (maintmpl);
4498 tree inner_parms;
4499 tree inst;
4500 int nargs = TREE_VEC_LENGTH (inner_args);
4501 int ntparms;
4502 int i;
4503 bool did_error_intro = false;
4504 struct template_parm_data tpd;
4505 struct template_parm_data tpd2;
4507 gcc_assert (current_template_parms);
4509 /* A concept cannot be specialized. */
4510 if (flag_concepts && variable_concept_p (maintmpl))
4512 error ("specialization of variable concept %q#D", maintmpl);
4513 return error_mark_node;
4516 inner_parms = INNERMOST_TEMPLATE_PARMS (current_template_parms);
4517 ntparms = TREE_VEC_LENGTH (inner_parms);
4519 /* We check that each of the template parameters given in the
4520 partial specialization is used in the argument list to the
4521 specialization. For example:
4523 template <class T> struct S;
4524 template <class T> struct S<T*>;
4526 The second declaration is OK because `T*' uses the template
4527 parameter T, whereas
4529 template <class T> struct S<int>;
4531 is no good. Even trickier is:
4533 template <class T>
4534 struct S1
4536 template <class U>
4537 struct S2;
4538 template <class U>
4539 struct S2<T>;
4542 The S2<T> declaration is actually invalid; it is a
4543 full-specialization. Of course,
4545 template <class U>
4546 struct S2<T (*)(U)>;
4548 or some such would have been OK. */
4549 tpd.level = TMPL_PARMS_DEPTH (current_template_parms);
4550 tpd.parms = XALLOCAVEC (int, ntparms);
4551 memset (tpd.parms, 0, sizeof (int) * ntparms);
4553 tpd.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4554 memset (tpd.arg_uses_template_parms, 0, sizeof (int) * nargs);
4555 for (i = 0; i < nargs; ++i)
4557 tpd.current_arg = i;
4558 for_each_template_parm (TREE_VEC_ELT (inner_args, i),
4559 &mark_template_parm,
4560 &tpd,
4561 NULL,
4562 /*include_nondeduced_p=*/false);
4564 for (i = 0; i < ntparms; ++i)
4565 if (tpd.parms[i] == 0)
4567 /* One of the template parms was not used in a deduced context in the
4568 specialization. */
4569 if (!did_error_intro)
4571 error ("template parameters not deducible in "
4572 "partial specialization:");
4573 did_error_intro = true;
4576 inform (input_location, " %qD",
4577 TREE_VALUE (TREE_VEC_ELT (inner_parms, i)));
4580 if (did_error_intro)
4581 return error_mark_node;
4583 /* [temp.class.spec]
4585 The argument list of the specialization shall not be identical to
4586 the implicit argument list of the primary template. */
4587 tree main_args
4588 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (maintmpl)));
4589 if (comp_template_args (inner_args, INNERMOST_TEMPLATE_ARGS (main_args))
4590 && (!flag_concepts
4591 || !strictly_subsumes (current_template_constraints (),
4592 get_constraints (maintmpl))))
4594 if (!flag_concepts)
4595 error ("partial specialization %q+D does not specialize "
4596 "any template arguments", decl);
4597 else
4598 error ("partial specialization %q+D does not specialize any "
4599 "template arguments and is not more constrained than", decl);
4600 inform (DECL_SOURCE_LOCATION (maintmpl), "primary template here");
4603 /* A partial specialization that replaces multiple parameters of the
4604 primary template with a pack expansion is less specialized for those
4605 parameters. */
4606 if (nargs < DECL_NTPARMS (maintmpl))
4608 error ("partial specialization is not more specialized than the "
4609 "primary template because it replaces multiple parameters "
4610 "with a pack expansion");
4611 inform (DECL_SOURCE_LOCATION (maintmpl), "primary template here");
4612 /* Avoid crash in process_partial_specialization. */
4613 return decl;
4616 /* If we aren't in a dependent class, we can actually try deduction. */
4617 else if (tpd.level == 1
4618 && !get_partial_spec_bindings (maintmpl, maintmpl, specargs))
4620 if (permerror (input_location, "partial specialization %qD is not "
4621 "more specialized than", decl))
4622 inform (DECL_SOURCE_LOCATION (maintmpl), "primary template %qD",
4623 maintmpl);
4626 /* [temp.class.spec]
4628 A partially specialized non-type argument expression shall not
4629 involve template parameters of the partial specialization except
4630 when the argument expression is a simple identifier.
4632 The type of a template parameter corresponding to a specialized
4633 non-type argument shall not be dependent on a parameter of the
4634 specialization.
4636 Also, we verify that pack expansions only occur at the
4637 end of the argument list. */
4638 gcc_assert (nargs == DECL_NTPARMS (maintmpl));
4639 tpd2.parms = 0;
4640 for (i = 0; i < nargs; ++i)
4642 tree parm = TREE_VALUE (TREE_VEC_ELT (main_inner_parms, i));
4643 tree arg = TREE_VEC_ELT (inner_args, i);
4644 tree packed_args = NULL_TREE;
4645 int j, len = 1;
4647 if (ARGUMENT_PACK_P (arg))
4649 /* Extract the arguments from the argument pack. We'll be
4650 iterating over these in the following loop. */
4651 packed_args = ARGUMENT_PACK_ARGS (arg);
4652 len = TREE_VEC_LENGTH (packed_args);
4655 for (j = 0; j < len; j++)
4657 if (packed_args)
4658 /* Get the Jth argument in the parameter pack. */
4659 arg = TREE_VEC_ELT (packed_args, j);
4661 if (PACK_EXPANSION_P (arg))
4663 /* Pack expansions must come at the end of the
4664 argument list. */
4665 if ((packed_args && j < len - 1)
4666 || (!packed_args && i < nargs - 1))
4668 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4669 error ("parameter pack argument %qE must be at the "
4670 "end of the template argument list", arg);
4671 else
4672 error ("parameter pack argument %qT must be at the "
4673 "end of the template argument list", arg);
4677 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4678 /* We only care about the pattern. */
4679 arg = PACK_EXPANSION_PATTERN (arg);
4681 if (/* These first two lines are the `non-type' bit. */
4682 !TYPE_P (arg)
4683 && TREE_CODE (arg) != TEMPLATE_DECL
4684 /* This next two lines are the `argument expression is not just a
4685 simple identifier' condition and also the `specialized
4686 non-type argument' bit. */
4687 && TREE_CODE (arg) != TEMPLATE_PARM_INDEX
4688 && !(REFERENCE_REF_P (arg)
4689 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_PARM_INDEX))
4691 if ((!packed_args && tpd.arg_uses_template_parms[i])
4692 || (packed_args && uses_template_parms (arg)))
4693 error ("template argument %qE involves template parameter(s)",
4694 arg);
4695 else
4697 /* Look at the corresponding template parameter,
4698 marking which template parameters its type depends
4699 upon. */
4700 tree type = TREE_TYPE (parm);
4702 if (!tpd2.parms)
4704 /* We haven't yet initialized TPD2. Do so now. */
4705 tpd2.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4706 /* The number of parameters here is the number in the
4707 main template, which, as checked in the assertion
4708 above, is NARGS. */
4709 tpd2.parms = XALLOCAVEC (int, nargs);
4710 tpd2.level =
4711 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (maintmpl));
4714 /* Mark the template parameters. But this time, we're
4715 looking for the template parameters of the main
4716 template, not in the specialization. */
4717 tpd2.current_arg = i;
4718 tpd2.arg_uses_template_parms[i] = 0;
4719 memset (tpd2.parms, 0, sizeof (int) * nargs);
4720 for_each_template_parm (type,
4721 &mark_template_parm,
4722 &tpd2,
4723 NULL,
4724 /*include_nondeduced_p=*/false);
4726 if (tpd2.arg_uses_template_parms [i])
4728 /* The type depended on some template parameters.
4729 If they are fully specialized in the
4730 specialization, that's OK. */
4731 int j;
4732 int count = 0;
4733 for (j = 0; j < nargs; ++j)
4734 if (tpd2.parms[j] != 0
4735 && tpd.arg_uses_template_parms [j])
4736 ++count;
4737 if (count != 0)
4738 error_n (input_location, count,
4739 "type %qT of template argument %qE depends "
4740 "on a template parameter",
4741 "type %qT of template argument %qE depends "
4742 "on template parameters",
4743 type,
4744 arg);
4751 /* We should only get here once. */
4752 if (TREE_CODE (decl) == TYPE_DECL)
4753 gcc_assert (!COMPLETE_TYPE_P (type));
4755 // Build the template decl.
4756 tree tmpl = build_template_decl (decl, current_template_parms,
4757 DECL_MEMBER_TEMPLATE_P (maintmpl));
4758 TREE_TYPE (tmpl) = type;
4759 DECL_TEMPLATE_RESULT (tmpl) = decl;
4760 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
4761 DECL_TEMPLATE_INFO (tmpl) = build_template_info (maintmpl, specargs);
4762 DECL_PRIMARY_TEMPLATE (tmpl) = maintmpl;
4764 /* Give template template parms a DECL_CONTEXT of the template
4765 for which they are a parameter. */
4766 for (i = 0; i < ntparms; ++i)
4768 tree parm = TREE_VALUE (TREE_VEC_ELT (inner_parms, i));
4769 if (TREE_CODE (parm) == TEMPLATE_DECL)
4770 DECL_CONTEXT (parm) = tmpl;
4773 if (VAR_P (decl))
4774 /* We didn't register this in check_explicit_specialization so we could
4775 wait until the constraints were set. */
4776 decl = register_specialization (decl, maintmpl, specargs, false, 0);
4777 else
4778 associate_classtype_constraints (type);
4780 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)
4781 = tree_cons (specargs, tmpl,
4782 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl));
4783 TREE_TYPE (DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)) = type;
4785 for (inst = DECL_TEMPLATE_INSTANTIATIONS (maintmpl); inst;
4786 inst = TREE_CHAIN (inst))
4788 tree instance = TREE_VALUE (inst);
4789 if (TYPE_P (instance)
4790 ? (COMPLETE_TYPE_P (instance)
4791 && CLASSTYPE_IMPLICIT_INSTANTIATION (instance))
4792 : DECL_TEMPLATE_INSTANTIATION (instance))
4794 tree spec = most_specialized_partial_spec (instance, tf_none);
4795 tree inst_decl = (DECL_P (instance)
4796 ? instance : TYPE_NAME (instance));
4797 if (!spec)
4798 /* OK */;
4799 else if (spec == error_mark_node)
4800 permerror (input_location,
4801 "declaration of %qD ambiguates earlier template "
4802 "instantiation for %qD", decl, inst_decl);
4803 else if (TREE_VALUE (spec) == tmpl)
4804 permerror (input_location,
4805 "partial specialization of %qD after instantiation "
4806 "of %qD", decl, inst_decl);
4810 return decl;
4813 /* PARM is a template parameter of some form; return the corresponding
4814 TEMPLATE_PARM_INDEX. */
4816 static tree
4817 get_template_parm_index (tree parm)
4819 if (TREE_CODE (parm) == PARM_DECL
4820 || TREE_CODE (parm) == CONST_DECL)
4821 parm = DECL_INITIAL (parm);
4822 else if (TREE_CODE (parm) == TYPE_DECL
4823 || TREE_CODE (parm) == TEMPLATE_DECL)
4824 parm = TREE_TYPE (parm);
4825 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
4826 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM
4827 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
4828 parm = TEMPLATE_TYPE_PARM_INDEX (parm);
4829 gcc_assert (TREE_CODE (parm) == TEMPLATE_PARM_INDEX);
4830 return parm;
4833 /* Subroutine of fixed_parameter_pack_p below. Look for any template
4834 parameter packs used by the template parameter PARM. */
4836 static void
4837 fixed_parameter_pack_p_1 (tree parm, struct find_parameter_pack_data *ppd)
4839 /* A type parm can't refer to another parm. */
4840 if (TREE_CODE (parm) == TYPE_DECL)
4841 return;
4842 else if (TREE_CODE (parm) == PARM_DECL)
4844 cp_walk_tree (&TREE_TYPE (parm), &find_parameter_packs_r,
4845 ppd, ppd->visited);
4846 return;
4849 gcc_assert (TREE_CODE (parm) == TEMPLATE_DECL);
4851 tree vec = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (parm));
4852 for (int i = 0; i < TREE_VEC_LENGTH (vec); ++i)
4853 fixed_parameter_pack_p_1 (TREE_VALUE (TREE_VEC_ELT (vec, i)), ppd);
4856 /* PARM is a template parameter pack. Return any parameter packs used in
4857 its type or the type of any of its template parameters. If there are
4858 any such packs, it will be instantiated into a fixed template parameter
4859 list by partial instantiation rather than be fully deduced. */
4861 tree
4862 fixed_parameter_pack_p (tree parm)
4864 /* This can only be true in a member template. */
4865 if (TEMPLATE_PARM_ORIG_LEVEL (get_template_parm_index (parm)) < 2)
4866 return NULL_TREE;
4867 /* This can only be true for a parameter pack. */
4868 if (!template_parameter_pack_p (parm))
4869 return NULL_TREE;
4870 /* A type parm can't refer to another parm. */
4871 if (TREE_CODE (parm) == TYPE_DECL)
4872 return NULL_TREE;
4874 tree parameter_packs = NULL_TREE;
4875 struct find_parameter_pack_data ppd;
4876 ppd.parameter_packs = &parameter_packs;
4877 ppd.visited = new hash_set<tree>;
4878 ppd.type_pack_expansion_p = false;
4880 fixed_parameter_pack_p_1 (parm, &ppd);
4882 delete ppd.visited;
4883 return parameter_packs;
4886 /* Check that a template declaration's use of default arguments and
4887 parameter packs is not invalid. Here, PARMS are the template
4888 parameters. IS_PRIMARY is true if DECL is the thing declared by
4889 a primary template. IS_PARTIAL is true if DECL is a partial
4890 specialization.
4892 IS_FRIEND_DECL is nonzero if DECL is a friend function template
4893 declaration (but not a definition); 1 indicates a declaration, 2
4894 indicates a redeclaration. When IS_FRIEND_DECL=2, no errors are
4895 emitted for extraneous default arguments.
4897 Returns TRUE if there were no errors found, FALSE otherwise. */
4899 bool
4900 check_default_tmpl_args (tree decl, tree parms, bool is_primary,
4901 bool is_partial, int is_friend_decl)
4903 const char *msg;
4904 int last_level_to_check;
4905 tree parm_level;
4906 bool no_errors = true;
4908 /* [temp.param]
4910 A default template-argument shall not be specified in a
4911 function template declaration or a function template definition, nor
4912 in the template-parameter-list of the definition of a member of a
4913 class template. */
4915 if (TREE_CODE (CP_DECL_CONTEXT (decl)) == FUNCTION_DECL
4916 || (TREE_CODE (decl) == FUNCTION_DECL && DECL_LOCAL_FUNCTION_P (decl)))
4917 /* You can't have a function template declaration in a local
4918 scope, nor you can you define a member of a class template in a
4919 local scope. */
4920 return true;
4922 if ((TREE_CODE (decl) == TYPE_DECL
4923 && TREE_TYPE (decl)
4924 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
4925 || (TREE_CODE (decl) == FUNCTION_DECL
4926 && LAMBDA_FUNCTION_P (decl)))
4927 /* A lambda doesn't have an explicit declaration; don't complain
4928 about the parms of the enclosing class. */
4929 return true;
4931 if (current_class_type
4932 && !TYPE_BEING_DEFINED (current_class_type)
4933 && DECL_LANG_SPECIFIC (decl)
4934 && DECL_DECLARES_FUNCTION_P (decl)
4935 /* If this is either a friend defined in the scope of the class
4936 or a member function. */
4937 && (DECL_FUNCTION_MEMBER_P (decl)
4938 ? same_type_p (DECL_CONTEXT (decl), current_class_type)
4939 : DECL_FRIEND_CONTEXT (decl)
4940 ? same_type_p (DECL_FRIEND_CONTEXT (decl), current_class_type)
4941 : false)
4942 /* And, if it was a member function, it really was defined in
4943 the scope of the class. */
4944 && (!DECL_FUNCTION_MEMBER_P (decl)
4945 || DECL_INITIALIZED_IN_CLASS_P (decl)))
4946 /* We already checked these parameters when the template was
4947 declared, so there's no need to do it again now. This function
4948 was defined in class scope, but we're processing its body now
4949 that the class is complete. */
4950 return true;
4952 /* Core issue 226 (C++0x only): the following only applies to class
4953 templates. */
4954 if (is_primary
4955 && ((cxx_dialect == cxx98) || TREE_CODE (decl) != FUNCTION_DECL))
4957 /* [temp.param]
4959 If a template-parameter has a default template-argument, all
4960 subsequent template-parameters shall have a default
4961 template-argument supplied. */
4962 for (parm_level = parms; parm_level; parm_level = TREE_CHAIN (parm_level))
4964 tree inner_parms = TREE_VALUE (parm_level);
4965 int ntparms = TREE_VEC_LENGTH (inner_parms);
4966 int seen_def_arg_p = 0;
4967 int i;
4969 for (i = 0; i < ntparms; ++i)
4971 tree parm = TREE_VEC_ELT (inner_parms, i);
4973 if (parm == error_mark_node)
4974 continue;
4976 if (TREE_PURPOSE (parm))
4977 seen_def_arg_p = 1;
4978 else if (seen_def_arg_p
4979 && !template_parameter_pack_p (TREE_VALUE (parm)))
4981 error ("no default argument for %qD", TREE_VALUE (parm));
4982 /* For better subsequent error-recovery, we indicate that
4983 there should have been a default argument. */
4984 TREE_PURPOSE (parm) = error_mark_node;
4985 no_errors = false;
4987 else if (!is_partial
4988 && !is_friend_decl
4989 /* Don't complain about an enclosing partial
4990 specialization. */
4991 && parm_level == parms
4992 && TREE_CODE (decl) == TYPE_DECL
4993 && i < ntparms - 1
4994 && template_parameter_pack_p (TREE_VALUE (parm))
4995 /* A fixed parameter pack will be partially
4996 instantiated into a fixed length list. */
4997 && !fixed_parameter_pack_p (TREE_VALUE (parm)))
4999 /* A primary class template can only have one
5000 parameter pack, at the end of the template
5001 parameter list. */
5003 error ("parameter pack %q+D must be at the end of the"
5004 " template parameter list", TREE_VALUE (parm));
5006 TREE_VALUE (TREE_VEC_ELT (inner_parms, i))
5007 = error_mark_node;
5008 no_errors = false;
5014 if (((cxx_dialect == cxx98) && TREE_CODE (decl) != TYPE_DECL)
5015 || is_partial
5016 || !is_primary
5017 || is_friend_decl)
5018 /* For an ordinary class template, default template arguments are
5019 allowed at the innermost level, e.g.:
5020 template <class T = int>
5021 struct S {};
5022 but, in a partial specialization, they're not allowed even
5023 there, as we have in [temp.class.spec]:
5025 The template parameter list of a specialization shall not
5026 contain default template argument values.
5028 So, for a partial specialization, or for a function template
5029 (in C++98/C++03), we look at all of them. */
5031 else
5032 /* But, for a primary class template that is not a partial
5033 specialization we look at all template parameters except the
5034 innermost ones. */
5035 parms = TREE_CHAIN (parms);
5037 /* Figure out what error message to issue. */
5038 if (is_friend_decl == 2)
5039 msg = G_("default template arguments may not be used in function template "
5040 "friend re-declaration");
5041 else if (is_friend_decl)
5042 msg = G_("default template arguments may not be used in function template "
5043 "friend declarations");
5044 else if (TREE_CODE (decl) == FUNCTION_DECL && (cxx_dialect == cxx98))
5045 msg = G_("default template arguments may not be used in function templates "
5046 "without -std=c++11 or -std=gnu++11");
5047 else if (is_partial)
5048 msg = G_("default template arguments may not be used in "
5049 "partial specializations");
5050 else if (current_class_type && CLASSTYPE_IS_TEMPLATE (current_class_type))
5051 msg = G_("default argument for template parameter for class enclosing %qD");
5052 else
5053 /* Per [temp.param]/9, "A default template-argument shall not be
5054 specified in the template-parameter-lists of the definition of
5055 a member of a class template that appears outside of the member's
5056 class.", thus if we aren't handling a member of a class template
5057 there is no need to examine the parameters. */
5058 return true;
5060 if (current_class_type && TYPE_BEING_DEFINED (current_class_type))
5061 /* If we're inside a class definition, there's no need to
5062 examine the parameters to the class itself. On the one
5063 hand, they will be checked when the class is defined, and,
5064 on the other, default arguments are valid in things like:
5065 template <class T = double>
5066 struct S { template <class U> void f(U); };
5067 Here the default argument for `S' has no bearing on the
5068 declaration of `f'. */
5069 last_level_to_check = template_class_depth (current_class_type) + 1;
5070 else
5071 /* Check everything. */
5072 last_level_to_check = 0;
5074 for (parm_level = parms;
5075 parm_level && TMPL_PARMS_DEPTH (parm_level) >= last_level_to_check;
5076 parm_level = TREE_CHAIN (parm_level))
5078 tree inner_parms = TREE_VALUE (parm_level);
5079 int i;
5080 int ntparms;
5082 ntparms = TREE_VEC_LENGTH (inner_parms);
5083 for (i = 0; i < ntparms; ++i)
5085 if (TREE_VEC_ELT (inner_parms, i) == error_mark_node)
5086 continue;
5088 if (TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)))
5090 if (msg)
5092 no_errors = false;
5093 if (is_friend_decl == 2)
5094 return no_errors;
5096 error (msg, decl);
5097 msg = 0;
5100 /* Clear out the default argument so that we are not
5101 confused later. */
5102 TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)) = NULL_TREE;
5106 /* At this point, if we're still interested in issuing messages,
5107 they must apply to classes surrounding the object declared. */
5108 if (msg)
5109 msg = G_("default argument for template parameter for class "
5110 "enclosing %qD");
5113 return no_errors;
5116 /* Worker for push_template_decl_real, called via
5117 for_each_template_parm. DATA is really an int, indicating the
5118 level of the parameters we are interested in. If T is a template
5119 parameter of that level, return nonzero. */
5121 static int
5122 template_parm_this_level_p (tree t, void* data)
5124 int this_level = *(int *)data;
5125 int level;
5127 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
5128 level = TEMPLATE_PARM_LEVEL (t);
5129 else
5130 level = TEMPLATE_TYPE_LEVEL (t);
5131 return level == this_level;
5134 /* Worker for uses_outer_template_parms, called via for_each_template_parm.
5135 DATA is really an int, indicating the innermost outer level of parameters.
5136 If T is a template parameter of that level or further out, return
5137 nonzero. */
5139 static int
5140 template_parm_outer_level (tree t, void *data)
5142 int this_level = *(int *)data;
5143 int level;
5145 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
5146 level = TEMPLATE_PARM_LEVEL (t);
5147 else
5148 level = TEMPLATE_TYPE_LEVEL (t);
5149 return level <= this_level;
5152 /* Creates a TEMPLATE_DECL for the indicated DECL using the template
5153 parameters given by current_template_args, or reuses a
5154 previously existing one, if appropriate. Returns the DECL, or an
5155 equivalent one, if it is replaced via a call to duplicate_decls.
5157 If IS_FRIEND is true, DECL is a friend declaration. */
5159 tree
5160 push_template_decl_real (tree decl, bool is_friend)
5162 tree tmpl;
5163 tree args;
5164 tree info;
5165 tree ctx;
5166 bool is_primary;
5167 bool is_partial;
5168 int new_template_p = 0;
5169 /* True if the template is a member template, in the sense of
5170 [temp.mem]. */
5171 bool member_template_p = false;
5173 if (decl == error_mark_node || !current_template_parms)
5174 return error_mark_node;
5176 /* See if this is a partial specialization. */
5177 is_partial = ((DECL_IMPLICIT_TYPEDEF_P (decl)
5178 && TREE_CODE (TREE_TYPE (decl)) != ENUMERAL_TYPE
5179 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
5180 || (VAR_P (decl)
5181 && DECL_LANG_SPECIFIC (decl)
5182 && DECL_TEMPLATE_SPECIALIZATION (decl)
5183 && TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (decl))));
5185 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_FRIEND_P (decl))
5186 is_friend = true;
5188 if (is_friend)
5189 /* For a friend, we want the context of the friend function, not
5190 the type of which it is a friend. */
5191 ctx = CP_DECL_CONTEXT (decl);
5192 else if (CP_DECL_CONTEXT (decl)
5193 && TREE_CODE (CP_DECL_CONTEXT (decl)) != NAMESPACE_DECL)
5194 /* In the case of a virtual function, we want the class in which
5195 it is defined. */
5196 ctx = CP_DECL_CONTEXT (decl);
5197 else
5198 /* Otherwise, if we're currently defining some class, the DECL
5199 is assumed to be a member of the class. */
5200 ctx = current_scope ();
5202 if (ctx && TREE_CODE (ctx) == NAMESPACE_DECL)
5203 ctx = NULL_TREE;
5205 if (!DECL_CONTEXT (decl))
5206 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
5208 /* See if this is a primary template. */
5209 if (is_friend && ctx
5210 && uses_template_parms_level (ctx, processing_template_decl))
5211 /* A friend template that specifies a class context, i.e.
5212 template <typename T> friend void A<T>::f();
5213 is not primary. */
5214 is_primary = false;
5215 else if (TREE_CODE (decl) == TYPE_DECL
5216 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
5217 is_primary = false;
5218 else
5219 is_primary = template_parm_scope_p ();
5221 if (is_primary)
5223 warning (OPT_Wtemplates, "template %qD declared", decl);
5225 if (DECL_CLASS_SCOPE_P (decl))
5226 member_template_p = true;
5227 if (TREE_CODE (decl) == TYPE_DECL
5228 && anon_aggrname_p (DECL_NAME (decl)))
5230 error ("template class without a name");
5231 return error_mark_node;
5233 else if (TREE_CODE (decl) == FUNCTION_DECL)
5235 if (member_template_p)
5237 if (DECL_OVERRIDE_P (decl) || DECL_FINAL_P (decl))
5238 error ("member template %qD may not have virt-specifiers", decl);
5240 if (DECL_DESTRUCTOR_P (decl))
5242 /* [temp.mem]
5244 A destructor shall not be a member template. */
5245 error ("destructor %qD declared as member template", decl);
5246 return error_mark_node;
5248 if (NEW_DELETE_OPNAME_P (DECL_NAME (decl))
5249 && (!prototype_p (TREE_TYPE (decl))
5250 || TYPE_ARG_TYPES (TREE_TYPE (decl)) == void_list_node
5251 || !TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (decl)))
5252 || (TREE_CHAIN (TYPE_ARG_TYPES ((TREE_TYPE (decl))))
5253 == void_list_node)))
5255 /* [basic.stc.dynamic.allocation]
5257 An allocation function can be a function
5258 template. ... Template allocation functions shall
5259 have two or more parameters. */
5260 error ("invalid template declaration of %qD", decl);
5261 return error_mark_node;
5264 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
5265 && CLASS_TYPE_P (TREE_TYPE (decl)))
5267 /* Class template, set TEMPLATE_TYPE_PARM_FOR_CLASS. */
5268 tree parms = INNERMOST_TEMPLATE_PARMS (current_template_parms);
5269 for (int i = 0; i < TREE_VEC_LENGTH (parms); ++i)
5271 tree t = TREE_VALUE (TREE_VEC_ELT (parms, i));
5272 if (TREE_CODE (t) == TYPE_DECL)
5273 t = TREE_TYPE (t);
5274 if (TREE_CODE (t) == TEMPLATE_TYPE_PARM)
5275 TEMPLATE_TYPE_PARM_FOR_CLASS (t) = true;
5278 else if (TREE_CODE (decl) == TYPE_DECL
5279 && TYPE_DECL_ALIAS_P (decl))
5280 /* alias-declaration */
5281 gcc_assert (!DECL_ARTIFICIAL (decl));
5282 else if (VAR_P (decl))
5283 /* C++14 variable template. */;
5284 else
5286 error ("template declaration of %q#D", decl);
5287 return error_mark_node;
5291 /* Check to see that the rules regarding the use of default
5292 arguments are not being violated. */
5293 check_default_tmpl_args (decl, current_template_parms,
5294 is_primary, is_partial, /*is_friend_decl=*/0);
5296 /* Ensure that there are no parameter packs in the type of this
5297 declaration that have not been expanded. */
5298 if (TREE_CODE (decl) == FUNCTION_DECL)
5300 /* Check each of the arguments individually to see if there are
5301 any bare parameter packs. */
5302 tree type = TREE_TYPE (decl);
5303 tree arg = DECL_ARGUMENTS (decl);
5304 tree argtype = TYPE_ARG_TYPES (type);
5306 while (arg && argtype)
5308 if (!DECL_PACK_P (arg)
5309 && check_for_bare_parameter_packs (TREE_TYPE (arg)))
5311 /* This is a PARM_DECL that contains unexpanded parameter
5312 packs. We have already complained about this in the
5313 check_for_bare_parameter_packs call, so just replace
5314 these types with ERROR_MARK_NODE. */
5315 TREE_TYPE (arg) = error_mark_node;
5316 TREE_VALUE (argtype) = error_mark_node;
5319 arg = DECL_CHAIN (arg);
5320 argtype = TREE_CHAIN (argtype);
5323 /* Check for bare parameter packs in the return type and the
5324 exception specifiers. */
5325 if (check_for_bare_parameter_packs (TREE_TYPE (type)))
5326 /* Errors were already issued, set return type to int
5327 as the frontend doesn't expect error_mark_node as
5328 the return type. */
5329 TREE_TYPE (type) = integer_type_node;
5330 if (check_for_bare_parameter_packs (TYPE_RAISES_EXCEPTIONS (type)))
5331 TYPE_RAISES_EXCEPTIONS (type) = NULL_TREE;
5333 else if (check_for_bare_parameter_packs ((TREE_CODE (decl) == TYPE_DECL
5334 && TYPE_DECL_ALIAS_P (decl))
5335 ? DECL_ORIGINAL_TYPE (decl)
5336 : TREE_TYPE (decl)))
5338 TREE_TYPE (decl) = error_mark_node;
5339 return error_mark_node;
5342 if (is_partial)
5343 return process_partial_specialization (decl);
5345 args = current_template_args ();
5347 if (!ctx
5348 || TREE_CODE (ctx) == FUNCTION_DECL
5349 || (CLASS_TYPE_P (ctx) && TYPE_BEING_DEFINED (ctx))
5350 || (TREE_CODE (decl) == TYPE_DECL
5351 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
5352 || (is_friend && !DECL_TEMPLATE_INFO (decl)))
5354 if (DECL_LANG_SPECIFIC (decl)
5355 && DECL_TEMPLATE_INFO (decl)
5356 && DECL_TI_TEMPLATE (decl))
5357 tmpl = DECL_TI_TEMPLATE (decl);
5358 /* If DECL is a TYPE_DECL for a class-template, then there won't
5359 be DECL_LANG_SPECIFIC. The information equivalent to
5360 DECL_TEMPLATE_INFO is found in TYPE_TEMPLATE_INFO instead. */
5361 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
5362 && TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
5363 && TYPE_TI_TEMPLATE (TREE_TYPE (decl)))
5365 /* Since a template declaration already existed for this
5366 class-type, we must be redeclaring it here. Make sure
5367 that the redeclaration is valid. */
5368 redeclare_class_template (TREE_TYPE (decl),
5369 current_template_parms,
5370 current_template_constraints ());
5371 /* We don't need to create a new TEMPLATE_DECL; just use the
5372 one we already had. */
5373 tmpl = TYPE_TI_TEMPLATE (TREE_TYPE (decl));
5375 else
5377 tmpl = build_template_decl (decl, current_template_parms,
5378 member_template_p);
5379 new_template_p = 1;
5381 if (DECL_LANG_SPECIFIC (decl)
5382 && DECL_TEMPLATE_SPECIALIZATION (decl))
5384 /* A specialization of a member template of a template
5385 class. */
5386 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
5387 DECL_TEMPLATE_INFO (tmpl) = DECL_TEMPLATE_INFO (decl);
5388 DECL_TEMPLATE_INFO (decl) = NULL_TREE;
5392 else
5394 tree a, t, current, parms;
5395 int i;
5396 tree tinfo = get_template_info (decl);
5398 if (!tinfo)
5400 error ("template definition of non-template %q#D", decl);
5401 return error_mark_node;
5404 tmpl = TI_TEMPLATE (tinfo);
5406 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
5407 && DECL_TEMPLATE_INFO (decl) && DECL_TI_ARGS (decl)
5408 && DECL_TEMPLATE_SPECIALIZATION (decl)
5409 && DECL_MEMBER_TEMPLATE_P (tmpl))
5411 tree new_tmpl;
5413 /* The declaration is a specialization of a member
5414 template, declared outside the class. Therefore, the
5415 innermost template arguments will be NULL, so we
5416 replace them with the arguments determined by the
5417 earlier call to check_explicit_specialization. */
5418 args = DECL_TI_ARGS (decl);
5420 new_tmpl
5421 = build_template_decl (decl, current_template_parms,
5422 member_template_p);
5423 DECL_TEMPLATE_RESULT (new_tmpl) = decl;
5424 TREE_TYPE (new_tmpl) = TREE_TYPE (decl);
5425 DECL_TI_TEMPLATE (decl) = new_tmpl;
5426 SET_DECL_TEMPLATE_SPECIALIZATION (new_tmpl);
5427 DECL_TEMPLATE_INFO (new_tmpl)
5428 = build_template_info (tmpl, args);
5430 register_specialization (new_tmpl,
5431 most_general_template (tmpl),
5432 args,
5433 is_friend, 0);
5434 return decl;
5437 /* Make sure the template headers we got make sense. */
5439 parms = DECL_TEMPLATE_PARMS (tmpl);
5440 i = TMPL_PARMS_DEPTH (parms);
5441 if (TMPL_ARGS_DEPTH (args) != i)
5443 error ("expected %d levels of template parms for %q#D, got %d",
5444 i, decl, TMPL_ARGS_DEPTH (args));
5445 DECL_INTERFACE_KNOWN (decl) = 1;
5446 return error_mark_node;
5448 else
5449 for (current = decl; i > 0; --i, parms = TREE_CHAIN (parms))
5451 a = TMPL_ARGS_LEVEL (args, i);
5452 t = INNERMOST_TEMPLATE_PARMS (parms);
5454 if (TREE_VEC_LENGTH (t) != TREE_VEC_LENGTH (a))
5456 if (current == decl)
5457 error ("got %d template parameters for %q#D",
5458 TREE_VEC_LENGTH (a), decl);
5459 else
5460 error ("got %d template parameters for %q#T",
5461 TREE_VEC_LENGTH (a), current);
5462 error (" but %d required", TREE_VEC_LENGTH (t));
5463 /* Avoid crash in import_export_decl. */
5464 DECL_INTERFACE_KNOWN (decl) = 1;
5465 return error_mark_node;
5468 if (current == decl)
5469 current = ctx;
5470 else if (current == NULL_TREE)
5471 /* Can happen in erroneous input. */
5472 break;
5473 else
5474 current = get_containing_scope (current);
5477 /* Check that the parms are used in the appropriate qualifying scopes
5478 in the declarator. */
5479 if (!comp_template_args
5480 (TI_ARGS (tinfo),
5481 TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl)))))
5483 error ("\
5484 template arguments to %qD do not match original template %qD",
5485 decl, DECL_TEMPLATE_RESULT (tmpl));
5486 if (!uses_template_parms (TI_ARGS (tinfo)))
5487 inform (input_location, "use template<> for an explicit specialization");
5488 /* Avoid crash in import_export_decl. */
5489 DECL_INTERFACE_KNOWN (decl) = 1;
5490 return error_mark_node;
5494 DECL_TEMPLATE_RESULT (tmpl) = decl;
5495 TREE_TYPE (tmpl) = TREE_TYPE (decl);
5497 /* Push template declarations for global functions and types. Note
5498 that we do not try to push a global template friend declared in a
5499 template class; such a thing may well depend on the template
5500 parameters of the class. */
5501 if (new_template_p && !ctx
5502 && !(is_friend && template_class_depth (current_class_type) > 0))
5504 tmpl = pushdecl_namespace_level (tmpl, is_friend);
5505 if (tmpl == error_mark_node)
5506 return error_mark_node;
5508 /* Hide template friend classes that haven't been declared yet. */
5509 if (is_friend && TREE_CODE (decl) == TYPE_DECL)
5511 DECL_ANTICIPATED (tmpl) = 1;
5512 DECL_FRIEND_P (tmpl) = 1;
5516 if (is_primary)
5518 tree parms = DECL_TEMPLATE_PARMS (tmpl);
5519 int i;
5521 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
5522 if (DECL_CONV_FN_P (tmpl))
5524 int depth = TMPL_PARMS_DEPTH (parms);
5526 /* It is a conversion operator. See if the type converted to
5527 depends on innermost template operands. */
5529 if (uses_template_parms_level (TREE_TYPE (TREE_TYPE (tmpl)),
5530 depth))
5531 DECL_TEMPLATE_CONV_FN_P (tmpl) = 1;
5534 /* Give template template parms a DECL_CONTEXT of the template
5535 for which they are a parameter. */
5536 parms = INNERMOST_TEMPLATE_PARMS (parms);
5537 for (i = TREE_VEC_LENGTH (parms) - 1; i >= 0; --i)
5539 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
5540 if (TREE_CODE (parm) == TEMPLATE_DECL)
5541 DECL_CONTEXT (parm) = tmpl;
5544 if (TREE_CODE (decl) == TYPE_DECL
5545 && TYPE_DECL_ALIAS_P (decl)
5546 && complex_alias_template_p (tmpl))
5547 TEMPLATE_DECL_COMPLEX_ALIAS_P (tmpl) = true;
5550 /* The DECL_TI_ARGS of DECL contains full set of arguments referring
5551 back to its most general template. If TMPL is a specialization,
5552 ARGS may only have the innermost set of arguments. Add the missing
5553 argument levels if necessary. */
5554 if (DECL_TEMPLATE_INFO (tmpl))
5555 args = add_outermost_template_args (DECL_TI_ARGS (tmpl), args);
5557 info = build_template_info (tmpl, args);
5559 if (DECL_IMPLICIT_TYPEDEF_P (decl))
5560 SET_TYPE_TEMPLATE_INFO (TREE_TYPE (tmpl), info);
5561 else
5563 if (is_primary && !DECL_LANG_SPECIFIC (decl))
5564 retrofit_lang_decl (decl);
5565 if (DECL_LANG_SPECIFIC (decl))
5566 DECL_TEMPLATE_INFO (decl) = info;
5569 if (flag_implicit_templates
5570 && !is_friend
5571 && TREE_PUBLIC (decl)
5572 && VAR_OR_FUNCTION_DECL_P (decl))
5573 /* Set DECL_COMDAT on template instantiations; if we force
5574 them to be emitted by explicit instantiation or -frepo,
5575 mark_needed will tell cgraph to do the right thing. */
5576 DECL_COMDAT (decl) = true;
5578 return DECL_TEMPLATE_RESULT (tmpl);
5581 tree
5582 push_template_decl (tree decl)
5584 return push_template_decl_real (decl, false);
5587 /* FN is an inheriting constructor that inherits from the constructor
5588 template INHERITED; turn FN into a constructor template with a matching
5589 template header. */
5591 tree
5592 add_inherited_template_parms (tree fn, tree inherited)
5594 tree inner_parms
5595 = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (inherited));
5596 inner_parms = copy_node (inner_parms);
5597 tree parms
5598 = tree_cons (size_int (processing_template_decl + 1),
5599 inner_parms, current_template_parms);
5600 tree tmpl = build_template_decl (fn, parms, /*member*/true);
5601 tree args = template_parms_to_args (parms);
5602 DECL_TEMPLATE_INFO (fn) = build_template_info (tmpl, args);
5603 TREE_TYPE (tmpl) = TREE_TYPE (fn);
5604 DECL_TEMPLATE_RESULT (tmpl) = fn;
5605 DECL_ARTIFICIAL (tmpl) = true;
5606 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
5607 return tmpl;
5610 /* Called when a class template TYPE is redeclared with the indicated
5611 template PARMS, e.g.:
5613 template <class T> struct S;
5614 template <class T> struct S {}; */
5616 bool
5617 redeclare_class_template (tree type, tree parms, tree cons)
5619 tree tmpl;
5620 tree tmpl_parms;
5621 int i;
5623 if (!TYPE_TEMPLATE_INFO (type))
5625 error ("%qT is not a template type", type);
5626 return false;
5629 tmpl = TYPE_TI_TEMPLATE (type);
5630 if (!PRIMARY_TEMPLATE_P (tmpl))
5631 /* The type is nested in some template class. Nothing to worry
5632 about here; there are no new template parameters for the nested
5633 type. */
5634 return true;
5636 if (!parms)
5638 error ("template specifiers not specified in declaration of %qD",
5639 tmpl);
5640 return false;
5643 parms = INNERMOST_TEMPLATE_PARMS (parms);
5644 tmpl_parms = DECL_INNERMOST_TEMPLATE_PARMS (tmpl);
5646 if (TREE_VEC_LENGTH (parms) != TREE_VEC_LENGTH (tmpl_parms))
5648 error_n (input_location, TREE_VEC_LENGTH (parms),
5649 "redeclared with %d template parameter",
5650 "redeclared with %d template parameters",
5651 TREE_VEC_LENGTH (parms));
5652 inform_n (DECL_SOURCE_LOCATION (tmpl), TREE_VEC_LENGTH (tmpl_parms),
5653 "previous declaration %qD used %d template parameter",
5654 "previous declaration %qD used %d template parameters",
5655 tmpl, TREE_VEC_LENGTH (tmpl_parms));
5656 return false;
5659 for (i = 0; i < TREE_VEC_LENGTH (tmpl_parms); ++i)
5661 tree tmpl_parm;
5662 tree parm;
5663 tree tmpl_default;
5664 tree parm_default;
5666 if (TREE_VEC_ELT (tmpl_parms, i) == error_mark_node
5667 || TREE_VEC_ELT (parms, i) == error_mark_node)
5668 continue;
5670 tmpl_parm = TREE_VALUE (TREE_VEC_ELT (tmpl_parms, i));
5671 if (error_operand_p (tmpl_parm))
5672 return false;
5674 parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
5675 tmpl_default = TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i));
5676 parm_default = TREE_PURPOSE (TREE_VEC_ELT (parms, i));
5678 /* TMPL_PARM and PARM can be either TYPE_DECL, PARM_DECL, or
5679 TEMPLATE_DECL. */
5680 if (TREE_CODE (tmpl_parm) != TREE_CODE (parm)
5681 || (TREE_CODE (tmpl_parm) != TYPE_DECL
5682 && !same_type_p (TREE_TYPE (tmpl_parm), TREE_TYPE (parm)))
5683 || (TREE_CODE (tmpl_parm) != PARM_DECL
5684 && (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (tmpl_parm))
5685 != TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm))))
5686 || (TREE_CODE (tmpl_parm) == PARM_DECL
5687 && (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (tmpl_parm))
5688 != TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))))
5690 error ("template parameter %q+#D", tmpl_parm);
5691 error ("redeclared here as %q#D", parm);
5692 return false;
5695 if (tmpl_default != NULL_TREE && parm_default != NULL_TREE)
5697 /* We have in [temp.param]:
5699 A template-parameter may not be given default arguments
5700 by two different declarations in the same scope. */
5701 error_at (input_location, "redefinition of default argument for %q#D", parm);
5702 inform (DECL_SOURCE_LOCATION (tmpl_parm),
5703 "original definition appeared here");
5704 return false;
5707 if (parm_default != NULL_TREE)
5708 /* Update the previous template parameters (which are the ones
5709 that will really count) with the new default value. */
5710 TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i)) = parm_default;
5711 else if (tmpl_default != NULL_TREE)
5712 /* Update the new parameters, too; they'll be used as the
5713 parameters for any members. */
5714 TREE_PURPOSE (TREE_VEC_ELT (parms, i)) = tmpl_default;
5716 /* Give each template template parm in this redeclaration a
5717 DECL_CONTEXT of the template for which they are a parameter. */
5718 if (TREE_CODE (parm) == TEMPLATE_DECL)
5720 gcc_assert (DECL_CONTEXT (parm) == NULL_TREE);
5721 DECL_CONTEXT (parm) = tmpl;
5725 // Cannot redeclare a class template with a different set of constraints.
5726 if (!equivalent_constraints (get_constraints (tmpl), cons))
5728 error_at (input_location, "redeclaration %q#D with different "
5729 "constraints", tmpl);
5730 inform (DECL_SOURCE_LOCATION (tmpl),
5731 "original declaration appeared here");
5734 return true;
5737 /* The actual substitution part of instantiate_non_dependent_expr_sfinae,
5738 to be used when the caller has already checked
5739 (processing_template_decl
5740 && !instantiation_dependent_expression_p (expr)
5741 && potential_constant_expression (expr))
5742 and cleared processing_template_decl. */
5744 tree
5745 instantiate_non_dependent_expr_internal (tree expr, tsubst_flags_t complain)
5747 return tsubst_copy_and_build (expr,
5748 /*args=*/NULL_TREE,
5749 complain,
5750 /*in_decl=*/NULL_TREE,
5751 /*function_p=*/false,
5752 /*integral_constant_expression_p=*/true);
5755 /* Simplify EXPR if it is a non-dependent expression. Returns the
5756 (possibly simplified) expression. */
5758 tree
5759 instantiate_non_dependent_expr_sfinae (tree expr, tsubst_flags_t complain)
5761 if (expr == NULL_TREE)
5762 return NULL_TREE;
5764 /* If we're in a template, but EXPR isn't value dependent, simplify
5765 it. We're supposed to treat:
5767 template <typename T> void f(T[1 + 1]);
5768 template <typename T> void f(T[2]);
5770 as two declarations of the same function, for example. */
5771 if (processing_template_decl
5772 && potential_nondependent_constant_expression (expr))
5774 processing_template_decl_sentinel s;
5775 expr = instantiate_non_dependent_expr_internal (expr, complain);
5777 return expr;
5780 tree
5781 instantiate_non_dependent_expr (tree expr)
5783 return instantiate_non_dependent_expr_sfinae (expr, tf_error);
5786 /* Like instantiate_non_dependent_expr, but return NULL_TREE rather than
5787 an uninstantiated expression. */
5789 tree
5790 instantiate_non_dependent_or_null (tree expr)
5792 if (expr == NULL_TREE)
5793 return NULL_TREE;
5794 if (processing_template_decl)
5796 if (!potential_nondependent_constant_expression (expr))
5797 expr = NULL_TREE;
5798 else
5800 processing_template_decl_sentinel s;
5801 expr = instantiate_non_dependent_expr_internal (expr, tf_error);
5804 return expr;
5807 /* True iff T is a specialization of a variable template. */
5809 bool
5810 variable_template_specialization_p (tree t)
5812 if (!VAR_P (t) || !DECL_LANG_SPECIFIC (t) || !DECL_TEMPLATE_INFO (t))
5813 return false;
5814 tree tmpl = DECL_TI_TEMPLATE (t);
5815 return variable_template_p (tmpl);
5818 /* Return TRUE iff T is a type alias, a TEMPLATE_DECL for an alias
5819 template declaration, or a TYPE_DECL for an alias declaration. */
5821 bool
5822 alias_type_or_template_p (tree t)
5824 if (t == NULL_TREE)
5825 return false;
5826 return ((TREE_CODE (t) == TYPE_DECL && TYPE_DECL_ALIAS_P (t))
5827 || (TYPE_P (t)
5828 && TYPE_NAME (t)
5829 && TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
5830 || DECL_ALIAS_TEMPLATE_P (t));
5833 /* Return TRUE iff T is a specialization of an alias template. */
5835 bool
5836 alias_template_specialization_p (const_tree t)
5838 /* It's an alias template specialization if it's an alias and its
5839 TYPE_NAME is a specialization of a primary template. */
5840 if (TYPE_ALIAS_P (t))
5841 if (tree tinfo = TYPE_ALIAS_TEMPLATE_INFO (t))
5842 return PRIMARY_TEMPLATE_P (TI_TEMPLATE (tinfo));
5844 return false;
5847 /* An alias template is complex from a SFINAE perspective if a template-id
5848 using that alias can be ill-formed when the expansion is not, as with
5849 the void_t template. We determine this by checking whether the
5850 expansion for the alias template uses all its template parameters. */
5852 struct uses_all_template_parms_data
5854 int level;
5855 bool *seen;
5858 static int
5859 uses_all_template_parms_r (tree t, void *data_)
5861 struct uses_all_template_parms_data &data
5862 = *(struct uses_all_template_parms_data*)data_;
5863 tree idx = get_template_parm_index (t);
5865 if (TEMPLATE_PARM_LEVEL (idx) == data.level)
5866 data.seen[TEMPLATE_PARM_IDX (idx)] = true;
5867 return 0;
5870 static bool
5871 complex_alias_template_p (const_tree tmpl)
5873 struct uses_all_template_parms_data data;
5874 tree pat = DECL_ORIGINAL_TYPE (DECL_TEMPLATE_RESULT (tmpl));
5875 tree parms = DECL_TEMPLATE_PARMS (tmpl);
5876 data.level = TMPL_PARMS_DEPTH (parms);
5877 int len = TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS (parms));
5878 data.seen = XALLOCAVEC (bool, len);
5879 for (int i = 0; i < len; ++i)
5880 data.seen[i] = false;
5882 for_each_template_parm (pat, uses_all_template_parms_r, &data, NULL, true);
5883 for (int i = 0; i < len; ++i)
5884 if (!data.seen[i])
5885 return true;
5886 return false;
5889 /* Return TRUE iff T is a specialization of a complex alias template with
5890 dependent template-arguments. */
5892 bool
5893 dependent_alias_template_spec_p (const_tree t)
5895 if (!alias_template_specialization_p (t))
5896 return false;
5898 tree tinfo = TYPE_ALIAS_TEMPLATE_INFO (t);
5899 if (!TEMPLATE_DECL_COMPLEX_ALIAS_P (TI_TEMPLATE (tinfo)))
5900 return false;
5902 tree args = INNERMOST_TEMPLATE_ARGS (TI_ARGS (tinfo));
5903 if (!any_dependent_template_arguments_p (args))
5904 return false;
5906 return true;
5909 /* Return the number of innermost template parameters in TMPL. */
5911 static int
5912 num_innermost_template_parms (tree tmpl)
5914 tree parms = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (tmpl));
5915 return TREE_VEC_LENGTH (parms);
5918 /* Return either TMPL or another template that it is equivalent to under DR
5919 1286: An alias that just changes the name of a template is equivalent to
5920 the other template. */
5922 static tree
5923 get_underlying_template (tree tmpl)
5925 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
5926 while (DECL_ALIAS_TEMPLATE_P (tmpl))
5928 /* Determine if the alias is equivalent to an underlying template. */
5929 tree orig_type = DECL_ORIGINAL_TYPE (DECL_TEMPLATE_RESULT (tmpl));
5930 tree tinfo = TYPE_TEMPLATE_INFO_MAYBE_ALIAS (orig_type);
5931 if (!tinfo)
5932 break;
5934 tree underlying = TI_TEMPLATE (tinfo);
5935 if (!PRIMARY_TEMPLATE_P (underlying)
5936 || (num_innermost_template_parms (tmpl)
5937 != num_innermost_template_parms (underlying)))
5938 break;
5940 tree alias_args = INNERMOST_TEMPLATE_ARGS
5941 (template_parms_to_args (DECL_TEMPLATE_PARMS (tmpl)));
5942 if (!comp_template_args (TI_ARGS (tinfo), alias_args))
5943 break;
5945 /* Alias is equivalent. Strip it and repeat. */
5946 tmpl = underlying;
5949 return tmpl;
5952 /* Subroutine of convert_nontype_argument. Converts EXPR to TYPE, which
5953 must be a reference-to-function or a pointer-to-function type, as specified
5954 in [temp.arg.nontype]: disambiguate EXPR if it is an overload set,
5955 and check that the resulting function has external linkage. */
5957 static tree
5958 convert_nontype_argument_function (tree type, tree expr,
5959 tsubst_flags_t complain)
5961 tree fns = expr;
5962 tree fn, fn_no_ptr;
5963 linkage_kind linkage;
5965 fn = instantiate_type (type, fns, tf_none);
5966 if (fn == error_mark_node)
5967 return error_mark_node;
5969 if (value_dependent_expression_p (fn))
5970 return fn;
5972 fn_no_ptr = strip_fnptr_conv (fn);
5973 if (TREE_CODE (fn_no_ptr) == ADDR_EXPR)
5974 fn_no_ptr = TREE_OPERAND (fn_no_ptr, 0);
5975 if (BASELINK_P (fn_no_ptr))
5976 fn_no_ptr = BASELINK_FUNCTIONS (fn_no_ptr);
5978 /* [temp.arg.nontype]/1
5980 A template-argument for a non-type, non-template template-parameter
5981 shall be one of:
5982 [...]
5983 -- the address of an object or function with external [C++11: or
5984 internal] linkage. */
5986 if (TREE_CODE (fn_no_ptr) != FUNCTION_DECL)
5988 if (complain & tf_error)
5990 error ("%qE is not a valid template argument for type %qT",
5991 expr, type);
5992 if (TYPE_PTR_P (type))
5993 inform (input_location, "it must be the address of a function "
5994 "with external linkage");
5995 else
5996 inform (input_location, "it must be the name of a function with "
5997 "external linkage");
5999 return NULL_TREE;
6002 linkage = decl_linkage (fn_no_ptr);
6003 if (cxx_dialect >= cxx11 ? linkage == lk_none : linkage != lk_external)
6005 if (complain & tf_error)
6007 if (cxx_dialect >= cxx11)
6008 error ("%qE is not a valid template argument for type %qT "
6009 "because %qD has no linkage",
6010 expr, type, fn_no_ptr);
6011 else
6012 error ("%qE is not a valid template argument for type %qT "
6013 "because %qD does not have external linkage",
6014 expr, type, fn_no_ptr);
6016 return NULL_TREE;
6019 if (TREE_CODE (type) == REFERENCE_TYPE)
6020 fn = build_address (fn);
6021 if (!same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (fn)))
6022 fn = build_nop (type, fn);
6024 return fn;
6027 /* Subroutine of convert_nontype_argument.
6028 Check if EXPR of type TYPE is a valid pointer-to-member constant.
6029 Emit an error otherwise. */
6031 static bool
6032 check_valid_ptrmem_cst_expr (tree type, tree expr,
6033 tsubst_flags_t complain)
6035 STRIP_NOPS (expr);
6036 if (expr && (null_ptr_cst_p (expr) || TREE_CODE (expr) == PTRMEM_CST))
6037 return true;
6038 if (cxx_dialect >= cxx11 && null_member_pointer_value_p (expr))
6039 return true;
6040 if (processing_template_decl
6041 && TREE_CODE (expr) == ADDR_EXPR
6042 && TREE_CODE (TREE_OPERAND (expr, 0)) == OFFSET_REF)
6043 return true;
6044 if (complain & tf_error)
6046 error ("%qE is not a valid template argument for type %qT",
6047 expr, type);
6048 error ("it must be a pointer-to-member of the form %<&X::Y%>");
6050 return false;
6053 /* Returns TRUE iff the address of OP is value-dependent.
6055 14.6.2.4 [temp.dep.temp]:
6056 A non-integral non-type template-argument is dependent if its type is
6057 dependent or it has either of the following forms
6058 qualified-id
6059 & qualified-id
6060 and contains a nested-name-specifier which specifies a class-name that
6061 names a dependent type.
6063 We generalize this to just say that the address of a member of a
6064 dependent class is value-dependent; the above doesn't cover the
6065 address of a static data member named with an unqualified-id. */
6067 static bool
6068 has_value_dependent_address (tree op)
6070 /* We could use get_inner_reference here, but there's no need;
6071 this is only relevant for template non-type arguments, which
6072 can only be expressed as &id-expression. */
6073 if (DECL_P (op))
6075 tree ctx = CP_DECL_CONTEXT (op);
6076 if (TYPE_P (ctx) && dependent_type_p (ctx))
6077 return true;
6080 return false;
6083 /* The next set of functions are used for providing helpful explanatory
6084 diagnostics for failed overload resolution. Their messages should be
6085 indented by two spaces for consistency with the messages in
6086 call.c */
6088 static int
6089 unify_success (bool /*explain_p*/)
6091 return 0;
6094 static int
6095 unify_parameter_deduction_failure (bool explain_p, tree parm)
6097 if (explain_p)
6098 inform (input_location,
6099 " couldn't deduce template parameter %qD", parm);
6100 return 1;
6103 static int
6104 unify_invalid (bool /*explain_p*/)
6106 return 1;
6109 static int
6110 unify_cv_qual_mismatch (bool explain_p, tree parm, tree arg)
6112 if (explain_p)
6113 inform (input_location,
6114 " types %qT and %qT have incompatible cv-qualifiers",
6115 parm, arg);
6116 return 1;
6119 static int
6120 unify_type_mismatch (bool explain_p, tree parm, tree arg)
6122 if (explain_p)
6123 inform (input_location, " mismatched types %qT and %qT", parm, arg);
6124 return 1;
6127 static int
6128 unify_parameter_pack_mismatch (bool explain_p, tree parm, tree arg)
6130 if (explain_p)
6131 inform (input_location,
6132 " template parameter %qD is not a parameter pack, but "
6133 "argument %qD is",
6134 parm, arg);
6135 return 1;
6138 static int
6139 unify_ptrmem_cst_mismatch (bool explain_p, tree parm, tree arg)
6141 if (explain_p)
6142 inform (input_location,
6143 " template argument %qE does not match "
6144 "pointer-to-member constant %qE",
6145 arg, parm);
6146 return 1;
6149 static int
6150 unify_expression_unequal (bool explain_p, tree parm, tree arg)
6152 if (explain_p)
6153 inform (input_location, " %qE is not equivalent to %qE", parm, arg);
6154 return 1;
6157 static int
6158 unify_parameter_pack_inconsistent (bool explain_p, tree old_arg, tree new_arg)
6160 if (explain_p)
6161 inform (input_location,
6162 " inconsistent parameter pack deduction with %qT and %qT",
6163 old_arg, new_arg);
6164 return 1;
6167 static int
6168 unify_inconsistency (bool explain_p, tree parm, tree first, tree second)
6170 if (explain_p)
6172 if (TYPE_P (parm))
6173 inform (input_location,
6174 " deduced conflicting types for parameter %qT (%qT and %qT)",
6175 parm, first, second);
6176 else
6177 inform (input_location,
6178 " deduced conflicting values for non-type parameter "
6179 "%qE (%qE and %qE)", parm, first, second);
6181 return 1;
6184 static int
6185 unify_vla_arg (bool explain_p, tree arg)
6187 if (explain_p)
6188 inform (input_location,
6189 " variable-sized array type %qT is not "
6190 "a valid template argument",
6191 arg);
6192 return 1;
6195 static int
6196 unify_method_type_error (bool explain_p, tree arg)
6198 if (explain_p)
6199 inform (input_location,
6200 " member function type %qT is not a valid template argument",
6201 arg);
6202 return 1;
6205 static int
6206 unify_arity (bool explain_p, int have, int wanted, bool least_p = false)
6208 if (explain_p)
6210 if (least_p)
6211 inform_n (input_location, wanted,
6212 " candidate expects at least %d argument, %d provided",
6213 " candidate expects at least %d arguments, %d provided",
6214 wanted, have);
6215 else
6216 inform_n (input_location, wanted,
6217 " candidate expects %d argument, %d provided",
6218 " candidate expects %d arguments, %d provided",
6219 wanted, have);
6221 return 1;
6224 static int
6225 unify_too_many_arguments (bool explain_p, int have, int wanted)
6227 return unify_arity (explain_p, have, wanted);
6230 static int
6231 unify_too_few_arguments (bool explain_p, int have, int wanted,
6232 bool least_p = false)
6234 return unify_arity (explain_p, have, wanted, least_p);
6237 static int
6238 unify_arg_conversion (bool explain_p, tree to_type,
6239 tree from_type, tree arg)
6241 if (explain_p)
6242 inform (EXPR_LOC_OR_LOC (arg, input_location),
6243 " cannot convert %qE (type %qT) to type %qT",
6244 arg, from_type, to_type);
6245 return 1;
6248 static int
6249 unify_no_common_base (bool explain_p, enum template_base_result r,
6250 tree parm, tree arg)
6252 if (explain_p)
6253 switch (r)
6255 case tbr_ambiguous_baseclass:
6256 inform (input_location, " %qT is an ambiguous base class of %qT",
6257 parm, arg);
6258 break;
6259 default:
6260 inform (input_location, " %qT is not derived from %qT", arg, parm);
6261 break;
6263 return 1;
6266 static int
6267 unify_inconsistent_template_template_parameters (bool explain_p)
6269 if (explain_p)
6270 inform (input_location,
6271 " template parameters of a template template argument are "
6272 "inconsistent with other deduced template arguments");
6273 return 1;
6276 static int
6277 unify_template_deduction_failure (bool explain_p, tree parm, tree arg)
6279 if (explain_p)
6280 inform (input_location,
6281 " can't deduce a template for %qT from non-template type %qT",
6282 parm, arg);
6283 return 1;
6286 static int
6287 unify_template_argument_mismatch (bool explain_p, tree parm, tree arg)
6289 if (explain_p)
6290 inform (input_location,
6291 " template argument %qE does not match %qE", arg, parm);
6292 return 1;
6295 static int
6296 unify_overload_resolution_failure (bool explain_p, tree arg)
6298 if (explain_p)
6299 inform (input_location,
6300 " could not resolve address from overloaded function %qE",
6301 arg);
6302 return 1;
6305 /* Attempt to convert the non-type template parameter EXPR to the
6306 indicated TYPE. If the conversion is successful, return the
6307 converted value. If the conversion is unsuccessful, return
6308 NULL_TREE if we issued an error message, or error_mark_node if we
6309 did not. We issue error messages for out-and-out bad template
6310 parameters, but not simply because the conversion failed, since we
6311 might be just trying to do argument deduction. Both TYPE and EXPR
6312 must be non-dependent.
6314 The conversion follows the special rules described in
6315 [temp.arg.nontype], and it is much more strict than an implicit
6316 conversion.
6318 This function is called twice for each template argument (see
6319 lookup_template_class for a more accurate description of this
6320 problem). This means that we need to handle expressions which
6321 are not valid in a C++ source, but can be created from the
6322 first call (for instance, casts to perform conversions). These
6323 hacks can go away after we fix the double coercion problem. */
6325 static tree
6326 convert_nontype_argument (tree type, tree expr, tsubst_flags_t complain)
6328 tree expr_type;
6330 /* Detect immediately string literals as invalid non-type argument.
6331 This special-case is not needed for correctness (we would easily
6332 catch this later), but only to provide better diagnostic for this
6333 common user mistake. As suggested by DR 100, we do not mention
6334 linkage issues in the diagnostic as this is not the point. */
6335 /* FIXME we're making this OK. */
6336 if (TREE_CODE (expr) == STRING_CST)
6338 if (complain & tf_error)
6339 error ("%qE is not a valid template argument for type %qT "
6340 "because string literals can never be used in this context",
6341 expr, type);
6342 return NULL_TREE;
6345 /* Add the ADDR_EXPR now for the benefit of
6346 value_dependent_expression_p. */
6347 if (TYPE_PTROBV_P (type)
6348 && TREE_CODE (TREE_TYPE (expr)) == ARRAY_TYPE)
6350 expr = decay_conversion (expr, complain);
6351 if (expr == error_mark_node)
6352 return error_mark_node;
6355 /* If we are in a template, EXPR may be non-dependent, but still
6356 have a syntactic, rather than semantic, form. For example, EXPR
6357 might be a SCOPE_REF, rather than the VAR_DECL to which the
6358 SCOPE_REF refers. Preserving the qualifying scope is necessary
6359 so that access checking can be performed when the template is
6360 instantiated -- but here we need the resolved form so that we can
6361 convert the argument. */
6362 bool non_dep = false;
6363 if (TYPE_REF_OBJ_P (type)
6364 && has_value_dependent_address (expr))
6365 /* If we want the address and it's value-dependent, don't fold. */;
6366 else if (processing_template_decl
6367 && potential_nondependent_constant_expression (expr))
6368 non_dep = true;
6369 if (error_operand_p (expr))
6370 return error_mark_node;
6371 expr_type = TREE_TYPE (expr);
6372 if (TREE_CODE (type) == REFERENCE_TYPE)
6373 expr = mark_lvalue_use (expr);
6374 else
6375 expr = mark_rvalue_use (expr);
6377 /* If the argument is non-dependent, perform any conversions in
6378 non-dependent context as well. */
6379 processing_template_decl_sentinel s (non_dep);
6380 if (non_dep)
6381 expr = instantiate_non_dependent_expr_internal (expr, complain);
6383 if (value_dependent_expression_p (expr))
6384 expr = canonicalize_expr_argument (expr, complain);
6386 /* 14.3.2/5: The null pointer{,-to-member} conversion is applied
6387 to a non-type argument of "nullptr". */
6388 if (expr == nullptr_node && TYPE_PTR_OR_PTRMEM_P (type))
6389 expr = fold_simple (convert (type, expr));
6391 /* In C++11, integral or enumeration non-type template arguments can be
6392 arbitrary constant expressions. Pointer and pointer to
6393 member arguments can be general constant expressions that evaluate
6394 to a null value, but otherwise still need to be of a specific form. */
6395 if (cxx_dialect >= cxx11)
6397 if (TREE_CODE (expr) == PTRMEM_CST)
6398 /* A PTRMEM_CST is already constant, and a valid template
6399 argument for a parameter of pointer to member type, we just want
6400 to leave it in that form rather than lower it to a
6401 CONSTRUCTOR. */;
6402 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
6403 /* Constant value checking is done later with type conversion. */;
6404 else if (cxx_dialect >= cxx1z)
6406 if (TREE_CODE (type) != REFERENCE_TYPE)
6407 expr = maybe_constant_value (expr);
6408 else if (REFERENCE_REF_P (expr))
6410 expr = TREE_OPERAND (expr, 0);
6411 expr = maybe_constant_value (expr);
6412 expr = convert_from_reference (expr);
6415 else if (TYPE_PTR_OR_PTRMEM_P (type))
6417 tree folded = maybe_constant_value (expr);
6418 if (TYPE_PTR_P (type) ? integer_zerop (folded)
6419 : null_member_pointer_value_p (folded))
6420 expr = folded;
6424 /* HACK: Due to double coercion, we can get a
6425 NOP_EXPR<REFERENCE_TYPE>(ADDR_EXPR<POINTER_TYPE> (arg)) here,
6426 which is the tree that we built on the first call (see
6427 below when coercing to reference to object or to reference to
6428 function). We just strip everything and get to the arg.
6429 See g++.old-deja/g++.oliva/template4.C and g++.dg/template/nontype9.C
6430 for examples. */
6431 if (TYPE_REF_OBJ_P (type) || TYPE_REFFN_P (type))
6433 tree probe_type, probe = expr;
6434 if (REFERENCE_REF_P (probe))
6435 probe = TREE_OPERAND (probe, 0);
6436 probe_type = TREE_TYPE (probe);
6437 if (TREE_CODE (probe) == NOP_EXPR)
6439 /* ??? Maybe we could use convert_from_reference here, but we
6440 would need to relax its constraints because the NOP_EXPR
6441 could actually change the type to something more cv-qualified,
6442 and this is not folded by convert_from_reference. */
6443 tree addr = TREE_OPERAND (probe, 0);
6444 if (TREE_CODE (probe_type) == REFERENCE_TYPE
6445 && TREE_CODE (addr) == ADDR_EXPR
6446 && TYPE_PTR_P (TREE_TYPE (addr))
6447 && (same_type_ignoring_top_level_qualifiers_p
6448 (TREE_TYPE (probe_type),
6449 TREE_TYPE (TREE_TYPE (addr)))))
6451 expr = TREE_OPERAND (addr, 0);
6452 expr_type = TREE_TYPE (probe_type);
6457 /* We could also generate a NOP_EXPR(ADDR_EXPR()) when the
6458 parameter is a pointer to object, through decay and
6459 qualification conversion. Let's strip everything. */
6460 else if (TREE_CODE (expr) == NOP_EXPR && TYPE_PTROBV_P (type))
6462 tree probe = expr;
6463 STRIP_NOPS (probe);
6464 if (TREE_CODE (probe) == ADDR_EXPR
6465 && TYPE_PTR_P (TREE_TYPE (probe)))
6467 /* Skip the ADDR_EXPR only if it is part of the decay for
6468 an array. Otherwise, it is part of the original argument
6469 in the source code. */
6470 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (probe, 0))) == ARRAY_TYPE)
6471 probe = TREE_OPERAND (probe, 0);
6472 expr = probe;
6473 expr_type = TREE_TYPE (expr);
6477 /* [temp.arg.nontype]/5, bullet 1
6479 For a non-type template-parameter of integral or enumeration type,
6480 integral promotions (_conv.prom_) and integral conversions
6481 (_conv.integral_) are applied. */
6482 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
6484 tree t = build_integral_nontype_arg_conv (type, expr, complain);
6485 t = maybe_constant_value (t);
6486 if (t != error_mark_node)
6487 expr = t;
6489 if (!same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (expr)))
6490 return error_mark_node;
6492 /* Notice that there are constant expressions like '4 % 0' which
6493 do not fold into integer constants. */
6494 if (TREE_CODE (expr) != INTEGER_CST
6495 && !value_dependent_expression_p (expr))
6497 if (complain & tf_error)
6499 int errs = errorcount, warns = warningcount + werrorcount;
6500 if (processing_template_decl
6501 && !require_potential_constant_expression (expr))
6502 return NULL_TREE;
6503 expr = cxx_constant_value (expr);
6504 if (errorcount > errs || warningcount + werrorcount > warns)
6505 inform (EXPR_LOC_OR_LOC (expr, input_location),
6506 "in template argument for type %qT ", type);
6507 if (expr == error_mark_node)
6508 return NULL_TREE;
6509 /* else cxx_constant_value complained but gave us
6510 a real constant, so go ahead. */
6511 gcc_assert (TREE_CODE (expr) == INTEGER_CST);
6513 else
6514 return NULL_TREE;
6517 /* Avoid typedef problems. */
6518 if (TREE_TYPE (expr) != type)
6519 expr = fold_convert (type, expr);
6521 /* [temp.arg.nontype]/5, bullet 2
6523 For a non-type template-parameter of type pointer to object,
6524 qualification conversions (_conv.qual_) and the array-to-pointer
6525 conversion (_conv.array_) are applied. */
6526 else if (TYPE_PTROBV_P (type))
6528 /* [temp.arg.nontype]/1 (TC1 version, DR 49):
6530 A template-argument for a non-type, non-template template-parameter
6531 shall be one of: [...]
6533 -- the name of a non-type template-parameter;
6534 -- the address of an object or function with external linkage, [...]
6535 expressed as "& id-expression" where the & is optional if the name
6536 refers to a function or array, or if the corresponding
6537 template-parameter is a reference.
6539 Here, we do not care about functions, as they are invalid anyway
6540 for a parameter of type pointer-to-object. */
6542 if (value_dependent_expression_p (expr))
6543 /* Non-type template parameters are OK. */
6545 else if (cxx_dialect >= cxx11 && integer_zerop (expr))
6546 /* Null pointer values are OK in C++11. */;
6547 else if (TREE_CODE (expr) != ADDR_EXPR
6548 && TREE_CODE (expr_type) != ARRAY_TYPE)
6550 if (VAR_P (expr))
6552 if (complain & tf_error)
6553 error ("%qD is not a valid template argument "
6554 "because %qD is a variable, not the address of "
6555 "a variable", expr, expr);
6556 return NULL_TREE;
6558 if (POINTER_TYPE_P (expr_type))
6560 if (complain & tf_error)
6561 error ("%qE is not a valid template argument for %qT "
6562 "because it is not the address of a variable",
6563 expr, type);
6564 return NULL_TREE;
6566 /* Other values, like integer constants, might be valid
6567 non-type arguments of some other type. */
6568 return error_mark_node;
6570 else
6572 tree decl;
6574 decl = ((TREE_CODE (expr) == ADDR_EXPR)
6575 ? TREE_OPERAND (expr, 0) : expr);
6576 if (!VAR_P (decl))
6578 if (complain & tf_error)
6579 error ("%qE is not a valid template argument of type %qT "
6580 "because %qE is not a variable", expr, type, decl);
6581 return NULL_TREE;
6583 else if (cxx_dialect < cxx11 && !DECL_EXTERNAL_LINKAGE_P (decl))
6585 if (complain & tf_error)
6586 error ("%qE is not a valid template argument of type %qT "
6587 "because %qD does not have external linkage",
6588 expr, type, decl);
6589 return NULL_TREE;
6591 else if (cxx_dialect >= cxx11 && decl_linkage (decl) == lk_none)
6593 if (complain & tf_error)
6594 error ("%qE is not a valid template argument of type %qT "
6595 "because %qD has no linkage", expr, type, decl);
6596 return NULL_TREE;
6600 expr = decay_conversion (expr, complain);
6601 if (expr == error_mark_node)
6602 return error_mark_node;
6604 expr = perform_qualification_conversions (type, expr);
6605 if (expr == error_mark_node)
6606 return error_mark_node;
6608 /* [temp.arg.nontype]/5, bullet 3
6610 For a non-type template-parameter of type reference to object, no
6611 conversions apply. The type referred to by the reference may be more
6612 cv-qualified than the (otherwise identical) type of the
6613 template-argument. The template-parameter is bound directly to the
6614 template-argument, which must be an lvalue. */
6615 else if (TYPE_REF_OBJ_P (type))
6617 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (type),
6618 expr_type))
6619 return error_mark_node;
6621 if (!at_least_as_qualified_p (TREE_TYPE (type), expr_type))
6623 if (complain & tf_error)
6624 error ("%qE is not a valid template argument for type %qT "
6625 "because of conflicts in cv-qualification", expr, type);
6626 return NULL_TREE;
6629 if (!lvalue_p (expr))
6631 if (complain & tf_error)
6632 error ("%qE is not a valid template argument for type %qT "
6633 "because it is not an lvalue", expr, type);
6634 return NULL_TREE;
6637 /* [temp.arg.nontype]/1
6639 A template-argument for a non-type, non-template template-parameter
6640 shall be one of: [...]
6642 -- the address of an object or function with external linkage. */
6643 if (INDIRECT_REF_P (expr)
6644 && TYPE_REF_OBJ_P (TREE_TYPE (TREE_OPERAND (expr, 0))))
6646 expr = TREE_OPERAND (expr, 0);
6647 if (DECL_P (expr))
6649 if (complain & tf_error)
6650 error ("%q#D is not a valid template argument for type %qT "
6651 "because a reference variable does not have a constant "
6652 "address", expr, type);
6653 return NULL_TREE;
6657 if (!value_dependent_expression_p (expr))
6659 if (!DECL_P (expr))
6661 if (complain & tf_error)
6662 error ("%qE is not a valid template argument for type %qT "
6663 "because it is not an object with linkage",
6664 expr, type);
6665 return NULL_TREE;
6668 /* DR 1155 allows internal linkage in C++11 and up. */
6669 linkage_kind linkage = decl_linkage (expr);
6670 if (linkage < (cxx_dialect >= cxx11 ? lk_internal : lk_external))
6672 if (complain & tf_error)
6673 error ("%qE is not a valid template argument for type %qT "
6674 "because object %qD does not have linkage",
6675 expr, type, expr);
6676 return NULL_TREE;
6679 expr = build_nop (type, build_address (expr));
6682 /* [temp.arg.nontype]/5, bullet 4
6684 For a non-type template-parameter of type pointer to function, only
6685 the function-to-pointer conversion (_conv.func_) is applied. If the
6686 template-argument represents a set of overloaded functions (or a
6687 pointer to such), the matching function is selected from the set
6688 (_over.over_). */
6689 else if (TYPE_PTRFN_P (type))
6691 /* If the argument is a template-id, we might not have enough
6692 context information to decay the pointer. */
6693 if (!type_unknown_p (expr_type))
6695 expr = decay_conversion (expr, complain);
6696 if (expr == error_mark_node)
6697 return error_mark_node;
6700 if (cxx_dialect >= cxx11 && integer_zerop (expr))
6701 /* Null pointer values are OK in C++11. */
6702 return perform_qualification_conversions (type, expr);
6704 expr = convert_nontype_argument_function (type, expr, complain);
6705 if (!expr || expr == error_mark_node)
6706 return expr;
6708 /* [temp.arg.nontype]/5, bullet 5
6710 For a non-type template-parameter of type reference to function, no
6711 conversions apply. If the template-argument represents a set of
6712 overloaded functions, the matching function is selected from the set
6713 (_over.over_). */
6714 else if (TYPE_REFFN_P (type))
6716 if (TREE_CODE (expr) == ADDR_EXPR)
6718 if (complain & tf_error)
6720 error ("%qE is not a valid template argument for type %qT "
6721 "because it is a pointer", expr, type);
6722 inform (input_location, "try using %qE instead",
6723 TREE_OPERAND (expr, 0));
6725 return NULL_TREE;
6728 expr = convert_nontype_argument_function (type, expr, complain);
6729 if (!expr || expr == error_mark_node)
6730 return expr;
6732 /* [temp.arg.nontype]/5, bullet 6
6734 For a non-type template-parameter of type pointer to member function,
6735 no conversions apply. If the template-argument represents a set of
6736 overloaded member functions, the matching member function is selected
6737 from the set (_over.over_). */
6738 else if (TYPE_PTRMEMFUNC_P (type))
6740 expr = instantiate_type (type, expr, tf_none);
6741 if (expr == error_mark_node)
6742 return error_mark_node;
6744 /* [temp.arg.nontype] bullet 1 says the pointer to member
6745 expression must be a pointer-to-member constant. */
6746 if (!value_dependent_expression_p (expr)
6747 && !check_valid_ptrmem_cst_expr (type, expr, complain))
6748 return error_mark_node;
6750 /* Repeated conversion can't deal with a conversion that turns PTRMEM_CST
6751 into a CONSTRUCTOR, so build up a new PTRMEM_CST instead. */
6752 if (fnptr_conv_p (type, TREE_TYPE (expr)))
6753 expr = make_ptrmem_cst (type, PTRMEM_CST_MEMBER (expr));
6755 /* There is no way to disable standard conversions in
6756 resolve_address_of_overloaded_function (called by
6757 instantiate_type). It is possible that the call succeeded by
6758 converting &B::I to &D::I (where B is a base of D), so we need
6759 to reject this conversion here.
6761 Actually, even if there was a way to disable standard conversions,
6762 it would still be better to reject them here so that we can
6763 provide a superior diagnostic. */
6764 if (!same_type_p (TREE_TYPE (expr), type))
6766 if (complain & tf_error)
6768 error ("%qE is not a valid template argument for type %qT "
6769 "because it is of type %qT", expr, type,
6770 TREE_TYPE (expr));
6771 /* If we are just one standard conversion off, explain. */
6772 if (can_convert_standard (type, TREE_TYPE (expr), complain))
6773 inform (input_location,
6774 "standard conversions are not allowed in this context");
6776 return NULL_TREE;
6779 /* [temp.arg.nontype]/5, bullet 7
6781 For a non-type template-parameter of type pointer to data member,
6782 qualification conversions (_conv.qual_) are applied. */
6783 else if (TYPE_PTRDATAMEM_P (type))
6785 /* [temp.arg.nontype] bullet 1 says the pointer to member
6786 expression must be a pointer-to-member constant. */
6787 if (!value_dependent_expression_p (expr)
6788 && !check_valid_ptrmem_cst_expr (type, expr, complain))
6789 return error_mark_node;
6791 expr = perform_qualification_conversions (type, expr);
6792 if (expr == error_mark_node)
6793 return expr;
6795 else if (NULLPTR_TYPE_P (type))
6797 if (expr != nullptr_node)
6799 if (complain & tf_error)
6800 error ("%qE is not a valid template argument for type %qT "
6801 "because it is of type %qT", expr, type, TREE_TYPE (expr));
6802 return NULL_TREE;
6804 return expr;
6806 /* A template non-type parameter must be one of the above. */
6807 else
6808 gcc_unreachable ();
6810 /* Sanity check: did we actually convert the argument to the
6811 right type? */
6812 gcc_assert (same_type_ignoring_top_level_qualifiers_p
6813 (type, TREE_TYPE (expr)));
6814 return convert_from_reference (expr);
6817 /* Subroutine of coerce_template_template_parms, which returns 1 if
6818 PARM_PARM and ARG_PARM match using the rule for the template
6819 parameters of template template parameters. Both PARM and ARG are
6820 template parameters; the rest of the arguments are the same as for
6821 coerce_template_template_parms.
6823 static int
6824 coerce_template_template_parm (tree parm,
6825 tree arg,
6826 tsubst_flags_t complain,
6827 tree in_decl,
6828 tree outer_args)
6830 if (arg == NULL_TREE || error_operand_p (arg)
6831 || parm == NULL_TREE || error_operand_p (parm))
6832 return 0;
6834 if (TREE_CODE (arg) != TREE_CODE (parm))
6835 return 0;
6837 switch (TREE_CODE (parm))
6839 case TEMPLATE_DECL:
6840 /* We encounter instantiations of templates like
6841 template <template <template <class> class> class TT>
6842 class C; */
6844 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
6845 tree argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
6847 if (!coerce_template_template_parms
6848 (parmparm, argparm, complain, in_decl, outer_args))
6849 return 0;
6851 /* Fall through. */
6853 case TYPE_DECL:
6854 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (arg))
6855 && !TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
6856 /* Argument is a parameter pack but parameter is not. */
6857 return 0;
6858 break;
6860 case PARM_DECL:
6861 /* The tsubst call is used to handle cases such as
6863 template <int> class C {};
6864 template <class T, template <T> class TT> class D {};
6865 D<int, C> d;
6867 i.e. the parameter list of TT depends on earlier parameters. */
6868 if (!uses_template_parms (TREE_TYPE (arg)))
6870 tree t = tsubst (TREE_TYPE (parm), outer_args, complain, in_decl);
6871 if (!uses_template_parms (t)
6872 && !same_type_p (t, TREE_TYPE (arg)))
6873 return 0;
6876 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (arg))
6877 && !TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
6878 /* Argument is a parameter pack but parameter is not. */
6879 return 0;
6881 break;
6883 default:
6884 gcc_unreachable ();
6887 return 1;
6890 /* Coerce template argument list ARGLIST for use with template
6891 template-parameter TEMPL. */
6893 static tree
6894 coerce_template_args_for_ttp (tree templ, tree arglist,
6895 tsubst_flags_t complain)
6897 /* Consider an example where a template template parameter declared as
6899 template <class T, class U = std::allocator<T> > class TT
6901 The template parameter level of T and U are one level larger than
6902 of TT. To proper process the default argument of U, say when an
6903 instantiation `TT<int>' is seen, we need to build the full
6904 arguments containing {int} as the innermost level. Outer levels,
6905 available when not appearing as default template argument, can be
6906 obtained from the arguments of the enclosing template.
6908 Suppose that TT is later substituted with std::vector. The above
6909 instantiation is `TT<int, std::allocator<T> >' with TT at
6910 level 1, and T at level 2, while the template arguments at level 1
6911 becomes {std::vector} and the inner level 2 is {int}. */
6913 tree outer = DECL_CONTEXT (templ);
6914 if (outer)
6916 if (DECL_TEMPLATE_SPECIALIZATION (outer))
6917 /* We want arguments for the partial specialization, not arguments for
6918 the primary template. */
6919 outer = template_parms_to_args (DECL_TEMPLATE_PARMS (outer));
6920 else
6921 outer = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (outer)));
6923 else if (current_template_parms)
6925 /* This is an argument of the current template, so we haven't set
6926 DECL_CONTEXT yet. */
6927 tree relevant_template_parms;
6929 /* Parameter levels that are greater than the level of the given
6930 template template parm are irrelevant. */
6931 relevant_template_parms = current_template_parms;
6932 while (TMPL_PARMS_DEPTH (relevant_template_parms)
6933 != TEMPLATE_TYPE_LEVEL (TREE_TYPE (templ)))
6934 relevant_template_parms = TREE_CHAIN (relevant_template_parms);
6936 outer = template_parms_to_args (relevant_template_parms);
6939 if (outer)
6940 arglist = add_to_template_args (outer, arglist);
6942 tree parmlist = DECL_INNERMOST_TEMPLATE_PARMS (templ);
6943 return coerce_template_parms (parmlist, arglist, templ,
6944 complain,
6945 /*require_all_args=*/true,
6946 /*use_default_args=*/true);
6949 /* A cache of template template parameters with match-all default
6950 arguments. */
6951 static GTY((deletable)) hash_map<tree,tree> *defaulted_ttp_cache;
6952 static void
6953 store_defaulted_ttp (tree v, tree t)
6955 if (!defaulted_ttp_cache)
6956 defaulted_ttp_cache = hash_map<tree,tree>::create_ggc (13);
6957 defaulted_ttp_cache->put (v, t);
6959 static tree
6960 lookup_defaulted_ttp (tree v)
6962 if (defaulted_ttp_cache)
6963 if (tree *p = defaulted_ttp_cache->get (v))
6964 return *p;
6965 return NULL_TREE;
6968 /* T is a bound template template-parameter. Copy its arguments into default
6969 arguments of the template template-parameter's template parameters. */
6971 static tree
6972 add_defaults_to_ttp (tree otmpl)
6974 if (tree c = lookup_defaulted_ttp (otmpl))
6975 return c;
6977 tree ntmpl = copy_node (otmpl);
6979 tree ntype = copy_node (TREE_TYPE (otmpl));
6980 TYPE_STUB_DECL (ntype) = TYPE_NAME (ntype) = ntmpl;
6981 TYPE_MAIN_VARIANT (ntype) = ntype;
6982 TYPE_POINTER_TO (ntype) = TYPE_REFERENCE_TO (ntype) = NULL_TREE;
6983 TYPE_NAME (ntype) = ntmpl;
6984 SET_TYPE_STRUCTURAL_EQUALITY (ntype);
6986 tree idx = TEMPLATE_TYPE_PARM_INDEX (ntype)
6987 = copy_node (TEMPLATE_TYPE_PARM_INDEX (ntype));
6988 TEMPLATE_PARM_DECL (idx) = ntmpl;
6989 TREE_TYPE (ntmpl) = TREE_TYPE (idx) = ntype;
6991 tree oparms = DECL_TEMPLATE_PARMS (otmpl);
6992 tree parms = DECL_TEMPLATE_PARMS (ntmpl) = copy_node (oparms);
6993 TREE_CHAIN (parms) = TREE_CHAIN (oparms);
6994 tree vec = TREE_VALUE (parms) = copy_node (TREE_VALUE (parms));
6995 for (int i = 0; i < TREE_VEC_LENGTH (vec); ++i)
6997 tree o = TREE_VEC_ELT (vec, i);
6998 if (!template_parameter_pack_p (TREE_VALUE (o)))
7000 tree n = TREE_VEC_ELT (vec, i) = copy_node (o);
7001 TREE_PURPOSE (n) = any_targ_node;
7005 store_defaulted_ttp (otmpl, ntmpl);
7006 return ntmpl;
7009 /* ARG is a bound potential template template-argument, and PARGS is a list
7010 of arguments for the corresponding template template-parameter. Adjust
7011 PARGS as appropriate for application to ARG's template, and if ARG is a
7012 BOUND_TEMPLATE_TEMPLATE_PARM, possibly adjust it to add default template
7013 arguments to the template template parameter. */
7015 static tree
7016 coerce_ttp_args_for_tta (tree& arg, tree pargs, tsubst_flags_t complain)
7018 ++processing_template_decl;
7019 tree arg_tmpl = TYPE_TI_TEMPLATE (arg);
7020 if (DECL_TEMPLATE_TEMPLATE_PARM_P (arg_tmpl))
7022 /* When comparing two template template-parameters in partial ordering,
7023 rewrite the one currently being used as an argument to have default
7024 arguments for all parameters. */
7025 arg_tmpl = add_defaults_to_ttp (arg_tmpl);
7026 pargs = coerce_template_args_for_ttp (arg_tmpl, pargs, complain);
7027 if (pargs != error_mark_node)
7028 arg = bind_template_template_parm (TREE_TYPE (arg_tmpl),
7029 TYPE_TI_ARGS (arg));
7031 else
7033 tree aparms
7034 = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (arg_tmpl));
7035 pargs = coerce_template_parms (aparms, pargs, arg_tmpl, complain,
7036 /*require_all*/true,
7037 /*use_default*/true);
7039 --processing_template_decl;
7040 return pargs;
7043 /* Subroutine of unify for the case when PARM is a
7044 BOUND_TEMPLATE_TEMPLATE_PARM. */
7046 static int
7047 unify_bound_ttp_args (tree tparms, tree targs, tree parm, tree& arg,
7048 bool explain_p)
7050 tree parmvec = TYPE_TI_ARGS (parm);
7051 tree argvec = INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (arg));
7053 /* The template template parm might be variadic and the argument
7054 not, so flatten both argument lists. */
7055 parmvec = expand_template_argument_pack (parmvec);
7056 argvec = expand_template_argument_pack (argvec);
7058 tree nparmvec = parmvec;
7059 if (flag_new_ttp)
7061 /* In keeping with P0522R0, adjust P's template arguments
7062 to apply to A's template; then flatten it again. */
7063 nparmvec = coerce_ttp_args_for_tta (arg, parmvec, tf_none);
7064 nparmvec = expand_template_argument_pack (nparmvec);
7067 if (unify (tparms, targs, nparmvec, argvec,
7068 UNIFY_ALLOW_NONE, explain_p))
7069 return 1;
7071 /* If the P0522 adjustment eliminated a pack expansion, deduce
7072 empty packs. */
7073 if (flag_new_ttp
7074 && TREE_VEC_LENGTH (nparmvec) < TREE_VEC_LENGTH (parmvec)
7075 && unify_pack_expansion (tparms, targs, parmvec, argvec,
7076 DEDUCE_EXACT, /*sub*/true, explain_p))
7077 return 1;
7079 return 0;
7082 /* Return 1 if PARM_PARMS and ARG_PARMS matches using rule for
7083 template template parameters. Both PARM_PARMS and ARG_PARMS are
7084 vectors of TREE_LIST nodes containing TYPE_DECL, TEMPLATE_DECL
7085 or PARM_DECL.
7087 Consider the example:
7088 template <class T> class A;
7089 template<template <class U> class TT> class B;
7091 For B<A>, PARM_PARMS are the parameters to TT, while ARG_PARMS are
7092 the parameters to A, and OUTER_ARGS contains A. */
7094 static int
7095 coerce_template_template_parms (tree parm_parms,
7096 tree arg_parms,
7097 tsubst_flags_t complain,
7098 tree in_decl,
7099 tree outer_args)
7101 int nparms, nargs, i;
7102 tree parm, arg;
7103 int variadic_p = 0;
7105 gcc_assert (TREE_CODE (parm_parms) == TREE_VEC);
7106 gcc_assert (TREE_CODE (arg_parms) == TREE_VEC);
7108 nparms = TREE_VEC_LENGTH (parm_parms);
7109 nargs = TREE_VEC_LENGTH (arg_parms);
7111 if (flag_new_ttp)
7113 /* P0522R0: A template template-parameter P is at least as specialized as
7114 a template template-argument A if, given the following rewrite to two
7115 function templates, the function template corresponding to P is at
7116 least as specialized as the function template corresponding to A
7117 according to the partial ordering rules for function templates
7118 ([temp.func.order]). Given an invented class template X with the
7119 template parameter list of A (including default arguments):
7121 * Each of the two function templates has the same template parameters,
7122 respectively, as P or A.
7124 * Each function template has a single function parameter whose type is
7125 a specialization of X with template arguments corresponding to the
7126 template parameters from the respective function template where, for
7127 each template parameter PP in the template parameter list of the
7128 function template, a corresponding template argument AA is formed. If
7129 PP declares a parameter pack, then AA is the pack expansion
7130 PP... ([temp.variadic]); otherwise, AA is the id-expression PP.
7132 If the rewrite produces an invalid type, then P is not at least as
7133 specialized as A. */
7135 /* So coerce P's args to apply to A's parms, and then deduce between A's
7136 args and the converted args. If that succeeds, A is at least as
7137 specialized as P, so they match.*/
7138 tree pargs = template_parms_level_to_args (parm_parms);
7139 ++processing_template_decl;
7140 pargs = coerce_template_parms (arg_parms, pargs, NULL_TREE, tf_none,
7141 /*require_all*/true, /*use_default*/true);
7142 --processing_template_decl;
7143 if (pargs != error_mark_node)
7145 tree targs = make_tree_vec (nargs);
7146 tree aargs = template_parms_level_to_args (arg_parms);
7147 if (!unify (arg_parms, targs, aargs, pargs, UNIFY_ALLOW_NONE,
7148 /*explain*/false))
7149 return 1;
7153 /* Determine whether we have a parameter pack at the end of the
7154 template template parameter's template parameter list. */
7155 if (TREE_VEC_ELT (parm_parms, nparms - 1) != error_mark_node)
7157 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, nparms - 1));
7159 if (error_operand_p (parm))
7160 return 0;
7162 switch (TREE_CODE (parm))
7164 case TEMPLATE_DECL:
7165 case TYPE_DECL:
7166 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
7167 variadic_p = 1;
7168 break;
7170 case PARM_DECL:
7171 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
7172 variadic_p = 1;
7173 break;
7175 default:
7176 gcc_unreachable ();
7180 if (nargs != nparms
7181 && !(variadic_p && nargs >= nparms - 1))
7182 return 0;
7184 /* Check all of the template parameters except the parameter pack at
7185 the end (if any). */
7186 for (i = 0; i < nparms - variadic_p; ++i)
7188 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node
7189 || TREE_VEC_ELT (arg_parms, i) == error_mark_node)
7190 continue;
7192 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
7193 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
7195 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
7196 outer_args))
7197 return 0;
7201 if (variadic_p)
7203 /* Check each of the template parameters in the template
7204 argument against the template parameter pack at the end of
7205 the template template parameter. */
7206 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node)
7207 return 0;
7209 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
7211 for (; i < nargs; ++i)
7213 if (TREE_VEC_ELT (arg_parms, i) == error_mark_node)
7214 continue;
7216 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
7218 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
7219 outer_args))
7220 return 0;
7224 return 1;
7227 /* Verifies that the deduced template arguments (in TARGS) for the
7228 template template parameters (in TPARMS) represent valid bindings,
7229 by comparing the template parameter list of each template argument
7230 to the template parameter list of its corresponding template
7231 template parameter, in accordance with DR150. This
7232 routine can only be called after all template arguments have been
7233 deduced. It will return TRUE if all of the template template
7234 parameter bindings are okay, FALSE otherwise. */
7235 bool
7236 template_template_parm_bindings_ok_p (tree tparms, tree targs)
7238 int i, ntparms = TREE_VEC_LENGTH (tparms);
7239 bool ret = true;
7241 /* We're dealing with template parms in this process. */
7242 ++processing_template_decl;
7244 targs = INNERMOST_TEMPLATE_ARGS (targs);
7246 for (i = 0; i < ntparms; ++i)
7248 tree tparm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
7249 tree targ = TREE_VEC_ELT (targs, i);
7251 if (TREE_CODE (tparm) == TEMPLATE_DECL && targ)
7253 tree packed_args = NULL_TREE;
7254 int idx, len = 1;
7256 if (ARGUMENT_PACK_P (targ))
7258 /* Look inside the argument pack. */
7259 packed_args = ARGUMENT_PACK_ARGS (targ);
7260 len = TREE_VEC_LENGTH (packed_args);
7263 for (idx = 0; idx < len; ++idx)
7265 tree targ_parms = NULL_TREE;
7267 if (packed_args)
7268 /* Extract the next argument from the argument
7269 pack. */
7270 targ = TREE_VEC_ELT (packed_args, idx);
7272 if (PACK_EXPANSION_P (targ))
7273 /* Look at the pattern of the pack expansion. */
7274 targ = PACK_EXPANSION_PATTERN (targ);
7276 /* Extract the template parameters from the template
7277 argument. */
7278 if (TREE_CODE (targ) == TEMPLATE_DECL)
7279 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (targ);
7280 else if (TREE_CODE (targ) == TEMPLATE_TEMPLATE_PARM)
7281 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (TYPE_NAME (targ));
7283 /* Verify that we can coerce the template template
7284 parameters from the template argument to the template
7285 parameter. This requires an exact match. */
7286 if (targ_parms
7287 && !coerce_template_template_parms
7288 (DECL_INNERMOST_TEMPLATE_PARMS (tparm),
7289 targ_parms,
7290 tf_none,
7291 tparm,
7292 targs))
7294 ret = false;
7295 goto out;
7301 out:
7303 --processing_template_decl;
7304 return ret;
7307 /* Since type attributes aren't mangled, we need to strip them from
7308 template type arguments. */
7310 static tree
7311 canonicalize_type_argument (tree arg, tsubst_flags_t complain)
7313 if (!arg || arg == error_mark_node || arg == TYPE_CANONICAL (arg))
7314 return arg;
7315 bool removed_attributes = false;
7316 tree canon = strip_typedefs (arg, &removed_attributes);
7317 if (removed_attributes
7318 && (complain & tf_warning))
7319 warning (OPT_Wignored_attributes,
7320 "ignoring attributes on template argument %qT", arg);
7321 return canon;
7324 /* And from inside dependent non-type arguments like sizeof(Type). */
7326 static tree
7327 canonicalize_expr_argument (tree arg, tsubst_flags_t complain)
7329 if (!arg || arg == error_mark_node)
7330 return arg;
7331 bool removed_attributes = false;
7332 tree canon = strip_typedefs_expr (arg, &removed_attributes);
7333 if (removed_attributes
7334 && (complain & tf_warning))
7335 warning (OPT_Wignored_attributes,
7336 "ignoring attributes in template argument %qE", arg);
7337 return canon;
7340 // A template declaration can be substituted for a constrained
7341 // template template parameter only when the argument is more
7342 // constrained than the parameter.
7343 static bool
7344 is_compatible_template_arg (tree parm, tree arg)
7346 tree parm_cons = get_constraints (parm);
7348 /* For now, allow constrained template template arguments
7349 and unconstrained template template parameters. */
7350 if (parm_cons == NULL_TREE)
7351 return true;
7353 tree arg_cons = get_constraints (arg);
7355 // If the template parameter is constrained, we need to rewrite its
7356 // constraints in terms of the ARG's template parameters. This ensures
7357 // that all of the template parameter types will have the same depth.
7359 // Note that this is only valid when coerce_template_template_parm is
7360 // true for the innermost template parameters of PARM and ARG. In other
7361 // words, because coercion is successful, this conversion will be valid.
7362 if (parm_cons)
7364 tree args = template_parms_to_args (DECL_TEMPLATE_PARMS (arg));
7365 parm_cons = tsubst_constraint_info (parm_cons,
7366 INNERMOST_TEMPLATE_ARGS (args),
7367 tf_none, NULL_TREE);
7368 if (parm_cons == error_mark_node)
7369 return false;
7372 return subsumes (parm_cons, arg_cons);
7375 // Convert a placeholder argument into a binding to the original
7376 // parameter. The original parameter is saved as the TREE_TYPE of
7377 // ARG.
7378 static inline tree
7379 convert_wildcard_argument (tree parm, tree arg)
7381 TREE_TYPE (arg) = parm;
7382 return arg;
7385 /* Convert the indicated template ARG as necessary to match the
7386 indicated template PARM. Returns the converted ARG, or
7387 error_mark_node if the conversion was unsuccessful. Error and
7388 warning messages are issued under control of COMPLAIN. This
7389 conversion is for the Ith parameter in the parameter list. ARGS is
7390 the full set of template arguments deduced so far. */
7392 static tree
7393 convert_template_argument (tree parm,
7394 tree arg,
7395 tree args,
7396 tsubst_flags_t complain,
7397 int i,
7398 tree in_decl)
7400 tree orig_arg;
7401 tree val;
7402 int is_type, requires_type, is_tmpl_type, requires_tmpl_type;
7404 if (parm == error_mark_node)
7405 return error_mark_node;
7407 /* Trivially convert placeholders. */
7408 if (TREE_CODE (arg) == WILDCARD_DECL)
7409 return convert_wildcard_argument (parm, arg);
7411 if (arg == any_targ_node)
7412 return arg;
7414 if (TREE_CODE (arg) == TREE_LIST
7415 && TREE_CODE (TREE_VALUE (arg)) == OFFSET_REF)
7417 /* The template argument was the name of some
7418 member function. That's usually
7419 invalid, but static members are OK. In any
7420 case, grab the underlying fields/functions
7421 and issue an error later if required. */
7422 orig_arg = TREE_VALUE (arg);
7423 TREE_TYPE (arg) = unknown_type_node;
7426 orig_arg = arg;
7428 requires_tmpl_type = TREE_CODE (parm) == TEMPLATE_DECL;
7429 requires_type = (TREE_CODE (parm) == TYPE_DECL
7430 || requires_tmpl_type);
7432 /* When determining whether an argument pack expansion is a template,
7433 look at the pattern. */
7434 if (TREE_CODE (arg) == TYPE_PACK_EXPANSION)
7435 arg = PACK_EXPANSION_PATTERN (arg);
7437 /* Deal with an injected-class-name used as a template template arg. */
7438 if (requires_tmpl_type && CLASS_TYPE_P (arg))
7440 tree t = maybe_get_template_decl_from_type_decl (TYPE_NAME (arg));
7441 if (TREE_CODE (t) == TEMPLATE_DECL)
7443 if (cxx_dialect >= cxx11)
7444 /* OK under DR 1004. */;
7445 else if (complain & tf_warning_or_error)
7446 pedwarn (input_location, OPT_Wpedantic, "injected-class-name %qD"
7447 " used as template template argument", TYPE_NAME (arg));
7448 else if (flag_pedantic_errors)
7449 t = arg;
7451 arg = t;
7455 is_tmpl_type =
7456 ((TREE_CODE (arg) == TEMPLATE_DECL
7457 && TREE_CODE (DECL_TEMPLATE_RESULT (arg)) == TYPE_DECL)
7458 || (requires_tmpl_type && TREE_CODE (arg) == TYPE_ARGUMENT_PACK)
7459 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
7460 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
7462 if (is_tmpl_type
7463 && (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
7464 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE))
7465 arg = TYPE_STUB_DECL (arg);
7467 is_type = TYPE_P (arg) || is_tmpl_type;
7469 if (requires_type && ! is_type && TREE_CODE (arg) == SCOPE_REF
7470 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_TYPE_PARM)
7472 if (TREE_CODE (TREE_OPERAND (arg, 1)) == BIT_NOT_EXPR)
7474 if (complain & tf_error)
7475 error ("invalid use of destructor %qE as a type", orig_arg);
7476 return error_mark_node;
7479 permerror (input_location,
7480 "to refer to a type member of a template parameter, "
7481 "use %<typename %E%>", orig_arg);
7483 orig_arg = make_typename_type (TREE_OPERAND (arg, 0),
7484 TREE_OPERAND (arg, 1),
7485 typename_type,
7486 complain);
7487 arg = orig_arg;
7488 is_type = 1;
7490 if (is_type != requires_type)
7492 if (in_decl)
7494 if (complain & tf_error)
7496 error ("type/value mismatch at argument %d in template "
7497 "parameter list for %qD",
7498 i + 1, in_decl);
7499 if (is_type)
7500 inform (input_location,
7501 " expected a constant of type %qT, got %qT",
7502 TREE_TYPE (parm),
7503 (DECL_P (arg) ? DECL_NAME (arg) : orig_arg));
7504 else if (requires_tmpl_type)
7505 inform (input_location,
7506 " expected a class template, got %qE", orig_arg);
7507 else
7508 inform (input_location,
7509 " expected a type, got %qE", orig_arg);
7512 return error_mark_node;
7514 if (is_tmpl_type ^ requires_tmpl_type)
7516 if (in_decl && (complain & tf_error))
7518 error ("type/value mismatch at argument %d in template "
7519 "parameter list for %qD",
7520 i + 1, in_decl);
7521 if (is_tmpl_type)
7522 inform (input_location,
7523 " expected a type, got %qT", DECL_NAME (arg));
7524 else
7525 inform (input_location,
7526 " expected a class template, got %qT", orig_arg);
7528 return error_mark_node;
7531 if (is_type)
7533 if (requires_tmpl_type)
7535 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
7536 val = orig_arg;
7537 else if (TREE_CODE (TREE_TYPE (arg)) == UNBOUND_CLASS_TEMPLATE)
7538 /* The number of argument required is not known yet.
7539 Just accept it for now. */
7540 val = TREE_TYPE (arg);
7541 else
7543 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
7544 tree argparm;
7546 /* Strip alias templates that are equivalent to another
7547 template. */
7548 arg = get_underlying_template (arg);
7549 argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
7551 if (coerce_template_template_parms (parmparm, argparm,
7552 complain, in_decl,
7553 args))
7555 val = arg;
7557 /* TEMPLATE_TEMPLATE_PARM node is preferred over
7558 TEMPLATE_DECL. */
7559 if (val != error_mark_node)
7561 if (DECL_TEMPLATE_TEMPLATE_PARM_P (val))
7562 val = TREE_TYPE (val);
7563 if (TREE_CODE (orig_arg) == TYPE_PACK_EXPANSION)
7564 val = make_pack_expansion (val);
7567 else
7569 if (in_decl && (complain & tf_error))
7571 error ("type/value mismatch at argument %d in "
7572 "template parameter list for %qD",
7573 i + 1, in_decl);
7574 inform (input_location,
7575 " expected a template of type %qD, got %qT",
7576 parm, orig_arg);
7579 val = error_mark_node;
7582 // Check that the constraints are compatible before allowing the
7583 // substitution.
7584 if (val != error_mark_node)
7585 if (!is_compatible_template_arg (parm, arg))
7587 if (in_decl && (complain & tf_error))
7589 error ("constraint mismatch at argument %d in "
7590 "template parameter list for %qD",
7591 i + 1, in_decl);
7592 inform (input_location, " expected %qD but got %qD",
7593 parm, arg);
7595 val = error_mark_node;
7599 else
7600 val = orig_arg;
7601 /* We only form one instance of each template specialization.
7602 Therefore, if we use a non-canonical variant (i.e., a
7603 typedef), any future messages referring to the type will use
7604 the typedef, which is confusing if those future uses do not
7605 themselves also use the typedef. */
7606 if (TYPE_P (val))
7607 val = canonicalize_type_argument (val, complain);
7609 else
7611 tree t = TREE_TYPE (parm);
7613 if (tree a = type_uses_auto (t))
7615 t = do_auto_deduction (t, arg, a, complain, adc_unify, args);
7616 if (t == error_mark_node)
7617 return error_mark_node;
7619 else
7620 t = tsubst (t, args, complain, in_decl);
7622 if (invalid_nontype_parm_type_p (t, complain))
7623 return error_mark_node;
7625 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
7627 if (same_type_p (t, TREE_TYPE (orig_arg)))
7628 val = orig_arg;
7629 else
7631 /* Not sure if this is reachable, but it doesn't hurt
7632 to be robust. */
7633 error ("type mismatch in nontype parameter pack");
7634 val = error_mark_node;
7637 else if (!type_dependent_expression_p (orig_arg)
7638 && !uses_template_parms (t))
7639 /* We used to call digest_init here. However, digest_init
7640 will report errors, which we don't want when complain
7641 is zero. More importantly, digest_init will try too
7642 hard to convert things: for example, `0' should not be
7643 converted to pointer type at this point according to
7644 the standard. Accepting this is not merely an
7645 extension, since deciding whether or not these
7646 conversions can occur is part of determining which
7647 function template to call, or whether a given explicit
7648 argument specification is valid. */
7649 val = convert_nontype_argument (t, orig_arg, complain);
7650 else
7651 val = canonicalize_expr_argument (orig_arg, complain);
7653 if (val == NULL_TREE)
7654 val = error_mark_node;
7655 else if (val == error_mark_node && (complain & tf_error))
7656 error ("could not convert template argument %qE from %qT to %qT",
7657 orig_arg, TREE_TYPE (orig_arg), t);
7659 if (INDIRECT_REF_P (val))
7661 /* Reject template arguments that are references to built-in
7662 functions with no library fallbacks. */
7663 const_tree inner = TREE_OPERAND (val, 0);
7664 const_tree innertype = TREE_TYPE (inner);
7665 if (innertype
7666 && TREE_CODE (innertype) == REFERENCE_TYPE
7667 && TREE_CODE (TREE_TYPE (innertype)) == FUNCTION_TYPE
7668 && 0 < TREE_OPERAND_LENGTH (inner)
7669 && reject_gcc_builtin (TREE_OPERAND (inner, 0)))
7670 return error_mark_node;
7673 if (TREE_CODE (val) == SCOPE_REF)
7675 /* Strip typedefs from the SCOPE_REF. */
7676 tree type = canonicalize_type_argument (TREE_TYPE (val), complain);
7677 tree scope = canonicalize_type_argument (TREE_OPERAND (val, 0),
7678 complain);
7679 val = build_qualified_name (type, scope, TREE_OPERAND (val, 1),
7680 QUALIFIED_NAME_IS_TEMPLATE (val));
7684 return val;
7687 /* Coerces the remaining template arguments in INNER_ARGS (from
7688 ARG_IDX to the end) into the parameter pack at PARM_IDX in PARMS.
7689 Returns the coerced argument pack. PARM_IDX is the position of this
7690 parameter in the template parameter list. ARGS is the original
7691 template argument list. */
7692 static tree
7693 coerce_template_parameter_pack (tree parms,
7694 int parm_idx,
7695 tree args,
7696 tree inner_args,
7697 int arg_idx,
7698 tree new_args,
7699 int* lost,
7700 tree in_decl,
7701 tsubst_flags_t complain)
7703 tree parm = TREE_VEC_ELT (parms, parm_idx);
7704 int nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
7705 tree packed_args;
7706 tree argument_pack;
7707 tree packed_parms = NULL_TREE;
7709 if (arg_idx > nargs)
7710 arg_idx = nargs;
7712 if (tree packs = fixed_parameter_pack_p (TREE_VALUE (parm)))
7714 /* When the template parameter is a non-type template parameter pack
7715 or template template parameter pack whose type or template
7716 parameters use parameter packs, we know exactly how many arguments
7717 we are looking for. Build a vector of the instantiated decls for
7718 these template parameters in PACKED_PARMS. */
7719 /* We can't use make_pack_expansion here because it would interpret a
7720 _DECL as a use rather than a declaration. */
7721 tree decl = TREE_VALUE (parm);
7722 tree exp = cxx_make_type (TYPE_PACK_EXPANSION);
7723 SET_PACK_EXPANSION_PATTERN (exp, decl);
7724 PACK_EXPANSION_PARAMETER_PACKS (exp) = packs;
7725 SET_TYPE_STRUCTURAL_EQUALITY (exp);
7727 TREE_VEC_LENGTH (args)--;
7728 packed_parms = tsubst_pack_expansion (exp, args, complain, decl);
7729 TREE_VEC_LENGTH (args)++;
7731 if (packed_parms == error_mark_node)
7732 return error_mark_node;
7734 /* If we're doing a partial instantiation of a member template,
7735 verify that all of the types used for the non-type
7736 template parameter pack are, in fact, valid for non-type
7737 template parameters. */
7738 if (arg_idx < nargs
7739 && PACK_EXPANSION_P (TREE_VEC_ELT (inner_args, arg_idx)))
7741 int j, len = TREE_VEC_LENGTH (packed_parms);
7742 for (j = 0; j < len; ++j)
7744 tree t = TREE_TYPE (TREE_VEC_ELT (packed_parms, j));
7745 if (invalid_nontype_parm_type_p (t, complain))
7746 return error_mark_node;
7748 /* We don't know how many args we have yet, just
7749 use the unconverted ones for now. */
7750 return NULL_TREE;
7753 packed_args = make_tree_vec (TREE_VEC_LENGTH (packed_parms));
7755 /* Check if we have a placeholder pack, which indicates we're
7756 in the context of a introduction list. In that case we want
7757 to match this pack to the single placeholder. */
7758 else if (arg_idx < nargs
7759 && TREE_CODE (TREE_VEC_ELT (inner_args, arg_idx)) == WILDCARD_DECL
7760 && WILDCARD_PACK_P (TREE_VEC_ELT (inner_args, arg_idx)))
7762 nargs = arg_idx + 1;
7763 packed_args = make_tree_vec (1);
7765 else
7766 packed_args = make_tree_vec (nargs - arg_idx);
7768 /* Convert the remaining arguments, which will be a part of the
7769 parameter pack "parm". */
7770 int first_pack_arg = arg_idx;
7771 for (; arg_idx < nargs; ++arg_idx)
7773 tree arg = TREE_VEC_ELT (inner_args, arg_idx);
7774 tree actual_parm = TREE_VALUE (parm);
7775 int pack_idx = arg_idx - first_pack_arg;
7777 if (packed_parms)
7779 /* Once we've packed as many args as we have types, stop. */
7780 if (pack_idx >= TREE_VEC_LENGTH (packed_parms))
7781 break;
7782 else if (PACK_EXPANSION_P (arg))
7783 /* We don't know how many args we have yet, just
7784 use the unconverted ones for now. */
7785 return NULL_TREE;
7786 else
7787 actual_parm = TREE_VEC_ELT (packed_parms, pack_idx);
7790 if (arg == error_mark_node)
7792 if (complain & tf_error)
7793 error ("template argument %d is invalid", arg_idx + 1);
7795 else
7796 arg = convert_template_argument (actual_parm,
7797 arg, new_args, complain, parm_idx,
7798 in_decl);
7799 if (arg == error_mark_node)
7800 (*lost)++;
7801 TREE_VEC_ELT (packed_args, pack_idx) = arg;
7804 if (arg_idx - first_pack_arg < TREE_VEC_LENGTH (packed_args)
7805 && TREE_VEC_LENGTH (packed_args) > 0)
7807 if (complain & tf_error)
7808 error ("wrong number of template arguments (%d, should be %d)",
7809 arg_idx - first_pack_arg, TREE_VEC_LENGTH (packed_args));
7810 return error_mark_node;
7813 if (TREE_CODE (TREE_VALUE (parm)) == TYPE_DECL
7814 || TREE_CODE (TREE_VALUE (parm)) == TEMPLATE_DECL)
7815 argument_pack = cxx_make_type (TYPE_ARGUMENT_PACK);
7816 else
7818 argument_pack = make_node (NONTYPE_ARGUMENT_PACK);
7819 TREE_TYPE (argument_pack)
7820 = tsubst (TREE_TYPE (TREE_VALUE (parm)), new_args, complain, in_decl);
7821 TREE_CONSTANT (argument_pack) = 1;
7824 SET_ARGUMENT_PACK_ARGS (argument_pack, packed_args);
7825 if (CHECKING_P)
7826 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (packed_args,
7827 TREE_VEC_LENGTH (packed_args));
7828 return argument_pack;
7831 /* Returns the number of pack expansions in the template argument vector
7832 ARGS. */
7834 static int
7835 pack_expansion_args_count (tree args)
7837 int i;
7838 int count = 0;
7839 if (args)
7840 for (i = 0; i < TREE_VEC_LENGTH (args); ++i)
7842 tree elt = TREE_VEC_ELT (args, i);
7843 if (elt && PACK_EXPANSION_P (elt))
7844 ++count;
7846 return count;
7849 /* Convert all template arguments to their appropriate types, and
7850 return a vector containing the innermost resulting template
7851 arguments. If any error occurs, return error_mark_node. Error and
7852 warning messages are issued under control of COMPLAIN.
7854 If REQUIRE_ALL_ARGS is false, argument deduction will be performed
7855 for arguments not specified in ARGS. Otherwise, if
7856 USE_DEFAULT_ARGS is true, default arguments will be used to fill in
7857 unspecified arguments. If REQUIRE_ALL_ARGS is true, but
7858 USE_DEFAULT_ARGS is false, then all arguments must be specified in
7859 ARGS. */
7861 static tree
7862 coerce_template_parms (tree parms,
7863 tree args,
7864 tree in_decl,
7865 tsubst_flags_t complain,
7866 bool require_all_args,
7867 bool use_default_args)
7869 int nparms, nargs, parm_idx, arg_idx, lost = 0;
7870 tree orig_inner_args;
7871 tree inner_args;
7872 tree new_args;
7873 tree new_inner_args;
7874 int saved_unevaluated_operand;
7875 int saved_inhibit_evaluation_warnings;
7877 /* When used as a boolean value, indicates whether this is a
7878 variadic template parameter list. Since it's an int, we can also
7879 subtract it from nparms to get the number of non-variadic
7880 parameters. */
7881 int variadic_p = 0;
7882 int variadic_args_p = 0;
7883 int post_variadic_parms = 0;
7885 /* Likewise for parameters with default arguments. */
7886 int default_p = 0;
7888 if (args == error_mark_node)
7889 return error_mark_node;
7891 nparms = TREE_VEC_LENGTH (parms);
7893 /* Determine if there are any parameter packs or default arguments. */
7894 for (parm_idx = 0; parm_idx < nparms; ++parm_idx)
7896 tree parm = TREE_VEC_ELT (parms, parm_idx);
7897 if (variadic_p)
7898 ++post_variadic_parms;
7899 if (template_parameter_pack_p (TREE_VALUE (parm)))
7900 ++variadic_p;
7901 if (TREE_PURPOSE (parm))
7902 ++default_p;
7905 inner_args = orig_inner_args = INNERMOST_TEMPLATE_ARGS (args);
7906 /* If there are no parameters that follow a parameter pack, we need to
7907 expand any argument packs so that we can deduce a parameter pack from
7908 some non-packed args followed by an argument pack, as in variadic85.C.
7909 If there are such parameters, we need to leave argument packs intact
7910 so the arguments are assigned properly. This can happen when dealing
7911 with a nested class inside a partial specialization of a class
7912 template, as in variadic92.C, or when deducing a template parameter pack
7913 from a sub-declarator, as in variadic114.C. */
7914 if (!post_variadic_parms)
7915 inner_args = expand_template_argument_pack (inner_args);
7917 /* Count any pack expansion args. */
7918 variadic_args_p = pack_expansion_args_count (inner_args);
7920 nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
7921 if ((nargs - variadic_args_p > nparms && !variadic_p)
7922 || (nargs < nparms - variadic_p
7923 && require_all_args
7924 && !variadic_args_p
7925 && (!use_default_args
7926 || (TREE_VEC_ELT (parms, nargs) != error_mark_node
7927 && !TREE_PURPOSE (TREE_VEC_ELT (parms, nargs))))))
7929 if (complain & tf_error)
7931 if (variadic_p || default_p)
7933 nparms -= variadic_p + default_p;
7934 error ("wrong number of template arguments "
7935 "(%d, should be at least %d)", nargs, nparms);
7937 else
7938 error ("wrong number of template arguments "
7939 "(%d, should be %d)", nargs, nparms);
7941 if (in_decl)
7942 inform (DECL_SOURCE_LOCATION (in_decl),
7943 "provided for %qD", in_decl);
7946 return error_mark_node;
7948 /* We can't pass a pack expansion to a non-pack parameter of an alias
7949 template (DR 1430). */
7950 else if (in_decl
7951 && (DECL_ALIAS_TEMPLATE_P (in_decl)
7952 || concept_template_p (in_decl))
7953 && variadic_args_p
7954 && nargs - variadic_args_p < nparms - variadic_p)
7956 if (complain & tf_error)
7958 for (int i = 0; i < TREE_VEC_LENGTH (inner_args); ++i)
7960 tree arg = TREE_VEC_ELT (inner_args, i);
7961 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
7963 if (PACK_EXPANSION_P (arg)
7964 && !template_parameter_pack_p (parm))
7966 if (DECL_ALIAS_TEMPLATE_P (in_decl))
7967 error_at (location_of (arg),
7968 "pack expansion argument for non-pack parameter "
7969 "%qD of alias template %qD", parm, in_decl);
7970 else
7971 error_at (location_of (arg),
7972 "pack expansion argument for non-pack parameter "
7973 "%qD of concept %qD", parm, in_decl);
7974 inform (DECL_SOURCE_LOCATION (parm), "declared here");
7975 goto found;
7978 gcc_unreachable ();
7979 found:;
7981 return error_mark_node;
7984 /* We need to evaluate the template arguments, even though this
7985 template-id may be nested within a "sizeof". */
7986 saved_unevaluated_operand = cp_unevaluated_operand;
7987 cp_unevaluated_operand = 0;
7988 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
7989 c_inhibit_evaluation_warnings = 0;
7990 new_inner_args = make_tree_vec (nparms);
7991 new_args = add_outermost_template_args (args, new_inner_args);
7992 int pack_adjust = 0;
7993 for (parm_idx = 0, arg_idx = 0; parm_idx < nparms; parm_idx++, arg_idx++)
7995 tree arg;
7996 tree parm;
7998 /* Get the Ith template parameter. */
7999 parm = TREE_VEC_ELT (parms, parm_idx);
8001 if (parm == error_mark_node)
8003 TREE_VEC_ELT (new_inner_args, arg_idx) = error_mark_node;
8004 continue;
8007 /* Calculate the next argument. */
8008 if (arg_idx < nargs)
8009 arg = TREE_VEC_ELT (inner_args, arg_idx);
8010 else
8011 arg = NULL_TREE;
8013 if (template_parameter_pack_p (TREE_VALUE (parm))
8014 && !(arg && ARGUMENT_PACK_P (arg)))
8016 /* Some arguments will be placed in the
8017 template parameter pack PARM. */
8018 arg = coerce_template_parameter_pack (parms, parm_idx, args,
8019 inner_args, arg_idx,
8020 new_args, &lost,
8021 in_decl, complain);
8023 if (arg == NULL_TREE)
8025 /* We don't know how many args we have yet, just use the
8026 unconverted (and still packed) ones for now. */
8027 new_inner_args = orig_inner_args;
8028 arg_idx = nargs;
8029 break;
8032 TREE_VEC_ELT (new_inner_args, parm_idx) = arg;
8034 /* Store this argument. */
8035 if (arg == error_mark_node)
8037 lost++;
8038 /* We are done with all of the arguments. */
8039 arg_idx = nargs;
8041 else
8043 pack_adjust = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg)) - 1;
8044 arg_idx += pack_adjust;
8047 continue;
8049 else if (arg)
8051 if (PACK_EXPANSION_P (arg))
8053 /* "If every valid specialization of a variadic template
8054 requires an empty template parameter pack, the template is
8055 ill-formed, no diagnostic required." So check that the
8056 pattern works with this parameter. */
8057 tree pattern = PACK_EXPANSION_PATTERN (arg);
8058 tree conv = convert_template_argument (TREE_VALUE (parm),
8059 pattern, new_args,
8060 complain, parm_idx,
8061 in_decl);
8062 if (conv == error_mark_node)
8064 if (complain & tf_error)
8065 inform (input_location, "so any instantiation with a "
8066 "non-empty parameter pack would be ill-formed");
8067 ++lost;
8069 else if (TYPE_P (conv) && !TYPE_P (pattern))
8070 /* Recover from missing typename. */
8071 TREE_VEC_ELT (inner_args, arg_idx)
8072 = make_pack_expansion (conv);
8074 /* We don't know how many args we have yet, just
8075 use the unconverted ones for now. */
8076 new_inner_args = inner_args;
8077 arg_idx = nargs;
8078 break;
8081 else if (require_all_args)
8083 /* There must be a default arg in this case. */
8084 arg = tsubst_template_arg (TREE_PURPOSE (parm), new_args,
8085 complain, in_decl);
8086 /* The position of the first default template argument,
8087 is also the number of non-defaulted arguments in NEW_INNER_ARGS.
8088 Record that. */
8089 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
8090 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args,
8091 arg_idx - pack_adjust);
8093 else
8094 break;
8096 if (arg == error_mark_node)
8098 if (complain & tf_error)
8099 error ("template argument %d is invalid", arg_idx + 1);
8101 else if (!arg)
8102 /* This only occurs if there was an error in the template
8103 parameter list itself (which we would already have
8104 reported) that we are trying to recover from, e.g., a class
8105 template with a parameter list such as
8106 template<typename..., typename>. */
8107 ++lost;
8108 else
8109 arg = convert_template_argument (TREE_VALUE (parm),
8110 arg, new_args, complain,
8111 parm_idx, in_decl);
8113 if (arg == error_mark_node)
8114 lost++;
8115 TREE_VEC_ELT (new_inner_args, arg_idx - pack_adjust) = arg;
8117 cp_unevaluated_operand = saved_unevaluated_operand;
8118 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
8120 if (variadic_p && arg_idx < nargs)
8122 if (complain & tf_error)
8124 error ("wrong number of template arguments "
8125 "(%d, should be %d)", nargs, arg_idx);
8126 if (in_decl)
8127 error ("provided for %q+D", in_decl);
8129 return error_mark_node;
8132 if (lost)
8133 return error_mark_node;
8135 if (CHECKING_P && !NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
8136 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args,
8137 TREE_VEC_LENGTH (new_inner_args));
8139 return new_inner_args;
8142 /* Convert all template arguments to their appropriate types, and
8143 return a vector containing the innermost resulting template
8144 arguments. If any error occurs, return error_mark_node. Error and
8145 warning messages are not issued.
8147 Note that no function argument deduction is performed, and default
8148 arguments are used to fill in unspecified arguments. */
8149 tree
8150 coerce_template_parms (tree parms, tree args, tree in_decl)
8152 return coerce_template_parms (parms, args, in_decl, tf_none, true, true);
8155 /* Convert all template arguments to their appropriate type, and
8156 instantiate default arguments as needed. This returns a vector
8157 containing the innermost resulting template arguments, or
8158 error_mark_node if unsuccessful. */
8159 tree
8160 coerce_template_parms (tree parms, tree args, tree in_decl,
8161 tsubst_flags_t complain)
8163 return coerce_template_parms (parms, args, in_decl, complain, true, true);
8166 /* Like coerce_template_parms. If PARMS represents all template
8167 parameters levels, this function returns a vector of vectors
8168 representing all the resulting argument levels. Note that in this
8169 case, only the innermost arguments are coerced because the
8170 outermost ones are supposed to have been coerced already.
8172 Otherwise, if PARMS represents only (the innermost) vector of
8173 parameters, this function returns a vector containing just the
8174 innermost resulting arguments. */
8176 static tree
8177 coerce_innermost_template_parms (tree parms,
8178 tree args,
8179 tree in_decl,
8180 tsubst_flags_t complain,
8181 bool require_all_args,
8182 bool use_default_args)
8184 int parms_depth = TMPL_PARMS_DEPTH (parms);
8185 int args_depth = TMPL_ARGS_DEPTH (args);
8186 tree coerced_args;
8188 if (parms_depth > 1)
8190 coerced_args = make_tree_vec (parms_depth);
8191 tree level;
8192 int cur_depth;
8194 for (level = parms, cur_depth = parms_depth;
8195 parms_depth > 0 && level != NULL_TREE;
8196 level = TREE_CHAIN (level), --cur_depth)
8198 tree l;
8199 if (cur_depth == args_depth)
8200 l = coerce_template_parms (TREE_VALUE (level),
8201 args, in_decl, complain,
8202 require_all_args,
8203 use_default_args);
8204 else
8205 l = TMPL_ARGS_LEVEL (args, cur_depth);
8207 if (l == error_mark_node)
8208 return error_mark_node;
8210 SET_TMPL_ARGS_LEVEL (coerced_args, cur_depth, l);
8213 else
8214 coerced_args = coerce_template_parms (INNERMOST_TEMPLATE_PARMS (parms),
8215 args, in_decl, complain,
8216 require_all_args,
8217 use_default_args);
8218 return coerced_args;
8221 /* Returns 1 if template args OT and NT are equivalent. */
8224 template_args_equal (tree ot, tree nt)
8226 if (nt == ot)
8227 return 1;
8228 if (nt == NULL_TREE || ot == NULL_TREE)
8229 return false;
8230 if (nt == any_targ_node || ot == any_targ_node)
8231 return true;
8233 if (TREE_CODE (nt) == TREE_VEC)
8234 /* For member templates */
8235 return TREE_CODE (ot) == TREE_VEC && comp_template_args (ot, nt);
8236 else if (PACK_EXPANSION_P (ot))
8237 return (PACK_EXPANSION_P (nt)
8238 && template_args_equal (PACK_EXPANSION_PATTERN (ot),
8239 PACK_EXPANSION_PATTERN (nt))
8240 && template_args_equal (PACK_EXPANSION_EXTRA_ARGS (ot),
8241 PACK_EXPANSION_EXTRA_ARGS (nt)));
8242 else if (ARGUMENT_PACK_P (ot))
8244 int i, len;
8245 tree opack, npack;
8247 if (!ARGUMENT_PACK_P (nt))
8248 return 0;
8250 opack = ARGUMENT_PACK_ARGS (ot);
8251 npack = ARGUMENT_PACK_ARGS (nt);
8252 len = TREE_VEC_LENGTH (opack);
8253 if (TREE_VEC_LENGTH (npack) != len)
8254 return 0;
8255 for (i = 0; i < len; ++i)
8256 if (!template_args_equal (TREE_VEC_ELT (opack, i),
8257 TREE_VEC_ELT (npack, i)))
8258 return 0;
8259 return 1;
8261 else if (ot && TREE_CODE (ot) == ARGUMENT_PACK_SELECT)
8262 gcc_unreachable ();
8263 else if (TYPE_P (nt))
8265 if (!TYPE_P (ot))
8266 return false;
8267 /* Don't treat an alias template specialization with dependent
8268 arguments as equivalent to its underlying type when used as a
8269 template argument; we need them to be distinct so that we
8270 substitute into the specialization arguments at instantiation
8271 time. And aliases can't be equivalent without being ==, so
8272 we don't need to look any deeper. */
8273 if (TYPE_ALIAS_P (nt) || TYPE_ALIAS_P (ot))
8274 return false;
8275 else
8276 return same_type_p (ot, nt);
8278 else if (TREE_CODE (ot) == TREE_VEC || TYPE_P (ot))
8279 return 0;
8280 else
8282 /* Try to treat a template non-type argument that has been converted
8283 to the parameter type as equivalent to one that hasn't yet. */
8284 for (enum tree_code code1 = TREE_CODE (ot);
8285 CONVERT_EXPR_CODE_P (code1)
8286 || code1 == NON_LVALUE_EXPR;
8287 code1 = TREE_CODE (ot))
8288 ot = TREE_OPERAND (ot, 0);
8289 for (enum tree_code code2 = TREE_CODE (nt);
8290 CONVERT_EXPR_CODE_P (code2)
8291 || code2 == NON_LVALUE_EXPR;
8292 code2 = TREE_CODE (nt))
8293 nt = TREE_OPERAND (nt, 0);
8295 return cp_tree_equal (ot, nt);
8299 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets of
8300 template arguments. Returns 0 otherwise, and updates OLDARG_PTR and
8301 NEWARG_PTR with the offending arguments if they are non-NULL. */
8304 comp_template_args (tree oldargs, tree newargs,
8305 tree *oldarg_ptr, tree *newarg_ptr)
8307 int i;
8309 if (oldargs == newargs)
8310 return 1;
8312 if (!oldargs || !newargs)
8313 return 0;
8315 if (TREE_VEC_LENGTH (oldargs) != TREE_VEC_LENGTH (newargs))
8316 return 0;
8318 for (i = 0; i < TREE_VEC_LENGTH (oldargs); ++i)
8320 tree nt = TREE_VEC_ELT (newargs, i);
8321 tree ot = TREE_VEC_ELT (oldargs, i);
8323 if (! template_args_equal (ot, nt))
8325 if (oldarg_ptr != NULL)
8326 *oldarg_ptr = ot;
8327 if (newarg_ptr != NULL)
8328 *newarg_ptr = nt;
8329 return 0;
8332 return 1;
8335 static void
8336 add_pending_template (tree d)
8338 tree ti = (TYPE_P (d)
8339 ? CLASSTYPE_TEMPLATE_INFO (d)
8340 : DECL_TEMPLATE_INFO (d));
8341 struct pending_template *pt;
8342 int level;
8344 if (TI_PENDING_TEMPLATE_FLAG (ti))
8345 return;
8347 /* We are called both from instantiate_decl, where we've already had a
8348 tinst_level pushed, and instantiate_template, where we haven't.
8349 Compensate. */
8350 level = !current_tinst_level || current_tinst_level->decl != d;
8352 if (level)
8353 push_tinst_level (d);
8355 pt = ggc_alloc<pending_template> ();
8356 pt->next = NULL;
8357 pt->tinst = current_tinst_level;
8358 if (last_pending_template)
8359 last_pending_template->next = pt;
8360 else
8361 pending_templates = pt;
8363 last_pending_template = pt;
8365 TI_PENDING_TEMPLATE_FLAG (ti) = 1;
8367 if (level)
8368 pop_tinst_level ();
8372 /* Return a TEMPLATE_ID_EXPR corresponding to the indicated FNS and
8373 ARGLIST. Valid choices for FNS are given in the cp-tree.def
8374 documentation for TEMPLATE_ID_EXPR. */
8376 tree
8377 lookup_template_function (tree fns, tree arglist)
8379 tree type;
8381 if (fns == error_mark_node || arglist == error_mark_node)
8382 return error_mark_node;
8384 gcc_assert (!arglist || TREE_CODE (arglist) == TREE_VEC);
8386 if (!is_overloaded_fn (fns) && !identifier_p (fns))
8388 error ("%q#D is not a function template", fns);
8389 return error_mark_node;
8392 if (BASELINK_P (fns))
8394 BASELINK_FUNCTIONS (fns) = build2 (TEMPLATE_ID_EXPR,
8395 unknown_type_node,
8396 BASELINK_FUNCTIONS (fns),
8397 arglist);
8398 return fns;
8401 type = TREE_TYPE (fns);
8402 if (TREE_CODE (fns) == OVERLOAD || !type)
8403 type = unknown_type_node;
8405 return build2 (TEMPLATE_ID_EXPR, type, fns, arglist);
8408 /* Within the scope of a template class S<T>, the name S gets bound
8409 (in build_self_reference) to a TYPE_DECL for the class, not a
8410 TEMPLATE_DECL. If DECL is a TYPE_DECL for current_class_type,
8411 or one of its enclosing classes, and that type is a template,
8412 return the associated TEMPLATE_DECL. Otherwise, the original
8413 DECL is returned.
8415 Also handle the case when DECL is a TREE_LIST of ambiguous
8416 injected-class-names from different bases. */
8418 tree
8419 maybe_get_template_decl_from_type_decl (tree decl)
8421 if (decl == NULL_TREE)
8422 return decl;
8424 /* DR 176: A lookup that finds an injected-class-name (10.2
8425 [class.member.lookup]) can result in an ambiguity in certain cases
8426 (for example, if it is found in more than one base class). If all of
8427 the injected-class-names that are found refer to specializations of
8428 the same class template, and if the name is followed by a
8429 template-argument-list, the reference refers to the class template
8430 itself and not a specialization thereof, and is not ambiguous. */
8431 if (TREE_CODE (decl) == TREE_LIST)
8433 tree t, tmpl = NULL_TREE;
8434 for (t = decl; t; t = TREE_CHAIN (t))
8436 tree elt = maybe_get_template_decl_from_type_decl (TREE_VALUE (t));
8437 if (!tmpl)
8438 tmpl = elt;
8439 else if (tmpl != elt)
8440 break;
8442 if (tmpl && t == NULL_TREE)
8443 return tmpl;
8444 else
8445 return decl;
8448 return (decl != NULL_TREE
8449 && DECL_SELF_REFERENCE_P (decl)
8450 && CLASSTYPE_TEMPLATE_INFO (TREE_TYPE (decl)))
8451 ? CLASSTYPE_TI_TEMPLATE (TREE_TYPE (decl)) : decl;
8454 /* Given an IDENTIFIER_NODE (or type TEMPLATE_DECL) and a chain of
8455 parameters, find the desired type.
8457 D1 is the PTYPENAME terminal, and ARGLIST is the list of arguments.
8459 IN_DECL, if non-NULL, is the template declaration we are trying to
8460 instantiate.
8462 If ENTERING_SCOPE is nonzero, we are about to enter the scope of
8463 the class we are looking up.
8465 Issue error and warning messages under control of COMPLAIN.
8467 If the template class is really a local class in a template
8468 function, then the FUNCTION_CONTEXT is the function in which it is
8469 being instantiated.
8471 ??? Note that this function is currently called *twice* for each
8472 template-id: the first time from the parser, while creating the
8473 incomplete type (finish_template_type), and the second type during the
8474 real instantiation (instantiate_template_class). This is surely something
8475 that we want to avoid. It also causes some problems with argument
8476 coercion (see convert_nontype_argument for more information on this). */
8478 static tree
8479 lookup_template_class_1 (tree d1, tree arglist, tree in_decl, tree context,
8480 int entering_scope, tsubst_flags_t complain)
8482 tree templ = NULL_TREE, parmlist;
8483 tree t;
8484 spec_entry **slot;
8485 spec_entry *entry;
8486 spec_entry elt;
8487 hashval_t hash;
8489 if (identifier_p (d1))
8491 tree value = innermost_non_namespace_value (d1);
8492 if (value && DECL_TEMPLATE_TEMPLATE_PARM_P (value))
8493 templ = value;
8494 else
8496 if (context)
8497 push_decl_namespace (context);
8498 templ = lookup_name (d1);
8499 templ = maybe_get_template_decl_from_type_decl (templ);
8500 if (context)
8501 pop_decl_namespace ();
8503 if (templ)
8504 context = DECL_CONTEXT (templ);
8506 else if (TREE_CODE (d1) == TYPE_DECL && MAYBE_CLASS_TYPE_P (TREE_TYPE (d1)))
8508 tree type = TREE_TYPE (d1);
8510 /* If we are declaring a constructor, say A<T>::A<T>, we will get
8511 an implicit typename for the second A. Deal with it. */
8512 if (TREE_CODE (type) == TYPENAME_TYPE && TREE_TYPE (type))
8513 type = TREE_TYPE (type);
8515 if (CLASSTYPE_TEMPLATE_INFO (type))
8517 templ = CLASSTYPE_TI_TEMPLATE (type);
8518 d1 = DECL_NAME (templ);
8521 else if (TREE_CODE (d1) == ENUMERAL_TYPE
8522 || (TYPE_P (d1) && MAYBE_CLASS_TYPE_P (d1)))
8524 templ = TYPE_TI_TEMPLATE (d1);
8525 d1 = DECL_NAME (templ);
8527 else if (DECL_TYPE_TEMPLATE_P (d1))
8529 templ = d1;
8530 d1 = DECL_NAME (templ);
8531 context = DECL_CONTEXT (templ);
8533 else if (DECL_TEMPLATE_TEMPLATE_PARM_P (d1))
8535 templ = d1;
8536 d1 = DECL_NAME (templ);
8539 /* Issue an error message if we didn't find a template. */
8540 if (! templ)
8542 if (complain & tf_error)
8543 error ("%qT is not a template", d1);
8544 return error_mark_node;
8547 if (TREE_CODE (templ) != TEMPLATE_DECL
8548 /* Make sure it's a user visible template, if it was named by
8549 the user. */
8550 || ((complain & tf_user) && !DECL_TEMPLATE_PARM_P (templ)
8551 && !PRIMARY_TEMPLATE_P (templ)))
8553 if (complain & tf_error)
8555 error ("non-template type %qT used as a template", d1);
8556 if (in_decl)
8557 error ("for template declaration %q+D", in_decl);
8559 return error_mark_node;
8562 complain &= ~tf_user;
8564 /* An alias that just changes the name of a template is equivalent to the
8565 other template, so if any of the arguments are pack expansions, strip
8566 the alias to avoid problems with a pack expansion passed to a non-pack
8567 alias template parameter (DR 1430). */
8568 if (pack_expansion_args_count (INNERMOST_TEMPLATE_ARGS (arglist)))
8569 templ = get_underlying_template (templ);
8571 if (DECL_TEMPLATE_TEMPLATE_PARM_P (templ))
8573 tree parm;
8574 tree arglist2 = coerce_template_args_for_ttp (templ, arglist, complain);
8575 if (arglist2 == error_mark_node
8576 || (!uses_template_parms (arglist2)
8577 && check_instantiated_args (templ, arglist2, complain)))
8578 return error_mark_node;
8580 parm = bind_template_template_parm (TREE_TYPE (templ), arglist2);
8581 return parm;
8583 else
8585 tree template_type = TREE_TYPE (templ);
8586 tree gen_tmpl;
8587 tree type_decl;
8588 tree found = NULL_TREE;
8589 int arg_depth;
8590 int parm_depth;
8591 int is_dependent_type;
8592 int use_partial_inst_tmpl = false;
8594 if (template_type == error_mark_node)
8595 /* An error occurred while building the template TEMPL, and a
8596 diagnostic has most certainly been emitted for that
8597 already. Let's propagate that error. */
8598 return error_mark_node;
8600 gen_tmpl = most_general_template (templ);
8601 parmlist = DECL_TEMPLATE_PARMS (gen_tmpl);
8602 parm_depth = TMPL_PARMS_DEPTH (parmlist);
8603 arg_depth = TMPL_ARGS_DEPTH (arglist);
8605 if (arg_depth == 1 && parm_depth > 1)
8607 /* We've been given an incomplete set of template arguments.
8608 For example, given:
8610 template <class T> struct S1 {
8611 template <class U> struct S2 {};
8612 template <class U> struct S2<U*> {};
8615 we will be called with an ARGLIST of `U*', but the
8616 TEMPLATE will be `template <class T> template
8617 <class U> struct S1<T>::S2'. We must fill in the missing
8618 arguments. */
8619 tree ti = TYPE_TEMPLATE_INFO_MAYBE_ALIAS (TREE_TYPE (templ));
8620 arglist = add_outermost_template_args (TI_ARGS (ti), arglist);
8621 arg_depth = TMPL_ARGS_DEPTH (arglist);
8624 /* Now we should have enough arguments. */
8625 gcc_assert (parm_depth == arg_depth);
8627 /* From here on, we're only interested in the most general
8628 template. */
8630 /* Calculate the BOUND_ARGS. These will be the args that are
8631 actually tsubst'd into the definition to create the
8632 instantiation. */
8633 arglist = coerce_innermost_template_parms (parmlist, arglist, gen_tmpl,
8634 complain,
8635 /*require_all_args=*/true,
8636 /*use_default_args=*/true);
8638 if (arglist == error_mark_node)
8639 /* We were unable to bind the arguments. */
8640 return error_mark_node;
8642 /* In the scope of a template class, explicit references to the
8643 template class refer to the type of the template, not any
8644 instantiation of it. For example, in:
8646 template <class T> class C { void f(C<T>); }
8648 the `C<T>' is just the same as `C'. Outside of the
8649 class, however, such a reference is an instantiation. */
8650 if (entering_scope
8651 || !PRIMARY_TEMPLATE_P (gen_tmpl)
8652 || currently_open_class (template_type))
8654 tree tinfo = TYPE_TEMPLATE_INFO_MAYBE_ALIAS (template_type);
8656 if (comp_template_args (TI_ARGS (tinfo), arglist))
8657 return template_type;
8660 /* If we already have this specialization, return it. */
8661 elt.tmpl = gen_tmpl;
8662 elt.args = arglist;
8663 elt.spec = NULL_TREE;
8664 hash = spec_hasher::hash (&elt);
8665 entry = type_specializations->find_with_hash (&elt, hash);
8667 if (entry)
8668 return entry->spec;
8670 /* If the the template's constraints are not satisfied,
8671 then we cannot form a valid type.
8673 Note that the check is deferred until after the hash
8674 lookup. This prevents redundant checks on previously
8675 instantiated specializations. */
8676 if (flag_concepts && !constraints_satisfied_p (gen_tmpl, arglist))
8678 if (complain & tf_error)
8680 error ("template constraint failure");
8681 diagnose_constraints (input_location, gen_tmpl, arglist);
8683 return error_mark_node;
8686 is_dependent_type = uses_template_parms (arglist);
8688 /* If the deduced arguments are invalid, then the binding
8689 failed. */
8690 if (!is_dependent_type
8691 && check_instantiated_args (gen_tmpl,
8692 INNERMOST_TEMPLATE_ARGS (arglist),
8693 complain))
8694 return error_mark_node;
8696 if (!is_dependent_type
8697 && !PRIMARY_TEMPLATE_P (gen_tmpl)
8698 && !LAMBDA_TYPE_P (TREE_TYPE (gen_tmpl))
8699 && TREE_CODE (CP_DECL_CONTEXT (gen_tmpl)) == NAMESPACE_DECL)
8701 found = xref_tag_from_type (TREE_TYPE (gen_tmpl),
8702 DECL_NAME (gen_tmpl),
8703 /*tag_scope=*/ts_global);
8704 return found;
8707 context = tsubst (DECL_CONTEXT (gen_tmpl), arglist,
8708 complain, in_decl);
8709 if (context == error_mark_node)
8710 return error_mark_node;
8712 if (!context)
8713 context = global_namespace;
8715 /* Create the type. */
8716 if (DECL_ALIAS_TEMPLATE_P (gen_tmpl))
8718 /* The user referred to a specialization of an alias
8719 template represented by GEN_TMPL.
8721 [temp.alias]/2 says:
8723 When a template-id refers to the specialization of an
8724 alias template, it is equivalent to the associated
8725 type obtained by substitution of its
8726 template-arguments for the template-parameters in the
8727 type-id of the alias template. */
8729 t = tsubst (TREE_TYPE (gen_tmpl), arglist, complain, in_decl);
8730 /* Note that the call above (by indirectly calling
8731 register_specialization in tsubst_decl) registers the
8732 TYPE_DECL representing the specialization of the alias
8733 template. So next time someone substitutes ARGLIST for
8734 the template parms into the alias template (GEN_TMPL),
8735 she'll get that TYPE_DECL back. */
8737 if (t == error_mark_node)
8738 return t;
8740 else if (TREE_CODE (template_type) == ENUMERAL_TYPE)
8742 if (!is_dependent_type)
8744 set_current_access_from_decl (TYPE_NAME (template_type));
8745 t = start_enum (TYPE_IDENTIFIER (template_type), NULL_TREE,
8746 tsubst (ENUM_UNDERLYING_TYPE (template_type),
8747 arglist, complain, in_decl),
8748 tsubst_attributes (TYPE_ATTRIBUTES (template_type),
8749 arglist, complain, in_decl),
8750 SCOPED_ENUM_P (template_type), NULL);
8752 if (t == error_mark_node)
8753 return t;
8755 else
8757 /* We don't want to call start_enum for this type, since
8758 the values for the enumeration constants may involve
8759 template parameters. And, no one should be interested
8760 in the enumeration constants for such a type. */
8761 t = cxx_make_type (ENUMERAL_TYPE);
8762 SET_SCOPED_ENUM_P (t, SCOPED_ENUM_P (template_type));
8764 SET_OPAQUE_ENUM_P (t, OPAQUE_ENUM_P (template_type));
8765 ENUM_FIXED_UNDERLYING_TYPE_P (t)
8766 = ENUM_FIXED_UNDERLYING_TYPE_P (template_type);
8768 else if (CLASS_TYPE_P (template_type))
8770 t = make_class_type (TREE_CODE (template_type));
8771 CLASSTYPE_DECLARED_CLASS (t)
8772 = CLASSTYPE_DECLARED_CLASS (template_type);
8773 SET_CLASSTYPE_IMPLICIT_INSTANTIATION (t);
8775 /* A local class. Make sure the decl gets registered properly. */
8776 if (context == current_function_decl)
8777 pushtag (DECL_NAME (gen_tmpl), t, /*tag_scope=*/ts_current);
8779 if (comp_template_args (CLASSTYPE_TI_ARGS (template_type), arglist))
8780 /* This instantiation is another name for the primary
8781 template type. Set the TYPE_CANONICAL field
8782 appropriately. */
8783 TYPE_CANONICAL (t) = template_type;
8784 else if (any_template_arguments_need_structural_equality_p (arglist))
8785 /* Some of the template arguments require structural
8786 equality testing, so this template class requires
8787 structural equality testing. */
8788 SET_TYPE_STRUCTURAL_EQUALITY (t);
8790 else
8791 gcc_unreachable ();
8793 /* If we called start_enum or pushtag above, this information
8794 will already be set up. */
8795 if (!TYPE_NAME (t))
8797 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
8799 type_decl = create_implicit_typedef (DECL_NAME (gen_tmpl), t);
8800 DECL_CONTEXT (type_decl) = TYPE_CONTEXT (t);
8801 DECL_SOURCE_LOCATION (type_decl)
8802 = DECL_SOURCE_LOCATION (TYPE_STUB_DECL (template_type));
8804 else
8805 type_decl = TYPE_NAME (t);
8807 if (CLASS_TYPE_P (template_type))
8809 TREE_PRIVATE (type_decl)
8810 = TREE_PRIVATE (TYPE_MAIN_DECL (template_type));
8811 TREE_PROTECTED (type_decl)
8812 = TREE_PROTECTED (TYPE_MAIN_DECL (template_type));
8813 if (CLASSTYPE_VISIBILITY_SPECIFIED (template_type))
8815 DECL_VISIBILITY_SPECIFIED (type_decl) = 1;
8816 DECL_VISIBILITY (type_decl) = CLASSTYPE_VISIBILITY (template_type);
8820 if (OVERLOAD_TYPE_P (t)
8821 && !DECL_ALIAS_TEMPLATE_P (gen_tmpl))
8823 static const char *tags[] = {"abi_tag", "may_alias"};
8825 for (unsigned ix = 0; ix != 2; ix++)
8827 tree attributes
8828 = lookup_attribute (tags[ix], TYPE_ATTRIBUTES (template_type));
8830 if (attributes)
8831 TYPE_ATTRIBUTES (t)
8832 = tree_cons (TREE_PURPOSE (attributes),
8833 TREE_VALUE (attributes),
8834 TYPE_ATTRIBUTES (t));
8838 /* Let's consider the explicit specialization of a member
8839 of a class template specialization that is implicitly instantiated,
8840 e.g.:
8841 template<class T>
8842 struct S
8844 template<class U> struct M {}; //#0
8847 template<>
8848 template<>
8849 struct S<int>::M<char> //#1
8851 int i;
8853 [temp.expl.spec]/4 says this is valid.
8855 In this case, when we write:
8856 S<int>::M<char> m;
8858 M is instantiated from the CLASSTYPE_TI_TEMPLATE of #1, not from
8859 the one of #0.
8861 When we encounter #1, we want to store the partial instantiation
8862 of M (template<class T> S<int>::M<T>) in its CLASSTYPE_TI_TEMPLATE.
8864 For all cases other than this "explicit specialization of member of a
8865 class template", we just want to store the most general template into
8866 the CLASSTYPE_TI_TEMPLATE of M.
8868 This case of "explicit specialization of member of a class template"
8869 only happens when:
8870 1/ the enclosing class is an instantiation of, and therefore not
8871 the same as, the context of the most general template, and
8872 2/ we aren't looking at the partial instantiation itself, i.e.
8873 the innermost arguments are not the same as the innermost parms of
8874 the most general template.
8876 So it's only when 1/ and 2/ happens that we want to use the partial
8877 instantiation of the member template in lieu of its most general
8878 template. */
8880 if (PRIMARY_TEMPLATE_P (gen_tmpl)
8881 && TMPL_ARGS_HAVE_MULTIPLE_LEVELS (arglist)
8882 /* the enclosing class must be an instantiation... */
8883 && CLASS_TYPE_P (context)
8884 && !same_type_p (context, DECL_CONTEXT (gen_tmpl)))
8886 TREE_VEC_LENGTH (arglist)--;
8887 ++processing_template_decl;
8888 tree tinfo = TYPE_TEMPLATE_INFO_MAYBE_ALIAS (TREE_TYPE (gen_tmpl));
8889 tree partial_inst_args =
8890 tsubst (INNERMOST_TEMPLATE_ARGS (TI_ARGS (tinfo)),
8891 arglist, complain, NULL_TREE);
8892 --processing_template_decl;
8893 TREE_VEC_LENGTH (arglist)++;
8894 if (partial_inst_args == error_mark_node)
8895 return error_mark_node;
8896 use_partial_inst_tmpl =
8897 /*...and we must not be looking at the partial instantiation
8898 itself. */
8899 !comp_template_args (INNERMOST_TEMPLATE_ARGS (arglist),
8900 partial_inst_args);
8903 if (!use_partial_inst_tmpl)
8904 /* This case is easy; there are no member templates involved. */
8905 found = gen_tmpl;
8906 else
8908 /* This is a full instantiation of a member template. Find
8909 the partial instantiation of which this is an instance. */
8911 /* Temporarily reduce by one the number of levels in the ARGLIST
8912 so as to avoid comparing the last set of arguments. */
8913 TREE_VEC_LENGTH (arglist)--;
8914 found = tsubst (gen_tmpl, arglist, complain, NULL_TREE);
8915 TREE_VEC_LENGTH (arglist)++;
8916 /* FOUND is either a proper class type, or an alias
8917 template specialization. In the later case, it's a
8918 TYPE_DECL, resulting from the substituting of arguments
8919 for parameters in the TYPE_DECL of the alias template
8920 done earlier. So be careful while getting the template
8921 of FOUND. */
8922 found = (TREE_CODE (found) == TEMPLATE_DECL
8923 ? found
8924 : (TREE_CODE (found) == TYPE_DECL
8925 ? DECL_TI_TEMPLATE (found)
8926 : CLASSTYPE_TI_TEMPLATE (found)));
8929 // Build template info for the new specialization.
8930 SET_TYPE_TEMPLATE_INFO (t, build_template_info (found, arglist));
8932 elt.spec = t;
8933 slot = type_specializations->find_slot_with_hash (&elt, hash, INSERT);
8934 entry = ggc_alloc<spec_entry> ();
8935 *entry = elt;
8936 *slot = entry;
8938 /* Note this use of the partial instantiation so we can check it
8939 later in maybe_process_partial_specialization. */
8940 DECL_TEMPLATE_INSTANTIATIONS (found)
8941 = tree_cons (arglist, t,
8942 DECL_TEMPLATE_INSTANTIATIONS (found));
8944 if (TREE_CODE (template_type) == ENUMERAL_TYPE && !is_dependent_type
8945 && !DECL_ALIAS_TEMPLATE_P (gen_tmpl))
8946 /* Now that the type has been registered on the instantiations
8947 list, we set up the enumerators. Because the enumeration
8948 constants may involve the enumeration type itself, we make
8949 sure to register the type first, and then create the
8950 constants. That way, doing tsubst_expr for the enumeration
8951 constants won't result in recursive calls here; we'll find
8952 the instantiation and exit above. */
8953 tsubst_enum (template_type, t, arglist);
8955 if (CLASS_TYPE_P (template_type) && is_dependent_type)
8956 /* If the type makes use of template parameters, the
8957 code that generates debugging information will crash. */
8958 DECL_IGNORED_P (TYPE_MAIN_DECL (t)) = 1;
8960 /* Possibly limit visibility based on template args. */
8961 TREE_PUBLIC (type_decl) = 1;
8962 determine_visibility (type_decl);
8964 inherit_targ_abi_tags (t);
8966 return t;
8970 /* Wrapper for lookup_template_class_1. */
8972 tree
8973 lookup_template_class (tree d1, tree arglist, tree in_decl, tree context,
8974 int entering_scope, tsubst_flags_t complain)
8976 tree ret;
8977 timevar_push (TV_TEMPLATE_INST);
8978 ret = lookup_template_class_1 (d1, arglist, in_decl, context,
8979 entering_scope, complain);
8980 timevar_pop (TV_TEMPLATE_INST);
8981 return ret;
8984 /* Return a TEMPLATE_ID_EXPR for the given variable template and ARGLIST. */
8986 tree
8987 lookup_template_variable (tree templ, tree arglist)
8989 /* The type of the expression is NULL_TREE since the template-id could refer
8990 to an explicit or partial specialization. */
8991 tree type = NULL_TREE;
8992 if (flag_concepts && variable_concept_p (templ))
8993 /* Except that concepts are always bool. */
8994 type = boolean_type_node;
8995 return build2 (TEMPLATE_ID_EXPR, type, templ, arglist);
8998 /* Instantiate a variable declaration from a TEMPLATE_ID_EXPR for use. */
9000 tree
9001 finish_template_variable (tree var, tsubst_flags_t complain)
9003 tree templ = TREE_OPERAND (var, 0);
9004 tree arglist = TREE_OPERAND (var, 1);
9006 /* We never want to return a VAR_DECL for a variable concept, since they
9007 aren't instantiated. In a template, leave the TEMPLATE_ID_EXPR alone. */
9008 bool concept_p = flag_concepts && variable_concept_p (templ);
9009 if (concept_p && processing_template_decl)
9010 return var;
9012 tree tmpl_args = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (templ));
9013 arglist = add_outermost_template_args (tmpl_args, arglist);
9015 templ = most_general_template (templ);
9016 tree parms = DECL_TEMPLATE_PARMS (templ);
9017 arglist = coerce_innermost_template_parms (parms, arglist, templ, complain,
9018 /*req_all*/true,
9019 /*use_default*/true);
9021 if (flag_concepts && !constraints_satisfied_p (templ, arglist))
9023 if (complain & tf_error)
9025 error ("use of invalid variable template %qE", var);
9026 diagnose_constraints (location_of (var), templ, arglist);
9028 return error_mark_node;
9031 /* If a template-id refers to a specialization of a variable
9032 concept, then the expression is true if and only if the
9033 concept's constraints are satisfied by the given template
9034 arguments.
9036 NOTE: This is an extension of Concepts Lite TS that
9037 allows constraints to be used in expressions. */
9038 if (concept_p)
9040 tree decl = DECL_TEMPLATE_RESULT (templ);
9041 return evaluate_variable_concept (decl, arglist);
9044 return instantiate_template (templ, arglist, complain);
9047 /* Construct a TEMPLATE_ID_EXPR for the given variable template TEMPL having
9048 TARGS template args, and instantiate it if it's not dependent. */
9050 tree
9051 lookup_and_finish_template_variable (tree templ, tree targs,
9052 tsubst_flags_t complain)
9054 templ = lookup_template_variable (templ, targs);
9055 if (!any_dependent_template_arguments_p (targs))
9057 templ = finish_template_variable (templ, complain);
9058 mark_used (templ);
9061 return convert_from_reference (templ);
9065 struct pair_fn_data
9067 tree_fn_t fn;
9068 tree_fn_t any_fn;
9069 void *data;
9070 /* True when we should also visit template parameters that occur in
9071 non-deduced contexts. */
9072 bool include_nondeduced_p;
9073 hash_set<tree> *visited;
9076 /* Called from for_each_template_parm via walk_tree. */
9078 static tree
9079 for_each_template_parm_r (tree *tp, int *walk_subtrees, void *d)
9081 tree t = *tp;
9082 struct pair_fn_data *pfd = (struct pair_fn_data *) d;
9083 tree_fn_t fn = pfd->fn;
9084 void *data = pfd->data;
9085 tree result = NULL_TREE;
9087 #define WALK_SUBTREE(NODE) \
9088 do \
9090 result = for_each_template_parm (NODE, fn, data, pfd->visited, \
9091 pfd->include_nondeduced_p, \
9092 pfd->any_fn); \
9093 if (result) goto out; \
9095 while (0)
9097 if (pfd->any_fn && (*pfd->any_fn)(t, data))
9098 return t;
9100 if (TYPE_P (t)
9101 && (pfd->include_nondeduced_p || TREE_CODE (t) != TYPENAME_TYPE))
9102 WALK_SUBTREE (TYPE_CONTEXT (t));
9104 switch (TREE_CODE (t))
9106 case RECORD_TYPE:
9107 if (TYPE_PTRMEMFUNC_P (t))
9108 break;
9109 /* Fall through. */
9111 case UNION_TYPE:
9112 case ENUMERAL_TYPE:
9113 if (!TYPE_TEMPLATE_INFO (t))
9114 *walk_subtrees = 0;
9115 else
9116 WALK_SUBTREE (TYPE_TI_ARGS (t));
9117 break;
9119 case INTEGER_TYPE:
9120 WALK_SUBTREE (TYPE_MIN_VALUE (t));
9121 WALK_SUBTREE (TYPE_MAX_VALUE (t));
9122 break;
9124 case METHOD_TYPE:
9125 /* Since we're not going to walk subtrees, we have to do this
9126 explicitly here. */
9127 WALK_SUBTREE (TYPE_METHOD_BASETYPE (t));
9128 /* Fall through. */
9130 case FUNCTION_TYPE:
9131 /* Check the return type. */
9132 WALK_SUBTREE (TREE_TYPE (t));
9134 /* Check the parameter types. Since default arguments are not
9135 instantiated until they are needed, the TYPE_ARG_TYPES may
9136 contain expressions that involve template parameters. But,
9137 no-one should be looking at them yet. And, once they're
9138 instantiated, they don't contain template parameters, so
9139 there's no point in looking at them then, either. */
9141 tree parm;
9143 for (parm = TYPE_ARG_TYPES (t); parm; parm = TREE_CHAIN (parm))
9144 WALK_SUBTREE (TREE_VALUE (parm));
9146 /* Since we've already handled the TYPE_ARG_TYPES, we don't
9147 want walk_tree walking into them itself. */
9148 *walk_subtrees = 0;
9151 if (flag_noexcept_type)
9153 tree spec = TYPE_RAISES_EXCEPTIONS (t);
9154 if (spec)
9155 WALK_SUBTREE (TREE_PURPOSE (spec));
9157 break;
9159 case TYPEOF_TYPE:
9160 case UNDERLYING_TYPE:
9161 if (pfd->include_nondeduced_p
9162 && for_each_template_parm (TYPE_VALUES_RAW (t), fn, data,
9163 pfd->visited,
9164 pfd->include_nondeduced_p,
9165 pfd->any_fn))
9166 return error_mark_node;
9167 break;
9169 case FUNCTION_DECL:
9170 case VAR_DECL:
9171 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
9172 WALK_SUBTREE (DECL_TI_ARGS (t));
9173 /* Fall through. */
9175 case PARM_DECL:
9176 case CONST_DECL:
9177 if (TREE_CODE (t) == CONST_DECL && DECL_TEMPLATE_PARM_P (t))
9178 WALK_SUBTREE (DECL_INITIAL (t));
9179 if (DECL_CONTEXT (t)
9180 && pfd->include_nondeduced_p)
9181 WALK_SUBTREE (DECL_CONTEXT (t));
9182 break;
9184 case BOUND_TEMPLATE_TEMPLATE_PARM:
9185 /* Record template parameters such as `T' inside `TT<T>'. */
9186 WALK_SUBTREE (TYPE_TI_ARGS (t));
9187 /* Fall through. */
9189 case TEMPLATE_TEMPLATE_PARM:
9190 case TEMPLATE_TYPE_PARM:
9191 case TEMPLATE_PARM_INDEX:
9192 if (fn && (*fn)(t, data))
9193 return t;
9194 else if (!fn)
9195 return t;
9196 break;
9198 case TEMPLATE_DECL:
9199 /* A template template parameter is encountered. */
9200 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
9201 WALK_SUBTREE (TREE_TYPE (t));
9203 /* Already substituted template template parameter */
9204 *walk_subtrees = 0;
9205 break;
9207 case TYPENAME_TYPE:
9208 /* A template-id in a TYPENAME_TYPE might be a deduced context after
9209 partial instantiation. */
9210 WALK_SUBTREE (TYPENAME_TYPE_FULLNAME (t));
9211 break;
9213 case CONSTRUCTOR:
9214 if (TREE_TYPE (t) && TYPE_PTRMEMFUNC_P (TREE_TYPE (t))
9215 && pfd->include_nondeduced_p)
9216 WALK_SUBTREE (TYPE_PTRMEMFUNC_FN_TYPE (TREE_TYPE (t)));
9217 break;
9219 case INDIRECT_REF:
9220 case COMPONENT_REF:
9221 /* If there's no type, then this thing must be some expression
9222 involving template parameters. */
9223 if (!fn && !TREE_TYPE (t))
9224 return error_mark_node;
9225 break;
9227 case MODOP_EXPR:
9228 case CAST_EXPR:
9229 case IMPLICIT_CONV_EXPR:
9230 case REINTERPRET_CAST_EXPR:
9231 case CONST_CAST_EXPR:
9232 case STATIC_CAST_EXPR:
9233 case DYNAMIC_CAST_EXPR:
9234 case ARROW_EXPR:
9235 case DOTSTAR_EXPR:
9236 case TYPEID_EXPR:
9237 case PSEUDO_DTOR_EXPR:
9238 if (!fn)
9239 return error_mark_node;
9240 break;
9242 default:
9243 break;
9246 #undef WALK_SUBTREE
9248 /* We didn't find any template parameters we liked. */
9249 out:
9250 return result;
9253 /* For each TEMPLATE_TYPE_PARM, TEMPLATE_TEMPLATE_PARM,
9254 BOUND_TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX in T,
9255 call FN with the parameter and the DATA.
9256 If FN returns nonzero, the iteration is terminated, and
9257 for_each_template_parm returns 1. Otherwise, the iteration
9258 continues. If FN never returns a nonzero value, the value
9259 returned by for_each_template_parm is 0. If FN is NULL, it is
9260 considered to be the function which always returns 1.
9262 If INCLUDE_NONDEDUCED_P, then this routine will also visit template
9263 parameters that occur in non-deduced contexts. When false, only
9264 visits those template parameters that can be deduced. */
9266 static tree
9267 for_each_template_parm (tree t, tree_fn_t fn, void* data,
9268 hash_set<tree> *visited,
9269 bool include_nondeduced_p,
9270 tree_fn_t any_fn)
9272 struct pair_fn_data pfd;
9273 tree result;
9275 /* Set up. */
9276 pfd.fn = fn;
9277 pfd.any_fn = any_fn;
9278 pfd.data = data;
9279 pfd.include_nondeduced_p = include_nondeduced_p;
9281 /* Walk the tree. (Conceptually, we would like to walk without
9282 duplicates, but for_each_template_parm_r recursively calls
9283 for_each_template_parm, so we would need to reorganize a fair
9284 bit to use walk_tree_without_duplicates, so we keep our own
9285 visited list.) */
9286 if (visited)
9287 pfd.visited = visited;
9288 else
9289 pfd.visited = new hash_set<tree>;
9290 result = cp_walk_tree (&t,
9291 for_each_template_parm_r,
9292 &pfd,
9293 pfd.visited);
9295 /* Clean up. */
9296 if (!visited)
9298 delete pfd.visited;
9299 pfd.visited = 0;
9302 return result;
9305 /* Returns true if T depends on any template parameter. */
9308 uses_template_parms (tree t)
9310 if (t == NULL_TREE)
9311 return false;
9313 bool dependent_p;
9314 int saved_processing_template_decl;
9316 saved_processing_template_decl = processing_template_decl;
9317 if (!saved_processing_template_decl)
9318 processing_template_decl = 1;
9319 if (TYPE_P (t))
9320 dependent_p = dependent_type_p (t);
9321 else if (TREE_CODE (t) == TREE_VEC)
9322 dependent_p = any_dependent_template_arguments_p (t);
9323 else if (TREE_CODE (t) == TREE_LIST)
9324 dependent_p = (uses_template_parms (TREE_VALUE (t))
9325 || uses_template_parms (TREE_CHAIN (t)));
9326 else if (TREE_CODE (t) == TYPE_DECL)
9327 dependent_p = dependent_type_p (TREE_TYPE (t));
9328 else if (DECL_P (t)
9329 || EXPR_P (t)
9330 || TREE_CODE (t) == TEMPLATE_PARM_INDEX
9331 || TREE_CODE (t) == OVERLOAD
9332 || BASELINK_P (t)
9333 || identifier_p (t)
9334 || TREE_CODE (t) == TRAIT_EXPR
9335 || TREE_CODE (t) == CONSTRUCTOR
9336 || CONSTANT_CLASS_P (t))
9337 dependent_p = (type_dependent_expression_p (t)
9338 || value_dependent_expression_p (t));
9339 else
9341 gcc_assert (t == error_mark_node);
9342 dependent_p = false;
9345 processing_template_decl = saved_processing_template_decl;
9347 return dependent_p;
9350 /* Returns true iff current_function_decl is an incompletely instantiated
9351 template. Useful instead of processing_template_decl because the latter
9352 is set to 0 during instantiate_non_dependent_expr. */
9354 bool
9355 in_template_function (void)
9357 tree fn = current_function_decl;
9358 bool ret;
9359 ++processing_template_decl;
9360 ret = (fn && DECL_LANG_SPECIFIC (fn)
9361 && DECL_TEMPLATE_INFO (fn)
9362 && any_dependent_template_arguments_p (DECL_TI_ARGS (fn)));
9363 --processing_template_decl;
9364 return ret;
9367 /* Returns true if T depends on any template parameter with level LEVEL. */
9369 bool
9370 uses_template_parms_level (tree t, int level)
9372 return for_each_template_parm (t, template_parm_this_level_p, &level, NULL,
9373 /*include_nondeduced_p=*/true);
9376 /* Returns true if the signature of DECL depends on any template parameter from
9377 its enclosing class. */
9379 bool
9380 uses_outer_template_parms (tree decl)
9382 int depth = template_class_depth (CP_DECL_CONTEXT (decl));
9383 if (depth == 0)
9384 return false;
9385 if (for_each_template_parm (TREE_TYPE (decl), template_parm_outer_level,
9386 &depth, NULL, /*include_nondeduced_p=*/true))
9387 return true;
9388 if (PRIMARY_TEMPLATE_P (decl)
9389 && for_each_template_parm (INNERMOST_TEMPLATE_PARMS
9390 (DECL_TEMPLATE_PARMS (decl)),
9391 template_parm_outer_level,
9392 &depth, NULL, /*include_nondeduced_p=*/true))
9393 return true;
9394 tree ci = get_constraints (decl);
9395 if (ci)
9396 ci = CI_ASSOCIATED_CONSTRAINTS (ci);
9397 if (ci && for_each_template_parm (ci, template_parm_outer_level,
9398 &depth, NULL, /*nondeduced*/true))
9399 return true;
9400 return false;
9403 /* Returns TRUE iff INST is an instantiation we don't need to do in an
9404 ill-formed translation unit, i.e. a variable or function that isn't
9405 usable in a constant expression. */
9407 static inline bool
9408 neglectable_inst_p (tree d)
9410 return (DECL_P (d)
9411 && !(TREE_CODE (d) == FUNCTION_DECL ? DECL_DECLARED_CONSTEXPR_P (d)
9412 : decl_maybe_constant_var_p (d)));
9415 /* Returns TRUE iff we should refuse to instantiate DECL because it's
9416 neglectable and instantiated from within an erroneous instantiation. */
9418 static bool
9419 limit_bad_template_recursion (tree decl)
9421 struct tinst_level *lev = current_tinst_level;
9422 int errs = errorcount + sorrycount;
9423 if (lev == NULL || errs == 0 || !neglectable_inst_p (decl))
9424 return false;
9426 for (; lev; lev = lev->next)
9427 if (neglectable_inst_p (lev->decl))
9428 break;
9430 return (lev && errs > lev->errors);
9433 static int tinst_depth;
9434 extern int max_tinst_depth;
9435 int depth_reached;
9437 static GTY(()) struct tinst_level *last_error_tinst_level;
9439 /* We're starting to instantiate D; record the template instantiation context
9440 for diagnostics and to restore it later. */
9442 bool
9443 push_tinst_level (tree d)
9445 return push_tinst_level_loc (d, input_location);
9448 /* We're starting to instantiate D; record the template instantiation context
9449 at LOC for diagnostics and to restore it later. */
9451 bool
9452 push_tinst_level_loc (tree d, location_t loc)
9454 struct tinst_level *new_level;
9456 if (tinst_depth >= max_tinst_depth)
9458 /* Tell error.c not to try to instantiate any templates. */
9459 at_eof = 2;
9460 fatal_error (input_location,
9461 "template instantiation depth exceeds maximum of %d"
9462 " (use -ftemplate-depth= to increase the maximum)",
9463 max_tinst_depth);
9464 return false;
9467 /* If the current instantiation caused problems, don't let it instantiate
9468 anything else. Do allow deduction substitution and decls usable in
9469 constant expressions. */
9470 if (limit_bad_template_recursion (d))
9471 return false;
9473 /* When not -quiet, dump template instantiations other than functions, since
9474 announce_function will take care of those. */
9475 if (!quiet_flag
9476 && TREE_CODE (d) != TREE_LIST
9477 && TREE_CODE (d) != FUNCTION_DECL)
9478 fprintf (stderr, " %s", decl_as_string (d, TFF_DECL_SPECIFIERS));
9480 new_level = ggc_alloc<tinst_level> ();
9481 new_level->decl = d;
9482 new_level->locus = loc;
9483 new_level->errors = errorcount+sorrycount;
9484 new_level->in_system_header_p = in_system_header_at (input_location);
9485 new_level->next = current_tinst_level;
9486 current_tinst_level = new_level;
9488 ++tinst_depth;
9489 if (GATHER_STATISTICS && (tinst_depth > depth_reached))
9490 depth_reached = tinst_depth;
9492 return true;
9495 /* We're done instantiating this template; return to the instantiation
9496 context. */
9498 void
9499 pop_tinst_level (void)
9501 /* Restore the filename and line number stashed away when we started
9502 this instantiation. */
9503 input_location = current_tinst_level->locus;
9504 current_tinst_level = current_tinst_level->next;
9505 --tinst_depth;
9508 /* We're instantiating a deferred template; restore the template
9509 instantiation context in which the instantiation was requested, which
9510 is one step out from LEVEL. Return the corresponding DECL or TYPE. */
9512 static tree
9513 reopen_tinst_level (struct tinst_level *level)
9515 struct tinst_level *t;
9517 tinst_depth = 0;
9518 for (t = level; t; t = t->next)
9519 ++tinst_depth;
9521 current_tinst_level = level;
9522 pop_tinst_level ();
9523 if (current_tinst_level)
9524 current_tinst_level->errors = errorcount+sorrycount;
9525 return level->decl;
9528 /* Returns the TINST_LEVEL which gives the original instantiation
9529 context. */
9531 struct tinst_level *
9532 outermost_tinst_level (void)
9534 struct tinst_level *level = current_tinst_level;
9535 if (level)
9536 while (level->next)
9537 level = level->next;
9538 return level;
9541 /* DECL is a friend FUNCTION_DECL or TEMPLATE_DECL. ARGS is the
9542 vector of template arguments, as for tsubst.
9544 Returns an appropriate tsubst'd friend declaration. */
9546 static tree
9547 tsubst_friend_function (tree decl, tree args)
9549 tree new_friend;
9551 if (TREE_CODE (decl) == FUNCTION_DECL
9552 && DECL_TEMPLATE_INSTANTIATION (decl)
9553 && TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
9554 /* This was a friend declared with an explicit template
9555 argument list, e.g.:
9557 friend void f<>(T);
9559 to indicate that f was a template instantiation, not a new
9560 function declaration. Now, we have to figure out what
9561 instantiation of what template. */
9563 tree template_id, arglist, fns;
9564 tree new_args;
9565 tree tmpl;
9566 tree ns = decl_namespace_context (TYPE_MAIN_DECL (current_class_type));
9568 /* Friend functions are looked up in the containing namespace scope.
9569 We must enter that scope, to avoid finding member functions of the
9570 current class with same name. */
9571 push_nested_namespace (ns);
9572 fns = tsubst_expr (DECL_TI_TEMPLATE (decl), args,
9573 tf_warning_or_error, NULL_TREE,
9574 /*integral_constant_expression_p=*/false);
9575 pop_nested_namespace (ns);
9576 arglist = tsubst (DECL_TI_ARGS (decl), args,
9577 tf_warning_or_error, NULL_TREE);
9578 template_id = lookup_template_function (fns, arglist);
9580 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
9581 tmpl = determine_specialization (template_id, new_friend,
9582 &new_args,
9583 /*need_member_template=*/0,
9584 TREE_VEC_LENGTH (args),
9585 tsk_none);
9586 return instantiate_template (tmpl, new_args, tf_error);
9589 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
9591 /* The NEW_FRIEND will look like an instantiation, to the
9592 compiler, but is not an instantiation from the point of view of
9593 the language. For example, we might have had:
9595 template <class T> struct S {
9596 template <class U> friend void f(T, U);
9599 Then, in S<int>, template <class U> void f(int, U) is not an
9600 instantiation of anything. */
9601 if (new_friend == error_mark_node)
9602 return error_mark_node;
9604 DECL_USE_TEMPLATE (new_friend) = 0;
9605 if (TREE_CODE (decl) == TEMPLATE_DECL)
9607 DECL_USE_TEMPLATE (DECL_TEMPLATE_RESULT (new_friend)) = 0;
9608 DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (new_friend))
9609 = DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (decl));
9612 /* The mangled name for the NEW_FRIEND is incorrect. The function
9613 is not a template instantiation and should not be mangled like
9614 one. Therefore, we forget the mangling here; we'll recompute it
9615 later if we need it. */
9616 if (TREE_CODE (new_friend) != TEMPLATE_DECL)
9618 SET_DECL_RTL (new_friend, NULL);
9619 SET_DECL_ASSEMBLER_NAME (new_friend, NULL_TREE);
9622 if (DECL_NAMESPACE_SCOPE_P (new_friend))
9624 tree old_decl;
9625 tree new_friend_template_info;
9626 tree new_friend_result_template_info;
9627 tree ns;
9628 int new_friend_is_defn;
9630 /* We must save some information from NEW_FRIEND before calling
9631 duplicate decls since that function will free NEW_FRIEND if
9632 possible. */
9633 new_friend_template_info = DECL_TEMPLATE_INFO (new_friend);
9634 new_friend_is_defn =
9635 (DECL_INITIAL (DECL_TEMPLATE_RESULT
9636 (template_for_substitution (new_friend)))
9637 != NULL_TREE);
9638 if (TREE_CODE (new_friend) == TEMPLATE_DECL)
9640 /* This declaration is a `primary' template. */
9641 DECL_PRIMARY_TEMPLATE (new_friend) = new_friend;
9643 new_friend_result_template_info
9644 = DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (new_friend));
9646 else
9647 new_friend_result_template_info = NULL_TREE;
9649 /* Inside pushdecl_namespace_level, we will push into the
9650 current namespace. However, the friend function should go
9651 into the namespace of the template. */
9652 ns = decl_namespace_context (new_friend);
9653 push_nested_namespace (ns);
9654 old_decl = pushdecl_namespace_level (new_friend, /*is_friend=*/true);
9655 pop_nested_namespace (ns);
9657 if (old_decl == error_mark_node)
9658 return error_mark_node;
9660 if (old_decl != new_friend)
9662 /* This new friend declaration matched an existing
9663 declaration. For example, given:
9665 template <class T> void f(T);
9666 template <class U> class C {
9667 template <class T> friend void f(T) {}
9670 the friend declaration actually provides the definition
9671 of `f', once C has been instantiated for some type. So,
9672 old_decl will be the out-of-class template declaration,
9673 while new_friend is the in-class definition.
9675 But, if `f' was called before this point, the
9676 instantiation of `f' will have DECL_TI_ARGS corresponding
9677 to `T' but not to `U', references to which might appear
9678 in the definition of `f'. Previously, the most general
9679 template for an instantiation of `f' was the out-of-class
9680 version; now it is the in-class version. Therefore, we
9681 run through all specialization of `f', adding to their
9682 DECL_TI_ARGS appropriately. In particular, they need a
9683 new set of outer arguments, corresponding to the
9684 arguments for this class instantiation.
9686 The same situation can arise with something like this:
9688 friend void f(int);
9689 template <class T> class C {
9690 friend void f(T) {}
9693 when `C<int>' is instantiated. Now, `f(int)' is defined
9694 in the class. */
9696 if (!new_friend_is_defn)
9697 /* On the other hand, if the in-class declaration does
9698 *not* provide a definition, then we don't want to alter
9699 existing definitions. We can just leave everything
9700 alone. */
9702 else
9704 tree new_template = TI_TEMPLATE (new_friend_template_info);
9705 tree new_args = TI_ARGS (new_friend_template_info);
9707 /* Overwrite whatever template info was there before, if
9708 any, with the new template information pertaining to
9709 the declaration. */
9710 DECL_TEMPLATE_INFO (old_decl) = new_friend_template_info;
9712 if (TREE_CODE (old_decl) != TEMPLATE_DECL)
9714 /* We should have called reregister_specialization in
9715 duplicate_decls. */
9716 gcc_assert (retrieve_specialization (new_template,
9717 new_args, 0)
9718 == old_decl);
9720 /* Instantiate it if the global has already been used. */
9721 if (DECL_ODR_USED (old_decl))
9722 instantiate_decl (old_decl, /*defer_ok=*/true,
9723 /*expl_inst_class_mem_p=*/false);
9725 else
9727 tree t;
9729 /* Indicate that the old function template is a partial
9730 instantiation. */
9731 DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (old_decl))
9732 = new_friend_result_template_info;
9734 gcc_assert (new_template
9735 == most_general_template (new_template));
9736 gcc_assert (new_template != old_decl);
9738 /* Reassign any specializations already in the hash table
9739 to the new more general template, and add the
9740 additional template args. */
9741 for (t = DECL_TEMPLATE_INSTANTIATIONS (old_decl);
9742 t != NULL_TREE;
9743 t = TREE_CHAIN (t))
9745 tree spec = TREE_VALUE (t);
9746 spec_entry elt;
9748 elt.tmpl = old_decl;
9749 elt.args = DECL_TI_ARGS (spec);
9750 elt.spec = NULL_TREE;
9752 decl_specializations->remove_elt (&elt);
9754 DECL_TI_ARGS (spec)
9755 = add_outermost_template_args (new_args,
9756 DECL_TI_ARGS (spec));
9758 register_specialization
9759 (spec, new_template, DECL_TI_ARGS (spec), true, 0);
9762 DECL_TEMPLATE_INSTANTIATIONS (old_decl) = NULL_TREE;
9766 /* The information from NEW_FRIEND has been merged into OLD_DECL
9767 by duplicate_decls. */
9768 new_friend = old_decl;
9771 else
9773 tree context = DECL_CONTEXT (new_friend);
9774 bool dependent_p;
9776 /* In the code
9777 template <class T> class C {
9778 template <class U> friend void C1<U>::f (); // case 1
9779 friend void C2<T>::f (); // case 2
9781 we only need to make sure CONTEXT is a complete type for
9782 case 2. To distinguish between the two cases, we note that
9783 CONTEXT of case 1 remains dependent type after tsubst while
9784 this isn't true for case 2. */
9785 ++processing_template_decl;
9786 dependent_p = dependent_type_p (context);
9787 --processing_template_decl;
9789 if (!dependent_p
9790 && !complete_type_or_else (context, NULL_TREE))
9791 return error_mark_node;
9793 if (COMPLETE_TYPE_P (context))
9795 tree fn = new_friend;
9796 /* do_friend adds the TEMPLATE_DECL for any member friend
9797 template even if it isn't a member template, i.e.
9798 template <class T> friend A<T>::f();
9799 Look through it in that case. */
9800 if (TREE_CODE (fn) == TEMPLATE_DECL
9801 && !PRIMARY_TEMPLATE_P (fn))
9802 fn = DECL_TEMPLATE_RESULT (fn);
9803 /* Check to see that the declaration is really present, and,
9804 possibly obtain an improved declaration. */
9805 fn = check_classfn (context, fn, NULL_TREE);
9807 if (fn)
9808 new_friend = fn;
9812 return new_friend;
9815 /* FRIEND_TMPL is a friend TEMPLATE_DECL. ARGS is the vector of
9816 template arguments, as for tsubst.
9818 Returns an appropriate tsubst'd friend type or error_mark_node on
9819 failure. */
9821 static tree
9822 tsubst_friend_class (tree friend_tmpl, tree args)
9824 tree friend_type;
9825 tree tmpl;
9826 tree context;
9828 if (DECL_TEMPLATE_TEMPLATE_PARM_P (friend_tmpl))
9830 tree t = tsubst (TREE_TYPE (friend_tmpl), args, tf_none, NULL_TREE);
9831 return TREE_TYPE (t);
9834 context = CP_DECL_CONTEXT (friend_tmpl);
9836 if (context != global_namespace)
9838 if (TREE_CODE (context) == NAMESPACE_DECL)
9839 push_nested_namespace (context);
9840 else
9841 push_nested_class (tsubst (context, args, tf_none, NULL_TREE));
9844 /* Look for a class template declaration. We look for hidden names
9845 because two friend declarations of the same template are the
9846 same. For example, in:
9848 struct A {
9849 template <typename> friend class F;
9851 template <typename> struct B {
9852 template <typename> friend class F;
9855 both F templates are the same. */
9856 tmpl = lookup_name_real (DECL_NAME (friend_tmpl), 0, 0,
9857 /*block_p=*/true, 0, LOOKUP_HIDDEN);
9859 /* But, if we don't find one, it might be because we're in a
9860 situation like this:
9862 template <class T>
9863 struct S {
9864 template <class U>
9865 friend struct S;
9868 Here, in the scope of (say) S<int>, `S' is bound to a TYPE_DECL
9869 for `S<int>', not the TEMPLATE_DECL. */
9870 if (!tmpl || !DECL_CLASS_TEMPLATE_P (tmpl))
9872 tmpl = lookup_name_prefer_type (DECL_NAME (friend_tmpl), 1);
9873 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
9876 if (tmpl && DECL_CLASS_TEMPLATE_P (tmpl))
9878 /* The friend template has already been declared. Just
9879 check to see that the declarations match, and install any new
9880 default parameters. We must tsubst the default parameters,
9881 of course. We only need the innermost template parameters
9882 because that is all that redeclare_class_template will look
9883 at. */
9884 if (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (friend_tmpl))
9885 > TMPL_ARGS_DEPTH (args))
9887 tree parms;
9888 location_t saved_input_location;
9889 parms = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_tmpl),
9890 args, tf_warning_or_error);
9892 saved_input_location = input_location;
9893 input_location = DECL_SOURCE_LOCATION (friend_tmpl);
9894 tree cons = get_constraints (tmpl);
9895 redeclare_class_template (TREE_TYPE (tmpl), parms, cons);
9896 input_location = saved_input_location;
9900 friend_type = TREE_TYPE (tmpl);
9902 else
9904 /* The friend template has not already been declared. In this
9905 case, the instantiation of the template class will cause the
9906 injection of this template into the global scope. */
9907 tmpl = tsubst (friend_tmpl, args, tf_warning_or_error, NULL_TREE);
9908 if (tmpl == error_mark_node)
9909 return error_mark_node;
9911 /* The new TMPL is not an instantiation of anything, so we
9912 forget its origins. We don't reset CLASSTYPE_TI_TEMPLATE for
9913 the new type because that is supposed to be the corresponding
9914 template decl, i.e., TMPL. */
9915 DECL_USE_TEMPLATE (tmpl) = 0;
9916 DECL_TEMPLATE_INFO (tmpl) = NULL_TREE;
9917 CLASSTYPE_USE_TEMPLATE (TREE_TYPE (tmpl)) = 0;
9918 CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl))
9919 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl)));
9921 /* Inject this template into the global scope. */
9922 friend_type = TREE_TYPE (pushdecl_top_level_maybe_friend (tmpl, true));
9925 if (context != global_namespace)
9927 if (TREE_CODE (context) == NAMESPACE_DECL)
9928 pop_nested_namespace (context);
9929 else
9930 pop_nested_class ();
9933 return friend_type;
9936 /* Returns zero if TYPE cannot be completed later due to circularity.
9937 Otherwise returns one. */
9939 static int
9940 can_complete_type_without_circularity (tree type)
9942 if (type == NULL_TREE || type == error_mark_node)
9943 return 0;
9944 else if (COMPLETE_TYPE_P (type))
9945 return 1;
9946 else if (TREE_CODE (type) == ARRAY_TYPE)
9947 return can_complete_type_without_circularity (TREE_TYPE (type));
9948 else if (CLASS_TYPE_P (type)
9949 && TYPE_BEING_DEFINED (TYPE_MAIN_VARIANT (type)))
9950 return 0;
9951 else
9952 return 1;
9955 static tree tsubst_omp_clauses (tree, enum c_omp_region_type, tree,
9956 tsubst_flags_t, tree);
9958 /* Instantiate a single dependent attribute T (a TREE_LIST), and return either
9959 T or a new TREE_LIST, possibly a chain in the case of a pack expansion. */
9961 static tree
9962 tsubst_attribute (tree t, tree *decl_p, tree args,
9963 tsubst_flags_t complain, tree in_decl)
9965 gcc_assert (ATTR_IS_DEPENDENT (t));
9967 tree val = TREE_VALUE (t);
9968 if (val == NULL_TREE)
9969 /* Nothing to do. */;
9970 else if ((flag_openmp || flag_openmp_simd || flag_cilkplus)
9971 && is_attribute_p ("omp declare simd",
9972 get_attribute_name (t)))
9974 tree clauses = TREE_VALUE (val);
9975 clauses = tsubst_omp_clauses (clauses, C_ORT_OMP_DECLARE_SIMD, args,
9976 complain, in_decl);
9977 c_omp_declare_simd_clauses_to_decls (*decl_p, clauses);
9978 clauses = finish_omp_clauses (clauses, C_ORT_OMP_DECLARE_SIMD);
9979 tree parms = DECL_ARGUMENTS (*decl_p);
9980 clauses
9981 = c_omp_declare_simd_clauses_to_numbers (parms, clauses);
9982 if (clauses)
9983 val = build_tree_list (NULL_TREE, clauses);
9984 else
9985 val = NULL_TREE;
9987 /* If the first attribute argument is an identifier, don't
9988 pass it through tsubst. Attributes like mode, format,
9989 cleanup and several target specific attributes expect it
9990 unmodified. */
9991 else if (attribute_takes_identifier_p (get_attribute_name (t)))
9993 tree chain
9994 = tsubst_expr (TREE_CHAIN (val), args, complain, in_decl,
9995 /*integral_constant_expression_p=*/false);
9996 if (chain != TREE_CHAIN (val))
9997 val = tree_cons (NULL_TREE, TREE_VALUE (val), chain);
9999 else if (PACK_EXPANSION_P (val))
10001 /* An attribute pack expansion. */
10002 tree purp = TREE_PURPOSE (t);
10003 tree pack = tsubst_pack_expansion (val, args, complain, in_decl);
10004 int len = TREE_VEC_LENGTH (pack);
10005 tree list = NULL_TREE;
10006 tree *q = &list;
10007 for (int i = 0; i < len; ++i)
10009 tree elt = TREE_VEC_ELT (pack, i);
10010 *q = build_tree_list (purp, elt);
10011 q = &TREE_CHAIN (*q);
10013 return list;
10015 else
10016 val = tsubst_expr (val, args, complain, in_decl,
10017 /*integral_constant_expression_p=*/false);
10019 if (val != TREE_VALUE (t))
10020 return build_tree_list (TREE_PURPOSE (t), val);
10021 return t;
10024 /* Instantiate any dependent attributes in ATTRIBUTES, returning either it
10025 unchanged or a new TREE_LIST chain. */
10027 static tree
10028 tsubst_attributes (tree attributes, tree args,
10029 tsubst_flags_t complain, tree in_decl)
10031 tree last_dep = NULL_TREE;
10033 for (tree t = attributes; t; t = TREE_CHAIN (t))
10034 if (ATTR_IS_DEPENDENT (t))
10036 last_dep = t;
10037 attributes = copy_list (attributes);
10038 break;
10041 if (last_dep)
10042 for (tree *p = &attributes; *p; )
10044 tree t = *p;
10045 if (ATTR_IS_DEPENDENT (t))
10047 tree subst = tsubst_attribute (t, NULL, args, complain, in_decl);
10048 if (subst != t)
10050 *p = subst;
10052 p = &TREE_CHAIN (*p);
10053 while (*p);
10054 *p = TREE_CHAIN (t);
10055 continue;
10058 p = &TREE_CHAIN (*p);
10061 return attributes;
10064 /* Apply any attributes which had to be deferred until instantiation
10065 time. DECL_P, ATTRIBUTES and ATTR_FLAGS are as cplus_decl_attributes;
10066 ARGS, COMPLAIN, IN_DECL are as tsubst. */
10068 static void
10069 apply_late_template_attributes (tree *decl_p, tree attributes, int attr_flags,
10070 tree args, tsubst_flags_t complain, tree in_decl)
10072 tree last_dep = NULL_TREE;
10073 tree t;
10074 tree *p;
10076 for (t = attributes; t; t = TREE_CHAIN (t))
10077 if (ATTR_IS_DEPENDENT (t))
10079 last_dep = t;
10080 attributes = copy_list (attributes);
10081 break;
10084 if (DECL_P (*decl_p))
10086 if (TREE_TYPE (*decl_p) == error_mark_node)
10087 return;
10088 p = &DECL_ATTRIBUTES (*decl_p);
10090 else
10091 p = &TYPE_ATTRIBUTES (*decl_p);
10093 if (last_dep)
10095 tree late_attrs = NULL_TREE;
10096 tree *q = &late_attrs;
10098 for (*p = attributes; *p; )
10100 t = *p;
10101 if (ATTR_IS_DEPENDENT (t))
10103 *p = TREE_CHAIN (t);
10104 TREE_CHAIN (t) = NULL_TREE;
10105 *q = tsubst_attribute (t, decl_p, args, complain, in_decl);
10107 q = &TREE_CHAIN (*q);
10108 while (*q);
10110 else
10111 p = &TREE_CHAIN (t);
10114 cplus_decl_attributes (decl_p, late_attrs, attr_flags);
10118 /* Perform (or defer) access check for typedefs that were referenced
10119 from within the template TMPL code.
10120 This is a subroutine of instantiate_decl and instantiate_class_template.
10121 TMPL is the template to consider and TARGS is the list of arguments of
10122 that template. */
10124 static void
10125 perform_typedefs_access_check (tree tmpl, tree targs)
10127 location_t saved_location;
10128 unsigned i;
10129 qualified_typedef_usage_t *iter;
10131 if (!tmpl
10132 || (!CLASS_TYPE_P (tmpl)
10133 && TREE_CODE (tmpl) != FUNCTION_DECL))
10134 return;
10136 saved_location = input_location;
10137 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (tmpl), i, iter)
10139 tree type_decl = iter->typedef_decl;
10140 tree type_scope = iter->context;
10142 if (!type_decl || !type_scope || !CLASS_TYPE_P (type_scope))
10143 continue;
10145 if (uses_template_parms (type_decl))
10146 type_decl = tsubst (type_decl, targs, tf_error, NULL_TREE);
10147 if (uses_template_parms (type_scope))
10148 type_scope = tsubst (type_scope, targs, tf_error, NULL_TREE);
10150 /* Make access check error messages point to the location
10151 of the use of the typedef. */
10152 input_location = iter->locus;
10153 perform_or_defer_access_check (TYPE_BINFO (type_scope),
10154 type_decl, type_decl,
10155 tf_warning_or_error);
10157 input_location = saved_location;
10160 static tree
10161 instantiate_class_template_1 (tree type)
10163 tree templ, args, pattern, t, member;
10164 tree typedecl;
10165 tree pbinfo;
10166 tree base_list;
10167 unsigned int saved_maximum_field_alignment;
10168 tree fn_context;
10170 if (type == error_mark_node)
10171 return error_mark_node;
10173 if (COMPLETE_OR_OPEN_TYPE_P (type)
10174 || uses_template_parms (type))
10175 return type;
10177 /* Figure out which template is being instantiated. */
10178 templ = most_general_template (CLASSTYPE_TI_TEMPLATE (type));
10179 gcc_assert (TREE_CODE (templ) == TEMPLATE_DECL);
10181 /* Determine what specialization of the original template to
10182 instantiate. */
10183 t = most_specialized_partial_spec (type, tf_warning_or_error);
10184 if (t == error_mark_node)
10186 TYPE_BEING_DEFINED (type) = 1;
10187 return error_mark_node;
10189 else if (t)
10191 /* This TYPE is actually an instantiation of a partial
10192 specialization. We replace the innermost set of ARGS with
10193 the arguments appropriate for substitution. For example,
10194 given:
10196 template <class T> struct S {};
10197 template <class T> struct S<T*> {};
10199 and supposing that we are instantiating S<int*>, ARGS will
10200 presently be {int*} -- but we need {int}. */
10201 pattern = TREE_TYPE (t);
10202 args = TREE_PURPOSE (t);
10204 else
10206 pattern = TREE_TYPE (templ);
10207 args = CLASSTYPE_TI_ARGS (type);
10210 /* If the template we're instantiating is incomplete, then clearly
10211 there's nothing we can do. */
10212 if (!COMPLETE_TYPE_P (pattern))
10213 return type;
10215 /* If we've recursively instantiated too many templates, stop. */
10216 if (! push_tinst_level (type))
10217 return type;
10219 /* Now we're really doing the instantiation. Mark the type as in
10220 the process of being defined. */
10221 TYPE_BEING_DEFINED (type) = 1;
10223 /* We may be in the middle of deferred access check. Disable
10224 it now. */
10225 push_deferring_access_checks (dk_no_deferred);
10227 int saved_unevaluated_operand = cp_unevaluated_operand;
10228 int saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
10230 fn_context = decl_function_context (TYPE_MAIN_DECL (type));
10231 /* Also avoid push_to_top_level for a lambda in an NSDMI. */
10232 if (!fn_context && LAMBDA_TYPE_P (type) && TYPE_CLASS_SCOPE_P (type))
10233 fn_context = error_mark_node;
10234 if (!fn_context)
10235 push_to_top_level ();
10236 else
10238 cp_unevaluated_operand = 0;
10239 c_inhibit_evaluation_warnings = 0;
10241 /* Use #pragma pack from the template context. */
10242 saved_maximum_field_alignment = maximum_field_alignment;
10243 maximum_field_alignment = TYPE_PRECISION (pattern);
10245 SET_CLASSTYPE_INTERFACE_UNKNOWN (type);
10247 /* Set the input location to the most specialized template definition.
10248 This is needed if tsubsting causes an error. */
10249 typedecl = TYPE_MAIN_DECL (pattern);
10250 input_location = DECL_SOURCE_LOCATION (TYPE_NAME (type)) =
10251 DECL_SOURCE_LOCATION (typedecl);
10253 TYPE_PACKED (type) = TYPE_PACKED (pattern);
10254 SET_TYPE_ALIGN (type, TYPE_ALIGN (pattern));
10255 TYPE_USER_ALIGN (type) = TYPE_USER_ALIGN (pattern);
10256 if (ANON_AGGR_TYPE_P (pattern))
10257 SET_ANON_AGGR_TYPE_P (type);
10258 if (CLASSTYPE_VISIBILITY_SPECIFIED (pattern))
10260 CLASSTYPE_VISIBILITY_SPECIFIED (type) = 1;
10261 CLASSTYPE_VISIBILITY (type) = CLASSTYPE_VISIBILITY (pattern);
10262 /* Adjust visibility for template arguments. */
10263 determine_visibility (TYPE_MAIN_DECL (type));
10265 if (CLASS_TYPE_P (type))
10266 CLASSTYPE_FINAL (type) = CLASSTYPE_FINAL (pattern);
10268 pbinfo = TYPE_BINFO (pattern);
10270 /* We should never instantiate a nested class before its enclosing
10271 class; we need to look up the nested class by name before we can
10272 instantiate it, and that lookup should instantiate the enclosing
10273 class. */
10274 gcc_assert (!DECL_CLASS_SCOPE_P (TYPE_MAIN_DECL (pattern))
10275 || COMPLETE_OR_OPEN_TYPE_P (TYPE_CONTEXT (type)));
10277 base_list = NULL_TREE;
10278 if (BINFO_N_BASE_BINFOS (pbinfo))
10280 tree pbase_binfo;
10281 tree pushed_scope;
10282 int i;
10284 /* We must enter the scope containing the type, as that is where
10285 the accessibility of types named in dependent bases are
10286 looked up from. */
10287 pushed_scope = push_scope (CP_TYPE_CONTEXT (type));
10289 /* Substitute into each of the bases to determine the actual
10290 basetypes. */
10291 for (i = 0; BINFO_BASE_ITERATE (pbinfo, i, pbase_binfo); i++)
10293 tree base;
10294 tree access = BINFO_BASE_ACCESS (pbinfo, i);
10295 tree expanded_bases = NULL_TREE;
10296 int idx, len = 1;
10298 if (PACK_EXPANSION_P (BINFO_TYPE (pbase_binfo)))
10300 expanded_bases =
10301 tsubst_pack_expansion (BINFO_TYPE (pbase_binfo),
10302 args, tf_error, NULL_TREE);
10303 if (expanded_bases == error_mark_node)
10304 continue;
10306 len = TREE_VEC_LENGTH (expanded_bases);
10309 for (idx = 0; idx < len; idx++)
10311 if (expanded_bases)
10312 /* Extract the already-expanded base class. */
10313 base = TREE_VEC_ELT (expanded_bases, idx);
10314 else
10315 /* Substitute to figure out the base class. */
10316 base = tsubst (BINFO_TYPE (pbase_binfo), args, tf_error,
10317 NULL_TREE);
10319 if (base == error_mark_node)
10320 continue;
10322 base_list = tree_cons (access, base, base_list);
10323 if (BINFO_VIRTUAL_P (pbase_binfo))
10324 TREE_TYPE (base_list) = integer_type_node;
10328 /* The list is now in reverse order; correct that. */
10329 base_list = nreverse (base_list);
10331 if (pushed_scope)
10332 pop_scope (pushed_scope);
10334 /* Now call xref_basetypes to set up all the base-class
10335 information. */
10336 xref_basetypes (type, base_list);
10338 apply_late_template_attributes (&type, TYPE_ATTRIBUTES (pattern),
10339 (int) ATTR_FLAG_TYPE_IN_PLACE,
10340 args, tf_error, NULL_TREE);
10341 fixup_attribute_variants (type);
10343 /* Now that our base classes are set up, enter the scope of the
10344 class, so that name lookups into base classes, etc. will work
10345 correctly. This is precisely analogous to what we do in
10346 begin_class_definition when defining an ordinary non-template
10347 class, except we also need to push the enclosing classes. */
10348 push_nested_class (type);
10350 /* Now members are processed in the order of declaration. */
10351 for (member = CLASSTYPE_DECL_LIST (pattern);
10352 member; member = TREE_CHAIN (member))
10354 tree t = TREE_VALUE (member);
10356 if (TREE_PURPOSE (member))
10358 if (TYPE_P (t))
10360 /* Build new CLASSTYPE_NESTED_UTDS. */
10362 tree newtag;
10363 bool class_template_p;
10365 class_template_p = (TREE_CODE (t) != ENUMERAL_TYPE
10366 && TYPE_LANG_SPECIFIC (t)
10367 && CLASSTYPE_IS_TEMPLATE (t));
10368 /* If the member is a class template, then -- even after
10369 substitution -- there may be dependent types in the
10370 template argument list for the class. We increment
10371 PROCESSING_TEMPLATE_DECL so that dependent_type_p, as
10372 that function will assume that no types are dependent
10373 when outside of a template. */
10374 if (class_template_p)
10375 ++processing_template_decl;
10376 newtag = tsubst (t, args, tf_error, NULL_TREE);
10377 if (class_template_p)
10378 --processing_template_decl;
10379 if (newtag == error_mark_node)
10380 continue;
10382 if (TREE_CODE (newtag) != ENUMERAL_TYPE)
10384 tree name = TYPE_IDENTIFIER (t);
10386 if (class_template_p)
10387 /* Unfortunately, lookup_template_class sets
10388 CLASSTYPE_IMPLICIT_INSTANTIATION for a partial
10389 instantiation (i.e., for the type of a member
10390 template class nested within a template class.)
10391 This behavior is required for
10392 maybe_process_partial_specialization to work
10393 correctly, but is not accurate in this case;
10394 the TAG is not an instantiation of anything.
10395 (The corresponding TEMPLATE_DECL is an
10396 instantiation, but the TYPE is not.) */
10397 CLASSTYPE_USE_TEMPLATE (newtag) = 0;
10399 /* Now, we call pushtag to put this NEWTAG into the scope of
10400 TYPE. We first set up the IDENTIFIER_TYPE_VALUE to avoid
10401 pushtag calling push_template_decl. We don't have to do
10402 this for enums because it will already have been done in
10403 tsubst_enum. */
10404 if (name)
10405 SET_IDENTIFIER_TYPE_VALUE (name, newtag);
10406 pushtag (name, newtag, /*tag_scope=*/ts_current);
10409 else if (DECL_DECLARES_FUNCTION_P (t))
10411 /* Build new TYPE_METHODS. */
10412 tree r;
10414 if (TREE_CODE (t) == TEMPLATE_DECL)
10415 ++processing_template_decl;
10416 r = tsubst (t, args, tf_error, NULL_TREE);
10417 if (TREE_CODE (t) == TEMPLATE_DECL)
10418 --processing_template_decl;
10419 set_current_access_from_decl (r);
10420 finish_member_declaration (r);
10421 /* Instantiate members marked with attribute used. */
10422 if (r != error_mark_node && DECL_PRESERVE_P (r))
10423 mark_used (r);
10424 if (TREE_CODE (r) == FUNCTION_DECL
10425 && DECL_OMP_DECLARE_REDUCTION_P (r))
10426 cp_check_omp_declare_reduction (r);
10428 else if (DECL_CLASS_TEMPLATE_P (t)
10429 && LAMBDA_TYPE_P (TREE_TYPE (t)))
10430 /* A closure type for a lambda in a default argument for a
10431 member template. Ignore it; it will be instantiated with
10432 the default argument. */;
10433 else
10435 /* Build new TYPE_FIELDS. */
10436 if (TREE_CODE (t) == STATIC_ASSERT)
10438 tree condition;
10440 ++c_inhibit_evaluation_warnings;
10441 condition =
10442 tsubst_expr (STATIC_ASSERT_CONDITION (t), args,
10443 tf_warning_or_error, NULL_TREE,
10444 /*integral_constant_expression_p=*/true);
10445 --c_inhibit_evaluation_warnings;
10447 finish_static_assert (condition,
10448 STATIC_ASSERT_MESSAGE (t),
10449 STATIC_ASSERT_SOURCE_LOCATION (t),
10450 /*member_p=*/true);
10452 else if (TREE_CODE (t) != CONST_DECL)
10454 tree r;
10455 tree vec = NULL_TREE;
10456 int len = 1;
10458 /* The file and line for this declaration, to
10459 assist in error message reporting. Since we
10460 called push_tinst_level above, we don't need to
10461 restore these. */
10462 input_location = DECL_SOURCE_LOCATION (t);
10464 if (TREE_CODE (t) == TEMPLATE_DECL)
10465 ++processing_template_decl;
10466 r = tsubst (t, args, tf_warning_or_error, NULL_TREE);
10467 if (TREE_CODE (t) == TEMPLATE_DECL)
10468 --processing_template_decl;
10470 if (TREE_CODE (r) == TREE_VEC)
10472 /* A capture pack became multiple fields. */
10473 vec = r;
10474 len = TREE_VEC_LENGTH (vec);
10477 for (int i = 0; i < len; ++i)
10479 if (vec)
10480 r = TREE_VEC_ELT (vec, i);
10481 if (VAR_P (r))
10483 /* In [temp.inst]:
10485 [t]he initialization (and any associated
10486 side-effects) of a static data member does
10487 not occur unless the static data member is
10488 itself used in a way that requires the
10489 definition of the static data member to
10490 exist.
10492 Therefore, we do not substitute into the
10493 initialized for the static data member here. */
10494 finish_static_data_member_decl
10496 /*init=*/NULL_TREE,
10497 /*init_const_expr_p=*/false,
10498 /*asmspec_tree=*/NULL_TREE,
10499 /*flags=*/0);
10500 /* Instantiate members marked with attribute used. */
10501 if (r != error_mark_node && DECL_PRESERVE_P (r))
10502 mark_used (r);
10504 else if (TREE_CODE (r) == FIELD_DECL)
10506 /* Determine whether R has a valid type and can be
10507 completed later. If R is invalid, then its type
10508 is replaced by error_mark_node. */
10509 tree rtype = TREE_TYPE (r);
10510 if (can_complete_type_without_circularity (rtype))
10511 complete_type (rtype);
10513 if (!complete_or_array_type_p (rtype))
10515 /* If R's type couldn't be completed and
10516 it isn't a flexible array member (whose
10517 type is incomplete by definition) give
10518 an error. */
10519 cxx_incomplete_type_error (r, rtype);
10520 TREE_TYPE (r) = error_mark_node;
10524 /* If it is a TYPE_DECL for a class-scoped ENUMERAL_TYPE,
10525 such a thing will already have been added to the field
10526 list by tsubst_enum in finish_member_declaration in the
10527 CLASSTYPE_NESTED_UTDS case above. */
10528 if (!(TREE_CODE (r) == TYPE_DECL
10529 && TREE_CODE (TREE_TYPE (r)) == ENUMERAL_TYPE
10530 && DECL_ARTIFICIAL (r)))
10532 set_current_access_from_decl (r);
10533 finish_member_declaration (r);
10539 else
10541 if (TYPE_P (t) || DECL_CLASS_TEMPLATE_P (t)
10542 || DECL_TEMPLATE_TEMPLATE_PARM_P (t))
10544 /* Build new CLASSTYPE_FRIEND_CLASSES. */
10546 tree friend_type = t;
10547 bool adjust_processing_template_decl = false;
10549 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
10551 /* template <class T> friend class C; */
10552 friend_type = tsubst_friend_class (friend_type, args);
10553 adjust_processing_template_decl = true;
10555 else if (TREE_CODE (friend_type) == UNBOUND_CLASS_TEMPLATE)
10557 /* template <class T> friend class C::D; */
10558 friend_type = tsubst (friend_type, args,
10559 tf_warning_or_error, NULL_TREE);
10560 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
10561 friend_type = TREE_TYPE (friend_type);
10562 adjust_processing_template_decl = true;
10564 else if (TREE_CODE (friend_type) == TYPENAME_TYPE
10565 || TREE_CODE (friend_type) == TEMPLATE_TYPE_PARM)
10567 /* This could be either
10569 friend class T::C;
10571 when dependent_type_p is false or
10573 template <class U> friend class T::C;
10575 otherwise. */
10576 /* Bump processing_template_decl in case this is something like
10577 template <class T> friend struct A<T>::B. */
10578 ++processing_template_decl;
10579 friend_type = tsubst (friend_type, args,
10580 tf_warning_or_error, NULL_TREE);
10581 if (dependent_type_p (friend_type))
10582 adjust_processing_template_decl = true;
10583 --processing_template_decl;
10585 else if (!CLASSTYPE_USE_TEMPLATE (friend_type)
10586 && hidden_name_p (TYPE_NAME (friend_type)))
10588 /* friend class C;
10590 where C hasn't been declared yet. Let's lookup name
10591 from namespace scope directly, bypassing any name that
10592 come from dependent base class. */
10593 tree ns = decl_namespace_context (TYPE_MAIN_DECL (friend_type));
10595 /* The call to xref_tag_from_type does injection for friend
10596 classes. */
10597 push_nested_namespace (ns);
10598 friend_type =
10599 xref_tag_from_type (friend_type, NULL_TREE,
10600 /*tag_scope=*/ts_current);
10601 pop_nested_namespace (ns);
10603 else if (uses_template_parms (friend_type))
10604 /* friend class C<T>; */
10605 friend_type = tsubst (friend_type, args,
10606 tf_warning_or_error, NULL_TREE);
10607 /* Otherwise it's
10609 friend class C;
10611 where C is already declared or
10613 friend class C<int>;
10615 We don't have to do anything in these cases. */
10617 if (adjust_processing_template_decl)
10618 /* Trick make_friend_class into realizing that the friend
10619 we're adding is a template, not an ordinary class. It's
10620 important that we use make_friend_class since it will
10621 perform some error-checking and output cross-reference
10622 information. */
10623 ++processing_template_decl;
10625 if (friend_type != error_mark_node)
10626 make_friend_class (type, friend_type, /*complain=*/false);
10628 if (adjust_processing_template_decl)
10629 --processing_template_decl;
10631 else
10633 /* Build new DECL_FRIENDLIST. */
10634 tree r;
10636 /* The file and line for this declaration, to
10637 assist in error message reporting. Since we
10638 called push_tinst_level above, we don't need to
10639 restore these. */
10640 input_location = DECL_SOURCE_LOCATION (t);
10642 if (TREE_CODE (t) == TEMPLATE_DECL)
10644 ++processing_template_decl;
10645 push_deferring_access_checks (dk_no_check);
10648 r = tsubst_friend_function (t, args);
10649 add_friend (type, r, /*complain=*/false);
10650 if (TREE_CODE (t) == TEMPLATE_DECL)
10652 pop_deferring_access_checks ();
10653 --processing_template_decl;
10659 if (fn_context)
10661 /* Restore these before substituting into the lambda capture
10662 initializers. */
10663 cp_unevaluated_operand = saved_unevaluated_operand;
10664 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
10667 if (tree expr = CLASSTYPE_LAMBDA_EXPR (type))
10669 tree decl = lambda_function (type);
10670 if (decl)
10672 if (cxx_dialect >= cxx1z)
10673 CLASSTYPE_LITERAL_P (type) = true;
10675 if (!DECL_TEMPLATE_INFO (decl)
10676 || DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (decl)) != decl)
10678 /* Set function_depth to avoid garbage collection. */
10679 ++function_depth;
10680 instantiate_decl (decl, /*defer_ok=*/false, false);
10681 --function_depth;
10684 /* We need to instantiate the capture list from the template
10685 after we've instantiated the closure members, but before we
10686 consider adding the conversion op. Also keep any captures
10687 that may have been added during instantiation of the op(). */
10688 tree tmpl_expr = CLASSTYPE_LAMBDA_EXPR (pattern);
10689 tree tmpl_cap
10690 = tsubst_copy_and_build (LAMBDA_EXPR_CAPTURE_LIST (tmpl_expr),
10691 args, tf_warning_or_error, NULL_TREE,
10692 false, false);
10694 LAMBDA_EXPR_CAPTURE_LIST (expr)
10695 = chainon (tmpl_cap, nreverse (LAMBDA_EXPR_CAPTURE_LIST (expr)));
10697 maybe_add_lambda_conv_op (type);
10699 else
10700 gcc_assert (errorcount);
10703 /* Set the file and line number information to whatever is given for
10704 the class itself. This puts error messages involving generated
10705 implicit functions at a predictable point, and the same point
10706 that would be used for non-template classes. */
10707 input_location = DECL_SOURCE_LOCATION (typedecl);
10709 unreverse_member_declarations (type);
10710 finish_struct_1 (type);
10711 TYPE_BEING_DEFINED (type) = 0;
10713 /* We don't instantiate default arguments for member functions. 14.7.1:
10715 The implicit instantiation of a class template specialization causes
10716 the implicit instantiation of the declarations, but not of the
10717 definitions or default arguments, of the class member functions,
10718 member classes, static data members and member templates.... */
10720 /* Some typedefs referenced from within the template code need to be access
10721 checked at template instantiation time, i.e now. These types were
10722 added to the template at parsing time. Let's get those and perform
10723 the access checks then. */
10724 perform_typedefs_access_check (pattern, args);
10725 perform_deferred_access_checks (tf_warning_or_error);
10726 pop_nested_class ();
10727 maximum_field_alignment = saved_maximum_field_alignment;
10728 if (!fn_context)
10729 pop_from_top_level ();
10730 pop_deferring_access_checks ();
10731 pop_tinst_level ();
10733 /* The vtable for a template class can be emitted in any translation
10734 unit in which the class is instantiated. When there is no key
10735 method, however, finish_struct_1 will already have added TYPE to
10736 the keyed_classes list. */
10737 if (TYPE_CONTAINS_VPTR_P (type) && CLASSTYPE_KEY_METHOD (type))
10738 keyed_classes = tree_cons (NULL_TREE, type, keyed_classes);
10740 return type;
10743 /* Wrapper for instantiate_class_template_1. */
10745 tree
10746 instantiate_class_template (tree type)
10748 tree ret;
10749 timevar_push (TV_TEMPLATE_INST);
10750 ret = instantiate_class_template_1 (type);
10751 timevar_pop (TV_TEMPLATE_INST);
10752 return ret;
10755 static tree
10756 tsubst_template_arg (tree t, tree args, tsubst_flags_t complain, tree in_decl)
10758 tree r;
10760 if (!t)
10761 r = t;
10762 else if (TYPE_P (t))
10763 r = tsubst (t, args, complain, in_decl);
10764 else
10766 if (!(complain & tf_warning))
10767 ++c_inhibit_evaluation_warnings;
10768 r = tsubst_expr (t, args, complain, in_decl,
10769 /*integral_constant_expression_p=*/true);
10770 if (!(complain & tf_warning))
10771 --c_inhibit_evaluation_warnings;
10773 return r;
10776 /* Given a function parameter pack TMPL_PARM and some function parameters
10777 instantiated from it at *SPEC_P, return a NONTYPE_ARGUMENT_PACK of them
10778 and set *SPEC_P to point at the next point in the list. */
10780 tree
10781 extract_fnparm_pack (tree tmpl_parm, tree *spec_p)
10783 /* Collect all of the extra "packed" parameters into an
10784 argument pack. */
10785 tree parmvec;
10786 tree parmtypevec;
10787 tree argpack = make_node (NONTYPE_ARGUMENT_PACK);
10788 tree argtypepack = cxx_make_type (TYPE_ARGUMENT_PACK);
10789 tree spec_parm = *spec_p;
10790 int i, len;
10792 for (len = 0; spec_parm; ++len, spec_parm = TREE_CHAIN (spec_parm))
10793 if (tmpl_parm
10794 && !function_parameter_expanded_from_pack_p (spec_parm, tmpl_parm))
10795 break;
10797 /* Fill in PARMVEC and PARMTYPEVEC with all of the parameters. */
10798 parmvec = make_tree_vec (len);
10799 parmtypevec = make_tree_vec (len);
10800 spec_parm = *spec_p;
10801 for (i = 0; i < len; i++, spec_parm = DECL_CHAIN (spec_parm))
10803 TREE_VEC_ELT (parmvec, i) = spec_parm;
10804 TREE_VEC_ELT (parmtypevec, i) = TREE_TYPE (spec_parm);
10807 /* Build the argument packs. */
10808 SET_ARGUMENT_PACK_ARGS (argpack, parmvec);
10809 SET_ARGUMENT_PACK_ARGS (argtypepack, parmtypevec);
10810 TREE_TYPE (argpack) = argtypepack;
10811 *spec_p = spec_parm;
10813 return argpack;
10816 /* Give a chain SPEC_PARM of PARM_DECLs, pack them into a
10817 NONTYPE_ARGUMENT_PACK. */
10819 static tree
10820 make_fnparm_pack (tree spec_parm)
10822 return extract_fnparm_pack (NULL_TREE, &spec_parm);
10825 /* Return 1 if the Ith element of the argument pack ARG_PACK is a
10826 pack expansion with no extra args, 2 if it has extra args, or 0
10827 if it is not a pack expansion. */
10829 static int
10830 argument_pack_element_is_expansion_p (tree arg_pack, int i)
10832 tree vec = ARGUMENT_PACK_ARGS (arg_pack);
10833 if (i >= TREE_VEC_LENGTH (vec))
10834 return 0;
10835 tree elt = TREE_VEC_ELT (vec, i);
10836 if (DECL_P (elt))
10837 /* A decl pack is itself an expansion. */
10838 elt = TREE_TYPE (elt);
10839 if (!PACK_EXPANSION_P (elt))
10840 return 0;
10841 if (PACK_EXPANSION_EXTRA_ARGS (elt))
10842 return 2;
10843 return 1;
10847 /* Creates and return an ARGUMENT_PACK_SELECT tree node. */
10849 static tree
10850 make_argument_pack_select (tree arg_pack, unsigned index)
10852 tree aps = make_node (ARGUMENT_PACK_SELECT);
10854 ARGUMENT_PACK_SELECT_FROM_PACK (aps) = arg_pack;
10855 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
10857 return aps;
10860 /* This is a subroutine of tsubst_pack_expansion.
10862 It returns TRUE if we need to use the PACK_EXPANSION_EXTRA_ARGS
10863 mechanism to store the (non complete list of) arguments of the
10864 substitution and return a non substituted pack expansion, in order
10865 to wait for when we have enough arguments to really perform the
10866 substitution. */
10868 static bool
10869 use_pack_expansion_extra_args_p (tree parm_packs,
10870 int arg_pack_len,
10871 bool has_empty_arg)
10873 /* If one pack has an expansion and another pack has a normal
10874 argument or if one pack has an empty argument and an another
10875 one hasn't then tsubst_pack_expansion cannot perform the
10876 substitution and need to fall back on the
10877 PACK_EXPANSION_EXTRA mechanism. */
10878 if (parm_packs == NULL_TREE)
10879 return false;
10880 else if (has_empty_arg)
10881 return true;
10883 bool has_expansion_arg = false;
10884 for (int i = 0 ; i < arg_pack_len; ++i)
10886 bool has_non_expansion_arg = false;
10887 for (tree parm_pack = parm_packs;
10888 parm_pack;
10889 parm_pack = TREE_CHAIN (parm_pack))
10891 tree arg = TREE_VALUE (parm_pack);
10893 int exp = argument_pack_element_is_expansion_p (arg, i);
10894 if (exp == 2)
10895 /* We can't substitute a pack expansion with extra args into
10896 our pattern. */
10897 return true;
10898 else if (exp)
10899 has_expansion_arg = true;
10900 else
10901 has_non_expansion_arg = true;
10904 if (has_expansion_arg && has_non_expansion_arg)
10905 return true;
10907 return false;
10910 /* [temp.variadic]/6 says that:
10912 The instantiation of a pack expansion [...]
10913 produces a list E1,E2, ..., En, where N is the number of elements
10914 in the pack expansion parameters.
10916 This subroutine of tsubst_pack_expansion produces one of these Ei.
10918 PATTERN is the pattern of the pack expansion. PARM_PACKS is a
10919 TREE_LIST in which each TREE_PURPOSE is a parameter pack of
10920 PATTERN, and each TREE_VALUE is its corresponding argument pack.
10921 INDEX is the index 'i' of the element Ei to produce. ARGS,
10922 COMPLAIN, and IN_DECL are the same parameters as for the
10923 tsubst_pack_expansion function.
10925 The function returns the resulting Ei upon successful completion,
10926 or error_mark_node.
10928 Note that this function possibly modifies the ARGS parameter, so
10929 it's the responsibility of the caller to restore it. */
10931 static tree
10932 gen_elem_of_pack_expansion_instantiation (tree pattern,
10933 tree parm_packs,
10934 unsigned index,
10935 tree args /* This parm gets
10936 modified. */,
10937 tsubst_flags_t complain,
10938 tree in_decl)
10940 tree t;
10941 bool ith_elem_is_expansion = false;
10943 /* For each parameter pack, change the substitution of the parameter
10944 pack to the ith argument in its argument pack, then expand the
10945 pattern. */
10946 for (tree pack = parm_packs; pack; pack = TREE_CHAIN (pack))
10948 tree parm = TREE_PURPOSE (pack);
10949 tree arg_pack = TREE_VALUE (pack);
10950 tree aps; /* instance of ARGUMENT_PACK_SELECT. */
10952 ith_elem_is_expansion |=
10953 argument_pack_element_is_expansion_p (arg_pack, index);
10955 /* Select the Ith argument from the pack. */
10956 if (TREE_CODE (parm) == PARM_DECL
10957 || TREE_CODE (parm) == FIELD_DECL)
10959 if (index == 0)
10961 aps = make_argument_pack_select (arg_pack, index);
10962 if (!mark_used (parm, complain) && !(complain & tf_error))
10963 return error_mark_node;
10964 register_local_specialization (aps, parm);
10966 else
10967 aps = retrieve_local_specialization (parm);
10969 else
10971 int idx, level;
10972 template_parm_level_and_index (parm, &level, &idx);
10974 if (index == 0)
10976 aps = make_argument_pack_select (arg_pack, index);
10977 /* Update the corresponding argument. */
10978 TMPL_ARG (args, level, idx) = aps;
10980 else
10981 /* Re-use the ARGUMENT_PACK_SELECT. */
10982 aps = TMPL_ARG (args, level, idx);
10984 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
10987 /* Substitute into the PATTERN with the (possibly altered)
10988 arguments. */
10989 if (pattern == in_decl)
10990 /* Expanding a fixed parameter pack from
10991 coerce_template_parameter_pack. */
10992 t = tsubst_decl (pattern, args, complain);
10993 else if (pattern == error_mark_node)
10994 t = error_mark_node;
10995 else if (constraint_p (pattern))
10997 if (processing_template_decl)
10998 t = tsubst_constraint (pattern, args, complain, in_decl);
10999 else
11000 t = (constraints_satisfied_p (pattern, args)
11001 ? boolean_true_node : boolean_false_node);
11003 else if (!TYPE_P (pattern))
11004 t = tsubst_expr (pattern, args, complain, in_decl,
11005 /*integral_constant_expression_p=*/false);
11006 else
11007 t = tsubst (pattern, args, complain, in_decl);
11009 /* If the Ith argument pack element is a pack expansion, then
11010 the Ith element resulting from the substituting is going to
11011 be a pack expansion as well. */
11012 if (ith_elem_is_expansion)
11013 t = make_pack_expansion (t);
11015 return t;
11018 /* When the unexpanded parameter pack in a fold expression expands to an empty
11019 sequence, the value of the expression is as follows; the program is
11020 ill-formed if the operator is not listed in this table.
11022 && true
11023 || false
11024 , void() */
11026 tree
11027 expand_empty_fold (tree t, tsubst_flags_t complain)
11029 tree_code code = (tree_code)TREE_INT_CST_LOW (TREE_OPERAND (t, 0));
11030 if (!FOLD_EXPR_MODIFY_P (t))
11031 switch (code)
11033 case TRUTH_ANDIF_EXPR:
11034 return boolean_true_node;
11035 case TRUTH_ORIF_EXPR:
11036 return boolean_false_node;
11037 case COMPOUND_EXPR:
11038 return void_node;
11039 default:
11040 break;
11043 if (complain & tf_error)
11044 error_at (location_of (t),
11045 "fold of empty expansion over %O", code);
11046 return error_mark_node;
11049 /* Given a fold-expression T and a current LEFT and RIGHT operand,
11050 form an expression that combines the two terms using the
11051 operator of T. */
11053 static tree
11054 fold_expression (tree t, tree left, tree right, tsubst_flags_t complain)
11056 tree op = FOLD_EXPR_OP (t);
11057 tree_code code = (tree_code)TREE_INT_CST_LOW (op);
11059 // Handle compound assignment operators.
11060 if (FOLD_EXPR_MODIFY_P (t))
11061 return build_x_modify_expr (input_location, left, code, right, complain);
11063 switch (code)
11065 case COMPOUND_EXPR:
11066 return build_x_compound_expr (input_location, left, right, complain);
11067 case DOTSTAR_EXPR:
11068 return build_m_component_ref (left, right, complain);
11069 default:
11070 return build_x_binary_op (input_location, code,
11071 left, TREE_CODE (left),
11072 right, TREE_CODE (right),
11073 /*overload=*/NULL,
11074 complain);
11078 /* Substitute ARGS into the pack of a fold expression T. */
11080 static inline tree
11081 tsubst_fold_expr_pack (tree t, tree args, tsubst_flags_t complain, tree in_decl)
11083 return tsubst_pack_expansion (FOLD_EXPR_PACK (t), args, complain, in_decl);
11086 /* Substitute ARGS into the pack of a fold expression T. */
11088 static inline tree
11089 tsubst_fold_expr_init (tree t, tree args, tsubst_flags_t complain, tree in_decl)
11091 return tsubst_expr (FOLD_EXPR_INIT (t), args, complain, in_decl, false);
11094 /* Expand a PACK of arguments into a grouped as left fold.
11095 Given a pack containing elements A0, A1, ..., An and an
11096 operator @, this builds the expression:
11098 ((A0 @ A1) @ A2) ... @ An
11100 Note that PACK must not be empty.
11102 The operator is defined by the original fold expression T. */
11104 static tree
11105 expand_left_fold (tree t, tree pack, tsubst_flags_t complain)
11107 tree left = TREE_VEC_ELT (pack, 0);
11108 for (int i = 1; i < TREE_VEC_LENGTH (pack); ++i)
11110 tree right = TREE_VEC_ELT (pack, i);
11111 left = fold_expression (t, left, right, complain);
11113 return left;
11116 /* Substitute into a unary left fold expression. */
11118 static tree
11119 tsubst_unary_left_fold (tree t, tree args, tsubst_flags_t complain,
11120 tree in_decl)
11122 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
11123 if (pack == error_mark_node)
11124 return error_mark_node;
11125 if (PACK_EXPANSION_P (pack))
11127 tree r = copy_node (t);
11128 FOLD_EXPR_PACK (r) = pack;
11129 return r;
11131 if (TREE_VEC_LENGTH (pack) == 0)
11132 return expand_empty_fold (t, complain);
11133 else
11134 return expand_left_fold (t, pack, complain);
11137 /* Substitute into a binary left fold expression.
11139 Do ths by building a single (non-empty) vector of argumnts and
11140 building the expression from those elements. */
11142 static tree
11143 tsubst_binary_left_fold (tree t, tree args, tsubst_flags_t complain,
11144 tree in_decl)
11146 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
11147 if (pack == error_mark_node)
11148 return error_mark_node;
11149 tree init = tsubst_fold_expr_init (t, args, complain, in_decl);
11150 if (init == error_mark_node)
11151 return error_mark_node;
11153 if (PACK_EXPANSION_P (pack))
11155 tree r = copy_node (t);
11156 FOLD_EXPR_PACK (r) = pack;
11157 FOLD_EXPR_INIT (r) = init;
11158 return r;
11161 tree vec = make_tree_vec (TREE_VEC_LENGTH (pack) + 1);
11162 TREE_VEC_ELT (vec, 0) = init;
11163 for (int i = 0; i < TREE_VEC_LENGTH (pack); ++i)
11164 TREE_VEC_ELT (vec, i + 1) = TREE_VEC_ELT (pack, i);
11166 return expand_left_fold (t, vec, complain);
11169 /* Expand a PACK of arguments into a grouped as right fold.
11170 Given a pack containing elementns A0, A1, ..., and an
11171 operator @, this builds the expression:
11173 A0@ ... (An-2 @ (An-1 @ An))
11175 Note that PACK must not be empty.
11177 The operator is defined by the original fold expression T. */
11179 tree
11180 expand_right_fold (tree t, tree pack, tsubst_flags_t complain)
11182 // Build the expression.
11183 int n = TREE_VEC_LENGTH (pack);
11184 tree right = TREE_VEC_ELT (pack, n - 1);
11185 for (--n; n != 0; --n)
11187 tree left = TREE_VEC_ELT (pack, n - 1);
11188 right = fold_expression (t, left, right, complain);
11190 return right;
11193 /* Substitute into a unary right fold expression. */
11195 static tree
11196 tsubst_unary_right_fold (tree t, tree args, tsubst_flags_t complain,
11197 tree in_decl)
11199 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
11200 if (pack == error_mark_node)
11201 return error_mark_node;
11202 if (PACK_EXPANSION_P (pack))
11204 tree r = copy_node (t);
11205 FOLD_EXPR_PACK (r) = pack;
11206 return r;
11208 if (TREE_VEC_LENGTH (pack) == 0)
11209 return expand_empty_fold (t, complain);
11210 else
11211 return expand_right_fold (t, pack, complain);
11214 /* Substitute into a binary right fold expression.
11216 Do ths by building a single (non-empty) vector of arguments and
11217 building the expression from those elements. */
11219 static tree
11220 tsubst_binary_right_fold (tree t, tree args, tsubst_flags_t complain,
11221 tree in_decl)
11223 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
11224 if (pack == error_mark_node)
11225 return error_mark_node;
11226 tree init = tsubst_fold_expr_init (t, args, complain, in_decl);
11227 if (init == error_mark_node)
11228 return error_mark_node;
11230 if (PACK_EXPANSION_P (pack))
11232 tree r = copy_node (t);
11233 FOLD_EXPR_PACK (r) = pack;
11234 FOLD_EXPR_INIT (r) = init;
11235 return r;
11238 int n = TREE_VEC_LENGTH (pack);
11239 tree vec = make_tree_vec (n + 1);
11240 for (int i = 0; i < n; ++i)
11241 TREE_VEC_ELT (vec, i) = TREE_VEC_ELT (pack, i);
11242 TREE_VEC_ELT (vec, n) = init;
11244 return expand_right_fold (t, vec, complain);
11248 /* Substitute ARGS into T, which is an pack expansion
11249 (i.e. TYPE_PACK_EXPANSION or EXPR_PACK_EXPANSION). Returns a
11250 TREE_VEC with the substituted arguments, a PACK_EXPANSION_* node
11251 (if only a partial substitution could be performed) or
11252 ERROR_MARK_NODE if there was an error. */
11253 tree
11254 tsubst_pack_expansion (tree t, tree args, tsubst_flags_t complain,
11255 tree in_decl)
11257 tree pattern;
11258 tree pack, packs = NULL_TREE;
11259 bool unsubstituted_packs = false;
11260 int i, len = -1;
11261 tree result;
11262 hash_map<tree, tree> *saved_local_specializations = NULL;
11263 bool need_local_specializations = false;
11264 int levels;
11266 gcc_assert (PACK_EXPANSION_P (t));
11267 pattern = PACK_EXPANSION_PATTERN (t);
11269 /* Add in any args remembered from an earlier partial instantiation. */
11270 args = add_to_template_args (PACK_EXPANSION_EXTRA_ARGS (t), args);
11272 levels = TMPL_ARGS_DEPTH (args);
11274 /* Determine the argument packs that will instantiate the parameter
11275 packs used in the expansion expression. While we're at it,
11276 compute the number of arguments to be expanded and make sure it
11277 is consistent. */
11278 for (pack = PACK_EXPANSION_PARAMETER_PACKS (t); pack;
11279 pack = TREE_CHAIN (pack))
11281 tree parm_pack = TREE_VALUE (pack);
11282 tree arg_pack = NULL_TREE;
11283 tree orig_arg = NULL_TREE;
11284 int level = 0;
11286 if (TREE_CODE (parm_pack) == BASES)
11288 if (BASES_DIRECT (parm_pack))
11289 return calculate_direct_bases (tsubst_expr (BASES_TYPE (parm_pack),
11290 args, complain, in_decl, false));
11291 else
11292 return calculate_bases (tsubst_expr (BASES_TYPE (parm_pack),
11293 args, complain, in_decl, false));
11295 if (TREE_CODE (parm_pack) == PARM_DECL)
11297 /* We know we have correct local_specializations if this
11298 expansion is at function scope, or if we're dealing with a
11299 local parameter in a requires expression; for the latter,
11300 tsubst_requires_expr set it up appropriately. */
11301 if (PACK_EXPANSION_LOCAL_P (t) || CONSTRAINT_VAR_P (parm_pack))
11302 arg_pack = retrieve_local_specialization (parm_pack);
11303 else
11304 /* We can't rely on local_specializations for a parameter
11305 name used later in a function declaration (such as in a
11306 late-specified return type). Even if it exists, it might
11307 have the wrong value for a recursive call. */
11308 need_local_specializations = true;
11310 if (!arg_pack)
11312 /* This parameter pack was used in an unevaluated context. Just
11313 make a dummy decl, since it's only used for its type. */
11314 arg_pack = tsubst_decl (parm_pack, args, complain);
11315 if (arg_pack && DECL_PACK_P (arg_pack))
11316 /* Partial instantiation of the parm_pack, we can't build
11317 up an argument pack yet. */
11318 arg_pack = NULL_TREE;
11319 else
11320 arg_pack = make_fnparm_pack (arg_pack);
11323 else if (TREE_CODE (parm_pack) == FIELD_DECL)
11324 arg_pack = tsubst_copy (parm_pack, args, complain, in_decl);
11325 else
11327 int idx;
11328 template_parm_level_and_index (parm_pack, &level, &idx);
11330 if (level <= levels)
11331 arg_pack = TMPL_ARG (args, level, idx);
11334 orig_arg = arg_pack;
11335 if (arg_pack && TREE_CODE (arg_pack) == ARGUMENT_PACK_SELECT)
11336 arg_pack = ARGUMENT_PACK_SELECT_FROM_PACK (arg_pack);
11338 if (arg_pack && !ARGUMENT_PACK_P (arg_pack))
11339 /* This can only happen if we forget to expand an argument
11340 pack somewhere else. Just return an error, silently. */
11342 result = make_tree_vec (1);
11343 TREE_VEC_ELT (result, 0) = error_mark_node;
11344 return result;
11347 if (arg_pack)
11349 int my_len =
11350 TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg_pack));
11352 /* Don't bother trying to do a partial substitution with
11353 incomplete packs; we'll try again after deduction. */
11354 if (ARGUMENT_PACK_INCOMPLETE_P (arg_pack))
11355 return t;
11357 if (len < 0)
11358 len = my_len;
11359 else if (len != my_len)
11361 if (!(complain & tf_error))
11362 /* Fail quietly. */;
11363 else if (TREE_CODE (t) == TYPE_PACK_EXPANSION)
11364 error ("mismatched argument pack lengths while expanding "
11365 "%<%T%>",
11366 pattern);
11367 else
11368 error ("mismatched argument pack lengths while expanding "
11369 "%<%E%>",
11370 pattern);
11371 return error_mark_node;
11374 /* Keep track of the parameter packs and their corresponding
11375 argument packs. */
11376 packs = tree_cons (parm_pack, arg_pack, packs);
11377 TREE_TYPE (packs) = orig_arg;
11379 else
11381 /* We can't substitute for this parameter pack. We use a flag as
11382 well as the missing_level counter because function parameter
11383 packs don't have a level. */
11384 gcc_assert (processing_template_decl);
11385 unsubstituted_packs = true;
11389 /* If the expansion is just T..., return the matching argument pack, unless
11390 we need to call convert_from_reference on all the elements. This is an
11391 important optimization; see c++/68422. */
11392 if (!unsubstituted_packs
11393 && TREE_PURPOSE (packs) == pattern)
11395 tree args = ARGUMENT_PACK_ARGS (TREE_VALUE (packs));
11396 /* Types need no adjustment, nor does sizeof..., and if we still have
11397 some pack expansion args we won't do anything yet. */
11398 if (TREE_CODE (t) == TYPE_PACK_EXPANSION
11399 || PACK_EXPANSION_SIZEOF_P (t)
11400 || pack_expansion_args_count (args))
11401 return args;
11402 /* Also optimize expression pack expansions if we can tell that the
11403 elements won't have reference type. */
11404 tree type = TREE_TYPE (pattern);
11405 if (type && TREE_CODE (type) != REFERENCE_TYPE
11406 && !PACK_EXPANSION_P (type)
11407 && !WILDCARD_TYPE_P (type))
11408 return args;
11409 /* Otherwise use the normal path so we get convert_from_reference. */
11412 /* We cannot expand this expansion expression, because we don't have
11413 all of the argument packs we need. */
11414 if (use_pack_expansion_extra_args_p (packs, len, unsubstituted_packs))
11416 /* We got some full packs, but we can't substitute them in until we
11417 have values for all the packs. So remember these until then. */
11419 t = make_pack_expansion (pattern);
11420 PACK_EXPANSION_EXTRA_ARGS (t) = args;
11421 return t;
11423 else if (unsubstituted_packs)
11425 /* There were no real arguments, we're just replacing a parameter
11426 pack with another version of itself. Substitute into the
11427 pattern and return a PACK_EXPANSION_*. The caller will need to
11428 deal with that. */
11429 if (TREE_CODE (t) == EXPR_PACK_EXPANSION)
11430 t = tsubst_expr (pattern, args, complain, in_decl,
11431 /*integral_constant_expression_p=*/false);
11432 else
11433 t = tsubst (pattern, args, complain, in_decl);
11434 t = make_pack_expansion (t);
11435 return t;
11438 gcc_assert (len >= 0);
11440 if (need_local_specializations)
11442 /* We're in a late-specified return type, so create our own local
11443 specializations map; the current map is either NULL or (in the
11444 case of recursive unification) might have bindings that we don't
11445 want to use or alter. */
11446 saved_local_specializations = local_specializations;
11447 local_specializations = new hash_map<tree, tree>;
11450 /* For each argument in each argument pack, substitute into the
11451 pattern. */
11452 result = make_tree_vec (len);
11453 tree elem_args = copy_template_args (args);
11454 for (i = 0; i < len; ++i)
11456 t = gen_elem_of_pack_expansion_instantiation (pattern, packs,
11458 elem_args, complain,
11459 in_decl);
11460 TREE_VEC_ELT (result, i) = t;
11461 if (t == error_mark_node)
11463 result = error_mark_node;
11464 break;
11468 /* Update ARGS to restore the substitution from parameter packs to
11469 their argument packs. */
11470 for (pack = packs; pack; pack = TREE_CHAIN (pack))
11472 tree parm = TREE_PURPOSE (pack);
11474 if (TREE_CODE (parm) == PARM_DECL
11475 || TREE_CODE (parm) == FIELD_DECL)
11476 register_local_specialization (TREE_TYPE (pack), parm);
11477 else
11479 int idx, level;
11481 if (TREE_VALUE (pack) == NULL_TREE)
11482 continue;
11484 template_parm_level_and_index (parm, &level, &idx);
11486 /* Update the corresponding argument. */
11487 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
11488 TREE_VEC_ELT (TREE_VEC_ELT (args, level -1 ), idx) =
11489 TREE_TYPE (pack);
11490 else
11491 TREE_VEC_ELT (args, idx) = TREE_TYPE (pack);
11495 if (need_local_specializations)
11497 delete local_specializations;
11498 local_specializations = saved_local_specializations;
11501 /* If the dependent pack arguments were such that we end up with only a
11502 single pack expansion again, there's no need to keep it in a TREE_VEC. */
11503 if (len == 1 && TREE_CODE (result) == TREE_VEC
11504 && PACK_EXPANSION_P (TREE_VEC_ELT (result, 0)))
11505 return TREE_VEC_ELT (result, 0);
11507 return result;
11510 /* Given PARM_DECL PARM, find the corresponding PARM_DECL in the template
11511 TMPL. We do this using DECL_PARM_INDEX, which should work even with
11512 parameter packs; all parms generated from a function parameter pack will
11513 have the same DECL_PARM_INDEX. */
11515 tree
11516 get_pattern_parm (tree parm, tree tmpl)
11518 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
11519 tree patparm;
11521 if (DECL_ARTIFICIAL (parm))
11523 for (patparm = DECL_ARGUMENTS (pattern);
11524 patparm; patparm = DECL_CHAIN (patparm))
11525 if (DECL_ARTIFICIAL (patparm)
11526 && DECL_NAME (parm) == DECL_NAME (patparm))
11527 break;
11529 else
11531 patparm = FUNCTION_FIRST_USER_PARM (DECL_TEMPLATE_RESULT (tmpl));
11532 patparm = chain_index (DECL_PARM_INDEX (parm)-1, patparm);
11533 gcc_assert (DECL_PARM_INDEX (patparm)
11534 == DECL_PARM_INDEX (parm));
11537 return patparm;
11540 /* Make an argument pack out of the TREE_VEC VEC. */
11542 static tree
11543 make_argument_pack (tree vec)
11545 tree pack;
11546 tree elt = TREE_VEC_ELT (vec, 0);
11547 if (TYPE_P (elt))
11548 pack = cxx_make_type (TYPE_ARGUMENT_PACK);
11549 else
11551 pack = make_node (NONTYPE_ARGUMENT_PACK);
11552 TREE_TYPE (pack) = TREE_TYPE (elt);
11553 TREE_CONSTANT (pack) = 1;
11555 SET_ARGUMENT_PACK_ARGS (pack, vec);
11556 return pack;
11559 /* Return an exact copy of template args T that can be modified
11560 independently. */
11562 static tree
11563 copy_template_args (tree t)
11565 if (t == error_mark_node)
11566 return t;
11568 int len = TREE_VEC_LENGTH (t);
11569 tree new_vec = make_tree_vec (len);
11571 for (int i = 0; i < len; ++i)
11573 tree elt = TREE_VEC_ELT (t, i);
11574 if (elt && TREE_CODE (elt) == TREE_VEC)
11575 elt = copy_template_args (elt);
11576 TREE_VEC_ELT (new_vec, i) = elt;
11579 NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_vec)
11580 = NON_DEFAULT_TEMPLATE_ARGS_COUNT (t);
11582 return new_vec;
11585 /* Substitute ARGS into the vector or list of template arguments T. */
11587 static tree
11588 tsubst_template_args (tree t, tree args, tsubst_flags_t complain, tree in_decl)
11590 tree orig_t = t;
11591 int len, need_new = 0, i, expanded_len_adjust = 0, out;
11592 tree *elts;
11594 if (t == error_mark_node)
11595 return error_mark_node;
11597 len = TREE_VEC_LENGTH (t);
11598 elts = XALLOCAVEC (tree, len);
11600 for (i = 0; i < len; i++)
11602 tree orig_arg = TREE_VEC_ELT (t, i);
11603 tree new_arg;
11605 if (TREE_CODE (orig_arg) == TREE_VEC)
11606 new_arg = tsubst_template_args (orig_arg, args, complain, in_decl);
11607 else if (PACK_EXPANSION_P (orig_arg))
11609 /* Substitute into an expansion expression. */
11610 new_arg = tsubst_pack_expansion (orig_arg, args, complain, in_decl);
11612 if (TREE_CODE (new_arg) == TREE_VEC)
11613 /* Add to the expanded length adjustment the number of
11614 expanded arguments. We subtract one from this
11615 measurement, because the argument pack expression
11616 itself is already counted as 1 in
11617 LEN. EXPANDED_LEN_ADJUST can actually be negative, if
11618 the argument pack is empty. */
11619 expanded_len_adjust += TREE_VEC_LENGTH (new_arg) - 1;
11621 else if (ARGUMENT_PACK_P (orig_arg))
11623 /* Substitute into each of the arguments. */
11624 new_arg = TYPE_P (orig_arg)
11625 ? cxx_make_type (TREE_CODE (orig_arg))
11626 : make_node (TREE_CODE (orig_arg));
11628 SET_ARGUMENT_PACK_ARGS (
11629 new_arg,
11630 tsubst_template_args (ARGUMENT_PACK_ARGS (orig_arg),
11631 args, complain, in_decl));
11633 if (ARGUMENT_PACK_ARGS (new_arg) == error_mark_node)
11634 new_arg = error_mark_node;
11636 if (TREE_CODE (new_arg) == NONTYPE_ARGUMENT_PACK) {
11637 TREE_TYPE (new_arg) = tsubst (TREE_TYPE (orig_arg), args,
11638 complain, in_decl);
11639 TREE_CONSTANT (new_arg) = TREE_CONSTANT (orig_arg);
11641 if (TREE_TYPE (new_arg) == error_mark_node)
11642 new_arg = error_mark_node;
11645 else
11646 new_arg = tsubst_template_arg (orig_arg, args, complain, in_decl);
11648 if (new_arg == error_mark_node)
11649 return error_mark_node;
11651 elts[i] = new_arg;
11652 if (new_arg != orig_arg)
11653 need_new = 1;
11656 if (!need_new)
11657 return t;
11659 /* Make space for the expanded arguments coming from template
11660 argument packs. */
11661 t = make_tree_vec (len + expanded_len_adjust);
11662 /* ORIG_T can contain TREE_VECs. That happens if ORIG_T contains the
11663 arguments for a member template.
11664 In that case each TREE_VEC in ORIG_T represents a level of template
11665 arguments, and ORIG_T won't carry any non defaulted argument count.
11666 It will rather be the nested TREE_VECs that will carry one.
11667 In other words, ORIG_T carries a non defaulted argument count only
11668 if it doesn't contain any nested TREE_VEC. */
11669 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t))
11671 int count = GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t);
11672 count += expanded_len_adjust;
11673 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (t, count);
11675 for (i = 0, out = 0; i < len; i++)
11677 if ((PACK_EXPANSION_P (TREE_VEC_ELT (orig_t, i))
11678 || ARGUMENT_PACK_P (TREE_VEC_ELT (orig_t, i)))
11679 && TREE_CODE (elts[i]) == TREE_VEC)
11681 int idx;
11683 /* Now expand the template argument pack "in place". */
11684 for (idx = 0; idx < TREE_VEC_LENGTH (elts[i]); idx++, out++)
11685 TREE_VEC_ELT (t, out) = TREE_VEC_ELT (elts[i], idx);
11687 else
11689 TREE_VEC_ELT (t, out) = elts[i];
11690 out++;
11694 return t;
11697 /* Substitute ARGS into one level PARMS of template parameters. */
11699 static tree
11700 tsubst_template_parms_level (tree parms, tree args, tsubst_flags_t complain)
11702 if (parms == error_mark_node)
11703 return error_mark_node;
11705 tree new_vec = make_tree_vec (TREE_VEC_LENGTH (parms));
11707 for (int i = 0; i < TREE_VEC_LENGTH (new_vec); ++i)
11709 tree tuple = TREE_VEC_ELT (parms, i);
11711 if (tuple == error_mark_node)
11712 continue;
11714 TREE_VEC_ELT (new_vec, i) =
11715 tsubst_template_parm (tuple, args, complain);
11718 return new_vec;
11721 /* Return the result of substituting ARGS into the template parameters
11722 given by PARMS. If there are m levels of ARGS and m + n levels of
11723 PARMS, then the result will contain n levels of PARMS. For
11724 example, if PARMS is `template <class T> template <class U>
11725 template <T*, U, class V>' and ARGS is {{int}, {double}} then the
11726 result will be `template <int*, double, class V>'. */
11728 static tree
11729 tsubst_template_parms (tree parms, tree args, tsubst_flags_t complain)
11731 tree r = NULL_TREE;
11732 tree* new_parms;
11734 /* When substituting into a template, we must set
11735 PROCESSING_TEMPLATE_DECL as the template parameters may be
11736 dependent if they are based on one-another, and the dependency
11737 predicates are short-circuit outside of templates. */
11738 ++processing_template_decl;
11740 for (new_parms = &r;
11741 parms && TMPL_PARMS_DEPTH (parms) > TMPL_ARGS_DEPTH (args);
11742 new_parms = &(TREE_CHAIN (*new_parms)),
11743 parms = TREE_CHAIN (parms))
11745 tree new_vec = tsubst_template_parms_level (TREE_VALUE (parms),
11746 args, complain);
11747 *new_parms =
11748 tree_cons (size_int (TMPL_PARMS_DEPTH (parms)
11749 - TMPL_ARGS_DEPTH (args)),
11750 new_vec, NULL_TREE);
11753 --processing_template_decl;
11755 return r;
11758 /* Return the result of substituting ARGS into one template parameter
11759 given by T. T Must be a TREE_LIST which TREE_VALUE is the template
11760 parameter and which TREE_PURPOSE is the default argument of the
11761 template parameter. */
11763 static tree
11764 tsubst_template_parm (tree t, tree args, tsubst_flags_t complain)
11766 tree default_value, parm_decl;
11768 if (args == NULL_TREE
11769 || t == NULL_TREE
11770 || t == error_mark_node)
11771 return t;
11773 gcc_assert (TREE_CODE (t) == TREE_LIST);
11775 default_value = TREE_PURPOSE (t);
11776 parm_decl = TREE_VALUE (t);
11778 parm_decl = tsubst (parm_decl, args, complain, NULL_TREE);
11779 if (TREE_CODE (parm_decl) == PARM_DECL
11780 && invalid_nontype_parm_type_p (TREE_TYPE (parm_decl), complain))
11781 parm_decl = error_mark_node;
11782 default_value = tsubst_template_arg (default_value, args,
11783 complain, NULL_TREE);
11785 return build_tree_list (default_value, parm_decl);
11788 /* Substitute the ARGS into the indicated aggregate (or enumeration)
11789 type T. If T is not an aggregate or enumeration type, it is
11790 handled as if by tsubst. IN_DECL is as for tsubst. If
11791 ENTERING_SCOPE is nonzero, T is the context for a template which
11792 we are presently tsubst'ing. Return the substituted value. */
11794 static tree
11795 tsubst_aggr_type (tree t,
11796 tree args,
11797 tsubst_flags_t complain,
11798 tree in_decl,
11799 int entering_scope)
11801 if (t == NULL_TREE)
11802 return NULL_TREE;
11804 switch (TREE_CODE (t))
11806 case RECORD_TYPE:
11807 if (TYPE_PTRMEMFUNC_P (t))
11808 return tsubst (TYPE_PTRMEMFUNC_FN_TYPE (t), args, complain, in_decl);
11810 /* Fall through. */
11811 case ENUMERAL_TYPE:
11812 case UNION_TYPE:
11813 if (TYPE_TEMPLATE_INFO (t) && uses_template_parms (t))
11815 tree argvec;
11816 tree context;
11817 tree r;
11818 int saved_unevaluated_operand;
11819 int saved_inhibit_evaluation_warnings;
11821 /* In "sizeof(X<I>)" we need to evaluate "I". */
11822 saved_unevaluated_operand = cp_unevaluated_operand;
11823 cp_unevaluated_operand = 0;
11824 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
11825 c_inhibit_evaluation_warnings = 0;
11827 /* First, determine the context for the type we are looking
11828 up. */
11829 context = TYPE_CONTEXT (t);
11830 if (context && TYPE_P (context))
11832 context = tsubst_aggr_type (context, args, complain,
11833 in_decl, /*entering_scope=*/1);
11834 /* If context is a nested class inside a class template,
11835 it may still need to be instantiated (c++/33959). */
11836 context = complete_type (context);
11839 /* Then, figure out what arguments are appropriate for the
11840 type we are trying to find. For example, given:
11842 template <class T> struct S;
11843 template <class T, class U> void f(T, U) { S<U> su; }
11845 and supposing that we are instantiating f<int, double>,
11846 then our ARGS will be {int, double}, but, when looking up
11847 S we only want {double}. */
11848 argvec = tsubst_template_args (TYPE_TI_ARGS (t), args,
11849 complain, in_decl);
11850 if (argvec == error_mark_node)
11851 r = error_mark_node;
11852 else
11854 r = lookup_template_class (t, argvec, in_decl, context,
11855 entering_scope, complain);
11856 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
11859 cp_unevaluated_operand = saved_unevaluated_operand;
11860 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
11862 return r;
11864 else
11865 /* This is not a template type, so there's nothing to do. */
11866 return t;
11868 default:
11869 return tsubst (t, args, complain, in_decl);
11873 /* Substitute into the default argument ARG (a default argument for
11874 FN), which has the indicated TYPE. */
11876 tree
11877 tsubst_default_argument (tree fn, tree type, tree arg, tsubst_flags_t complain)
11879 tree saved_class_ptr = NULL_TREE;
11880 tree saved_class_ref = NULL_TREE;
11881 int errs = errorcount + sorrycount;
11883 /* This can happen in invalid code. */
11884 if (TREE_CODE (arg) == DEFAULT_ARG)
11885 return arg;
11887 /* This default argument came from a template. Instantiate the
11888 default argument here, not in tsubst. In the case of
11889 something like:
11891 template <class T>
11892 struct S {
11893 static T t();
11894 void f(T = t());
11897 we must be careful to do name lookup in the scope of S<T>,
11898 rather than in the current class. */
11899 push_access_scope (fn);
11900 /* The "this" pointer is not valid in a default argument. */
11901 if (cfun)
11903 saved_class_ptr = current_class_ptr;
11904 cp_function_chain->x_current_class_ptr = NULL_TREE;
11905 saved_class_ref = current_class_ref;
11906 cp_function_chain->x_current_class_ref = NULL_TREE;
11909 push_deferring_access_checks(dk_no_deferred);
11910 /* The default argument expression may cause implicitly defined
11911 member functions to be synthesized, which will result in garbage
11912 collection. We must treat this situation as if we were within
11913 the body of function so as to avoid collecting live data on the
11914 stack. */
11915 ++function_depth;
11916 arg = tsubst_expr (arg, DECL_TI_ARGS (fn),
11917 complain, NULL_TREE,
11918 /*integral_constant_expression_p=*/false);
11919 --function_depth;
11920 pop_deferring_access_checks();
11922 /* Restore the "this" pointer. */
11923 if (cfun)
11925 cp_function_chain->x_current_class_ptr = saved_class_ptr;
11926 cp_function_chain->x_current_class_ref = saved_class_ref;
11929 if (errorcount+sorrycount > errs
11930 && (complain & tf_warning_or_error))
11931 inform (input_location,
11932 " when instantiating default argument for call to %D", fn);
11934 /* Make sure the default argument is reasonable. */
11935 arg = check_default_argument (type, arg, complain);
11937 pop_access_scope (fn);
11939 return arg;
11942 /* Substitute into all the default arguments for FN. */
11944 static void
11945 tsubst_default_arguments (tree fn, tsubst_flags_t complain)
11947 tree arg;
11948 tree tmpl_args;
11950 tmpl_args = DECL_TI_ARGS (fn);
11952 /* If this function is not yet instantiated, we certainly don't need
11953 its default arguments. */
11954 if (uses_template_parms (tmpl_args))
11955 return;
11956 /* Don't do this again for clones. */
11957 if (DECL_CLONED_FUNCTION_P (fn))
11958 return;
11960 for (arg = TYPE_ARG_TYPES (TREE_TYPE (fn));
11961 arg;
11962 arg = TREE_CHAIN (arg))
11963 if (TREE_PURPOSE (arg))
11964 TREE_PURPOSE (arg) = tsubst_default_argument (fn,
11965 TREE_VALUE (arg),
11966 TREE_PURPOSE (arg),
11967 complain);
11970 /* Substitute the ARGS into the T, which is a _DECL. Return the
11971 result of the substitution. Issue error and warning messages under
11972 control of COMPLAIN. */
11974 static tree
11975 tsubst_decl (tree t, tree args, tsubst_flags_t complain)
11977 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
11978 location_t saved_loc;
11979 tree r = NULL_TREE;
11980 tree in_decl = t;
11981 hashval_t hash = 0;
11983 /* Set the filename and linenumber to improve error-reporting. */
11984 saved_loc = input_location;
11985 input_location = DECL_SOURCE_LOCATION (t);
11987 switch (TREE_CODE (t))
11989 case TEMPLATE_DECL:
11991 /* We can get here when processing a member function template,
11992 member class template, or template template parameter. */
11993 tree decl = DECL_TEMPLATE_RESULT (t);
11994 tree spec;
11995 tree tmpl_args;
11996 tree full_args;
11998 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
12000 /* Template template parameter is treated here. */
12001 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12002 if (new_type == error_mark_node)
12003 r = error_mark_node;
12004 /* If we get a real template back, return it. This can happen in
12005 the context of most_specialized_partial_spec. */
12006 else if (TREE_CODE (new_type) == TEMPLATE_DECL)
12007 r = new_type;
12008 else
12009 /* The new TEMPLATE_DECL was built in
12010 reduce_template_parm_level. */
12011 r = TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (new_type);
12012 break;
12015 /* We might already have an instance of this template.
12016 The ARGS are for the surrounding class type, so the
12017 full args contain the tsubst'd args for the context,
12018 plus the innermost args from the template decl. */
12019 tmpl_args = DECL_CLASS_TEMPLATE_P (t)
12020 ? CLASSTYPE_TI_ARGS (TREE_TYPE (t))
12021 : DECL_TI_ARGS (DECL_TEMPLATE_RESULT (t));
12022 /* Because this is a template, the arguments will still be
12023 dependent, even after substitution. If
12024 PROCESSING_TEMPLATE_DECL is not set, the dependency
12025 predicates will short-circuit. */
12026 ++processing_template_decl;
12027 full_args = tsubst_template_args (tmpl_args, args,
12028 complain, in_decl);
12029 --processing_template_decl;
12030 if (full_args == error_mark_node)
12031 RETURN (error_mark_node);
12033 /* If this is a default template template argument,
12034 tsubst might not have changed anything. */
12035 if (full_args == tmpl_args)
12036 RETURN (t);
12038 hash = hash_tmpl_and_args (t, full_args);
12039 spec = retrieve_specialization (t, full_args, hash);
12040 if (spec != NULL_TREE)
12042 r = spec;
12043 break;
12046 /* Make a new template decl. It will be similar to the
12047 original, but will record the current template arguments.
12048 We also create a new function declaration, which is just
12049 like the old one, but points to this new template, rather
12050 than the old one. */
12051 r = copy_decl (t);
12052 gcc_assert (DECL_LANG_SPECIFIC (r) != 0);
12053 DECL_CHAIN (r) = NULL_TREE;
12055 // Build new template info linking to the original template decl.
12056 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
12058 if (TREE_CODE (decl) == TYPE_DECL
12059 && !TYPE_DECL_ALIAS_P (decl))
12061 tree new_type;
12062 ++processing_template_decl;
12063 new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12064 --processing_template_decl;
12065 if (new_type == error_mark_node)
12066 RETURN (error_mark_node);
12068 TREE_TYPE (r) = new_type;
12069 /* For a partial specialization, we need to keep pointing to
12070 the primary template. */
12071 if (!DECL_TEMPLATE_SPECIALIZATION (t))
12072 CLASSTYPE_TI_TEMPLATE (new_type) = r;
12073 DECL_TEMPLATE_RESULT (r) = TYPE_MAIN_DECL (new_type);
12074 DECL_TI_ARGS (r) = CLASSTYPE_TI_ARGS (new_type);
12075 DECL_CONTEXT (r) = TYPE_CONTEXT (new_type);
12077 else
12079 tree new_decl;
12080 ++processing_template_decl;
12081 new_decl = tsubst (decl, args, complain, in_decl);
12082 --processing_template_decl;
12083 if (new_decl == error_mark_node)
12084 RETURN (error_mark_node);
12086 DECL_TEMPLATE_RESULT (r) = new_decl;
12087 DECL_TI_TEMPLATE (new_decl) = r;
12088 TREE_TYPE (r) = TREE_TYPE (new_decl);
12089 DECL_TI_ARGS (r) = DECL_TI_ARGS (new_decl);
12090 DECL_CONTEXT (r) = DECL_CONTEXT (new_decl);
12093 SET_DECL_IMPLICIT_INSTANTIATION (r);
12094 DECL_TEMPLATE_INSTANTIATIONS (r) = NULL_TREE;
12095 DECL_TEMPLATE_SPECIALIZATIONS (r) = NULL_TREE;
12097 /* The template parameters for this new template are all the
12098 template parameters for the old template, except the
12099 outermost level of parameters. */
12100 DECL_TEMPLATE_PARMS (r)
12101 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
12102 complain);
12104 if (PRIMARY_TEMPLATE_P (t))
12105 DECL_PRIMARY_TEMPLATE (r) = r;
12107 if (TREE_CODE (decl) != TYPE_DECL && !VAR_P (decl))
12108 /* Record this non-type partial instantiation. */
12109 register_specialization (r, t,
12110 DECL_TI_ARGS (DECL_TEMPLATE_RESULT (r)),
12111 false, hash);
12113 break;
12115 case FUNCTION_DECL:
12117 tree ctx;
12118 tree argvec = NULL_TREE;
12119 tree *friends;
12120 tree gen_tmpl;
12121 tree type;
12122 int member;
12123 int args_depth;
12124 int parms_depth;
12126 /* Nobody should be tsubst'ing into non-template functions. */
12127 gcc_assert (DECL_TEMPLATE_INFO (t) != NULL_TREE);
12129 if (TREE_CODE (DECL_TI_TEMPLATE (t)) == TEMPLATE_DECL)
12131 tree spec;
12133 /* If T is not dependent, just return it. */
12134 if (!uses_template_parms (DECL_TI_ARGS (t)))
12135 RETURN (t);
12137 /* Calculate the most general template of which R is a
12138 specialization, and the complete set of arguments used to
12139 specialize R. */
12140 gen_tmpl = most_general_template (DECL_TI_TEMPLATE (t));
12141 argvec = tsubst_template_args (DECL_TI_ARGS
12142 (DECL_TEMPLATE_RESULT
12143 (DECL_TI_TEMPLATE (t))),
12144 args, complain, in_decl);
12145 if (argvec == error_mark_node)
12146 RETURN (error_mark_node);
12148 /* Check to see if we already have this specialization. */
12149 hash = hash_tmpl_and_args (gen_tmpl, argvec);
12150 spec = retrieve_specialization (gen_tmpl, argvec, hash);
12152 if (spec)
12154 r = spec;
12155 break;
12158 /* We can see more levels of arguments than parameters if
12159 there was a specialization of a member template, like
12160 this:
12162 template <class T> struct S { template <class U> void f(); }
12163 template <> template <class U> void S<int>::f(U);
12165 Here, we'll be substituting into the specialization,
12166 because that's where we can find the code we actually
12167 want to generate, but we'll have enough arguments for
12168 the most general template.
12170 We also deal with the peculiar case:
12172 template <class T> struct S {
12173 template <class U> friend void f();
12175 template <class U> void f() {}
12176 template S<int>;
12177 template void f<double>();
12179 Here, the ARGS for the instantiation of will be {int,
12180 double}. But, we only need as many ARGS as there are
12181 levels of template parameters in CODE_PATTERN. We are
12182 careful not to get fooled into reducing the ARGS in
12183 situations like:
12185 template <class T> struct S { template <class U> void f(U); }
12186 template <class T> template <> void S<T>::f(int) {}
12188 which we can spot because the pattern will be a
12189 specialization in this case. */
12190 args_depth = TMPL_ARGS_DEPTH (args);
12191 parms_depth =
12192 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (t)));
12193 if (args_depth > parms_depth
12194 && !DECL_TEMPLATE_SPECIALIZATION (t))
12195 args = get_innermost_template_args (args, parms_depth);
12197 else
12199 /* This special case arises when we have something like this:
12201 template <class T> struct S {
12202 friend void f<int>(int, double);
12205 Here, the DECL_TI_TEMPLATE for the friend declaration
12206 will be an IDENTIFIER_NODE. We are being called from
12207 tsubst_friend_function, and we want only to create a
12208 new decl (R) with appropriate types so that we can call
12209 determine_specialization. */
12210 gen_tmpl = NULL_TREE;
12213 if (DECL_CLASS_SCOPE_P (t))
12215 if (DECL_NAME (t) == constructor_name (DECL_CONTEXT (t)))
12216 member = 2;
12217 else
12218 member = 1;
12219 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args,
12220 complain, t, /*entering_scope=*/1);
12222 else
12224 member = 0;
12225 ctx = DECL_CONTEXT (t);
12227 type = tsubst (TREE_TYPE (t), args, complain|tf_fndecl_type, in_decl);
12228 if (type == error_mark_node)
12229 RETURN (error_mark_node);
12231 /* If we hit excessive deduction depth, the type is bogus even if
12232 it isn't error_mark_node, so don't build a decl. */
12233 if (excessive_deduction_depth)
12234 RETURN (error_mark_node);
12236 /* We do NOT check for matching decls pushed separately at this
12237 point, as they may not represent instantiations of this
12238 template, and in any case are considered separate under the
12239 discrete model. */
12240 r = copy_decl (t);
12241 DECL_USE_TEMPLATE (r) = 0;
12242 TREE_TYPE (r) = type;
12243 /* Clear out the mangled name and RTL for the instantiation. */
12244 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
12245 SET_DECL_RTL (r, NULL);
12246 /* Leave DECL_INITIAL set on deleted instantiations. */
12247 if (!DECL_DELETED_FN (r))
12248 DECL_INITIAL (r) = NULL_TREE;
12249 DECL_CONTEXT (r) = ctx;
12251 /* OpenMP UDRs have the only argument a reference to the declared
12252 type. We want to diagnose if the declared type is a reference,
12253 which is invalid, but as references to references are usually
12254 quietly merged, diagnose it here. */
12255 if (DECL_OMP_DECLARE_REDUCTION_P (t))
12257 tree argtype
12258 = TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (t))));
12259 argtype = tsubst (argtype, args, complain, in_decl);
12260 if (TREE_CODE (argtype) == REFERENCE_TYPE)
12261 error_at (DECL_SOURCE_LOCATION (t),
12262 "reference type %qT in "
12263 "%<#pragma omp declare reduction%>", argtype);
12264 if (strchr (IDENTIFIER_POINTER (DECL_NAME (t)), '~') == NULL)
12265 DECL_NAME (r) = omp_reduction_id (ERROR_MARK, DECL_NAME (t),
12266 argtype);
12269 if (member && DECL_CONV_FN_P (r))
12270 /* Type-conversion operator. Reconstruct the name, in
12271 case it's the name of one of the template's parameters. */
12272 DECL_NAME (r) = mangle_conv_op_name_for_type (TREE_TYPE (type));
12274 DECL_ARGUMENTS (r) = tsubst (DECL_ARGUMENTS (t), args,
12275 complain, t);
12276 DECL_RESULT (r) = NULL_TREE;
12278 TREE_STATIC (r) = 0;
12279 TREE_PUBLIC (r) = TREE_PUBLIC (t);
12280 DECL_EXTERNAL (r) = 1;
12281 /* If this is an instantiation of a function with internal
12282 linkage, we already know what object file linkage will be
12283 assigned to the instantiation. */
12284 DECL_INTERFACE_KNOWN (r) = !TREE_PUBLIC (r);
12285 DECL_DEFER_OUTPUT (r) = 0;
12286 DECL_CHAIN (r) = NULL_TREE;
12287 DECL_PENDING_INLINE_INFO (r) = 0;
12288 DECL_PENDING_INLINE_P (r) = 0;
12289 DECL_SAVED_TREE (r) = NULL_TREE;
12290 DECL_STRUCT_FUNCTION (r) = NULL;
12291 TREE_USED (r) = 0;
12292 /* We'll re-clone as appropriate in instantiate_template. */
12293 DECL_CLONED_FUNCTION (r) = NULL_TREE;
12295 /* If we aren't complaining now, return on error before we register
12296 the specialization so that we'll complain eventually. */
12297 if ((complain & tf_error) == 0
12298 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
12299 && !grok_op_properties (r, /*complain=*/false))
12300 RETURN (error_mark_node);
12302 /* When instantiating a constrained member, substitute
12303 into the constraints to create a new constraint. */
12304 if (tree ci = get_constraints (t))
12305 if (member)
12307 ci = tsubst_constraint_info (ci, argvec, complain, NULL_TREE);
12308 set_constraints (r, ci);
12311 /* Set up the DECL_TEMPLATE_INFO for R. There's no need to do
12312 this in the special friend case mentioned above where
12313 GEN_TMPL is NULL. */
12314 if (gen_tmpl)
12316 DECL_TEMPLATE_INFO (r)
12317 = build_template_info (gen_tmpl, argvec);
12318 SET_DECL_IMPLICIT_INSTANTIATION (r);
12320 tree new_r
12321 = register_specialization (r, gen_tmpl, argvec, false, hash);
12322 if (new_r != r)
12323 /* We instantiated this while substituting into
12324 the type earlier (template/friend54.C). */
12325 RETURN (new_r);
12327 /* We're not supposed to instantiate default arguments
12328 until they are called, for a template. But, for a
12329 declaration like:
12331 template <class T> void f ()
12332 { extern void g(int i = T()); }
12334 we should do the substitution when the template is
12335 instantiated. We handle the member function case in
12336 instantiate_class_template since the default arguments
12337 might refer to other members of the class. */
12338 if (!member
12339 && !PRIMARY_TEMPLATE_P (gen_tmpl)
12340 && !uses_template_parms (argvec))
12341 tsubst_default_arguments (r, complain);
12343 else
12344 DECL_TEMPLATE_INFO (r) = NULL_TREE;
12346 /* Copy the list of befriending classes. */
12347 for (friends = &DECL_BEFRIENDING_CLASSES (r);
12348 *friends;
12349 friends = &TREE_CHAIN (*friends))
12351 *friends = copy_node (*friends);
12352 TREE_VALUE (*friends) = tsubst (TREE_VALUE (*friends),
12353 args, complain,
12354 in_decl);
12357 if (DECL_CONSTRUCTOR_P (r) || DECL_DESTRUCTOR_P (r))
12359 maybe_retrofit_in_chrg (r);
12360 if (DECL_CONSTRUCTOR_P (r))
12361 grok_ctor_properties (ctx, r);
12362 /* If this is an instantiation of a member template, clone it.
12363 If it isn't, that'll be handled by
12364 clone_constructors_and_destructors. */
12365 if (PRIMARY_TEMPLATE_P (gen_tmpl))
12366 clone_function_decl (r, /*update_method_vec_p=*/0);
12368 else if ((complain & tf_error) != 0
12369 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
12370 && !grok_op_properties (r, /*complain=*/true))
12371 RETURN (error_mark_node);
12373 if (DECL_FRIEND_P (t) && DECL_FRIEND_CONTEXT (t))
12374 SET_DECL_FRIEND_CONTEXT (r,
12375 tsubst (DECL_FRIEND_CONTEXT (t),
12376 args, complain, in_decl));
12378 /* Possibly limit visibility based on template args. */
12379 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
12380 if (DECL_VISIBILITY_SPECIFIED (t))
12382 DECL_VISIBILITY_SPECIFIED (r) = 0;
12383 DECL_ATTRIBUTES (r)
12384 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
12386 determine_visibility (r);
12387 if (DECL_DEFAULTED_OUTSIDE_CLASS_P (r)
12388 && !processing_template_decl)
12389 defaulted_late_check (r);
12391 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
12392 args, complain, in_decl);
12394 break;
12396 case PARM_DECL:
12398 tree type = NULL_TREE;
12399 int i, len = 1;
12400 tree expanded_types = NULL_TREE;
12401 tree prev_r = NULL_TREE;
12402 tree first_r = NULL_TREE;
12404 if (DECL_PACK_P (t))
12406 /* If there is a local specialization that isn't a
12407 parameter pack, it means that we're doing a "simple"
12408 substitution from inside tsubst_pack_expansion. Just
12409 return the local specialization (which will be a single
12410 parm). */
12411 tree spec = retrieve_local_specialization (t);
12412 if (spec
12413 && TREE_CODE (spec) == PARM_DECL
12414 && TREE_CODE (TREE_TYPE (spec)) != TYPE_PACK_EXPANSION)
12415 RETURN (spec);
12417 /* Expand the TYPE_PACK_EXPANSION that provides the types for
12418 the parameters in this function parameter pack. */
12419 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
12420 complain, in_decl);
12421 if (TREE_CODE (expanded_types) == TREE_VEC)
12423 len = TREE_VEC_LENGTH (expanded_types);
12425 /* Zero-length parameter packs are boring. Just substitute
12426 into the chain. */
12427 if (len == 0)
12428 RETURN (tsubst (TREE_CHAIN (t), args, complain,
12429 TREE_CHAIN (t)));
12431 else
12433 /* All we did was update the type. Make a note of that. */
12434 type = expanded_types;
12435 expanded_types = NULL_TREE;
12439 /* Loop through all of the parameters we'll build. When T is
12440 a function parameter pack, LEN is the number of expanded
12441 types in EXPANDED_TYPES; otherwise, LEN is 1. */
12442 r = NULL_TREE;
12443 for (i = 0; i < len; ++i)
12445 prev_r = r;
12446 r = copy_node (t);
12447 if (DECL_TEMPLATE_PARM_P (t))
12448 SET_DECL_TEMPLATE_PARM_P (r);
12450 if (expanded_types)
12451 /* We're on the Ith parameter of the function parameter
12452 pack. */
12454 /* Get the Ith type. */
12455 type = TREE_VEC_ELT (expanded_types, i);
12457 /* Rename the parameter to include the index. */
12458 DECL_NAME (r)
12459 = make_ith_pack_parameter_name (DECL_NAME (r), i);
12461 else if (!type)
12462 /* We're dealing with a normal parameter. */
12463 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12465 type = type_decays_to (type);
12466 TREE_TYPE (r) = type;
12467 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
12469 if (DECL_INITIAL (r))
12471 if (TREE_CODE (DECL_INITIAL (r)) != TEMPLATE_PARM_INDEX)
12472 DECL_INITIAL (r) = TREE_TYPE (r);
12473 else
12474 DECL_INITIAL (r) = tsubst (DECL_INITIAL (r), args,
12475 complain, in_decl);
12478 DECL_CONTEXT (r) = NULL_TREE;
12480 if (!DECL_TEMPLATE_PARM_P (r))
12481 DECL_ARG_TYPE (r) = type_passed_as (type);
12483 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
12484 args, complain, in_decl);
12486 /* Keep track of the first new parameter we
12487 generate. That's what will be returned to the
12488 caller. */
12489 if (!first_r)
12490 first_r = r;
12492 /* Build a proper chain of parameters when substituting
12493 into a function parameter pack. */
12494 if (prev_r)
12495 DECL_CHAIN (prev_r) = r;
12498 /* If cp_unevaluated_operand is set, we're just looking for a
12499 single dummy parameter, so don't keep going. */
12500 if (DECL_CHAIN (t) && !cp_unevaluated_operand)
12501 DECL_CHAIN (r) = tsubst (DECL_CHAIN (t), args,
12502 complain, DECL_CHAIN (t));
12504 /* FIRST_R contains the start of the chain we've built. */
12505 r = first_r;
12507 break;
12509 case FIELD_DECL:
12511 tree type = NULL_TREE;
12512 tree vec = NULL_TREE;
12513 tree expanded_types = NULL_TREE;
12514 int len = 1;
12516 if (PACK_EXPANSION_P (TREE_TYPE (t)))
12518 /* This field is a lambda capture pack. Return a TREE_VEC of
12519 the expanded fields to instantiate_class_template_1 and
12520 store them in the specializations hash table as a
12521 NONTYPE_ARGUMENT_PACK so that tsubst_copy can find them. */
12522 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
12523 complain, in_decl);
12524 if (TREE_CODE (expanded_types) == TREE_VEC)
12526 len = TREE_VEC_LENGTH (expanded_types);
12527 vec = make_tree_vec (len);
12529 else
12531 /* All we did was update the type. Make a note of that. */
12532 type = expanded_types;
12533 expanded_types = NULL_TREE;
12537 for (int i = 0; i < len; ++i)
12539 r = copy_decl (t);
12540 if (expanded_types)
12542 type = TREE_VEC_ELT (expanded_types, i);
12543 DECL_NAME (r)
12544 = make_ith_pack_parameter_name (DECL_NAME (r), i);
12546 else if (!type)
12547 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12549 if (type == error_mark_node)
12550 RETURN (error_mark_node);
12551 TREE_TYPE (r) = type;
12552 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
12554 if (DECL_C_BIT_FIELD (r))
12555 /* For bit-fields, DECL_INITIAL gives the number of bits. For
12556 non-bit-fields DECL_INITIAL is a non-static data member
12557 initializer, which gets deferred instantiation. */
12558 DECL_INITIAL (r)
12559 = tsubst_expr (DECL_INITIAL (t), args,
12560 complain, in_decl,
12561 /*integral_constant_expression_p=*/true);
12562 else if (DECL_INITIAL (t))
12564 /* Set up DECL_TEMPLATE_INFO so that we can get at the
12565 NSDMI in perform_member_init. Still set DECL_INITIAL
12566 so that we know there is one. */
12567 DECL_INITIAL (r) = void_node;
12568 gcc_assert (DECL_LANG_SPECIFIC (r) == NULL);
12569 retrofit_lang_decl (r);
12570 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
12572 /* We don't have to set DECL_CONTEXT here; it is set by
12573 finish_member_declaration. */
12574 DECL_CHAIN (r) = NULL_TREE;
12576 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
12577 args, complain, in_decl);
12579 if (vec)
12580 TREE_VEC_ELT (vec, i) = r;
12583 if (vec)
12585 r = vec;
12586 tree pack = make_node (NONTYPE_ARGUMENT_PACK);
12587 tree tpack = cxx_make_type (TYPE_ARGUMENT_PACK);
12588 SET_ARGUMENT_PACK_ARGS (pack, vec);
12589 SET_ARGUMENT_PACK_ARGS (tpack, expanded_types);
12590 TREE_TYPE (pack) = tpack;
12591 register_specialization (pack, t, args, false, 0);
12594 break;
12596 case USING_DECL:
12597 /* We reach here only for member using decls. We also need to check
12598 uses_template_parms because DECL_DEPENDENT_P is not set for a
12599 using-declaration that designates a member of the current
12600 instantiation (c++/53549). */
12601 if (DECL_DEPENDENT_P (t)
12602 || uses_template_parms (USING_DECL_SCOPE (t)))
12604 tree scope = USING_DECL_SCOPE (t);
12605 tree name = tsubst_copy (DECL_NAME (t), args, complain, in_decl);
12606 if (PACK_EXPANSION_P (scope))
12608 tree vec = tsubst_pack_expansion (scope, args, complain, in_decl);
12609 int len = TREE_VEC_LENGTH (vec);
12610 r = make_tree_vec (len);
12611 for (int i = 0; i < len; ++i)
12613 tree escope = TREE_VEC_ELT (vec, i);
12614 tree elt = do_class_using_decl (escope, name);
12615 if (!elt)
12617 r = error_mark_node;
12618 break;
12620 else
12622 TREE_PROTECTED (elt) = TREE_PROTECTED (t);
12623 TREE_PRIVATE (elt) = TREE_PRIVATE (t);
12625 TREE_VEC_ELT (r, i) = elt;
12628 else
12630 tree inst_scope = tsubst_copy (USING_DECL_SCOPE (t), args,
12631 complain, in_decl);
12632 r = do_class_using_decl (inst_scope, name);
12633 if (!r)
12634 r = error_mark_node;
12635 else
12637 TREE_PROTECTED (r) = TREE_PROTECTED (t);
12638 TREE_PRIVATE (r) = TREE_PRIVATE (t);
12642 else
12644 r = copy_node (t);
12645 DECL_CHAIN (r) = NULL_TREE;
12647 break;
12649 case TYPE_DECL:
12650 case VAR_DECL:
12652 tree argvec = NULL_TREE;
12653 tree gen_tmpl = NULL_TREE;
12654 tree spec;
12655 tree tmpl = NULL_TREE;
12656 tree ctx;
12657 tree type = NULL_TREE;
12658 bool local_p;
12660 if (TREE_TYPE (t) == error_mark_node)
12661 RETURN (error_mark_node);
12663 if (TREE_CODE (t) == TYPE_DECL
12664 && t == TYPE_MAIN_DECL (TREE_TYPE (t)))
12666 /* If this is the canonical decl, we don't have to
12667 mess with instantiations, and often we can't (for
12668 typename, template type parms and such). Note that
12669 TYPE_NAME is not correct for the above test if
12670 we've copied the type for a typedef. */
12671 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12672 if (type == error_mark_node)
12673 RETURN (error_mark_node);
12674 r = TYPE_NAME (type);
12675 break;
12678 /* Check to see if we already have the specialization we
12679 need. */
12680 spec = NULL_TREE;
12681 if (DECL_CLASS_SCOPE_P (t) || DECL_NAMESPACE_SCOPE_P (t))
12683 /* T is a static data member or namespace-scope entity.
12684 We have to substitute into namespace-scope variables
12685 (not just variable templates) because of cases like:
12687 template <class T> void f() { extern T t; }
12689 where the entity referenced is not known until
12690 instantiation time. */
12691 local_p = false;
12692 ctx = DECL_CONTEXT (t);
12693 if (DECL_CLASS_SCOPE_P (t))
12695 ctx = tsubst_aggr_type (ctx, args,
12696 complain,
12697 in_decl, /*entering_scope=*/1);
12698 /* If CTX is unchanged, then T is in fact the
12699 specialization we want. That situation occurs when
12700 referencing a static data member within in its own
12701 class. We can use pointer equality, rather than
12702 same_type_p, because DECL_CONTEXT is always
12703 canonical... */
12704 if (ctx == DECL_CONTEXT (t)
12705 /* ... unless T is a member template; in which
12706 case our caller can be willing to create a
12707 specialization of that template represented
12708 by T. */
12709 && !(DECL_TI_TEMPLATE (t)
12710 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (t))))
12711 spec = t;
12714 if (!spec)
12716 tmpl = DECL_TI_TEMPLATE (t);
12717 gen_tmpl = most_general_template (tmpl);
12718 argvec = tsubst (DECL_TI_ARGS (t), args, complain, in_decl);
12719 if (argvec != error_mark_node)
12720 argvec = (coerce_innermost_template_parms
12721 (DECL_TEMPLATE_PARMS (gen_tmpl),
12722 argvec, t, complain,
12723 /*all*/true, /*defarg*/true));
12724 if (argvec == error_mark_node)
12725 RETURN (error_mark_node);
12726 hash = hash_tmpl_and_args (gen_tmpl, argvec);
12727 spec = retrieve_specialization (gen_tmpl, argvec, hash);
12730 else
12732 /* A local variable. */
12733 local_p = true;
12734 /* Subsequent calls to pushdecl will fill this in. */
12735 ctx = NULL_TREE;
12736 /* Unless this is a reference to a static variable from an
12737 enclosing function, in which case we need to fill it in now. */
12738 if (TREE_STATIC (t))
12740 tree fn = tsubst (DECL_CONTEXT (t), args, complain, in_decl);
12741 if (fn != current_function_decl)
12742 ctx = fn;
12744 spec = retrieve_local_specialization (t);
12746 /* If we already have the specialization we need, there is
12747 nothing more to do. */
12748 if (spec)
12750 r = spec;
12751 break;
12754 /* Create a new node for the specialization we need. */
12755 r = copy_decl (t);
12756 if (type == NULL_TREE)
12758 if (is_typedef_decl (t))
12759 type = DECL_ORIGINAL_TYPE (t);
12760 else
12761 type = TREE_TYPE (t);
12762 if (VAR_P (t)
12763 && VAR_HAD_UNKNOWN_BOUND (t)
12764 && type != error_mark_node)
12765 type = strip_array_domain (type);
12766 type = tsubst (type, args, complain, in_decl);
12768 if (VAR_P (r))
12770 /* Even if the original location is out of scope, the
12771 newly substituted one is not. */
12772 DECL_DEAD_FOR_LOCAL (r) = 0;
12773 DECL_INITIALIZED_P (r) = 0;
12774 DECL_TEMPLATE_INSTANTIATED (r) = 0;
12775 if (type == error_mark_node)
12776 RETURN (error_mark_node);
12777 if (TREE_CODE (type) == FUNCTION_TYPE)
12779 /* It may seem that this case cannot occur, since:
12781 typedef void f();
12782 void g() { f x; }
12784 declares a function, not a variable. However:
12786 typedef void f();
12787 template <typename T> void g() { T t; }
12788 template void g<f>();
12790 is an attempt to declare a variable with function
12791 type. */
12792 error ("variable %qD has function type",
12793 /* R is not yet sufficiently initialized, so we
12794 just use its name. */
12795 DECL_NAME (r));
12796 RETURN (error_mark_node);
12798 type = complete_type (type);
12799 /* Wait until cp_finish_decl to set this again, to handle
12800 circular dependency (template/instantiate6.C). */
12801 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r) = 0;
12802 type = check_var_type (DECL_NAME (r), type);
12804 if (DECL_HAS_VALUE_EXPR_P (t))
12806 tree ve = DECL_VALUE_EXPR (t);
12807 ve = tsubst_expr (ve, args, complain, in_decl,
12808 /*constant_expression_p=*/false);
12809 if (REFERENCE_REF_P (ve))
12811 gcc_assert (TREE_CODE (type) == REFERENCE_TYPE);
12812 ve = TREE_OPERAND (ve, 0);
12814 SET_DECL_VALUE_EXPR (r, ve);
12816 if (CP_DECL_THREAD_LOCAL_P (r)
12817 && !processing_template_decl)
12818 set_decl_tls_model (r, decl_default_tls_model (r));
12820 else if (DECL_SELF_REFERENCE_P (t))
12821 SET_DECL_SELF_REFERENCE_P (r);
12822 TREE_TYPE (r) = type;
12823 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
12824 DECL_CONTEXT (r) = ctx;
12825 /* Clear out the mangled name and RTL for the instantiation. */
12826 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
12827 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
12828 SET_DECL_RTL (r, NULL);
12829 /* The initializer must not be expanded until it is required;
12830 see [temp.inst]. */
12831 DECL_INITIAL (r) = NULL_TREE;
12832 if (VAR_P (r))
12833 SET_DECL_MODE (r, VOIDmode);
12834 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
12835 SET_DECL_RTL (r, NULL);
12836 DECL_SIZE (r) = DECL_SIZE_UNIT (r) = 0;
12837 if (VAR_P (r))
12839 /* Possibly limit visibility based on template args. */
12840 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
12841 if (DECL_VISIBILITY_SPECIFIED (t))
12843 DECL_VISIBILITY_SPECIFIED (r) = 0;
12844 DECL_ATTRIBUTES (r)
12845 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
12847 determine_visibility (r);
12850 if (!local_p)
12852 /* A static data member declaration is always marked
12853 external when it is declared in-class, even if an
12854 initializer is present. We mimic the non-template
12855 processing here. */
12856 DECL_EXTERNAL (r) = 1;
12857 if (DECL_NAMESPACE_SCOPE_P (t))
12858 DECL_NOT_REALLY_EXTERN (r) = 1;
12860 DECL_TEMPLATE_INFO (r) = build_template_info (tmpl, argvec);
12861 SET_DECL_IMPLICIT_INSTANTIATION (r);
12862 register_specialization (r, gen_tmpl, argvec, false, hash);
12864 else
12866 if (DECL_LANG_SPECIFIC (r))
12867 DECL_TEMPLATE_INFO (r) = NULL_TREE;
12868 if (!cp_unevaluated_operand)
12869 register_local_specialization (r, t);
12872 DECL_CHAIN (r) = NULL_TREE;
12874 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r),
12875 /*flags=*/0,
12876 args, complain, in_decl);
12878 /* Preserve a typedef that names a type. */
12879 if (is_typedef_decl (r))
12881 DECL_ORIGINAL_TYPE (r) = NULL_TREE;
12882 set_underlying_type (r);
12883 if (TYPE_DECL_ALIAS_P (r) && type != error_mark_node)
12884 /* An alias template specialization can be dependent
12885 even if its underlying type is not. */
12886 TYPE_DEPENDENT_P_VALID (TREE_TYPE (r)) = false;
12889 layout_decl (r, 0);
12891 break;
12893 default:
12894 gcc_unreachable ();
12896 #undef RETURN
12898 out:
12899 /* Restore the file and line information. */
12900 input_location = saved_loc;
12902 return r;
12905 /* Substitute into the ARG_TYPES of a function type.
12906 If END is a TREE_CHAIN, leave it and any following types
12907 un-substituted. */
12909 static tree
12910 tsubst_arg_types (tree arg_types,
12911 tree args,
12912 tree end,
12913 tsubst_flags_t complain,
12914 tree in_decl)
12916 tree remaining_arg_types;
12917 tree type = NULL_TREE;
12918 int i = 1;
12919 tree expanded_args = NULL_TREE;
12920 tree default_arg;
12922 if (!arg_types || arg_types == void_list_node || arg_types == end)
12923 return arg_types;
12925 remaining_arg_types = tsubst_arg_types (TREE_CHAIN (arg_types),
12926 args, end, complain, in_decl);
12927 if (remaining_arg_types == error_mark_node)
12928 return error_mark_node;
12930 if (PACK_EXPANSION_P (TREE_VALUE (arg_types)))
12932 /* For a pack expansion, perform substitution on the
12933 entire expression. Later on, we'll handle the arguments
12934 one-by-one. */
12935 expanded_args = tsubst_pack_expansion (TREE_VALUE (arg_types),
12936 args, complain, in_decl);
12938 if (TREE_CODE (expanded_args) == TREE_VEC)
12939 /* So that we'll spin through the parameters, one by one. */
12940 i = TREE_VEC_LENGTH (expanded_args);
12941 else
12943 /* We only partially substituted into the parameter
12944 pack. Our type is TYPE_PACK_EXPANSION. */
12945 type = expanded_args;
12946 expanded_args = NULL_TREE;
12950 while (i > 0) {
12951 --i;
12953 if (expanded_args)
12954 type = TREE_VEC_ELT (expanded_args, i);
12955 else if (!type)
12956 type = tsubst (TREE_VALUE (arg_types), args, complain, in_decl);
12958 if (type == error_mark_node)
12959 return error_mark_node;
12960 if (VOID_TYPE_P (type))
12962 if (complain & tf_error)
12964 error ("invalid parameter type %qT", type);
12965 if (in_decl)
12966 error ("in declaration %q+D", in_decl);
12968 return error_mark_node;
12970 /* DR 657. */
12971 if (abstract_virtuals_error_sfinae (ACU_PARM, type, complain))
12972 return error_mark_node;
12974 /* Do array-to-pointer, function-to-pointer conversion, and ignore
12975 top-level qualifiers as required. */
12976 type = cv_unqualified (type_decays_to (type));
12978 /* We do not substitute into default arguments here. The standard
12979 mandates that they be instantiated only when needed, which is
12980 done in build_over_call. */
12981 default_arg = TREE_PURPOSE (arg_types);
12983 if (default_arg && TREE_CODE (default_arg) == DEFAULT_ARG)
12985 /* We've instantiated a template before its default arguments
12986 have been parsed. This can happen for a nested template
12987 class, and is not an error unless we require the default
12988 argument in a call of this function. */
12989 remaining_arg_types =
12990 tree_cons (default_arg, type, remaining_arg_types);
12991 vec_safe_push (DEFARG_INSTANTIATIONS(default_arg), remaining_arg_types);
12993 else
12994 remaining_arg_types =
12995 hash_tree_cons (default_arg, type, remaining_arg_types);
12998 return remaining_arg_types;
13001 /* Substitute into a FUNCTION_TYPE or METHOD_TYPE. This routine does
13002 *not* handle the exception-specification for FNTYPE, because the
13003 initial substitution of explicitly provided template parameters
13004 during argument deduction forbids substitution into the
13005 exception-specification:
13007 [temp.deduct]
13009 All references in the function type of the function template to the
13010 corresponding template parameters are replaced by the specified tem-
13011 plate argument values. If a substitution in a template parameter or
13012 in the function type of the function template results in an invalid
13013 type, type deduction fails. [Note: The equivalent substitution in
13014 exception specifications is done only when the function is instanti-
13015 ated, at which point a program is ill-formed if the substitution
13016 results in an invalid type.] */
13018 static tree
13019 tsubst_function_type (tree t,
13020 tree args,
13021 tsubst_flags_t complain,
13022 tree in_decl)
13024 tree return_type;
13025 tree arg_types = NULL_TREE;
13026 tree fntype;
13028 /* The TYPE_CONTEXT is not used for function/method types. */
13029 gcc_assert (TYPE_CONTEXT (t) == NULL_TREE);
13031 /* DR 1227: Mixing immediate and non-immediate contexts in deduction
13032 failure. */
13033 bool late_return_type_p = TYPE_HAS_LATE_RETURN_TYPE (t);
13035 if (late_return_type_p)
13037 /* Substitute the argument types. */
13038 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, NULL_TREE,
13039 complain, in_decl);
13040 if (arg_types == error_mark_node)
13041 return error_mark_node;
13043 tree save_ccp = current_class_ptr;
13044 tree save_ccr = current_class_ref;
13045 tree this_type = (TREE_CODE (t) == METHOD_TYPE
13046 ? TREE_TYPE (TREE_VALUE (arg_types)) : NULL_TREE);
13047 bool do_inject = this_type && CLASS_TYPE_P (this_type);
13048 if (do_inject)
13050 /* DR 1207: 'this' is in scope in the trailing return type. */
13051 inject_this_parameter (this_type, cp_type_quals (this_type));
13054 /* Substitute the return type. */
13055 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13057 if (do_inject)
13059 current_class_ptr = save_ccp;
13060 current_class_ref = save_ccr;
13063 else
13064 /* Substitute the return type. */
13065 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13067 if (return_type == error_mark_node)
13068 return error_mark_node;
13069 /* DR 486 clarifies that creation of a function type with an
13070 invalid return type is a deduction failure. */
13071 if (TREE_CODE (return_type) == ARRAY_TYPE
13072 || TREE_CODE (return_type) == FUNCTION_TYPE)
13074 if (complain & tf_error)
13076 if (TREE_CODE (return_type) == ARRAY_TYPE)
13077 error ("function returning an array");
13078 else
13079 error ("function returning a function");
13081 return error_mark_node;
13083 /* And DR 657. */
13084 if (abstract_virtuals_error_sfinae (ACU_RETURN, return_type, complain))
13085 return error_mark_node;
13087 if (!late_return_type_p)
13089 /* Substitute the argument types. */
13090 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, NULL_TREE,
13091 complain, in_decl);
13092 if (arg_types == error_mark_node)
13093 return error_mark_node;
13096 /* Construct a new type node and return it. */
13097 if (TREE_CODE (t) == FUNCTION_TYPE)
13099 fntype = build_function_type (return_type, arg_types);
13100 fntype = apply_memfn_quals (fntype,
13101 type_memfn_quals (t),
13102 type_memfn_rqual (t));
13104 else
13106 tree r = TREE_TYPE (TREE_VALUE (arg_types));
13107 /* Don't pick up extra function qualifiers from the basetype. */
13108 r = cp_build_qualified_type_real (r, type_memfn_quals (t), complain);
13109 if (! MAYBE_CLASS_TYPE_P (r))
13111 /* [temp.deduct]
13113 Type deduction may fail for any of the following
13114 reasons:
13116 -- Attempting to create "pointer to member of T" when T
13117 is not a class type. */
13118 if (complain & tf_error)
13119 error ("creating pointer to member function of non-class type %qT",
13121 return error_mark_node;
13124 fntype = build_method_type_directly (r, return_type,
13125 TREE_CHAIN (arg_types));
13126 fntype = build_ref_qualified_type (fntype, type_memfn_rqual (t));
13128 fntype = cp_build_type_attribute_variant (fntype, TYPE_ATTRIBUTES (t));
13130 if (late_return_type_p)
13131 TYPE_HAS_LATE_RETURN_TYPE (fntype) = 1;
13133 return fntype;
13136 /* FNTYPE is a FUNCTION_TYPE or METHOD_TYPE. Substitute the template
13137 ARGS into that specification, and return the substituted
13138 specification. If there is no specification, return NULL_TREE. */
13140 static tree
13141 tsubst_exception_specification (tree fntype,
13142 tree args,
13143 tsubst_flags_t complain,
13144 tree in_decl,
13145 bool defer_ok)
13147 tree specs;
13148 tree new_specs;
13150 specs = TYPE_RAISES_EXCEPTIONS (fntype);
13151 new_specs = NULL_TREE;
13152 if (specs && TREE_PURPOSE (specs))
13154 /* A noexcept-specifier. */
13155 tree expr = TREE_PURPOSE (specs);
13156 if (TREE_CODE (expr) == INTEGER_CST)
13157 new_specs = expr;
13158 else if (defer_ok)
13160 /* Defer instantiation of noexcept-specifiers to avoid
13161 excessive instantiations (c++/49107). */
13162 new_specs = make_node (DEFERRED_NOEXCEPT);
13163 if (DEFERRED_NOEXCEPT_SPEC_P (specs))
13165 /* We already partially instantiated this member template,
13166 so combine the new args with the old. */
13167 DEFERRED_NOEXCEPT_PATTERN (new_specs)
13168 = DEFERRED_NOEXCEPT_PATTERN (expr);
13169 DEFERRED_NOEXCEPT_ARGS (new_specs)
13170 = add_to_template_args (DEFERRED_NOEXCEPT_ARGS (expr), args);
13172 else
13174 DEFERRED_NOEXCEPT_PATTERN (new_specs) = expr;
13175 DEFERRED_NOEXCEPT_ARGS (new_specs) = args;
13178 else
13179 new_specs = tsubst_copy_and_build
13180 (expr, args, complain, in_decl, /*function_p=*/false,
13181 /*integral_constant_expression_p=*/true);
13182 new_specs = build_noexcept_spec (new_specs, complain);
13184 else if (specs)
13186 if (! TREE_VALUE (specs))
13187 new_specs = specs;
13188 else
13189 while (specs)
13191 tree spec;
13192 int i, len = 1;
13193 tree expanded_specs = NULL_TREE;
13195 if (PACK_EXPANSION_P (TREE_VALUE (specs)))
13197 /* Expand the pack expansion type. */
13198 expanded_specs = tsubst_pack_expansion (TREE_VALUE (specs),
13199 args, complain,
13200 in_decl);
13202 if (expanded_specs == error_mark_node)
13203 return error_mark_node;
13204 else if (TREE_CODE (expanded_specs) == TREE_VEC)
13205 len = TREE_VEC_LENGTH (expanded_specs);
13206 else
13208 /* We're substituting into a member template, so
13209 we got a TYPE_PACK_EXPANSION back. Add that
13210 expansion and move on. */
13211 gcc_assert (TREE_CODE (expanded_specs)
13212 == TYPE_PACK_EXPANSION);
13213 new_specs = add_exception_specifier (new_specs,
13214 expanded_specs,
13215 complain);
13216 specs = TREE_CHAIN (specs);
13217 continue;
13221 for (i = 0; i < len; ++i)
13223 if (expanded_specs)
13224 spec = TREE_VEC_ELT (expanded_specs, i);
13225 else
13226 spec = tsubst (TREE_VALUE (specs), args, complain, in_decl);
13227 if (spec == error_mark_node)
13228 return spec;
13229 new_specs = add_exception_specifier (new_specs, spec,
13230 complain);
13233 specs = TREE_CHAIN (specs);
13236 return new_specs;
13239 /* Take the tree structure T and replace template parameters used
13240 therein with the argument vector ARGS. IN_DECL is an associated
13241 decl for diagnostics. If an error occurs, returns ERROR_MARK_NODE.
13242 Issue error and warning messages under control of COMPLAIN. Note
13243 that we must be relatively non-tolerant of extensions here, in
13244 order to preserve conformance; if we allow substitutions that
13245 should not be allowed, we may allow argument deductions that should
13246 not succeed, and therefore report ambiguous overload situations
13247 where there are none. In theory, we could allow the substitution,
13248 but indicate that it should have failed, and allow our caller to
13249 make sure that the right thing happens, but we don't try to do this
13250 yet.
13252 This function is used for dealing with types, decls and the like;
13253 for expressions, use tsubst_expr or tsubst_copy. */
13255 tree
13256 tsubst (tree t, tree args, tsubst_flags_t complain, tree in_decl)
13258 enum tree_code code;
13259 tree type, r = NULL_TREE;
13261 if (t == NULL_TREE || t == error_mark_node
13262 || t == integer_type_node
13263 || t == void_type_node
13264 || t == char_type_node
13265 || t == unknown_type_node
13266 || TREE_CODE (t) == NAMESPACE_DECL
13267 || TREE_CODE (t) == TRANSLATION_UNIT_DECL)
13268 return t;
13270 if (DECL_P (t))
13271 return tsubst_decl (t, args, complain);
13273 if (args == NULL_TREE)
13274 return t;
13276 code = TREE_CODE (t);
13278 if (code == IDENTIFIER_NODE)
13279 type = IDENTIFIER_TYPE_VALUE (t);
13280 else
13281 type = TREE_TYPE (t);
13283 gcc_assert (type != unknown_type_node);
13285 /* Reuse typedefs. We need to do this to handle dependent attributes,
13286 such as attribute aligned. */
13287 if (TYPE_P (t)
13288 && typedef_variant_p (t))
13290 tree decl = TYPE_NAME (t);
13292 if (alias_template_specialization_p (t))
13294 /* DECL represents an alias template and we want to
13295 instantiate it. */
13296 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
13297 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
13298 r = instantiate_alias_template (tmpl, gen_args, complain);
13300 else if (DECL_CLASS_SCOPE_P (decl)
13301 && CLASSTYPE_TEMPLATE_INFO (DECL_CONTEXT (decl))
13302 && uses_template_parms (DECL_CONTEXT (decl)))
13304 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
13305 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
13306 r = retrieve_specialization (tmpl, gen_args, 0);
13308 else if (DECL_FUNCTION_SCOPE_P (decl)
13309 && DECL_TEMPLATE_INFO (DECL_CONTEXT (decl))
13310 && uses_template_parms (DECL_TI_ARGS (DECL_CONTEXT (decl))))
13311 r = retrieve_local_specialization (decl);
13312 else
13313 /* The typedef is from a non-template context. */
13314 return t;
13316 if (r)
13318 r = TREE_TYPE (r);
13319 r = cp_build_qualified_type_real
13320 (r, cp_type_quals (t) | cp_type_quals (r),
13321 complain | tf_ignore_bad_quals);
13322 return r;
13324 else
13326 /* We don't have an instantiation yet, so drop the typedef. */
13327 int quals = cp_type_quals (t);
13328 t = DECL_ORIGINAL_TYPE (decl);
13329 t = cp_build_qualified_type_real (t, quals,
13330 complain | tf_ignore_bad_quals);
13334 bool fndecl_type = (complain & tf_fndecl_type);
13335 complain &= ~tf_fndecl_type;
13337 if (type
13338 && code != TYPENAME_TYPE
13339 && code != TEMPLATE_TYPE_PARM
13340 && code != IDENTIFIER_NODE
13341 && code != FUNCTION_TYPE
13342 && code != METHOD_TYPE)
13343 type = tsubst (type, args, complain, in_decl);
13344 if (type == error_mark_node)
13345 return error_mark_node;
13347 switch (code)
13349 case RECORD_TYPE:
13350 case UNION_TYPE:
13351 case ENUMERAL_TYPE:
13352 return tsubst_aggr_type (t, args, complain, in_decl,
13353 /*entering_scope=*/0);
13355 case ERROR_MARK:
13356 case IDENTIFIER_NODE:
13357 case VOID_TYPE:
13358 case REAL_TYPE:
13359 case COMPLEX_TYPE:
13360 case VECTOR_TYPE:
13361 case BOOLEAN_TYPE:
13362 case NULLPTR_TYPE:
13363 case LANG_TYPE:
13364 return t;
13366 case INTEGER_TYPE:
13367 if (t == integer_type_node)
13368 return t;
13370 if (TREE_CODE (TYPE_MIN_VALUE (t)) == INTEGER_CST
13371 && TREE_CODE (TYPE_MAX_VALUE (t)) == INTEGER_CST)
13372 return t;
13375 tree max, omax = TREE_OPERAND (TYPE_MAX_VALUE (t), 0);
13377 max = tsubst_expr (omax, args, complain, in_decl,
13378 /*integral_constant_expression_p=*/false);
13380 /* Fix up type of the magic NOP_EXPR with TREE_SIDE_EFFECTS if
13381 needed. */
13382 if (TREE_CODE (max) == NOP_EXPR
13383 && TREE_SIDE_EFFECTS (omax)
13384 && !TREE_TYPE (max))
13385 TREE_TYPE (max) = TREE_TYPE (TREE_OPERAND (max, 0));
13387 /* If we're in a partial instantiation, preserve the magic NOP_EXPR
13388 with TREE_SIDE_EFFECTS that indicates this is not an integral
13389 constant expression. */
13390 if (processing_template_decl
13391 && TREE_SIDE_EFFECTS (omax) && TREE_CODE (omax) == NOP_EXPR)
13393 gcc_assert (TREE_CODE (max) == NOP_EXPR);
13394 TREE_SIDE_EFFECTS (max) = 1;
13397 return compute_array_index_type (NULL_TREE, max, complain);
13400 case TEMPLATE_TYPE_PARM:
13401 case TEMPLATE_TEMPLATE_PARM:
13402 case BOUND_TEMPLATE_TEMPLATE_PARM:
13403 case TEMPLATE_PARM_INDEX:
13405 int idx;
13406 int level;
13407 int levels;
13408 tree arg = NULL_TREE;
13410 /* Early in template argument deduction substitution, we don't
13411 want to reduce the level of 'auto', or it will be confused
13412 with a normal template parm in subsequent deduction. */
13413 if (is_auto (t) && (complain & tf_partial))
13414 return t;
13416 r = NULL_TREE;
13418 gcc_assert (TREE_VEC_LENGTH (args) > 0);
13419 template_parm_level_and_index (t, &level, &idx);
13421 levels = TMPL_ARGS_DEPTH (args);
13422 if (level <= levels
13423 && TREE_VEC_LENGTH (TMPL_ARGS_LEVEL (args, level)) > 0)
13425 arg = TMPL_ARG (args, level, idx);
13427 if (arg && TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
13429 /* See through ARGUMENT_PACK_SELECT arguments. */
13430 arg = ARGUMENT_PACK_SELECT_ARG (arg);
13431 /* If the selected argument is an expansion E, that most
13432 likely means we were called from
13433 gen_elem_of_pack_expansion_instantiation during the
13434 substituting of pack an argument pack (which Ith
13435 element is a pack expansion, where I is
13436 ARGUMENT_PACK_SELECT_INDEX) into a pack expansion.
13437 In this case, the Ith element resulting from this
13438 substituting is going to be a pack expansion, which
13439 pattern is the pattern of E. Let's return the
13440 pattern of E, and
13441 gen_elem_of_pack_expansion_instantiation will
13442 build the resulting pack expansion from it. */
13443 if (PACK_EXPANSION_P (arg))
13445 /* Make sure we aren't throwing away arg info. */
13446 gcc_assert (!PACK_EXPANSION_EXTRA_ARGS (arg));
13447 arg = PACK_EXPANSION_PATTERN (arg);
13452 if (arg == error_mark_node)
13453 return error_mark_node;
13454 else if (arg != NULL_TREE)
13456 if (ARGUMENT_PACK_P (arg))
13457 /* If ARG is an argument pack, we don't actually want to
13458 perform a substitution here, because substitutions
13459 for argument packs are only done
13460 element-by-element. We can get to this point when
13461 substituting the type of a non-type template
13462 parameter pack, when that type actually contains
13463 template parameter packs from an outer template, e.g.,
13465 template<typename... Types> struct A {
13466 template<Types... Values> struct B { };
13467 }; */
13468 return t;
13470 if (code == TEMPLATE_TYPE_PARM)
13472 int quals;
13473 gcc_assert (TYPE_P (arg));
13475 quals = cp_type_quals (arg) | cp_type_quals (t);
13477 return cp_build_qualified_type_real
13478 (arg, quals, complain | tf_ignore_bad_quals);
13480 else if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
13482 /* We are processing a type constructed from a
13483 template template parameter. */
13484 tree argvec = tsubst (TYPE_TI_ARGS (t),
13485 args, complain, in_decl);
13486 if (argvec == error_mark_node)
13487 return error_mark_node;
13489 gcc_assert (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
13490 || TREE_CODE (arg) == TEMPLATE_DECL
13491 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
13493 if (TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE)
13494 /* Consider this code:
13496 template <template <class> class Template>
13497 struct Internal {
13498 template <class Arg> using Bind = Template<Arg>;
13501 template <template <class> class Template, class Arg>
13502 using Instantiate = Template<Arg>; //#0
13504 template <template <class> class Template,
13505 class Argument>
13506 using Bind =
13507 Instantiate<Internal<Template>::template Bind,
13508 Argument>; //#1
13510 When #1 is parsed, the
13511 BOUND_TEMPLATE_TEMPLATE_PARM representing the
13512 parameter `Template' in #0 matches the
13513 UNBOUND_CLASS_TEMPLATE representing the argument
13514 `Internal<Template>::template Bind'; We then want
13515 to assemble the type `Bind<Argument>' that can't
13516 be fully created right now, because
13517 `Internal<Template>' not being complete, the Bind
13518 template cannot be looked up in that context. So
13519 we need to "store" `Bind<Argument>' for later
13520 when the context of Bind becomes complete. Let's
13521 store that in a TYPENAME_TYPE. */
13522 return make_typename_type (TYPE_CONTEXT (arg),
13523 build_nt (TEMPLATE_ID_EXPR,
13524 TYPE_IDENTIFIER (arg),
13525 argvec),
13526 typename_type,
13527 complain);
13529 /* We can get a TEMPLATE_TEMPLATE_PARM here when we
13530 are resolving nested-types in the signature of a
13531 member function templates. Otherwise ARG is a
13532 TEMPLATE_DECL and is the real template to be
13533 instantiated. */
13534 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
13535 arg = TYPE_NAME (arg);
13537 r = lookup_template_class (arg,
13538 argvec, in_decl,
13539 DECL_CONTEXT (arg),
13540 /*entering_scope=*/0,
13541 complain);
13542 return cp_build_qualified_type_real
13543 (r, cp_type_quals (t) | cp_type_quals (r), complain);
13545 else if (code == TEMPLATE_TEMPLATE_PARM)
13546 return arg;
13547 else
13548 /* TEMPLATE_PARM_INDEX. */
13549 return convert_from_reference (unshare_expr (arg));
13552 if (level == 1)
13553 /* This can happen during the attempted tsubst'ing in
13554 unify. This means that we don't yet have any information
13555 about the template parameter in question. */
13556 return t;
13558 /* If we get here, we must have been looking at a parm for a
13559 more deeply nested template. Make a new version of this
13560 template parameter, but with a lower level. */
13561 switch (code)
13563 case TEMPLATE_TYPE_PARM:
13564 case TEMPLATE_TEMPLATE_PARM:
13565 case BOUND_TEMPLATE_TEMPLATE_PARM:
13566 if (cp_type_quals (t))
13568 r = tsubst (TYPE_MAIN_VARIANT (t), args, complain, in_decl);
13569 r = cp_build_qualified_type_real
13570 (r, cp_type_quals (t),
13571 complain | (code == TEMPLATE_TYPE_PARM
13572 ? tf_ignore_bad_quals : 0));
13574 else if (TREE_CODE (t) == TEMPLATE_TYPE_PARM
13575 && PLACEHOLDER_TYPE_CONSTRAINTS (t)
13576 && (r = (TEMPLATE_PARM_DESCENDANTS
13577 (TEMPLATE_TYPE_PARM_INDEX (t))))
13578 && (r = TREE_TYPE (r))
13579 && !PLACEHOLDER_TYPE_CONSTRAINTS (r))
13580 /* Break infinite recursion when substituting the constraints
13581 of a constrained placeholder. */;
13582 else
13584 r = copy_type (t);
13585 TEMPLATE_TYPE_PARM_INDEX (r)
13586 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (t),
13587 r, levels, args, complain);
13588 TYPE_STUB_DECL (r) = TYPE_NAME (r) = TEMPLATE_TYPE_DECL (r);
13589 TYPE_MAIN_VARIANT (r) = r;
13590 TYPE_POINTER_TO (r) = NULL_TREE;
13591 TYPE_REFERENCE_TO (r) = NULL_TREE;
13593 if (TREE_CODE (t) == TEMPLATE_TYPE_PARM)
13595 /* Propagate constraints on placeholders. */
13596 if (tree constr = PLACEHOLDER_TYPE_CONSTRAINTS (t))
13597 PLACEHOLDER_TYPE_CONSTRAINTS (r)
13598 = tsubst_constraint (constr, args, complain, in_decl);
13599 else if (tree pl = CLASS_PLACEHOLDER_TEMPLATE (t))
13601 if (DECL_TEMPLATE_TEMPLATE_PARM_P (pl))
13602 pl = tsubst (pl, args, complain, in_decl);
13603 CLASS_PLACEHOLDER_TEMPLATE (r) = pl;
13607 if (TREE_CODE (r) == TEMPLATE_TEMPLATE_PARM)
13608 /* We have reduced the level of the template
13609 template parameter, but not the levels of its
13610 template parameters, so canonical_type_parameter
13611 will not be able to find the canonical template
13612 template parameter for this level. Thus, we
13613 require structural equality checking to compare
13614 TEMPLATE_TEMPLATE_PARMs. */
13615 SET_TYPE_STRUCTURAL_EQUALITY (r);
13616 else if (TYPE_STRUCTURAL_EQUALITY_P (t))
13617 SET_TYPE_STRUCTURAL_EQUALITY (r);
13618 else
13619 TYPE_CANONICAL (r) = canonical_type_parameter (r);
13621 if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
13623 tree tinfo = TYPE_TEMPLATE_INFO (t);
13624 /* We might need to substitute into the types of non-type
13625 template parameters. */
13626 tree tmpl = tsubst (TI_TEMPLATE (tinfo), args,
13627 complain, in_decl);
13628 if (tmpl == error_mark_node)
13629 return error_mark_node;
13630 tree argvec = tsubst (TI_ARGS (tinfo), args,
13631 complain, in_decl);
13632 if (argvec == error_mark_node)
13633 return error_mark_node;
13635 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (r)
13636 = build_template_info (tmpl, argvec);
13639 break;
13641 case TEMPLATE_PARM_INDEX:
13642 r = reduce_template_parm_level (t, type, levels, args, complain);
13643 break;
13645 default:
13646 gcc_unreachable ();
13649 return r;
13652 case TREE_LIST:
13654 tree purpose, value, chain;
13656 if (t == void_list_node)
13657 return t;
13659 purpose = TREE_PURPOSE (t);
13660 if (purpose)
13662 purpose = tsubst (purpose, args, complain, in_decl);
13663 if (purpose == error_mark_node)
13664 return error_mark_node;
13666 value = TREE_VALUE (t);
13667 if (value)
13669 value = tsubst (value, args, complain, in_decl);
13670 if (value == error_mark_node)
13671 return error_mark_node;
13673 chain = TREE_CHAIN (t);
13674 if (chain && chain != void_type_node)
13676 chain = tsubst (chain, args, complain, in_decl);
13677 if (chain == error_mark_node)
13678 return error_mark_node;
13680 if (purpose == TREE_PURPOSE (t)
13681 && value == TREE_VALUE (t)
13682 && chain == TREE_CHAIN (t))
13683 return t;
13684 return hash_tree_cons (purpose, value, chain);
13687 case TREE_BINFO:
13688 /* We should never be tsubsting a binfo. */
13689 gcc_unreachable ();
13691 case TREE_VEC:
13692 /* A vector of template arguments. */
13693 gcc_assert (!type);
13694 return tsubst_template_args (t, args, complain, in_decl);
13696 case POINTER_TYPE:
13697 case REFERENCE_TYPE:
13699 if (type == TREE_TYPE (t) && TREE_CODE (type) != METHOD_TYPE)
13700 return t;
13702 /* [temp.deduct]
13704 Type deduction may fail for any of the following
13705 reasons:
13707 -- Attempting to create a pointer to reference type.
13708 -- Attempting to create a reference to a reference type or
13709 a reference to void.
13711 Core issue 106 says that creating a reference to a reference
13712 during instantiation is no longer a cause for failure. We
13713 only enforce this check in strict C++98 mode. */
13714 if ((TREE_CODE (type) == REFERENCE_TYPE
13715 && (((cxx_dialect == cxx98) && flag_iso) || code != REFERENCE_TYPE))
13716 || (code == REFERENCE_TYPE && VOID_TYPE_P (type)))
13718 static location_t last_loc;
13720 /* We keep track of the last time we issued this error
13721 message to avoid spewing a ton of messages during a
13722 single bad template instantiation. */
13723 if (complain & tf_error
13724 && last_loc != input_location)
13726 if (VOID_TYPE_P (type))
13727 error ("forming reference to void");
13728 else if (code == POINTER_TYPE)
13729 error ("forming pointer to reference type %qT", type);
13730 else
13731 error ("forming reference to reference type %qT", type);
13732 last_loc = input_location;
13735 return error_mark_node;
13737 else if (TREE_CODE (type) == FUNCTION_TYPE
13738 && (type_memfn_quals (type) != TYPE_UNQUALIFIED
13739 || type_memfn_rqual (type) != REF_QUAL_NONE))
13741 if (complain & tf_error)
13743 if (code == POINTER_TYPE)
13744 error ("forming pointer to qualified function type %qT",
13745 type);
13746 else
13747 error ("forming reference to qualified function type %qT",
13748 type);
13750 return error_mark_node;
13752 else if (code == POINTER_TYPE)
13754 r = build_pointer_type (type);
13755 if (TREE_CODE (type) == METHOD_TYPE)
13756 r = build_ptrmemfunc_type (r);
13758 else if (TREE_CODE (type) == REFERENCE_TYPE)
13759 /* In C++0x, during template argument substitution, when there is an
13760 attempt to create a reference to a reference type, reference
13761 collapsing is applied as described in [14.3.1/4 temp.arg.type]:
13763 "If a template-argument for a template-parameter T names a type
13764 that is a reference to a type A, an attempt to create the type
13765 'lvalue reference to cv T' creates the type 'lvalue reference to
13766 A,' while an attempt to create the type type rvalue reference to
13767 cv T' creates the type T"
13769 r = cp_build_reference_type
13770 (TREE_TYPE (type),
13771 TYPE_REF_IS_RVALUE (t) && TYPE_REF_IS_RVALUE (type));
13772 else
13773 r = cp_build_reference_type (type, TYPE_REF_IS_RVALUE (t));
13774 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
13776 if (r != error_mark_node)
13777 /* Will this ever be needed for TYPE_..._TO values? */
13778 layout_type (r);
13780 return r;
13782 case OFFSET_TYPE:
13784 r = tsubst (TYPE_OFFSET_BASETYPE (t), args, complain, in_decl);
13785 if (r == error_mark_node || !MAYBE_CLASS_TYPE_P (r))
13787 /* [temp.deduct]
13789 Type deduction may fail for any of the following
13790 reasons:
13792 -- Attempting to create "pointer to member of T" when T
13793 is not a class type. */
13794 if (complain & tf_error)
13795 error ("creating pointer to member of non-class type %qT", r);
13796 return error_mark_node;
13798 if (TREE_CODE (type) == REFERENCE_TYPE)
13800 if (complain & tf_error)
13801 error ("creating pointer to member reference type %qT", type);
13802 return error_mark_node;
13804 if (VOID_TYPE_P (type))
13806 if (complain & tf_error)
13807 error ("creating pointer to member of type void");
13808 return error_mark_node;
13810 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
13811 if (TREE_CODE (type) == FUNCTION_TYPE)
13813 /* The type of the implicit object parameter gets its
13814 cv-qualifiers from the FUNCTION_TYPE. */
13815 tree memptr;
13816 tree method_type
13817 = build_memfn_type (type, r, type_memfn_quals (type),
13818 type_memfn_rqual (type));
13819 memptr = build_ptrmemfunc_type (build_pointer_type (method_type));
13820 return cp_build_qualified_type_real (memptr, cp_type_quals (t),
13821 complain);
13823 else
13824 return cp_build_qualified_type_real (build_ptrmem_type (r, type),
13825 cp_type_quals (t),
13826 complain);
13828 case FUNCTION_TYPE:
13829 case METHOD_TYPE:
13831 tree fntype;
13832 tree specs;
13833 fntype = tsubst_function_type (t, args, complain, in_decl);
13834 if (fntype == error_mark_node)
13835 return error_mark_node;
13837 /* Substitute the exception specification. */
13838 specs = tsubst_exception_specification (t, args, complain, in_decl,
13839 /*defer_ok*/fndecl_type);
13840 if (specs == error_mark_node)
13841 return error_mark_node;
13842 if (specs)
13843 fntype = build_exception_variant (fntype, specs);
13844 return fntype;
13846 case ARRAY_TYPE:
13848 tree domain = tsubst (TYPE_DOMAIN (t), args, complain, in_decl);
13849 if (domain == error_mark_node)
13850 return error_mark_node;
13852 /* As an optimization, we avoid regenerating the array type if
13853 it will obviously be the same as T. */
13854 if (type == TREE_TYPE (t) && domain == TYPE_DOMAIN (t))
13855 return t;
13857 /* These checks should match the ones in create_array_type_for_decl.
13859 [temp.deduct]
13861 The deduction may fail for any of the following reasons:
13863 -- Attempting to create an array with an element type that
13864 is void, a function type, or a reference type, or [DR337]
13865 an abstract class type. */
13866 if (VOID_TYPE_P (type)
13867 || TREE_CODE (type) == FUNCTION_TYPE
13868 || (TREE_CODE (type) == ARRAY_TYPE
13869 && TYPE_DOMAIN (type) == NULL_TREE)
13870 || TREE_CODE (type) == REFERENCE_TYPE)
13872 if (complain & tf_error)
13873 error ("creating array of %qT", type);
13874 return error_mark_node;
13877 if (abstract_virtuals_error_sfinae (ACU_ARRAY, type, complain))
13878 return error_mark_node;
13880 r = build_cplus_array_type (type, domain);
13882 if (TYPE_USER_ALIGN (t))
13884 SET_TYPE_ALIGN (r, TYPE_ALIGN (t));
13885 TYPE_USER_ALIGN (r) = 1;
13888 return r;
13891 case TYPENAME_TYPE:
13893 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
13894 in_decl, /*entering_scope=*/1);
13895 if (ctx == error_mark_node)
13896 return error_mark_node;
13898 tree f = tsubst_copy (TYPENAME_TYPE_FULLNAME (t), args,
13899 complain, in_decl);
13900 if (f == error_mark_node)
13901 return error_mark_node;
13903 if (!MAYBE_CLASS_TYPE_P (ctx))
13905 if (complain & tf_error)
13906 error ("%qT is not a class, struct, or union type", ctx);
13907 return error_mark_node;
13909 else if (!uses_template_parms (ctx) && !TYPE_BEING_DEFINED (ctx))
13911 /* Normally, make_typename_type does not require that the CTX
13912 have complete type in order to allow things like:
13914 template <class T> struct S { typename S<T>::X Y; };
13916 But, such constructs have already been resolved by this
13917 point, so here CTX really should have complete type, unless
13918 it's a partial instantiation. */
13919 ctx = complete_type (ctx);
13920 if (!COMPLETE_TYPE_P (ctx))
13922 if (complain & tf_error)
13923 cxx_incomplete_type_error (NULL_TREE, ctx);
13924 return error_mark_node;
13928 f = make_typename_type (ctx, f, typename_type,
13929 complain | tf_keep_type_decl);
13930 if (f == error_mark_node)
13931 return f;
13932 if (TREE_CODE (f) == TYPE_DECL)
13934 complain |= tf_ignore_bad_quals;
13935 f = TREE_TYPE (f);
13938 if (TREE_CODE (f) != TYPENAME_TYPE)
13940 if (TYPENAME_IS_ENUM_P (t) && TREE_CODE (f) != ENUMERAL_TYPE)
13942 if (complain & tf_error)
13943 error ("%qT resolves to %qT, which is not an enumeration type",
13944 t, f);
13945 else
13946 return error_mark_node;
13948 else if (TYPENAME_IS_CLASS_P (t) && !CLASS_TYPE_P (f))
13950 if (complain & tf_error)
13951 error ("%qT resolves to %qT, which is is not a class type",
13952 t, f);
13953 else
13954 return error_mark_node;
13958 return cp_build_qualified_type_real
13959 (f, cp_type_quals (f) | cp_type_quals (t), complain);
13962 case UNBOUND_CLASS_TEMPLATE:
13964 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
13965 in_decl, /*entering_scope=*/1);
13966 tree name = TYPE_IDENTIFIER (t);
13967 tree parm_list = DECL_TEMPLATE_PARMS (TYPE_NAME (t));
13969 if (ctx == error_mark_node || name == error_mark_node)
13970 return error_mark_node;
13972 if (parm_list)
13973 parm_list = tsubst_template_parms (parm_list, args, complain);
13974 return make_unbound_class_template (ctx, name, parm_list, complain);
13977 case TYPEOF_TYPE:
13979 tree type;
13981 ++cp_unevaluated_operand;
13982 ++c_inhibit_evaluation_warnings;
13984 type = tsubst_expr (TYPEOF_TYPE_EXPR (t), args,
13985 complain, in_decl,
13986 /*integral_constant_expression_p=*/false);
13988 --cp_unevaluated_operand;
13989 --c_inhibit_evaluation_warnings;
13991 type = finish_typeof (type);
13992 return cp_build_qualified_type_real (type,
13993 cp_type_quals (t)
13994 | cp_type_quals (type),
13995 complain);
13998 case DECLTYPE_TYPE:
14000 tree type;
14002 ++cp_unevaluated_operand;
14003 ++c_inhibit_evaluation_warnings;
14005 type = tsubst_copy_and_build (DECLTYPE_TYPE_EXPR (t), args,
14006 complain|tf_decltype, in_decl,
14007 /*function_p*/false,
14008 /*integral_constant_expression*/false);
14010 if (DECLTYPE_FOR_INIT_CAPTURE (t))
14012 if (type == NULL_TREE)
14014 if (complain & tf_error)
14015 error ("empty initializer in lambda init-capture");
14016 type = error_mark_node;
14018 else if (TREE_CODE (type) == TREE_LIST)
14019 type = build_x_compound_expr_from_list (type, ELK_INIT, complain);
14022 --cp_unevaluated_operand;
14023 --c_inhibit_evaluation_warnings;
14025 if (DECLTYPE_FOR_LAMBDA_CAPTURE (t))
14026 type = lambda_capture_field_type (type,
14027 DECLTYPE_FOR_INIT_CAPTURE (t),
14028 DECLTYPE_FOR_REF_CAPTURE (t));
14029 else if (DECLTYPE_FOR_LAMBDA_PROXY (t))
14030 type = lambda_proxy_type (type);
14031 else
14033 bool id = DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t);
14034 if (id && TREE_CODE (DECLTYPE_TYPE_EXPR (t)) == BIT_NOT_EXPR
14035 && EXPR_P (type))
14036 /* In a template ~id could be either a complement expression
14037 or an unqualified-id naming a destructor; if instantiating
14038 it produces an expression, it's not an id-expression or
14039 member access. */
14040 id = false;
14041 type = finish_decltype_type (type, id, complain);
14043 return cp_build_qualified_type_real (type,
14044 cp_type_quals (t)
14045 | cp_type_quals (type),
14046 complain | tf_ignore_bad_quals);
14049 case UNDERLYING_TYPE:
14051 tree type = tsubst (UNDERLYING_TYPE_TYPE (t), args,
14052 complain, in_decl);
14053 return finish_underlying_type (type);
14056 case TYPE_ARGUMENT_PACK:
14057 case NONTYPE_ARGUMENT_PACK:
14059 tree r;
14061 if (code == NONTYPE_ARGUMENT_PACK)
14063 r = make_node (code);
14064 /* Set the already-substituted type. */
14065 TREE_TYPE (r) = type;
14067 else
14068 r = cxx_make_type (code);
14070 tree pack_args = ARGUMENT_PACK_ARGS (t);
14071 pack_args = tsubst_template_args (pack_args, args, complain, in_decl);
14072 SET_ARGUMENT_PACK_ARGS (r, pack_args);
14074 return r;
14077 case VOID_CST:
14078 case INTEGER_CST:
14079 case REAL_CST:
14080 case STRING_CST:
14081 case PLUS_EXPR:
14082 case MINUS_EXPR:
14083 case NEGATE_EXPR:
14084 case NOP_EXPR:
14085 case INDIRECT_REF:
14086 case ADDR_EXPR:
14087 case CALL_EXPR:
14088 case ARRAY_REF:
14089 case SCOPE_REF:
14090 /* We should use one of the expression tsubsts for these codes. */
14091 gcc_unreachable ();
14093 default:
14094 sorry ("use of %qs in template", get_tree_code_name (code));
14095 return error_mark_node;
14099 /* Like tsubst_expr for a BASELINK. OBJECT_TYPE, if non-NULL, is the
14100 type of the expression on the left-hand side of the "." or "->"
14101 operator. */
14103 static tree
14104 tsubst_baselink (tree baselink, tree object_type,
14105 tree args, tsubst_flags_t complain, tree in_decl)
14107 tree name;
14108 tree qualifying_scope;
14109 tree fns;
14110 tree optype;
14111 tree template_args = 0;
14112 bool template_id_p = false;
14113 bool qualified = BASELINK_QUALIFIED_P (baselink);
14115 /* A baselink indicates a function from a base class. Both the
14116 BASELINK_ACCESS_BINFO and the base class referenced may
14117 indicate bases of the template class, rather than the
14118 instantiated class. In addition, lookups that were not
14119 ambiguous before may be ambiguous now. Therefore, we perform
14120 the lookup again. */
14121 qualifying_scope = BINFO_TYPE (BASELINK_ACCESS_BINFO (baselink));
14122 qualifying_scope = tsubst (qualifying_scope, args,
14123 complain, in_decl);
14124 fns = BASELINK_FUNCTIONS (baselink);
14125 optype = tsubst (BASELINK_OPTYPE (baselink), args, complain, in_decl);
14126 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
14128 template_id_p = true;
14129 template_args = TREE_OPERAND (fns, 1);
14130 fns = TREE_OPERAND (fns, 0);
14131 if (template_args)
14132 template_args = tsubst_template_args (template_args, args,
14133 complain, in_decl);
14135 name = DECL_NAME (get_first_fn (fns));
14136 if (IDENTIFIER_TYPENAME_P (name))
14137 name = mangle_conv_op_name_for_type (optype);
14138 baselink = lookup_fnfields (qualifying_scope, name, /*protect=*/1);
14139 if (!baselink)
14141 if (constructor_name_p (name, qualifying_scope))
14143 if (complain & tf_error)
14144 error ("cannot call constructor %<%T::%D%> directly",
14145 qualifying_scope, name);
14147 return error_mark_node;
14150 /* If lookup found a single function, mark it as used at this
14151 point. (If it lookup found multiple functions the one selected
14152 later by overload resolution will be marked as used at that
14153 point.) */
14154 if (BASELINK_P (baselink))
14155 fns = BASELINK_FUNCTIONS (baselink);
14156 if (!template_id_p && !really_overloaded_fn (fns)
14157 && !mark_used (OVL_CURRENT (fns), complain) && !(complain & tf_error))
14158 return error_mark_node;
14160 /* Add back the template arguments, if present. */
14161 if (BASELINK_P (baselink) && template_id_p)
14162 BASELINK_FUNCTIONS (baselink)
14163 = build2 (TEMPLATE_ID_EXPR,
14164 unknown_type_node,
14165 BASELINK_FUNCTIONS (baselink),
14166 template_args);
14167 /* Update the conversion operator type. */
14168 if (BASELINK_P (baselink))
14169 BASELINK_OPTYPE (baselink) = optype;
14171 if (!object_type)
14172 object_type = current_class_type;
14174 if (qualified || name == complete_dtor_identifier)
14176 baselink = adjust_result_of_qualified_name_lookup (baselink,
14177 qualifying_scope,
14178 object_type);
14179 if (!qualified)
14180 /* We need to call adjust_result_of_qualified_name_lookup in case the
14181 destructor names a base class, but we unset BASELINK_QUALIFIED_P
14182 so that we still get virtual function binding. */
14183 BASELINK_QUALIFIED_P (baselink) = false;
14185 return baselink;
14188 /* Like tsubst_expr for a SCOPE_REF, given by QUALIFIED_ID. DONE is
14189 true if the qualified-id will be a postfix-expression in-and-of
14190 itself; false if more of the postfix-expression follows the
14191 QUALIFIED_ID. ADDRESS_P is true if the qualified-id is the operand
14192 of "&". */
14194 static tree
14195 tsubst_qualified_id (tree qualified_id, tree args,
14196 tsubst_flags_t complain, tree in_decl,
14197 bool done, bool address_p)
14199 tree expr;
14200 tree scope;
14201 tree name;
14202 bool is_template;
14203 tree template_args;
14204 location_t loc = UNKNOWN_LOCATION;
14206 gcc_assert (TREE_CODE (qualified_id) == SCOPE_REF);
14208 /* Figure out what name to look up. */
14209 name = TREE_OPERAND (qualified_id, 1);
14210 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
14212 is_template = true;
14213 loc = EXPR_LOCATION (name);
14214 template_args = TREE_OPERAND (name, 1);
14215 if (template_args)
14216 template_args = tsubst_template_args (template_args, args,
14217 complain, in_decl);
14218 if (template_args == error_mark_node)
14219 return error_mark_node;
14220 name = TREE_OPERAND (name, 0);
14222 else
14224 is_template = false;
14225 template_args = NULL_TREE;
14228 /* Substitute into the qualifying scope. When there are no ARGS, we
14229 are just trying to simplify a non-dependent expression. In that
14230 case the qualifying scope may be dependent, and, in any case,
14231 substituting will not help. */
14232 scope = TREE_OPERAND (qualified_id, 0);
14233 if (args)
14235 scope = tsubst (scope, args, complain, in_decl);
14236 expr = tsubst_copy (name, args, complain, in_decl);
14238 else
14239 expr = name;
14241 if (dependent_scope_p (scope))
14243 if (is_template)
14244 expr = build_min_nt_loc (loc, TEMPLATE_ID_EXPR, expr, template_args);
14245 tree r = build_qualified_name (NULL_TREE, scope, expr,
14246 QUALIFIED_NAME_IS_TEMPLATE (qualified_id));
14247 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (qualified_id);
14248 return r;
14251 if (!BASELINK_P (name) && !DECL_P (expr))
14253 if (TREE_CODE (expr) == BIT_NOT_EXPR)
14255 /* A BIT_NOT_EXPR is used to represent a destructor. */
14256 if (!check_dtor_name (scope, TREE_OPERAND (expr, 0)))
14258 error ("qualifying type %qT does not match destructor name ~%qT",
14259 scope, TREE_OPERAND (expr, 0));
14260 expr = error_mark_node;
14262 else
14263 expr = lookup_qualified_name (scope, complete_dtor_identifier,
14264 /*is_type_p=*/0, false);
14266 else
14267 expr = lookup_qualified_name (scope, expr, /*is_type_p=*/0, false);
14268 if (TREE_CODE (TREE_CODE (expr) == TEMPLATE_DECL
14269 ? DECL_TEMPLATE_RESULT (expr) : expr) == TYPE_DECL)
14271 if (complain & tf_error)
14273 error ("dependent-name %qE is parsed as a non-type, but "
14274 "instantiation yields a type", qualified_id);
14275 inform (input_location, "say %<typename %E%> if a type is meant", qualified_id);
14277 return error_mark_node;
14281 if (DECL_P (expr))
14283 check_accessibility_of_qualified_id (expr, /*object_type=*/NULL_TREE,
14284 scope);
14285 /* Remember that there was a reference to this entity. */
14286 if (!mark_used (expr, complain) && !(complain & tf_error))
14287 return error_mark_node;
14290 if (expr == error_mark_node || TREE_CODE (expr) == TREE_LIST)
14292 if (complain & tf_error)
14293 qualified_name_lookup_error (scope,
14294 TREE_OPERAND (qualified_id, 1),
14295 expr, input_location);
14296 return error_mark_node;
14299 if (is_template)
14301 if (variable_template_p (expr))
14302 expr = lookup_and_finish_template_variable (expr, template_args,
14303 complain);
14304 else
14305 expr = lookup_template_function (expr, template_args);
14308 if (expr == error_mark_node && complain & tf_error)
14309 qualified_name_lookup_error (scope, TREE_OPERAND (qualified_id, 1),
14310 expr, input_location);
14311 else if (TYPE_P (scope))
14313 expr = (adjust_result_of_qualified_name_lookup
14314 (expr, scope, current_nonlambda_class_type ()));
14315 expr = (finish_qualified_id_expr
14316 (scope, expr, done, address_p && PTRMEM_OK_P (qualified_id),
14317 QUALIFIED_NAME_IS_TEMPLATE (qualified_id),
14318 /*template_arg_p=*/false, complain));
14321 /* Expressions do not generally have reference type. */
14322 if (TREE_CODE (expr) != SCOPE_REF
14323 /* However, if we're about to form a pointer-to-member, we just
14324 want the referenced member referenced. */
14325 && TREE_CODE (expr) != OFFSET_REF)
14326 expr = convert_from_reference (expr);
14328 if (REF_PARENTHESIZED_P (qualified_id))
14329 expr = force_paren_expr (expr);
14331 return expr;
14334 /* tsubst the initializer for a VAR_DECL. INIT is the unsubstituted
14335 initializer, DECL is the substituted VAR_DECL. Other arguments are as
14336 for tsubst. */
14338 static tree
14339 tsubst_init (tree init, tree decl, tree args,
14340 tsubst_flags_t complain, tree in_decl)
14342 if (!init)
14343 return NULL_TREE;
14345 init = tsubst_expr (init, args, complain, in_decl, false);
14347 if (!init && TREE_TYPE (decl) != error_mark_node)
14349 /* If we had an initializer but it
14350 instantiated to nothing,
14351 value-initialize the object. This will
14352 only occur when the initializer was a
14353 pack expansion where the parameter packs
14354 used in that expansion were of length
14355 zero. */
14356 init = build_value_init (TREE_TYPE (decl),
14357 complain);
14358 if (TREE_CODE (init) == AGGR_INIT_EXPR)
14359 init = get_target_expr_sfinae (init, complain);
14362 return init;
14365 /* Like tsubst, but deals with expressions. This function just replaces
14366 template parms; to finish processing the resultant expression, use
14367 tsubst_copy_and_build or tsubst_expr. */
14369 static tree
14370 tsubst_copy (tree t, tree args, tsubst_flags_t complain, tree in_decl)
14372 enum tree_code code;
14373 tree r;
14375 if (t == NULL_TREE || t == error_mark_node || args == NULL_TREE)
14376 return t;
14378 code = TREE_CODE (t);
14380 switch (code)
14382 case PARM_DECL:
14383 r = retrieve_local_specialization (t);
14385 if (r == NULL_TREE)
14387 /* We get here for a use of 'this' in an NSDMI as part of a
14388 constructor call or as part of an aggregate initialization. */
14389 if (DECL_NAME (t) == this_identifier
14390 && ((current_function_decl
14391 && DECL_CONSTRUCTOR_P (current_function_decl))
14392 || (current_class_ref
14393 && TREE_CODE (current_class_ref) == PLACEHOLDER_EXPR)))
14394 return current_class_ptr;
14396 /* This can happen for a parameter name used later in a function
14397 declaration (such as in a late-specified return type). Just
14398 make a dummy decl, since it's only used for its type. */
14399 gcc_assert (cp_unevaluated_operand != 0);
14400 r = tsubst_decl (t, args, complain);
14401 /* Give it the template pattern as its context; its true context
14402 hasn't been instantiated yet and this is good enough for
14403 mangling. */
14404 DECL_CONTEXT (r) = DECL_CONTEXT (t);
14407 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
14408 r = ARGUMENT_PACK_SELECT_ARG (r);
14409 if (!mark_used (r, complain) && !(complain & tf_error))
14410 return error_mark_node;
14411 return r;
14413 case CONST_DECL:
14415 tree enum_type;
14416 tree v;
14418 if (DECL_TEMPLATE_PARM_P (t))
14419 return tsubst_copy (DECL_INITIAL (t), args, complain, in_decl);
14420 /* There is no need to substitute into namespace-scope
14421 enumerators. */
14422 if (DECL_NAMESPACE_SCOPE_P (t))
14423 return t;
14424 /* If ARGS is NULL, then T is known to be non-dependent. */
14425 if (args == NULL_TREE)
14426 return scalar_constant_value (t);
14428 /* Unfortunately, we cannot just call lookup_name here.
14429 Consider:
14431 template <int I> int f() {
14432 enum E { a = I };
14433 struct S { void g() { E e = a; } };
14436 When we instantiate f<7>::S::g(), say, lookup_name is not
14437 clever enough to find f<7>::a. */
14438 enum_type
14439 = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
14440 /*entering_scope=*/0);
14442 for (v = TYPE_VALUES (enum_type);
14443 v != NULL_TREE;
14444 v = TREE_CHAIN (v))
14445 if (TREE_PURPOSE (v) == DECL_NAME (t))
14446 return TREE_VALUE (v);
14448 /* We didn't find the name. That should never happen; if
14449 name-lookup found it during preliminary parsing, we
14450 should find it again here during instantiation. */
14451 gcc_unreachable ();
14453 return t;
14455 case FIELD_DECL:
14456 if (PACK_EXPANSION_P (TREE_TYPE (t)))
14458 /* Check for a local specialization set up by
14459 tsubst_pack_expansion. */
14460 if (tree r = retrieve_local_specialization (t))
14462 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
14463 r = ARGUMENT_PACK_SELECT_ARG (r);
14464 return r;
14467 /* When retrieving a capture pack from a generic lambda, remove the
14468 lambda call op's own template argument list from ARGS. Only the
14469 template arguments active for the closure type should be used to
14470 retrieve the pack specialization. */
14471 if (LAMBDA_FUNCTION_P (current_function_decl)
14472 && (template_class_depth (DECL_CONTEXT (t))
14473 != TMPL_ARGS_DEPTH (args)))
14474 args = strip_innermost_template_args (args, 1);
14476 /* Otherwise return the full NONTYPE_ARGUMENT_PACK that
14477 tsubst_decl put in the hash table. */
14478 return retrieve_specialization (t, args, 0);
14481 if (DECL_CONTEXT (t))
14483 tree ctx;
14485 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
14486 /*entering_scope=*/1);
14487 if (ctx != DECL_CONTEXT (t))
14489 tree r = lookup_field (ctx, DECL_NAME (t), 0, false);
14490 if (!r)
14492 if (complain & tf_error)
14493 error ("using invalid field %qD", t);
14494 return error_mark_node;
14496 return r;
14500 return t;
14502 case VAR_DECL:
14503 case FUNCTION_DECL:
14504 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
14505 r = tsubst (t, args, complain, in_decl);
14506 else if (local_variable_p (t)
14507 && uses_template_parms (DECL_CONTEXT (t)))
14509 r = retrieve_local_specialization (t);
14510 if (r == NULL_TREE)
14512 /* First try name lookup to find the instantiation. */
14513 r = lookup_name (DECL_NAME (t));
14514 if (r)
14516 /* Make sure that the one we found is the one we want. */
14517 tree ctx = DECL_CONTEXT (t);
14518 if (DECL_LANG_SPECIFIC (ctx) && DECL_TEMPLATE_INFO (ctx))
14519 ctx = tsubst (ctx, args, complain, in_decl);
14520 if (ctx != DECL_CONTEXT (r))
14521 r = NULL_TREE;
14524 if (r)
14525 /* OK */;
14526 else
14528 /* This can happen for a variable used in a
14529 late-specified return type of a local lambda, or for a
14530 local static or constant. Building a new VAR_DECL
14531 should be OK in all those cases. */
14532 r = tsubst_decl (t, args, complain);
14533 if (decl_maybe_constant_var_p (r))
14535 /* We can't call cp_finish_decl, so handle the
14536 initializer by hand. */
14537 tree init = tsubst_init (DECL_INITIAL (t), r, args,
14538 complain, in_decl);
14539 if (!processing_template_decl)
14540 init = maybe_constant_init (init);
14541 if (processing_template_decl
14542 ? potential_constant_expression (init)
14543 : reduced_constant_expression_p (init))
14544 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r)
14545 = TREE_CONSTANT (r) = true;
14546 DECL_INITIAL (r) = init;
14548 gcc_assert (cp_unevaluated_operand || TREE_STATIC (r)
14549 || decl_constant_var_p (r)
14550 || errorcount || sorrycount);
14551 if (!processing_template_decl
14552 && !TREE_STATIC (r))
14553 r = process_outer_var_ref (r, complain);
14555 /* Remember this for subsequent uses. */
14556 if (local_specializations)
14557 register_local_specialization (r, t);
14560 else
14561 r = t;
14562 if (!mark_used (r, complain))
14563 return error_mark_node;
14564 return r;
14566 case NAMESPACE_DECL:
14567 return t;
14569 case OVERLOAD:
14570 /* An OVERLOAD will always be a non-dependent overload set; an
14571 overload set from function scope will just be represented with an
14572 IDENTIFIER_NODE, and from class scope with a BASELINK. */
14573 gcc_assert (!uses_template_parms (t));
14574 return t;
14576 case BASELINK:
14577 return tsubst_baselink (t, current_nonlambda_class_type (),
14578 args, complain, in_decl);
14580 case TEMPLATE_DECL:
14581 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
14582 return tsubst (TREE_TYPE (DECL_TEMPLATE_RESULT (t)),
14583 args, complain, in_decl);
14584 else if (DECL_FUNCTION_TEMPLATE_P (t) && DECL_MEMBER_TEMPLATE_P (t))
14585 return tsubst (t, args, complain, in_decl);
14586 else if (DECL_CLASS_SCOPE_P (t)
14587 && uses_template_parms (DECL_CONTEXT (t)))
14589 /* Template template argument like the following example need
14590 special treatment:
14592 template <template <class> class TT> struct C {};
14593 template <class T> struct D {
14594 template <class U> struct E {};
14595 C<E> c; // #1
14597 D<int> d; // #2
14599 We are processing the template argument `E' in #1 for
14600 the template instantiation #2. Originally, `E' is a
14601 TEMPLATE_DECL with `D<T>' as its DECL_CONTEXT. Now we
14602 have to substitute this with one having context `D<int>'. */
14604 tree context = tsubst (DECL_CONTEXT (t), args, complain, in_decl);
14605 return lookup_field (context, DECL_NAME(t), 0, false);
14607 else
14608 /* Ordinary template template argument. */
14609 return t;
14611 case CAST_EXPR:
14612 case REINTERPRET_CAST_EXPR:
14613 case CONST_CAST_EXPR:
14614 case STATIC_CAST_EXPR:
14615 case DYNAMIC_CAST_EXPR:
14616 case IMPLICIT_CONV_EXPR:
14617 case CONVERT_EXPR:
14618 case NOP_EXPR:
14620 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14621 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14622 return build1 (code, type, op0);
14625 case SIZEOF_EXPR:
14626 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0))
14627 || ARGUMENT_PACK_P (TREE_OPERAND (t, 0)))
14629 tree expanded, op = TREE_OPERAND (t, 0);
14630 int len = 0;
14632 if (SIZEOF_EXPR_TYPE_P (t))
14633 op = TREE_TYPE (op);
14635 ++cp_unevaluated_operand;
14636 ++c_inhibit_evaluation_warnings;
14637 /* We only want to compute the number of arguments. */
14638 if (PACK_EXPANSION_P (op))
14639 expanded = tsubst_pack_expansion (op, args, complain, in_decl);
14640 else
14641 expanded = tsubst_template_args (ARGUMENT_PACK_ARGS (op),
14642 args, complain, in_decl);
14643 --cp_unevaluated_operand;
14644 --c_inhibit_evaluation_warnings;
14646 if (TREE_CODE (expanded) == TREE_VEC)
14648 len = TREE_VEC_LENGTH (expanded);
14649 /* Set TREE_USED for the benefit of -Wunused. */
14650 for (int i = 0; i < len; i++)
14651 if (DECL_P (TREE_VEC_ELT (expanded, i)))
14652 TREE_USED (TREE_VEC_ELT (expanded, i)) = true;
14655 if (expanded == error_mark_node)
14656 return error_mark_node;
14657 else if (PACK_EXPANSION_P (expanded)
14658 || (TREE_CODE (expanded) == TREE_VEC
14659 && pack_expansion_args_count (expanded)))
14662 if (PACK_EXPANSION_P (expanded))
14663 /* OK. */;
14664 else if (TREE_VEC_LENGTH (expanded) == 1)
14665 expanded = TREE_VEC_ELT (expanded, 0);
14666 else
14667 expanded = make_argument_pack (expanded);
14669 if (TYPE_P (expanded))
14670 return cxx_sizeof_or_alignof_type (expanded, SIZEOF_EXPR,
14671 complain & tf_error);
14672 else
14673 return cxx_sizeof_or_alignof_expr (expanded, SIZEOF_EXPR,
14674 complain & tf_error);
14676 else
14677 return build_int_cst (size_type_node, len);
14679 if (SIZEOF_EXPR_TYPE_P (t))
14681 r = tsubst (TREE_TYPE (TREE_OPERAND (t, 0)),
14682 args, complain, in_decl);
14683 r = build1 (NOP_EXPR, r, error_mark_node);
14684 r = build1 (SIZEOF_EXPR,
14685 tsubst (TREE_TYPE (t), args, complain, in_decl), r);
14686 SIZEOF_EXPR_TYPE_P (r) = 1;
14687 return r;
14689 /* Fall through */
14691 case INDIRECT_REF:
14692 case NEGATE_EXPR:
14693 case TRUTH_NOT_EXPR:
14694 case BIT_NOT_EXPR:
14695 case ADDR_EXPR:
14696 case UNARY_PLUS_EXPR: /* Unary + */
14697 case ALIGNOF_EXPR:
14698 case AT_ENCODE_EXPR:
14699 case ARROW_EXPR:
14700 case THROW_EXPR:
14701 case TYPEID_EXPR:
14702 case REALPART_EXPR:
14703 case IMAGPART_EXPR:
14704 case PAREN_EXPR:
14706 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14707 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14708 return build1 (code, type, op0);
14711 case COMPONENT_REF:
14713 tree object;
14714 tree name;
14716 object = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14717 name = TREE_OPERAND (t, 1);
14718 if (TREE_CODE (name) == BIT_NOT_EXPR)
14720 name = tsubst_copy (TREE_OPERAND (name, 0), args,
14721 complain, in_decl);
14722 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
14724 else if (TREE_CODE (name) == SCOPE_REF
14725 && TREE_CODE (TREE_OPERAND (name, 1)) == BIT_NOT_EXPR)
14727 tree base = tsubst_copy (TREE_OPERAND (name, 0), args,
14728 complain, in_decl);
14729 name = TREE_OPERAND (name, 1);
14730 name = tsubst_copy (TREE_OPERAND (name, 0), args,
14731 complain, in_decl);
14732 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
14733 name = build_qualified_name (/*type=*/NULL_TREE,
14734 base, name,
14735 /*template_p=*/false);
14737 else if (BASELINK_P (name))
14738 name = tsubst_baselink (name,
14739 non_reference (TREE_TYPE (object)),
14740 args, complain,
14741 in_decl);
14742 else
14743 name = tsubst_copy (name, args, complain, in_decl);
14744 return build_nt (COMPONENT_REF, object, name, NULL_TREE);
14747 case PLUS_EXPR:
14748 case MINUS_EXPR:
14749 case MULT_EXPR:
14750 case TRUNC_DIV_EXPR:
14751 case CEIL_DIV_EXPR:
14752 case FLOOR_DIV_EXPR:
14753 case ROUND_DIV_EXPR:
14754 case EXACT_DIV_EXPR:
14755 case BIT_AND_EXPR:
14756 case BIT_IOR_EXPR:
14757 case BIT_XOR_EXPR:
14758 case TRUNC_MOD_EXPR:
14759 case FLOOR_MOD_EXPR:
14760 case TRUTH_ANDIF_EXPR:
14761 case TRUTH_ORIF_EXPR:
14762 case TRUTH_AND_EXPR:
14763 case TRUTH_OR_EXPR:
14764 case RSHIFT_EXPR:
14765 case LSHIFT_EXPR:
14766 case RROTATE_EXPR:
14767 case LROTATE_EXPR:
14768 case EQ_EXPR:
14769 case NE_EXPR:
14770 case MAX_EXPR:
14771 case MIN_EXPR:
14772 case LE_EXPR:
14773 case GE_EXPR:
14774 case LT_EXPR:
14775 case GT_EXPR:
14776 case COMPOUND_EXPR:
14777 case DOTSTAR_EXPR:
14778 case MEMBER_REF:
14779 case PREDECREMENT_EXPR:
14780 case PREINCREMENT_EXPR:
14781 case POSTDECREMENT_EXPR:
14782 case POSTINCREMENT_EXPR:
14784 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14785 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14786 return build_nt (code, op0, op1);
14789 case SCOPE_REF:
14791 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14792 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14793 return build_qualified_name (/*type=*/NULL_TREE, op0, op1,
14794 QUALIFIED_NAME_IS_TEMPLATE (t));
14797 case ARRAY_REF:
14799 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14800 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14801 return build_nt (ARRAY_REF, op0, op1, NULL_TREE, NULL_TREE);
14804 case CALL_EXPR:
14806 int n = VL_EXP_OPERAND_LENGTH (t);
14807 tree result = build_vl_exp (CALL_EXPR, n);
14808 int i;
14809 for (i = 0; i < n; i++)
14810 TREE_OPERAND (t, i) = tsubst_copy (TREE_OPERAND (t, i), args,
14811 complain, in_decl);
14812 return result;
14815 case COND_EXPR:
14816 case MODOP_EXPR:
14817 case PSEUDO_DTOR_EXPR:
14818 case VEC_PERM_EXPR:
14820 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14821 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14822 tree op2 = tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl);
14823 r = build_nt (code, op0, op1, op2);
14824 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
14825 return r;
14828 case NEW_EXPR:
14830 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14831 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14832 tree op2 = tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl);
14833 r = build_nt (code, op0, op1, op2);
14834 NEW_EXPR_USE_GLOBAL (r) = NEW_EXPR_USE_GLOBAL (t);
14835 return r;
14838 case DELETE_EXPR:
14840 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14841 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14842 r = build_nt (code, op0, op1);
14843 DELETE_EXPR_USE_GLOBAL (r) = DELETE_EXPR_USE_GLOBAL (t);
14844 DELETE_EXPR_USE_VEC (r) = DELETE_EXPR_USE_VEC (t);
14845 return r;
14848 case TEMPLATE_ID_EXPR:
14850 /* Substituted template arguments */
14851 tree fn = TREE_OPERAND (t, 0);
14852 tree targs = TREE_OPERAND (t, 1);
14854 fn = tsubst_copy (fn, args, complain, in_decl);
14855 if (targs)
14856 targs = tsubst_template_args (targs, args, complain, in_decl);
14858 return lookup_template_function (fn, targs);
14861 case TREE_LIST:
14863 tree purpose, value, chain;
14865 if (t == void_list_node)
14866 return t;
14868 purpose = TREE_PURPOSE (t);
14869 if (purpose)
14870 purpose = tsubst_copy (purpose, args, complain, in_decl);
14871 value = TREE_VALUE (t);
14872 if (value)
14873 value = tsubst_copy (value, args, complain, in_decl);
14874 chain = TREE_CHAIN (t);
14875 if (chain && chain != void_type_node)
14876 chain = tsubst_copy (chain, args, complain, in_decl);
14877 if (purpose == TREE_PURPOSE (t)
14878 && value == TREE_VALUE (t)
14879 && chain == TREE_CHAIN (t))
14880 return t;
14881 return tree_cons (purpose, value, chain);
14884 case RECORD_TYPE:
14885 case UNION_TYPE:
14886 case ENUMERAL_TYPE:
14887 case INTEGER_TYPE:
14888 case TEMPLATE_TYPE_PARM:
14889 case TEMPLATE_TEMPLATE_PARM:
14890 case BOUND_TEMPLATE_TEMPLATE_PARM:
14891 case TEMPLATE_PARM_INDEX:
14892 case POINTER_TYPE:
14893 case REFERENCE_TYPE:
14894 case OFFSET_TYPE:
14895 case FUNCTION_TYPE:
14896 case METHOD_TYPE:
14897 case ARRAY_TYPE:
14898 case TYPENAME_TYPE:
14899 case UNBOUND_CLASS_TEMPLATE:
14900 case TYPEOF_TYPE:
14901 case DECLTYPE_TYPE:
14902 case TYPE_DECL:
14903 return tsubst (t, args, complain, in_decl);
14905 case USING_DECL:
14906 t = DECL_NAME (t);
14907 /* Fall through. */
14908 case IDENTIFIER_NODE:
14909 if (IDENTIFIER_TYPENAME_P (t))
14911 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14912 return mangle_conv_op_name_for_type (new_type);
14914 else
14915 return t;
14917 case CONSTRUCTOR:
14918 /* This is handled by tsubst_copy_and_build. */
14919 gcc_unreachable ();
14921 case VA_ARG_EXPR:
14923 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14924 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14925 return build_x_va_arg (EXPR_LOCATION (t), op0, type);
14928 case CLEANUP_POINT_EXPR:
14929 /* We shouldn't have built any of these during initial template
14930 generation. Instead, they should be built during instantiation
14931 in response to the saved STMT_IS_FULL_EXPR_P setting. */
14932 gcc_unreachable ();
14934 case OFFSET_REF:
14936 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14937 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14938 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14939 r = build2 (code, type, op0, op1);
14940 PTRMEM_OK_P (r) = PTRMEM_OK_P (t);
14941 if (!mark_used (TREE_OPERAND (r, 1), complain)
14942 && !(complain & tf_error))
14943 return error_mark_node;
14944 return r;
14947 case EXPR_PACK_EXPANSION:
14948 error ("invalid use of pack expansion expression");
14949 return error_mark_node;
14951 case NONTYPE_ARGUMENT_PACK:
14952 error ("use %<...%> to expand argument pack");
14953 return error_mark_node;
14955 case VOID_CST:
14956 gcc_checking_assert (t == void_node && VOID_TYPE_P (TREE_TYPE (t)));
14957 return t;
14959 case INTEGER_CST:
14960 case REAL_CST:
14961 case STRING_CST:
14962 case COMPLEX_CST:
14964 /* Instantiate any typedefs in the type. */
14965 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14966 r = fold_convert (type, t);
14967 gcc_assert (TREE_CODE (r) == code);
14968 return r;
14971 case PTRMEM_CST:
14972 /* These can sometimes show up in a partial instantiation, but never
14973 involve template parms. */
14974 gcc_assert (!uses_template_parms (t));
14975 return t;
14977 case UNARY_LEFT_FOLD_EXPR:
14978 return tsubst_unary_left_fold (t, args, complain, in_decl);
14979 case UNARY_RIGHT_FOLD_EXPR:
14980 return tsubst_unary_right_fold (t, args, complain, in_decl);
14981 case BINARY_LEFT_FOLD_EXPR:
14982 return tsubst_binary_left_fold (t, args, complain, in_decl);
14983 case BINARY_RIGHT_FOLD_EXPR:
14984 return tsubst_binary_right_fold (t, args, complain, in_decl);
14986 default:
14987 /* We shouldn't get here, but keep going if !flag_checking. */
14988 if (flag_checking)
14989 gcc_unreachable ();
14990 return t;
14994 /* Helper function for tsubst_omp_clauses, used for instantiation of
14995 OMP_CLAUSE_DECL of clauses. */
14997 static tree
14998 tsubst_omp_clause_decl (tree decl, tree args, tsubst_flags_t complain,
14999 tree in_decl)
15001 if (decl == NULL_TREE)
15002 return NULL_TREE;
15004 /* Handle an OpenMP array section represented as a TREE_LIST (or
15005 OMP_CLAUSE_DEPEND_KIND). An OMP_CLAUSE_DEPEND (with a depend
15006 kind of OMP_CLAUSE_DEPEND_SINK) can also be represented as a
15007 TREE_LIST. We can handle it exactly the same as an array section
15008 (purpose, value, and a chain), even though the nomenclature
15009 (low_bound, length, etc) is different. */
15010 if (TREE_CODE (decl) == TREE_LIST)
15012 tree low_bound
15013 = tsubst_expr (TREE_PURPOSE (decl), args, complain, in_decl,
15014 /*integral_constant_expression_p=*/false);
15015 tree length = tsubst_expr (TREE_VALUE (decl), args, complain, in_decl,
15016 /*integral_constant_expression_p=*/false);
15017 tree chain = tsubst_omp_clause_decl (TREE_CHAIN (decl), args, complain,
15018 in_decl);
15019 if (TREE_PURPOSE (decl) == low_bound
15020 && TREE_VALUE (decl) == length
15021 && TREE_CHAIN (decl) == chain)
15022 return decl;
15023 tree ret = tree_cons (low_bound, length, chain);
15024 OMP_CLAUSE_DEPEND_SINK_NEGATIVE (ret)
15025 = OMP_CLAUSE_DEPEND_SINK_NEGATIVE (decl);
15026 return ret;
15028 tree ret = tsubst_expr (decl, args, complain, in_decl,
15029 /*integral_constant_expression_p=*/false);
15030 /* Undo convert_from_reference tsubst_expr could have called. */
15031 if (decl
15032 && REFERENCE_REF_P (ret)
15033 && !REFERENCE_REF_P (decl))
15034 ret = TREE_OPERAND (ret, 0);
15035 return ret;
15038 /* Like tsubst_copy, but specifically for OpenMP clauses. */
15040 static tree
15041 tsubst_omp_clauses (tree clauses, enum c_omp_region_type ort,
15042 tree args, tsubst_flags_t complain, tree in_decl)
15044 tree new_clauses = NULL_TREE, nc, oc;
15045 tree linear_no_step = NULL_TREE;
15047 for (oc = clauses; oc ; oc = OMP_CLAUSE_CHAIN (oc))
15049 nc = copy_node (oc);
15050 OMP_CLAUSE_CHAIN (nc) = new_clauses;
15051 new_clauses = nc;
15053 switch (OMP_CLAUSE_CODE (nc))
15055 case OMP_CLAUSE_LASTPRIVATE:
15056 if (OMP_CLAUSE_LASTPRIVATE_STMT (oc))
15058 OMP_CLAUSE_LASTPRIVATE_STMT (nc) = push_stmt_list ();
15059 tsubst_expr (OMP_CLAUSE_LASTPRIVATE_STMT (oc), args, complain,
15060 in_decl, /*integral_constant_expression_p=*/false);
15061 OMP_CLAUSE_LASTPRIVATE_STMT (nc)
15062 = pop_stmt_list (OMP_CLAUSE_LASTPRIVATE_STMT (nc));
15064 /* FALLTHRU */
15065 case OMP_CLAUSE_PRIVATE:
15066 case OMP_CLAUSE_SHARED:
15067 case OMP_CLAUSE_FIRSTPRIVATE:
15068 case OMP_CLAUSE_COPYIN:
15069 case OMP_CLAUSE_COPYPRIVATE:
15070 case OMP_CLAUSE_UNIFORM:
15071 case OMP_CLAUSE_DEPEND:
15072 case OMP_CLAUSE_FROM:
15073 case OMP_CLAUSE_TO:
15074 case OMP_CLAUSE_MAP:
15075 case OMP_CLAUSE_USE_DEVICE_PTR:
15076 case OMP_CLAUSE_IS_DEVICE_PTR:
15077 OMP_CLAUSE_DECL (nc)
15078 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
15079 in_decl);
15080 break;
15081 case OMP_CLAUSE_IF:
15082 case OMP_CLAUSE_NUM_THREADS:
15083 case OMP_CLAUSE_SCHEDULE:
15084 case OMP_CLAUSE_COLLAPSE:
15085 case OMP_CLAUSE_FINAL:
15086 case OMP_CLAUSE_DEVICE:
15087 case OMP_CLAUSE_DIST_SCHEDULE:
15088 case OMP_CLAUSE_NUM_TEAMS:
15089 case OMP_CLAUSE_THREAD_LIMIT:
15090 case OMP_CLAUSE_SAFELEN:
15091 case OMP_CLAUSE_SIMDLEN:
15092 case OMP_CLAUSE_NUM_TASKS:
15093 case OMP_CLAUSE_GRAINSIZE:
15094 case OMP_CLAUSE_PRIORITY:
15095 case OMP_CLAUSE_ORDERED:
15096 case OMP_CLAUSE_HINT:
15097 case OMP_CLAUSE_NUM_GANGS:
15098 case OMP_CLAUSE_NUM_WORKERS:
15099 case OMP_CLAUSE_VECTOR_LENGTH:
15100 case OMP_CLAUSE_WORKER:
15101 case OMP_CLAUSE_VECTOR:
15102 case OMP_CLAUSE_ASYNC:
15103 case OMP_CLAUSE_WAIT:
15104 OMP_CLAUSE_OPERAND (nc, 0)
15105 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 0), args, complain,
15106 in_decl, /*integral_constant_expression_p=*/false);
15107 break;
15108 case OMP_CLAUSE_REDUCTION:
15109 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (oc))
15111 tree placeholder = OMP_CLAUSE_REDUCTION_PLACEHOLDER (oc);
15112 if (TREE_CODE (placeholder) == SCOPE_REF)
15114 tree scope = tsubst (TREE_OPERAND (placeholder, 0), args,
15115 complain, in_decl);
15116 OMP_CLAUSE_REDUCTION_PLACEHOLDER (nc)
15117 = build_qualified_name (NULL_TREE, scope,
15118 TREE_OPERAND (placeholder, 1),
15119 false);
15121 else
15122 gcc_assert (identifier_p (placeholder));
15124 OMP_CLAUSE_DECL (nc)
15125 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
15126 in_decl);
15127 break;
15128 case OMP_CLAUSE_GANG:
15129 case OMP_CLAUSE_ALIGNED:
15130 OMP_CLAUSE_DECL (nc)
15131 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
15132 in_decl);
15133 OMP_CLAUSE_OPERAND (nc, 1)
15134 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 1), args, complain,
15135 in_decl, /*integral_constant_expression_p=*/false);
15136 break;
15137 case OMP_CLAUSE_LINEAR:
15138 OMP_CLAUSE_DECL (nc)
15139 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
15140 in_decl);
15141 if (OMP_CLAUSE_LINEAR_STEP (oc) == NULL_TREE)
15143 gcc_assert (!linear_no_step);
15144 linear_no_step = nc;
15146 else if (OMP_CLAUSE_LINEAR_VARIABLE_STRIDE (oc))
15147 OMP_CLAUSE_LINEAR_STEP (nc)
15148 = tsubst_omp_clause_decl (OMP_CLAUSE_LINEAR_STEP (oc), args,
15149 complain, in_decl);
15150 else
15151 OMP_CLAUSE_LINEAR_STEP (nc)
15152 = tsubst_expr (OMP_CLAUSE_LINEAR_STEP (oc), args, complain,
15153 in_decl,
15154 /*integral_constant_expression_p=*/false);
15155 break;
15156 case OMP_CLAUSE_NOWAIT:
15157 case OMP_CLAUSE_DEFAULT:
15158 case OMP_CLAUSE_UNTIED:
15159 case OMP_CLAUSE_MERGEABLE:
15160 case OMP_CLAUSE_INBRANCH:
15161 case OMP_CLAUSE_NOTINBRANCH:
15162 case OMP_CLAUSE_PROC_BIND:
15163 case OMP_CLAUSE_FOR:
15164 case OMP_CLAUSE_PARALLEL:
15165 case OMP_CLAUSE_SECTIONS:
15166 case OMP_CLAUSE_TASKGROUP:
15167 case OMP_CLAUSE_NOGROUP:
15168 case OMP_CLAUSE_THREADS:
15169 case OMP_CLAUSE_SIMD:
15170 case OMP_CLAUSE_DEFAULTMAP:
15171 case OMP_CLAUSE_INDEPENDENT:
15172 case OMP_CLAUSE_AUTO:
15173 case OMP_CLAUSE_SEQ:
15174 break;
15175 case OMP_CLAUSE_TILE:
15177 tree lnc, loc;
15178 for (lnc = OMP_CLAUSE_TILE_LIST (nc),
15179 loc = OMP_CLAUSE_TILE_LIST (oc);
15180 loc;
15181 loc = TREE_CHAIN (loc), lnc = TREE_CHAIN (lnc))
15183 TREE_VALUE (lnc) = tsubst_expr (TREE_VALUE (loc), args,
15184 complain, in_decl, false);
15187 break;
15188 default:
15189 gcc_unreachable ();
15191 if ((ort & C_ORT_OMP_DECLARE_SIMD) == C_ORT_OMP)
15192 switch (OMP_CLAUSE_CODE (nc))
15194 case OMP_CLAUSE_SHARED:
15195 case OMP_CLAUSE_PRIVATE:
15196 case OMP_CLAUSE_FIRSTPRIVATE:
15197 case OMP_CLAUSE_LASTPRIVATE:
15198 case OMP_CLAUSE_COPYPRIVATE:
15199 case OMP_CLAUSE_LINEAR:
15200 case OMP_CLAUSE_REDUCTION:
15201 case OMP_CLAUSE_USE_DEVICE_PTR:
15202 case OMP_CLAUSE_IS_DEVICE_PTR:
15203 /* tsubst_expr on SCOPE_REF results in returning
15204 finish_non_static_data_member result. Undo that here. */
15205 if (TREE_CODE (OMP_CLAUSE_DECL (oc)) == SCOPE_REF
15206 && (TREE_CODE (TREE_OPERAND (OMP_CLAUSE_DECL (oc), 1))
15207 == IDENTIFIER_NODE))
15209 tree t = OMP_CLAUSE_DECL (nc);
15210 tree v = t;
15211 while (v)
15212 switch (TREE_CODE (v))
15214 case COMPONENT_REF:
15215 case MEM_REF:
15216 case INDIRECT_REF:
15217 CASE_CONVERT:
15218 case POINTER_PLUS_EXPR:
15219 v = TREE_OPERAND (v, 0);
15220 continue;
15221 case PARM_DECL:
15222 if (DECL_CONTEXT (v) == current_function_decl
15223 && DECL_ARTIFICIAL (v)
15224 && DECL_NAME (v) == this_identifier)
15225 OMP_CLAUSE_DECL (nc) = TREE_OPERAND (t, 1);
15226 /* FALLTHRU */
15227 default:
15228 v = NULL_TREE;
15229 break;
15232 else if (VAR_P (OMP_CLAUSE_DECL (oc))
15233 && DECL_HAS_VALUE_EXPR_P (OMP_CLAUSE_DECL (oc))
15234 && DECL_ARTIFICIAL (OMP_CLAUSE_DECL (oc))
15235 && DECL_LANG_SPECIFIC (OMP_CLAUSE_DECL (oc))
15236 && DECL_OMP_PRIVATIZED_MEMBER (OMP_CLAUSE_DECL (oc)))
15238 tree decl = OMP_CLAUSE_DECL (nc);
15239 if (VAR_P (decl))
15241 if (!DECL_LANG_SPECIFIC (decl))
15242 retrofit_lang_decl (decl);
15243 DECL_OMP_PRIVATIZED_MEMBER (decl) = 1;
15246 break;
15247 default:
15248 break;
15252 new_clauses = nreverse (new_clauses);
15253 if (ort != C_ORT_OMP_DECLARE_SIMD)
15255 new_clauses = finish_omp_clauses (new_clauses, ort);
15256 if (linear_no_step)
15257 for (nc = new_clauses; nc; nc = OMP_CLAUSE_CHAIN (nc))
15258 if (nc == linear_no_step)
15260 OMP_CLAUSE_LINEAR_STEP (nc) = NULL_TREE;
15261 break;
15264 return new_clauses;
15267 /* Like tsubst_copy_and_build, but unshare TREE_LIST nodes. */
15269 static tree
15270 tsubst_copy_asm_operands (tree t, tree args, tsubst_flags_t complain,
15271 tree in_decl)
15273 #define RECUR(t) tsubst_copy_asm_operands (t, args, complain, in_decl)
15275 tree purpose, value, chain;
15277 if (t == NULL)
15278 return t;
15280 if (TREE_CODE (t) != TREE_LIST)
15281 return tsubst_copy_and_build (t, args, complain, in_decl,
15282 /*function_p=*/false,
15283 /*integral_constant_expression_p=*/false);
15285 if (t == void_list_node)
15286 return t;
15288 purpose = TREE_PURPOSE (t);
15289 if (purpose)
15290 purpose = RECUR (purpose);
15291 value = TREE_VALUE (t);
15292 if (value)
15294 if (TREE_CODE (value) != LABEL_DECL)
15295 value = RECUR (value);
15296 else
15298 value = lookup_label (DECL_NAME (value));
15299 gcc_assert (TREE_CODE (value) == LABEL_DECL);
15300 TREE_USED (value) = 1;
15303 chain = TREE_CHAIN (t);
15304 if (chain && chain != void_type_node)
15305 chain = RECUR (chain);
15306 return tree_cons (purpose, value, chain);
15307 #undef RECUR
15310 /* Used to temporarily communicate the list of #pragma omp parallel
15311 clauses to #pragma omp for instantiation if they are combined
15312 together. */
15314 static tree *omp_parallel_combined_clauses;
15316 /* Substitute one OMP_FOR iterator. */
15318 static void
15319 tsubst_omp_for_iterator (tree t, int i, tree declv, tree orig_declv,
15320 tree initv, tree condv, tree incrv, tree *clauses,
15321 tree args, tsubst_flags_t complain, tree in_decl,
15322 bool integral_constant_expression_p)
15324 #define RECUR(NODE) \
15325 tsubst_expr ((NODE), args, complain, in_decl, \
15326 integral_constant_expression_p)
15327 tree decl, init, cond, incr;
15329 init = TREE_VEC_ELT (OMP_FOR_INIT (t), i);
15330 gcc_assert (TREE_CODE (init) == MODIFY_EXPR);
15332 if (orig_declv && OMP_FOR_ORIG_DECLS (t))
15334 tree o = TREE_VEC_ELT (OMP_FOR_ORIG_DECLS (t), i);
15335 TREE_VEC_ELT (orig_declv, i) = RECUR (o);
15338 decl = TREE_OPERAND (init, 0);
15339 init = TREE_OPERAND (init, 1);
15340 tree decl_expr = NULL_TREE;
15341 if (init && TREE_CODE (init) == DECL_EXPR)
15343 /* We need to jump through some hoops to handle declarations in the
15344 init-statement, since we might need to handle auto deduction,
15345 but we need to keep control of initialization. */
15346 decl_expr = init;
15347 init = DECL_INITIAL (DECL_EXPR_DECL (init));
15348 decl = tsubst_decl (decl, args, complain);
15350 else
15352 if (TREE_CODE (decl) == SCOPE_REF)
15354 decl = RECUR (decl);
15355 if (TREE_CODE (decl) == COMPONENT_REF)
15357 tree v = decl;
15358 while (v)
15359 switch (TREE_CODE (v))
15361 case COMPONENT_REF:
15362 case MEM_REF:
15363 case INDIRECT_REF:
15364 CASE_CONVERT:
15365 case POINTER_PLUS_EXPR:
15366 v = TREE_OPERAND (v, 0);
15367 continue;
15368 case PARM_DECL:
15369 if (DECL_CONTEXT (v) == current_function_decl
15370 && DECL_ARTIFICIAL (v)
15371 && DECL_NAME (v) == this_identifier)
15373 decl = TREE_OPERAND (decl, 1);
15374 decl = omp_privatize_field (decl, false);
15376 /* FALLTHRU */
15377 default:
15378 v = NULL_TREE;
15379 break;
15383 else
15384 decl = RECUR (decl);
15386 init = RECUR (init);
15388 tree auto_node = type_uses_auto (TREE_TYPE (decl));
15389 if (auto_node && init)
15390 TREE_TYPE (decl)
15391 = do_auto_deduction (TREE_TYPE (decl), init, auto_node);
15393 gcc_assert (!type_dependent_expression_p (decl));
15395 if (!CLASS_TYPE_P (TREE_TYPE (decl)))
15397 if (decl_expr)
15399 /* Declare the variable, but don't let that initialize it. */
15400 tree init_sav = DECL_INITIAL (DECL_EXPR_DECL (decl_expr));
15401 DECL_INITIAL (DECL_EXPR_DECL (decl_expr)) = NULL_TREE;
15402 RECUR (decl_expr);
15403 DECL_INITIAL (DECL_EXPR_DECL (decl_expr)) = init_sav;
15406 cond = RECUR (TREE_VEC_ELT (OMP_FOR_COND (t), i));
15407 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
15408 if (TREE_CODE (incr) == MODIFY_EXPR)
15410 tree lhs = RECUR (TREE_OPERAND (incr, 0));
15411 tree rhs = RECUR (TREE_OPERAND (incr, 1));
15412 incr = build_x_modify_expr (EXPR_LOCATION (incr), lhs,
15413 NOP_EXPR, rhs, complain);
15415 else
15416 incr = RECUR (incr);
15417 TREE_VEC_ELT (declv, i) = decl;
15418 TREE_VEC_ELT (initv, i) = init;
15419 TREE_VEC_ELT (condv, i) = cond;
15420 TREE_VEC_ELT (incrv, i) = incr;
15421 return;
15424 if (decl_expr)
15426 /* Declare and initialize the variable. */
15427 RECUR (decl_expr);
15428 init = NULL_TREE;
15430 else if (init)
15432 tree *pc;
15433 int j;
15434 for (j = (omp_parallel_combined_clauses == NULL ? 1 : 0); j < 2; j++)
15436 for (pc = j ? clauses : omp_parallel_combined_clauses; *pc; )
15438 if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_PRIVATE
15439 && OMP_CLAUSE_DECL (*pc) == decl)
15440 break;
15441 else if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_LASTPRIVATE
15442 && OMP_CLAUSE_DECL (*pc) == decl)
15444 if (j)
15445 break;
15446 /* Move lastprivate (decl) clause to OMP_FOR_CLAUSES. */
15447 tree c = *pc;
15448 *pc = OMP_CLAUSE_CHAIN (c);
15449 OMP_CLAUSE_CHAIN (c) = *clauses;
15450 *clauses = c;
15452 else if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_FIRSTPRIVATE
15453 && OMP_CLAUSE_DECL (*pc) == decl)
15455 error ("iteration variable %qD should not be firstprivate",
15456 decl);
15457 *pc = OMP_CLAUSE_CHAIN (*pc);
15459 else if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_REDUCTION
15460 && OMP_CLAUSE_DECL (*pc) == decl)
15462 error ("iteration variable %qD should not be reduction",
15463 decl);
15464 *pc = OMP_CLAUSE_CHAIN (*pc);
15466 else
15467 pc = &OMP_CLAUSE_CHAIN (*pc);
15469 if (*pc)
15470 break;
15472 if (*pc == NULL_TREE)
15474 tree c = build_omp_clause (input_location, OMP_CLAUSE_PRIVATE);
15475 OMP_CLAUSE_DECL (c) = decl;
15476 c = finish_omp_clauses (c, C_ORT_OMP);
15477 if (c)
15479 OMP_CLAUSE_CHAIN (c) = *clauses;
15480 *clauses = c;
15484 cond = TREE_VEC_ELT (OMP_FOR_COND (t), i);
15485 if (COMPARISON_CLASS_P (cond))
15487 tree op0 = RECUR (TREE_OPERAND (cond, 0));
15488 tree op1 = RECUR (TREE_OPERAND (cond, 1));
15489 cond = build2 (TREE_CODE (cond), boolean_type_node, op0, op1);
15491 else
15492 cond = RECUR (cond);
15493 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
15494 switch (TREE_CODE (incr))
15496 case PREINCREMENT_EXPR:
15497 case PREDECREMENT_EXPR:
15498 case POSTINCREMENT_EXPR:
15499 case POSTDECREMENT_EXPR:
15500 incr = build2 (TREE_CODE (incr), TREE_TYPE (decl),
15501 RECUR (TREE_OPERAND (incr, 0)), NULL_TREE);
15502 break;
15503 case MODIFY_EXPR:
15504 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
15505 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
15507 tree rhs = TREE_OPERAND (incr, 1);
15508 tree lhs = RECUR (TREE_OPERAND (incr, 0));
15509 tree rhs0 = RECUR (TREE_OPERAND (rhs, 0));
15510 tree rhs1 = RECUR (TREE_OPERAND (rhs, 1));
15511 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
15512 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
15513 rhs0, rhs1));
15515 else
15516 incr = RECUR (incr);
15517 break;
15518 case MODOP_EXPR:
15519 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
15520 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
15522 tree lhs = RECUR (TREE_OPERAND (incr, 0));
15523 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
15524 build2 (TREE_CODE (TREE_OPERAND (incr, 1)),
15525 TREE_TYPE (decl), lhs,
15526 RECUR (TREE_OPERAND (incr, 2))));
15528 else if (TREE_CODE (TREE_OPERAND (incr, 1)) == NOP_EXPR
15529 && (TREE_CODE (TREE_OPERAND (incr, 2)) == PLUS_EXPR
15530 || (TREE_CODE (TREE_OPERAND (incr, 2)) == MINUS_EXPR)))
15532 tree rhs = TREE_OPERAND (incr, 2);
15533 tree lhs = RECUR (TREE_OPERAND (incr, 0));
15534 tree rhs0 = RECUR (TREE_OPERAND (rhs, 0));
15535 tree rhs1 = RECUR (TREE_OPERAND (rhs, 1));
15536 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
15537 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
15538 rhs0, rhs1));
15540 else
15541 incr = RECUR (incr);
15542 break;
15543 default:
15544 incr = RECUR (incr);
15545 break;
15548 TREE_VEC_ELT (declv, i) = decl;
15549 TREE_VEC_ELT (initv, i) = init;
15550 TREE_VEC_ELT (condv, i) = cond;
15551 TREE_VEC_ELT (incrv, i) = incr;
15552 #undef RECUR
15555 /* Helper function of tsubst_expr, find OMP_TEAMS inside
15556 of OMP_TARGET's body. */
15558 static tree
15559 tsubst_find_omp_teams (tree *tp, int *walk_subtrees, void *)
15561 *walk_subtrees = 0;
15562 switch (TREE_CODE (*tp))
15564 case OMP_TEAMS:
15565 return *tp;
15566 case BIND_EXPR:
15567 case STATEMENT_LIST:
15568 *walk_subtrees = 1;
15569 break;
15570 default:
15571 break;
15573 return NULL_TREE;
15576 /* Helper function for tsubst_expr. For decomposition declaration
15577 artificial base DECL, which is tsubsted PATTERN_DECL, tsubst
15578 also the corresponding decls representing the identifiers
15579 of the decomposition declaration. Return DECL if successful
15580 or error_mark_node otherwise, set *FIRST to the first decl
15581 in the list chained through DECL_CHAIN and *CNT to the number
15582 of such decls. */
15584 static tree
15585 tsubst_decomp_names (tree decl, tree pattern_decl, tree args,
15586 tsubst_flags_t complain, tree in_decl, tree *first,
15587 unsigned int *cnt)
15589 tree decl2, decl3, prev = decl;
15590 *cnt = 0;
15591 gcc_assert (DECL_NAME (decl) == NULL_TREE);
15592 for (decl2 = DECL_CHAIN (pattern_decl);
15593 decl2
15594 && VAR_P (decl2)
15595 && DECL_DECOMPOSITION_P (decl2)
15596 && DECL_NAME (decl2);
15597 decl2 = DECL_CHAIN (decl2))
15599 (*cnt)++;
15600 gcc_assert (DECL_HAS_VALUE_EXPR_P (decl2));
15601 tree v = DECL_VALUE_EXPR (decl2);
15602 DECL_HAS_VALUE_EXPR_P (decl2) = 0;
15603 SET_DECL_VALUE_EXPR (decl2, NULL_TREE);
15604 decl3 = tsubst (decl2, args, complain, in_decl);
15605 SET_DECL_VALUE_EXPR (decl2, v);
15606 DECL_HAS_VALUE_EXPR_P (decl2) = 1;
15607 if (VAR_P (decl3))
15608 DECL_TEMPLATE_INSTANTIATED (decl3) = 1;
15609 maybe_push_decl (decl3);
15610 if (error_operand_p (decl3))
15611 decl = error_mark_node;
15612 else if (decl != error_mark_node
15613 && DECL_CHAIN (decl3) != prev)
15615 gcc_assert (errorcount);
15616 decl = error_mark_node;
15618 else
15619 prev = decl3;
15621 *first = prev;
15622 return decl;
15625 /* Like tsubst_copy for expressions, etc. but also does semantic
15626 processing. */
15628 tree
15629 tsubst_expr (tree t, tree args, tsubst_flags_t complain, tree in_decl,
15630 bool integral_constant_expression_p)
15632 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
15633 #define RECUR(NODE) \
15634 tsubst_expr ((NODE), args, complain, in_decl, \
15635 integral_constant_expression_p)
15637 tree stmt, tmp;
15638 tree r;
15639 location_t loc;
15641 if (t == NULL_TREE || t == error_mark_node)
15642 return t;
15644 loc = input_location;
15645 if (EXPR_HAS_LOCATION (t))
15646 input_location = EXPR_LOCATION (t);
15647 if (STATEMENT_CODE_P (TREE_CODE (t)))
15648 current_stmt_tree ()->stmts_are_full_exprs_p = STMT_IS_FULL_EXPR_P (t);
15650 switch (TREE_CODE (t))
15652 case STATEMENT_LIST:
15654 tree_stmt_iterator i;
15655 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
15656 RECUR (tsi_stmt (i));
15657 break;
15660 case CTOR_INITIALIZER:
15661 finish_mem_initializers (tsubst_initializer_list
15662 (TREE_OPERAND (t, 0), args));
15663 break;
15665 case RETURN_EXPR:
15666 finish_return_stmt (RECUR (TREE_OPERAND (t, 0)));
15667 break;
15669 case EXPR_STMT:
15670 tmp = RECUR (EXPR_STMT_EXPR (t));
15671 if (EXPR_STMT_STMT_EXPR_RESULT (t))
15672 finish_stmt_expr_expr (tmp, cur_stmt_expr);
15673 else
15674 finish_expr_stmt (tmp);
15675 break;
15677 case USING_STMT:
15678 do_using_directive (USING_STMT_NAMESPACE (t));
15679 break;
15681 case DECL_EXPR:
15683 tree decl, pattern_decl;
15684 tree init;
15686 pattern_decl = decl = DECL_EXPR_DECL (t);
15687 if (TREE_CODE (decl) == LABEL_DECL)
15688 finish_label_decl (DECL_NAME (decl));
15689 else if (TREE_CODE (decl) == USING_DECL)
15691 tree scope = USING_DECL_SCOPE (decl);
15692 tree name = DECL_NAME (decl);
15694 scope = tsubst (scope, args, complain, in_decl);
15695 decl = lookup_qualified_name (scope, name,
15696 /*is_type_p=*/false,
15697 /*complain=*/false);
15698 if (decl == error_mark_node || TREE_CODE (decl) == TREE_LIST)
15699 qualified_name_lookup_error (scope, name, decl, input_location);
15700 else
15701 do_local_using_decl (decl, scope, name);
15703 else if (DECL_PACK_P (decl))
15705 /* Don't build up decls for a variadic capture proxy, we'll
15706 instantiate the elements directly as needed. */
15707 break;
15709 else
15711 init = DECL_INITIAL (decl);
15712 decl = tsubst (decl, args, complain, in_decl);
15713 if (decl != error_mark_node)
15715 /* By marking the declaration as instantiated, we avoid
15716 trying to instantiate it. Since instantiate_decl can't
15717 handle local variables, and since we've already done
15718 all that needs to be done, that's the right thing to
15719 do. */
15720 if (VAR_P (decl))
15721 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
15722 if (VAR_P (decl)
15723 && ANON_AGGR_TYPE_P (TREE_TYPE (decl)))
15724 /* Anonymous aggregates are a special case. */
15725 finish_anon_union (decl);
15726 else if (is_capture_proxy (DECL_EXPR_DECL (t)))
15728 DECL_CONTEXT (decl) = current_function_decl;
15729 if (DECL_NAME (decl) == this_identifier)
15731 tree lam = DECL_CONTEXT (current_function_decl);
15732 lam = CLASSTYPE_LAMBDA_EXPR (lam);
15733 LAMBDA_EXPR_THIS_CAPTURE (lam) = decl;
15735 insert_capture_proxy (decl);
15737 else if (DECL_IMPLICIT_TYPEDEF_P (t))
15738 /* We already did a pushtag. */;
15739 else if (TREE_CODE (decl) == FUNCTION_DECL
15740 && DECL_OMP_DECLARE_REDUCTION_P (decl)
15741 && DECL_FUNCTION_SCOPE_P (pattern_decl))
15743 DECL_CONTEXT (decl) = NULL_TREE;
15744 pushdecl (decl);
15745 DECL_CONTEXT (decl) = current_function_decl;
15746 cp_check_omp_declare_reduction (decl);
15748 else
15750 int const_init = false;
15751 maybe_push_decl (decl);
15752 if (VAR_P (decl)
15753 && DECL_PRETTY_FUNCTION_P (decl))
15755 /* For __PRETTY_FUNCTION__ we have to adjust the
15756 initializer. */
15757 const char *const name
15758 = cxx_printable_name (current_function_decl, 2);
15759 init = cp_fname_init (name, &TREE_TYPE (decl));
15761 else
15762 init = tsubst_init (init, decl, args, complain, in_decl);
15764 if (VAR_P (decl))
15765 const_init = (DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P
15766 (pattern_decl));
15767 cp_finish_decl (decl, init, const_init, NULL_TREE, 0);
15768 if (VAR_P (decl)
15769 && DECL_DECOMPOSITION_P (decl)
15770 && TREE_TYPE (pattern_decl) != error_mark_node)
15772 unsigned int cnt;
15773 tree first;
15774 decl = tsubst_decomp_names (decl, pattern_decl, args,
15775 complain, in_decl, &first,
15776 &cnt);
15777 if (decl != error_mark_node)
15778 cp_finish_decomp (decl, first, cnt);
15784 break;
15787 case FOR_STMT:
15788 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
15789 RECUR (FOR_INIT_STMT (t));
15790 finish_init_stmt (stmt);
15791 tmp = RECUR (FOR_COND (t));
15792 finish_for_cond (tmp, stmt, false);
15793 tmp = RECUR (FOR_EXPR (t));
15794 finish_for_expr (tmp, stmt);
15795 RECUR (FOR_BODY (t));
15796 finish_for_stmt (stmt);
15797 break;
15799 case RANGE_FOR_STMT:
15801 tree decl, expr;
15802 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
15803 decl = RANGE_FOR_DECL (t);
15804 decl = tsubst (decl, args, complain, in_decl);
15805 maybe_push_decl (decl);
15806 expr = RECUR (RANGE_FOR_EXPR (t));
15807 if (VAR_P (decl) && DECL_DECOMPOSITION_P (decl))
15809 unsigned int cnt;
15810 tree first;
15811 decl = tsubst_decomp_names (decl, RANGE_FOR_DECL (t), args,
15812 complain, in_decl, &first, &cnt);
15813 stmt = cp_convert_range_for (stmt, decl, expr, first, cnt,
15814 RANGE_FOR_IVDEP (t));
15816 else
15817 stmt = cp_convert_range_for (stmt, decl, expr, NULL_TREE, 0,
15818 RANGE_FOR_IVDEP (t));
15819 RECUR (RANGE_FOR_BODY (t));
15820 finish_for_stmt (stmt);
15822 break;
15824 case WHILE_STMT:
15825 stmt = begin_while_stmt ();
15826 tmp = RECUR (WHILE_COND (t));
15827 finish_while_stmt_cond (tmp, stmt, false);
15828 RECUR (WHILE_BODY (t));
15829 finish_while_stmt (stmt);
15830 break;
15832 case DO_STMT:
15833 stmt = begin_do_stmt ();
15834 RECUR (DO_BODY (t));
15835 finish_do_body (stmt);
15836 tmp = RECUR (DO_COND (t));
15837 finish_do_stmt (tmp, stmt, false);
15838 break;
15840 case IF_STMT:
15841 stmt = begin_if_stmt ();
15842 IF_STMT_CONSTEXPR_P (stmt) = IF_STMT_CONSTEXPR_P (t);
15843 tmp = RECUR (IF_COND (t));
15844 tmp = finish_if_stmt_cond (tmp, stmt);
15845 if (IF_STMT_CONSTEXPR_P (t) && integer_zerop (tmp))
15846 /* Don't instantiate the THEN_CLAUSE. */;
15847 else
15849 bool inhibit = integer_zerop (fold_non_dependent_expr (tmp));
15850 if (inhibit)
15851 ++c_inhibit_evaluation_warnings;
15852 RECUR (THEN_CLAUSE (t));
15853 if (inhibit)
15854 --c_inhibit_evaluation_warnings;
15856 finish_then_clause (stmt);
15858 if (IF_STMT_CONSTEXPR_P (t) && integer_nonzerop (tmp))
15859 /* Don't instantiate the ELSE_CLAUSE. */;
15860 else if (ELSE_CLAUSE (t))
15862 bool inhibit = integer_nonzerop (fold_non_dependent_expr (tmp));
15863 begin_else_clause (stmt);
15864 if (inhibit)
15865 ++c_inhibit_evaluation_warnings;
15866 RECUR (ELSE_CLAUSE (t));
15867 if (inhibit)
15868 --c_inhibit_evaluation_warnings;
15869 finish_else_clause (stmt);
15872 finish_if_stmt (stmt);
15873 break;
15875 case BIND_EXPR:
15876 if (BIND_EXPR_BODY_BLOCK (t))
15877 stmt = begin_function_body ();
15878 else
15879 stmt = begin_compound_stmt (BIND_EXPR_TRY_BLOCK (t)
15880 ? BCS_TRY_BLOCK : 0);
15882 RECUR (BIND_EXPR_BODY (t));
15884 if (BIND_EXPR_BODY_BLOCK (t))
15885 finish_function_body (stmt);
15886 else
15887 finish_compound_stmt (stmt);
15888 break;
15890 case BREAK_STMT:
15891 finish_break_stmt ();
15892 break;
15894 case CONTINUE_STMT:
15895 finish_continue_stmt ();
15896 break;
15898 case SWITCH_STMT:
15899 stmt = begin_switch_stmt ();
15900 tmp = RECUR (SWITCH_STMT_COND (t));
15901 finish_switch_cond (tmp, stmt);
15902 RECUR (SWITCH_STMT_BODY (t));
15903 finish_switch_stmt (stmt);
15904 break;
15906 case CASE_LABEL_EXPR:
15908 tree low = RECUR (CASE_LOW (t));
15909 tree high = RECUR (CASE_HIGH (t));
15910 tree l = finish_case_label (EXPR_LOCATION (t), low, high);
15911 if (l && TREE_CODE (l) == CASE_LABEL_EXPR)
15912 FALLTHROUGH_LABEL_P (CASE_LABEL (l))
15913 = FALLTHROUGH_LABEL_P (CASE_LABEL (t));
15915 break;
15917 case LABEL_EXPR:
15919 tree decl = LABEL_EXPR_LABEL (t);
15920 tree label;
15922 label = finish_label_stmt (DECL_NAME (decl));
15923 if (TREE_CODE (label) == LABEL_DECL)
15924 FALLTHROUGH_LABEL_P (label) = FALLTHROUGH_LABEL_P (decl);
15925 if (DECL_ATTRIBUTES (decl) != NULL_TREE)
15926 cplus_decl_attributes (&label, DECL_ATTRIBUTES (decl), 0);
15928 break;
15930 case GOTO_EXPR:
15931 tmp = GOTO_DESTINATION (t);
15932 if (TREE_CODE (tmp) != LABEL_DECL)
15933 /* Computed goto's must be tsubst'd into. On the other hand,
15934 non-computed gotos must not be; the identifier in question
15935 will have no binding. */
15936 tmp = RECUR (tmp);
15937 else
15938 tmp = DECL_NAME (tmp);
15939 finish_goto_stmt (tmp);
15940 break;
15942 case ASM_EXPR:
15944 tree string = RECUR (ASM_STRING (t));
15945 tree outputs = tsubst_copy_asm_operands (ASM_OUTPUTS (t), args,
15946 complain, in_decl);
15947 tree inputs = tsubst_copy_asm_operands (ASM_INPUTS (t), args,
15948 complain, in_decl);
15949 tree clobbers = tsubst_copy_asm_operands (ASM_CLOBBERS (t), args,
15950 complain, in_decl);
15951 tree labels = tsubst_copy_asm_operands (ASM_LABELS (t), args,
15952 complain, in_decl);
15953 tmp = finish_asm_stmt (ASM_VOLATILE_P (t), string, outputs, inputs,
15954 clobbers, labels);
15955 tree asm_expr = tmp;
15956 if (TREE_CODE (asm_expr) == CLEANUP_POINT_EXPR)
15957 asm_expr = TREE_OPERAND (asm_expr, 0);
15958 ASM_INPUT_P (asm_expr) = ASM_INPUT_P (t);
15960 break;
15962 case TRY_BLOCK:
15963 if (CLEANUP_P (t))
15965 stmt = begin_try_block ();
15966 RECUR (TRY_STMTS (t));
15967 finish_cleanup_try_block (stmt);
15968 finish_cleanup (RECUR (TRY_HANDLERS (t)), stmt);
15970 else
15972 tree compound_stmt = NULL_TREE;
15974 if (FN_TRY_BLOCK_P (t))
15975 stmt = begin_function_try_block (&compound_stmt);
15976 else
15977 stmt = begin_try_block ();
15979 RECUR (TRY_STMTS (t));
15981 if (FN_TRY_BLOCK_P (t))
15982 finish_function_try_block (stmt);
15983 else
15984 finish_try_block (stmt);
15986 RECUR (TRY_HANDLERS (t));
15987 if (FN_TRY_BLOCK_P (t))
15988 finish_function_handler_sequence (stmt, compound_stmt);
15989 else
15990 finish_handler_sequence (stmt);
15992 break;
15994 case HANDLER:
15996 tree decl = HANDLER_PARMS (t);
15998 if (decl)
16000 decl = tsubst (decl, args, complain, in_decl);
16001 /* Prevent instantiate_decl from trying to instantiate
16002 this variable. We've already done all that needs to be
16003 done. */
16004 if (decl != error_mark_node)
16005 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
16007 stmt = begin_handler ();
16008 finish_handler_parms (decl, stmt);
16009 RECUR (HANDLER_BODY (t));
16010 finish_handler (stmt);
16012 break;
16014 case TAG_DEFN:
16015 tmp = tsubst (TREE_TYPE (t), args, complain, NULL_TREE);
16016 if (CLASS_TYPE_P (tmp))
16018 /* Local classes are not independent templates; they are
16019 instantiated along with their containing function. And this
16020 way we don't have to deal with pushing out of one local class
16021 to instantiate a member of another local class. */
16022 tree fn;
16023 /* Closures are handled by the LAMBDA_EXPR. */
16024 gcc_assert (!LAMBDA_TYPE_P (TREE_TYPE (t)));
16025 complete_type (tmp);
16026 for (fn = TYPE_METHODS (tmp); fn; fn = DECL_CHAIN (fn))
16027 if (!DECL_ARTIFICIAL (fn))
16028 instantiate_decl (fn, /*defer_ok=*/false,
16029 /*expl_inst_class=*/false);
16031 break;
16033 case STATIC_ASSERT:
16035 tree condition;
16037 ++c_inhibit_evaluation_warnings;
16038 condition =
16039 tsubst_expr (STATIC_ASSERT_CONDITION (t),
16040 args,
16041 complain, in_decl,
16042 /*integral_constant_expression_p=*/true);
16043 --c_inhibit_evaluation_warnings;
16045 finish_static_assert (condition,
16046 STATIC_ASSERT_MESSAGE (t),
16047 STATIC_ASSERT_SOURCE_LOCATION (t),
16048 /*member_p=*/false);
16050 break;
16052 case OACC_KERNELS:
16053 case OACC_PARALLEL:
16054 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), C_ORT_ACC, args, complain,
16055 in_decl);
16056 stmt = begin_omp_parallel ();
16057 RECUR (OMP_BODY (t));
16058 finish_omp_construct (TREE_CODE (t), stmt, tmp);
16059 break;
16061 case OMP_PARALLEL:
16062 r = push_omp_privatization_clauses (OMP_PARALLEL_COMBINED (t));
16063 tmp = tsubst_omp_clauses (OMP_PARALLEL_CLAUSES (t), C_ORT_OMP, args,
16064 complain, in_decl);
16065 if (OMP_PARALLEL_COMBINED (t))
16066 omp_parallel_combined_clauses = &tmp;
16067 stmt = begin_omp_parallel ();
16068 RECUR (OMP_PARALLEL_BODY (t));
16069 gcc_assert (omp_parallel_combined_clauses == NULL);
16070 OMP_PARALLEL_COMBINED (finish_omp_parallel (tmp, stmt))
16071 = OMP_PARALLEL_COMBINED (t);
16072 pop_omp_privatization_clauses (r);
16073 break;
16075 case OMP_TASK:
16076 r = push_omp_privatization_clauses (false);
16077 tmp = tsubst_omp_clauses (OMP_TASK_CLAUSES (t), C_ORT_OMP, args,
16078 complain, in_decl);
16079 stmt = begin_omp_task ();
16080 RECUR (OMP_TASK_BODY (t));
16081 finish_omp_task (tmp, stmt);
16082 pop_omp_privatization_clauses (r);
16083 break;
16085 case OMP_FOR:
16086 case OMP_SIMD:
16087 case CILK_SIMD:
16088 case CILK_FOR:
16089 case OMP_DISTRIBUTE:
16090 case OMP_TASKLOOP:
16091 case OACC_LOOP:
16093 tree clauses, body, pre_body;
16094 tree declv = NULL_TREE, initv = NULL_TREE, condv = NULL_TREE;
16095 tree orig_declv = NULL_TREE;
16096 tree incrv = NULL_TREE;
16097 enum c_omp_region_type ort = C_ORT_OMP;
16098 int i;
16100 if (TREE_CODE (t) == CILK_SIMD || TREE_CODE (t) == CILK_FOR)
16101 ort = C_ORT_CILK;
16102 else if (TREE_CODE (t) == OACC_LOOP)
16103 ort = C_ORT_ACC;
16105 r = push_omp_privatization_clauses (OMP_FOR_INIT (t) == NULL_TREE);
16106 clauses = tsubst_omp_clauses (OMP_FOR_CLAUSES (t), ort, args, complain,
16107 in_decl);
16108 if (OMP_FOR_INIT (t) != NULL_TREE)
16110 declv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
16111 if (OMP_FOR_ORIG_DECLS (t))
16112 orig_declv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
16113 initv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
16114 condv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
16115 incrv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
16118 stmt = begin_omp_structured_block ();
16120 pre_body = push_stmt_list ();
16121 RECUR (OMP_FOR_PRE_BODY (t));
16122 pre_body = pop_stmt_list (pre_body);
16124 if (OMP_FOR_INIT (t) != NULL_TREE)
16125 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (t)); i++)
16126 tsubst_omp_for_iterator (t, i, declv, orig_declv, initv, condv,
16127 incrv, &clauses, args, complain, in_decl,
16128 integral_constant_expression_p);
16129 omp_parallel_combined_clauses = NULL;
16131 body = push_stmt_list ();
16132 RECUR (OMP_FOR_BODY (t));
16133 body = pop_stmt_list (body);
16135 if (OMP_FOR_INIT (t) != NULL_TREE)
16136 t = finish_omp_for (EXPR_LOCATION (t), TREE_CODE (t), declv,
16137 orig_declv, initv, condv, incrv, body, pre_body,
16138 NULL, clauses);
16139 else
16141 t = make_node (TREE_CODE (t));
16142 TREE_TYPE (t) = void_type_node;
16143 OMP_FOR_BODY (t) = body;
16144 OMP_FOR_PRE_BODY (t) = pre_body;
16145 OMP_FOR_CLAUSES (t) = clauses;
16146 SET_EXPR_LOCATION (t, EXPR_LOCATION (t));
16147 add_stmt (t);
16150 add_stmt (finish_omp_structured_block (stmt));
16151 pop_omp_privatization_clauses (r);
16153 break;
16155 case OMP_SECTIONS:
16156 omp_parallel_combined_clauses = NULL;
16157 /* FALLTHRU */
16158 case OMP_SINGLE:
16159 case OMP_TEAMS:
16160 case OMP_CRITICAL:
16161 r = push_omp_privatization_clauses (TREE_CODE (t) == OMP_TEAMS
16162 && OMP_TEAMS_COMBINED (t));
16163 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), C_ORT_OMP, args, complain,
16164 in_decl);
16165 stmt = push_stmt_list ();
16166 RECUR (OMP_BODY (t));
16167 stmt = pop_stmt_list (stmt);
16169 t = copy_node (t);
16170 OMP_BODY (t) = stmt;
16171 OMP_CLAUSES (t) = tmp;
16172 add_stmt (t);
16173 pop_omp_privatization_clauses (r);
16174 break;
16176 case OACC_DATA:
16177 case OMP_TARGET_DATA:
16178 case OMP_TARGET:
16179 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), (TREE_CODE (t) == OACC_DATA)
16180 ? C_ORT_ACC : C_ORT_OMP, args, complain,
16181 in_decl);
16182 keep_next_level (true);
16183 stmt = begin_omp_structured_block ();
16185 RECUR (OMP_BODY (t));
16186 stmt = finish_omp_structured_block (stmt);
16188 t = copy_node (t);
16189 OMP_BODY (t) = stmt;
16190 OMP_CLAUSES (t) = tmp;
16191 if (TREE_CODE (t) == OMP_TARGET && OMP_TARGET_COMBINED (t))
16193 tree teams = cp_walk_tree (&stmt, tsubst_find_omp_teams, NULL, NULL);
16194 if (teams)
16196 /* For combined target teams, ensure the num_teams and
16197 thread_limit clause expressions are evaluated on the host,
16198 before entering the target construct. */
16199 tree c;
16200 for (c = OMP_TEAMS_CLAUSES (teams);
16201 c; c = OMP_CLAUSE_CHAIN (c))
16202 if ((OMP_CLAUSE_CODE (c) == OMP_CLAUSE_NUM_TEAMS
16203 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_THREAD_LIMIT)
16204 && TREE_CODE (OMP_CLAUSE_OPERAND (c, 0)) != INTEGER_CST)
16206 tree expr = OMP_CLAUSE_OPERAND (c, 0);
16207 expr = force_target_expr (TREE_TYPE (expr), expr, tf_none);
16208 if (expr == error_mark_node)
16209 continue;
16210 tmp = TARGET_EXPR_SLOT (expr);
16211 add_stmt (expr);
16212 OMP_CLAUSE_OPERAND (c, 0) = expr;
16213 tree tc = build_omp_clause (OMP_CLAUSE_LOCATION (c),
16214 OMP_CLAUSE_FIRSTPRIVATE);
16215 OMP_CLAUSE_DECL (tc) = tmp;
16216 OMP_CLAUSE_CHAIN (tc) = OMP_TARGET_CLAUSES (t);
16217 OMP_TARGET_CLAUSES (t) = tc;
16221 add_stmt (t);
16222 break;
16224 case OACC_DECLARE:
16225 t = copy_node (t);
16226 tmp = tsubst_omp_clauses (OACC_DECLARE_CLAUSES (t), C_ORT_ACC, args,
16227 complain, in_decl);
16228 OACC_DECLARE_CLAUSES (t) = tmp;
16229 add_stmt (t);
16230 break;
16232 case OMP_TARGET_UPDATE:
16233 case OMP_TARGET_ENTER_DATA:
16234 case OMP_TARGET_EXIT_DATA:
16235 tmp = tsubst_omp_clauses (OMP_STANDALONE_CLAUSES (t), C_ORT_OMP, args,
16236 complain, in_decl);
16237 t = copy_node (t);
16238 OMP_STANDALONE_CLAUSES (t) = tmp;
16239 add_stmt (t);
16240 break;
16242 case OACC_ENTER_DATA:
16243 case OACC_EXIT_DATA:
16244 case OACC_UPDATE:
16245 tmp = tsubst_omp_clauses (OMP_STANDALONE_CLAUSES (t), C_ORT_ACC, args,
16246 complain, in_decl);
16247 t = copy_node (t);
16248 OMP_STANDALONE_CLAUSES (t) = tmp;
16249 add_stmt (t);
16250 break;
16252 case OMP_ORDERED:
16253 tmp = tsubst_omp_clauses (OMP_ORDERED_CLAUSES (t), C_ORT_OMP, args,
16254 complain, in_decl);
16255 stmt = push_stmt_list ();
16256 RECUR (OMP_BODY (t));
16257 stmt = pop_stmt_list (stmt);
16259 t = copy_node (t);
16260 OMP_BODY (t) = stmt;
16261 OMP_ORDERED_CLAUSES (t) = tmp;
16262 add_stmt (t);
16263 break;
16265 case OMP_SECTION:
16266 case OMP_MASTER:
16267 case OMP_TASKGROUP:
16268 stmt = push_stmt_list ();
16269 RECUR (OMP_BODY (t));
16270 stmt = pop_stmt_list (stmt);
16272 t = copy_node (t);
16273 OMP_BODY (t) = stmt;
16274 add_stmt (t);
16275 break;
16277 case OMP_ATOMIC:
16278 gcc_assert (OMP_ATOMIC_DEPENDENT_P (t));
16279 if (TREE_CODE (TREE_OPERAND (t, 1)) != MODIFY_EXPR)
16281 tree op1 = TREE_OPERAND (t, 1);
16282 tree rhs1 = NULL_TREE;
16283 tree lhs, rhs;
16284 if (TREE_CODE (op1) == COMPOUND_EXPR)
16286 rhs1 = RECUR (TREE_OPERAND (op1, 0));
16287 op1 = TREE_OPERAND (op1, 1);
16289 lhs = RECUR (TREE_OPERAND (op1, 0));
16290 rhs = RECUR (TREE_OPERAND (op1, 1));
16291 finish_omp_atomic (OMP_ATOMIC, TREE_CODE (op1), lhs, rhs,
16292 NULL_TREE, NULL_TREE, rhs1,
16293 OMP_ATOMIC_SEQ_CST (t));
16295 else
16297 tree op1 = TREE_OPERAND (t, 1);
16298 tree v = NULL_TREE, lhs, rhs = NULL_TREE, lhs1 = NULL_TREE;
16299 tree rhs1 = NULL_TREE;
16300 enum tree_code code = TREE_CODE (TREE_OPERAND (op1, 1));
16301 enum tree_code opcode = NOP_EXPR;
16302 if (code == OMP_ATOMIC_READ)
16304 v = RECUR (TREE_OPERAND (op1, 0));
16305 lhs = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
16307 else if (code == OMP_ATOMIC_CAPTURE_OLD
16308 || code == OMP_ATOMIC_CAPTURE_NEW)
16310 tree op11 = TREE_OPERAND (TREE_OPERAND (op1, 1), 1);
16311 v = RECUR (TREE_OPERAND (op1, 0));
16312 lhs1 = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
16313 if (TREE_CODE (op11) == COMPOUND_EXPR)
16315 rhs1 = RECUR (TREE_OPERAND (op11, 0));
16316 op11 = TREE_OPERAND (op11, 1);
16318 lhs = RECUR (TREE_OPERAND (op11, 0));
16319 rhs = RECUR (TREE_OPERAND (op11, 1));
16320 opcode = TREE_CODE (op11);
16321 if (opcode == MODIFY_EXPR)
16322 opcode = NOP_EXPR;
16324 else
16326 code = OMP_ATOMIC;
16327 lhs = RECUR (TREE_OPERAND (op1, 0));
16328 rhs = RECUR (TREE_OPERAND (op1, 1));
16330 finish_omp_atomic (code, opcode, lhs, rhs, v, lhs1, rhs1,
16331 OMP_ATOMIC_SEQ_CST (t));
16333 break;
16335 case TRANSACTION_EXPR:
16337 int flags = 0;
16338 flags |= (TRANSACTION_EXPR_OUTER (t) ? TM_STMT_ATTR_OUTER : 0);
16339 flags |= (TRANSACTION_EXPR_RELAXED (t) ? TM_STMT_ATTR_RELAXED : 0);
16341 if (TRANSACTION_EXPR_IS_STMT (t))
16343 tree body = TRANSACTION_EXPR_BODY (t);
16344 tree noex = NULL_TREE;
16345 if (TREE_CODE (body) == MUST_NOT_THROW_EXPR)
16347 noex = MUST_NOT_THROW_COND (body);
16348 if (noex == NULL_TREE)
16349 noex = boolean_true_node;
16350 body = TREE_OPERAND (body, 0);
16352 stmt = begin_transaction_stmt (input_location, NULL, flags);
16353 RECUR (body);
16354 finish_transaction_stmt (stmt, NULL, flags, RECUR (noex));
16356 else
16358 stmt = build_transaction_expr (EXPR_LOCATION (t),
16359 RECUR (TRANSACTION_EXPR_BODY (t)),
16360 flags, NULL_TREE);
16361 RETURN (stmt);
16364 break;
16366 case MUST_NOT_THROW_EXPR:
16368 tree op0 = RECUR (TREE_OPERAND (t, 0));
16369 tree cond = RECUR (MUST_NOT_THROW_COND (t));
16370 RETURN (build_must_not_throw_expr (op0, cond));
16373 case EXPR_PACK_EXPANSION:
16374 error ("invalid use of pack expansion expression");
16375 RETURN (error_mark_node);
16377 case NONTYPE_ARGUMENT_PACK:
16378 error ("use %<...%> to expand argument pack");
16379 RETURN (error_mark_node);
16381 case CILK_SPAWN_STMT:
16382 cfun->calls_cilk_spawn = 1;
16383 RETURN (build_cilk_spawn (EXPR_LOCATION (t), RECUR (CILK_SPAWN_FN (t))));
16385 case CILK_SYNC_STMT:
16386 RETURN (build_cilk_sync ());
16388 case COMPOUND_EXPR:
16389 tmp = RECUR (TREE_OPERAND (t, 0));
16390 if (tmp == NULL_TREE)
16391 /* If the first operand was a statement, we're done with it. */
16392 RETURN (RECUR (TREE_OPERAND (t, 1)));
16393 RETURN (build_x_compound_expr (EXPR_LOCATION (t), tmp,
16394 RECUR (TREE_OPERAND (t, 1)),
16395 complain));
16397 case ANNOTATE_EXPR:
16398 tmp = RECUR (TREE_OPERAND (t, 0));
16399 RETURN (build2_loc (EXPR_LOCATION (t), ANNOTATE_EXPR,
16400 TREE_TYPE (tmp), tmp, RECUR (TREE_OPERAND (t, 1))));
16402 default:
16403 gcc_assert (!STATEMENT_CODE_P (TREE_CODE (t)));
16405 RETURN (tsubst_copy_and_build (t, args, complain, in_decl,
16406 /*function_p=*/false,
16407 integral_constant_expression_p));
16410 RETURN (NULL_TREE);
16411 out:
16412 input_location = loc;
16413 return r;
16414 #undef RECUR
16415 #undef RETURN
16418 /* Instantiate the special body of the artificial DECL_OMP_DECLARE_REDUCTION
16419 function. For description of the body see comment above
16420 cp_parser_omp_declare_reduction_exprs. */
16422 static void
16423 tsubst_omp_udr (tree t, tree args, tsubst_flags_t complain, tree in_decl)
16425 if (t == NULL_TREE || t == error_mark_node)
16426 return;
16428 gcc_assert (TREE_CODE (t) == STATEMENT_LIST);
16430 tree_stmt_iterator tsi;
16431 int i;
16432 tree stmts[7];
16433 memset (stmts, 0, sizeof stmts);
16434 for (i = 0, tsi = tsi_start (t);
16435 i < 7 && !tsi_end_p (tsi);
16436 i++, tsi_next (&tsi))
16437 stmts[i] = tsi_stmt (tsi);
16438 gcc_assert (tsi_end_p (tsi));
16440 if (i >= 3)
16442 gcc_assert (TREE_CODE (stmts[0]) == DECL_EXPR
16443 && TREE_CODE (stmts[1]) == DECL_EXPR);
16444 tree omp_out = tsubst (DECL_EXPR_DECL (stmts[0]),
16445 args, complain, in_decl);
16446 tree omp_in = tsubst (DECL_EXPR_DECL (stmts[1]),
16447 args, complain, in_decl);
16448 DECL_CONTEXT (omp_out) = current_function_decl;
16449 DECL_CONTEXT (omp_in) = current_function_decl;
16450 keep_next_level (true);
16451 tree block = begin_omp_structured_block ();
16452 tsubst_expr (stmts[2], args, complain, in_decl, false);
16453 block = finish_omp_structured_block (block);
16454 block = maybe_cleanup_point_expr_void (block);
16455 add_decl_expr (omp_out);
16456 if (TREE_NO_WARNING (DECL_EXPR_DECL (stmts[0])))
16457 TREE_NO_WARNING (omp_out) = 1;
16458 add_decl_expr (omp_in);
16459 finish_expr_stmt (block);
16461 if (i >= 6)
16463 gcc_assert (TREE_CODE (stmts[3]) == DECL_EXPR
16464 && TREE_CODE (stmts[4]) == DECL_EXPR);
16465 tree omp_priv = tsubst (DECL_EXPR_DECL (stmts[3]),
16466 args, complain, in_decl);
16467 tree omp_orig = tsubst (DECL_EXPR_DECL (stmts[4]),
16468 args, complain, in_decl);
16469 DECL_CONTEXT (omp_priv) = current_function_decl;
16470 DECL_CONTEXT (omp_orig) = current_function_decl;
16471 keep_next_level (true);
16472 tree block = begin_omp_structured_block ();
16473 tsubst_expr (stmts[5], args, complain, in_decl, false);
16474 block = finish_omp_structured_block (block);
16475 block = maybe_cleanup_point_expr_void (block);
16476 cp_walk_tree (&block, cp_remove_omp_priv_cleanup_stmt, omp_priv, NULL);
16477 add_decl_expr (omp_priv);
16478 add_decl_expr (omp_orig);
16479 finish_expr_stmt (block);
16480 if (i == 7)
16481 add_decl_expr (omp_orig);
16485 /* T is a postfix-expression that is not being used in a function
16486 call. Return the substituted version of T. */
16488 static tree
16489 tsubst_non_call_postfix_expression (tree t, tree args,
16490 tsubst_flags_t complain,
16491 tree in_decl)
16493 if (TREE_CODE (t) == SCOPE_REF)
16494 t = tsubst_qualified_id (t, args, complain, in_decl,
16495 /*done=*/false, /*address_p=*/false);
16496 else
16497 t = tsubst_copy_and_build (t, args, complain, in_decl,
16498 /*function_p=*/false,
16499 /*integral_constant_expression_p=*/false);
16501 return t;
16504 /* Like tsubst but deals with expressions and performs semantic
16505 analysis. FUNCTION_P is true if T is the "F" in "F (ARGS)". */
16507 tree
16508 tsubst_copy_and_build (tree t,
16509 tree args,
16510 tsubst_flags_t complain,
16511 tree in_decl,
16512 bool function_p,
16513 bool integral_constant_expression_p)
16515 #define RETURN(EXP) do { retval = (EXP); goto out; } while(0)
16516 #define RECUR(NODE) \
16517 tsubst_copy_and_build (NODE, args, complain, in_decl, \
16518 /*function_p=*/false, \
16519 integral_constant_expression_p)
16521 tree retval, op1;
16522 location_t loc;
16524 if (t == NULL_TREE || t == error_mark_node)
16525 return t;
16527 loc = input_location;
16528 if (EXPR_HAS_LOCATION (t))
16529 input_location = EXPR_LOCATION (t);
16531 /* N3276 decltype magic only applies to calls at the top level or on the
16532 right side of a comma. */
16533 tsubst_flags_t decltype_flag = (complain & tf_decltype);
16534 complain &= ~tf_decltype;
16536 switch (TREE_CODE (t))
16538 case USING_DECL:
16539 t = DECL_NAME (t);
16540 /* Fall through. */
16541 case IDENTIFIER_NODE:
16543 tree decl;
16544 cp_id_kind idk;
16545 bool non_integral_constant_expression_p;
16546 const char *error_msg;
16548 if (IDENTIFIER_TYPENAME_P (t))
16550 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16551 t = mangle_conv_op_name_for_type (new_type);
16554 /* Look up the name. */
16555 decl = lookup_name (t);
16557 /* By convention, expressions use ERROR_MARK_NODE to indicate
16558 failure, not NULL_TREE. */
16559 if (decl == NULL_TREE)
16560 decl = error_mark_node;
16562 decl = finish_id_expression (t, decl, NULL_TREE,
16563 &idk,
16564 integral_constant_expression_p,
16565 /*allow_non_integral_constant_expression_p=*/(cxx_dialect >= cxx11),
16566 &non_integral_constant_expression_p,
16567 /*template_p=*/false,
16568 /*done=*/true,
16569 /*address_p=*/false,
16570 /*template_arg_p=*/false,
16571 &error_msg,
16572 input_location);
16573 if (error_msg)
16574 error (error_msg);
16575 if (!function_p && identifier_p (decl))
16577 if (complain & tf_error)
16578 unqualified_name_lookup_error (decl);
16579 decl = error_mark_node;
16581 RETURN (decl);
16584 case TEMPLATE_ID_EXPR:
16586 tree object;
16587 tree templ = RECUR (TREE_OPERAND (t, 0));
16588 tree targs = TREE_OPERAND (t, 1);
16590 if (targs)
16591 targs = tsubst_template_args (targs, args, complain, in_decl);
16592 if (targs == error_mark_node)
16593 return error_mark_node;
16595 if (variable_template_p (templ))
16596 RETURN (lookup_and_finish_template_variable (templ, targs, complain));
16598 if (TREE_CODE (templ) == COMPONENT_REF)
16600 object = TREE_OPERAND (templ, 0);
16601 templ = TREE_OPERAND (templ, 1);
16603 else
16604 object = NULL_TREE;
16605 templ = lookup_template_function (templ, targs);
16607 if (object)
16608 RETURN (build3 (COMPONENT_REF, TREE_TYPE (templ),
16609 object, templ, NULL_TREE));
16610 else
16611 RETURN (baselink_for_fns (templ));
16614 case INDIRECT_REF:
16616 tree r = RECUR (TREE_OPERAND (t, 0));
16618 if (REFERENCE_REF_P (t))
16620 /* A type conversion to reference type will be enclosed in
16621 such an indirect ref, but the substitution of the cast
16622 will have also added such an indirect ref. */
16623 if (TREE_CODE (TREE_TYPE (r)) == REFERENCE_TYPE)
16624 r = convert_from_reference (r);
16626 else
16627 r = build_x_indirect_ref (input_location, r, RO_UNARY_STAR,
16628 complain|decltype_flag);
16630 if (TREE_CODE (r) == INDIRECT_REF)
16631 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
16633 RETURN (r);
16636 case NOP_EXPR:
16638 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16639 tree op0 = RECUR (TREE_OPERAND (t, 0));
16640 RETURN (build_nop (type, op0));
16643 case IMPLICIT_CONV_EXPR:
16645 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16646 tree expr = RECUR (TREE_OPERAND (t, 0));
16647 int flags = LOOKUP_IMPLICIT;
16648 if (IMPLICIT_CONV_EXPR_DIRECT_INIT (t))
16649 flags = LOOKUP_NORMAL;
16650 RETURN (perform_implicit_conversion_flags (type, expr, complain,
16651 flags));
16654 case CONVERT_EXPR:
16656 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16657 tree op0 = RECUR (TREE_OPERAND (t, 0));
16658 RETURN (build1 (CONVERT_EXPR, type, op0));
16661 case CAST_EXPR:
16662 case REINTERPRET_CAST_EXPR:
16663 case CONST_CAST_EXPR:
16664 case DYNAMIC_CAST_EXPR:
16665 case STATIC_CAST_EXPR:
16667 tree type;
16668 tree op, r = NULL_TREE;
16670 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16671 if (integral_constant_expression_p
16672 && !cast_valid_in_integral_constant_expression_p (type))
16674 if (complain & tf_error)
16675 error ("a cast to a type other than an integral or "
16676 "enumeration type cannot appear in a constant-expression");
16677 RETURN (error_mark_node);
16680 op = RECUR (TREE_OPERAND (t, 0));
16682 warning_sentinel s(warn_useless_cast);
16683 switch (TREE_CODE (t))
16685 case CAST_EXPR:
16686 r = build_functional_cast (type, op, complain);
16687 break;
16688 case REINTERPRET_CAST_EXPR:
16689 r = build_reinterpret_cast (type, op, complain);
16690 break;
16691 case CONST_CAST_EXPR:
16692 r = build_const_cast (type, op, complain);
16693 break;
16694 case DYNAMIC_CAST_EXPR:
16695 r = build_dynamic_cast (type, op, complain);
16696 break;
16697 case STATIC_CAST_EXPR:
16698 r = build_static_cast (type, op, complain);
16699 break;
16700 default:
16701 gcc_unreachable ();
16704 RETURN (r);
16707 case POSTDECREMENT_EXPR:
16708 case POSTINCREMENT_EXPR:
16709 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
16710 args, complain, in_decl);
16711 RETURN (build_x_unary_op (input_location, TREE_CODE (t), op1,
16712 complain|decltype_flag));
16714 case PREDECREMENT_EXPR:
16715 case PREINCREMENT_EXPR:
16716 case NEGATE_EXPR:
16717 case BIT_NOT_EXPR:
16718 case ABS_EXPR:
16719 case TRUTH_NOT_EXPR:
16720 case UNARY_PLUS_EXPR: /* Unary + */
16721 case REALPART_EXPR:
16722 case IMAGPART_EXPR:
16723 RETURN (build_x_unary_op (input_location, TREE_CODE (t),
16724 RECUR (TREE_OPERAND (t, 0)),
16725 complain|decltype_flag));
16727 case FIX_TRUNC_EXPR:
16728 RETURN (cp_build_unary_op (FIX_TRUNC_EXPR, RECUR (TREE_OPERAND (t, 0)),
16729 false, complain));
16731 case ADDR_EXPR:
16732 op1 = TREE_OPERAND (t, 0);
16733 if (TREE_CODE (op1) == LABEL_DECL)
16734 RETURN (finish_label_address_expr (DECL_NAME (op1),
16735 EXPR_LOCATION (op1)));
16736 if (TREE_CODE (op1) == SCOPE_REF)
16737 op1 = tsubst_qualified_id (op1, args, complain, in_decl,
16738 /*done=*/true, /*address_p=*/true);
16739 else
16740 op1 = tsubst_non_call_postfix_expression (op1, args, complain,
16741 in_decl);
16742 RETURN (build_x_unary_op (input_location, ADDR_EXPR, op1,
16743 complain|decltype_flag));
16745 case PLUS_EXPR:
16746 case MINUS_EXPR:
16747 case MULT_EXPR:
16748 case TRUNC_DIV_EXPR:
16749 case CEIL_DIV_EXPR:
16750 case FLOOR_DIV_EXPR:
16751 case ROUND_DIV_EXPR:
16752 case EXACT_DIV_EXPR:
16753 case BIT_AND_EXPR:
16754 case BIT_IOR_EXPR:
16755 case BIT_XOR_EXPR:
16756 case TRUNC_MOD_EXPR:
16757 case FLOOR_MOD_EXPR:
16758 case TRUTH_ANDIF_EXPR:
16759 case TRUTH_ORIF_EXPR:
16760 case TRUTH_AND_EXPR:
16761 case TRUTH_OR_EXPR:
16762 case RSHIFT_EXPR:
16763 case LSHIFT_EXPR:
16764 case RROTATE_EXPR:
16765 case LROTATE_EXPR:
16766 case EQ_EXPR:
16767 case NE_EXPR:
16768 case MAX_EXPR:
16769 case MIN_EXPR:
16770 case LE_EXPR:
16771 case GE_EXPR:
16772 case LT_EXPR:
16773 case GT_EXPR:
16774 case MEMBER_REF:
16775 case DOTSTAR_EXPR:
16777 warning_sentinel s1(warn_type_limits);
16778 warning_sentinel s2(warn_div_by_zero);
16779 warning_sentinel s3(warn_logical_op);
16780 warning_sentinel s4(warn_tautological_compare);
16781 tree op0 = RECUR (TREE_OPERAND (t, 0));
16782 tree op1 = RECUR (TREE_OPERAND (t, 1));
16783 tree r = build_x_binary_op
16784 (input_location, TREE_CODE (t),
16785 op0,
16786 (TREE_NO_WARNING (TREE_OPERAND (t, 0))
16787 ? ERROR_MARK
16788 : TREE_CODE (TREE_OPERAND (t, 0))),
16789 op1,
16790 (TREE_NO_WARNING (TREE_OPERAND (t, 1))
16791 ? ERROR_MARK
16792 : TREE_CODE (TREE_OPERAND (t, 1))),
16793 /*overload=*/NULL,
16794 complain|decltype_flag);
16795 if (EXPR_P (r) && TREE_NO_WARNING (t))
16796 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
16798 RETURN (r);
16801 case POINTER_PLUS_EXPR:
16803 tree op0 = RECUR (TREE_OPERAND (t, 0));
16804 tree op1 = RECUR (TREE_OPERAND (t, 1));
16805 return fold_build_pointer_plus (op0, op1);
16808 case SCOPE_REF:
16809 RETURN (tsubst_qualified_id (t, args, complain, in_decl, /*done=*/true,
16810 /*address_p=*/false));
16811 case ARRAY_REF:
16812 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
16813 args, complain, in_decl);
16814 RETURN (build_x_array_ref (EXPR_LOCATION (t), op1,
16815 RECUR (TREE_OPERAND (t, 1)),
16816 complain|decltype_flag));
16818 case ARRAY_NOTATION_REF:
16820 tree start_index, length, stride;
16821 op1 = tsubst_non_call_postfix_expression (ARRAY_NOTATION_ARRAY (t),
16822 args, complain, in_decl);
16823 start_index = RECUR (ARRAY_NOTATION_START (t));
16824 length = RECUR (ARRAY_NOTATION_LENGTH (t));
16825 stride = RECUR (ARRAY_NOTATION_STRIDE (t));
16826 RETURN (build_array_notation_ref (EXPR_LOCATION (t), op1, start_index,
16827 length, stride, TREE_TYPE (op1)));
16829 case SIZEOF_EXPR:
16830 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0))
16831 || ARGUMENT_PACK_P (TREE_OPERAND (t, 0)))
16832 RETURN (tsubst_copy (t, args, complain, in_decl));
16833 /* Fall through */
16835 case ALIGNOF_EXPR:
16837 tree r;
16839 op1 = TREE_OPERAND (t, 0);
16840 if (TREE_CODE (t) == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (t))
16841 op1 = TREE_TYPE (op1);
16842 if (!args)
16844 /* When there are no ARGS, we are trying to evaluate a
16845 non-dependent expression from the parser. Trying to do
16846 the substitutions may not work. */
16847 if (!TYPE_P (op1))
16848 op1 = TREE_TYPE (op1);
16850 else
16852 ++cp_unevaluated_operand;
16853 ++c_inhibit_evaluation_warnings;
16854 if (TYPE_P (op1))
16855 op1 = tsubst (op1, args, complain, in_decl);
16856 else
16857 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
16858 /*function_p=*/false,
16859 /*integral_constant_expression_p=*/
16860 false);
16861 --cp_unevaluated_operand;
16862 --c_inhibit_evaluation_warnings;
16864 if (TYPE_P (op1))
16865 r = cxx_sizeof_or_alignof_type (op1, TREE_CODE (t),
16866 complain & tf_error);
16867 else
16868 r = cxx_sizeof_or_alignof_expr (op1, TREE_CODE (t),
16869 complain & tf_error);
16870 if (TREE_CODE (t) == SIZEOF_EXPR && r != error_mark_node)
16872 if (TREE_CODE (r) != SIZEOF_EXPR || TYPE_P (op1))
16874 if (!processing_template_decl && TYPE_P (op1))
16876 r = build_min (SIZEOF_EXPR, size_type_node,
16877 build1 (NOP_EXPR, op1, error_mark_node));
16878 SIZEOF_EXPR_TYPE_P (r) = 1;
16880 else
16881 r = build_min (SIZEOF_EXPR, size_type_node, op1);
16882 TREE_SIDE_EFFECTS (r) = 0;
16883 TREE_READONLY (r) = 1;
16885 SET_EXPR_LOCATION (r, EXPR_LOCATION (t));
16887 RETURN (r);
16890 case AT_ENCODE_EXPR:
16892 op1 = TREE_OPERAND (t, 0);
16893 ++cp_unevaluated_operand;
16894 ++c_inhibit_evaluation_warnings;
16895 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
16896 /*function_p=*/false,
16897 /*integral_constant_expression_p=*/false);
16898 --cp_unevaluated_operand;
16899 --c_inhibit_evaluation_warnings;
16900 RETURN (objc_build_encode_expr (op1));
16903 case NOEXCEPT_EXPR:
16904 op1 = TREE_OPERAND (t, 0);
16905 ++cp_unevaluated_operand;
16906 ++c_inhibit_evaluation_warnings;
16907 ++cp_noexcept_operand;
16908 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
16909 /*function_p=*/false,
16910 /*integral_constant_expression_p=*/false);
16911 --cp_unevaluated_operand;
16912 --c_inhibit_evaluation_warnings;
16913 --cp_noexcept_operand;
16914 RETURN (finish_noexcept_expr (op1, complain));
16916 case MODOP_EXPR:
16918 warning_sentinel s(warn_div_by_zero);
16919 tree lhs = RECUR (TREE_OPERAND (t, 0));
16920 tree rhs = RECUR (TREE_OPERAND (t, 2));
16921 tree r = build_x_modify_expr
16922 (EXPR_LOCATION (t), lhs, TREE_CODE (TREE_OPERAND (t, 1)), rhs,
16923 complain|decltype_flag);
16924 /* TREE_NO_WARNING must be set if either the expression was
16925 parenthesized or it uses an operator such as >>= rather
16926 than plain assignment. In the former case, it was already
16927 set and must be copied. In the latter case,
16928 build_x_modify_expr sets it and it must not be reset
16929 here. */
16930 if (TREE_NO_WARNING (t))
16931 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
16933 RETURN (r);
16936 case ARROW_EXPR:
16937 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
16938 args, complain, in_decl);
16939 /* Remember that there was a reference to this entity. */
16940 if (DECL_P (op1)
16941 && !mark_used (op1, complain) && !(complain & tf_error))
16942 RETURN (error_mark_node);
16943 RETURN (build_x_arrow (input_location, op1, complain));
16945 case NEW_EXPR:
16947 tree placement = RECUR (TREE_OPERAND (t, 0));
16948 tree init = RECUR (TREE_OPERAND (t, 3));
16949 vec<tree, va_gc> *placement_vec;
16950 vec<tree, va_gc> *init_vec;
16951 tree ret;
16953 if (placement == NULL_TREE)
16954 placement_vec = NULL;
16955 else
16957 placement_vec = make_tree_vector ();
16958 for (; placement != NULL_TREE; placement = TREE_CHAIN (placement))
16959 vec_safe_push (placement_vec, TREE_VALUE (placement));
16962 /* If there was an initializer in the original tree, but it
16963 instantiated to an empty list, then we should pass a
16964 non-NULL empty vector to tell build_new that it was an
16965 empty initializer() rather than no initializer. This can
16966 only happen when the initializer is a pack expansion whose
16967 parameter packs are of length zero. */
16968 if (init == NULL_TREE && TREE_OPERAND (t, 3) == NULL_TREE)
16969 init_vec = NULL;
16970 else
16972 init_vec = make_tree_vector ();
16973 if (init == void_node)
16974 gcc_assert (init_vec != NULL);
16975 else
16977 for (; init != NULL_TREE; init = TREE_CHAIN (init))
16978 vec_safe_push (init_vec, TREE_VALUE (init));
16982 tree op1 = tsubst (TREE_OPERAND (t, 1), args, complain, in_decl);
16983 tree op2 = RECUR (TREE_OPERAND (t, 2));
16984 ret = build_new (&placement_vec, op1, op2, &init_vec,
16985 NEW_EXPR_USE_GLOBAL (t),
16986 complain);
16988 if (placement_vec != NULL)
16989 release_tree_vector (placement_vec);
16990 if (init_vec != NULL)
16991 release_tree_vector (init_vec);
16993 RETURN (ret);
16996 case DELETE_EXPR:
16998 tree op0 = RECUR (TREE_OPERAND (t, 0));
16999 tree op1 = RECUR (TREE_OPERAND (t, 1));
17000 RETURN (delete_sanity (op0, op1,
17001 DELETE_EXPR_USE_VEC (t),
17002 DELETE_EXPR_USE_GLOBAL (t),
17003 complain));
17006 case COMPOUND_EXPR:
17008 tree op0 = tsubst_copy_and_build (TREE_OPERAND (t, 0), args,
17009 complain & ~tf_decltype, in_decl,
17010 /*function_p=*/false,
17011 integral_constant_expression_p);
17012 RETURN (build_x_compound_expr (EXPR_LOCATION (t),
17013 op0,
17014 RECUR (TREE_OPERAND (t, 1)),
17015 complain|decltype_flag));
17018 case CALL_EXPR:
17020 tree function;
17021 vec<tree, va_gc> *call_args;
17022 unsigned int nargs, i;
17023 bool qualified_p;
17024 bool koenig_p;
17025 tree ret;
17027 function = CALL_EXPR_FN (t);
17028 /* Internal function with no arguments. */
17029 if (function == NULL_TREE && call_expr_nargs (t) == 0)
17030 RETURN (t);
17032 /* When we parsed the expression, we determined whether or
17033 not Koenig lookup should be performed. */
17034 koenig_p = KOENIG_LOOKUP_P (t);
17035 if (function == NULL_TREE)
17037 koenig_p = false;
17038 qualified_p = false;
17040 else if (TREE_CODE (function) == SCOPE_REF)
17042 qualified_p = true;
17043 function = tsubst_qualified_id (function, args, complain, in_decl,
17044 /*done=*/false,
17045 /*address_p=*/false);
17047 else if (koenig_p && identifier_p (function))
17049 /* Do nothing; calling tsubst_copy_and_build on an identifier
17050 would incorrectly perform unqualified lookup again.
17052 Note that we can also have an IDENTIFIER_NODE if the earlier
17053 unqualified lookup found a member function; in that case
17054 koenig_p will be false and we do want to do the lookup
17055 again to find the instantiated member function.
17057 FIXME but doing that causes c++/15272, so we need to stop
17058 using IDENTIFIER_NODE in that situation. */
17059 qualified_p = false;
17061 else
17063 if (TREE_CODE (function) == COMPONENT_REF)
17065 tree op = TREE_OPERAND (function, 1);
17067 qualified_p = (TREE_CODE (op) == SCOPE_REF
17068 || (BASELINK_P (op)
17069 && BASELINK_QUALIFIED_P (op)));
17071 else
17072 qualified_p = false;
17074 if (TREE_CODE (function) == ADDR_EXPR
17075 && TREE_CODE (TREE_OPERAND (function, 0)) == FUNCTION_DECL)
17076 /* Avoid error about taking the address of a constructor. */
17077 function = TREE_OPERAND (function, 0);
17079 function = tsubst_copy_and_build (function, args, complain,
17080 in_decl,
17081 !qualified_p,
17082 integral_constant_expression_p);
17084 if (BASELINK_P (function))
17085 qualified_p = true;
17088 nargs = call_expr_nargs (t);
17089 call_args = make_tree_vector ();
17090 for (i = 0; i < nargs; ++i)
17092 tree arg = CALL_EXPR_ARG (t, i);
17094 if (!PACK_EXPANSION_P (arg))
17095 vec_safe_push (call_args, RECUR (CALL_EXPR_ARG (t, i)));
17096 else
17098 /* Expand the pack expansion and push each entry onto
17099 CALL_ARGS. */
17100 arg = tsubst_pack_expansion (arg, args, complain, in_decl);
17101 if (TREE_CODE (arg) == TREE_VEC)
17103 unsigned int len, j;
17105 len = TREE_VEC_LENGTH (arg);
17106 for (j = 0; j < len; ++j)
17108 tree value = TREE_VEC_ELT (arg, j);
17109 if (value != NULL_TREE)
17110 value = convert_from_reference (value);
17111 vec_safe_push (call_args, value);
17114 else
17116 /* A partial substitution. Add one entry. */
17117 vec_safe_push (call_args, arg);
17122 /* We do not perform argument-dependent lookup if normal
17123 lookup finds a non-function, in accordance with the
17124 expected resolution of DR 218. */
17125 if (koenig_p
17126 && ((is_overloaded_fn (function)
17127 /* If lookup found a member function, the Koenig lookup is
17128 not appropriate, even if an unqualified-name was used
17129 to denote the function. */
17130 && !DECL_FUNCTION_MEMBER_P (get_first_fn (function)))
17131 || identifier_p (function))
17132 /* Only do this when substitution turns a dependent call
17133 into a non-dependent call. */
17134 && type_dependent_expression_p_push (t)
17135 && !any_type_dependent_arguments_p (call_args))
17136 function = perform_koenig_lookup (function, call_args, tf_none);
17138 if (function != NULL_TREE
17139 && identifier_p (function)
17140 && !any_type_dependent_arguments_p (call_args))
17142 if (koenig_p && (complain & tf_warning_or_error))
17144 /* For backwards compatibility and good diagnostics, try
17145 the unqualified lookup again if we aren't in SFINAE
17146 context. */
17147 tree unq = (tsubst_copy_and_build
17148 (function, args, complain, in_decl, true,
17149 integral_constant_expression_p));
17150 if (unq == error_mark_node)
17152 release_tree_vector (call_args);
17153 RETURN (error_mark_node);
17156 if (unq != function)
17158 /* In a lambda fn, we have to be careful to not
17159 introduce new this captures. Legacy code can't
17160 be using lambdas anyway, so it's ok to be
17161 stricter. */
17162 bool in_lambda = (current_class_type
17163 && LAMBDA_TYPE_P (current_class_type));
17164 char const *msg = "%qD was not declared in this scope, "
17165 "and no declarations were found by "
17166 "argument-dependent lookup at the point "
17167 "of instantiation";
17169 bool diag = true;
17170 if (in_lambda)
17171 error_at (EXPR_LOC_OR_LOC (t, input_location),
17172 msg, function);
17173 else
17174 diag = permerror (EXPR_LOC_OR_LOC (t, input_location),
17175 msg, function);
17176 if (diag)
17178 tree fn = unq;
17179 if (INDIRECT_REF_P (fn))
17180 fn = TREE_OPERAND (fn, 0);
17181 if (TREE_CODE (fn) == COMPONENT_REF)
17182 fn = TREE_OPERAND (fn, 1);
17183 if (is_overloaded_fn (fn))
17184 fn = get_first_fn (fn);
17186 if (!DECL_P (fn))
17187 /* Can't say anything more. */;
17188 else if (DECL_CLASS_SCOPE_P (fn))
17190 location_t loc = EXPR_LOC_OR_LOC (t,
17191 input_location);
17192 inform (loc,
17193 "declarations in dependent base %qT are "
17194 "not found by unqualified lookup",
17195 DECL_CLASS_CONTEXT (fn));
17196 if (current_class_ptr)
17197 inform (loc,
17198 "use %<this->%D%> instead", function);
17199 else
17200 inform (loc,
17201 "use %<%T::%D%> instead",
17202 current_class_name, function);
17204 else
17205 inform (DECL_SOURCE_LOCATION (fn),
17206 "%qD declared here, later in the "
17207 "translation unit", fn);
17208 if (in_lambda)
17210 release_tree_vector (call_args);
17211 RETURN (error_mark_node);
17215 function = unq;
17218 if (identifier_p (function))
17220 if (complain & tf_error)
17221 unqualified_name_lookup_error (function);
17222 release_tree_vector (call_args);
17223 RETURN (error_mark_node);
17227 /* Remember that there was a reference to this entity. */
17228 if (function != NULL_TREE
17229 && DECL_P (function)
17230 && !mark_used (function, complain) && !(complain & tf_error))
17232 release_tree_vector (call_args);
17233 RETURN (error_mark_node);
17236 /* Put back tf_decltype for the actual call. */
17237 complain |= decltype_flag;
17239 if (function == NULL_TREE)
17240 switch (CALL_EXPR_IFN (t))
17242 case IFN_LAUNDER:
17243 gcc_assert (nargs == 1);
17244 if (vec_safe_length (call_args) != 1)
17246 error_at (EXPR_LOC_OR_LOC (t, input_location),
17247 "wrong number of arguments to "
17248 "%<__builtin_launder%>");
17249 ret = error_mark_node;
17251 else
17252 ret = finish_builtin_launder (EXPR_LOC_OR_LOC (t,
17253 input_location),
17254 (*call_args)[0], complain);
17255 break;
17257 default:
17258 /* Unsupported internal function with arguments. */
17259 gcc_unreachable ();
17261 else if (TREE_CODE (function) == OFFSET_REF)
17262 ret = build_offset_ref_call_from_tree (function, &call_args,
17263 complain);
17264 else if (TREE_CODE (function) == COMPONENT_REF)
17266 tree instance = TREE_OPERAND (function, 0);
17267 tree fn = TREE_OPERAND (function, 1);
17269 if (processing_template_decl
17270 && (type_dependent_expression_p (instance)
17271 || (!BASELINK_P (fn)
17272 && TREE_CODE (fn) != FIELD_DECL)
17273 || type_dependent_expression_p (fn)
17274 || any_type_dependent_arguments_p (call_args)))
17275 ret = build_nt_call_vec (function, call_args);
17276 else if (!BASELINK_P (fn))
17277 ret = finish_call_expr (function, &call_args,
17278 /*disallow_virtual=*/false,
17279 /*koenig_p=*/false,
17280 complain);
17281 else
17282 ret = (build_new_method_call
17283 (instance, fn,
17284 &call_args, NULL_TREE,
17285 qualified_p ? LOOKUP_NONVIRTUAL : LOOKUP_NORMAL,
17286 /*fn_p=*/NULL,
17287 complain));
17289 else
17290 ret = finish_call_expr (function, &call_args,
17291 /*disallow_virtual=*/qualified_p,
17292 koenig_p,
17293 complain);
17295 release_tree_vector (call_args);
17297 if (ret != error_mark_node)
17299 bool op = CALL_EXPR_OPERATOR_SYNTAX (t);
17300 bool ord = CALL_EXPR_ORDERED_ARGS (t);
17301 bool rev = CALL_EXPR_REVERSE_ARGS (t);
17302 bool thk = CALL_FROM_THUNK_P (t);
17303 if (op || ord || rev || thk)
17305 function = extract_call_expr (ret);
17306 CALL_EXPR_OPERATOR_SYNTAX (function) = op;
17307 CALL_EXPR_ORDERED_ARGS (function) = ord;
17308 CALL_EXPR_REVERSE_ARGS (function) = rev;
17309 if (thk)
17311 CALL_FROM_THUNK_P (function) = true;
17312 /* The thunk location is not interesting. */
17313 SET_EXPR_LOCATION (function, UNKNOWN_LOCATION);
17318 RETURN (ret);
17321 case COND_EXPR:
17323 tree cond = RECUR (TREE_OPERAND (t, 0));
17324 tree folded_cond = fold_non_dependent_expr (cond);
17325 tree exp1, exp2;
17327 if (TREE_CODE (folded_cond) == INTEGER_CST)
17329 if (integer_zerop (folded_cond))
17331 ++c_inhibit_evaluation_warnings;
17332 exp1 = RECUR (TREE_OPERAND (t, 1));
17333 --c_inhibit_evaluation_warnings;
17334 exp2 = RECUR (TREE_OPERAND (t, 2));
17336 else
17338 exp1 = RECUR (TREE_OPERAND (t, 1));
17339 ++c_inhibit_evaluation_warnings;
17340 exp2 = RECUR (TREE_OPERAND (t, 2));
17341 --c_inhibit_evaluation_warnings;
17343 cond = folded_cond;
17345 else
17347 exp1 = RECUR (TREE_OPERAND (t, 1));
17348 exp2 = RECUR (TREE_OPERAND (t, 2));
17351 RETURN (build_x_conditional_expr (EXPR_LOCATION (t),
17352 cond, exp1, exp2, complain));
17355 case PSEUDO_DTOR_EXPR:
17357 tree op0 = RECUR (TREE_OPERAND (t, 0));
17358 tree op1 = RECUR (TREE_OPERAND (t, 1));
17359 tree op2 = tsubst (TREE_OPERAND (t, 2), args, complain, in_decl);
17360 RETURN (finish_pseudo_destructor_expr (op0, op1, op2,
17361 input_location));
17364 case TREE_LIST:
17366 tree purpose, value, chain;
17368 if (t == void_list_node)
17369 RETURN (t);
17371 if ((TREE_PURPOSE (t) && PACK_EXPANSION_P (TREE_PURPOSE (t)))
17372 || (TREE_VALUE (t) && PACK_EXPANSION_P (TREE_VALUE (t))))
17374 /* We have pack expansions, so expand those and
17375 create a new list out of it. */
17376 tree purposevec = NULL_TREE;
17377 tree valuevec = NULL_TREE;
17378 tree chain;
17379 int i, len = -1;
17381 /* Expand the argument expressions. */
17382 if (TREE_PURPOSE (t))
17383 purposevec = tsubst_pack_expansion (TREE_PURPOSE (t), args,
17384 complain, in_decl);
17385 if (TREE_VALUE (t))
17386 valuevec = tsubst_pack_expansion (TREE_VALUE (t), args,
17387 complain, in_decl);
17389 /* Build the rest of the list. */
17390 chain = TREE_CHAIN (t);
17391 if (chain && chain != void_type_node)
17392 chain = RECUR (chain);
17394 /* Determine the number of arguments. */
17395 if (purposevec && TREE_CODE (purposevec) == TREE_VEC)
17397 len = TREE_VEC_LENGTH (purposevec);
17398 gcc_assert (!valuevec || len == TREE_VEC_LENGTH (valuevec));
17400 else if (TREE_CODE (valuevec) == TREE_VEC)
17401 len = TREE_VEC_LENGTH (valuevec);
17402 else
17404 /* Since we only performed a partial substitution into
17405 the argument pack, we only RETURN (a single list
17406 node. */
17407 if (purposevec == TREE_PURPOSE (t)
17408 && valuevec == TREE_VALUE (t)
17409 && chain == TREE_CHAIN (t))
17410 RETURN (t);
17412 RETURN (tree_cons (purposevec, valuevec, chain));
17415 /* Convert the argument vectors into a TREE_LIST */
17416 i = len;
17417 while (i > 0)
17419 /* Grab the Ith values. */
17420 i--;
17421 purpose = purposevec ? TREE_VEC_ELT (purposevec, i)
17422 : NULL_TREE;
17423 value
17424 = valuevec ? convert_from_reference (TREE_VEC_ELT (valuevec, i))
17425 : NULL_TREE;
17427 /* Build the list (backwards). */
17428 chain = tree_cons (purpose, value, chain);
17431 RETURN (chain);
17434 purpose = TREE_PURPOSE (t);
17435 if (purpose)
17436 purpose = RECUR (purpose);
17437 value = TREE_VALUE (t);
17438 if (value)
17439 value = RECUR (value);
17440 chain = TREE_CHAIN (t);
17441 if (chain && chain != void_type_node)
17442 chain = RECUR (chain);
17443 if (purpose == TREE_PURPOSE (t)
17444 && value == TREE_VALUE (t)
17445 && chain == TREE_CHAIN (t))
17446 RETURN (t);
17447 RETURN (tree_cons (purpose, value, chain));
17450 case COMPONENT_REF:
17452 tree object;
17453 tree object_type;
17454 tree member;
17455 tree r;
17457 object = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
17458 args, complain, in_decl);
17459 /* Remember that there was a reference to this entity. */
17460 if (DECL_P (object)
17461 && !mark_used (object, complain) && !(complain & tf_error))
17462 RETURN (error_mark_node);
17463 object_type = TREE_TYPE (object);
17465 member = TREE_OPERAND (t, 1);
17466 if (BASELINK_P (member))
17467 member = tsubst_baselink (member,
17468 non_reference (TREE_TYPE (object)),
17469 args, complain, in_decl);
17470 else
17471 member = tsubst_copy (member, args, complain, in_decl);
17472 if (member == error_mark_node)
17473 RETURN (error_mark_node);
17475 if (TREE_CODE (member) == FIELD_DECL)
17477 r = finish_non_static_data_member (member, object, NULL_TREE);
17478 if (TREE_CODE (r) == COMPONENT_REF)
17479 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
17480 RETURN (r);
17482 else if (type_dependent_expression_p (object))
17483 /* We can't do much here. */;
17484 else if (!CLASS_TYPE_P (object_type))
17486 if (scalarish_type_p (object_type))
17488 tree s = NULL_TREE;
17489 tree dtor = member;
17491 if (TREE_CODE (dtor) == SCOPE_REF)
17493 s = TREE_OPERAND (dtor, 0);
17494 dtor = TREE_OPERAND (dtor, 1);
17496 if (TREE_CODE (dtor) == BIT_NOT_EXPR)
17498 dtor = TREE_OPERAND (dtor, 0);
17499 if (TYPE_P (dtor))
17500 RETURN (finish_pseudo_destructor_expr
17501 (object, s, dtor, input_location));
17505 else if (TREE_CODE (member) == SCOPE_REF
17506 && TREE_CODE (TREE_OPERAND (member, 1)) == TEMPLATE_ID_EXPR)
17508 /* Lookup the template functions now that we know what the
17509 scope is. */
17510 tree scope = TREE_OPERAND (member, 0);
17511 tree tmpl = TREE_OPERAND (TREE_OPERAND (member, 1), 0);
17512 tree args = TREE_OPERAND (TREE_OPERAND (member, 1), 1);
17513 member = lookup_qualified_name (scope, tmpl,
17514 /*is_type_p=*/false,
17515 /*complain=*/false);
17516 if (BASELINK_P (member))
17518 BASELINK_FUNCTIONS (member)
17519 = build_nt (TEMPLATE_ID_EXPR, BASELINK_FUNCTIONS (member),
17520 args);
17521 member = (adjust_result_of_qualified_name_lookup
17522 (member, BINFO_TYPE (BASELINK_BINFO (member)),
17523 object_type));
17525 else
17527 qualified_name_lookup_error (scope, tmpl, member,
17528 input_location);
17529 RETURN (error_mark_node);
17532 else if (TREE_CODE (member) == SCOPE_REF
17533 && !CLASS_TYPE_P (TREE_OPERAND (member, 0))
17534 && TREE_CODE (TREE_OPERAND (member, 0)) != NAMESPACE_DECL)
17536 if (complain & tf_error)
17538 if (TYPE_P (TREE_OPERAND (member, 0)))
17539 error ("%qT is not a class or namespace",
17540 TREE_OPERAND (member, 0));
17541 else
17542 error ("%qD is not a class or namespace",
17543 TREE_OPERAND (member, 0));
17545 RETURN (error_mark_node);
17548 r = finish_class_member_access_expr (object, member,
17549 /*template_p=*/false,
17550 complain);
17551 if (TREE_CODE (r) == COMPONENT_REF)
17552 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
17553 RETURN (r);
17556 case THROW_EXPR:
17557 RETURN (build_throw
17558 (RECUR (TREE_OPERAND (t, 0))));
17560 case CONSTRUCTOR:
17562 vec<constructor_elt, va_gc> *n;
17563 constructor_elt *ce;
17564 unsigned HOST_WIDE_INT idx;
17565 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
17566 bool process_index_p;
17567 int newlen;
17568 bool need_copy_p = false;
17569 tree r;
17571 if (type == error_mark_node)
17572 RETURN (error_mark_node);
17574 /* digest_init will do the wrong thing if we let it. */
17575 if (type && TYPE_PTRMEMFUNC_P (type))
17576 RETURN (t);
17578 /* We do not want to process the index of aggregate
17579 initializers as they are identifier nodes which will be
17580 looked up by digest_init. */
17581 process_index_p = !(type && MAYBE_CLASS_TYPE_P (type));
17583 n = vec_safe_copy (CONSTRUCTOR_ELTS (t));
17584 newlen = vec_safe_length (n);
17585 FOR_EACH_VEC_SAFE_ELT (n, idx, ce)
17587 if (ce->index && process_index_p
17588 /* An identifier index is looked up in the type
17589 being initialized, not the current scope. */
17590 && TREE_CODE (ce->index) != IDENTIFIER_NODE)
17591 ce->index = RECUR (ce->index);
17593 if (PACK_EXPANSION_P (ce->value))
17595 /* Substitute into the pack expansion. */
17596 ce->value = tsubst_pack_expansion (ce->value, args, complain,
17597 in_decl);
17599 if (ce->value == error_mark_node
17600 || PACK_EXPANSION_P (ce->value))
17602 else if (TREE_VEC_LENGTH (ce->value) == 1)
17603 /* Just move the argument into place. */
17604 ce->value = TREE_VEC_ELT (ce->value, 0);
17605 else
17607 /* Update the length of the final CONSTRUCTOR
17608 arguments vector, and note that we will need to
17609 copy.*/
17610 newlen = newlen + TREE_VEC_LENGTH (ce->value) - 1;
17611 need_copy_p = true;
17614 else
17615 ce->value = RECUR (ce->value);
17618 if (need_copy_p)
17620 vec<constructor_elt, va_gc> *old_n = n;
17622 vec_alloc (n, newlen);
17623 FOR_EACH_VEC_ELT (*old_n, idx, ce)
17625 if (TREE_CODE (ce->value) == TREE_VEC)
17627 int i, len = TREE_VEC_LENGTH (ce->value);
17628 for (i = 0; i < len; ++i)
17629 CONSTRUCTOR_APPEND_ELT (n, 0,
17630 TREE_VEC_ELT (ce->value, i));
17632 else
17633 CONSTRUCTOR_APPEND_ELT (n, 0, ce->value);
17637 r = build_constructor (init_list_type_node, n);
17638 CONSTRUCTOR_IS_DIRECT_INIT (r) = CONSTRUCTOR_IS_DIRECT_INIT (t);
17640 if (TREE_HAS_CONSTRUCTOR (t))
17641 RETURN (finish_compound_literal (type, r, complain));
17643 TREE_TYPE (r) = type;
17644 RETURN (r);
17647 case TYPEID_EXPR:
17649 tree operand_0 = TREE_OPERAND (t, 0);
17650 if (TYPE_P (operand_0))
17652 operand_0 = tsubst (operand_0, args, complain, in_decl);
17653 RETURN (get_typeid (operand_0, complain));
17655 else
17657 operand_0 = RECUR (operand_0);
17658 RETURN (build_typeid (operand_0, complain));
17662 case VAR_DECL:
17663 if (!args)
17664 RETURN (t);
17665 else if (DECL_PACK_P (t))
17667 /* We don't build decls for an instantiation of a
17668 variadic capture proxy, we instantiate the elements
17669 when needed. */
17670 gcc_assert (DECL_HAS_VALUE_EXPR_P (t));
17671 return RECUR (DECL_VALUE_EXPR (t));
17673 /* Fall through */
17675 case PARM_DECL:
17677 tree r = tsubst_copy (t, args, complain, in_decl);
17678 /* ??? We're doing a subset of finish_id_expression here. */
17679 if (VAR_P (r)
17680 && !processing_template_decl
17681 && !cp_unevaluated_operand
17682 && (TREE_STATIC (r) || DECL_EXTERNAL (r))
17683 && CP_DECL_THREAD_LOCAL_P (r))
17685 if (tree wrap = get_tls_wrapper_fn (r))
17686 /* Replace an evaluated use of the thread_local variable with
17687 a call to its wrapper. */
17688 r = build_cxx_call (wrap, 0, NULL, tf_warning_or_error);
17690 else if (outer_automatic_var_p (r))
17692 r = process_outer_var_ref (r, complain);
17693 if (is_capture_proxy (r))
17694 register_local_specialization (r, t);
17697 if (TREE_CODE (TREE_TYPE (t)) != REFERENCE_TYPE)
17698 /* If the original type was a reference, we'll be wrapped in
17699 the appropriate INDIRECT_REF. */
17700 r = convert_from_reference (r);
17701 RETURN (r);
17704 case VA_ARG_EXPR:
17706 tree op0 = RECUR (TREE_OPERAND (t, 0));
17707 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
17708 RETURN (build_x_va_arg (EXPR_LOCATION (t), op0, type));
17711 case OFFSETOF_EXPR:
17713 tree object_ptr
17714 = tsubst_copy_and_build (TREE_OPERAND (t, 1), args, complain,
17715 in_decl, /*function_p=*/false,
17716 /*integral_constant_expression_p=*/false);
17717 RETURN (finish_offsetof (object_ptr,
17718 RECUR (TREE_OPERAND (t, 0)),
17719 EXPR_LOCATION (t)));
17722 case ADDRESSOF_EXPR:
17723 RETURN (cp_build_addressof (EXPR_LOCATION (t),
17724 RECUR (TREE_OPERAND (t, 0)), complain));
17726 case TRAIT_EXPR:
17728 tree type1 = tsubst (TRAIT_EXPR_TYPE1 (t), args,
17729 complain, in_decl);
17731 tree type2 = TRAIT_EXPR_TYPE2 (t);
17732 if (type2 && TREE_CODE (type2) == TREE_LIST)
17733 type2 = RECUR (type2);
17734 else if (type2)
17735 type2 = tsubst (type2, args, complain, in_decl);
17737 RETURN (finish_trait_expr (TRAIT_EXPR_KIND (t), type1, type2));
17740 case STMT_EXPR:
17742 tree old_stmt_expr = cur_stmt_expr;
17743 tree stmt_expr = begin_stmt_expr ();
17745 cur_stmt_expr = stmt_expr;
17746 tsubst_expr (STMT_EXPR_STMT (t), args, complain, in_decl,
17747 integral_constant_expression_p);
17748 stmt_expr = finish_stmt_expr (stmt_expr, false);
17749 cur_stmt_expr = old_stmt_expr;
17751 /* If the resulting list of expression statement is empty,
17752 fold it further into void_node. */
17753 if (empty_expr_stmt_p (stmt_expr))
17754 stmt_expr = void_node;
17756 RETURN (stmt_expr);
17759 case LAMBDA_EXPR:
17761 tree r = build_lambda_expr ();
17763 tree type = tsubst (LAMBDA_EXPR_CLOSURE (t), args, complain, NULL_TREE);
17764 LAMBDA_EXPR_CLOSURE (r) = type;
17765 CLASSTYPE_LAMBDA_EXPR (type) = r;
17767 LAMBDA_EXPR_LOCATION (r)
17768 = LAMBDA_EXPR_LOCATION (t);
17769 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (r)
17770 = LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (t);
17771 LAMBDA_EXPR_MUTABLE_P (r) = LAMBDA_EXPR_MUTABLE_P (t);
17772 LAMBDA_EXPR_DISCRIMINATOR (r)
17773 = (LAMBDA_EXPR_DISCRIMINATOR (t));
17774 tree scope = LAMBDA_EXPR_EXTRA_SCOPE (t);
17775 if (!scope)
17776 /* No substitution needed. */;
17777 else if (VAR_OR_FUNCTION_DECL_P (scope))
17778 /* For a function or variable scope, we want to use tsubst so that we
17779 don't complain about referring to an auto before deduction. */
17780 scope = tsubst (scope, args, complain, in_decl);
17781 else if (TREE_CODE (scope) == PARM_DECL)
17783 /* Look up the parameter we want directly, as tsubst_copy
17784 doesn't do what we need. */
17785 tree fn = tsubst (DECL_CONTEXT (scope), args, complain, in_decl);
17786 tree parm = FUNCTION_FIRST_USER_PARM (fn);
17787 while (DECL_PARM_INDEX (parm) != DECL_PARM_INDEX (scope))
17788 parm = DECL_CHAIN (parm);
17789 scope = parm;
17790 /* FIXME Work around the parm not having DECL_CONTEXT set. */
17791 if (DECL_CONTEXT (scope) == NULL_TREE)
17792 DECL_CONTEXT (scope) = fn;
17794 else if (TREE_CODE (scope) == FIELD_DECL)
17795 /* For a field, use tsubst_copy so that we look up the existing field
17796 rather than build a new one. */
17797 scope = RECUR (scope);
17798 else
17799 gcc_unreachable ();
17800 LAMBDA_EXPR_EXTRA_SCOPE (r) = scope;
17802 gcc_assert (LAMBDA_EXPR_THIS_CAPTURE (t) == NULL_TREE
17803 && LAMBDA_EXPR_PENDING_PROXIES (t) == NULL);
17805 /* Do this again now that LAMBDA_EXPR_EXTRA_SCOPE is set. */
17806 determine_visibility (TYPE_NAME (type));
17807 /* Now that we know visibility, instantiate the type so we have a
17808 declaration of the op() for later calls to lambda_function. */
17809 complete_type (type);
17811 if (tree fn = lambda_function (type))
17812 LAMBDA_EXPR_RETURN_TYPE (r) = TREE_TYPE (TREE_TYPE (fn));
17814 LAMBDA_EXPR_THIS_CAPTURE (r) = NULL_TREE;
17816 insert_pending_capture_proxies ();
17818 RETURN (build_lambda_object (r));
17821 case TARGET_EXPR:
17822 /* We can get here for a constant initializer of non-dependent type.
17823 FIXME stop folding in cp_parser_initializer_clause. */
17825 tree r = get_target_expr_sfinae (RECUR (TARGET_EXPR_INITIAL (t)),
17826 complain);
17827 RETURN (r);
17830 case TRANSACTION_EXPR:
17831 RETURN (tsubst_expr(t, args, complain, in_decl,
17832 integral_constant_expression_p));
17834 case PAREN_EXPR:
17835 RETURN (finish_parenthesized_expr (RECUR (TREE_OPERAND (t, 0))));
17837 case VEC_PERM_EXPR:
17839 tree op0 = RECUR (TREE_OPERAND (t, 0));
17840 tree op1 = RECUR (TREE_OPERAND (t, 1));
17841 tree op2 = RECUR (TREE_OPERAND (t, 2));
17842 RETURN (build_x_vec_perm_expr (input_location, op0, op1, op2,
17843 complain));
17846 case REQUIRES_EXPR:
17847 RETURN (tsubst_requires_expr (t, args, complain, in_decl));
17849 default:
17850 /* Handle Objective-C++ constructs, if appropriate. */
17852 tree subst
17853 = objcp_tsubst_copy_and_build (t, args, complain,
17854 in_decl, /*function_p=*/false);
17855 if (subst)
17856 RETURN (subst);
17858 RETURN (tsubst_copy (t, args, complain, in_decl));
17861 #undef RECUR
17862 #undef RETURN
17863 out:
17864 input_location = loc;
17865 return retval;
17868 /* Verify that the instantiated ARGS are valid. For type arguments,
17869 make sure that the type's linkage is ok. For non-type arguments,
17870 make sure they are constants if they are integral or enumerations.
17871 Emit an error under control of COMPLAIN, and return TRUE on error. */
17873 static bool
17874 check_instantiated_arg (tree tmpl, tree t, tsubst_flags_t complain)
17876 if (dependent_template_arg_p (t))
17877 return false;
17878 if (ARGUMENT_PACK_P (t))
17880 tree vec = ARGUMENT_PACK_ARGS (t);
17881 int len = TREE_VEC_LENGTH (vec);
17882 bool result = false;
17883 int i;
17885 for (i = 0; i < len; ++i)
17886 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (vec, i), complain))
17887 result = true;
17888 return result;
17890 else if (TYPE_P (t))
17892 /* [basic.link]: A name with no linkage (notably, the name
17893 of a class or enumeration declared in a local scope)
17894 shall not be used to declare an entity with linkage.
17895 This implies that names with no linkage cannot be used as
17896 template arguments
17898 DR 757 relaxes this restriction for C++0x. */
17899 tree nt = (cxx_dialect > cxx98 ? NULL_TREE
17900 : no_linkage_check (t, /*relaxed_p=*/false));
17902 if (nt)
17904 /* DR 488 makes use of a type with no linkage cause
17905 type deduction to fail. */
17906 if (complain & tf_error)
17908 if (TYPE_UNNAMED_P (nt))
17909 error ("%qT is/uses unnamed type", t);
17910 else
17911 error ("template argument for %qD uses local type %qT",
17912 tmpl, t);
17914 return true;
17916 /* In order to avoid all sorts of complications, we do not
17917 allow variably-modified types as template arguments. */
17918 else if (variably_modified_type_p (t, NULL_TREE))
17920 if (complain & tf_error)
17921 error ("%qT is a variably modified type", t);
17922 return true;
17925 /* Class template and alias template arguments should be OK. */
17926 else if (DECL_TYPE_TEMPLATE_P (t))
17928 /* A non-type argument of integral or enumerated type must be a
17929 constant. */
17930 else if (TREE_TYPE (t)
17931 && INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (t))
17932 && !REFERENCE_REF_P (t)
17933 && !TREE_CONSTANT (t))
17935 if (complain & tf_error)
17936 error ("integral expression %qE is not constant", t);
17937 return true;
17939 return false;
17942 static bool
17943 check_instantiated_args (tree tmpl, tree args, tsubst_flags_t complain)
17945 int ix, len = DECL_NTPARMS (tmpl);
17946 bool result = false;
17948 for (ix = 0; ix != len; ix++)
17950 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (args, ix), complain))
17951 result = true;
17953 if (result && (complain & tf_error))
17954 error (" trying to instantiate %qD", tmpl);
17955 return result;
17958 /* We're out of SFINAE context now, so generate diagnostics for the access
17959 errors we saw earlier when instantiating D from TMPL and ARGS. */
17961 static void
17962 recheck_decl_substitution (tree d, tree tmpl, tree args)
17964 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
17965 tree type = TREE_TYPE (pattern);
17966 location_t loc = input_location;
17968 push_access_scope (d);
17969 push_deferring_access_checks (dk_no_deferred);
17970 input_location = DECL_SOURCE_LOCATION (pattern);
17971 tsubst (type, args, tf_warning_or_error, d);
17972 input_location = loc;
17973 pop_deferring_access_checks ();
17974 pop_access_scope (d);
17977 /* Instantiate the indicated variable, function, or alias template TMPL with
17978 the template arguments in TARG_PTR. */
17980 static tree
17981 instantiate_template_1 (tree tmpl, tree orig_args, tsubst_flags_t complain)
17983 tree targ_ptr = orig_args;
17984 tree fndecl;
17985 tree gen_tmpl;
17986 tree spec;
17987 bool access_ok = true;
17989 if (tmpl == error_mark_node)
17990 return error_mark_node;
17992 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
17994 /* If this function is a clone, handle it specially. */
17995 if (DECL_CLONED_FUNCTION_P (tmpl))
17997 tree spec;
17998 tree clone;
18000 /* Use DECL_ABSTRACT_ORIGIN because only FUNCTION_DECLs have
18001 DECL_CLONED_FUNCTION. */
18002 spec = instantiate_template (DECL_ABSTRACT_ORIGIN (tmpl),
18003 targ_ptr, complain);
18004 if (spec == error_mark_node)
18005 return error_mark_node;
18007 /* Look for the clone. */
18008 FOR_EACH_CLONE (clone, spec)
18009 if (DECL_NAME (clone) == DECL_NAME (tmpl))
18010 return clone;
18011 /* We should always have found the clone by now. */
18012 gcc_unreachable ();
18013 return NULL_TREE;
18016 if (targ_ptr == error_mark_node)
18017 return error_mark_node;
18019 /* Check to see if we already have this specialization. */
18020 gen_tmpl = most_general_template (tmpl);
18021 if (TMPL_ARGS_DEPTH (targ_ptr)
18022 < TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (gen_tmpl)))
18023 /* targ_ptr only has the innermost template args, so add the outer ones
18024 from tmpl, which could be either a partial instantiation or gen_tmpl (in
18025 the case of a non-dependent call within a template definition). */
18026 targ_ptr = (add_outermost_template_args
18027 (DECL_TI_ARGS (DECL_TEMPLATE_RESULT (tmpl)),
18028 targ_ptr));
18030 /* It would be nice to avoid hashing here and then again in tsubst_decl,
18031 but it doesn't seem to be on the hot path. */
18032 spec = retrieve_specialization (gen_tmpl, targ_ptr, 0);
18034 gcc_assert (tmpl == gen_tmpl
18035 || ((fndecl = retrieve_specialization (tmpl, orig_args, 0))
18036 == spec)
18037 || fndecl == NULL_TREE);
18039 if (spec != NULL_TREE)
18041 if (FNDECL_HAS_ACCESS_ERRORS (spec))
18043 if (complain & tf_error)
18044 recheck_decl_substitution (spec, gen_tmpl, targ_ptr);
18045 return error_mark_node;
18047 return spec;
18050 if (check_instantiated_args (gen_tmpl, INNERMOST_TEMPLATE_ARGS (targ_ptr),
18051 complain))
18052 return error_mark_node;
18054 /* We are building a FUNCTION_DECL, during which the access of its
18055 parameters and return types have to be checked. However this
18056 FUNCTION_DECL which is the desired context for access checking
18057 is not built yet. We solve this chicken-and-egg problem by
18058 deferring all checks until we have the FUNCTION_DECL. */
18059 push_deferring_access_checks (dk_deferred);
18061 /* Instantiation of the function happens in the context of the function
18062 template, not the context of the overload resolution we're doing. */
18063 push_to_top_level ();
18064 /* If there are dependent arguments, e.g. because we're doing partial
18065 ordering, make sure processing_template_decl stays set. */
18066 if (uses_template_parms (targ_ptr))
18067 ++processing_template_decl;
18068 if (DECL_CLASS_SCOPE_P (gen_tmpl))
18070 tree ctx = tsubst_aggr_type (DECL_CONTEXT (gen_tmpl), targ_ptr,
18071 complain, gen_tmpl, true);
18072 push_nested_class (ctx);
18075 tree pattern = DECL_TEMPLATE_RESULT (gen_tmpl);
18077 fndecl = NULL_TREE;
18078 if (VAR_P (pattern))
18080 /* We need to determine if we're using a partial or explicit
18081 specialization now, because the type of the variable could be
18082 different. */
18083 tree tid = lookup_template_variable (gen_tmpl, targ_ptr);
18084 tree elt = most_specialized_partial_spec (tid, complain);
18085 if (elt == error_mark_node)
18086 pattern = error_mark_node;
18087 else if (elt)
18089 tree partial_tmpl = TREE_VALUE (elt);
18090 tree partial_args = TREE_PURPOSE (elt);
18091 tree partial_pat = DECL_TEMPLATE_RESULT (partial_tmpl);
18092 fndecl = tsubst (partial_pat, partial_args, complain, gen_tmpl);
18096 /* Substitute template parameters to obtain the specialization. */
18097 if (fndecl == NULL_TREE)
18098 fndecl = tsubst (pattern, targ_ptr, complain, gen_tmpl);
18099 if (DECL_CLASS_SCOPE_P (gen_tmpl))
18100 pop_nested_class ();
18101 pop_from_top_level ();
18103 if (fndecl == error_mark_node)
18105 pop_deferring_access_checks ();
18106 return error_mark_node;
18109 /* The DECL_TI_TEMPLATE should always be the immediate parent
18110 template, not the most general template. */
18111 DECL_TI_TEMPLATE (fndecl) = tmpl;
18112 DECL_TI_ARGS (fndecl) = targ_ptr;
18114 /* Now we know the specialization, compute access previously
18115 deferred. Do no access control for inheriting constructors,
18116 as we already checked access for the inherited constructor. */
18117 if (!(flag_new_inheriting_ctors
18118 && DECL_INHERITED_CTOR (fndecl)))
18120 push_access_scope (fndecl);
18121 if (!perform_deferred_access_checks (complain))
18122 access_ok = false;
18123 pop_access_scope (fndecl);
18125 pop_deferring_access_checks ();
18127 /* If we've just instantiated the main entry point for a function,
18128 instantiate all the alternate entry points as well. We do this
18129 by cloning the instantiation of the main entry point, not by
18130 instantiating the template clones. */
18131 if (DECL_CHAIN (gen_tmpl) && DECL_CLONED_FUNCTION_P (DECL_CHAIN (gen_tmpl)))
18132 clone_function_decl (fndecl, /*update_method_vec_p=*/0);
18134 if (!access_ok)
18136 if (!(complain & tf_error))
18138 /* Remember to reinstantiate when we're out of SFINAE so the user
18139 can see the errors. */
18140 FNDECL_HAS_ACCESS_ERRORS (fndecl) = true;
18142 return error_mark_node;
18144 return fndecl;
18147 /* Wrapper for instantiate_template_1. */
18149 tree
18150 instantiate_template (tree tmpl, tree orig_args, tsubst_flags_t complain)
18152 tree ret;
18153 timevar_push (TV_TEMPLATE_INST);
18154 ret = instantiate_template_1 (tmpl, orig_args, complain);
18155 timevar_pop (TV_TEMPLATE_INST);
18156 return ret;
18159 /* Instantiate the alias template TMPL with ARGS. Also push a template
18160 instantiation level, which instantiate_template doesn't do because
18161 functions and variables have sufficient context established by the
18162 callers. */
18164 static tree
18165 instantiate_alias_template (tree tmpl, tree args, tsubst_flags_t complain)
18167 struct pending_template *old_last_pend = last_pending_template;
18168 struct tinst_level *old_error_tinst = last_error_tinst_level;
18169 if (tmpl == error_mark_node || args == error_mark_node)
18170 return error_mark_node;
18171 tree tinst = build_tree_list (tmpl, args);
18172 if (!push_tinst_level (tinst))
18174 ggc_free (tinst);
18175 return error_mark_node;
18178 args =
18179 coerce_innermost_template_parms (DECL_TEMPLATE_PARMS (tmpl),
18180 args, tmpl, complain,
18181 /*require_all_args=*/true,
18182 /*use_default_args=*/true);
18184 tree r = instantiate_template (tmpl, args, complain);
18185 pop_tinst_level ();
18186 /* We can't free this if a pending_template entry or last_error_tinst_level
18187 is pointing at it. */
18188 if (last_pending_template == old_last_pend
18189 && last_error_tinst_level == old_error_tinst)
18190 ggc_free (tinst);
18192 return r;
18195 /* PARM is a template parameter pack for FN. Returns true iff
18196 PARM is used in a deducible way in the argument list of FN. */
18198 static bool
18199 pack_deducible_p (tree parm, tree fn)
18201 tree t = FUNCTION_FIRST_USER_PARMTYPE (fn);
18202 for (; t; t = TREE_CHAIN (t))
18204 tree type = TREE_VALUE (t);
18205 tree packs;
18206 if (!PACK_EXPANSION_P (type))
18207 continue;
18208 for (packs = PACK_EXPANSION_PARAMETER_PACKS (type);
18209 packs; packs = TREE_CHAIN (packs))
18210 if (template_args_equal (TREE_VALUE (packs), parm))
18212 /* The template parameter pack is used in a function parameter
18213 pack. If this is the end of the parameter list, the
18214 template parameter pack is deducible. */
18215 if (TREE_CHAIN (t) == void_list_node)
18216 return true;
18217 else
18218 /* Otherwise, not. Well, it could be deduced from
18219 a non-pack parameter, but doing so would end up with
18220 a deduction mismatch, so don't bother. */
18221 return false;
18224 /* The template parameter pack isn't used in any function parameter
18225 packs, but it might be used deeper, e.g. tuple<Args...>. */
18226 return true;
18229 /* The FN is a TEMPLATE_DECL for a function. ARGS is an array with
18230 NARGS elements of the arguments that are being used when calling
18231 it. TARGS is a vector into which the deduced template arguments
18232 are placed.
18234 Returns either a FUNCTION_DECL for the matching specialization of FN or
18235 NULL_TREE if no suitable specialization can be found. If EXPLAIN_P is
18236 true, diagnostics will be printed to explain why it failed.
18238 If FN is a conversion operator, or we are trying to produce a specific
18239 specialization, RETURN_TYPE is the return type desired.
18241 The EXPLICIT_TARGS are explicit template arguments provided via a
18242 template-id.
18244 The parameter STRICT is one of:
18246 DEDUCE_CALL:
18247 We are deducing arguments for a function call, as in
18248 [temp.deduct.call]. If RETURN_TYPE is non-null, we are
18249 deducing arguments for a call to the result of a conversion
18250 function template, as in [over.call.object].
18252 DEDUCE_CONV:
18253 We are deducing arguments for a conversion function, as in
18254 [temp.deduct.conv].
18256 DEDUCE_EXACT:
18257 We are deducing arguments when doing an explicit instantiation
18258 as in [temp.explicit], when determining an explicit specialization
18259 as in [temp.expl.spec], or when taking the address of a function
18260 template, as in [temp.deduct.funcaddr]. */
18262 tree
18263 fn_type_unification (tree fn,
18264 tree explicit_targs,
18265 tree targs,
18266 const tree *args,
18267 unsigned int nargs,
18268 tree return_type,
18269 unification_kind_t strict,
18270 int flags,
18271 bool explain_p,
18272 bool decltype_p)
18274 tree parms;
18275 tree fntype;
18276 tree decl = NULL_TREE;
18277 tsubst_flags_t complain = (explain_p ? tf_warning_or_error : tf_none);
18278 bool ok;
18279 static int deduction_depth;
18280 struct pending_template *old_last_pend = last_pending_template;
18281 struct tinst_level *old_error_tinst = last_error_tinst_level;
18283 tree orig_fn = fn;
18284 if (flag_new_inheriting_ctors)
18285 fn = strip_inheriting_ctors (fn);
18287 tree tparms = DECL_INNERMOST_TEMPLATE_PARMS (fn);
18288 tree tinst;
18289 tree r = error_mark_node;
18291 tree full_targs = targs;
18292 if (TMPL_ARGS_DEPTH (targs)
18293 < TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (fn)))
18294 full_targs = (add_outermost_template_args
18295 (DECL_TI_ARGS (DECL_TEMPLATE_RESULT (fn)),
18296 targs));
18298 if (decltype_p)
18299 complain |= tf_decltype;
18301 /* In C++0x, it's possible to have a function template whose type depends
18302 on itself recursively. This is most obvious with decltype, but can also
18303 occur with enumeration scope (c++/48969). So we need to catch infinite
18304 recursion and reject the substitution at deduction time; this function
18305 will return error_mark_node for any repeated substitution.
18307 This also catches excessive recursion such as when f<N> depends on
18308 f<N-1> across all integers, and returns error_mark_node for all the
18309 substitutions back up to the initial one.
18311 This is, of course, not reentrant. */
18312 if (excessive_deduction_depth)
18313 return error_mark_node;
18314 tinst = build_tree_list (fn, NULL_TREE);
18315 ++deduction_depth;
18317 gcc_assert (TREE_CODE (fn) == TEMPLATE_DECL);
18319 fntype = TREE_TYPE (fn);
18320 if (explicit_targs)
18322 /* [temp.deduct]
18324 The specified template arguments must match the template
18325 parameters in kind (i.e., type, nontype, template), and there
18326 must not be more arguments than there are parameters;
18327 otherwise type deduction fails.
18329 Nontype arguments must match the types of the corresponding
18330 nontype template parameters, or must be convertible to the
18331 types of the corresponding nontype parameters as specified in
18332 _temp.arg.nontype_, otherwise type deduction fails.
18334 All references in the function type of the function template
18335 to the corresponding template parameters are replaced by the
18336 specified template argument values. If a substitution in a
18337 template parameter or in the function type of the function
18338 template results in an invalid type, type deduction fails. */
18339 int i, len = TREE_VEC_LENGTH (tparms);
18340 location_t loc = input_location;
18341 bool incomplete = false;
18343 if (explicit_targs == error_mark_node)
18344 goto fail;
18346 if (TMPL_ARGS_DEPTH (explicit_targs)
18347 < TMPL_ARGS_DEPTH (full_targs))
18348 explicit_targs = add_outermost_template_args (full_targs,
18349 explicit_targs);
18351 /* Adjust any explicit template arguments before entering the
18352 substitution context. */
18353 explicit_targs
18354 = (coerce_template_parms (tparms, explicit_targs, NULL_TREE,
18355 complain,
18356 /*require_all_args=*/false,
18357 /*use_default_args=*/false));
18358 if (explicit_targs == error_mark_node)
18359 goto fail;
18361 /* Substitute the explicit args into the function type. This is
18362 necessary so that, for instance, explicitly declared function
18363 arguments can match null pointed constants. If we were given
18364 an incomplete set of explicit args, we must not do semantic
18365 processing during substitution as we could create partial
18366 instantiations. */
18367 for (i = 0; i < len; i++)
18369 tree parm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
18370 bool parameter_pack = false;
18371 tree targ = TREE_VEC_ELT (explicit_targs, i);
18373 /* Dig out the actual parm. */
18374 if (TREE_CODE (parm) == TYPE_DECL
18375 || TREE_CODE (parm) == TEMPLATE_DECL)
18377 parm = TREE_TYPE (parm);
18378 parameter_pack = TEMPLATE_TYPE_PARAMETER_PACK (parm);
18380 else if (TREE_CODE (parm) == PARM_DECL)
18382 parm = DECL_INITIAL (parm);
18383 parameter_pack = TEMPLATE_PARM_PARAMETER_PACK (parm);
18386 if (!parameter_pack && targ == NULL_TREE)
18387 /* No explicit argument for this template parameter. */
18388 incomplete = true;
18390 if (parameter_pack && pack_deducible_p (parm, fn))
18392 /* Mark the argument pack as "incomplete". We could
18393 still deduce more arguments during unification.
18394 We remove this mark in type_unification_real. */
18395 if (targ)
18397 ARGUMENT_PACK_INCOMPLETE_P(targ) = 1;
18398 ARGUMENT_PACK_EXPLICIT_ARGS (targ)
18399 = ARGUMENT_PACK_ARGS (targ);
18402 /* We have some incomplete argument packs. */
18403 incomplete = true;
18407 TREE_VALUE (tinst) = explicit_targs;
18408 if (!push_tinst_level (tinst))
18410 excessive_deduction_depth = true;
18411 goto fail;
18413 processing_template_decl += incomplete;
18414 input_location = DECL_SOURCE_LOCATION (fn);
18415 /* Ignore any access checks; we'll see them again in
18416 instantiate_template and they might have the wrong
18417 access path at this point. */
18418 push_deferring_access_checks (dk_deferred);
18419 fntype = tsubst (TREE_TYPE (fn), explicit_targs,
18420 complain | tf_partial | tf_fndecl_type, NULL_TREE);
18421 pop_deferring_access_checks ();
18422 input_location = loc;
18423 processing_template_decl -= incomplete;
18424 pop_tinst_level ();
18426 if (fntype == error_mark_node)
18427 goto fail;
18429 /* Place the explicitly specified arguments in TARGS. */
18430 explicit_targs = INNERMOST_TEMPLATE_ARGS (explicit_targs);
18431 for (i = NUM_TMPL_ARGS (explicit_targs); i--;)
18432 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (explicit_targs, i);
18435 /* Never do unification on the 'this' parameter. */
18436 parms = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (fntype));
18438 if (return_type && strict == DEDUCE_CALL)
18440 /* We're deducing for a call to the result of a template conversion
18441 function. The parms we really want are in return_type. */
18442 if (POINTER_TYPE_P (return_type))
18443 return_type = TREE_TYPE (return_type);
18444 parms = TYPE_ARG_TYPES (return_type);
18446 else if (return_type)
18448 tree *new_args;
18450 parms = tree_cons (NULL_TREE, TREE_TYPE (fntype), parms);
18451 new_args = XALLOCAVEC (tree, nargs + 1);
18452 new_args[0] = return_type;
18453 memcpy (new_args + 1, args, nargs * sizeof (tree));
18454 args = new_args;
18455 ++nargs;
18458 /* We allow incomplete unification without an error message here
18459 because the standard doesn't seem to explicitly prohibit it. Our
18460 callers must be ready to deal with unification failures in any
18461 event. */
18463 TREE_VALUE (tinst) = targs;
18464 /* If we aren't explaining yet, push tinst context so we can see where
18465 any errors (e.g. from class instantiations triggered by instantiation
18466 of default template arguments) come from. If we are explaining, this
18467 context is redundant. */
18468 if (!explain_p && !push_tinst_level (tinst))
18470 excessive_deduction_depth = true;
18471 goto fail;
18474 /* type_unification_real will pass back any access checks from default
18475 template argument substitution. */
18476 vec<deferred_access_check, va_gc> *checks;
18477 checks = NULL;
18479 ok = !type_unification_real (DECL_INNERMOST_TEMPLATE_PARMS (fn),
18480 full_targs, parms, args, nargs, /*subr=*/0,
18481 strict, flags, &checks, explain_p);
18482 if (!explain_p)
18483 pop_tinst_level ();
18484 if (!ok)
18485 goto fail;
18487 /* Now that we have bindings for all of the template arguments,
18488 ensure that the arguments deduced for the template template
18489 parameters have compatible template parameter lists. We cannot
18490 check this property before we have deduced all template
18491 arguments, because the template parameter types of a template
18492 template parameter might depend on prior template parameters
18493 deduced after the template template parameter. The following
18494 ill-formed example illustrates this issue:
18496 template<typename T, template<T> class C> void f(C<5>, T);
18498 template<int N> struct X {};
18500 void g() {
18501 f(X<5>(), 5l); // error: template argument deduction fails
18504 The template parameter list of 'C' depends on the template type
18505 parameter 'T', but 'C' is deduced to 'X' before 'T' is deduced to
18506 'long'. Thus, we can't check that 'C' cannot bind to 'X' at the
18507 time that we deduce 'C'. */
18508 if (!template_template_parm_bindings_ok_p
18509 (DECL_INNERMOST_TEMPLATE_PARMS (fn), targs))
18511 unify_inconsistent_template_template_parameters (explain_p);
18512 goto fail;
18515 /* All is well so far. Now, check:
18517 [temp.deduct]
18519 When all template arguments have been deduced, all uses of
18520 template parameters in nondeduced contexts are replaced with
18521 the corresponding deduced argument values. If the
18522 substitution results in an invalid type, as described above,
18523 type deduction fails. */
18524 TREE_VALUE (tinst) = targs;
18525 if (!push_tinst_level (tinst))
18527 excessive_deduction_depth = true;
18528 goto fail;
18531 /* Also collect access checks from the instantiation. */
18532 reopen_deferring_access_checks (checks);
18534 decl = instantiate_template (fn, targs, complain);
18536 checks = get_deferred_access_checks ();
18537 pop_deferring_access_checks ();
18539 pop_tinst_level ();
18541 if (decl == error_mark_node)
18542 goto fail;
18544 /* Now perform any access checks encountered during substitution. */
18545 push_access_scope (decl);
18546 ok = perform_access_checks (checks, complain);
18547 pop_access_scope (decl);
18548 if (!ok)
18549 goto fail;
18551 /* If we're looking for an exact match, check that what we got
18552 is indeed an exact match. It might not be if some template
18553 parameters are used in non-deduced contexts. But don't check
18554 for an exact match if we have dependent template arguments;
18555 in that case we're doing partial ordering, and we already know
18556 that we have two candidates that will provide the actual type. */
18557 if (strict == DEDUCE_EXACT && !any_dependent_template_arguments_p (targs))
18559 tree substed = TREE_TYPE (decl);
18560 unsigned int i;
18562 tree sarg
18563 = skip_artificial_parms_for (decl, TYPE_ARG_TYPES (substed));
18564 if (return_type)
18565 sarg = tree_cons (NULL_TREE, TREE_TYPE (substed), sarg);
18566 for (i = 0; i < nargs && sarg; ++i, sarg = TREE_CHAIN (sarg))
18567 if (!same_type_p (args[i], TREE_VALUE (sarg)))
18569 unify_type_mismatch (explain_p, args[i],
18570 TREE_VALUE (sarg));
18571 goto fail;
18575 /* After doing deduction with the inherited constructor, actually return an
18576 instantiation of the inheriting constructor. */
18577 if (orig_fn != fn)
18578 decl = instantiate_template (orig_fn, targs, complain);
18580 r = decl;
18582 fail:
18583 --deduction_depth;
18584 if (excessive_deduction_depth)
18586 if (deduction_depth == 0)
18587 /* Reset once we're all the way out. */
18588 excessive_deduction_depth = false;
18591 /* We can't free this if a pending_template entry or last_error_tinst_level
18592 is pointing at it. */
18593 if (last_pending_template == old_last_pend
18594 && last_error_tinst_level == old_error_tinst)
18595 ggc_free (tinst);
18597 return r;
18600 /* Adjust types before performing type deduction, as described in
18601 [temp.deduct.call] and [temp.deduct.conv]. The rules in these two
18602 sections are symmetric. PARM is the type of a function parameter
18603 or the return type of the conversion function. ARG is the type of
18604 the argument passed to the call, or the type of the value
18605 initialized with the result of the conversion function.
18606 ARG_EXPR is the original argument expression, which may be null. */
18608 static int
18609 maybe_adjust_types_for_deduction (unification_kind_t strict,
18610 tree* parm,
18611 tree* arg,
18612 tree arg_expr)
18614 int result = 0;
18616 switch (strict)
18618 case DEDUCE_CALL:
18619 break;
18621 case DEDUCE_CONV:
18622 /* Swap PARM and ARG throughout the remainder of this
18623 function; the handling is precisely symmetric since PARM
18624 will initialize ARG rather than vice versa. */
18625 std::swap (parm, arg);
18626 break;
18628 case DEDUCE_EXACT:
18629 /* Core issue #873: Do the DR606 thing (see below) for these cases,
18630 too, but here handle it by stripping the reference from PARM
18631 rather than by adding it to ARG. */
18632 if (TREE_CODE (*parm) == REFERENCE_TYPE
18633 && TYPE_REF_IS_RVALUE (*parm)
18634 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
18635 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
18636 && TREE_CODE (*arg) == REFERENCE_TYPE
18637 && !TYPE_REF_IS_RVALUE (*arg))
18638 *parm = TREE_TYPE (*parm);
18639 /* Nothing else to do in this case. */
18640 return 0;
18642 default:
18643 gcc_unreachable ();
18646 if (TREE_CODE (*parm) != REFERENCE_TYPE)
18648 /* [temp.deduct.call]
18650 If P is not a reference type:
18652 --If A is an array type, the pointer type produced by the
18653 array-to-pointer standard conversion (_conv.array_) is
18654 used in place of A for type deduction; otherwise,
18656 --If A is a function type, the pointer type produced by
18657 the function-to-pointer standard conversion
18658 (_conv.func_) is used in place of A for type deduction;
18659 otherwise,
18661 --If A is a cv-qualified type, the top level
18662 cv-qualifiers of A's type are ignored for type
18663 deduction. */
18664 if (TREE_CODE (*arg) == ARRAY_TYPE)
18665 *arg = build_pointer_type (TREE_TYPE (*arg));
18666 else if (TREE_CODE (*arg) == FUNCTION_TYPE)
18667 *arg = build_pointer_type (*arg);
18668 else
18669 *arg = TYPE_MAIN_VARIANT (*arg);
18672 /* [14.8.2.1/3 temp.deduct.call], "A forwarding reference is an rvalue
18673 reference to a cv-unqualified template parameter that does not represent a
18674 template parameter of a class template (during class template argument
18675 deduction (13.3.1.8)). If P is a forwarding reference and the argument is
18676 an lvalue, the type "lvalue reference to A" is used in place of A for type
18677 deduction. */
18678 if (TREE_CODE (*parm) == REFERENCE_TYPE
18679 && TYPE_REF_IS_RVALUE (*parm)
18680 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
18681 && !TEMPLATE_TYPE_PARM_FOR_CLASS (TREE_TYPE (*parm))
18682 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
18683 && (arg_expr ? lvalue_p (arg_expr)
18684 /* try_one_overload doesn't provide an arg_expr, but
18685 functions are always lvalues. */
18686 : TREE_CODE (*arg) == FUNCTION_TYPE))
18687 *arg = build_reference_type (*arg);
18689 /* [temp.deduct.call]
18691 If P is a cv-qualified type, the top level cv-qualifiers
18692 of P's type are ignored for type deduction. If P is a
18693 reference type, the type referred to by P is used for
18694 type deduction. */
18695 *parm = TYPE_MAIN_VARIANT (*parm);
18696 if (TREE_CODE (*parm) == REFERENCE_TYPE)
18698 *parm = TREE_TYPE (*parm);
18699 result |= UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
18702 /* DR 322. For conversion deduction, remove a reference type on parm
18703 too (which has been swapped into ARG). */
18704 if (strict == DEDUCE_CONV && TREE_CODE (*arg) == REFERENCE_TYPE)
18705 *arg = TREE_TYPE (*arg);
18707 return result;
18710 /* Subroutine of unify_one_argument. PARM is a function parameter of a
18711 template which does contain any deducible template parameters; check if
18712 ARG is a suitable match for it. STRICT, FLAGS and EXPLAIN_P are as in
18713 unify_one_argument. */
18715 static int
18716 check_non_deducible_conversion (tree parm, tree arg, int strict,
18717 int flags, bool explain_p)
18719 tree type;
18721 if (!TYPE_P (arg))
18722 type = TREE_TYPE (arg);
18723 else
18724 type = arg;
18726 if (same_type_p (parm, type))
18727 return unify_success (explain_p);
18729 if (strict == DEDUCE_CONV)
18731 if (can_convert_arg (type, parm, NULL_TREE, flags,
18732 explain_p ? tf_warning_or_error : tf_none))
18733 return unify_success (explain_p);
18735 else if (strict != DEDUCE_EXACT)
18737 if (can_convert_arg (parm, type,
18738 TYPE_P (arg) ? NULL_TREE : arg,
18739 flags, explain_p ? tf_warning_or_error : tf_none))
18740 return unify_success (explain_p);
18743 if (strict == DEDUCE_EXACT)
18744 return unify_type_mismatch (explain_p, parm, arg);
18745 else
18746 return unify_arg_conversion (explain_p, parm, type, arg);
18749 static bool uses_deducible_template_parms (tree type);
18751 /* Returns true iff the expression EXPR is one from which a template
18752 argument can be deduced. In other words, if it's an undecorated
18753 use of a template non-type parameter. */
18755 static bool
18756 deducible_expression (tree expr)
18758 /* Strip implicit conversions. */
18759 while (CONVERT_EXPR_P (expr))
18760 expr = TREE_OPERAND (expr, 0);
18761 return (TREE_CODE (expr) == TEMPLATE_PARM_INDEX);
18764 /* Returns true iff the array domain DOMAIN uses a template parameter in a
18765 deducible way; that is, if it has a max value of <PARM> - 1. */
18767 static bool
18768 deducible_array_bound (tree domain)
18770 if (domain == NULL_TREE)
18771 return false;
18773 tree max = TYPE_MAX_VALUE (domain);
18774 if (TREE_CODE (max) != MINUS_EXPR)
18775 return false;
18777 return deducible_expression (TREE_OPERAND (max, 0));
18780 /* Returns true iff the template arguments ARGS use a template parameter
18781 in a deducible way. */
18783 static bool
18784 deducible_template_args (tree args)
18786 for (int i = 0; i < TREE_VEC_LENGTH (args); ++i)
18788 bool deducible;
18789 tree elt = TREE_VEC_ELT (args, i);
18790 if (ARGUMENT_PACK_P (elt))
18791 deducible = deducible_template_args (ARGUMENT_PACK_ARGS (elt));
18792 else
18794 if (PACK_EXPANSION_P (elt))
18795 elt = PACK_EXPANSION_PATTERN (elt);
18796 if (TREE_CODE (elt) == TEMPLATE_TEMPLATE_PARM)
18797 deducible = true;
18798 else if (TYPE_P (elt))
18799 deducible = uses_deducible_template_parms (elt);
18800 else
18801 deducible = deducible_expression (elt);
18803 if (deducible)
18804 return true;
18806 return false;
18809 /* Returns true iff TYPE contains any deducible references to template
18810 parameters, as per 14.8.2.5. */
18812 static bool
18813 uses_deducible_template_parms (tree type)
18815 if (PACK_EXPANSION_P (type))
18816 type = PACK_EXPANSION_PATTERN (type);
18818 /* T
18819 cv-list T
18820 TT<T>
18821 TT<i>
18822 TT<> */
18823 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
18824 || TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
18825 return true;
18827 /* T*
18829 T&& */
18830 if (POINTER_TYPE_P (type))
18831 return uses_deducible_template_parms (TREE_TYPE (type));
18833 /* T[integer-constant ]
18834 type [i] */
18835 if (TREE_CODE (type) == ARRAY_TYPE)
18836 return (uses_deducible_template_parms (TREE_TYPE (type))
18837 || deducible_array_bound (TYPE_DOMAIN (type)));
18839 /* T type ::*
18840 type T::*
18841 T T::*
18842 T (type ::*)()
18843 type (T::*)()
18844 type (type ::*)(T)
18845 type (T::*)(T)
18846 T (type ::*)(T)
18847 T (T::*)()
18848 T (T::*)(T) */
18849 if (TYPE_PTRMEM_P (type))
18850 return (uses_deducible_template_parms (TYPE_PTRMEM_CLASS_TYPE (type))
18851 || (uses_deducible_template_parms
18852 (TYPE_PTRMEM_POINTED_TO_TYPE (type))));
18854 /* template-name <T> (where template-name refers to a class template)
18855 template-name <i> (where template-name refers to a class template) */
18856 if (CLASS_TYPE_P (type)
18857 && CLASSTYPE_TEMPLATE_INFO (type)
18858 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type)))
18859 return deducible_template_args (INNERMOST_TEMPLATE_ARGS
18860 (CLASSTYPE_TI_ARGS (type)));
18862 /* type (T)
18864 T(T) */
18865 if (TREE_CODE (type) == FUNCTION_TYPE
18866 || TREE_CODE (type) == METHOD_TYPE)
18868 if (uses_deducible_template_parms (TREE_TYPE (type)))
18869 return true;
18870 tree parm = TYPE_ARG_TYPES (type);
18871 if (TREE_CODE (type) == METHOD_TYPE)
18872 parm = TREE_CHAIN (parm);
18873 for (; parm; parm = TREE_CHAIN (parm))
18874 if (uses_deducible_template_parms (TREE_VALUE (parm)))
18875 return true;
18878 return false;
18881 /* Subroutine of type_unification_real and unify_pack_expansion to
18882 handle unification of a single P/A pair. Parameters are as
18883 for those functions. */
18885 static int
18886 unify_one_argument (tree tparms, tree targs, tree parm, tree arg,
18887 int subr, unification_kind_t strict,
18888 bool explain_p)
18890 tree arg_expr = NULL_TREE;
18891 int arg_strict;
18893 if (arg == error_mark_node || parm == error_mark_node)
18894 return unify_invalid (explain_p);
18895 if (arg == unknown_type_node)
18896 /* We can't deduce anything from this, but we might get all the
18897 template args from other function args. */
18898 return unify_success (explain_p);
18900 /* Implicit conversions (Clause 4) will be performed on a function
18901 argument to convert it to the type of the corresponding function
18902 parameter if the parameter type contains no template-parameters that
18903 participate in template argument deduction. */
18904 if (strict != DEDUCE_EXACT
18905 && TYPE_P (parm) && !uses_deducible_template_parms (parm))
18906 /* For function parameters with no deducible template parameters,
18907 just return. We'll check non-dependent conversions later. */
18908 return unify_success (explain_p);
18910 switch (strict)
18912 case DEDUCE_CALL:
18913 arg_strict = (UNIFY_ALLOW_OUTER_LEVEL
18914 | UNIFY_ALLOW_MORE_CV_QUAL
18915 | UNIFY_ALLOW_DERIVED);
18916 break;
18918 case DEDUCE_CONV:
18919 arg_strict = UNIFY_ALLOW_LESS_CV_QUAL;
18920 break;
18922 case DEDUCE_EXACT:
18923 arg_strict = UNIFY_ALLOW_NONE;
18924 break;
18926 default:
18927 gcc_unreachable ();
18930 /* We only do these transformations if this is the top-level
18931 parameter_type_list in a call or declaration matching; in other
18932 situations (nested function declarators, template argument lists) we
18933 won't be comparing a type to an expression, and we don't do any type
18934 adjustments. */
18935 if (!subr)
18937 if (!TYPE_P (arg))
18939 gcc_assert (TREE_TYPE (arg) != NULL_TREE);
18940 if (type_unknown_p (arg))
18942 /* [temp.deduct.type] A template-argument can be
18943 deduced from a pointer to function or pointer
18944 to member function argument if the set of
18945 overloaded functions does not contain function
18946 templates and at most one of a set of
18947 overloaded functions provides a unique
18948 match. */
18950 if (resolve_overloaded_unification
18951 (tparms, targs, parm, arg, strict,
18952 arg_strict, explain_p))
18953 return unify_success (explain_p);
18954 return unify_overload_resolution_failure (explain_p, arg);
18957 arg_expr = arg;
18958 arg = unlowered_expr_type (arg);
18959 if (arg == error_mark_node)
18960 return unify_invalid (explain_p);
18963 arg_strict |=
18964 maybe_adjust_types_for_deduction (strict, &parm, &arg, arg_expr);
18966 else
18967 if ((TYPE_P (parm) || TREE_CODE (parm) == TEMPLATE_DECL)
18968 != (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL))
18969 return unify_template_argument_mismatch (explain_p, parm, arg);
18971 /* For deduction from an init-list we need the actual list. */
18972 if (arg_expr && BRACE_ENCLOSED_INITIALIZER_P (arg_expr))
18973 arg = arg_expr;
18974 return unify (tparms, targs, parm, arg, arg_strict, explain_p);
18977 /* for_each_template_parm callback that always returns 0. */
18979 static int
18980 zero_r (tree, void *)
18982 return 0;
18985 /* for_each_template_parm any_fn callback to handle deduction of a template
18986 type argument from the type of an array bound. */
18988 static int
18989 array_deduction_r (tree t, void *data)
18991 tree_pair_p d = (tree_pair_p)data;
18992 tree &tparms = d->purpose;
18993 tree &targs = d->value;
18995 if (TREE_CODE (t) == ARRAY_TYPE)
18996 if (tree dom = TYPE_DOMAIN (t))
18997 if (tree max = TYPE_MAX_VALUE (dom))
18999 if (TREE_CODE (max) == MINUS_EXPR)
19000 max = TREE_OPERAND (max, 0);
19001 if (TREE_CODE (max) == TEMPLATE_PARM_INDEX)
19002 unify (tparms, targs, TREE_TYPE (max), size_type_node,
19003 UNIFY_ALLOW_NONE, /*explain*/false);
19006 /* Keep walking. */
19007 return 0;
19010 /* Try to deduce any not-yet-deduced template type arguments from the type of
19011 an array bound. This is handled separately from unify because 14.8.2.5 says
19012 "The type of a type parameter is only deduced from an array bound if it is
19013 not otherwise deduced." */
19015 static void
19016 try_array_deduction (tree tparms, tree targs, tree parm)
19018 tree_pair_s data = { tparms, targs };
19019 hash_set<tree> visited;
19020 for_each_template_parm (parm, zero_r, &data, &visited,
19021 /*nondeduced*/false, array_deduction_r);
19024 /* Most parms like fn_type_unification.
19026 If SUBR is 1, we're being called recursively (to unify the
19027 arguments of a function or method parameter of a function
19028 template).
19030 CHECKS is a pointer to a vector of access checks encountered while
19031 substituting default template arguments. */
19033 static int
19034 type_unification_real (tree tparms,
19035 tree full_targs,
19036 tree xparms,
19037 const tree *xargs,
19038 unsigned int xnargs,
19039 int subr,
19040 unification_kind_t strict,
19041 int flags,
19042 vec<deferred_access_check, va_gc> **checks,
19043 bool explain_p)
19045 tree parm, arg;
19046 int i;
19047 int ntparms = TREE_VEC_LENGTH (tparms);
19048 int saw_undeduced = 0;
19049 tree parms;
19050 const tree *args;
19051 unsigned int nargs;
19052 unsigned int ia;
19054 gcc_assert (TREE_CODE (tparms) == TREE_VEC);
19055 gcc_assert (xparms == NULL_TREE || TREE_CODE (xparms) == TREE_LIST);
19056 gcc_assert (ntparms > 0);
19058 tree targs = INNERMOST_TEMPLATE_ARGS (full_targs);
19060 /* Reset the number of non-defaulted template arguments contained
19061 in TARGS. */
19062 NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs) = NULL_TREE;
19064 again:
19065 parms = xparms;
19066 args = xargs;
19067 nargs = xnargs;
19069 ia = 0;
19070 while (parms && parms != void_list_node
19071 && ia < nargs)
19073 parm = TREE_VALUE (parms);
19075 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION
19076 && (!TREE_CHAIN (parms) || TREE_CHAIN (parms) == void_list_node))
19077 /* For a function parameter pack that occurs at the end of the
19078 parameter-declaration-list, the type A of each remaining
19079 argument of the call is compared with the type P of the
19080 declarator-id of the function parameter pack. */
19081 break;
19083 parms = TREE_CHAIN (parms);
19085 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION)
19086 /* For a function parameter pack that does not occur at the
19087 end of the parameter-declaration-list, the type of the
19088 parameter pack is a non-deduced context. */
19089 continue;
19091 arg = args[ia];
19092 ++ia;
19094 if (unify_one_argument (tparms, full_targs, parm, arg, subr, strict,
19095 explain_p))
19096 return 1;
19099 if (parms
19100 && parms != void_list_node
19101 && TREE_CODE (TREE_VALUE (parms)) == TYPE_PACK_EXPANSION)
19103 /* Unify the remaining arguments with the pack expansion type. */
19104 tree argvec;
19105 tree parmvec = make_tree_vec (1);
19107 /* Allocate a TREE_VEC and copy in all of the arguments */
19108 argvec = make_tree_vec (nargs - ia);
19109 for (i = 0; ia < nargs; ++ia, ++i)
19110 TREE_VEC_ELT (argvec, i) = args[ia];
19112 /* Copy the parameter into parmvec. */
19113 TREE_VEC_ELT (parmvec, 0) = TREE_VALUE (parms);
19114 if (unify_pack_expansion (tparms, full_targs, parmvec, argvec, strict,
19115 /*subr=*/subr, explain_p))
19116 return 1;
19118 /* Advance to the end of the list of parameters. */
19119 parms = TREE_CHAIN (parms);
19122 /* Fail if we've reached the end of the parm list, and more args
19123 are present, and the parm list isn't variadic. */
19124 if (ia < nargs && parms == void_list_node)
19125 return unify_too_many_arguments (explain_p, nargs, ia);
19126 /* Fail if parms are left and they don't have default values and
19127 they aren't all deduced as empty packs (c++/57397). This is
19128 consistent with sufficient_parms_p. */
19129 if (parms && parms != void_list_node
19130 && TREE_PURPOSE (parms) == NULL_TREE)
19132 unsigned int count = nargs;
19133 tree p = parms;
19134 bool type_pack_p;
19137 type_pack_p = TREE_CODE (TREE_VALUE (p)) == TYPE_PACK_EXPANSION;
19138 if (!type_pack_p)
19139 count++;
19140 p = TREE_CHAIN (p);
19142 while (p && p != void_list_node);
19143 if (count != nargs)
19144 return unify_too_few_arguments (explain_p, ia, count,
19145 type_pack_p);
19148 if (!subr)
19150 tsubst_flags_t complain = (explain_p
19151 ? tf_warning_or_error
19152 : tf_none);
19153 bool tried_array_deduction = (cxx_dialect < cxx1z);
19155 for (i = 0; i < ntparms; i++)
19157 tree targ = TREE_VEC_ELT (targs, i);
19158 tree tparm = TREE_VEC_ELT (tparms, i);
19160 /* Clear the "incomplete" flags on all argument packs now so that
19161 substituting them into later default arguments works. */
19162 if (targ && ARGUMENT_PACK_P (targ))
19164 ARGUMENT_PACK_INCOMPLETE_P (targ) = 0;
19165 ARGUMENT_PACK_EXPLICIT_ARGS (targ) = NULL_TREE;
19168 if (targ || tparm == error_mark_node)
19169 continue;
19170 tparm = TREE_VALUE (tparm);
19172 if (TREE_CODE (tparm) == TYPE_DECL
19173 && !tried_array_deduction)
19175 try_array_deduction (tparms, targs, xparms);
19176 tried_array_deduction = true;
19177 if (TREE_VEC_ELT (targs, i))
19178 continue;
19181 /* If this is an undeduced nontype parameter that depends on
19182 a type parameter, try another pass; its type may have been
19183 deduced from a later argument than the one from which
19184 this parameter can be deduced. */
19185 if (TREE_CODE (tparm) == PARM_DECL
19186 && uses_template_parms (TREE_TYPE (tparm))
19187 && saw_undeduced < 2)
19189 saw_undeduced = 1;
19190 continue;
19193 /* Core issue #226 (C++0x) [temp.deduct]:
19195 If a template argument has not been deduced, its
19196 default template argument, if any, is used.
19198 When we are in C++98 mode, TREE_PURPOSE will either
19199 be NULL_TREE or ERROR_MARK_NODE, so we do not need
19200 to explicitly check cxx_dialect here. */
19201 if (TREE_PURPOSE (TREE_VEC_ELT (tparms, i)))
19202 /* OK, there is a default argument. Wait until after the
19203 conversion check to do substitution. */
19204 continue;
19206 /* If the type parameter is a parameter pack, then it will
19207 be deduced to an empty parameter pack. */
19208 if (template_parameter_pack_p (tparm))
19210 tree arg;
19212 if (TREE_CODE (tparm) == TEMPLATE_PARM_INDEX)
19214 arg = make_node (NONTYPE_ARGUMENT_PACK);
19215 TREE_TYPE (arg) = TREE_TYPE (TEMPLATE_PARM_DECL (tparm));
19216 TREE_CONSTANT (arg) = 1;
19218 else
19219 arg = cxx_make_type (TYPE_ARGUMENT_PACK);
19221 SET_ARGUMENT_PACK_ARGS (arg, make_tree_vec (0));
19223 TREE_VEC_ELT (targs, i) = arg;
19224 continue;
19227 return unify_parameter_deduction_failure (explain_p, tparm);
19230 /* DR 1391: All parameters have args, now check non-dependent parms for
19231 convertibility. */
19232 if (saw_undeduced < 2)
19233 for (ia = 0, parms = xparms, args = xargs, nargs = xnargs;
19234 parms && parms != void_list_node && ia < nargs; )
19236 parm = TREE_VALUE (parms);
19238 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION
19239 && (!TREE_CHAIN (parms)
19240 || TREE_CHAIN (parms) == void_list_node))
19241 /* For a function parameter pack that occurs at the end of the
19242 parameter-declaration-list, the type A of each remaining
19243 argument of the call is compared with the type P of the
19244 declarator-id of the function parameter pack. */
19245 break;
19247 parms = TREE_CHAIN (parms);
19249 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION)
19250 /* For a function parameter pack that does not occur at the
19251 end of the parameter-declaration-list, the type of the
19252 parameter pack is a non-deduced context. */
19253 continue;
19255 arg = args[ia];
19256 ++ia;
19258 if (uses_template_parms (parm))
19259 continue;
19260 if (check_non_deducible_conversion (parm, arg, strict, flags,
19261 explain_p))
19262 return 1;
19265 /* Now substitute into the default template arguments. */
19266 for (i = 0; i < ntparms; i++)
19268 tree targ = TREE_VEC_ELT (targs, i);
19269 tree tparm = TREE_VEC_ELT (tparms, i);
19271 if (targ || tparm == error_mark_node)
19272 continue;
19273 tree parm = TREE_VALUE (tparm);
19275 if (TREE_CODE (parm) == PARM_DECL
19276 && uses_template_parms (TREE_TYPE (parm))
19277 && saw_undeduced < 2)
19278 continue;
19280 tree arg = TREE_PURPOSE (tparm);
19281 reopen_deferring_access_checks (*checks);
19282 location_t save_loc = input_location;
19283 if (DECL_P (parm))
19284 input_location = DECL_SOURCE_LOCATION (parm);
19285 arg = tsubst_template_arg (arg, full_targs, complain, NULL_TREE);
19286 if (!uses_template_parms (arg))
19287 arg = convert_template_argument (parm, arg, full_targs, complain,
19288 i, NULL_TREE);
19289 else if (saw_undeduced < 2)
19290 arg = NULL_TREE;
19291 else
19292 arg = error_mark_node;
19293 input_location = save_loc;
19294 *checks = get_deferred_access_checks ();
19295 pop_deferring_access_checks ();
19296 if (arg == error_mark_node)
19297 return 1;
19298 else if (arg)
19300 TREE_VEC_ELT (targs, i) = arg;
19301 /* The position of the first default template argument,
19302 is also the number of non-defaulted arguments in TARGS.
19303 Record that. */
19304 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
19305 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, i);
19309 if (saw_undeduced++ == 1)
19310 goto again;
19313 if (CHECKING_P && !NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
19314 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, TREE_VEC_LENGTH (targs));
19316 return unify_success (explain_p);
19319 /* Subroutine of type_unification_real. Args are like the variables
19320 at the call site. ARG is an overloaded function (or template-id);
19321 we try deducing template args from each of the overloads, and if
19322 only one succeeds, we go with that. Modifies TARGS and returns
19323 true on success. */
19325 static bool
19326 resolve_overloaded_unification (tree tparms,
19327 tree targs,
19328 tree parm,
19329 tree arg,
19330 unification_kind_t strict,
19331 int sub_strict,
19332 bool explain_p)
19334 tree tempargs = copy_node (targs);
19335 int good = 0;
19336 tree goodfn = NULL_TREE;
19337 bool addr_p;
19339 if (TREE_CODE (arg) == ADDR_EXPR)
19341 arg = TREE_OPERAND (arg, 0);
19342 addr_p = true;
19344 else
19345 addr_p = false;
19347 if (TREE_CODE (arg) == COMPONENT_REF)
19348 /* Handle `&x' where `x' is some static or non-static member
19349 function name. */
19350 arg = TREE_OPERAND (arg, 1);
19352 if (TREE_CODE (arg) == OFFSET_REF)
19353 arg = TREE_OPERAND (arg, 1);
19355 /* Strip baselink information. */
19356 if (BASELINK_P (arg))
19357 arg = BASELINK_FUNCTIONS (arg);
19359 if (TREE_CODE (arg) == TEMPLATE_ID_EXPR)
19361 /* If we got some explicit template args, we need to plug them into
19362 the affected templates before we try to unify, in case the
19363 explicit args will completely resolve the templates in question. */
19365 int ok = 0;
19366 tree expl_subargs = TREE_OPERAND (arg, 1);
19367 arg = TREE_OPERAND (arg, 0);
19369 for (; arg; arg = OVL_NEXT (arg))
19371 tree fn = OVL_CURRENT (arg);
19372 tree subargs, elem;
19374 if (TREE_CODE (fn) != TEMPLATE_DECL)
19375 continue;
19377 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
19378 expl_subargs, NULL_TREE, tf_none,
19379 /*require_all_args=*/true,
19380 /*use_default_args=*/true);
19381 if (subargs != error_mark_node
19382 && !any_dependent_template_arguments_p (subargs))
19384 elem = TREE_TYPE (instantiate_template (fn, subargs, tf_none));
19385 if (try_one_overload (tparms, targs, tempargs, parm,
19386 elem, strict, sub_strict, addr_p, explain_p)
19387 && (!goodfn || !same_type_p (goodfn, elem)))
19389 goodfn = elem;
19390 ++good;
19393 else if (subargs)
19394 ++ok;
19396 /* If no templates (or more than one) are fully resolved by the
19397 explicit arguments, this template-id is a non-deduced context; it
19398 could still be OK if we deduce all template arguments for the
19399 enclosing call through other arguments. */
19400 if (good != 1)
19401 good = ok;
19403 else if (TREE_CODE (arg) != OVERLOAD
19404 && TREE_CODE (arg) != FUNCTION_DECL)
19405 /* If ARG is, for example, "(0, &f)" then its type will be unknown
19406 -- but the deduction does not succeed because the expression is
19407 not just the function on its own. */
19408 return false;
19409 else
19410 for (; arg; arg = OVL_NEXT (arg))
19411 if (try_one_overload (tparms, targs, tempargs, parm,
19412 TREE_TYPE (OVL_CURRENT (arg)),
19413 strict, sub_strict, addr_p, explain_p)
19414 && (!goodfn || !decls_match (goodfn, OVL_CURRENT (arg))))
19416 goodfn = OVL_CURRENT (arg);
19417 ++good;
19420 /* [temp.deduct.type] A template-argument can be deduced from a pointer
19421 to function or pointer to member function argument if the set of
19422 overloaded functions does not contain function templates and at most
19423 one of a set of overloaded functions provides a unique match.
19425 So if we found multiple possibilities, we return success but don't
19426 deduce anything. */
19428 if (good == 1)
19430 int i = TREE_VEC_LENGTH (targs);
19431 for (; i--; )
19432 if (TREE_VEC_ELT (tempargs, i))
19434 tree old = TREE_VEC_ELT (targs, i);
19435 tree new_ = TREE_VEC_ELT (tempargs, i);
19436 if (new_ && old && ARGUMENT_PACK_P (old)
19437 && ARGUMENT_PACK_EXPLICIT_ARGS (old))
19438 /* Don't forget explicit template arguments in a pack. */
19439 ARGUMENT_PACK_EXPLICIT_ARGS (new_)
19440 = ARGUMENT_PACK_EXPLICIT_ARGS (old);
19441 TREE_VEC_ELT (targs, i) = new_;
19444 if (good)
19445 return true;
19447 return false;
19450 /* Core DR 115: In contexts where deduction is done and fails, or in
19451 contexts where deduction is not done, if a template argument list is
19452 specified and it, along with any default template arguments, identifies
19453 a single function template specialization, then the template-id is an
19454 lvalue for the function template specialization. */
19456 tree
19457 resolve_nondeduced_context (tree orig_expr, tsubst_flags_t complain)
19459 tree expr, offset, baselink;
19460 bool addr;
19462 if (!type_unknown_p (orig_expr))
19463 return orig_expr;
19465 expr = orig_expr;
19466 addr = false;
19467 offset = NULL_TREE;
19468 baselink = NULL_TREE;
19470 if (TREE_CODE (expr) == ADDR_EXPR)
19472 expr = TREE_OPERAND (expr, 0);
19473 addr = true;
19475 if (TREE_CODE (expr) == OFFSET_REF)
19477 offset = expr;
19478 expr = TREE_OPERAND (expr, 1);
19480 if (BASELINK_P (expr))
19482 baselink = expr;
19483 expr = BASELINK_FUNCTIONS (expr);
19486 if (TREE_CODE (expr) == TEMPLATE_ID_EXPR)
19488 int good = 0;
19489 tree goodfn = NULL_TREE;
19491 /* If we got some explicit template args, we need to plug them into
19492 the affected templates before we try to unify, in case the
19493 explicit args will completely resolve the templates in question. */
19495 tree expl_subargs = TREE_OPERAND (expr, 1);
19496 tree arg = TREE_OPERAND (expr, 0);
19497 tree badfn = NULL_TREE;
19498 tree badargs = NULL_TREE;
19500 for (; arg; arg = OVL_NEXT (arg))
19502 tree fn = OVL_CURRENT (arg);
19503 tree subargs, elem;
19505 if (TREE_CODE (fn) != TEMPLATE_DECL)
19506 continue;
19508 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
19509 expl_subargs, NULL_TREE, tf_none,
19510 /*require_all_args=*/true,
19511 /*use_default_args=*/true);
19512 if (subargs != error_mark_node
19513 && !any_dependent_template_arguments_p (subargs))
19515 elem = instantiate_template (fn, subargs, tf_none);
19516 if (elem == error_mark_node)
19518 badfn = fn;
19519 badargs = subargs;
19521 else if (elem && (!goodfn || !decls_match (goodfn, elem)))
19523 goodfn = elem;
19524 ++good;
19528 if (good == 1)
19530 mark_used (goodfn);
19531 expr = goodfn;
19532 if (baselink)
19533 expr = build_baselink (BASELINK_BINFO (baselink),
19534 BASELINK_ACCESS_BINFO (baselink),
19535 expr, BASELINK_OPTYPE (baselink));
19536 if (offset)
19538 tree base
19539 = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (offset, 0)));
19540 expr = build_offset_ref (base, expr, addr, complain);
19542 if (addr)
19543 expr = cp_build_addr_expr (expr, complain);
19544 return expr;
19546 else if (good == 0 && badargs && (complain & tf_error))
19547 /* There were no good options and at least one bad one, so let the
19548 user know what the problem is. */
19549 instantiate_template (badfn, badargs, complain);
19551 return orig_expr;
19554 /* Subroutine of resolve_overloaded_unification; does deduction for a single
19555 overload. Fills TARGS with any deduced arguments, or error_mark_node if
19556 different overloads deduce different arguments for a given parm.
19557 ADDR_P is true if the expression for which deduction is being
19558 performed was of the form "& fn" rather than simply "fn".
19560 Returns 1 on success. */
19562 static int
19563 try_one_overload (tree tparms,
19564 tree orig_targs,
19565 tree targs,
19566 tree parm,
19567 tree arg,
19568 unification_kind_t strict,
19569 int sub_strict,
19570 bool addr_p,
19571 bool explain_p)
19573 int nargs;
19574 tree tempargs;
19575 int i;
19577 if (arg == error_mark_node)
19578 return 0;
19580 /* [temp.deduct.type] A template-argument can be deduced from a pointer
19581 to function or pointer to member function argument if the set of
19582 overloaded functions does not contain function templates and at most
19583 one of a set of overloaded functions provides a unique match.
19585 So if this is a template, just return success. */
19587 if (uses_template_parms (arg))
19588 return 1;
19590 if (TREE_CODE (arg) == METHOD_TYPE)
19591 arg = build_ptrmemfunc_type (build_pointer_type (arg));
19592 else if (addr_p)
19593 arg = build_pointer_type (arg);
19595 sub_strict |= maybe_adjust_types_for_deduction (strict, &parm, &arg, NULL);
19597 /* We don't copy orig_targs for this because if we have already deduced
19598 some template args from previous args, unify would complain when we
19599 try to deduce a template parameter for the same argument, even though
19600 there isn't really a conflict. */
19601 nargs = TREE_VEC_LENGTH (targs);
19602 tempargs = make_tree_vec (nargs);
19604 if (unify (tparms, tempargs, parm, arg, sub_strict, explain_p))
19605 return 0;
19607 /* First make sure we didn't deduce anything that conflicts with
19608 explicitly specified args. */
19609 for (i = nargs; i--; )
19611 tree elt = TREE_VEC_ELT (tempargs, i);
19612 tree oldelt = TREE_VEC_ELT (orig_targs, i);
19614 if (!elt)
19615 /*NOP*/;
19616 else if (uses_template_parms (elt))
19617 /* Since we're unifying against ourselves, we will fill in
19618 template args used in the function parm list with our own
19619 template parms. Discard them. */
19620 TREE_VEC_ELT (tempargs, i) = NULL_TREE;
19621 else if (oldelt && ARGUMENT_PACK_P (oldelt))
19623 /* Check that the argument at each index of the deduced argument pack
19624 is equivalent to the corresponding explicitly specified argument.
19625 We may have deduced more arguments than were explicitly specified,
19626 and that's OK. */
19627 gcc_assert (ARGUMENT_PACK_INCOMPLETE_P (oldelt));
19628 gcc_assert (ARGUMENT_PACK_ARGS (oldelt)
19629 == ARGUMENT_PACK_EXPLICIT_ARGS (oldelt));
19631 tree explicit_pack = ARGUMENT_PACK_ARGS (oldelt);
19632 tree deduced_pack = ARGUMENT_PACK_ARGS (elt);
19634 if (TREE_VEC_LENGTH (deduced_pack)
19635 < TREE_VEC_LENGTH (explicit_pack))
19636 return 0;
19638 for (int j = 0; j < TREE_VEC_LENGTH (explicit_pack); j++)
19639 if (!template_args_equal (TREE_VEC_ELT (explicit_pack, j),
19640 TREE_VEC_ELT (deduced_pack, j)))
19641 return 0;
19643 else if (oldelt && !template_args_equal (oldelt, elt))
19644 return 0;
19647 for (i = nargs; i--; )
19649 tree elt = TREE_VEC_ELT (tempargs, i);
19651 if (elt)
19652 TREE_VEC_ELT (targs, i) = elt;
19655 return 1;
19658 /* PARM is a template class (perhaps with unbound template
19659 parameters). ARG is a fully instantiated type. If ARG can be
19660 bound to PARM, return ARG, otherwise return NULL_TREE. TPARMS and
19661 TARGS are as for unify. */
19663 static tree
19664 try_class_unification (tree tparms, tree targs, tree parm, tree arg,
19665 bool explain_p)
19667 tree copy_of_targs;
19669 if (!CLASSTYPE_SPECIALIZATION_OF_PRIMARY_TEMPLATE_P (arg))
19670 return NULL_TREE;
19671 else if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
19672 /* Matches anything. */;
19673 else if (most_general_template (CLASSTYPE_TI_TEMPLATE (arg))
19674 != most_general_template (CLASSTYPE_TI_TEMPLATE (parm)))
19675 return NULL_TREE;
19677 /* We need to make a new template argument vector for the call to
19678 unify. If we used TARGS, we'd clutter it up with the result of
19679 the attempted unification, even if this class didn't work out.
19680 We also don't want to commit ourselves to all the unifications
19681 we've already done, since unification is supposed to be done on
19682 an argument-by-argument basis. In other words, consider the
19683 following pathological case:
19685 template <int I, int J, int K>
19686 struct S {};
19688 template <int I, int J>
19689 struct S<I, J, 2> : public S<I, I, I>, S<J, J, J> {};
19691 template <int I, int J, int K>
19692 void f(S<I, J, K>, S<I, I, I>);
19694 void g() {
19695 S<0, 0, 0> s0;
19696 S<0, 1, 2> s2;
19698 f(s0, s2);
19701 Now, by the time we consider the unification involving `s2', we
19702 already know that we must have `f<0, 0, 0>'. But, even though
19703 `S<0, 1, 2>' is derived from `S<0, 0, 0>', the code is invalid
19704 because there are two ways to unify base classes of S<0, 1, 2>
19705 with S<I, I, I>. If we kept the already deduced knowledge, we
19706 would reject the possibility I=1. */
19707 copy_of_targs = make_tree_vec (TREE_VEC_LENGTH (targs));
19709 if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
19711 if (unify_bound_ttp_args (tparms, copy_of_targs, parm, arg, explain_p))
19712 return NULL_TREE;
19713 return arg;
19716 /* If unification failed, we're done. */
19717 if (unify (tparms, copy_of_targs, CLASSTYPE_TI_ARGS (parm),
19718 CLASSTYPE_TI_ARGS (arg), UNIFY_ALLOW_NONE, explain_p))
19719 return NULL_TREE;
19721 return arg;
19724 /* Given a template type PARM and a class type ARG, find the unique
19725 base type in ARG that is an instance of PARM. We do not examine
19726 ARG itself; only its base-classes. If there is not exactly one
19727 appropriate base class, return NULL_TREE. PARM may be the type of
19728 a partial specialization, as well as a plain template type. Used
19729 by unify. */
19731 static enum template_base_result
19732 get_template_base (tree tparms, tree targs, tree parm, tree arg,
19733 bool explain_p, tree *result)
19735 tree rval = NULL_TREE;
19736 tree binfo;
19738 gcc_assert (RECORD_OR_UNION_CODE_P (TREE_CODE (arg)));
19740 binfo = TYPE_BINFO (complete_type (arg));
19741 if (!binfo)
19743 /* The type could not be completed. */
19744 *result = NULL_TREE;
19745 return tbr_incomplete_type;
19748 /* Walk in inheritance graph order. The search order is not
19749 important, and this avoids multiple walks of virtual bases. */
19750 for (binfo = TREE_CHAIN (binfo); binfo; binfo = TREE_CHAIN (binfo))
19752 tree r = try_class_unification (tparms, targs, parm,
19753 BINFO_TYPE (binfo), explain_p);
19755 if (r)
19757 /* If there is more than one satisfactory baseclass, then:
19759 [temp.deduct.call]
19761 If they yield more than one possible deduced A, the type
19762 deduction fails.
19764 applies. */
19765 if (rval && !same_type_p (r, rval))
19767 *result = NULL_TREE;
19768 return tbr_ambiguous_baseclass;
19771 rval = r;
19775 *result = rval;
19776 return tbr_success;
19779 /* Returns the level of DECL, which declares a template parameter. */
19781 static int
19782 template_decl_level (tree decl)
19784 switch (TREE_CODE (decl))
19786 case TYPE_DECL:
19787 case TEMPLATE_DECL:
19788 return TEMPLATE_TYPE_LEVEL (TREE_TYPE (decl));
19790 case PARM_DECL:
19791 return TEMPLATE_PARM_LEVEL (DECL_INITIAL (decl));
19793 default:
19794 gcc_unreachable ();
19796 return 0;
19799 /* Decide whether ARG can be unified with PARM, considering only the
19800 cv-qualifiers of each type, given STRICT as documented for unify.
19801 Returns nonzero iff the unification is OK on that basis. */
19803 static int
19804 check_cv_quals_for_unify (int strict, tree arg, tree parm)
19806 int arg_quals = cp_type_quals (arg);
19807 int parm_quals = cp_type_quals (parm);
19809 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
19810 && !(strict & UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
19812 /* Although a CVR qualifier is ignored when being applied to a
19813 substituted template parameter ([8.3.2]/1 for example), that
19814 does not allow us to unify "const T" with "int&" because both
19815 types are not of the form "cv-list T" [14.8.2.5 temp.deduct.type].
19816 It is ok when we're allowing additional CV qualifiers
19817 at the outer level [14.8.2.1]/3,1st bullet. */
19818 if ((TREE_CODE (arg) == REFERENCE_TYPE
19819 || TREE_CODE (arg) == FUNCTION_TYPE
19820 || TREE_CODE (arg) == METHOD_TYPE)
19821 && (parm_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE)))
19822 return 0;
19824 if ((!POINTER_TYPE_P (arg) && TREE_CODE (arg) != TEMPLATE_TYPE_PARM)
19825 && (parm_quals & TYPE_QUAL_RESTRICT))
19826 return 0;
19829 if (!(strict & (UNIFY_ALLOW_MORE_CV_QUAL | UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
19830 && (arg_quals & parm_quals) != parm_quals)
19831 return 0;
19833 if (!(strict & (UNIFY_ALLOW_LESS_CV_QUAL | UNIFY_ALLOW_OUTER_LESS_CV_QUAL))
19834 && (parm_quals & arg_quals) != arg_quals)
19835 return 0;
19837 return 1;
19840 /* Determines the LEVEL and INDEX for the template parameter PARM. */
19841 void
19842 template_parm_level_and_index (tree parm, int* level, int* index)
19844 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
19845 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
19846 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
19848 *index = TEMPLATE_TYPE_IDX (parm);
19849 *level = TEMPLATE_TYPE_LEVEL (parm);
19851 else
19853 *index = TEMPLATE_PARM_IDX (parm);
19854 *level = TEMPLATE_PARM_LEVEL (parm);
19858 #define RECUR_AND_CHECK_FAILURE(TP, TA, P, A, S, EP) \
19859 do { \
19860 if (unify (TP, TA, P, A, S, EP)) \
19861 return 1; \
19862 } while (0)
19864 /* Unifies the remaining arguments in PACKED_ARGS with the pack
19865 expansion at the end of PACKED_PARMS. Returns 0 if the type
19866 deduction succeeds, 1 otherwise. STRICT is the same as in
19867 fn_type_unification. CALL_ARGS_P is true iff PACKED_ARGS is actually a
19868 function call argument list. We'll need to adjust the arguments to make them
19869 types. SUBR tells us if this is from a recursive call to
19870 type_unification_real, or for comparing two template argument
19871 lists. */
19873 static int
19874 unify_pack_expansion (tree tparms, tree targs, tree packed_parms,
19875 tree packed_args, unification_kind_t strict,
19876 bool subr, bool explain_p)
19878 tree parm
19879 = TREE_VEC_ELT (packed_parms, TREE_VEC_LENGTH (packed_parms) - 1);
19880 tree pattern = PACK_EXPANSION_PATTERN (parm);
19881 tree pack, packs = NULL_TREE;
19882 int i, start = TREE_VEC_LENGTH (packed_parms) - 1;
19884 packed_args = expand_template_argument_pack (packed_args);
19886 int len = TREE_VEC_LENGTH (packed_args);
19888 /* Determine the parameter packs we will be deducing from the
19889 pattern, and record their current deductions. */
19890 for (pack = PACK_EXPANSION_PARAMETER_PACKS (parm);
19891 pack; pack = TREE_CHAIN (pack))
19893 tree parm_pack = TREE_VALUE (pack);
19894 int idx, level;
19896 /* Determine the index and level of this parameter pack. */
19897 template_parm_level_and_index (parm_pack, &level, &idx);
19899 /* Keep track of the parameter packs and their corresponding
19900 argument packs. */
19901 packs = tree_cons (parm_pack, TMPL_ARG (targs, level, idx), packs);
19902 TREE_TYPE (packs) = make_tree_vec (len - start);
19905 /* Loop through all of the arguments that have not yet been
19906 unified and unify each with the pattern. */
19907 for (i = start; i < len; i++)
19909 tree parm;
19910 bool any_explicit = false;
19911 tree arg = TREE_VEC_ELT (packed_args, i);
19913 /* For each parameter pack, set its TMPL_ARG to either NULL_TREE
19914 or the element of its argument pack at the current index if
19915 this argument was explicitly specified. */
19916 for (pack = packs; pack; pack = TREE_CHAIN (pack))
19918 int idx, level;
19919 tree arg, pargs;
19920 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
19922 arg = NULL_TREE;
19923 if (TREE_VALUE (pack)
19924 && (pargs = ARGUMENT_PACK_EXPLICIT_ARGS (TREE_VALUE (pack)))
19925 && (i - start < TREE_VEC_LENGTH (pargs)))
19927 any_explicit = true;
19928 arg = TREE_VEC_ELT (pargs, i - start);
19930 TMPL_ARG (targs, level, idx) = arg;
19933 /* If we had explicit template arguments, substitute them into the
19934 pattern before deduction. */
19935 if (any_explicit)
19937 /* Some arguments might still be unspecified or dependent. */
19938 bool dependent;
19939 ++processing_template_decl;
19940 dependent = any_dependent_template_arguments_p (targs);
19941 if (!dependent)
19942 --processing_template_decl;
19943 parm = tsubst (pattern, targs,
19944 explain_p ? tf_warning_or_error : tf_none,
19945 NULL_TREE);
19946 if (dependent)
19947 --processing_template_decl;
19948 if (parm == error_mark_node)
19949 return 1;
19951 else
19952 parm = pattern;
19954 /* Unify the pattern with the current argument. */
19955 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
19956 explain_p))
19957 return 1;
19959 /* For each parameter pack, collect the deduced value. */
19960 for (pack = packs; pack; pack = TREE_CHAIN (pack))
19962 int idx, level;
19963 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
19965 TREE_VEC_ELT (TREE_TYPE (pack), i - start) =
19966 TMPL_ARG (targs, level, idx);
19970 /* Verify that the results of unification with the parameter packs
19971 produce results consistent with what we've seen before, and make
19972 the deduced argument packs available. */
19973 for (pack = packs; pack; pack = TREE_CHAIN (pack))
19975 tree old_pack = TREE_VALUE (pack);
19976 tree new_args = TREE_TYPE (pack);
19977 int i, len = TREE_VEC_LENGTH (new_args);
19978 int idx, level;
19979 bool nondeduced_p = false;
19981 /* By default keep the original deduced argument pack.
19982 If necessary, more specific code is going to update the
19983 resulting deduced argument later down in this function. */
19984 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
19985 TMPL_ARG (targs, level, idx) = old_pack;
19987 /* If NEW_ARGS contains any NULL_TREE entries, we didn't
19988 actually deduce anything. */
19989 for (i = 0; i < len && !nondeduced_p; ++i)
19990 if (TREE_VEC_ELT (new_args, i) == NULL_TREE)
19991 nondeduced_p = true;
19992 if (nondeduced_p)
19993 continue;
19995 if (old_pack && ARGUMENT_PACK_INCOMPLETE_P (old_pack))
19997 /* If we had fewer function args than explicit template args,
19998 just use the explicits. */
19999 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
20000 int explicit_len = TREE_VEC_LENGTH (explicit_args);
20001 if (len < explicit_len)
20002 new_args = explicit_args;
20005 if (!old_pack)
20007 tree result;
20008 /* Build the deduced *_ARGUMENT_PACK. */
20009 if (TREE_CODE (TREE_PURPOSE (pack)) == TEMPLATE_PARM_INDEX)
20011 result = make_node (NONTYPE_ARGUMENT_PACK);
20012 TREE_TYPE (result) =
20013 TREE_TYPE (TEMPLATE_PARM_DECL (TREE_PURPOSE (pack)));
20014 TREE_CONSTANT (result) = 1;
20016 else
20017 result = cxx_make_type (TYPE_ARGUMENT_PACK);
20019 SET_ARGUMENT_PACK_ARGS (result, new_args);
20021 /* Note the deduced argument packs for this parameter
20022 pack. */
20023 TMPL_ARG (targs, level, idx) = result;
20025 else if (ARGUMENT_PACK_INCOMPLETE_P (old_pack)
20026 && (ARGUMENT_PACK_ARGS (old_pack)
20027 == ARGUMENT_PACK_EXPLICIT_ARGS (old_pack)))
20029 /* We only had the explicitly-provided arguments before, but
20030 now we have a complete set of arguments. */
20031 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
20033 SET_ARGUMENT_PACK_ARGS (old_pack, new_args);
20034 ARGUMENT_PACK_INCOMPLETE_P (old_pack) = 1;
20035 ARGUMENT_PACK_EXPLICIT_ARGS (old_pack) = explicit_args;
20037 else
20039 tree bad_old_arg = NULL_TREE, bad_new_arg = NULL_TREE;
20040 tree old_args = ARGUMENT_PACK_ARGS (old_pack);
20042 if (!comp_template_args (old_args, new_args,
20043 &bad_old_arg, &bad_new_arg))
20044 /* Inconsistent unification of this parameter pack. */
20045 return unify_parameter_pack_inconsistent (explain_p,
20046 bad_old_arg,
20047 bad_new_arg);
20051 return unify_success (explain_p);
20054 /* Handle unification of the domain of an array. PARM_DOM and ARG_DOM are
20055 INTEGER_TYPEs representing the TYPE_DOMAIN of ARRAY_TYPEs. The other
20056 parameters and return value are as for unify. */
20058 static int
20059 unify_array_domain (tree tparms, tree targs,
20060 tree parm_dom, tree arg_dom,
20061 bool explain_p)
20063 tree parm_max;
20064 tree arg_max;
20065 bool parm_cst;
20066 bool arg_cst;
20068 /* Our representation of array types uses "N - 1" as the
20069 TYPE_MAX_VALUE for an array with "N" elements, if "N" is
20070 not an integer constant. We cannot unify arbitrarily
20071 complex expressions, so we eliminate the MINUS_EXPRs
20072 here. */
20073 parm_max = TYPE_MAX_VALUE (parm_dom);
20074 parm_cst = TREE_CODE (parm_max) == INTEGER_CST;
20075 if (!parm_cst)
20077 gcc_assert (TREE_CODE (parm_max) == MINUS_EXPR);
20078 parm_max = TREE_OPERAND (parm_max, 0);
20080 arg_max = TYPE_MAX_VALUE (arg_dom);
20081 arg_cst = TREE_CODE (arg_max) == INTEGER_CST;
20082 if (!arg_cst)
20084 /* The ARG_MAX may not be a simple MINUS_EXPR, if we are
20085 trying to unify the type of a variable with the type
20086 of a template parameter. For example:
20088 template <unsigned int N>
20089 void f (char (&) [N]);
20090 int g();
20091 void h(int i) {
20092 char a[g(i)];
20093 f(a);
20096 Here, the type of the ARG will be "int [g(i)]", and
20097 may be a SAVE_EXPR, etc. */
20098 if (TREE_CODE (arg_max) != MINUS_EXPR)
20099 return unify_vla_arg (explain_p, arg_dom);
20100 arg_max = TREE_OPERAND (arg_max, 0);
20103 /* If only one of the bounds used a MINUS_EXPR, compensate
20104 by adding one to the other bound. */
20105 if (parm_cst && !arg_cst)
20106 parm_max = fold_build2_loc (input_location, PLUS_EXPR,
20107 integer_type_node,
20108 parm_max,
20109 integer_one_node);
20110 else if (arg_cst && !parm_cst)
20111 arg_max = fold_build2_loc (input_location, PLUS_EXPR,
20112 integer_type_node,
20113 arg_max,
20114 integer_one_node);
20116 return unify (tparms, targs, parm_max, arg_max,
20117 UNIFY_ALLOW_INTEGER, explain_p);
20120 /* Returns whether T, a P or A in unify, is a type, template or expression. */
20122 enum pa_kind_t { pa_type, pa_tmpl, pa_expr };
20124 static pa_kind_t
20125 pa_kind (tree t)
20127 if (PACK_EXPANSION_P (t))
20128 t = PACK_EXPANSION_PATTERN (t);
20129 if (TREE_CODE (t) == TEMPLATE_TEMPLATE_PARM
20130 || TREE_CODE (t) == UNBOUND_CLASS_TEMPLATE
20131 || DECL_TYPE_TEMPLATE_P (t))
20132 return pa_tmpl;
20133 else if (TYPE_P (t))
20134 return pa_type;
20135 else
20136 return pa_expr;
20139 /* Deduce the value of template parameters. TPARMS is the (innermost)
20140 set of template parameters to a template. TARGS is the bindings
20141 for those template parameters, as determined thus far; TARGS may
20142 include template arguments for outer levels of template parameters
20143 as well. PARM is a parameter to a template function, or a
20144 subcomponent of that parameter; ARG is the corresponding argument.
20145 This function attempts to match PARM with ARG in a manner
20146 consistent with the existing assignments in TARGS. If more values
20147 are deduced, then TARGS is updated.
20149 Returns 0 if the type deduction succeeds, 1 otherwise. The
20150 parameter STRICT is a bitwise or of the following flags:
20152 UNIFY_ALLOW_NONE:
20153 Require an exact match between PARM and ARG.
20154 UNIFY_ALLOW_MORE_CV_QUAL:
20155 Allow the deduced ARG to be more cv-qualified (by qualification
20156 conversion) than ARG.
20157 UNIFY_ALLOW_LESS_CV_QUAL:
20158 Allow the deduced ARG to be less cv-qualified than ARG.
20159 UNIFY_ALLOW_DERIVED:
20160 Allow the deduced ARG to be a template base class of ARG,
20161 or a pointer to a template base class of the type pointed to by
20162 ARG.
20163 UNIFY_ALLOW_INTEGER:
20164 Allow any integral type to be deduced. See the TEMPLATE_PARM_INDEX
20165 case for more information.
20166 UNIFY_ALLOW_OUTER_LEVEL:
20167 This is the outermost level of a deduction. Used to determine validity
20168 of qualification conversions. A valid qualification conversion must
20169 have const qualified pointers leading up to the inner type which
20170 requires additional CV quals, except at the outer level, where const
20171 is not required [conv.qual]. It would be normal to set this flag in
20172 addition to setting UNIFY_ALLOW_MORE_CV_QUAL.
20173 UNIFY_ALLOW_OUTER_MORE_CV_QUAL:
20174 This is the outermost level of a deduction, and PARM can be more CV
20175 qualified at this point.
20176 UNIFY_ALLOW_OUTER_LESS_CV_QUAL:
20177 This is the outermost level of a deduction, and PARM can be less CV
20178 qualified at this point. */
20180 static int
20181 unify (tree tparms, tree targs, tree parm, tree arg, int strict,
20182 bool explain_p)
20184 int idx;
20185 tree targ;
20186 tree tparm;
20187 int strict_in = strict;
20188 tsubst_flags_t complain = (explain_p
20189 ? tf_warning_or_error
20190 : tf_none);
20192 /* I don't think this will do the right thing with respect to types.
20193 But the only case I've seen it in so far has been array bounds, where
20194 signedness is the only information lost, and I think that will be
20195 okay. */
20196 while (CONVERT_EXPR_P (parm))
20197 parm = TREE_OPERAND (parm, 0);
20199 if (arg == error_mark_node)
20200 return unify_invalid (explain_p);
20201 if (arg == unknown_type_node
20202 || arg == init_list_type_node)
20203 /* We can't deduce anything from this, but we might get all the
20204 template args from other function args. */
20205 return unify_success (explain_p);
20207 if (parm == any_targ_node || arg == any_targ_node)
20208 return unify_success (explain_p);
20210 /* If PARM uses template parameters, then we can't bail out here,
20211 even if ARG == PARM, since we won't record unifications for the
20212 template parameters. We might need them if we're trying to
20213 figure out which of two things is more specialized. */
20214 if (arg == parm && !uses_template_parms (parm))
20215 return unify_success (explain_p);
20217 /* Handle init lists early, so the rest of the function can assume
20218 we're dealing with a type. */
20219 if (BRACE_ENCLOSED_INITIALIZER_P (arg))
20221 tree elt, elttype;
20222 unsigned i;
20223 tree orig_parm = parm;
20225 /* Replace T with std::initializer_list<T> for deduction. */
20226 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
20227 && flag_deduce_init_list)
20228 parm = listify (parm);
20230 if (!is_std_init_list (parm)
20231 && TREE_CODE (parm) != ARRAY_TYPE)
20232 /* We can only deduce from an initializer list argument if the
20233 parameter is std::initializer_list or an array; otherwise this
20234 is a non-deduced context. */
20235 return unify_success (explain_p);
20237 if (TREE_CODE (parm) == ARRAY_TYPE)
20238 elttype = TREE_TYPE (parm);
20239 else
20241 elttype = TREE_VEC_ELT (CLASSTYPE_TI_ARGS (parm), 0);
20242 /* Deduction is defined in terms of a single type, so just punt
20243 on the (bizarre) std::initializer_list<T...>. */
20244 if (PACK_EXPANSION_P (elttype))
20245 return unify_success (explain_p);
20248 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (arg), i, elt)
20250 int elt_strict = strict;
20252 if (elt == error_mark_node)
20253 return unify_invalid (explain_p);
20255 if (!BRACE_ENCLOSED_INITIALIZER_P (elt))
20257 tree type = TREE_TYPE (elt);
20258 if (type == error_mark_node)
20259 return unify_invalid (explain_p);
20260 /* It should only be possible to get here for a call. */
20261 gcc_assert (elt_strict & UNIFY_ALLOW_OUTER_LEVEL);
20262 elt_strict |= maybe_adjust_types_for_deduction
20263 (DEDUCE_CALL, &elttype, &type, elt);
20264 elt = type;
20267 RECUR_AND_CHECK_FAILURE (tparms, targs, elttype, elt, elt_strict,
20268 explain_p);
20271 if (TREE_CODE (parm) == ARRAY_TYPE
20272 && deducible_array_bound (TYPE_DOMAIN (parm)))
20274 /* Also deduce from the length of the initializer list. */
20275 tree max = size_int (CONSTRUCTOR_NELTS (arg));
20276 tree idx = compute_array_index_type (NULL_TREE, max, tf_none);
20277 if (idx == error_mark_node)
20278 return unify_invalid (explain_p);
20279 return unify_array_domain (tparms, targs, TYPE_DOMAIN (parm),
20280 idx, explain_p);
20283 /* If the std::initializer_list<T> deduction worked, replace the
20284 deduced A with std::initializer_list<A>. */
20285 if (orig_parm != parm)
20287 idx = TEMPLATE_TYPE_IDX (orig_parm);
20288 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
20289 targ = listify (targ);
20290 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = targ;
20292 return unify_success (explain_p);
20295 /* If parm and arg aren't the same kind of thing (template, type, or
20296 expression), fail early. */
20297 if (pa_kind (parm) != pa_kind (arg))
20298 return unify_invalid (explain_p);
20300 /* Immediately reject some pairs that won't unify because of
20301 cv-qualification mismatches. */
20302 if (TREE_CODE (arg) == TREE_CODE (parm)
20303 && TYPE_P (arg)
20304 /* It is the elements of the array which hold the cv quals of an array
20305 type, and the elements might be template type parms. We'll check
20306 when we recurse. */
20307 && TREE_CODE (arg) != ARRAY_TYPE
20308 /* We check the cv-qualifiers when unifying with template type
20309 parameters below. We want to allow ARG `const T' to unify with
20310 PARM `T' for example, when computing which of two templates
20311 is more specialized, for example. */
20312 && TREE_CODE (arg) != TEMPLATE_TYPE_PARM
20313 && !check_cv_quals_for_unify (strict_in, arg, parm))
20314 return unify_cv_qual_mismatch (explain_p, parm, arg);
20316 if (!(strict & UNIFY_ALLOW_OUTER_LEVEL)
20317 && TYPE_P (parm) && !CP_TYPE_CONST_P (parm))
20318 strict &= ~UNIFY_ALLOW_MORE_CV_QUAL;
20319 strict &= ~UNIFY_ALLOW_OUTER_LEVEL;
20320 strict &= ~UNIFY_ALLOW_DERIVED;
20321 strict &= ~UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
20322 strict &= ~UNIFY_ALLOW_OUTER_LESS_CV_QUAL;
20324 switch (TREE_CODE (parm))
20326 case TYPENAME_TYPE:
20327 case SCOPE_REF:
20328 case UNBOUND_CLASS_TEMPLATE:
20329 /* In a type which contains a nested-name-specifier, template
20330 argument values cannot be deduced for template parameters used
20331 within the nested-name-specifier. */
20332 return unify_success (explain_p);
20334 case TEMPLATE_TYPE_PARM:
20335 case TEMPLATE_TEMPLATE_PARM:
20336 case BOUND_TEMPLATE_TEMPLATE_PARM:
20337 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
20338 if (error_operand_p (tparm))
20339 return unify_invalid (explain_p);
20341 if (TEMPLATE_TYPE_LEVEL (parm)
20342 != template_decl_level (tparm))
20343 /* The PARM is not one we're trying to unify. Just check
20344 to see if it matches ARG. */
20346 if (TREE_CODE (arg) == TREE_CODE (parm)
20347 && (is_auto (parm) ? is_auto (arg)
20348 : same_type_p (parm, arg)))
20349 return unify_success (explain_p);
20350 else
20351 return unify_type_mismatch (explain_p, parm, arg);
20353 idx = TEMPLATE_TYPE_IDX (parm);
20354 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
20355 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, idx));
20356 if (error_operand_p (tparm))
20357 return unify_invalid (explain_p);
20359 /* Check for mixed types and values. */
20360 if ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
20361 && TREE_CODE (tparm) != TYPE_DECL)
20362 || (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
20363 && TREE_CODE (tparm) != TEMPLATE_DECL))
20364 gcc_unreachable ();
20366 if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
20368 if ((strict_in & UNIFY_ALLOW_DERIVED)
20369 && CLASS_TYPE_P (arg))
20371 /* First try to match ARG directly. */
20372 tree t = try_class_unification (tparms, targs, parm, arg,
20373 explain_p);
20374 if (!t)
20376 /* Otherwise, look for a suitable base of ARG, as below. */
20377 enum template_base_result r;
20378 r = get_template_base (tparms, targs, parm, arg,
20379 explain_p, &t);
20380 if (!t)
20381 return unify_no_common_base (explain_p, r, parm, arg);
20382 arg = t;
20385 /* ARG must be constructed from a template class or a template
20386 template parameter. */
20387 else if (TREE_CODE (arg) != BOUND_TEMPLATE_TEMPLATE_PARM
20388 && !CLASSTYPE_SPECIALIZATION_OF_PRIMARY_TEMPLATE_P (arg))
20389 return unify_template_deduction_failure (explain_p, parm, arg);
20391 /* Deduce arguments T, i from TT<T> or TT<i>. */
20392 if (unify_bound_ttp_args (tparms, targs, parm, arg, explain_p))
20393 return 1;
20395 arg = TYPE_TI_TEMPLATE (arg);
20397 /* Fall through to deduce template name. */
20400 if (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
20401 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
20403 /* Deduce template name TT from TT, TT<>, TT<T> and TT<i>. */
20405 /* Simple cases: Value already set, does match or doesn't. */
20406 if (targ != NULL_TREE && template_args_equal (targ, arg))
20407 return unify_success (explain_p);
20408 else if (targ)
20409 return unify_inconsistency (explain_p, parm, targ, arg);
20411 else
20413 /* If PARM is `const T' and ARG is only `int', we don't have
20414 a match unless we are allowing additional qualification.
20415 If ARG is `const int' and PARM is just `T' that's OK;
20416 that binds `const int' to `T'. */
20417 if (!check_cv_quals_for_unify (strict_in | UNIFY_ALLOW_LESS_CV_QUAL,
20418 arg, parm))
20419 return unify_cv_qual_mismatch (explain_p, parm, arg);
20421 /* Consider the case where ARG is `const volatile int' and
20422 PARM is `const T'. Then, T should be `volatile int'. */
20423 arg = cp_build_qualified_type_real
20424 (arg, cp_type_quals (arg) & ~cp_type_quals (parm), tf_none);
20425 if (arg == error_mark_node)
20426 return unify_invalid (explain_p);
20428 /* Simple cases: Value already set, does match or doesn't. */
20429 if (targ != NULL_TREE && same_type_p (targ, arg))
20430 return unify_success (explain_p);
20431 else if (targ)
20432 return unify_inconsistency (explain_p, parm, targ, arg);
20434 /* Make sure that ARG is not a variable-sized array. (Note
20435 that were talking about variable-sized arrays (like
20436 `int[n]'), rather than arrays of unknown size (like
20437 `int[]').) We'll get very confused by such a type since
20438 the bound of the array is not constant, and therefore
20439 not mangleable. Besides, such types are not allowed in
20440 ISO C++, so we can do as we please here. We do allow
20441 them for 'auto' deduction, since that isn't ABI-exposed. */
20442 if (!is_auto (parm) && variably_modified_type_p (arg, NULL_TREE))
20443 return unify_vla_arg (explain_p, arg);
20445 /* Strip typedefs as in convert_template_argument. */
20446 arg = canonicalize_type_argument (arg, tf_none);
20449 /* If ARG is a parameter pack or an expansion, we cannot unify
20450 against it unless PARM is also a parameter pack. */
20451 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
20452 && !template_parameter_pack_p (parm))
20453 return unify_parameter_pack_mismatch (explain_p, parm, arg);
20455 /* If the argument deduction results is a METHOD_TYPE,
20456 then there is a problem.
20457 METHOD_TYPE doesn't map to any real C++ type the result of
20458 the deduction can not be of that type. */
20459 if (TREE_CODE (arg) == METHOD_TYPE)
20460 return unify_method_type_error (explain_p, arg);
20462 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
20463 return unify_success (explain_p);
20465 case TEMPLATE_PARM_INDEX:
20466 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
20467 if (error_operand_p (tparm))
20468 return unify_invalid (explain_p);
20470 if (TEMPLATE_PARM_LEVEL (parm)
20471 != template_decl_level (tparm))
20473 /* The PARM is not one we're trying to unify. Just check
20474 to see if it matches ARG. */
20475 int result = !(TREE_CODE (arg) == TREE_CODE (parm)
20476 && cp_tree_equal (parm, arg));
20477 if (result)
20478 unify_expression_unequal (explain_p, parm, arg);
20479 return result;
20482 idx = TEMPLATE_PARM_IDX (parm);
20483 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
20485 if (targ)
20487 int x = !cp_tree_equal (targ, arg);
20488 if (x)
20489 unify_inconsistency (explain_p, parm, targ, arg);
20490 return x;
20493 if (cxx_dialect >= cxx1z
20494 /* We deduce from array bounds in try_array_deduction. */
20495 && !(strict & UNIFY_ALLOW_INTEGER)
20496 && uses_template_parms (TREE_TYPE (parm))
20497 && !type_uses_auto (TREE_TYPE (parm)))
20499 tree atype = TREE_TYPE (arg);
20500 RECUR_AND_CHECK_FAILURE (tparms, targs,
20501 TREE_TYPE (parm), atype,
20502 UNIFY_ALLOW_NONE, explain_p);
20505 /* [temp.deduct.type] If, in the declaration of a function template
20506 with a non-type template-parameter, the non-type
20507 template-parameter is used in an expression in the function
20508 parameter-list and, if the corresponding template-argument is
20509 deduced, the template-argument type shall match the type of the
20510 template-parameter exactly, except that a template-argument
20511 deduced from an array bound may be of any integral type.
20512 The non-type parameter might use already deduced type parameters. */
20513 tparm = tsubst (TREE_TYPE (parm), targs, 0, NULL_TREE);
20514 if (tree a = type_uses_auto (tparm))
20516 tparm = do_auto_deduction (tparm, arg, a, complain, adc_unify);
20517 if (tparm == error_mark_node)
20518 return 1;
20521 if (!TREE_TYPE (arg))
20522 /* Template-parameter dependent expression. Just accept it for now.
20523 It will later be processed in convert_template_argument. */
20525 else if (same_type_p (TREE_TYPE (arg), tparm))
20526 /* OK */;
20527 else if ((strict & UNIFY_ALLOW_INTEGER)
20528 && CP_INTEGRAL_TYPE_P (tparm))
20529 /* Convert the ARG to the type of PARM; the deduced non-type
20530 template argument must exactly match the types of the
20531 corresponding parameter. */
20532 arg = fold (build_nop (tparm, arg));
20533 else if (uses_template_parms (tparm))
20534 /* We haven't deduced the type of this parameter yet. Try again
20535 later. */
20536 return unify_success (explain_p);
20537 else
20538 return unify_type_mismatch (explain_p, tparm, TREE_TYPE (arg));
20540 /* If ARG is a parameter pack or an expansion, we cannot unify
20541 against it unless PARM is also a parameter pack. */
20542 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
20543 && !TEMPLATE_PARM_PARAMETER_PACK (parm))
20544 return unify_parameter_pack_mismatch (explain_p, parm, arg);
20547 bool removed_attr = false;
20548 arg = strip_typedefs_expr (arg, &removed_attr);
20550 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
20551 return unify_success (explain_p);
20553 case PTRMEM_CST:
20555 /* A pointer-to-member constant can be unified only with
20556 another constant. */
20557 if (TREE_CODE (arg) != PTRMEM_CST)
20558 return unify_ptrmem_cst_mismatch (explain_p, parm, arg);
20560 /* Just unify the class member. It would be useless (and possibly
20561 wrong, depending on the strict flags) to unify also
20562 PTRMEM_CST_CLASS, because we want to be sure that both parm and
20563 arg refer to the same variable, even if through different
20564 classes. For instance:
20566 struct A { int x; };
20567 struct B : A { };
20569 Unification of &A::x and &B::x must succeed. */
20570 return unify (tparms, targs, PTRMEM_CST_MEMBER (parm),
20571 PTRMEM_CST_MEMBER (arg), strict, explain_p);
20574 case POINTER_TYPE:
20576 if (!TYPE_PTR_P (arg))
20577 return unify_type_mismatch (explain_p, parm, arg);
20579 /* [temp.deduct.call]
20581 A can be another pointer or pointer to member type that can
20582 be converted to the deduced A via a qualification
20583 conversion (_conv.qual_).
20585 We pass down STRICT here rather than UNIFY_ALLOW_NONE.
20586 This will allow for additional cv-qualification of the
20587 pointed-to types if appropriate. */
20589 if (TREE_CODE (TREE_TYPE (arg)) == RECORD_TYPE)
20590 /* The derived-to-base conversion only persists through one
20591 level of pointers. */
20592 strict |= (strict_in & UNIFY_ALLOW_DERIVED);
20594 return unify (tparms, targs, TREE_TYPE (parm),
20595 TREE_TYPE (arg), strict, explain_p);
20598 case REFERENCE_TYPE:
20599 if (TREE_CODE (arg) != REFERENCE_TYPE)
20600 return unify_type_mismatch (explain_p, parm, arg);
20601 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
20602 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
20604 case ARRAY_TYPE:
20605 if (TREE_CODE (arg) != ARRAY_TYPE)
20606 return unify_type_mismatch (explain_p, parm, arg);
20607 if ((TYPE_DOMAIN (parm) == NULL_TREE)
20608 != (TYPE_DOMAIN (arg) == NULL_TREE))
20609 return unify_type_mismatch (explain_p, parm, arg);
20610 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
20611 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
20612 if (TYPE_DOMAIN (parm) != NULL_TREE)
20613 return unify_array_domain (tparms, targs, TYPE_DOMAIN (parm),
20614 TYPE_DOMAIN (arg), explain_p);
20615 return unify_success (explain_p);
20617 case REAL_TYPE:
20618 case COMPLEX_TYPE:
20619 case VECTOR_TYPE:
20620 case INTEGER_TYPE:
20621 case BOOLEAN_TYPE:
20622 case ENUMERAL_TYPE:
20623 case VOID_TYPE:
20624 case NULLPTR_TYPE:
20625 if (TREE_CODE (arg) != TREE_CODE (parm))
20626 return unify_type_mismatch (explain_p, parm, arg);
20628 /* We have already checked cv-qualification at the top of the
20629 function. */
20630 if (!same_type_ignoring_top_level_qualifiers_p (arg, parm))
20631 return unify_type_mismatch (explain_p, parm, arg);
20633 /* As far as unification is concerned, this wins. Later checks
20634 will invalidate it if necessary. */
20635 return unify_success (explain_p);
20637 /* Types INTEGER_CST and MINUS_EXPR can come from array bounds. */
20638 /* Type INTEGER_CST can come from ordinary constant template args. */
20639 case INTEGER_CST:
20640 while (CONVERT_EXPR_P (arg))
20641 arg = TREE_OPERAND (arg, 0);
20643 if (TREE_CODE (arg) != INTEGER_CST)
20644 return unify_template_argument_mismatch (explain_p, parm, arg);
20645 return (tree_int_cst_equal (parm, arg)
20646 ? unify_success (explain_p)
20647 : unify_template_argument_mismatch (explain_p, parm, arg));
20649 case TREE_VEC:
20651 int i, len, argslen;
20652 int parm_variadic_p = 0;
20654 if (TREE_CODE (arg) != TREE_VEC)
20655 return unify_template_argument_mismatch (explain_p, parm, arg);
20657 len = TREE_VEC_LENGTH (parm);
20658 argslen = TREE_VEC_LENGTH (arg);
20660 /* Check for pack expansions in the parameters. */
20661 for (i = 0; i < len; ++i)
20663 if (PACK_EXPANSION_P (TREE_VEC_ELT (parm, i)))
20665 if (i == len - 1)
20666 /* We can unify against something with a trailing
20667 parameter pack. */
20668 parm_variadic_p = 1;
20669 else
20670 /* [temp.deduct.type]/9: If the template argument list of
20671 P contains a pack expansion that is not the last
20672 template argument, the entire template argument list
20673 is a non-deduced context. */
20674 return unify_success (explain_p);
20678 /* If we don't have enough arguments to satisfy the parameters
20679 (not counting the pack expression at the end), or we have
20680 too many arguments for a parameter list that doesn't end in
20681 a pack expression, we can't unify. */
20682 if (parm_variadic_p
20683 ? argslen < len - parm_variadic_p
20684 : argslen != len)
20685 return unify_arity (explain_p, TREE_VEC_LENGTH (arg), len);
20687 /* Unify all of the parameters that precede the (optional)
20688 pack expression. */
20689 for (i = 0; i < len - parm_variadic_p; ++i)
20691 RECUR_AND_CHECK_FAILURE (tparms, targs,
20692 TREE_VEC_ELT (parm, i),
20693 TREE_VEC_ELT (arg, i),
20694 UNIFY_ALLOW_NONE, explain_p);
20696 if (parm_variadic_p)
20697 return unify_pack_expansion (tparms, targs, parm, arg,
20698 DEDUCE_EXACT,
20699 /*subr=*/true, explain_p);
20700 return unify_success (explain_p);
20703 case RECORD_TYPE:
20704 case UNION_TYPE:
20705 if (TREE_CODE (arg) != TREE_CODE (parm))
20706 return unify_type_mismatch (explain_p, parm, arg);
20708 if (TYPE_PTRMEMFUNC_P (parm))
20710 if (!TYPE_PTRMEMFUNC_P (arg))
20711 return unify_type_mismatch (explain_p, parm, arg);
20713 return unify (tparms, targs,
20714 TYPE_PTRMEMFUNC_FN_TYPE (parm),
20715 TYPE_PTRMEMFUNC_FN_TYPE (arg),
20716 strict, explain_p);
20718 else if (TYPE_PTRMEMFUNC_P (arg))
20719 return unify_type_mismatch (explain_p, parm, arg);
20721 if (CLASSTYPE_TEMPLATE_INFO (parm))
20723 tree t = NULL_TREE;
20725 if (strict_in & UNIFY_ALLOW_DERIVED)
20727 /* First, we try to unify the PARM and ARG directly. */
20728 t = try_class_unification (tparms, targs,
20729 parm, arg, explain_p);
20731 if (!t)
20733 /* Fallback to the special case allowed in
20734 [temp.deduct.call]:
20736 If P is a class, and P has the form
20737 template-id, then A can be a derived class of
20738 the deduced A. Likewise, if P is a pointer to
20739 a class of the form template-id, A can be a
20740 pointer to a derived class pointed to by the
20741 deduced A. */
20742 enum template_base_result r;
20743 r = get_template_base (tparms, targs, parm, arg,
20744 explain_p, &t);
20746 if (!t)
20748 /* Don't give the derived diagnostic if we're
20749 already dealing with the same template. */
20750 bool same_template
20751 = (CLASSTYPE_TEMPLATE_INFO (arg)
20752 && (CLASSTYPE_TI_TEMPLATE (parm)
20753 == CLASSTYPE_TI_TEMPLATE (arg)));
20754 return unify_no_common_base (explain_p && !same_template,
20755 r, parm, arg);
20759 else if (CLASSTYPE_TEMPLATE_INFO (arg)
20760 && (CLASSTYPE_TI_TEMPLATE (parm)
20761 == CLASSTYPE_TI_TEMPLATE (arg)))
20762 /* Perhaps PARM is something like S<U> and ARG is S<int>.
20763 Then, we should unify `int' and `U'. */
20764 t = arg;
20765 else
20766 /* There's no chance of unification succeeding. */
20767 return unify_type_mismatch (explain_p, parm, arg);
20769 return unify (tparms, targs, CLASSTYPE_TI_ARGS (parm),
20770 CLASSTYPE_TI_ARGS (t), UNIFY_ALLOW_NONE, explain_p);
20772 else if (!same_type_ignoring_top_level_qualifiers_p (parm, arg))
20773 return unify_type_mismatch (explain_p, parm, arg);
20774 return unify_success (explain_p);
20776 case METHOD_TYPE:
20777 case FUNCTION_TYPE:
20779 unsigned int nargs;
20780 tree *args;
20781 tree a;
20782 unsigned int i;
20784 if (TREE_CODE (arg) != TREE_CODE (parm))
20785 return unify_type_mismatch (explain_p, parm, arg);
20787 /* CV qualifications for methods can never be deduced, they must
20788 match exactly. We need to check them explicitly here,
20789 because type_unification_real treats them as any other
20790 cv-qualified parameter. */
20791 if (TREE_CODE (parm) == METHOD_TYPE
20792 && (!check_cv_quals_for_unify
20793 (UNIFY_ALLOW_NONE,
20794 class_of_this_parm (arg),
20795 class_of_this_parm (parm))))
20796 return unify_cv_qual_mismatch (explain_p, parm, arg);
20797 if (TREE_CODE (arg) == FUNCTION_TYPE
20798 && type_memfn_quals (parm) != type_memfn_quals (arg))
20799 return unify_cv_qual_mismatch (explain_p, parm, arg);
20800 if (type_memfn_rqual (parm) != type_memfn_rqual (arg))
20801 return unify_type_mismatch (explain_p, parm, arg);
20803 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm),
20804 TREE_TYPE (arg), UNIFY_ALLOW_NONE, explain_p);
20806 nargs = list_length (TYPE_ARG_TYPES (arg));
20807 args = XALLOCAVEC (tree, nargs);
20808 for (a = TYPE_ARG_TYPES (arg), i = 0;
20809 a != NULL_TREE && a != void_list_node;
20810 a = TREE_CHAIN (a), ++i)
20811 args[i] = TREE_VALUE (a);
20812 nargs = i;
20814 if (type_unification_real (tparms, targs, TYPE_ARG_TYPES (parm),
20815 args, nargs, 1, DEDUCE_EXACT,
20816 LOOKUP_NORMAL, NULL, explain_p))
20817 return 1;
20819 if (flag_noexcept_type)
20821 tree pspec = TYPE_RAISES_EXCEPTIONS (parm);
20822 tree aspec = canonical_eh_spec (TYPE_RAISES_EXCEPTIONS (arg));
20823 if (pspec == NULL_TREE) pspec = noexcept_false_spec;
20824 if (aspec == NULL_TREE) aspec = noexcept_false_spec;
20825 if (TREE_PURPOSE (pspec) && TREE_PURPOSE (aspec)
20826 && uses_template_parms (TREE_PURPOSE (pspec)))
20827 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_PURPOSE (pspec),
20828 TREE_PURPOSE (aspec),
20829 UNIFY_ALLOW_NONE, explain_p);
20830 else if (nothrow_spec_p (pspec) && !nothrow_spec_p (aspec))
20831 return unify_type_mismatch (explain_p, parm, arg);
20834 return 0;
20837 case OFFSET_TYPE:
20838 /* Unify a pointer to member with a pointer to member function, which
20839 deduces the type of the member as a function type. */
20840 if (TYPE_PTRMEMFUNC_P (arg))
20842 /* Check top-level cv qualifiers */
20843 if (!check_cv_quals_for_unify (UNIFY_ALLOW_NONE, arg, parm))
20844 return unify_cv_qual_mismatch (explain_p, parm, arg);
20846 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
20847 TYPE_PTRMEMFUNC_OBJECT_TYPE (arg),
20848 UNIFY_ALLOW_NONE, explain_p);
20850 /* Determine the type of the function we are unifying against. */
20851 tree fntype = static_fn_type (arg);
20853 return unify (tparms, targs, TREE_TYPE (parm), fntype, strict, explain_p);
20856 if (TREE_CODE (arg) != OFFSET_TYPE)
20857 return unify_type_mismatch (explain_p, parm, arg);
20858 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
20859 TYPE_OFFSET_BASETYPE (arg),
20860 UNIFY_ALLOW_NONE, explain_p);
20861 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
20862 strict, explain_p);
20864 case CONST_DECL:
20865 if (DECL_TEMPLATE_PARM_P (parm))
20866 return unify (tparms, targs, DECL_INITIAL (parm), arg, strict, explain_p);
20867 if (arg != scalar_constant_value (parm))
20868 return unify_template_argument_mismatch (explain_p, parm, arg);
20869 return unify_success (explain_p);
20871 case FIELD_DECL:
20872 case TEMPLATE_DECL:
20873 /* Matched cases are handled by the ARG == PARM test above. */
20874 return unify_template_argument_mismatch (explain_p, parm, arg);
20876 case VAR_DECL:
20877 /* We might get a variable as a non-type template argument in parm if the
20878 corresponding parameter is type-dependent. Make any necessary
20879 adjustments based on whether arg is a reference. */
20880 if (CONSTANT_CLASS_P (arg))
20881 parm = fold_non_dependent_expr (parm);
20882 else if (REFERENCE_REF_P (arg))
20884 tree sub = TREE_OPERAND (arg, 0);
20885 STRIP_NOPS (sub);
20886 if (TREE_CODE (sub) == ADDR_EXPR)
20887 arg = TREE_OPERAND (sub, 0);
20889 /* Now use the normal expression code to check whether they match. */
20890 goto expr;
20892 case TYPE_ARGUMENT_PACK:
20893 case NONTYPE_ARGUMENT_PACK:
20894 return unify (tparms, targs, ARGUMENT_PACK_ARGS (parm),
20895 ARGUMENT_PACK_ARGS (arg), strict, explain_p);
20897 case TYPEOF_TYPE:
20898 case DECLTYPE_TYPE:
20899 case UNDERLYING_TYPE:
20900 /* Cannot deduce anything from TYPEOF_TYPE, DECLTYPE_TYPE,
20901 or UNDERLYING_TYPE nodes. */
20902 return unify_success (explain_p);
20904 case ERROR_MARK:
20905 /* Unification fails if we hit an error node. */
20906 return unify_invalid (explain_p);
20908 case INDIRECT_REF:
20909 if (REFERENCE_REF_P (parm))
20911 if (REFERENCE_REF_P (arg))
20912 arg = TREE_OPERAND (arg, 0);
20913 return unify (tparms, targs, TREE_OPERAND (parm, 0), arg,
20914 strict, explain_p);
20916 /* FALLTHRU */
20918 default:
20919 /* An unresolved overload is a nondeduced context. */
20920 if (is_overloaded_fn (parm) || type_unknown_p (parm))
20921 return unify_success (explain_p);
20922 gcc_assert (EXPR_P (parm) || TREE_CODE (parm) == TRAIT_EXPR);
20923 expr:
20924 /* We must be looking at an expression. This can happen with
20925 something like:
20927 template <int I>
20928 void foo(S<I>, S<I + 2>);
20930 This is a "nondeduced context":
20932 [deduct.type]
20934 The nondeduced contexts are:
20936 --A type that is a template-id in which one or more of
20937 the template-arguments is an expression that references
20938 a template-parameter.
20940 In these cases, we assume deduction succeeded, but don't
20941 actually infer any unifications. */
20943 if (!uses_template_parms (parm)
20944 && !template_args_equal (parm, arg))
20945 return unify_expression_unequal (explain_p, parm, arg);
20946 else
20947 return unify_success (explain_p);
20950 #undef RECUR_AND_CHECK_FAILURE
20952 /* Note that DECL can be defined in this translation unit, if
20953 required. */
20955 static void
20956 mark_definable (tree decl)
20958 tree clone;
20959 DECL_NOT_REALLY_EXTERN (decl) = 1;
20960 FOR_EACH_CLONE (clone, decl)
20961 DECL_NOT_REALLY_EXTERN (clone) = 1;
20964 /* Called if RESULT is explicitly instantiated, or is a member of an
20965 explicitly instantiated class. */
20967 void
20968 mark_decl_instantiated (tree result, int extern_p)
20970 SET_DECL_EXPLICIT_INSTANTIATION (result);
20972 /* If this entity has already been written out, it's too late to
20973 make any modifications. */
20974 if (TREE_ASM_WRITTEN (result))
20975 return;
20977 /* For anonymous namespace we don't need to do anything. */
20978 if (decl_anon_ns_mem_p (result))
20980 gcc_assert (!TREE_PUBLIC (result));
20981 return;
20984 if (TREE_CODE (result) != FUNCTION_DECL)
20985 /* The TREE_PUBLIC flag for function declarations will have been
20986 set correctly by tsubst. */
20987 TREE_PUBLIC (result) = 1;
20989 /* This might have been set by an earlier implicit instantiation. */
20990 DECL_COMDAT (result) = 0;
20992 if (extern_p)
20993 DECL_NOT_REALLY_EXTERN (result) = 0;
20994 else
20996 mark_definable (result);
20997 mark_needed (result);
20998 /* Always make artificials weak. */
20999 if (DECL_ARTIFICIAL (result) && flag_weak)
21000 comdat_linkage (result);
21001 /* For WIN32 we also want to put explicit instantiations in
21002 linkonce sections. */
21003 else if (TREE_PUBLIC (result))
21004 maybe_make_one_only (result);
21007 /* If EXTERN_P, then this function will not be emitted -- unless
21008 followed by an explicit instantiation, at which point its linkage
21009 will be adjusted. If !EXTERN_P, then this function will be
21010 emitted here. In neither circumstance do we want
21011 import_export_decl to adjust the linkage. */
21012 DECL_INTERFACE_KNOWN (result) = 1;
21015 /* Subroutine of more_specialized_fn: check whether TARGS is missing any
21016 important template arguments. If any are missing, we check whether
21017 they're important by using error_mark_node for substituting into any
21018 args that were used for partial ordering (the ones between ARGS and END)
21019 and seeing if it bubbles up. */
21021 static bool
21022 check_undeduced_parms (tree targs, tree args, tree end)
21024 bool found = false;
21025 int i;
21026 for (i = TREE_VEC_LENGTH (targs) - 1; i >= 0; --i)
21027 if (TREE_VEC_ELT (targs, i) == NULL_TREE)
21029 found = true;
21030 TREE_VEC_ELT (targs, i) = error_mark_node;
21032 if (found)
21034 tree substed = tsubst_arg_types (args, targs, end, tf_none, NULL_TREE);
21035 if (substed == error_mark_node)
21036 return true;
21038 return false;
21041 /* Given two function templates PAT1 and PAT2, return:
21043 1 if PAT1 is more specialized than PAT2 as described in [temp.func.order].
21044 -1 if PAT2 is more specialized than PAT1.
21045 0 if neither is more specialized.
21047 LEN indicates the number of parameters we should consider
21048 (defaulted parameters should not be considered).
21050 The 1998 std underspecified function template partial ordering, and
21051 DR214 addresses the issue. We take pairs of arguments, one from
21052 each of the templates, and deduce them against each other. One of
21053 the templates will be more specialized if all the *other*
21054 template's arguments deduce against its arguments and at least one
21055 of its arguments *does* *not* deduce against the other template's
21056 corresponding argument. Deduction is done as for class templates.
21057 The arguments used in deduction have reference and top level cv
21058 qualifiers removed. Iff both arguments were originally reference
21059 types *and* deduction succeeds in both directions, an lvalue reference
21060 wins against an rvalue reference and otherwise the template
21061 with the more cv-qualified argument wins for that pairing (if
21062 neither is more cv-qualified, they both are equal). Unlike regular
21063 deduction, after all the arguments have been deduced in this way,
21064 we do *not* verify the deduced template argument values can be
21065 substituted into non-deduced contexts.
21067 The logic can be a bit confusing here, because we look at deduce1 and
21068 targs1 to see if pat2 is at least as specialized, and vice versa; if we
21069 can find template arguments for pat1 to make arg1 look like arg2, that
21070 means that arg2 is at least as specialized as arg1. */
21073 more_specialized_fn (tree pat1, tree pat2, int len)
21075 tree decl1 = DECL_TEMPLATE_RESULT (pat1);
21076 tree decl2 = DECL_TEMPLATE_RESULT (pat2);
21077 tree targs1 = make_tree_vec (DECL_NTPARMS (pat1));
21078 tree targs2 = make_tree_vec (DECL_NTPARMS (pat2));
21079 tree tparms1 = DECL_INNERMOST_TEMPLATE_PARMS (pat1);
21080 tree tparms2 = DECL_INNERMOST_TEMPLATE_PARMS (pat2);
21081 tree args1 = TYPE_ARG_TYPES (TREE_TYPE (decl1));
21082 tree args2 = TYPE_ARG_TYPES (TREE_TYPE (decl2));
21083 tree origs1, origs2;
21084 bool lose1 = false;
21085 bool lose2 = false;
21087 /* Remove the this parameter from non-static member functions. If
21088 one is a non-static member function and the other is not a static
21089 member function, remove the first parameter from that function
21090 also. This situation occurs for operator functions where we
21091 locate both a member function (with this pointer) and non-member
21092 operator (with explicit first operand). */
21093 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl1))
21095 len--; /* LEN is the number of significant arguments for DECL1 */
21096 args1 = TREE_CHAIN (args1);
21097 if (!DECL_STATIC_FUNCTION_P (decl2))
21098 args2 = TREE_CHAIN (args2);
21100 else if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl2))
21102 args2 = TREE_CHAIN (args2);
21103 if (!DECL_STATIC_FUNCTION_P (decl1))
21105 len--;
21106 args1 = TREE_CHAIN (args1);
21110 /* If only one is a conversion operator, they are unordered. */
21111 if (DECL_CONV_FN_P (decl1) != DECL_CONV_FN_P (decl2))
21112 return 0;
21114 /* Consider the return type for a conversion function */
21115 if (DECL_CONV_FN_P (decl1))
21117 args1 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl1)), args1);
21118 args2 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl2)), args2);
21119 len++;
21122 processing_template_decl++;
21124 origs1 = args1;
21125 origs2 = args2;
21127 while (len--
21128 /* Stop when an ellipsis is seen. */
21129 && args1 != NULL_TREE && args2 != NULL_TREE)
21131 tree arg1 = TREE_VALUE (args1);
21132 tree arg2 = TREE_VALUE (args2);
21133 int deduce1, deduce2;
21134 int quals1 = -1;
21135 int quals2 = -1;
21136 int ref1 = 0;
21137 int ref2 = 0;
21139 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
21140 && TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
21142 /* When both arguments are pack expansions, we need only
21143 unify the patterns themselves. */
21144 arg1 = PACK_EXPANSION_PATTERN (arg1);
21145 arg2 = PACK_EXPANSION_PATTERN (arg2);
21147 /* This is the last comparison we need to do. */
21148 len = 0;
21151 if (TREE_CODE (arg1) == REFERENCE_TYPE)
21153 ref1 = TYPE_REF_IS_RVALUE (arg1) + 1;
21154 arg1 = TREE_TYPE (arg1);
21155 quals1 = cp_type_quals (arg1);
21158 if (TREE_CODE (arg2) == REFERENCE_TYPE)
21160 ref2 = TYPE_REF_IS_RVALUE (arg2) + 1;
21161 arg2 = TREE_TYPE (arg2);
21162 quals2 = cp_type_quals (arg2);
21165 arg1 = TYPE_MAIN_VARIANT (arg1);
21166 arg2 = TYPE_MAIN_VARIANT (arg2);
21168 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION)
21170 int i, len2 = remaining_arguments (args2);
21171 tree parmvec = make_tree_vec (1);
21172 tree argvec = make_tree_vec (len2);
21173 tree ta = args2;
21175 /* Setup the parameter vector, which contains only ARG1. */
21176 TREE_VEC_ELT (parmvec, 0) = arg1;
21178 /* Setup the argument vector, which contains the remaining
21179 arguments. */
21180 for (i = 0; i < len2; i++, ta = TREE_CHAIN (ta))
21181 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
21183 deduce1 = (unify_pack_expansion (tparms1, targs1, parmvec,
21184 argvec, DEDUCE_EXACT,
21185 /*subr=*/true, /*explain_p=*/false)
21186 == 0);
21188 /* We cannot deduce in the other direction, because ARG1 is
21189 a pack expansion but ARG2 is not. */
21190 deduce2 = 0;
21192 else if (TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
21194 int i, len1 = remaining_arguments (args1);
21195 tree parmvec = make_tree_vec (1);
21196 tree argvec = make_tree_vec (len1);
21197 tree ta = args1;
21199 /* Setup the parameter vector, which contains only ARG1. */
21200 TREE_VEC_ELT (parmvec, 0) = arg2;
21202 /* Setup the argument vector, which contains the remaining
21203 arguments. */
21204 for (i = 0; i < len1; i++, ta = TREE_CHAIN (ta))
21205 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
21207 deduce2 = (unify_pack_expansion (tparms2, targs2, parmvec,
21208 argvec, DEDUCE_EXACT,
21209 /*subr=*/true, /*explain_p=*/false)
21210 == 0);
21212 /* We cannot deduce in the other direction, because ARG2 is
21213 a pack expansion but ARG1 is not.*/
21214 deduce1 = 0;
21217 else
21219 /* The normal case, where neither argument is a pack
21220 expansion. */
21221 deduce1 = (unify (tparms1, targs1, arg1, arg2,
21222 UNIFY_ALLOW_NONE, /*explain_p=*/false)
21223 == 0);
21224 deduce2 = (unify (tparms2, targs2, arg2, arg1,
21225 UNIFY_ALLOW_NONE, /*explain_p=*/false)
21226 == 0);
21229 /* If we couldn't deduce arguments for tparms1 to make arg1 match
21230 arg2, then arg2 is not as specialized as arg1. */
21231 if (!deduce1)
21232 lose2 = true;
21233 if (!deduce2)
21234 lose1 = true;
21236 /* "If, for a given type, deduction succeeds in both directions
21237 (i.e., the types are identical after the transformations above)
21238 and both P and A were reference types (before being replaced with
21239 the type referred to above):
21240 - if the type from the argument template was an lvalue reference and
21241 the type from the parameter template was not, the argument type is
21242 considered to be more specialized than the other; otherwise,
21243 - if the type from the argument template is more cv-qualified
21244 than the type from the parameter template (as described above),
21245 the argument type is considered to be more specialized than the other;
21246 otherwise,
21247 - neither type is more specialized than the other." */
21249 if (deduce1 && deduce2)
21251 if (ref1 && ref2 && ref1 != ref2)
21253 if (ref1 > ref2)
21254 lose1 = true;
21255 else
21256 lose2 = true;
21258 else if (quals1 != quals2 && quals1 >= 0 && quals2 >= 0)
21260 if ((quals1 & quals2) == quals2)
21261 lose2 = true;
21262 if ((quals1 & quals2) == quals1)
21263 lose1 = true;
21267 if (lose1 && lose2)
21268 /* We've failed to deduce something in either direction.
21269 These must be unordered. */
21270 break;
21272 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
21273 || TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
21274 /* We have already processed all of the arguments in our
21275 handing of the pack expansion type. */
21276 len = 0;
21278 args1 = TREE_CHAIN (args1);
21279 args2 = TREE_CHAIN (args2);
21282 /* "In most cases, all template parameters must have values in order for
21283 deduction to succeed, but for partial ordering purposes a template
21284 parameter may remain without a value provided it is not used in the
21285 types being used for partial ordering."
21287 Thus, if we are missing any of the targs1 we need to substitute into
21288 origs1, then pat2 is not as specialized as pat1. This can happen when
21289 there is a nondeduced context. */
21290 if (!lose2 && check_undeduced_parms (targs1, origs1, args1))
21291 lose2 = true;
21292 if (!lose1 && check_undeduced_parms (targs2, origs2, args2))
21293 lose1 = true;
21295 processing_template_decl--;
21297 /* If both deductions succeed, the partial ordering selects the more
21298 constrained template. */
21299 if (!lose1 && !lose2)
21301 tree c1 = get_constraints (DECL_TEMPLATE_RESULT (pat1));
21302 tree c2 = get_constraints (DECL_TEMPLATE_RESULT (pat2));
21303 lose1 = !subsumes_constraints (c1, c2);
21304 lose2 = !subsumes_constraints (c2, c1);
21307 /* All things being equal, if the next argument is a pack expansion
21308 for one function but not for the other, prefer the
21309 non-variadic function. FIXME this is bogus; see c++/41958. */
21310 if (lose1 == lose2
21311 && args1 && TREE_VALUE (args1)
21312 && args2 && TREE_VALUE (args2))
21314 lose1 = TREE_CODE (TREE_VALUE (args1)) == TYPE_PACK_EXPANSION;
21315 lose2 = TREE_CODE (TREE_VALUE (args2)) == TYPE_PACK_EXPANSION;
21318 if (lose1 == lose2)
21319 return 0;
21320 else if (!lose1)
21321 return 1;
21322 else
21323 return -1;
21326 /* Determine which of two partial specializations of TMPL is more
21327 specialized.
21329 PAT1 is a TREE_LIST whose TREE_VALUE is the TEMPLATE_DECL corresponding
21330 to the first partial specialization. The TREE_PURPOSE is the
21331 innermost set of template parameters for the partial
21332 specialization. PAT2 is similar, but for the second template.
21334 Return 1 if the first partial specialization is more specialized;
21335 -1 if the second is more specialized; 0 if neither is more
21336 specialized.
21338 See [temp.class.order] for information about determining which of
21339 two templates is more specialized. */
21341 static int
21342 more_specialized_partial_spec (tree tmpl, tree pat1, tree pat2)
21344 tree targs;
21345 int winner = 0;
21346 bool any_deductions = false;
21348 tree tmpl1 = TREE_VALUE (pat1);
21349 tree tmpl2 = TREE_VALUE (pat2);
21350 tree specargs1 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl1)));
21351 tree specargs2 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl2)));
21353 /* Just like what happens for functions, if we are ordering between
21354 different template specializations, we may encounter dependent
21355 types in the arguments, and we need our dependency check functions
21356 to behave correctly. */
21357 ++processing_template_decl;
21358 targs = get_partial_spec_bindings (tmpl, tmpl1, specargs2);
21359 if (targs)
21361 --winner;
21362 any_deductions = true;
21365 targs = get_partial_spec_bindings (tmpl, tmpl2, specargs1);
21366 if (targs)
21368 ++winner;
21369 any_deductions = true;
21371 --processing_template_decl;
21373 /* If both deductions succeed, the partial ordering selects the more
21374 constrained template. */
21375 if (!winner && any_deductions)
21376 return more_constrained (tmpl1, tmpl2);
21378 /* In the case of a tie where at least one of the templates
21379 has a parameter pack at the end, the template with the most
21380 non-packed parameters wins. */
21381 if (winner == 0
21382 && any_deductions
21383 && (template_args_variadic_p (TREE_PURPOSE (pat1))
21384 || template_args_variadic_p (TREE_PURPOSE (pat2))))
21386 tree args1 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat1));
21387 tree args2 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat2));
21388 int len1 = TREE_VEC_LENGTH (args1);
21389 int len2 = TREE_VEC_LENGTH (args2);
21391 /* We don't count the pack expansion at the end. */
21392 if (template_args_variadic_p (TREE_PURPOSE (pat1)))
21393 --len1;
21394 if (template_args_variadic_p (TREE_PURPOSE (pat2)))
21395 --len2;
21397 if (len1 > len2)
21398 return 1;
21399 else if (len1 < len2)
21400 return -1;
21403 return winner;
21406 /* Return the template arguments that will produce the function signature
21407 DECL from the function template FN, with the explicit template
21408 arguments EXPLICIT_ARGS. If CHECK_RETTYPE is true, the return type must
21409 also match. Return NULL_TREE if no satisfactory arguments could be
21410 found. */
21412 static tree
21413 get_bindings (tree fn, tree decl, tree explicit_args, bool check_rettype)
21415 int ntparms = DECL_NTPARMS (fn);
21416 tree targs = make_tree_vec (ntparms);
21417 tree decl_type = TREE_TYPE (decl);
21418 tree decl_arg_types;
21419 tree *args;
21420 unsigned int nargs, ix;
21421 tree arg;
21423 gcc_assert (decl != DECL_TEMPLATE_RESULT (fn));
21425 /* Never do unification on the 'this' parameter. */
21426 decl_arg_types = skip_artificial_parms_for (decl,
21427 TYPE_ARG_TYPES (decl_type));
21429 nargs = list_length (decl_arg_types);
21430 args = XALLOCAVEC (tree, nargs);
21431 for (arg = decl_arg_types, ix = 0;
21432 arg != NULL_TREE && arg != void_list_node;
21433 arg = TREE_CHAIN (arg), ++ix)
21434 args[ix] = TREE_VALUE (arg);
21436 if (fn_type_unification (fn, explicit_args, targs,
21437 args, ix,
21438 (check_rettype || DECL_CONV_FN_P (fn)
21439 ? TREE_TYPE (decl_type) : NULL_TREE),
21440 DEDUCE_EXACT, LOOKUP_NORMAL, /*explain_p=*/false,
21441 /*decltype*/false)
21442 == error_mark_node)
21443 return NULL_TREE;
21445 return targs;
21448 /* Return the innermost template arguments that, when applied to a partial
21449 specialization SPEC_TMPL of TMPL, yield the ARGS.
21451 For example, suppose we have:
21453 template <class T, class U> struct S {};
21454 template <class T> struct S<T*, int> {};
21456 Then, suppose we want to get `S<double*, int>'. SPEC_TMPL will be the
21457 partial specialization and the ARGS will be {double*, int}. The resulting
21458 vector will be {double}, indicating that `T' is bound to `double'. */
21460 static tree
21461 get_partial_spec_bindings (tree tmpl, tree spec_tmpl, tree args)
21463 tree tparms = DECL_INNERMOST_TEMPLATE_PARMS (spec_tmpl);
21464 tree spec_args
21465 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (spec_tmpl)));
21466 int i, ntparms = TREE_VEC_LENGTH (tparms);
21467 tree deduced_args;
21468 tree innermost_deduced_args;
21470 innermost_deduced_args = make_tree_vec (ntparms);
21471 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
21473 deduced_args = copy_node (args);
21474 SET_TMPL_ARGS_LEVEL (deduced_args,
21475 TMPL_ARGS_DEPTH (deduced_args),
21476 innermost_deduced_args);
21478 else
21479 deduced_args = innermost_deduced_args;
21481 bool tried_array_deduction = (cxx_dialect < cxx1z);
21482 again:
21483 if (unify (tparms, deduced_args,
21484 INNERMOST_TEMPLATE_ARGS (spec_args),
21485 INNERMOST_TEMPLATE_ARGS (args),
21486 UNIFY_ALLOW_NONE, /*explain_p=*/false))
21487 return NULL_TREE;
21489 for (i = 0; i < ntparms; ++i)
21490 if (! TREE_VEC_ELT (innermost_deduced_args, i))
21492 if (!tried_array_deduction)
21494 try_array_deduction (tparms, innermost_deduced_args,
21495 INNERMOST_TEMPLATE_ARGS (spec_args));
21496 tried_array_deduction = true;
21497 if (TREE_VEC_ELT (innermost_deduced_args, i))
21498 goto again;
21500 return NULL_TREE;
21503 tree tinst = build_tree_list (spec_tmpl, deduced_args);
21504 if (!push_tinst_level (tinst))
21506 excessive_deduction_depth = true;
21507 return NULL_TREE;
21510 /* Verify that nondeduced template arguments agree with the type
21511 obtained from argument deduction.
21513 For example:
21515 struct A { typedef int X; };
21516 template <class T, class U> struct C {};
21517 template <class T> struct C<T, typename T::X> {};
21519 Then with the instantiation `C<A, int>', we can deduce that
21520 `T' is `A' but unify () does not check whether `typename T::X'
21521 is `int'. */
21522 spec_args = tsubst (spec_args, deduced_args, tf_none, NULL_TREE);
21523 spec_args = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
21524 spec_args, tmpl,
21525 tf_none, false, false);
21527 pop_tinst_level ();
21529 if (spec_args == error_mark_node
21530 /* We only need to check the innermost arguments; the other
21531 arguments will always agree. */
21532 || !comp_template_args (INNERMOST_TEMPLATE_ARGS (spec_args),
21533 INNERMOST_TEMPLATE_ARGS (args)))
21534 return NULL_TREE;
21536 /* Now that we have bindings for all of the template arguments,
21537 ensure that the arguments deduced for the template template
21538 parameters have compatible template parameter lists. See the use
21539 of template_template_parm_bindings_ok_p in fn_type_unification
21540 for more information. */
21541 if (!template_template_parm_bindings_ok_p (tparms, deduced_args))
21542 return NULL_TREE;
21544 return deduced_args;
21547 // Compare two function templates T1 and T2 by deducing bindings
21548 // from one against the other. If both deductions succeed, compare
21549 // constraints to see which is more constrained.
21550 static int
21551 more_specialized_inst (tree t1, tree t2)
21553 int fate = 0;
21554 int count = 0;
21556 if (get_bindings (t1, DECL_TEMPLATE_RESULT (t2), NULL_TREE, true))
21558 --fate;
21559 ++count;
21562 if (get_bindings (t2, DECL_TEMPLATE_RESULT (t1), NULL_TREE, true))
21564 ++fate;
21565 ++count;
21568 // If both deductions succeed, then one may be more constrained.
21569 if (count == 2 && fate == 0)
21570 fate = more_constrained (t1, t2);
21572 return fate;
21575 /* TEMPLATES is a TREE_LIST. Each TREE_VALUE is a TEMPLATE_DECL.
21576 Return the TREE_LIST node with the most specialized template, if
21577 any. If there is no most specialized template, the error_mark_node
21578 is returned.
21580 Note that this function does not look at, or modify, the
21581 TREE_PURPOSE or TREE_TYPE of any of the nodes. Since the node
21582 returned is one of the elements of INSTANTIATIONS, callers may
21583 store information in the TREE_PURPOSE or TREE_TYPE of the nodes,
21584 and retrieve it from the value returned. */
21586 tree
21587 most_specialized_instantiation (tree templates)
21589 tree fn, champ;
21591 ++processing_template_decl;
21593 champ = templates;
21594 for (fn = TREE_CHAIN (templates); fn; fn = TREE_CHAIN (fn))
21596 int fate = more_specialized_inst (TREE_VALUE (champ), TREE_VALUE (fn));
21597 if (fate == -1)
21598 champ = fn;
21599 else if (!fate)
21601 /* Equally specialized, move to next function. If there
21602 is no next function, nothing's most specialized. */
21603 fn = TREE_CHAIN (fn);
21604 champ = fn;
21605 if (!fn)
21606 break;
21610 if (champ)
21611 /* Now verify that champ is better than everything earlier in the
21612 instantiation list. */
21613 for (fn = templates; fn != champ; fn = TREE_CHAIN (fn)) {
21614 if (more_specialized_inst (TREE_VALUE (champ), TREE_VALUE (fn)) != 1)
21616 champ = NULL_TREE;
21617 break;
21621 processing_template_decl--;
21623 if (!champ)
21624 return error_mark_node;
21626 return champ;
21629 /* If DECL is a specialization of some template, return the most
21630 general such template. Otherwise, returns NULL_TREE.
21632 For example, given:
21634 template <class T> struct S { template <class U> void f(U); };
21636 if TMPL is `template <class U> void S<int>::f(U)' this will return
21637 the full template. This function will not trace past partial
21638 specializations, however. For example, given in addition:
21640 template <class T> struct S<T*> { template <class U> void f(U); };
21642 if TMPL is `template <class U> void S<int*>::f(U)' this will return
21643 `template <class T> template <class U> S<T*>::f(U)'. */
21645 tree
21646 most_general_template (tree decl)
21648 if (TREE_CODE (decl) != TEMPLATE_DECL)
21650 if (tree tinfo = get_template_info (decl))
21651 decl = TI_TEMPLATE (tinfo);
21652 /* The TI_TEMPLATE can be an IDENTIFIER_NODE for a
21653 template friend, or a FIELD_DECL for a capture pack. */
21654 if (TREE_CODE (decl) != TEMPLATE_DECL)
21655 return NULL_TREE;
21658 /* Look for more and more general templates. */
21659 while (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl))
21661 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE in some cases.
21662 (See cp-tree.h for details.) */
21663 if (TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
21664 break;
21666 if (CLASS_TYPE_P (TREE_TYPE (decl))
21667 && !TYPE_DECL_ALIAS_P (TYPE_NAME (TREE_TYPE (decl)))
21668 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
21669 break;
21671 /* Stop if we run into an explicitly specialized class template. */
21672 if (!DECL_NAMESPACE_SCOPE_P (decl)
21673 && DECL_CONTEXT (decl)
21674 && CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (decl)))
21675 break;
21677 decl = DECL_TI_TEMPLATE (decl);
21680 return decl;
21683 /* Return the most specialized of the template partial specializations
21684 which can produce TARGET, a specialization of some class or variable
21685 template. The value returned is actually a TREE_LIST; the TREE_VALUE is
21686 a TEMPLATE_DECL node corresponding to the partial specialization, while
21687 the TREE_PURPOSE is the set of template arguments that must be
21688 substituted into the template pattern in order to generate TARGET.
21690 If the choice of partial specialization is ambiguous, a diagnostic
21691 is issued, and the error_mark_node is returned. If there are no
21692 partial specializations matching TARGET, then NULL_TREE is
21693 returned, indicating that the primary template should be used. */
21695 static tree
21696 most_specialized_partial_spec (tree target, tsubst_flags_t complain)
21698 tree list = NULL_TREE;
21699 tree t;
21700 tree champ;
21701 int fate;
21702 bool ambiguous_p;
21703 tree outer_args = NULL_TREE;
21704 tree tmpl, args;
21706 if (TYPE_P (target))
21708 tree tinfo = CLASSTYPE_TEMPLATE_INFO (target);
21709 tmpl = TI_TEMPLATE (tinfo);
21710 args = TI_ARGS (tinfo);
21712 else if (TREE_CODE (target) == TEMPLATE_ID_EXPR)
21714 tmpl = TREE_OPERAND (target, 0);
21715 args = TREE_OPERAND (target, 1);
21717 else if (VAR_P (target))
21719 tree tinfo = DECL_TEMPLATE_INFO (target);
21720 tmpl = TI_TEMPLATE (tinfo);
21721 args = TI_ARGS (tinfo);
21723 else
21724 gcc_unreachable ();
21726 tree main_tmpl = most_general_template (tmpl);
21728 /* For determining which partial specialization to use, only the
21729 innermost args are interesting. */
21730 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
21732 outer_args = strip_innermost_template_args (args, 1);
21733 args = INNERMOST_TEMPLATE_ARGS (args);
21736 for (t = DECL_TEMPLATE_SPECIALIZATIONS (main_tmpl); t; t = TREE_CHAIN (t))
21738 tree spec_args;
21739 tree spec_tmpl = TREE_VALUE (t);
21741 if (outer_args)
21743 /* Substitute in the template args from the enclosing class. */
21744 ++processing_template_decl;
21745 spec_tmpl = tsubst (spec_tmpl, outer_args, tf_none, NULL_TREE);
21746 --processing_template_decl;
21749 if (spec_tmpl == error_mark_node)
21750 return error_mark_node;
21752 spec_args = get_partial_spec_bindings (tmpl, spec_tmpl, args);
21753 if (spec_args)
21755 if (outer_args)
21756 spec_args = add_to_template_args (outer_args, spec_args);
21758 /* Keep the candidate only if the constraints are satisfied,
21759 or if we're not compiling with concepts. */
21760 if (!flag_concepts
21761 || constraints_satisfied_p (spec_tmpl, spec_args))
21763 list = tree_cons (spec_args, TREE_VALUE (t), list);
21764 TREE_TYPE (list) = TREE_TYPE (t);
21769 if (! list)
21770 return NULL_TREE;
21772 ambiguous_p = false;
21773 t = list;
21774 champ = t;
21775 t = TREE_CHAIN (t);
21776 for (; t; t = TREE_CHAIN (t))
21778 fate = more_specialized_partial_spec (tmpl, champ, t);
21779 if (fate == 1)
21781 else
21783 if (fate == 0)
21785 t = TREE_CHAIN (t);
21786 if (! t)
21788 ambiguous_p = true;
21789 break;
21792 champ = t;
21796 if (!ambiguous_p)
21797 for (t = list; t && t != champ; t = TREE_CHAIN (t))
21799 fate = more_specialized_partial_spec (tmpl, champ, t);
21800 if (fate != 1)
21802 ambiguous_p = true;
21803 break;
21807 if (ambiguous_p)
21809 const char *str;
21810 char *spaces = NULL;
21811 if (!(complain & tf_error))
21812 return error_mark_node;
21813 if (TYPE_P (target))
21814 error ("ambiguous template instantiation for %q#T", target);
21815 else
21816 error ("ambiguous template instantiation for %q#D", target);
21817 str = ngettext ("candidate is:", "candidates are:", list_length (list));
21818 for (t = list; t; t = TREE_CHAIN (t))
21820 tree subst = build_tree_list (TREE_VALUE (t), TREE_PURPOSE (t));
21821 inform (DECL_SOURCE_LOCATION (TREE_VALUE (t)),
21822 "%s %#S", spaces ? spaces : str, subst);
21823 spaces = spaces ? spaces : get_spaces (str);
21825 free (spaces);
21826 return error_mark_node;
21829 return champ;
21832 /* Explicitly instantiate DECL. */
21834 void
21835 do_decl_instantiation (tree decl, tree storage)
21837 tree result = NULL_TREE;
21838 int extern_p = 0;
21840 if (!decl || decl == error_mark_node)
21841 /* An error occurred, for which grokdeclarator has already issued
21842 an appropriate message. */
21843 return;
21844 else if (! DECL_LANG_SPECIFIC (decl))
21846 error ("explicit instantiation of non-template %q#D", decl);
21847 return;
21850 bool var_templ = (DECL_TEMPLATE_INFO (decl)
21851 && variable_template_p (DECL_TI_TEMPLATE (decl)));
21853 if (VAR_P (decl) && !var_templ)
21855 /* There is an asymmetry here in the way VAR_DECLs and
21856 FUNCTION_DECLs are handled by grokdeclarator. In the case of
21857 the latter, the DECL we get back will be marked as a
21858 template instantiation, and the appropriate
21859 DECL_TEMPLATE_INFO will be set up. This does not happen for
21860 VAR_DECLs so we do the lookup here. Probably, grokdeclarator
21861 should handle VAR_DECLs as it currently handles
21862 FUNCTION_DECLs. */
21863 if (!DECL_CLASS_SCOPE_P (decl))
21865 error ("%qD is not a static data member of a class template", decl);
21866 return;
21868 result = lookup_field (DECL_CONTEXT (decl), DECL_NAME (decl), 0, false);
21869 if (!result || !VAR_P (result))
21871 error ("no matching template for %qD found", decl);
21872 return;
21874 if (!same_type_p (TREE_TYPE (result), TREE_TYPE (decl)))
21876 error ("type %qT for explicit instantiation %qD does not match "
21877 "declared type %qT", TREE_TYPE (result), decl,
21878 TREE_TYPE (decl));
21879 return;
21882 else if (TREE_CODE (decl) != FUNCTION_DECL && !var_templ)
21884 error ("explicit instantiation of %q#D", decl);
21885 return;
21887 else
21888 result = decl;
21890 /* Check for various error cases. Note that if the explicit
21891 instantiation is valid the RESULT will currently be marked as an
21892 *implicit* instantiation; DECL_EXPLICIT_INSTANTIATION is not set
21893 until we get here. */
21895 if (DECL_TEMPLATE_SPECIALIZATION (result))
21897 /* DR 259 [temp.spec].
21899 Both an explicit instantiation and a declaration of an explicit
21900 specialization shall not appear in a program unless the explicit
21901 instantiation follows a declaration of the explicit specialization.
21903 For a given set of template parameters, if an explicit
21904 instantiation of a template appears after a declaration of an
21905 explicit specialization for that template, the explicit
21906 instantiation has no effect. */
21907 return;
21909 else if (DECL_EXPLICIT_INSTANTIATION (result))
21911 /* [temp.spec]
21913 No program shall explicitly instantiate any template more
21914 than once.
21916 We check DECL_NOT_REALLY_EXTERN so as not to complain when
21917 the first instantiation was `extern' and the second is not,
21918 and EXTERN_P for the opposite case. */
21919 if (DECL_NOT_REALLY_EXTERN (result) && !extern_p)
21920 permerror (input_location, "duplicate explicit instantiation of %q#D", result);
21921 /* If an "extern" explicit instantiation follows an ordinary
21922 explicit instantiation, the template is instantiated. */
21923 if (extern_p)
21924 return;
21926 else if (!DECL_IMPLICIT_INSTANTIATION (result))
21928 error ("no matching template for %qD found", result);
21929 return;
21931 else if (!DECL_TEMPLATE_INFO (result))
21933 permerror (input_location, "explicit instantiation of non-template %q#D", result);
21934 return;
21937 if (storage == NULL_TREE)
21939 else if (storage == ridpointers[(int) RID_EXTERN])
21941 if (!in_system_header_at (input_location) && (cxx_dialect == cxx98))
21942 pedwarn (input_location, OPT_Wpedantic,
21943 "ISO C++ 1998 forbids the use of %<extern%> on explicit "
21944 "instantiations");
21945 extern_p = 1;
21947 else
21948 error ("storage class %qD applied to template instantiation", storage);
21950 check_explicit_instantiation_namespace (result);
21951 mark_decl_instantiated (result, extern_p);
21952 if (! extern_p)
21953 instantiate_decl (result, /*defer_ok=*/true,
21954 /*expl_inst_class_mem_p=*/false);
21957 static void
21958 mark_class_instantiated (tree t, int extern_p)
21960 SET_CLASSTYPE_EXPLICIT_INSTANTIATION (t);
21961 SET_CLASSTYPE_INTERFACE_KNOWN (t);
21962 CLASSTYPE_INTERFACE_ONLY (t) = extern_p;
21963 TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (t)) = extern_p;
21964 if (! extern_p)
21966 CLASSTYPE_DEBUG_REQUESTED (t) = 1;
21967 rest_of_type_compilation (t, 1);
21971 /* Called from do_type_instantiation through binding_table_foreach to
21972 do recursive instantiation for the type bound in ENTRY. */
21973 static void
21974 bt_instantiate_type_proc (binding_entry entry, void *data)
21976 tree storage = *(tree *) data;
21978 if (MAYBE_CLASS_TYPE_P (entry->type)
21979 && !uses_template_parms (CLASSTYPE_TI_ARGS (entry->type)))
21980 do_type_instantiation (TYPE_MAIN_DECL (entry->type), storage, 0);
21983 /* Called from do_type_instantiation to instantiate a member
21984 (a member function or a static member variable) of an
21985 explicitly instantiated class template. */
21986 static void
21987 instantiate_class_member (tree decl, int extern_p)
21989 mark_decl_instantiated (decl, extern_p);
21990 if (! extern_p)
21991 instantiate_decl (decl, /*defer_ok=*/true,
21992 /*expl_inst_class_mem_p=*/true);
21995 /* Perform an explicit instantiation of template class T. STORAGE, if
21996 non-null, is the RID for extern, inline or static. COMPLAIN is
21997 nonzero if this is called from the parser, zero if called recursively,
21998 since the standard is unclear (as detailed below). */
22000 void
22001 do_type_instantiation (tree t, tree storage, tsubst_flags_t complain)
22003 int extern_p = 0;
22004 int nomem_p = 0;
22005 int static_p = 0;
22006 int previous_instantiation_extern_p = 0;
22008 if (TREE_CODE (t) == TYPE_DECL)
22009 t = TREE_TYPE (t);
22011 if (! CLASS_TYPE_P (t) || ! CLASSTYPE_TEMPLATE_INFO (t))
22013 tree tmpl =
22014 (TYPE_TEMPLATE_INFO (t)) ? TYPE_TI_TEMPLATE (t) : NULL;
22015 if (tmpl)
22016 error ("explicit instantiation of non-class template %qD", tmpl);
22017 else
22018 error ("explicit instantiation of non-template type %qT", t);
22019 return;
22022 complete_type (t);
22024 if (!COMPLETE_TYPE_P (t))
22026 if (complain & tf_error)
22027 error ("explicit instantiation of %q#T before definition of template",
22029 return;
22032 if (storage != NULL_TREE)
22034 if (!in_system_header_at (input_location))
22036 if (storage == ridpointers[(int) RID_EXTERN])
22038 if (cxx_dialect == cxx98)
22039 pedwarn (input_location, OPT_Wpedantic,
22040 "ISO C++ 1998 forbids the use of %<extern%> on "
22041 "explicit instantiations");
22043 else
22044 pedwarn (input_location, OPT_Wpedantic,
22045 "ISO C++ forbids the use of %qE"
22046 " on explicit instantiations", storage);
22049 if (storage == ridpointers[(int) RID_INLINE])
22050 nomem_p = 1;
22051 else if (storage == ridpointers[(int) RID_EXTERN])
22052 extern_p = 1;
22053 else if (storage == ridpointers[(int) RID_STATIC])
22054 static_p = 1;
22055 else
22057 error ("storage class %qD applied to template instantiation",
22058 storage);
22059 extern_p = 0;
22063 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (t))
22065 /* DR 259 [temp.spec].
22067 Both an explicit instantiation and a declaration of an explicit
22068 specialization shall not appear in a program unless the explicit
22069 instantiation follows a declaration of the explicit specialization.
22071 For a given set of template parameters, if an explicit
22072 instantiation of a template appears after a declaration of an
22073 explicit specialization for that template, the explicit
22074 instantiation has no effect. */
22075 return;
22077 else if (CLASSTYPE_EXPLICIT_INSTANTIATION (t))
22079 /* [temp.spec]
22081 No program shall explicitly instantiate any template more
22082 than once.
22084 If PREVIOUS_INSTANTIATION_EXTERN_P, then the first explicit
22085 instantiation was `extern'. If EXTERN_P then the second is.
22086 These cases are OK. */
22087 previous_instantiation_extern_p = CLASSTYPE_INTERFACE_ONLY (t);
22089 if (!previous_instantiation_extern_p && !extern_p
22090 && (complain & tf_error))
22091 permerror (input_location, "duplicate explicit instantiation of %q#T", t);
22093 /* If we've already instantiated the template, just return now. */
22094 if (!CLASSTYPE_INTERFACE_ONLY (t))
22095 return;
22098 check_explicit_instantiation_namespace (TYPE_NAME (t));
22099 mark_class_instantiated (t, extern_p);
22101 if (nomem_p)
22102 return;
22105 tree tmp;
22107 /* In contrast to implicit instantiation, where only the
22108 declarations, and not the definitions, of members are
22109 instantiated, we have here:
22111 [temp.explicit]
22113 The explicit instantiation of a class template specialization
22114 implies the instantiation of all of its members not
22115 previously explicitly specialized in the translation unit
22116 containing the explicit instantiation.
22118 Of course, we can't instantiate member template classes, since
22119 we don't have any arguments for them. Note that the standard
22120 is unclear on whether the instantiation of the members are
22121 *explicit* instantiations or not. However, the most natural
22122 interpretation is that it should be an explicit instantiation. */
22124 if (! static_p)
22125 for (tmp = TYPE_METHODS (t); tmp; tmp = DECL_CHAIN (tmp))
22126 if (TREE_CODE (tmp) == FUNCTION_DECL
22127 && DECL_TEMPLATE_INSTANTIATION (tmp)
22128 && user_provided_p (tmp))
22129 instantiate_class_member (tmp, extern_p);
22131 for (tmp = TYPE_FIELDS (t); tmp; tmp = DECL_CHAIN (tmp))
22132 if (VAR_P (tmp) && DECL_TEMPLATE_INSTANTIATION (tmp))
22133 instantiate_class_member (tmp, extern_p);
22135 if (CLASSTYPE_NESTED_UTDS (t))
22136 binding_table_foreach (CLASSTYPE_NESTED_UTDS (t),
22137 bt_instantiate_type_proc, &storage);
22141 /* Given a function DECL, which is a specialization of TMPL, modify
22142 DECL to be a re-instantiation of TMPL with the same template
22143 arguments. TMPL should be the template into which tsubst'ing
22144 should occur for DECL, not the most general template.
22146 One reason for doing this is a scenario like this:
22148 template <class T>
22149 void f(const T&, int i);
22151 void g() { f(3, 7); }
22153 template <class T>
22154 void f(const T& t, const int i) { }
22156 Note that when the template is first instantiated, with
22157 instantiate_template, the resulting DECL will have no name for the
22158 first parameter, and the wrong type for the second. So, when we go
22159 to instantiate the DECL, we regenerate it. */
22161 static void
22162 regenerate_decl_from_template (tree decl, tree tmpl, tree args)
22164 /* The arguments used to instantiate DECL, from the most general
22165 template. */
22166 tree code_pattern;
22168 code_pattern = DECL_TEMPLATE_RESULT (tmpl);
22170 /* Make sure that we can see identifiers, and compute access
22171 correctly. */
22172 push_access_scope (decl);
22174 if (TREE_CODE (decl) == FUNCTION_DECL)
22176 tree decl_parm;
22177 tree pattern_parm;
22178 tree specs;
22179 int args_depth;
22180 int parms_depth;
22182 args_depth = TMPL_ARGS_DEPTH (args);
22183 parms_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
22184 if (args_depth > parms_depth)
22185 args = get_innermost_template_args (args, parms_depth);
22187 specs = tsubst_exception_specification (TREE_TYPE (code_pattern),
22188 args, tf_error, NULL_TREE,
22189 /*defer_ok*/false);
22190 if (specs && specs != error_mark_node)
22191 TREE_TYPE (decl) = build_exception_variant (TREE_TYPE (decl),
22192 specs);
22194 /* Merge parameter declarations. */
22195 decl_parm = skip_artificial_parms_for (decl,
22196 DECL_ARGUMENTS (decl));
22197 pattern_parm
22198 = skip_artificial_parms_for (code_pattern,
22199 DECL_ARGUMENTS (code_pattern));
22200 while (decl_parm && !DECL_PACK_P (pattern_parm))
22202 tree parm_type;
22203 tree attributes;
22205 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
22206 DECL_NAME (decl_parm) = DECL_NAME (pattern_parm);
22207 parm_type = tsubst (TREE_TYPE (pattern_parm), args, tf_error,
22208 NULL_TREE);
22209 parm_type = type_decays_to (parm_type);
22210 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
22211 TREE_TYPE (decl_parm) = parm_type;
22212 attributes = DECL_ATTRIBUTES (pattern_parm);
22213 if (DECL_ATTRIBUTES (decl_parm) != attributes)
22215 DECL_ATTRIBUTES (decl_parm) = attributes;
22216 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
22218 decl_parm = DECL_CHAIN (decl_parm);
22219 pattern_parm = DECL_CHAIN (pattern_parm);
22221 /* Merge any parameters that match with the function parameter
22222 pack. */
22223 if (pattern_parm && DECL_PACK_P (pattern_parm))
22225 int i, len;
22226 tree expanded_types;
22227 /* Expand the TYPE_PACK_EXPANSION that provides the types for
22228 the parameters in this function parameter pack. */
22229 expanded_types = tsubst_pack_expansion (TREE_TYPE (pattern_parm),
22230 args, tf_error, NULL_TREE);
22231 len = TREE_VEC_LENGTH (expanded_types);
22232 for (i = 0; i < len; i++)
22234 tree parm_type;
22235 tree attributes;
22237 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
22238 /* Rename the parameter to include the index. */
22239 DECL_NAME (decl_parm) =
22240 make_ith_pack_parameter_name (DECL_NAME (pattern_parm), i);
22241 parm_type = TREE_VEC_ELT (expanded_types, i);
22242 parm_type = type_decays_to (parm_type);
22243 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
22244 TREE_TYPE (decl_parm) = parm_type;
22245 attributes = DECL_ATTRIBUTES (pattern_parm);
22246 if (DECL_ATTRIBUTES (decl_parm) != attributes)
22248 DECL_ATTRIBUTES (decl_parm) = attributes;
22249 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
22251 decl_parm = DECL_CHAIN (decl_parm);
22254 /* Merge additional specifiers from the CODE_PATTERN. */
22255 if (DECL_DECLARED_INLINE_P (code_pattern)
22256 && !DECL_DECLARED_INLINE_P (decl))
22257 DECL_DECLARED_INLINE_P (decl) = 1;
22259 else if (VAR_P (decl))
22261 DECL_INITIAL (decl) =
22262 tsubst_expr (DECL_INITIAL (code_pattern), args,
22263 tf_error, DECL_TI_TEMPLATE (decl),
22264 /*integral_constant_expression_p=*/false);
22265 if (VAR_HAD_UNKNOWN_BOUND (decl))
22266 TREE_TYPE (decl) = tsubst (TREE_TYPE (code_pattern), args,
22267 tf_error, DECL_TI_TEMPLATE (decl));
22269 else
22270 gcc_unreachable ();
22272 pop_access_scope (decl);
22275 /* Return the TEMPLATE_DECL into which DECL_TI_ARGS(DECL) should be
22276 substituted to get DECL. */
22278 tree
22279 template_for_substitution (tree decl)
22281 tree tmpl = DECL_TI_TEMPLATE (decl);
22283 /* Set TMPL to the template whose DECL_TEMPLATE_RESULT is the pattern
22284 for the instantiation. This is not always the most general
22285 template. Consider, for example:
22287 template <class T>
22288 struct S { template <class U> void f();
22289 template <> void f<int>(); };
22291 and an instantiation of S<double>::f<int>. We want TD to be the
22292 specialization S<T>::f<int>, not the more general S<T>::f<U>. */
22293 while (/* An instantiation cannot have a definition, so we need a
22294 more general template. */
22295 DECL_TEMPLATE_INSTANTIATION (tmpl)
22296 /* We must also deal with friend templates. Given:
22298 template <class T> struct S {
22299 template <class U> friend void f() {};
22302 S<int>::f<U> say, is not an instantiation of S<T>::f<U>,
22303 so far as the language is concerned, but that's still
22304 where we get the pattern for the instantiation from. On
22305 other hand, if the definition comes outside the class, say:
22307 template <class T> struct S {
22308 template <class U> friend void f();
22310 template <class U> friend void f() {}
22312 we don't need to look any further. That's what the check for
22313 DECL_INITIAL is for. */
22314 || (TREE_CODE (decl) == FUNCTION_DECL
22315 && DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (tmpl)
22316 && !DECL_INITIAL (DECL_TEMPLATE_RESULT (tmpl))))
22318 /* The present template, TD, should not be a definition. If it
22319 were a definition, we should be using it! Note that we
22320 cannot restructure the loop to just keep going until we find
22321 a template with a definition, since that might go too far if
22322 a specialization was declared, but not defined. */
22324 /* Fetch the more general template. */
22325 tmpl = DECL_TI_TEMPLATE (tmpl);
22328 return tmpl;
22331 /* Returns true if we need to instantiate this template instance even if we
22332 know we aren't going to emit it. */
22334 bool
22335 always_instantiate_p (tree decl)
22337 /* We always instantiate inline functions so that we can inline them. An
22338 explicit instantiation declaration prohibits implicit instantiation of
22339 non-inline functions. With high levels of optimization, we would
22340 normally inline non-inline functions -- but we're not allowed to do
22341 that for "extern template" functions. Therefore, we check
22342 DECL_DECLARED_INLINE_P, rather than possibly_inlined_p. */
22343 return ((TREE_CODE (decl) == FUNCTION_DECL
22344 && (DECL_DECLARED_INLINE_P (decl)
22345 || type_uses_auto (TREE_TYPE (TREE_TYPE (decl)))))
22346 /* And we need to instantiate static data members so that
22347 their initializers are available in integral constant
22348 expressions. */
22349 || (VAR_P (decl)
22350 && decl_maybe_constant_var_p (decl)));
22353 /* If FN has a noexcept-specifier that hasn't been instantiated yet,
22354 instantiate it now, modifying TREE_TYPE (fn). */
22356 void
22357 maybe_instantiate_noexcept (tree fn)
22359 tree fntype, spec, noex, clone;
22361 /* Don't instantiate a noexcept-specification from template context. */
22362 if (processing_template_decl)
22363 return;
22365 if (DECL_CLONED_FUNCTION_P (fn))
22366 fn = DECL_CLONED_FUNCTION (fn);
22367 fntype = TREE_TYPE (fn);
22368 spec = TYPE_RAISES_EXCEPTIONS (fntype);
22370 if (!spec || !TREE_PURPOSE (spec))
22371 return;
22373 noex = TREE_PURPOSE (spec);
22375 if (TREE_CODE (noex) == DEFERRED_NOEXCEPT)
22377 if (DEFERRED_NOEXCEPT_PATTERN (noex) == NULL_TREE)
22378 spec = get_defaulted_eh_spec (fn);
22379 else if (push_tinst_level (fn))
22381 push_access_scope (fn);
22382 push_deferring_access_checks (dk_no_deferred);
22383 input_location = DECL_SOURCE_LOCATION (fn);
22384 noex = tsubst_copy_and_build (DEFERRED_NOEXCEPT_PATTERN (noex),
22385 DEFERRED_NOEXCEPT_ARGS (noex),
22386 tf_warning_or_error, fn,
22387 /*function_p=*/false,
22388 /*integral_constant_expression_p=*/true);
22389 pop_deferring_access_checks ();
22390 pop_access_scope (fn);
22391 pop_tinst_level ();
22392 spec = build_noexcept_spec (noex, tf_warning_or_error);
22393 if (spec == error_mark_node)
22394 spec = noexcept_false_spec;
22396 else
22397 spec = noexcept_false_spec;
22399 TREE_TYPE (fn) = build_exception_variant (fntype, spec);
22402 FOR_EACH_CLONE (clone, fn)
22404 if (TREE_TYPE (clone) == fntype)
22405 TREE_TYPE (clone) = TREE_TYPE (fn);
22406 else
22407 TREE_TYPE (clone) = build_exception_variant (TREE_TYPE (clone), spec);
22411 /* Produce the definition of D, a _DECL generated from a template. If
22412 DEFER_OK is true, then we don't have to actually do the
22413 instantiation now; we just have to do it sometime. Normally it is
22414 an error if this is an explicit instantiation but D is undefined.
22415 EXPL_INST_CLASS_MEM_P is true iff D is a member of an explicitly
22416 instantiated class template. */
22418 tree
22419 instantiate_decl (tree d, bool defer_ok, bool expl_inst_class_mem_p)
22421 tree tmpl = DECL_TI_TEMPLATE (d);
22422 tree gen_args;
22423 tree args;
22424 tree td;
22425 tree code_pattern;
22426 tree spec;
22427 tree gen_tmpl;
22428 bool pattern_defined;
22429 location_t saved_loc = input_location;
22430 int saved_unevaluated_operand = cp_unevaluated_operand;
22431 int saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
22432 bool external_p;
22433 bool deleted_p;
22435 /* This function should only be used to instantiate templates for
22436 functions and static member variables. */
22437 gcc_assert (VAR_OR_FUNCTION_DECL_P (d));
22439 /* A concept is never instantiated. */
22440 gcc_assert (!DECL_DECLARED_CONCEPT_P (d));
22442 /* Variables are never deferred; if instantiation is required, they
22443 are instantiated right away. That allows for better code in the
22444 case that an expression refers to the value of the variable --
22445 if the variable has a constant value the referring expression can
22446 take advantage of that fact. */
22447 if (VAR_P (d))
22448 defer_ok = false;
22450 /* Don't instantiate cloned functions. Instead, instantiate the
22451 functions they cloned. */
22452 if (TREE_CODE (d) == FUNCTION_DECL && DECL_CLONED_FUNCTION_P (d))
22453 d = DECL_CLONED_FUNCTION (d);
22455 if (DECL_TEMPLATE_INSTANTIATED (d)
22456 || (TREE_CODE (d) == FUNCTION_DECL
22457 && DECL_DEFAULTED_FN (d) && DECL_INITIAL (d))
22458 || DECL_TEMPLATE_SPECIALIZATION (d))
22459 /* D has already been instantiated or explicitly specialized, so
22460 there's nothing for us to do here.
22462 It might seem reasonable to check whether or not D is an explicit
22463 instantiation, and, if so, stop here. But when an explicit
22464 instantiation is deferred until the end of the compilation,
22465 DECL_EXPLICIT_INSTANTIATION is set, even though we still need to do
22466 the instantiation. */
22467 return d;
22469 /* Check to see whether we know that this template will be
22470 instantiated in some other file, as with "extern template"
22471 extension. */
22472 external_p = (DECL_INTERFACE_KNOWN (d) && DECL_REALLY_EXTERN (d));
22474 /* In general, we do not instantiate such templates. */
22475 if (external_p && !always_instantiate_p (d))
22476 return d;
22478 gen_tmpl = most_general_template (tmpl);
22479 gen_args = DECL_TI_ARGS (d);
22481 if (tmpl != gen_tmpl)
22482 /* We should already have the extra args. */
22483 gcc_assert (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (gen_tmpl))
22484 == TMPL_ARGS_DEPTH (gen_args));
22485 /* And what's in the hash table should match D. */
22486 gcc_assert ((spec = retrieve_specialization (gen_tmpl, gen_args, 0)) == d
22487 || spec == NULL_TREE);
22489 /* This needs to happen before any tsubsting. */
22490 if (! push_tinst_level (d))
22491 return d;
22493 timevar_push (TV_TEMPLATE_INST);
22495 /* Set TD to the template whose DECL_TEMPLATE_RESULT is the pattern
22496 for the instantiation. */
22497 td = template_for_substitution (d);
22498 args = gen_args;
22500 if (VAR_P (d))
22502 /* Look up an explicit specialization, if any. */
22503 tree tid = lookup_template_variable (gen_tmpl, gen_args);
22504 tree elt = most_specialized_partial_spec (tid, tf_warning_or_error);
22505 if (elt && elt != error_mark_node)
22507 td = TREE_VALUE (elt);
22508 args = TREE_PURPOSE (elt);
22512 code_pattern = DECL_TEMPLATE_RESULT (td);
22514 /* We should never be trying to instantiate a member of a class
22515 template or partial specialization. */
22516 gcc_assert (d != code_pattern);
22518 if ((DECL_NAMESPACE_SCOPE_P (d) && !DECL_INITIALIZED_IN_CLASS_P (d))
22519 || DECL_TEMPLATE_SPECIALIZATION (td))
22520 /* In the case of a friend template whose definition is provided
22521 outside the class, we may have too many arguments. Drop the
22522 ones we don't need. The same is true for specializations. */
22523 args = get_innermost_template_args
22524 (args, TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (td)));
22526 if (TREE_CODE (d) == FUNCTION_DECL)
22528 deleted_p = DECL_DELETED_FN (code_pattern);
22529 pattern_defined = ((DECL_SAVED_TREE (code_pattern) != NULL_TREE
22530 && DECL_INITIAL (code_pattern) != error_mark_node)
22531 || DECL_DEFAULTED_OUTSIDE_CLASS_P (code_pattern)
22532 || deleted_p);
22534 else
22536 deleted_p = false;
22537 if (DECL_CLASS_SCOPE_P (code_pattern))
22538 pattern_defined = (! DECL_IN_AGGR_P (code_pattern)
22539 || DECL_INLINE_VAR_P (code_pattern));
22540 else
22541 pattern_defined = ! DECL_EXTERNAL (code_pattern);
22544 /* We may be in the middle of deferred access check. Disable it now. */
22545 push_deferring_access_checks (dk_no_deferred);
22547 /* Unless an explicit instantiation directive has already determined
22548 the linkage of D, remember that a definition is available for
22549 this entity. */
22550 if (pattern_defined
22551 && !DECL_INTERFACE_KNOWN (d)
22552 && !DECL_NOT_REALLY_EXTERN (d))
22553 mark_definable (d);
22555 DECL_SOURCE_LOCATION (td) = DECL_SOURCE_LOCATION (code_pattern);
22556 DECL_SOURCE_LOCATION (d) = DECL_SOURCE_LOCATION (code_pattern);
22557 input_location = DECL_SOURCE_LOCATION (d);
22559 /* If D is a member of an explicitly instantiated class template,
22560 and no definition is available, treat it like an implicit
22561 instantiation. */
22562 if (!pattern_defined && expl_inst_class_mem_p
22563 && DECL_EXPLICIT_INSTANTIATION (d))
22565 /* Leave linkage flags alone on instantiations with anonymous
22566 visibility. */
22567 if (TREE_PUBLIC (d))
22569 DECL_NOT_REALLY_EXTERN (d) = 0;
22570 DECL_INTERFACE_KNOWN (d) = 0;
22572 SET_DECL_IMPLICIT_INSTANTIATION (d);
22575 /* Defer all other templates, unless we have been explicitly
22576 forbidden from doing so. */
22577 if (/* If there is no definition, we cannot instantiate the
22578 template. */
22579 ! pattern_defined
22580 /* If it's OK to postpone instantiation, do so. */
22581 || defer_ok
22582 /* If this is a static data member that will be defined
22583 elsewhere, we don't want to instantiate the entire data
22584 member, but we do want to instantiate the initializer so that
22585 we can substitute that elsewhere. */
22586 || (external_p && VAR_P (d))
22587 /* Handle here a deleted function too, avoid generating
22588 its body (c++/61080). */
22589 || deleted_p)
22591 /* The definition of the static data member is now required so
22592 we must substitute the initializer. */
22593 if (VAR_P (d)
22594 && !DECL_INITIAL (d)
22595 && DECL_INITIAL (code_pattern))
22597 tree ns;
22598 tree init;
22599 bool const_init = false;
22600 bool enter_context = DECL_CLASS_SCOPE_P (d);
22602 ns = decl_namespace_context (d);
22603 push_nested_namespace (ns);
22604 if (enter_context)
22605 push_nested_class (DECL_CONTEXT (d));
22606 init = tsubst_expr (DECL_INITIAL (code_pattern),
22607 args,
22608 tf_warning_or_error, NULL_TREE,
22609 /*integral_constant_expression_p=*/false);
22610 /* If instantiating the initializer involved instantiating this
22611 again, don't call cp_finish_decl twice. */
22612 if (!DECL_INITIAL (d))
22614 /* Make sure the initializer is still constant, in case of
22615 circular dependency (template/instantiate6.C). */
22616 const_init
22617 = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
22618 cp_finish_decl (d, init, /*init_const_expr_p=*/const_init,
22619 /*asmspec_tree=*/NULL_TREE,
22620 LOOKUP_ONLYCONVERTING);
22622 if (enter_context)
22623 pop_nested_class ();
22624 pop_nested_namespace (ns);
22627 /* We restore the source position here because it's used by
22628 add_pending_template. */
22629 input_location = saved_loc;
22631 if (at_eof && !pattern_defined
22632 && DECL_EXPLICIT_INSTANTIATION (d)
22633 && DECL_NOT_REALLY_EXTERN (d))
22634 /* [temp.explicit]
22636 The definition of a non-exported function template, a
22637 non-exported member function template, or a non-exported
22638 member function or static data member of a class template
22639 shall be present in every translation unit in which it is
22640 explicitly instantiated. */
22641 permerror (input_location, "explicit instantiation of %qD "
22642 "but no definition available", d);
22644 /* If we're in unevaluated context, we just wanted to get the
22645 constant value; this isn't an odr use, so don't queue
22646 a full instantiation. */
22647 if (cp_unevaluated_operand != 0)
22648 goto out;
22649 /* ??? Historically, we have instantiated inline functions, even
22650 when marked as "extern template". */
22651 if (!(external_p && VAR_P (d)))
22652 add_pending_template (d);
22653 goto out;
22655 /* Tell the repository that D is available in this translation unit
22656 -- and see if it is supposed to be instantiated here. */
22657 if (TREE_PUBLIC (d) && !DECL_REALLY_EXTERN (d) && !repo_emit_p (d))
22659 /* In a PCH file, despite the fact that the repository hasn't
22660 requested instantiation in the PCH it is still possible that
22661 an instantiation will be required in a file that includes the
22662 PCH. */
22663 if (pch_file)
22664 add_pending_template (d);
22665 /* Instantiate inline functions so that the inliner can do its
22666 job, even though we'll not be emitting a copy of this
22667 function. */
22668 if (!(TREE_CODE (d) == FUNCTION_DECL && possibly_inlined_p (d)))
22669 goto out;
22672 bool push_to_top, nested;
22673 tree fn_context;
22674 fn_context = decl_function_context (d);
22675 nested = current_function_decl != NULL_TREE;
22676 push_to_top = !(nested && fn_context == current_function_decl);
22678 vec<tree> omp_privatization_save;
22679 if (nested)
22680 save_omp_privatization_clauses (omp_privatization_save);
22682 if (push_to_top)
22683 push_to_top_level ();
22684 else
22686 push_function_context ();
22687 cp_unevaluated_operand = 0;
22688 c_inhibit_evaluation_warnings = 0;
22691 /* Mark D as instantiated so that recursive calls to
22692 instantiate_decl do not try to instantiate it again. */
22693 DECL_TEMPLATE_INSTANTIATED (d) = 1;
22695 /* Regenerate the declaration in case the template has been modified
22696 by a subsequent redeclaration. */
22697 regenerate_decl_from_template (d, td, args);
22699 /* We already set the file and line above. Reset them now in case
22700 they changed as a result of calling regenerate_decl_from_template. */
22701 input_location = DECL_SOURCE_LOCATION (d);
22703 if (VAR_P (d))
22705 tree init;
22706 bool const_init = false;
22708 /* Clear out DECL_RTL; whatever was there before may not be right
22709 since we've reset the type of the declaration. */
22710 SET_DECL_RTL (d, NULL);
22711 DECL_IN_AGGR_P (d) = 0;
22713 /* The initializer is placed in DECL_INITIAL by
22714 regenerate_decl_from_template so we don't need to
22715 push/pop_access_scope again here. Pull it out so that
22716 cp_finish_decl can process it. */
22717 init = DECL_INITIAL (d);
22718 DECL_INITIAL (d) = NULL_TREE;
22719 DECL_INITIALIZED_P (d) = 0;
22721 /* Clear DECL_EXTERNAL so that cp_finish_decl will process the
22722 initializer. That function will defer actual emission until
22723 we have a chance to determine linkage. */
22724 DECL_EXTERNAL (d) = 0;
22726 /* Enter the scope of D so that access-checking works correctly. */
22727 bool enter_context = DECL_CLASS_SCOPE_P (d);
22728 if (enter_context)
22729 push_nested_class (DECL_CONTEXT (d));
22731 const_init = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
22732 cp_finish_decl (d, init, const_init, NULL_TREE, 0);
22734 if (enter_context)
22735 pop_nested_class ();
22737 if (variable_template_p (gen_tmpl))
22738 note_variable_template_instantiation (d);
22740 else if (TREE_CODE (d) == FUNCTION_DECL && DECL_DEFAULTED_FN (code_pattern))
22741 synthesize_method (d);
22742 else if (TREE_CODE (d) == FUNCTION_DECL)
22744 hash_map<tree, tree> *saved_local_specializations;
22745 tree tmpl_parm;
22746 tree spec_parm;
22747 tree block = NULL_TREE;
22748 tree lambda_ctx = NULL_TREE;
22750 /* Save away the current list, in case we are instantiating one
22751 template from within the body of another. */
22752 saved_local_specializations = local_specializations;
22754 /* Set up the list of local specializations. */
22755 local_specializations = new hash_map<tree, tree>;
22757 /* Set up context. */
22758 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern)
22759 && TREE_CODE (DECL_CONTEXT (code_pattern)) == FUNCTION_DECL)
22760 block = push_stmt_list ();
22761 else
22763 if (push_to_top && LAMBDA_FUNCTION_P (d))
22765 /* When instantiating a lambda's templated function
22766 operator, we need to push the non-lambda class scope
22767 of the lambda itself so that the nested function
22768 stack is sufficiently correct to deal with this
22769 capture. */
22770 lambda_ctx = DECL_CONTEXT (d);
22772 lambda_ctx = decl_type_context (TYPE_NAME (lambda_ctx));
22773 while (lambda_ctx && LAMBDA_TYPE_P (lambda_ctx));
22774 if (lambda_ctx)
22775 push_nested_class (lambda_ctx);
22777 start_preparsed_function (d, NULL_TREE, SF_PRE_PARSED);
22780 /* Some typedefs referenced from within the template code need to be
22781 access checked at template instantiation time, i.e now. These
22782 types were added to the template at parsing time. Let's get those
22783 and perform the access checks then. */
22784 perform_typedefs_access_check (DECL_TEMPLATE_RESULT (td),
22785 args);
22787 /* Create substitution entries for the parameters. */
22788 tmpl_parm = DECL_ARGUMENTS (code_pattern);
22789 spec_parm = DECL_ARGUMENTS (d);
22790 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (d))
22792 register_local_specialization (spec_parm, tmpl_parm);
22793 spec_parm = skip_artificial_parms_for (d, spec_parm);
22794 tmpl_parm = skip_artificial_parms_for (code_pattern, tmpl_parm);
22796 for (; tmpl_parm; tmpl_parm = DECL_CHAIN (tmpl_parm))
22798 if (!DECL_PACK_P (tmpl_parm))
22800 register_local_specialization (spec_parm, tmpl_parm);
22801 spec_parm = DECL_CHAIN (spec_parm);
22803 else
22805 /* Register the (value) argument pack as a specialization of
22806 TMPL_PARM, then move on. */
22807 tree argpack = extract_fnparm_pack (tmpl_parm, &spec_parm);
22808 register_local_specialization (argpack, tmpl_parm);
22811 gcc_assert (!spec_parm);
22813 /* Substitute into the body of the function. */
22814 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern))
22815 tsubst_omp_udr (DECL_SAVED_TREE (code_pattern), args,
22816 tf_warning_or_error, tmpl);
22817 else
22819 tsubst_expr (DECL_SAVED_TREE (code_pattern), args,
22820 tf_warning_or_error, tmpl,
22821 /*integral_constant_expression_p=*/false);
22823 /* Set the current input_location to the end of the function
22824 so that finish_function knows where we are. */
22825 input_location
22826 = DECL_STRUCT_FUNCTION (code_pattern)->function_end_locus;
22828 /* Remember if we saw an infinite loop in the template. */
22829 current_function_infinite_loop
22830 = DECL_STRUCT_FUNCTION (code_pattern)->language->infinite_loop;
22833 /* We don't need the local specializations any more. */
22834 delete local_specializations;
22835 local_specializations = saved_local_specializations;
22837 /* Finish the function. */
22838 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern)
22839 && TREE_CODE (DECL_CONTEXT (code_pattern)) == FUNCTION_DECL)
22840 DECL_SAVED_TREE (d) = pop_stmt_list (block);
22841 else
22843 d = finish_function (0);
22844 expand_or_defer_fn (d);
22846 if (lambda_ctx)
22847 pop_nested_class ();
22849 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern))
22850 cp_check_omp_declare_reduction (d);
22853 /* We're not deferring instantiation any more. */
22854 TI_PENDING_TEMPLATE_FLAG (DECL_TEMPLATE_INFO (d)) = 0;
22856 if (push_to_top)
22857 pop_from_top_level ();
22858 else
22859 pop_function_context ();
22861 if (nested)
22862 restore_omp_privatization_clauses (omp_privatization_save);
22864 out:
22865 pop_deferring_access_checks ();
22866 timevar_pop (TV_TEMPLATE_INST);
22867 pop_tinst_level ();
22868 input_location = saved_loc;
22869 cp_unevaluated_operand = saved_unevaluated_operand;
22870 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
22872 return d;
22875 /* Run through the list of templates that we wish we could
22876 instantiate, and instantiate any we can. RETRIES is the
22877 number of times we retry pending template instantiation. */
22879 void
22880 instantiate_pending_templates (int retries)
22882 int reconsider;
22883 location_t saved_loc = input_location;
22885 /* Instantiating templates may trigger vtable generation. This in turn
22886 may require further template instantiations. We place a limit here
22887 to avoid infinite loop. */
22888 if (pending_templates && retries >= max_tinst_depth)
22890 tree decl = pending_templates->tinst->decl;
22892 fatal_error (input_location,
22893 "template instantiation depth exceeds maximum of %d"
22894 " instantiating %q+D, possibly from virtual table generation"
22895 " (use -ftemplate-depth= to increase the maximum)",
22896 max_tinst_depth, decl);
22897 if (TREE_CODE (decl) == FUNCTION_DECL)
22898 /* Pretend that we defined it. */
22899 DECL_INITIAL (decl) = error_mark_node;
22900 return;
22905 struct pending_template **t = &pending_templates;
22906 struct pending_template *last = NULL;
22907 reconsider = 0;
22908 while (*t)
22910 tree instantiation = reopen_tinst_level ((*t)->tinst);
22911 bool complete = false;
22913 if (TYPE_P (instantiation))
22915 tree fn;
22917 if (!COMPLETE_TYPE_P (instantiation))
22919 instantiate_class_template (instantiation);
22920 if (CLASSTYPE_TEMPLATE_INSTANTIATION (instantiation))
22921 for (fn = TYPE_METHODS (instantiation);
22923 fn = TREE_CHAIN (fn))
22924 if (! DECL_ARTIFICIAL (fn))
22925 instantiate_decl (fn,
22926 /*defer_ok=*/false,
22927 /*expl_inst_class_mem_p=*/false);
22928 if (COMPLETE_TYPE_P (instantiation))
22929 reconsider = 1;
22932 complete = COMPLETE_TYPE_P (instantiation);
22934 else
22936 if (!DECL_TEMPLATE_SPECIALIZATION (instantiation)
22937 && !DECL_TEMPLATE_INSTANTIATED (instantiation))
22939 instantiation
22940 = instantiate_decl (instantiation,
22941 /*defer_ok=*/false,
22942 /*expl_inst_class_mem_p=*/false);
22943 if (DECL_TEMPLATE_INSTANTIATED (instantiation))
22944 reconsider = 1;
22947 complete = (DECL_TEMPLATE_SPECIALIZATION (instantiation)
22948 || DECL_TEMPLATE_INSTANTIATED (instantiation));
22951 if (complete)
22952 /* If INSTANTIATION has been instantiated, then we don't
22953 need to consider it again in the future. */
22954 *t = (*t)->next;
22955 else
22957 last = *t;
22958 t = &(*t)->next;
22960 tinst_depth = 0;
22961 current_tinst_level = NULL;
22963 last_pending_template = last;
22965 while (reconsider);
22967 input_location = saved_loc;
22970 /* Substitute ARGVEC into T, which is a list of initializers for
22971 either base class or a non-static data member. The TREE_PURPOSEs
22972 are DECLs, and the TREE_VALUEs are the initializer values. Used by
22973 instantiate_decl. */
22975 static tree
22976 tsubst_initializer_list (tree t, tree argvec)
22978 tree inits = NULL_TREE;
22980 for (; t; t = TREE_CHAIN (t))
22982 tree decl;
22983 tree init;
22984 tree expanded_bases = NULL_TREE;
22985 tree expanded_arguments = NULL_TREE;
22986 int i, len = 1;
22988 if (TREE_CODE (TREE_PURPOSE (t)) == TYPE_PACK_EXPANSION)
22990 tree expr;
22991 tree arg;
22993 /* Expand the base class expansion type into separate base
22994 classes. */
22995 expanded_bases = tsubst_pack_expansion (TREE_PURPOSE (t), argvec,
22996 tf_warning_or_error,
22997 NULL_TREE);
22998 if (expanded_bases == error_mark_node)
22999 continue;
23001 /* We'll be building separate TREE_LISTs of arguments for
23002 each base. */
23003 len = TREE_VEC_LENGTH (expanded_bases);
23004 expanded_arguments = make_tree_vec (len);
23005 for (i = 0; i < len; i++)
23006 TREE_VEC_ELT (expanded_arguments, i) = NULL_TREE;
23008 /* Build a dummy EXPR_PACK_EXPANSION that will be used to
23009 expand each argument in the TREE_VALUE of t. */
23010 expr = make_node (EXPR_PACK_EXPANSION);
23011 PACK_EXPANSION_LOCAL_P (expr) = true;
23012 PACK_EXPANSION_PARAMETER_PACKS (expr) =
23013 PACK_EXPANSION_PARAMETER_PACKS (TREE_PURPOSE (t));
23015 if (TREE_VALUE (t) == void_type_node)
23016 /* VOID_TYPE_NODE is used to indicate
23017 value-initialization. */
23019 for (i = 0; i < len; i++)
23020 TREE_VEC_ELT (expanded_arguments, i) = void_type_node;
23022 else
23024 /* Substitute parameter packs into each argument in the
23025 TREE_LIST. */
23026 in_base_initializer = 1;
23027 for (arg = TREE_VALUE (t); arg; arg = TREE_CHAIN (arg))
23029 tree expanded_exprs;
23031 /* Expand the argument. */
23032 SET_PACK_EXPANSION_PATTERN (expr, TREE_VALUE (arg));
23033 expanded_exprs
23034 = tsubst_pack_expansion (expr, argvec,
23035 tf_warning_or_error,
23036 NULL_TREE);
23037 if (expanded_exprs == error_mark_node)
23038 continue;
23040 /* Prepend each of the expanded expressions to the
23041 corresponding TREE_LIST in EXPANDED_ARGUMENTS. */
23042 for (i = 0; i < len; i++)
23044 TREE_VEC_ELT (expanded_arguments, i) =
23045 tree_cons (NULL_TREE,
23046 TREE_VEC_ELT (expanded_exprs, i),
23047 TREE_VEC_ELT (expanded_arguments, i));
23050 in_base_initializer = 0;
23052 /* Reverse all of the TREE_LISTs in EXPANDED_ARGUMENTS,
23053 since we built them backwards. */
23054 for (i = 0; i < len; i++)
23056 TREE_VEC_ELT (expanded_arguments, i) =
23057 nreverse (TREE_VEC_ELT (expanded_arguments, i));
23062 for (i = 0; i < len; ++i)
23064 if (expanded_bases)
23066 decl = TREE_VEC_ELT (expanded_bases, i);
23067 decl = expand_member_init (decl);
23068 init = TREE_VEC_ELT (expanded_arguments, i);
23070 else
23072 tree tmp;
23073 decl = tsubst_copy (TREE_PURPOSE (t), argvec,
23074 tf_warning_or_error, NULL_TREE);
23076 decl = expand_member_init (decl);
23077 if (decl && !DECL_P (decl))
23078 in_base_initializer = 1;
23080 init = TREE_VALUE (t);
23081 tmp = init;
23082 if (init != void_type_node)
23083 init = tsubst_expr (init, argvec,
23084 tf_warning_or_error, NULL_TREE,
23085 /*integral_constant_expression_p=*/false);
23086 if (init == NULL_TREE && tmp != NULL_TREE)
23087 /* If we had an initializer but it instantiated to nothing,
23088 value-initialize the object. This will only occur when
23089 the initializer was a pack expansion where the parameter
23090 packs used in that expansion were of length zero. */
23091 init = void_type_node;
23092 in_base_initializer = 0;
23095 if (decl)
23097 init = build_tree_list (decl, init);
23098 TREE_CHAIN (init) = inits;
23099 inits = init;
23103 return inits;
23106 /* Set CURRENT_ACCESS_SPECIFIER based on the protection of DECL. */
23108 static void
23109 set_current_access_from_decl (tree decl)
23111 if (TREE_PRIVATE (decl))
23112 current_access_specifier = access_private_node;
23113 else if (TREE_PROTECTED (decl))
23114 current_access_specifier = access_protected_node;
23115 else
23116 current_access_specifier = access_public_node;
23119 /* Instantiate an enumerated type. TAG is the template type, NEWTAG
23120 is the instantiation (which should have been created with
23121 start_enum) and ARGS are the template arguments to use. */
23123 static void
23124 tsubst_enum (tree tag, tree newtag, tree args)
23126 tree e;
23128 if (SCOPED_ENUM_P (newtag))
23129 begin_scope (sk_scoped_enum, newtag);
23131 for (e = TYPE_VALUES (tag); e; e = TREE_CHAIN (e))
23133 tree value;
23134 tree decl;
23136 decl = TREE_VALUE (e);
23137 /* Note that in a template enum, the TREE_VALUE is the
23138 CONST_DECL, not the corresponding INTEGER_CST. */
23139 value = tsubst_expr (DECL_INITIAL (decl),
23140 args, tf_warning_or_error, NULL_TREE,
23141 /*integral_constant_expression_p=*/true);
23143 /* Give this enumeration constant the correct access. */
23144 set_current_access_from_decl (decl);
23146 /* Actually build the enumerator itself. Here we're assuming that
23147 enumerators can't have dependent attributes. */
23148 build_enumerator (DECL_NAME (decl), value, newtag,
23149 DECL_ATTRIBUTES (decl), DECL_SOURCE_LOCATION (decl));
23152 if (SCOPED_ENUM_P (newtag))
23153 finish_scope ();
23155 finish_enum_value_list (newtag);
23156 finish_enum (newtag);
23158 DECL_SOURCE_LOCATION (TYPE_NAME (newtag))
23159 = DECL_SOURCE_LOCATION (TYPE_NAME (tag));
23162 /* DECL is a FUNCTION_DECL that is a template specialization. Return
23163 its type -- but without substituting the innermost set of template
23164 arguments. So, innermost set of template parameters will appear in
23165 the type. */
23167 tree
23168 get_mostly_instantiated_function_type (tree decl)
23170 /* For a function, DECL_TI_TEMPLATE is partially instantiated. */
23171 return TREE_TYPE (DECL_TI_TEMPLATE (decl));
23174 /* Return truthvalue if we're processing a template different from
23175 the last one involved in diagnostics. */
23176 bool
23177 problematic_instantiation_changed (void)
23179 return current_tinst_level != last_error_tinst_level;
23182 /* Remember current template involved in diagnostics. */
23183 void
23184 record_last_problematic_instantiation (void)
23186 last_error_tinst_level = current_tinst_level;
23189 struct tinst_level *
23190 current_instantiation (void)
23192 return current_tinst_level;
23195 /* Return TRUE if current_function_decl is being instantiated, false
23196 otherwise. */
23198 bool
23199 instantiating_current_function_p (void)
23201 return (current_instantiation ()
23202 && current_instantiation ()->decl == current_function_decl);
23205 /* [temp.param] Check that template non-type parm TYPE is of an allowable
23206 type. Return zero for ok, nonzero for disallowed. Issue error and
23207 warning messages under control of COMPLAIN. */
23209 static int
23210 invalid_nontype_parm_type_p (tree type, tsubst_flags_t complain)
23212 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
23213 return 0;
23214 else if (POINTER_TYPE_P (type))
23215 return 0;
23216 else if (TYPE_PTRMEM_P (type))
23217 return 0;
23218 else if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
23219 return 0;
23220 else if (TREE_CODE (type) == TYPENAME_TYPE)
23221 return 0;
23222 else if (TREE_CODE (type) == DECLTYPE_TYPE)
23223 return 0;
23224 else if (TREE_CODE (type) == NULLPTR_TYPE)
23225 return 0;
23226 /* A bound template template parm could later be instantiated to have a valid
23227 nontype parm type via an alias template. */
23228 else if (cxx_dialect >= cxx11
23229 && TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
23230 return 0;
23232 if (complain & tf_error)
23234 if (type == error_mark_node)
23235 inform (input_location, "invalid template non-type parameter");
23236 else
23237 error ("%q#T is not a valid type for a template non-type parameter",
23238 type);
23240 return 1;
23243 /* Returns TRUE if TYPE is dependent, in the sense of [temp.dep.type].
23244 Assumes that TYPE really is a type, and not the ERROR_MARK_NODE.*/
23246 static bool
23247 dependent_type_p_r (tree type)
23249 tree scope;
23251 /* [temp.dep.type]
23253 A type is dependent if it is:
23255 -- a template parameter. Template template parameters are types
23256 for us (since TYPE_P holds true for them) so we handle
23257 them here. */
23258 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
23259 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM)
23260 return true;
23261 /* -- a qualified-id with a nested-name-specifier which contains a
23262 class-name that names a dependent type or whose unqualified-id
23263 names a dependent type. */
23264 if (TREE_CODE (type) == TYPENAME_TYPE)
23265 return true;
23267 /* An alias template specialization can be dependent even if the
23268 resulting type is not. */
23269 if (dependent_alias_template_spec_p (type))
23270 return true;
23272 /* -- a cv-qualified type where the cv-unqualified type is
23273 dependent.
23274 No code is necessary for this bullet; the code below handles
23275 cv-qualified types, and we don't want to strip aliases with
23276 TYPE_MAIN_VARIANT because of DR 1558. */
23277 /* -- a compound type constructed from any dependent type. */
23278 if (TYPE_PTRMEM_P (type))
23279 return (dependent_type_p (TYPE_PTRMEM_CLASS_TYPE (type))
23280 || dependent_type_p (TYPE_PTRMEM_POINTED_TO_TYPE
23281 (type)));
23282 else if (TYPE_PTR_P (type)
23283 || TREE_CODE (type) == REFERENCE_TYPE)
23284 return dependent_type_p (TREE_TYPE (type));
23285 else if (TREE_CODE (type) == FUNCTION_TYPE
23286 || TREE_CODE (type) == METHOD_TYPE)
23288 tree arg_type;
23290 if (dependent_type_p (TREE_TYPE (type)))
23291 return true;
23292 for (arg_type = TYPE_ARG_TYPES (type);
23293 arg_type;
23294 arg_type = TREE_CHAIN (arg_type))
23295 if (dependent_type_p (TREE_VALUE (arg_type)))
23296 return true;
23297 return false;
23299 /* -- an array type constructed from any dependent type or whose
23300 size is specified by a constant expression that is
23301 value-dependent.
23303 We checked for type- and value-dependence of the bounds in
23304 compute_array_index_type, so TYPE_DEPENDENT_P is already set. */
23305 if (TREE_CODE (type) == ARRAY_TYPE)
23307 if (TYPE_DOMAIN (type)
23308 && dependent_type_p (TYPE_DOMAIN (type)))
23309 return true;
23310 return dependent_type_p (TREE_TYPE (type));
23313 /* -- a template-id in which either the template name is a template
23314 parameter ... */
23315 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
23316 return true;
23317 /* ... or any of the template arguments is a dependent type or
23318 an expression that is type-dependent or value-dependent. */
23319 else if (CLASS_TYPE_P (type) && CLASSTYPE_TEMPLATE_INFO (type)
23320 && (any_dependent_template_arguments_p
23321 (INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type)))))
23322 return true;
23324 /* All TYPEOF_TYPEs, DECLTYPE_TYPEs, and UNDERLYING_TYPEs are
23325 dependent; if the argument of the `typeof' expression is not
23326 type-dependent, then it should already been have resolved. */
23327 if (TREE_CODE (type) == TYPEOF_TYPE
23328 || TREE_CODE (type) == DECLTYPE_TYPE
23329 || TREE_CODE (type) == UNDERLYING_TYPE)
23330 return true;
23332 /* A template argument pack is dependent if any of its packed
23333 arguments are. */
23334 if (TREE_CODE (type) == TYPE_ARGUMENT_PACK)
23336 tree args = ARGUMENT_PACK_ARGS (type);
23337 int i, len = TREE_VEC_LENGTH (args);
23338 for (i = 0; i < len; ++i)
23339 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
23340 return true;
23343 /* All TYPE_PACK_EXPANSIONs are dependent, because parameter packs must
23344 be template parameters. */
23345 if (TREE_CODE (type) == TYPE_PACK_EXPANSION)
23346 return true;
23348 if (any_dependent_type_attributes_p (TYPE_ATTRIBUTES (type)))
23349 return true;
23351 /* The standard does not specifically mention types that are local
23352 to template functions or local classes, but they should be
23353 considered dependent too. For example:
23355 template <int I> void f() {
23356 enum E { a = I };
23357 S<sizeof (E)> s;
23360 The size of `E' cannot be known until the value of `I' has been
23361 determined. Therefore, `E' must be considered dependent. */
23362 scope = TYPE_CONTEXT (type);
23363 if (scope && TYPE_P (scope))
23364 return dependent_type_p (scope);
23365 /* Don't use type_dependent_expression_p here, as it can lead
23366 to infinite recursion trying to determine whether a lambda
23367 nested in a lambda is dependent (c++/47687). */
23368 else if (scope && TREE_CODE (scope) == FUNCTION_DECL
23369 && DECL_LANG_SPECIFIC (scope)
23370 && DECL_TEMPLATE_INFO (scope)
23371 && (any_dependent_template_arguments_p
23372 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (scope)))))
23373 return true;
23375 /* Other types are non-dependent. */
23376 return false;
23379 /* Returns TRUE if TYPE is dependent, in the sense of
23380 [temp.dep.type]. Note that a NULL type is considered dependent. */
23382 bool
23383 dependent_type_p (tree type)
23385 /* If there are no template parameters in scope, then there can't be
23386 any dependent types. */
23387 if (!processing_template_decl)
23389 /* If we are not processing a template, then nobody should be
23390 providing us with a dependent type. */
23391 gcc_assert (type);
23392 gcc_assert (TREE_CODE (type) != TEMPLATE_TYPE_PARM || is_auto (type));
23393 return false;
23396 /* If the type is NULL, we have not computed a type for the entity
23397 in question; in that case, the type is dependent. */
23398 if (!type)
23399 return true;
23401 /* Erroneous types can be considered non-dependent. */
23402 if (type == error_mark_node)
23403 return false;
23405 /* If we have not already computed the appropriate value for TYPE,
23406 do so now. */
23407 if (!TYPE_DEPENDENT_P_VALID (type))
23409 TYPE_DEPENDENT_P (type) = dependent_type_p_r (type);
23410 TYPE_DEPENDENT_P_VALID (type) = 1;
23413 return TYPE_DEPENDENT_P (type);
23416 /* Returns TRUE if SCOPE is a dependent scope, in which we can't do any
23417 lookup. In other words, a dependent type that is not the current
23418 instantiation. */
23420 bool
23421 dependent_scope_p (tree scope)
23423 return (scope && TYPE_P (scope) && dependent_type_p (scope)
23424 && !currently_open_class (scope));
23427 /* T is a SCOPE_REF; return whether we need to consider it
23428 instantiation-dependent so that we can check access at instantiation
23429 time even though we know which member it resolves to. */
23431 static bool
23432 instantiation_dependent_scope_ref_p (tree t)
23434 if (DECL_P (TREE_OPERAND (t, 1))
23435 && CLASS_TYPE_P (TREE_OPERAND (t, 0))
23436 && accessible_in_template_p (TREE_OPERAND (t, 0),
23437 TREE_OPERAND (t, 1)))
23438 return false;
23439 else
23440 return true;
23443 /* Returns TRUE if the EXPRESSION is value-dependent, in the sense of
23444 [temp.dep.constexpr]. EXPRESSION is already known to be a constant
23445 expression. */
23447 /* Note that this predicate is not appropriate for general expressions;
23448 only constant expressions (that satisfy potential_constant_expression)
23449 can be tested for value dependence. */
23451 bool
23452 value_dependent_expression_p (tree expression)
23454 if (!processing_template_decl || expression == NULL_TREE)
23455 return false;
23457 /* A name declared with a dependent type. */
23458 if (DECL_P (expression) && type_dependent_expression_p (expression))
23459 return true;
23461 switch (TREE_CODE (expression))
23463 case BASELINK:
23464 /* A dependent member function of the current instantiation. */
23465 return dependent_type_p (BINFO_TYPE (BASELINK_BINFO (expression)));
23467 case FUNCTION_DECL:
23468 /* A dependent member function of the current instantiation. */
23469 if (DECL_CLASS_SCOPE_P (expression)
23470 && dependent_type_p (DECL_CONTEXT (expression)))
23471 return true;
23472 break;
23474 case IDENTIFIER_NODE:
23475 /* A name that has not been looked up -- must be dependent. */
23476 return true;
23478 case TEMPLATE_PARM_INDEX:
23479 /* A non-type template parm. */
23480 return true;
23482 case CONST_DECL:
23483 /* A non-type template parm. */
23484 if (DECL_TEMPLATE_PARM_P (expression))
23485 return true;
23486 return value_dependent_expression_p (DECL_INITIAL (expression));
23488 case VAR_DECL:
23489 /* A constant with literal type and is initialized
23490 with an expression that is value-dependent.
23492 Note that a non-dependent parenthesized initializer will have
23493 already been replaced with its constant value, so if we see
23494 a TREE_LIST it must be dependent. */
23495 if (DECL_INITIAL (expression)
23496 && decl_constant_var_p (expression)
23497 && (TREE_CODE (DECL_INITIAL (expression)) == TREE_LIST
23498 /* cp_finish_decl doesn't fold reference initializers. */
23499 || TREE_CODE (TREE_TYPE (expression)) == REFERENCE_TYPE
23500 || type_dependent_expression_p (DECL_INITIAL (expression))
23501 || value_dependent_expression_p (DECL_INITIAL (expression))))
23502 return true;
23503 return false;
23505 case DYNAMIC_CAST_EXPR:
23506 case STATIC_CAST_EXPR:
23507 case CONST_CAST_EXPR:
23508 case REINTERPRET_CAST_EXPR:
23509 case CAST_EXPR:
23510 /* These expressions are value-dependent if the type to which
23511 the cast occurs is dependent or the expression being casted
23512 is value-dependent. */
23514 tree type = TREE_TYPE (expression);
23516 if (dependent_type_p (type))
23517 return true;
23519 /* A functional cast has a list of operands. */
23520 expression = TREE_OPERAND (expression, 0);
23521 if (!expression)
23523 /* If there are no operands, it must be an expression such
23524 as "int()". This should not happen for aggregate types
23525 because it would form non-constant expressions. */
23526 gcc_assert (cxx_dialect >= cxx11
23527 || INTEGRAL_OR_ENUMERATION_TYPE_P (type));
23529 return false;
23532 if (TREE_CODE (expression) == TREE_LIST)
23533 return any_value_dependent_elements_p (expression);
23535 return value_dependent_expression_p (expression);
23538 case SIZEOF_EXPR:
23539 if (SIZEOF_EXPR_TYPE_P (expression))
23540 return dependent_type_p (TREE_TYPE (TREE_OPERAND (expression, 0)));
23541 /* FALLTHRU */
23542 case ALIGNOF_EXPR:
23543 case TYPEID_EXPR:
23544 /* A `sizeof' expression is value-dependent if the operand is
23545 type-dependent or is a pack expansion. */
23546 expression = TREE_OPERAND (expression, 0);
23547 if (PACK_EXPANSION_P (expression))
23548 return true;
23549 else if (TYPE_P (expression))
23550 return dependent_type_p (expression);
23551 return instantiation_dependent_uneval_expression_p (expression);
23553 case AT_ENCODE_EXPR:
23554 /* An 'encode' expression is value-dependent if the operand is
23555 type-dependent. */
23556 expression = TREE_OPERAND (expression, 0);
23557 return dependent_type_p (expression);
23559 case NOEXCEPT_EXPR:
23560 expression = TREE_OPERAND (expression, 0);
23561 return instantiation_dependent_uneval_expression_p (expression);
23563 case SCOPE_REF:
23564 /* All instantiation-dependent expressions should also be considered
23565 value-dependent. */
23566 return instantiation_dependent_scope_ref_p (expression);
23568 case COMPONENT_REF:
23569 return (value_dependent_expression_p (TREE_OPERAND (expression, 0))
23570 || value_dependent_expression_p (TREE_OPERAND (expression, 1)));
23572 case NONTYPE_ARGUMENT_PACK:
23573 /* A NONTYPE_ARGUMENT_PACK is value-dependent if any packed argument
23574 is value-dependent. */
23576 tree values = ARGUMENT_PACK_ARGS (expression);
23577 int i, len = TREE_VEC_LENGTH (values);
23579 for (i = 0; i < len; ++i)
23580 if (value_dependent_expression_p (TREE_VEC_ELT (values, i)))
23581 return true;
23583 return false;
23586 case TRAIT_EXPR:
23588 tree type2 = TRAIT_EXPR_TYPE2 (expression);
23589 return (dependent_type_p (TRAIT_EXPR_TYPE1 (expression))
23590 || (type2 ? dependent_type_p (type2) : false));
23593 case MODOP_EXPR:
23594 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
23595 || (value_dependent_expression_p (TREE_OPERAND (expression, 2))));
23597 case ARRAY_REF:
23598 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
23599 || (value_dependent_expression_p (TREE_OPERAND (expression, 1))));
23601 case ADDR_EXPR:
23603 tree op = TREE_OPERAND (expression, 0);
23604 return (value_dependent_expression_p (op)
23605 || has_value_dependent_address (op));
23608 case REQUIRES_EXPR:
23609 /* Treat all requires-expressions as value-dependent so
23610 we don't try to fold them. */
23611 return true;
23613 case TYPE_REQ:
23614 return dependent_type_p (TREE_OPERAND (expression, 0));
23616 case CALL_EXPR:
23618 if (value_dependent_expression_p (CALL_EXPR_FN (expression)))
23619 return true;
23620 tree fn = get_callee_fndecl (expression);
23621 int i, nargs;
23622 nargs = call_expr_nargs (expression);
23623 for (i = 0; i < nargs; ++i)
23625 tree op = CALL_EXPR_ARG (expression, i);
23626 /* In a call to a constexpr member function, look through the
23627 implicit ADDR_EXPR on the object argument so that it doesn't
23628 cause the call to be considered value-dependent. We also
23629 look through it in potential_constant_expression. */
23630 if (i == 0 && fn && DECL_DECLARED_CONSTEXPR_P (fn)
23631 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
23632 && TREE_CODE (op) == ADDR_EXPR)
23633 op = TREE_OPERAND (op, 0);
23634 if (value_dependent_expression_p (op))
23635 return true;
23637 return false;
23640 case TEMPLATE_ID_EXPR:
23641 /* If a TEMPLATE_ID_EXPR involves a dependent name, it will be
23642 type-dependent. */
23643 return type_dependent_expression_p (expression)
23644 || variable_concept_p (TREE_OPERAND (expression, 0));
23646 case CONSTRUCTOR:
23648 unsigned ix;
23649 tree val;
23650 if (dependent_type_p (TREE_TYPE (expression)))
23651 return true;
23652 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), ix, val)
23653 if (value_dependent_expression_p (val))
23654 return true;
23655 return false;
23658 case STMT_EXPR:
23659 /* Treat a GNU statement expression as dependent to avoid crashing
23660 under instantiate_non_dependent_expr; it can't be constant. */
23661 return true;
23663 default:
23664 /* A constant expression is value-dependent if any subexpression is
23665 value-dependent. */
23666 switch (TREE_CODE_CLASS (TREE_CODE (expression)))
23668 case tcc_reference:
23669 case tcc_unary:
23670 case tcc_comparison:
23671 case tcc_binary:
23672 case tcc_expression:
23673 case tcc_vl_exp:
23675 int i, len = cp_tree_operand_length (expression);
23677 for (i = 0; i < len; i++)
23679 tree t = TREE_OPERAND (expression, i);
23681 /* In some cases, some of the operands may be missing.l
23682 (For example, in the case of PREDECREMENT_EXPR, the
23683 amount to increment by may be missing.) That doesn't
23684 make the expression dependent. */
23685 if (t && value_dependent_expression_p (t))
23686 return true;
23689 break;
23690 default:
23691 break;
23693 break;
23696 /* The expression is not value-dependent. */
23697 return false;
23700 /* Returns TRUE if the EXPRESSION is type-dependent, in the sense of
23701 [temp.dep.expr]. Note that an expression with no type is
23702 considered dependent. Other parts of the compiler arrange for an
23703 expression with type-dependent subexpressions to have no type, so
23704 this function doesn't have to be fully recursive. */
23706 bool
23707 type_dependent_expression_p (tree expression)
23709 if (!processing_template_decl)
23710 return false;
23712 if (expression == NULL_TREE || expression == error_mark_node)
23713 return false;
23715 /* An unresolved name is always dependent. */
23716 if (identifier_p (expression)
23717 || TREE_CODE (expression) == USING_DECL
23718 || TREE_CODE (expression) == WILDCARD_DECL)
23719 return true;
23721 /* A fold expression is type-dependent. */
23722 if (TREE_CODE (expression) == UNARY_LEFT_FOLD_EXPR
23723 || TREE_CODE (expression) == UNARY_RIGHT_FOLD_EXPR
23724 || TREE_CODE (expression) == BINARY_LEFT_FOLD_EXPR
23725 || TREE_CODE (expression) == BINARY_RIGHT_FOLD_EXPR)
23726 return true;
23728 /* Some expression forms are never type-dependent. */
23729 if (TREE_CODE (expression) == PSEUDO_DTOR_EXPR
23730 || TREE_CODE (expression) == SIZEOF_EXPR
23731 || TREE_CODE (expression) == ALIGNOF_EXPR
23732 || TREE_CODE (expression) == AT_ENCODE_EXPR
23733 || TREE_CODE (expression) == NOEXCEPT_EXPR
23734 || TREE_CODE (expression) == TRAIT_EXPR
23735 || TREE_CODE (expression) == TYPEID_EXPR
23736 || TREE_CODE (expression) == DELETE_EXPR
23737 || TREE_CODE (expression) == VEC_DELETE_EXPR
23738 || TREE_CODE (expression) == THROW_EXPR
23739 || TREE_CODE (expression) == REQUIRES_EXPR)
23740 return false;
23742 /* The types of these expressions depends only on the type to which
23743 the cast occurs. */
23744 if (TREE_CODE (expression) == DYNAMIC_CAST_EXPR
23745 || TREE_CODE (expression) == STATIC_CAST_EXPR
23746 || TREE_CODE (expression) == CONST_CAST_EXPR
23747 || TREE_CODE (expression) == REINTERPRET_CAST_EXPR
23748 || TREE_CODE (expression) == IMPLICIT_CONV_EXPR
23749 || TREE_CODE (expression) == CAST_EXPR)
23750 return dependent_type_p (TREE_TYPE (expression));
23752 /* The types of these expressions depends only on the type created
23753 by the expression. */
23754 if (TREE_CODE (expression) == NEW_EXPR
23755 || TREE_CODE (expression) == VEC_NEW_EXPR)
23757 /* For NEW_EXPR tree nodes created inside a template, either
23758 the object type itself or a TREE_LIST may appear as the
23759 operand 1. */
23760 tree type = TREE_OPERAND (expression, 1);
23761 if (TREE_CODE (type) == TREE_LIST)
23762 /* This is an array type. We need to check array dimensions
23763 as well. */
23764 return dependent_type_p (TREE_VALUE (TREE_PURPOSE (type)))
23765 || value_dependent_expression_p
23766 (TREE_OPERAND (TREE_VALUE (type), 1));
23767 else
23768 return dependent_type_p (type);
23771 if (TREE_CODE (expression) == SCOPE_REF)
23773 tree scope = TREE_OPERAND (expression, 0);
23774 tree name = TREE_OPERAND (expression, 1);
23776 /* 14.6.2.2 [temp.dep.expr]: An id-expression is type-dependent if it
23777 contains an identifier associated by name lookup with one or more
23778 declarations declared with a dependent type, or...a
23779 nested-name-specifier or qualified-id that names a member of an
23780 unknown specialization. */
23781 return (type_dependent_expression_p (name)
23782 || dependent_scope_p (scope));
23785 if (TREE_CODE (expression) == TEMPLATE_DECL
23786 && !DECL_TEMPLATE_TEMPLATE_PARM_P (expression))
23787 return uses_outer_template_parms (expression);
23789 if (TREE_CODE (expression) == STMT_EXPR)
23790 expression = stmt_expr_value_expr (expression);
23792 if (BRACE_ENCLOSED_INITIALIZER_P (expression))
23794 tree elt;
23795 unsigned i;
23797 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), i, elt)
23799 if (type_dependent_expression_p (elt))
23800 return true;
23802 return false;
23805 /* A static data member of the current instantiation with incomplete
23806 array type is type-dependent, as the definition and specializations
23807 can have different bounds. */
23808 if (VAR_P (expression)
23809 && DECL_CLASS_SCOPE_P (expression)
23810 && dependent_type_p (DECL_CONTEXT (expression))
23811 && VAR_HAD_UNKNOWN_BOUND (expression))
23812 return true;
23814 /* An array of unknown bound depending on a variadic parameter, eg:
23816 template<typename... Args>
23817 void foo (Args... args)
23819 int arr[] = { args... };
23822 template<int... vals>
23823 void bar ()
23825 int arr[] = { vals... };
23828 If the array has no length and has an initializer, it must be that
23829 we couldn't determine its length in cp_complete_array_type because
23830 it is dependent. */
23831 if (VAR_P (expression)
23832 && TREE_CODE (TREE_TYPE (expression)) == ARRAY_TYPE
23833 && !TYPE_DOMAIN (TREE_TYPE (expression))
23834 && DECL_INITIAL (expression))
23835 return true;
23837 /* A function or variable template-id is type-dependent if it has any
23838 dependent template arguments. Note that we only consider the innermost
23839 template arguments here, since those are the ones that come from the
23840 template-id; the template arguments for the enclosing class do not make it
23841 type-dependent, they only make a member function value-dependent. */
23842 if (VAR_OR_FUNCTION_DECL_P (expression)
23843 && DECL_LANG_SPECIFIC (expression)
23844 && DECL_TEMPLATE_INFO (expression)
23845 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (expression))
23846 && (any_dependent_template_arguments_p
23847 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (expression)))))
23848 return true;
23850 /* Always dependent, on the number of arguments if nothing else. */
23851 if (TREE_CODE (expression) == EXPR_PACK_EXPANSION)
23852 return true;
23854 if (TREE_TYPE (expression) == unknown_type_node)
23856 if (TREE_CODE (expression) == ADDR_EXPR)
23857 return type_dependent_expression_p (TREE_OPERAND (expression, 0));
23858 if (TREE_CODE (expression) == COMPONENT_REF
23859 || TREE_CODE (expression) == OFFSET_REF)
23861 if (type_dependent_expression_p (TREE_OPERAND (expression, 0)))
23862 return true;
23863 expression = TREE_OPERAND (expression, 1);
23864 if (identifier_p (expression))
23865 return false;
23867 /* SCOPE_REF with non-null TREE_TYPE is always non-dependent. */
23868 if (TREE_CODE (expression) == SCOPE_REF)
23869 return false;
23871 if (BASELINK_P (expression))
23873 if (BASELINK_OPTYPE (expression)
23874 && dependent_type_p (BASELINK_OPTYPE (expression)))
23875 return true;
23876 expression = BASELINK_FUNCTIONS (expression);
23879 if (TREE_CODE (expression) == TEMPLATE_ID_EXPR)
23881 if (any_dependent_template_arguments_p
23882 (TREE_OPERAND (expression, 1)))
23883 return true;
23884 expression = TREE_OPERAND (expression, 0);
23885 if (identifier_p (expression))
23886 return true;
23889 gcc_assert (TREE_CODE (expression) == OVERLOAD
23890 || TREE_CODE (expression) == FUNCTION_DECL);
23892 while (expression)
23894 if (type_dependent_expression_p (OVL_CURRENT (expression)))
23895 return true;
23896 expression = OVL_NEXT (expression);
23898 return false;
23901 gcc_assert (TREE_CODE (expression) != TYPE_DECL);
23903 /* Dependent type attributes might not have made it from the decl to
23904 the type yet. */
23905 if (DECL_P (expression)
23906 && any_dependent_type_attributes_p (DECL_ATTRIBUTES (expression)))
23907 return true;
23909 return (dependent_type_p (TREE_TYPE (expression)));
23912 /* [temp.dep.expr]/5: A class member access expression (5.2.5) is
23913 type-dependent if the expression refers to a member of the current
23914 instantiation and the type of the referenced member is dependent, or the
23915 class member access expression refers to a member of an unknown
23916 specialization.
23918 This function returns true if the OBJECT in such a class member access
23919 expression is of an unknown specialization. */
23921 bool
23922 type_dependent_object_expression_p (tree object)
23924 tree scope = TREE_TYPE (object);
23925 return (!scope || dependent_scope_p (scope));
23928 /* walk_tree callback function for instantiation_dependent_expression_p,
23929 below. Returns non-zero if a dependent subexpression is found. */
23931 static tree
23932 instantiation_dependent_r (tree *tp, int *walk_subtrees,
23933 void * /*data*/)
23935 if (TYPE_P (*tp))
23937 /* We don't have to worry about decltype currently because decltype
23938 of an instantiation-dependent expr is a dependent type. This
23939 might change depending on the resolution of DR 1172. */
23940 *walk_subtrees = false;
23941 return NULL_TREE;
23943 enum tree_code code = TREE_CODE (*tp);
23944 switch (code)
23946 /* Don't treat an argument list as dependent just because it has no
23947 TREE_TYPE. */
23948 case TREE_LIST:
23949 case TREE_VEC:
23950 return NULL_TREE;
23952 case TEMPLATE_PARM_INDEX:
23953 return *tp;
23955 /* Handle expressions with type operands. */
23956 case SIZEOF_EXPR:
23957 case ALIGNOF_EXPR:
23958 case TYPEID_EXPR:
23959 case AT_ENCODE_EXPR:
23961 tree op = TREE_OPERAND (*tp, 0);
23962 if (code == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (*tp))
23963 op = TREE_TYPE (op);
23964 if (TYPE_P (op))
23966 if (dependent_type_p (op))
23967 return *tp;
23968 else
23970 *walk_subtrees = false;
23971 return NULL_TREE;
23974 break;
23977 case COMPONENT_REF:
23978 if (identifier_p (TREE_OPERAND (*tp, 1)))
23979 /* In a template, finish_class_member_access_expr creates a
23980 COMPONENT_REF with an IDENTIFIER_NODE for op1 even if it isn't
23981 type-dependent, so that we can check access control at
23982 instantiation time (PR 42277). See also Core issue 1273. */
23983 return *tp;
23984 break;
23986 case SCOPE_REF:
23987 if (instantiation_dependent_scope_ref_p (*tp))
23988 return *tp;
23989 else
23990 break;
23992 /* Treat statement-expressions as dependent. */
23993 case BIND_EXPR:
23994 return *tp;
23996 /* Treat requires-expressions as dependent. */
23997 case REQUIRES_EXPR:
23998 return *tp;
24000 case CALL_EXPR:
24001 /* Treat calls to function concepts as dependent. */
24002 if (function_concept_check_p (*tp))
24003 return *tp;
24004 break;
24006 case TEMPLATE_ID_EXPR:
24007 /* And variable concepts. */
24008 if (variable_concept_p (TREE_OPERAND (*tp, 0)))
24009 return *tp;
24010 break;
24012 default:
24013 break;
24016 if (type_dependent_expression_p (*tp))
24017 return *tp;
24018 else
24019 return NULL_TREE;
24022 /* Returns TRUE if the EXPRESSION is instantiation-dependent, in the
24023 sense defined by the ABI:
24025 "An expression is instantiation-dependent if it is type-dependent
24026 or value-dependent, or it has a subexpression that is type-dependent
24027 or value-dependent."
24029 Except don't actually check value-dependence for unevaluated expressions,
24030 because in sizeof(i) we don't care about the value of i. Checking
24031 type-dependence will in turn check value-dependence of array bounds/template
24032 arguments as needed. */
24034 bool
24035 instantiation_dependent_uneval_expression_p (tree expression)
24037 tree result;
24039 if (!processing_template_decl)
24040 return false;
24042 if (expression == error_mark_node)
24043 return false;
24045 result = cp_walk_tree_without_duplicates (&expression,
24046 instantiation_dependent_r, NULL);
24047 return result != NULL_TREE;
24050 /* As above, but also check value-dependence of the expression as a whole. */
24052 bool
24053 instantiation_dependent_expression_p (tree expression)
24055 return (instantiation_dependent_uneval_expression_p (expression)
24056 || value_dependent_expression_p (expression));
24059 /* Like type_dependent_expression_p, but it also works while not processing
24060 a template definition, i.e. during substitution or mangling. */
24062 bool
24063 type_dependent_expression_p_push (tree expr)
24065 bool b;
24066 ++processing_template_decl;
24067 b = type_dependent_expression_p (expr);
24068 --processing_template_decl;
24069 return b;
24072 /* Returns TRUE if ARGS contains a type-dependent expression. */
24074 bool
24075 any_type_dependent_arguments_p (const vec<tree, va_gc> *args)
24077 unsigned int i;
24078 tree arg;
24080 FOR_EACH_VEC_SAFE_ELT (args, i, arg)
24082 if (type_dependent_expression_p (arg))
24083 return true;
24085 return false;
24088 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
24089 expressions) contains any type-dependent expressions. */
24091 bool
24092 any_type_dependent_elements_p (const_tree list)
24094 for (; list; list = TREE_CHAIN (list))
24095 if (type_dependent_expression_p (TREE_VALUE (list)))
24096 return true;
24098 return false;
24101 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
24102 expressions) contains any value-dependent expressions. */
24104 bool
24105 any_value_dependent_elements_p (const_tree list)
24107 for (; list; list = TREE_CHAIN (list))
24108 if (value_dependent_expression_p (TREE_VALUE (list)))
24109 return true;
24111 return false;
24114 /* Returns TRUE if the ARG (a template argument) is dependent. */
24116 bool
24117 dependent_template_arg_p (tree arg)
24119 if (!processing_template_decl)
24120 return false;
24122 /* Assume a template argument that was wrongly written by the user
24123 is dependent. This is consistent with what
24124 any_dependent_template_arguments_p [that calls this function]
24125 does. */
24126 if (!arg || arg == error_mark_node)
24127 return true;
24129 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
24130 arg = ARGUMENT_PACK_SELECT_ARG (arg);
24132 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
24133 return true;
24134 if (TREE_CODE (arg) == TEMPLATE_DECL)
24136 if (DECL_TEMPLATE_PARM_P (arg))
24137 return true;
24138 /* A member template of a dependent class is not necessarily
24139 type-dependent, but it is a dependent template argument because it
24140 will be a member of an unknown specialization to that template. */
24141 tree scope = CP_DECL_CONTEXT (arg);
24142 return TYPE_P (scope) && dependent_type_p (scope);
24144 else if (ARGUMENT_PACK_P (arg))
24146 tree args = ARGUMENT_PACK_ARGS (arg);
24147 int i, len = TREE_VEC_LENGTH (args);
24148 for (i = 0; i < len; ++i)
24150 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
24151 return true;
24154 return false;
24156 else if (TYPE_P (arg))
24157 return dependent_type_p (arg);
24158 else
24159 return (type_dependent_expression_p (arg)
24160 || value_dependent_expression_p (arg));
24163 /* Returns true if ARGS (a collection of template arguments) contains
24164 any types that require structural equality testing. */
24166 bool
24167 any_template_arguments_need_structural_equality_p (tree args)
24169 int i;
24170 int j;
24172 if (!args)
24173 return false;
24174 if (args == error_mark_node)
24175 return true;
24177 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
24179 tree level = TMPL_ARGS_LEVEL (args, i + 1);
24180 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
24182 tree arg = TREE_VEC_ELT (level, j);
24183 tree packed_args = NULL_TREE;
24184 int k, len = 1;
24186 if (ARGUMENT_PACK_P (arg))
24188 /* Look inside the argument pack. */
24189 packed_args = ARGUMENT_PACK_ARGS (arg);
24190 len = TREE_VEC_LENGTH (packed_args);
24193 for (k = 0; k < len; ++k)
24195 if (packed_args)
24196 arg = TREE_VEC_ELT (packed_args, k);
24198 if (error_operand_p (arg))
24199 return true;
24200 else if (TREE_CODE (arg) == TEMPLATE_DECL)
24201 continue;
24202 else if (TYPE_P (arg) && TYPE_STRUCTURAL_EQUALITY_P (arg))
24203 return true;
24204 else if (!TYPE_P (arg) && TREE_TYPE (arg)
24205 && TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (arg)))
24206 return true;
24211 return false;
24214 /* Returns true if ARGS (a collection of template arguments) contains
24215 any dependent arguments. */
24217 bool
24218 any_dependent_template_arguments_p (const_tree args)
24220 int i;
24221 int j;
24223 if (!args)
24224 return false;
24225 if (args == error_mark_node)
24226 return true;
24228 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
24230 const_tree level = TMPL_ARGS_LEVEL (args, i + 1);
24231 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
24232 if (dependent_template_arg_p (TREE_VEC_ELT (level, j)))
24233 return true;
24236 return false;
24239 /* Returns TRUE if the template TMPL is type-dependent. */
24241 bool
24242 dependent_template_p (tree tmpl)
24244 if (TREE_CODE (tmpl) == OVERLOAD)
24246 while (tmpl)
24248 if (dependent_template_p (OVL_CURRENT (tmpl)))
24249 return true;
24250 tmpl = OVL_NEXT (tmpl);
24252 return false;
24255 /* Template template parameters are dependent. */
24256 if (DECL_TEMPLATE_TEMPLATE_PARM_P (tmpl)
24257 || TREE_CODE (tmpl) == TEMPLATE_TEMPLATE_PARM)
24258 return true;
24259 /* So are names that have not been looked up. */
24260 if (TREE_CODE (tmpl) == SCOPE_REF || identifier_p (tmpl))
24261 return true;
24262 return false;
24265 /* Returns TRUE if the specialization TMPL<ARGS> is dependent. */
24267 bool
24268 dependent_template_id_p (tree tmpl, tree args)
24270 return (dependent_template_p (tmpl)
24271 || any_dependent_template_arguments_p (args));
24274 /* Returns TRUE if OMP_FOR with DECLV, INITV, CONDV and INCRV vectors
24275 are dependent. */
24277 bool
24278 dependent_omp_for_p (tree declv, tree initv, tree condv, tree incrv)
24280 int i;
24282 if (!processing_template_decl)
24283 return false;
24285 for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
24287 tree decl = TREE_VEC_ELT (declv, i);
24288 tree init = TREE_VEC_ELT (initv, i);
24289 tree cond = TREE_VEC_ELT (condv, i);
24290 tree incr = TREE_VEC_ELT (incrv, i);
24292 if (type_dependent_expression_p (decl)
24293 || TREE_CODE (decl) == SCOPE_REF)
24294 return true;
24296 if (init && type_dependent_expression_p (init))
24297 return true;
24299 if (type_dependent_expression_p (cond))
24300 return true;
24302 if (COMPARISON_CLASS_P (cond)
24303 && (type_dependent_expression_p (TREE_OPERAND (cond, 0))
24304 || type_dependent_expression_p (TREE_OPERAND (cond, 1))))
24305 return true;
24307 if (TREE_CODE (incr) == MODOP_EXPR)
24309 if (type_dependent_expression_p (TREE_OPERAND (incr, 0))
24310 || type_dependent_expression_p (TREE_OPERAND (incr, 2)))
24311 return true;
24313 else if (type_dependent_expression_p (incr))
24314 return true;
24315 else if (TREE_CODE (incr) == MODIFY_EXPR)
24317 if (type_dependent_expression_p (TREE_OPERAND (incr, 0)))
24318 return true;
24319 else if (BINARY_CLASS_P (TREE_OPERAND (incr, 1)))
24321 tree t = TREE_OPERAND (incr, 1);
24322 if (type_dependent_expression_p (TREE_OPERAND (t, 0))
24323 || type_dependent_expression_p (TREE_OPERAND (t, 1)))
24324 return true;
24329 return false;
24332 /* TYPE is a TYPENAME_TYPE. Returns the ordinary TYPE to which the
24333 TYPENAME_TYPE corresponds. Returns the original TYPENAME_TYPE if
24334 no such TYPE can be found. Note that this function peers inside
24335 uninstantiated templates and therefore should be used only in
24336 extremely limited situations. ONLY_CURRENT_P restricts this
24337 peering to the currently open classes hierarchy (which is required
24338 when comparing types). */
24340 tree
24341 resolve_typename_type (tree type, bool only_current_p)
24343 tree scope;
24344 tree name;
24345 tree decl;
24346 int quals;
24347 tree pushed_scope;
24348 tree result;
24350 gcc_assert (TREE_CODE (type) == TYPENAME_TYPE);
24352 scope = TYPE_CONTEXT (type);
24353 /* Usually the non-qualified identifier of a TYPENAME_TYPE is
24354 TYPE_IDENTIFIER (type). But when 'type' is a typedef variant of
24355 a TYPENAME_TYPE node, then TYPE_NAME (type) is set to the TYPE_DECL representing
24356 the typedef. In that case TYPE_IDENTIFIER (type) is not the non-qualified
24357 identifier of the TYPENAME_TYPE anymore.
24358 So by getting the TYPE_IDENTIFIER of the _main declaration_ of the
24359 TYPENAME_TYPE instead, we avoid messing up with a possible
24360 typedef variant case. */
24361 name = TYPE_IDENTIFIER (TYPE_MAIN_VARIANT (type));
24363 /* If the SCOPE is itself a TYPENAME_TYPE, then we need to resolve
24364 it first before we can figure out what NAME refers to. */
24365 if (TREE_CODE (scope) == TYPENAME_TYPE)
24367 if (TYPENAME_IS_RESOLVING_P (scope))
24368 /* Given a class template A with a dependent base with nested type C,
24369 typedef typename A::C::C C will land us here, as trying to resolve
24370 the initial A::C leads to the local C typedef, which leads back to
24371 A::C::C. So we break the recursion now. */
24372 return type;
24373 else
24374 scope = resolve_typename_type (scope, only_current_p);
24376 /* If we don't know what SCOPE refers to, then we cannot resolve the
24377 TYPENAME_TYPE. */
24378 if (!CLASS_TYPE_P (scope))
24379 return type;
24380 /* If this is a typedef, we don't want to look inside (c++/11987). */
24381 if (typedef_variant_p (type))
24382 return type;
24383 /* If SCOPE isn't the template itself, it will not have a valid
24384 TYPE_FIELDS list. */
24385 if (same_type_p (scope, CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope)))
24386 /* scope is either the template itself or a compatible instantiation
24387 like X<T>, so look up the name in the original template. */
24388 scope = CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope);
24389 /* We shouldn't have built a TYPENAME_TYPE with a non-dependent scope. */
24390 gcc_checking_assert (uses_template_parms (scope));
24391 /* If scope has no fields, it can't be a current instantiation. Check this
24392 before currently_open_class to avoid infinite recursion (71515). */
24393 if (!TYPE_FIELDS (scope))
24394 return type;
24395 /* If the SCOPE is not the current instantiation, there's no reason
24396 to look inside it. */
24397 if (only_current_p && !currently_open_class (scope))
24398 return type;
24399 /* Enter the SCOPE so that name lookup will be resolved as if we
24400 were in the class definition. In particular, SCOPE will no
24401 longer be considered a dependent type. */
24402 pushed_scope = push_scope (scope);
24403 /* Look up the declaration. */
24404 decl = lookup_member (scope, name, /*protect=*/0, /*want_type=*/true,
24405 tf_warning_or_error);
24407 result = NULL_TREE;
24409 /* For a TYPENAME_TYPE like "typename X::template Y<T>", we want to
24410 find a TEMPLATE_DECL. Otherwise, we want to find a TYPE_DECL. */
24411 if (!decl)
24412 /*nop*/;
24413 else if (identifier_p (TYPENAME_TYPE_FULLNAME (type))
24414 && TREE_CODE (decl) == TYPE_DECL)
24416 result = TREE_TYPE (decl);
24417 if (result == error_mark_node)
24418 result = NULL_TREE;
24420 else if (TREE_CODE (TYPENAME_TYPE_FULLNAME (type)) == TEMPLATE_ID_EXPR
24421 && DECL_CLASS_TEMPLATE_P (decl))
24423 tree tmpl;
24424 tree args;
24425 /* Obtain the template and the arguments. */
24426 tmpl = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 0);
24427 args = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 1);
24428 /* Instantiate the template. */
24429 result = lookup_template_class (tmpl, args, NULL_TREE, NULL_TREE,
24430 /*entering_scope=*/0,
24431 tf_error | tf_user);
24432 if (result == error_mark_node)
24433 result = NULL_TREE;
24436 /* Leave the SCOPE. */
24437 if (pushed_scope)
24438 pop_scope (pushed_scope);
24440 /* If we failed to resolve it, return the original typename. */
24441 if (!result)
24442 return type;
24444 /* If lookup found a typename type, resolve that too. */
24445 if (TREE_CODE (result) == TYPENAME_TYPE && !TYPENAME_IS_RESOLVING_P (result))
24447 /* Ill-formed programs can cause infinite recursion here, so we
24448 must catch that. */
24449 TYPENAME_IS_RESOLVING_P (result) = 1;
24450 result = resolve_typename_type (result, only_current_p);
24451 TYPENAME_IS_RESOLVING_P (result) = 0;
24454 /* Qualify the resulting type. */
24455 quals = cp_type_quals (type);
24456 if (quals)
24457 result = cp_build_qualified_type (result, cp_type_quals (result) | quals);
24459 return result;
24462 /* EXPR is an expression which is not type-dependent. Return a proxy
24463 for EXPR that can be used to compute the types of larger
24464 expressions containing EXPR. */
24466 tree
24467 build_non_dependent_expr (tree expr)
24469 tree inner_expr;
24471 /* When checking, try to get a constant value for all non-dependent
24472 expressions in order to expose bugs in *_dependent_expression_p
24473 and constexpr. This can affect code generation, see PR70704, so
24474 only do this for -fchecking=2. */
24475 if (flag_checking > 1
24476 && cxx_dialect >= cxx11
24477 /* Don't do this during nsdmi parsing as it can lead to
24478 unexpected recursive instantiations. */
24479 && !parsing_nsdmi ()
24480 /* Don't do this during concept expansion either and for
24481 the same reason. */
24482 && !expanding_concept ())
24483 fold_non_dependent_expr (expr);
24485 /* Preserve OVERLOADs; the functions must be available to resolve
24486 types. */
24487 inner_expr = expr;
24488 if (TREE_CODE (inner_expr) == STMT_EXPR)
24489 inner_expr = stmt_expr_value_expr (inner_expr);
24490 if (TREE_CODE (inner_expr) == ADDR_EXPR)
24491 inner_expr = TREE_OPERAND (inner_expr, 0);
24492 if (TREE_CODE (inner_expr) == COMPONENT_REF)
24493 inner_expr = TREE_OPERAND (inner_expr, 1);
24494 if (is_overloaded_fn (inner_expr)
24495 || TREE_CODE (inner_expr) == OFFSET_REF)
24496 return expr;
24497 /* There is no need to return a proxy for a variable. */
24498 if (VAR_P (expr))
24499 return expr;
24500 /* Preserve string constants; conversions from string constants to
24501 "char *" are allowed, even though normally a "const char *"
24502 cannot be used to initialize a "char *". */
24503 if (TREE_CODE (expr) == STRING_CST)
24504 return expr;
24505 /* Preserve void and arithmetic constants, as an optimization -- there is no
24506 reason to create a new node. */
24507 if (TREE_CODE (expr) == VOID_CST
24508 || TREE_CODE (expr) == INTEGER_CST
24509 || TREE_CODE (expr) == REAL_CST)
24510 return expr;
24511 /* Preserve THROW_EXPRs -- all throw-expressions have type "void".
24512 There is at least one place where we want to know that a
24513 particular expression is a throw-expression: when checking a ?:
24514 expression, there are special rules if the second or third
24515 argument is a throw-expression. */
24516 if (TREE_CODE (expr) == THROW_EXPR)
24517 return expr;
24519 /* Don't wrap an initializer list, we need to be able to look inside. */
24520 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
24521 return expr;
24523 /* Don't wrap a dummy object, we need to be able to test for it. */
24524 if (is_dummy_object (expr))
24525 return expr;
24527 if (TREE_CODE (expr) == COND_EXPR)
24528 return build3 (COND_EXPR,
24529 TREE_TYPE (expr),
24530 TREE_OPERAND (expr, 0),
24531 (TREE_OPERAND (expr, 1)
24532 ? build_non_dependent_expr (TREE_OPERAND (expr, 1))
24533 : build_non_dependent_expr (TREE_OPERAND (expr, 0))),
24534 build_non_dependent_expr (TREE_OPERAND (expr, 2)));
24535 if (TREE_CODE (expr) == COMPOUND_EXPR
24536 && !COMPOUND_EXPR_OVERLOADED (expr))
24537 return build2 (COMPOUND_EXPR,
24538 TREE_TYPE (expr),
24539 TREE_OPERAND (expr, 0),
24540 build_non_dependent_expr (TREE_OPERAND (expr, 1)));
24542 /* If the type is unknown, it can't really be non-dependent */
24543 gcc_assert (TREE_TYPE (expr) != unknown_type_node);
24545 /* Otherwise, build a NON_DEPENDENT_EXPR. */
24546 return build1 (NON_DEPENDENT_EXPR, TREE_TYPE (expr), expr);
24549 /* ARGS is a vector of expressions as arguments to a function call.
24550 Replace the arguments with equivalent non-dependent expressions.
24551 This modifies ARGS in place. */
24553 void
24554 make_args_non_dependent (vec<tree, va_gc> *args)
24556 unsigned int ix;
24557 tree arg;
24559 FOR_EACH_VEC_SAFE_ELT (args, ix, arg)
24561 tree newarg = build_non_dependent_expr (arg);
24562 if (newarg != arg)
24563 (*args)[ix] = newarg;
24567 /* Returns a type which represents 'auto' or 'decltype(auto)'. We use a
24568 TEMPLATE_TYPE_PARM with a level one deeper than the actual template
24569 parms. If set_canonical is true, we set TYPE_CANONICAL on it. */
24571 static tree
24572 make_auto_1 (tree name, bool set_canonical)
24574 tree au = cxx_make_type (TEMPLATE_TYPE_PARM);
24575 TYPE_NAME (au) = build_decl (input_location,
24576 TYPE_DECL, name, au);
24577 TYPE_STUB_DECL (au) = TYPE_NAME (au);
24578 TEMPLATE_TYPE_PARM_INDEX (au) = build_template_parm_index
24579 (0, processing_template_decl + 1, processing_template_decl + 1,
24580 TYPE_NAME (au), NULL_TREE);
24581 if (set_canonical)
24582 TYPE_CANONICAL (au) = canonical_type_parameter (au);
24583 DECL_ARTIFICIAL (TYPE_NAME (au)) = 1;
24584 SET_DECL_TEMPLATE_PARM_P (TYPE_NAME (au));
24586 return au;
24589 tree
24590 make_decltype_auto (void)
24592 return make_auto_1 (decltype_auto_identifier, true);
24595 tree
24596 make_auto (void)
24598 return make_auto_1 (auto_identifier, true);
24601 /* Return a C++17 deduction placeholder for class template TMPL. */
24603 tree
24604 make_template_placeholder (tree tmpl)
24606 tree t = make_auto_1 (DECL_NAME (tmpl), true);
24607 CLASS_PLACEHOLDER_TEMPLATE (t) = tmpl;
24608 return t;
24611 /* Make a "constrained auto" type-specifier. This is an
24612 auto type with constraints that must be associated after
24613 deduction. The constraint is formed from the given
24614 CONC and its optional sequence of arguments, which are
24615 non-null if written as partial-concept-id. */
24617 tree
24618 make_constrained_auto (tree con, tree args)
24620 tree type = make_auto_1 (auto_identifier, false);
24622 /* Build the constraint. */
24623 tree tmpl = DECL_TI_TEMPLATE (con);
24624 tree expr;
24625 if (VAR_P (con))
24626 expr = build_concept_check (tmpl, type, args);
24627 else
24628 expr = build_concept_check (build_overload (tmpl, NULL_TREE), type, args);
24630 tree constr = normalize_expression (expr);
24631 PLACEHOLDER_TYPE_CONSTRAINTS (type) = constr;
24633 /* Our canonical type depends on the constraint. */
24634 TYPE_CANONICAL (type) = canonical_type_parameter (type);
24636 /* Attach the constraint to the type declaration. */
24637 tree decl = TYPE_NAME (type);
24638 return decl;
24641 /* Given type ARG, return std::initializer_list<ARG>. */
24643 static tree
24644 listify (tree arg)
24646 tree std_init_list = namespace_binding
24647 (get_identifier ("initializer_list"), std_node);
24648 tree argvec;
24649 if (!std_init_list || !DECL_CLASS_TEMPLATE_P (std_init_list))
24651 error ("deducing from brace-enclosed initializer list requires "
24652 "#include <initializer_list>");
24653 return error_mark_node;
24655 argvec = make_tree_vec (1);
24656 TREE_VEC_ELT (argvec, 0) = arg;
24657 return lookup_template_class (std_init_list, argvec, NULL_TREE,
24658 NULL_TREE, 0, tf_warning_or_error);
24661 /* Replace auto in TYPE with std::initializer_list<auto>. */
24663 static tree
24664 listify_autos (tree type, tree auto_node)
24666 tree init_auto = listify (auto_node);
24667 tree argvec = make_tree_vec (1);
24668 TREE_VEC_ELT (argvec, 0) = init_auto;
24669 if (processing_template_decl)
24670 argvec = add_to_template_args (current_template_args (), argvec);
24671 return tsubst (type, argvec, tf_warning_or_error, NULL_TREE);
24674 /* Hash traits for hashing possibly constrained 'auto'
24675 TEMPLATE_TYPE_PARMs for use by do_auto_deduction. */
24677 struct auto_hash : default_hash_traits<tree>
24679 static inline hashval_t hash (tree);
24680 static inline bool equal (tree, tree);
24683 /* Hash the 'auto' T. */
24685 inline hashval_t
24686 auto_hash::hash (tree t)
24688 if (tree c = PLACEHOLDER_TYPE_CONSTRAINTS (t))
24689 /* Matching constrained-type-specifiers denote the same template
24690 parameter, so hash the constraint. */
24691 return hash_placeholder_constraint (c);
24692 else
24693 /* But unconstrained autos are all separate, so just hash the pointer. */
24694 return iterative_hash_object (t, 0);
24697 /* Compare two 'auto's. */
24699 inline bool
24700 auto_hash::equal (tree t1, tree t2)
24702 if (t1 == t2)
24703 return true;
24705 tree c1 = PLACEHOLDER_TYPE_CONSTRAINTS (t1);
24706 tree c2 = PLACEHOLDER_TYPE_CONSTRAINTS (t2);
24708 /* Two unconstrained autos are distinct. */
24709 if (!c1 || !c2)
24710 return false;
24712 return equivalent_placeholder_constraints (c1, c2);
24715 /* for_each_template_parm callback for extract_autos: if t is a (possibly
24716 constrained) auto, add it to the vector. */
24718 static int
24719 extract_autos_r (tree t, void *data)
24721 hash_table<auto_hash> &hash = *(hash_table<auto_hash>*)data;
24722 if (is_auto_or_concept (t))
24724 /* All the autos were built with index 0; fix that up now. */
24725 tree *p = hash.find_slot (t, INSERT);
24726 unsigned idx;
24727 if (*p)
24728 /* If this is a repeated constrained-type-specifier, use the index we
24729 chose before. */
24730 idx = TEMPLATE_PARM_IDX (TEMPLATE_TYPE_PARM_INDEX (*p));
24731 else
24733 /* Otherwise this is new, so use the current count. */
24734 *p = t;
24735 idx = hash.elements () - 1;
24737 TEMPLATE_PARM_IDX (TEMPLATE_TYPE_PARM_INDEX (t)) = idx;
24740 /* Always keep walking. */
24741 return 0;
24744 /* Return a TREE_VEC of the 'auto's used in type under the Concepts TS, which
24745 says they can appear anywhere in the type. */
24747 static tree
24748 extract_autos (tree type)
24750 hash_set<tree> visited;
24751 hash_table<auto_hash> hash (2);
24753 for_each_template_parm (type, extract_autos_r, &hash, &visited, true);
24755 tree tree_vec = make_tree_vec (hash.elements());
24756 for (hash_table<auto_hash>::iterator iter = hash.begin();
24757 iter != hash.end(); ++iter)
24759 tree elt = *iter;
24760 unsigned i = TEMPLATE_PARM_IDX (TEMPLATE_TYPE_PARM_INDEX (elt));
24761 TREE_VEC_ELT (tree_vec, i)
24762 = build_tree_list (NULL_TREE, TYPE_NAME (elt));
24765 return tree_vec;
24768 /* The stem for deduction guide names. */
24769 const char *const dguide_base = "__dguide_";
24771 /* Return the name for a deduction guide for class template TMPL. */
24773 tree
24774 dguide_name (tree tmpl)
24776 tree type = (TYPE_P (tmpl) ? tmpl : TREE_TYPE (tmpl));
24777 tree tname = TYPE_IDENTIFIER (type);
24778 char *buf = (char *) alloca (1 + strlen (dguide_base)
24779 + IDENTIFIER_LENGTH (tname));
24780 memcpy (buf, dguide_base, strlen (dguide_base));
24781 memcpy (buf + strlen (dguide_base), IDENTIFIER_POINTER (tname),
24782 IDENTIFIER_LENGTH (tname) + 1);
24783 tree dname = get_identifier (buf);
24784 TREE_TYPE (dname) = type;
24785 return dname;
24788 /* True if NAME is the name of a deduction guide. */
24790 bool
24791 dguide_name_p (tree name)
24793 return (TREE_TYPE (name)
24794 && !strncmp (IDENTIFIER_POINTER (name), dguide_base,
24795 strlen (dguide_base)));
24798 /* True if FN is a deduction guide. */
24800 bool
24801 deduction_guide_p (tree fn)
24803 if (DECL_P (fn))
24804 if (tree name = DECL_NAME (fn))
24805 return dguide_name_p (name);
24806 return false;
24809 /* OLDDECL is a _DECL for a template parameter. Return a similar parameter at
24810 LEVEL:INDEX, using tsubst_args and complain for substitution into non-type
24811 template parameter types. Note that the handling of template template
24812 parameters relies on current_template_parms being set appropriately for the
24813 new template. */
24815 static tree
24816 rewrite_template_parm (tree olddecl, unsigned index, unsigned level,
24817 tree tsubst_args, tsubst_flags_t complain)
24819 tree oldidx = get_template_parm_index (olddecl);
24821 tree newtype;
24822 if (TREE_CODE (olddecl) == TYPE_DECL
24823 || TREE_CODE (olddecl) == TEMPLATE_DECL)
24825 tree oldtype = TREE_TYPE (olddecl);
24826 newtype = cxx_make_type (TREE_CODE (oldtype));
24827 TYPE_MAIN_VARIANT (newtype) = newtype;
24828 if (TREE_CODE (oldtype) == TEMPLATE_TYPE_PARM)
24829 TEMPLATE_TYPE_PARM_FOR_CLASS (newtype)
24830 = TEMPLATE_TYPE_PARM_FOR_CLASS (oldtype);
24832 else
24833 newtype = tsubst (TREE_TYPE (olddecl), tsubst_args,
24834 complain, NULL_TREE);
24836 tree newdecl
24837 = build_decl (DECL_SOURCE_LOCATION (olddecl), TREE_CODE (olddecl),
24838 DECL_NAME (olddecl), newtype);
24839 SET_DECL_TEMPLATE_PARM_P (newdecl);
24841 tree newidx;
24842 if (TREE_CODE (olddecl) == TYPE_DECL
24843 || TREE_CODE (olddecl) == TEMPLATE_DECL)
24845 newidx = TEMPLATE_TYPE_PARM_INDEX (newtype)
24846 = build_template_parm_index (index, level, level,
24847 newdecl, newtype);
24848 TYPE_STUB_DECL (newtype) = TYPE_NAME (newtype) = newdecl;
24849 TYPE_CANONICAL (newtype) = canonical_type_parameter (newtype);
24851 if (TREE_CODE (olddecl) == TEMPLATE_DECL)
24853 DECL_TEMPLATE_RESULT (newdecl)
24854 = build_decl (DECL_SOURCE_LOCATION (olddecl), TYPE_DECL,
24855 DECL_NAME (olddecl), newtype);
24856 DECL_ARTIFICIAL (DECL_TEMPLATE_RESULT (newdecl)) = true;
24857 // First create a copy (ttargs) of tsubst_args with an
24858 // additional level for the template template parameter's own
24859 // template parameters (ttparms).
24860 tree ttparms = (INNERMOST_TEMPLATE_PARMS
24861 (DECL_TEMPLATE_PARMS (olddecl)));
24862 const int depth = TMPL_ARGS_DEPTH (tsubst_args);
24863 tree ttargs = make_tree_vec (depth + 1);
24864 for (int i = 0; i < depth; ++i)
24865 TREE_VEC_ELT (ttargs, i) = TREE_VEC_ELT (tsubst_args, i);
24866 TREE_VEC_ELT (ttargs, depth)
24867 = template_parms_level_to_args (ttparms);
24868 // Substitute ttargs into ttparms to fix references to
24869 // other template parameters.
24870 ttparms = tsubst_template_parms_level (ttparms, ttargs,
24871 complain);
24872 // Now substitute again with args based on tparms, to reduce
24873 // the level of the ttparms.
24874 ttargs = current_template_args ();
24875 ttparms = tsubst_template_parms_level (ttparms, ttargs,
24876 complain);
24877 // Finally, tack the adjusted parms onto tparms.
24878 ttparms = tree_cons (size_int (depth), ttparms,
24879 current_template_parms);
24880 DECL_TEMPLATE_PARMS (newdecl) = ttparms;
24883 else
24885 tree oldconst = TEMPLATE_PARM_DECL (oldidx);
24886 tree newconst
24887 = build_decl (DECL_SOURCE_LOCATION (oldconst),
24888 TREE_CODE (oldconst),
24889 DECL_NAME (oldconst), newtype);
24890 TREE_CONSTANT (newconst) = TREE_CONSTANT (newdecl)
24891 = TREE_READONLY (newconst) = TREE_READONLY (newdecl) = true;
24892 SET_DECL_TEMPLATE_PARM_P (newconst);
24893 newidx = build_template_parm_index (index, level, level,
24894 newconst, newtype);
24895 DECL_INITIAL (newdecl) = DECL_INITIAL (newconst) = newidx;
24898 TEMPLATE_PARM_PARAMETER_PACK (newidx)
24899 = TEMPLATE_PARM_PARAMETER_PACK (oldidx);
24900 return newdecl;
24903 /* Returns a C++17 class deduction guide template based on the constructor
24904 CTOR. */
24906 static tree
24907 build_deduction_guide (tree ctor, tree outer_args, tsubst_flags_t complain)
24909 if (outer_args)
24910 ctor = tsubst (ctor, outer_args, complain, ctor);
24911 tree type = DECL_CONTEXT (ctor);
24912 tree fn_tmpl;
24913 if (TREE_CODE (ctor) == TEMPLATE_DECL)
24915 fn_tmpl = ctor;
24916 ctor = DECL_TEMPLATE_RESULT (fn_tmpl);
24918 else
24919 fn_tmpl = DECL_TI_TEMPLATE (ctor);
24921 tree tparms = DECL_TEMPLATE_PARMS (fn_tmpl);
24922 /* If type is a member class template, DECL_TI_ARGS (ctor) will have fully
24923 specialized args for the enclosing class. Strip those off, as the
24924 deduction guide won't have those template parameters. */
24925 tree targs = get_innermost_template_args (DECL_TI_ARGS (ctor),
24926 TMPL_PARMS_DEPTH (tparms));
24927 /* Discard the 'this' parameter. */
24928 tree fparms = FUNCTION_ARG_CHAIN (ctor);
24929 tree fargs = TREE_CHAIN (DECL_ARGUMENTS (ctor));
24930 tree ci = get_constraints (ctor);
24932 if (PRIMARY_TEMPLATE_P (fn_tmpl))
24934 /* For a member template constructor, we need to flatten the two template
24935 parameter lists into one, and then adjust the function signature
24936 accordingly. This gets...complicated. */
24937 ++processing_template_decl;
24938 tree save_parms = current_template_parms;
24940 /* For a member template we should have two levels of parms/args, one for
24941 the class and one for the constructor. We stripped specialized args
24942 for further enclosing classes above. */
24943 const int depth = 2;
24944 gcc_assert (TMPL_ARGS_DEPTH (targs) == depth);
24946 /* Template args for translating references to the two-level template
24947 parameters into references to the one-level template parameters we are
24948 creating. */
24949 tree tsubst_args = copy_node (targs);
24950 TMPL_ARGS_LEVEL (tsubst_args, depth)
24951 = copy_node (TMPL_ARGS_LEVEL (tsubst_args, depth));
24953 /* Template parms for the constructor template. */
24954 tree ftparms = TREE_VALUE (tparms);
24955 unsigned flen = TREE_VEC_LENGTH (ftparms);
24956 /* Template parms for the class template. */
24957 tparms = TREE_CHAIN (tparms);
24958 tree ctparms = TREE_VALUE (tparms);
24959 unsigned clen = TREE_VEC_LENGTH (ctparms);
24960 /* Template parms for the deduction guide start as a copy of the template
24961 parms for the class. We set current_template_parms for
24962 lookup_template_class_1. */
24963 current_template_parms = tparms = copy_node (tparms);
24964 tree new_vec = TREE_VALUE (tparms) = make_tree_vec (flen + clen);
24965 for (unsigned i = 0; i < clen; ++i)
24966 TREE_VEC_ELT (new_vec, i) = TREE_VEC_ELT (ctparms, i);
24968 /* Now we need to rewrite the constructor parms to append them to the
24969 class parms. */
24970 for (unsigned i = 0; i < flen; ++i)
24972 unsigned index = i + clen;
24973 unsigned level = 1;
24974 tree oldelt = TREE_VEC_ELT (ftparms, i);
24975 tree olddecl = TREE_VALUE (oldelt);
24976 tree newdecl = rewrite_template_parm (olddecl, index, level,
24977 tsubst_args, complain);
24978 tree newdef = tsubst_template_arg (TREE_PURPOSE (oldelt),
24979 tsubst_args, complain, ctor);
24980 tree list = build_tree_list (newdef, newdecl);
24981 TEMPLATE_PARM_CONSTRAINTS (list)
24982 = tsubst_constraint_info (TEMPLATE_PARM_CONSTRAINTS (oldelt),
24983 tsubst_args, complain, ctor);
24984 TREE_VEC_ELT (new_vec, index) = list;
24985 TMPL_ARG (tsubst_args, depth, i) = template_parm_to_arg (list);
24988 /* Now we have a final set of template parms to substitute into the
24989 function signature. */
24990 targs = template_parms_to_args (tparms);
24991 fparms = tsubst_arg_types (fparms, tsubst_args, NULL_TREE,
24992 complain, ctor);
24993 fargs = tsubst (fargs, tsubst_args, complain, ctor);
24994 if (ci)
24995 ci = tsubst_constraint_info (ci, tsubst_args, complain, ctor);
24997 current_template_parms = save_parms;
24998 --processing_template_decl;
25000 else
25002 /* Copy the parms so we can set DECL_PRIMARY_TEMPLATE. */
25003 tparms = copy_node (tparms);
25004 INNERMOST_TEMPLATE_PARMS (tparms)
25005 = copy_node (INNERMOST_TEMPLATE_PARMS (tparms));
25008 tree fntype = build_function_type (type, fparms);
25009 tree ded_fn = build_lang_decl_loc (DECL_SOURCE_LOCATION (ctor),
25010 FUNCTION_DECL,
25011 dguide_name (type), fntype);
25012 DECL_ARGUMENTS (ded_fn) = fargs;
25013 DECL_ARTIFICIAL (ded_fn) = true;
25014 tree ded_tmpl = build_template_decl (ded_fn, tparms, /*member*/false);
25015 DECL_ARTIFICIAL (ded_tmpl) = true;
25016 DECL_TEMPLATE_RESULT (ded_tmpl) = ded_fn;
25017 TREE_TYPE (ded_tmpl) = TREE_TYPE (ded_fn);
25018 DECL_TEMPLATE_INFO (ded_fn) = build_template_info (ded_tmpl, targs);
25019 DECL_PRIMARY_TEMPLATE (ded_tmpl) = ded_tmpl;
25020 if (ci)
25021 set_constraints (ded_tmpl, ci);
25023 return ded_tmpl;
25026 /* Deduce template arguments for the class template placeholder PTYPE for
25027 template TMPL based on the initializer INIT, and return the resulting
25028 type. */
25030 tree
25031 do_class_deduction (tree ptype, tree tmpl, tree init, tsubst_flags_t complain)
25033 if (!DECL_CLASS_TEMPLATE_P (tmpl))
25035 /* We should have handled this in the caller. */
25036 if (DECL_TEMPLATE_TEMPLATE_PARM_P (tmpl))
25037 return ptype;
25038 if (complain & tf_error)
25039 error ("non-class template %qT used without template arguments", tmpl);
25040 return error_mark_node;
25043 tree type = TREE_TYPE (tmpl);
25045 vec<tree,va_gc> *args;
25046 if (TREE_CODE (init) == TREE_LIST)
25047 args = make_tree_vector_from_list (init);
25048 else if (BRACE_ENCLOSED_INITIALIZER_P (init))
25049 args = make_tree_vector_from_ctor (init);
25050 else
25051 args = make_tree_vector_single (init);
25053 if (args->length() == 1)
25055 /* First try to deduce directly, since we don't have implicitly-declared
25056 constructors yet. */
25057 tree parms = build_tree_list (NULL_TREE, type);
25058 tree tparms = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (tmpl));
25059 tree targs = make_tree_vec (TREE_VEC_LENGTH (tparms));
25060 int err = type_unification_real (tparms, targs, parms, &(*args)[0],
25061 1, /*subr*/false, DEDUCE_CALL,
25062 LOOKUP_NORMAL, NULL, /*explain*/false);
25063 if (err == 0)
25064 return tsubst (type, targs, complain, tmpl);
25067 tree dname = dguide_name (tmpl);
25068 tree cands = lookup_qualified_name (CP_DECL_CONTEXT (tmpl), dname,
25069 /*type*/false, /*complain*/false,
25070 /*hidden*/false);
25071 if (cands == error_mark_node)
25072 cands = NULL_TREE;
25074 tree outer_args = NULL_TREE;
25075 if (DECL_CLASS_SCOPE_P (tmpl)
25076 && CLASSTYPE_TEMPLATE_INFO (DECL_CONTEXT (tmpl)))
25078 outer_args = CLASSTYPE_TI_ARGS (DECL_CONTEXT (tmpl));
25079 type = TREE_TYPE (most_general_template (tmpl));
25082 if (CLASSTYPE_METHOD_VEC (type))
25083 // FIXME cache artificial deduction guides
25084 for (tree fns = CLASSTYPE_CONSTRUCTORS (type); fns; fns = OVL_NEXT (fns))
25086 tree fn = OVL_CURRENT (fns);
25087 tree guide = build_deduction_guide (fn, outer_args, complain);
25088 cands = ovl_cons (guide, cands);
25091 if (cands == NULL_TREE)
25093 error ("cannot deduce template arguments for %qT, as it has "
25094 "no deduction guides or user-declared constructors", type);
25095 return error_mark_node;
25098 ++cp_unevaluated_operand;
25099 tree t = build_new_function_call (cands, &args, /*koenig*/false,
25100 complain|tf_decltype);
25101 --cp_unevaluated_operand;
25102 release_tree_vector (args);
25104 return TREE_TYPE (t);
25107 /* Replace occurrences of 'auto' in TYPE with the appropriate type deduced
25108 from INIT. AUTO_NODE is the TEMPLATE_TYPE_PARM used for 'auto' in TYPE. */
25110 tree
25111 do_auto_deduction (tree type, tree init, tree auto_node)
25113 return do_auto_deduction (type, init, auto_node,
25114 tf_warning_or_error,
25115 adc_unspecified);
25118 /* Replace occurrences of 'auto' in TYPE with the appropriate type deduced
25119 from INIT. AUTO_NODE is the TEMPLATE_TYPE_PARM used for 'auto' in TYPE.
25120 The CONTEXT determines the context in which auto deduction is performed
25121 and is used to control error diagnostics.
25123 For partial-concept-ids, extra args may be appended to the list of deduced
25124 template arguments prior to determining constraint satisfaction. */
25126 tree
25127 do_auto_deduction (tree type, tree init, tree auto_node,
25128 tsubst_flags_t complain, auto_deduction_context context,
25129 tree outer_targs)
25131 tree targs;
25133 if (init == error_mark_node)
25134 return error_mark_node;
25136 if (type_dependent_expression_p (init)
25137 && context != adc_unify)
25138 /* Defining a subset of type-dependent expressions that we can deduce
25139 from ahead of time isn't worth the trouble. */
25140 return type;
25142 if (tree tmpl = CLASS_PLACEHOLDER_TEMPLATE (auto_node))
25143 /* C++17 class template argument deduction. */
25144 return do_class_deduction (type, tmpl, init, complain);
25146 /* [dcl.spec.auto]: Obtain P from T by replacing the occurrences of auto
25147 with either a new invented type template parameter U or, if the
25148 initializer is a braced-init-list (8.5.4), with
25149 std::initializer_list<U>. */
25150 if (BRACE_ENCLOSED_INITIALIZER_P (init))
25152 if (!DIRECT_LIST_INIT_P (init))
25153 type = listify_autos (type, auto_node);
25154 else if (CONSTRUCTOR_NELTS (init) == 1)
25155 init = CONSTRUCTOR_ELT (init, 0)->value;
25156 else
25158 if (complain & tf_warning_or_error)
25160 if (permerror (input_location, "direct-list-initialization of "
25161 "%<auto%> requires exactly one element"))
25162 inform (input_location,
25163 "for deduction to %<std::initializer_list%>, use copy-"
25164 "list-initialization (i.e. add %<=%> before the %<{%>)");
25166 type = listify_autos (type, auto_node);
25170 if (type == error_mark_node)
25171 return error_mark_node;
25173 init = resolve_nondeduced_context (init, complain);
25175 if (context == adc_decomp_type
25176 && auto_node == type
25177 && init != error_mark_node
25178 && TREE_CODE (TREE_TYPE (init)) == ARRAY_TYPE)
25179 /* [dcl.decomp]/1 - if decomposition declaration has no ref-qualifiers
25180 and initializer has array type, deduce cv-qualified array type. */
25181 return cp_build_qualified_type_real (TREE_TYPE (init), TYPE_QUALS (type),
25182 complain);
25183 else if (AUTO_IS_DECLTYPE (auto_node))
25185 bool id = (DECL_P (init)
25186 || ((TREE_CODE (init) == COMPONENT_REF
25187 || TREE_CODE (init) == SCOPE_REF)
25188 && !REF_PARENTHESIZED_P (init)));
25189 targs = make_tree_vec (1);
25190 TREE_VEC_ELT (targs, 0)
25191 = finish_decltype_type (init, id, tf_warning_or_error);
25192 if (type != auto_node)
25194 if (complain & tf_error)
25195 error ("%qT as type rather than plain %<decltype(auto)%>", type);
25196 return error_mark_node;
25199 else
25201 tree parms = build_tree_list (NULL_TREE, type);
25202 tree tparms;
25204 if (flag_concepts)
25205 tparms = extract_autos (type);
25206 else
25208 tparms = make_tree_vec (1);
25209 TREE_VEC_ELT (tparms, 0)
25210 = build_tree_list (NULL_TREE, TYPE_NAME (auto_node));
25213 targs = make_tree_vec (TREE_VEC_LENGTH (tparms));
25214 int val = type_unification_real (tparms, targs, parms, &init, 1, 0,
25215 DEDUCE_CALL, LOOKUP_NORMAL,
25216 NULL, /*explain_p=*/false);
25217 if (val > 0)
25219 if (processing_template_decl)
25220 /* Try again at instantiation time. */
25221 return type;
25222 if (type && type != error_mark_node
25223 && (complain & tf_error))
25224 /* If type is error_mark_node a diagnostic must have been
25225 emitted by now. Also, having a mention to '<type error>'
25226 in the diagnostic is not really useful to the user. */
25228 if (cfun && auto_node == current_function_auto_return_pattern
25229 && LAMBDA_FUNCTION_P (current_function_decl))
25230 error ("unable to deduce lambda return type from %qE", init);
25231 else
25232 error ("unable to deduce %qT from %qE", type, init);
25233 type_unification_real (tparms, targs, parms, &init, 1, 0,
25234 DEDUCE_CALL, LOOKUP_NORMAL,
25235 NULL, /*explain_p=*/true);
25237 return error_mark_node;
25241 /* Check any placeholder constraints against the deduced type. */
25242 if (flag_concepts && !processing_template_decl)
25243 if (tree constr = PLACEHOLDER_TYPE_CONSTRAINTS (auto_node))
25245 /* Use the deduced type to check the associated constraints. If we
25246 have a partial-concept-id, rebuild the argument list so that
25247 we check using the extra arguments. */
25248 gcc_assert (TREE_CODE (constr) == CHECK_CONSTR);
25249 tree cargs = CHECK_CONSTR_ARGS (constr);
25250 if (TREE_VEC_LENGTH (cargs) > 1)
25252 cargs = copy_node (cargs);
25253 TREE_VEC_ELT (cargs, 0) = TREE_VEC_ELT (targs, 0);
25255 else
25256 cargs = targs;
25257 if (!constraints_satisfied_p (constr, cargs))
25259 if (complain & tf_warning_or_error)
25261 switch (context)
25263 case adc_unspecified:
25264 case adc_unify:
25265 error("placeholder constraints not satisfied");
25266 break;
25267 case adc_variable_type:
25268 case adc_decomp_type:
25269 error ("deduced initializer does not satisfy "
25270 "placeholder constraints");
25271 break;
25272 case adc_return_type:
25273 error ("deduced return type does not satisfy "
25274 "placeholder constraints");
25275 break;
25276 case adc_requirement:
25277 error ("deduced expression type does not satisfy "
25278 "placeholder constraints");
25279 break;
25281 diagnose_constraints (input_location, constr, targs);
25283 return error_mark_node;
25287 if (processing_template_decl && context != adc_unify)
25288 outer_targs = current_template_args ();
25289 targs = add_to_template_args (outer_targs, targs);
25290 return tsubst (type, targs, complain, NULL_TREE);
25293 /* Substitutes LATE_RETURN_TYPE for 'auto' in TYPE and returns the
25294 result. */
25296 tree
25297 splice_late_return_type (tree type, tree late_return_type)
25299 if (is_auto (type))
25301 if (late_return_type)
25302 return late_return_type;
25304 tree idx = get_template_parm_index (type);
25305 if (TEMPLATE_PARM_LEVEL (idx) <= processing_template_decl)
25306 /* In an abbreviated function template we didn't know we were dealing
25307 with a function template when we saw the auto return type, so update
25308 it to have the correct level. */
25309 return make_auto_1 (TYPE_IDENTIFIER (type), true);
25311 return type;
25314 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto' or
25315 'decltype(auto)' or a deduced class template. */
25317 bool
25318 is_auto (const_tree type)
25320 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
25321 && (TYPE_IDENTIFIER (type) == auto_identifier
25322 || TYPE_IDENTIFIER (type) == decltype_auto_identifier
25323 || CLASS_PLACEHOLDER_TEMPLATE (type)))
25324 return true;
25325 else
25326 return false;
25329 /* for_each_template_parm callback for type_uses_auto. */
25332 is_auto_r (tree tp, void */*data*/)
25334 return is_auto_or_concept (tp);
25337 /* Returns the TEMPLATE_TYPE_PARM in TYPE representing `auto' iff TYPE contains
25338 a use of `auto'. Returns NULL_TREE otherwise. */
25340 tree
25341 type_uses_auto (tree type)
25343 if (type == NULL_TREE)
25344 return NULL_TREE;
25345 else if (flag_concepts)
25347 /* The Concepts TS allows multiple autos in one type-specifier; just
25348 return the first one we find, do_auto_deduction will collect all of
25349 them. */
25350 if (uses_template_parms (type))
25351 return for_each_template_parm (type, is_auto_r, /*data*/NULL,
25352 /*visited*/NULL, /*nondeduced*/true);
25353 else
25354 return NULL_TREE;
25356 else
25357 return find_type_usage (type, is_auto);
25360 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto',
25361 'decltype(auto)' or a concept. */
25363 bool
25364 is_auto_or_concept (const_tree type)
25366 return is_auto (type); // or concept
25369 /* Returns the TEMPLATE_TYPE_PARM in TYPE representing a generic type (`auto' or
25370 a concept identifier) iff TYPE contains a use of a generic type. Returns
25371 NULL_TREE otherwise. */
25373 tree
25374 type_uses_auto_or_concept (tree type)
25376 return find_type_usage (type, is_auto_or_concept);
25380 /* For a given template T, return the vector of typedefs referenced
25381 in T for which access check is needed at T instantiation time.
25382 T is either a FUNCTION_DECL or a RECORD_TYPE.
25383 Those typedefs were added to T by the function
25384 append_type_to_template_for_access_check. */
25386 vec<qualified_typedef_usage_t, va_gc> *
25387 get_types_needing_access_check (tree t)
25389 tree ti;
25390 vec<qualified_typedef_usage_t, va_gc> *result = NULL;
25392 if (!t || t == error_mark_node)
25393 return NULL;
25395 if (!(ti = get_template_info (t)))
25396 return NULL;
25398 if (CLASS_TYPE_P (t)
25399 || TREE_CODE (t) == FUNCTION_DECL)
25401 if (!TI_TEMPLATE (ti))
25402 return NULL;
25404 result = TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti);
25407 return result;
25410 /* Append the typedef TYPE_DECL used in template T to a list of typedefs
25411 tied to T. That list of typedefs will be access checked at
25412 T instantiation time.
25413 T is either a FUNCTION_DECL or a RECORD_TYPE.
25414 TYPE_DECL is a TYPE_DECL node representing a typedef.
25415 SCOPE is the scope through which TYPE_DECL is accessed.
25416 LOCATION is the location of the usage point of TYPE_DECL.
25418 This function is a subroutine of
25419 append_type_to_template_for_access_check. */
25421 static void
25422 append_type_to_template_for_access_check_1 (tree t,
25423 tree type_decl,
25424 tree scope,
25425 location_t location)
25427 qualified_typedef_usage_t typedef_usage;
25428 tree ti;
25430 if (!t || t == error_mark_node)
25431 return;
25433 gcc_assert ((TREE_CODE (t) == FUNCTION_DECL
25434 || CLASS_TYPE_P (t))
25435 && type_decl
25436 && TREE_CODE (type_decl) == TYPE_DECL
25437 && scope);
25439 if (!(ti = get_template_info (t)))
25440 return;
25442 gcc_assert (TI_TEMPLATE (ti));
25444 typedef_usage.typedef_decl = type_decl;
25445 typedef_usage.context = scope;
25446 typedef_usage.locus = location;
25448 vec_safe_push (TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti), typedef_usage);
25451 /* Append TYPE_DECL to the template TEMPL.
25452 TEMPL is either a class type, a FUNCTION_DECL or a a TEMPLATE_DECL.
25453 At TEMPL instanciation time, TYPE_DECL will be checked to see
25454 if it can be accessed through SCOPE.
25455 LOCATION is the location of the usage point of TYPE_DECL.
25457 e.g. consider the following code snippet:
25459 class C
25461 typedef int myint;
25464 template<class U> struct S
25466 C::myint mi; // <-- usage point of the typedef C::myint
25469 S<char> s;
25471 At S<char> instantiation time, we need to check the access of C::myint
25472 In other words, we need to check the access of the myint typedef through
25473 the C scope. For that purpose, this function will add the myint typedef
25474 and the scope C through which its being accessed to a list of typedefs
25475 tied to the template S. That list will be walked at template instantiation
25476 time and access check performed on each typedefs it contains.
25477 Note that this particular code snippet should yield an error because
25478 myint is private to C. */
25480 void
25481 append_type_to_template_for_access_check (tree templ,
25482 tree type_decl,
25483 tree scope,
25484 location_t location)
25486 qualified_typedef_usage_t *iter;
25487 unsigned i;
25489 gcc_assert (type_decl && (TREE_CODE (type_decl) == TYPE_DECL));
25491 /* Make sure we don't append the type to the template twice. */
25492 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (templ), i, iter)
25493 if (iter->typedef_decl == type_decl && scope == iter->context)
25494 return;
25496 append_type_to_template_for_access_check_1 (templ, type_decl,
25497 scope, location);
25500 /* Convert the generic type parameters in PARM that match the types given in the
25501 range [START_IDX, END_IDX) from the current_template_parms into generic type
25502 packs. */
25504 tree
25505 convert_generic_types_to_packs (tree parm, int start_idx, int end_idx)
25507 tree current = current_template_parms;
25508 int depth = TMPL_PARMS_DEPTH (current);
25509 current = INNERMOST_TEMPLATE_PARMS (current);
25510 tree replacement = make_tree_vec (TREE_VEC_LENGTH (current));
25512 for (int i = 0; i < start_idx; ++i)
25513 TREE_VEC_ELT (replacement, i)
25514 = TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (current, i)));
25516 for (int i = start_idx; i < end_idx; ++i)
25518 /* Create a distinct parameter pack type from the current parm and add it
25519 to the replacement args to tsubst below into the generic function
25520 parameter. */
25522 tree o = TREE_TYPE (TREE_VALUE
25523 (TREE_VEC_ELT (current, i)));
25524 tree t = copy_type (o);
25525 TEMPLATE_TYPE_PARM_INDEX (t)
25526 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (o),
25527 o, 0, 0, tf_none);
25528 TREE_TYPE (TEMPLATE_TYPE_DECL (t)) = t;
25529 TYPE_STUB_DECL (t) = TYPE_NAME (t) = TEMPLATE_TYPE_DECL (t);
25530 TYPE_MAIN_VARIANT (t) = t;
25531 TEMPLATE_TYPE_PARAMETER_PACK (t) = true;
25532 TYPE_CANONICAL (t) = canonical_type_parameter (t);
25533 TREE_VEC_ELT (replacement, i) = t;
25534 TREE_VALUE (TREE_VEC_ELT (current, i)) = TREE_CHAIN (t);
25537 for (int i = end_idx, e = TREE_VEC_LENGTH (current); i < e; ++i)
25538 TREE_VEC_ELT (replacement, i)
25539 = TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (current, i)));
25541 /* If there are more levels then build up the replacement with the outer
25542 template parms. */
25543 if (depth > 1)
25544 replacement = add_to_template_args (template_parms_to_args
25545 (TREE_CHAIN (current_template_parms)),
25546 replacement);
25548 return tsubst (parm, replacement, tf_none, NULL_TREE);
25551 /* Entries in the decl_constraint hash table. */
25552 struct GTY((for_user)) constr_entry
25554 tree decl;
25555 tree ci;
25558 /* Hashing function and equality for constraint entries. */
25559 struct constr_hasher : ggc_ptr_hash<constr_entry>
25561 static hashval_t hash (constr_entry *e)
25563 return (hashval_t)DECL_UID (e->decl);
25566 static bool equal (constr_entry *e1, constr_entry *e2)
25568 return e1->decl == e2->decl;
25572 /* A mapping from declarations to constraint information. Note that
25573 both templates and their underlying declarations are mapped to the
25574 same constraint information.
25576 FIXME: This is defined in pt.c because garbage collection
25577 code is not being generated for constraint.cc. */
25579 static GTY (()) hash_table<constr_hasher> *decl_constraints;
25581 /* Returns the template constraints of declaration T. If T is not
25582 constrained, return NULL_TREE. Note that T must be non-null. */
25584 tree
25585 get_constraints (tree t)
25587 if (!flag_concepts)
25588 return NULL_TREE;
25590 gcc_assert (DECL_P (t));
25591 if (TREE_CODE (t) == TEMPLATE_DECL)
25592 t = DECL_TEMPLATE_RESULT (t);
25593 constr_entry elt = { t, NULL_TREE };
25594 constr_entry* found = decl_constraints->find (&elt);
25595 if (found)
25596 return found->ci;
25597 else
25598 return NULL_TREE;
25601 /* Associate the given constraint information CI with the declaration
25602 T. If T is a template, then the constraints are associated with
25603 its underlying declaration. Don't build associations if CI is
25604 NULL_TREE. */
25606 void
25607 set_constraints (tree t, tree ci)
25609 if (!ci)
25610 return;
25611 gcc_assert (t && flag_concepts);
25612 if (TREE_CODE (t) == TEMPLATE_DECL)
25613 t = DECL_TEMPLATE_RESULT (t);
25614 gcc_assert (!get_constraints (t));
25615 constr_entry elt = {t, ci};
25616 constr_entry** slot = decl_constraints->find_slot (&elt, INSERT);
25617 constr_entry* entry = ggc_alloc<constr_entry> ();
25618 *entry = elt;
25619 *slot = entry;
25622 /* Remove the associated constraints of the declaration T. */
25624 void
25625 remove_constraints (tree t)
25627 gcc_assert (DECL_P (t));
25628 if (TREE_CODE (t) == TEMPLATE_DECL)
25629 t = DECL_TEMPLATE_RESULT (t);
25631 constr_entry elt = {t, NULL_TREE};
25632 constr_entry** slot = decl_constraints->find_slot (&elt, NO_INSERT);
25633 if (slot)
25634 decl_constraints->clear_slot (slot);
25637 /* Memoized satisfaction results for declarations. This
25638 maps the pair (constraint_info, arguments) to the result computed
25639 by constraints_satisfied_p. */
25641 struct GTY((for_user)) constraint_sat_entry
25643 tree ci;
25644 tree args;
25645 tree result;
25648 /* Hashing function and equality for constraint entries. */
25650 struct constraint_sat_hasher : ggc_ptr_hash<constraint_sat_entry>
25652 static hashval_t hash (constraint_sat_entry *e)
25654 hashval_t val = iterative_hash_object(e->ci, 0);
25655 return iterative_hash_template_arg (e->args, val);
25658 static bool equal (constraint_sat_entry *e1, constraint_sat_entry *e2)
25660 return e1->ci == e2->ci && comp_template_args (e1->args, e2->args);
25664 /* Memoized satisfaction results for concept checks. */
25666 struct GTY((for_user)) concept_spec_entry
25668 tree tmpl;
25669 tree args;
25670 tree result;
25673 /* Hashing function and equality for constraint entries. */
25675 struct concept_spec_hasher : ggc_ptr_hash<concept_spec_entry>
25677 static hashval_t hash (concept_spec_entry *e)
25679 return hash_tmpl_and_args (e->tmpl, e->args);
25682 static bool equal (concept_spec_entry *e1, concept_spec_entry *e2)
25684 ++comparing_specializations;
25685 bool eq = e1->tmpl == e2->tmpl && comp_template_args (e1->args, e2->args);
25686 --comparing_specializations;
25687 return eq;
25691 static GTY (()) hash_table<constraint_sat_hasher> *constraint_memos;
25692 static GTY (()) hash_table<concept_spec_hasher> *concept_memos;
25694 /* Search for a memoized satisfaction result. Returns one of the
25695 truth value nodes if previously memoized, or NULL_TREE otherwise. */
25697 tree
25698 lookup_constraint_satisfaction (tree ci, tree args)
25700 constraint_sat_entry elt = { ci, args, NULL_TREE };
25701 constraint_sat_entry* found = constraint_memos->find (&elt);
25702 if (found)
25703 return found->result;
25704 else
25705 return NULL_TREE;
25708 /* Memoize the result of a satisfication test. Returns the saved result. */
25710 tree
25711 memoize_constraint_satisfaction (tree ci, tree args, tree result)
25713 constraint_sat_entry elt = {ci, args, result};
25714 constraint_sat_entry** slot = constraint_memos->find_slot (&elt, INSERT);
25715 constraint_sat_entry* entry = ggc_alloc<constraint_sat_entry> ();
25716 *entry = elt;
25717 *slot = entry;
25718 return result;
25721 /* Search for a memoized satisfaction result for a concept. */
25723 tree
25724 lookup_concept_satisfaction (tree tmpl, tree args)
25726 concept_spec_entry elt = { tmpl, args, NULL_TREE };
25727 concept_spec_entry* found = concept_memos->find (&elt);
25728 if (found)
25729 return found->result;
25730 else
25731 return NULL_TREE;
25734 /* Memoize the result of a concept check. Returns the saved result. */
25736 tree
25737 memoize_concept_satisfaction (tree tmpl, tree args, tree result)
25739 concept_spec_entry elt = {tmpl, args, result};
25740 concept_spec_entry** slot = concept_memos->find_slot (&elt, INSERT);
25741 concept_spec_entry* entry = ggc_alloc<concept_spec_entry> ();
25742 *entry = elt;
25743 *slot = entry;
25744 return result;
25747 static GTY (()) hash_table<concept_spec_hasher> *concept_expansions;
25749 /* Returns a prior concept specialization. This returns the substituted
25750 and normalized constraints defined by the concept. */
25752 tree
25753 get_concept_expansion (tree tmpl, tree args)
25755 concept_spec_entry elt = { tmpl, args, NULL_TREE };
25756 concept_spec_entry* found = concept_expansions->find (&elt);
25757 if (found)
25758 return found->result;
25759 else
25760 return NULL_TREE;
25763 /* Save a concept expansion for later. */
25765 tree
25766 save_concept_expansion (tree tmpl, tree args, tree def)
25768 concept_spec_entry elt = {tmpl, args, def};
25769 concept_spec_entry** slot = concept_expansions->find_slot (&elt, INSERT);
25770 concept_spec_entry* entry = ggc_alloc<concept_spec_entry> ();
25771 *entry = elt;
25772 *slot = entry;
25773 return def;
25776 static hashval_t
25777 hash_subsumption_args (tree t1, tree t2)
25779 gcc_assert (TREE_CODE (t1) == CHECK_CONSTR);
25780 gcc_assert (TREE_CODE (t2) == CHECK_CONSTR);
25781 int val = 0;
25782 val = iterative_hash_object (CHECK_CONSTR_CONCEPT (t1), val);
25783 val = iterative_hash_template_arg (CHECK_CONSTR_ARGS (t1), val);
25784 val = iterative_hash_object (CHECK_CONSTR_CONCEPT (t2), val);
25785 val = iterative_hash_template_arg (CHECK_CONSTR_ARGS (t2), val);
25786 return val;
25789 /* Compare the constraints of two subsumption entries. The LEFT1 and
25790 LEFT2 arguments comprise the first subsumption pair and the RIGHT1
25791 and RIGHT2 arguments comprise the second. These are all CHECK_CONSTRs. */
25793 static bool
25794 comp_subsumption_args (tree left1, tree left2, tree right1, tree right2)
25796 if (CHECK_CONSTR_CONCEPT (left1) == CHECK_CONSTR_CONCEPT (right1))
25797 if (CHECK_CONSTR_CONCEPT (left2) == CHECK_CONSTR_CONCEPT (right2))
25798 if (comp_template_args (CHECK_CONSTR_ARGS (left1),
25799 CHECK_CONSTR_ARGS (right1)))
25800 return comp_template_args (CHECK_CONSTR_ARGS (left2),
25801 CHECK_CONSTR_ARGS (right2));
25802 return false;
25805 /* Key/value pair for learning and memoizing subsumption results. This
25806 associates a pair of check constraints (including arguments) with
25807 a boolean value indicating the result. */
25809 struct GTY((for_user)) subsumption_entry
25811 tree t1;
25812 tree t2;
25813 bool result;
25816 /* Hashing function and equality for constraint entries. */
25818 struct subsumption_hasher : ggc_ptr_hash<subsumption_entry>
25820 static hashval_t hash (subsumption_entry *e)
25822 return hash_subsumption_args (e->t1, e->t2);
25825 static bool equal (subsumption_entry *e1, subsumption_entry *e2)
25827 ++comparing_specializations;
25828 bool eq = comp_subsumption_args(e1->t1, e1->t2, e2->t1, e2->t2);
25829 --comparing_specializations;
25830 return eq;
25834 static GTY (()) hash_table<subsumption_hasher> *subsumption_table;
25836 /* Search for a previously cached subsumption result. */
25838 bool*
25839 lookup_subsumption_result (tree t1, tree t2)
25841 subsumption_entry elt = { t1, t2, false };
25842 subsumption_entry* found = subsumption_table->find (&elt);
25843 if (found)
25844 return &found->result;
25845 else
25846 return 0;
25849 /* Save a subsumption result. */
25851 bool
25852 save_subsumption_result (tree t1, tree t2, bool result)
25854 subsumption_entry elt = {t1, t2, result};
25855 subsumption_entry** slot = subsumption_table->find_slot (&elt, INSERT);
25856 subsumption_entry* entry = ggc_alloc<subsumption_entry> ();
25857 *entry = elt;
25858 *slot = entry;
25859 return result;
25862 /* Set up the hash table for constraint association. */
25864 void
25865 init_constraint_processing (void)
25867 if (!flag_concepts)
25868 return;
25870 decl_constraints = hash_table<constr_hasher>::create_ggc(37);
25871 constraint_memos = hash_table<constraint_sat_hasher>::create_ggc(37);
25872 concept_memos = hash_table<concept_spec_hasher>::create_ggc(37);
25873 concept_expansions = hash_table<concept_spec_hasher>::create_ggc(37);
25874 subsumption_table = hash_table<subsumption_hasher>::create_ggc(37);
25877 /* Set up the hash tables for template instantiations. */
25879 void
25880 init_template_processing (void)
25882 decl_specializations = hash_table<spec_hasher>::create_ggc (37);
25883 type_specializations = hash_table<spec_hasher>::create_ggc (37);
25886 /* Print stats about the template hash tables for -fstats. */
25888 void
25889 print_template_statistics (void)
25891 fprintf (stderr, "decl_specializations: size %ld, %ld elements, "
25892 "%f collisions\n", (long) decl_specializations->size (),
25893 (long) decl_specializations->elements (),
25894 decl_specializations->collisions ());
25895 fprintf (stderr, "type_specializations: size %ld, %ld elements, "
25896 "%f collisions\n", (long) type_specializations->size (),
25897 (long) type_specializations->elements (),
25898 type_specializations->collisions ());
25901 #include "gt-cp-pt.h"