re PR c++/71737 (ICE following 2x pack expansion in non-pack with template alias)
[official-gcc.git] / gcc / cp / pt.c
blobc23c14c9e38b7b37153e5eefb6cc64be7ab4aaa4
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 CLASSTYPE_NON_AGGREGATE (type) = CLASSTYPE_NON_AGGREGATE (pattern);
10257 if (ANON_AGGR_TYPE_P (pattern))
10258 SET_ANON_AGGR_TYPE_P (type);
10259 if (CLASSTYPE_VISIBILITY_SPECIFIED (pattern))
10261 CLASSTYPE_VISIBILITY_SPECIFIED (type) = 1;
10262 CLASSTYPE_VISIBILITY (type) = CLASSTYPE_VISIBILITY (pattern);
10263 /* Adjust visibility for template arguments. */
10264 determine_visibility (TYPE_MAIN_DECL (type));
10266 if (CLASS_TYPE_P (type))
10267 CLASSTYPE_FINAL (type) = CLASSTYPE_FINAL (pattern);
10269 pbinfo = TYPE_BINFO (pattern);
10271 /* We should never instantiate a nested class before its enclosing
10272 class; we need to look up the nested class by name before we can
10273 instantiate it, and that lookup should instantiate the enclosing
10274 class. */
10275 gcc_assert (!DECL_CLASS_SCOPE_P (TYPE_MAIN_DECL (pattern))
10276 || COMPLETE_OR_OPEN_TYPE_P (TYPE_CONTEXT (type)));
10278 base_list = NULL_TREE;
10279 if (BINFO_N_BASE_BINFOS (pbinfo))
10281 tree pbase_binfo;
10282 tree pushed_scope;
10283 int i;
10285 /* We must enter the scope containing the type, as that is where
10286 the accessibility of types named in dependent bases are
10287 looked up from. */
10288 pushed_scope = push_scope (CP_TYPE_CONTEXT (type));
10290 /* Substitute into each of the bases to determine the actual
10291 basetypes. */
10292 for (i = 0; BINFO_BASE_ITERATE (pbinfo, i, pbase_binfo); i++)
10294 tree base;
10295 tree access = BINFO_BASE_ACCESS (pbinfo, i);
10296 tree expanded_bases = NULL_TREE;
10297 int idx, len = 1;
10299 if (PACK_EXPANSION_P (BINFO_TYPE (pbase_binfo)))
10301 expanded_bases =
10302 tsubst_pack_expansion (BINFO_TYPE (pbase_binfo),
10303 args, tf_error, NULL_TREE);
10304 if (expanded_bases == error_mark_node)
10305 continue;
10307 len = TREE_VEC_LENGTH (expanded_bases);
10310 for (idx = 0; idx < len; idx++)
10312 if (expanded_bases)
10313 /* Extract the already-expanded base class. */
10314 base = TREE_VEC_ELT (expanded_bases, idx);
10315 else
10316 /* Substitute to figure out the base class. */
10317 base = tsubst (BINFO_TYPE (pbase_binfo), args, tf_error,
10318 NULL_TREE);
10320 if (base == error_mark_node)
10321 continue;
10323 base_list = tree_cons (access, base, base_list);
10324 if (BINFO_VIRTUAL_P (pbase_binfo))
10325 TREE_TYPE (base_list) = integer_type_node;
10329 /* The list is now in reverse order; correct that. */
10330 base_list = nreverse (base_list);
10332 if (pushed_scope)
10333 pop_scope (pushed_scope);
10335 /* Now call xref_basetypes to set up all the base-class
10336 information. */
10337 xref_basetypes (type, base_list);
10339 apply_late_template_attributes (&type, TYPE_ATTRIBUTES (pattern),
10340 (int) ATTR_FLAG_TYPE_IN_PLACE,
10341 args, tf_error, NULL_TREE);
10342 fixup_attribute_variants (type);
10344 /* Now that our base classes are set up, enter the scope of the
10345 class, so that name lookups into base classes, etc. will work
10346 correctly. This is precisely analogous to what we do in
10347 begin_class_definition when defining an ordinary non-template
10348 class, except we also need to push the enclosing classes. */
10349 push_nested_class (type);
10351 /* Now members are processed in the order of declaration. */
10352 for (member = CLASSTYPE_DECL_LIST (pattern);
10353 member; member = TREE_CHAIN (member))
10355 tree t = TREE_VALUE (member);
10357 if (TREE_PURPOSE (member))
10359 if (TYPE_P (t))
10361 /* Build new CLASSTYPE_NESTED_UTDS. */
10363 tree newtag;
10364 bool class_template_p;
10366 class_template_p = (TREE_CODE (t) != ENUMERAL_TYPE
10367 && TYPE_LANG_SPECIFIC (t)
10368 && CLASSTYPE_IS_TEMPLATE (t));
10369 /* If the member is a class template, then -- even after
10370 substitution -- there may be dependent types in the
10371 template argument list for the class. We increment
10372 PROCESSING_TEMPLATE_DECL so that dependent_type_p, as
10373 that function will assume that no types are dependent
10374 when outside of a template. */
10375 if (class_template_p)
10376 ++processing_template_decl;
10377 newtag = tsubst (t, args, tf_error, NULL_TREE);
10378 if (class_template_p)
10379 --processing_template_decl;
10380 if (newtag == error_mark_node)
10381 continue;
10383 if (TREE_CODE (newtag) != ENUMERAL_TYPE)
10385 tree name = TYPE_IDENTIFIER (t);
10387 if (class_template_p)
10388 /* Unfortunately, lookup_template_class sets
10389 CLASSTYPE_IMPLICIT_INSTANTIATION for a partial
10390 instantiation (i.e., for the type of a member
10391 template class nested within a template class.)
10392 This behavior is required for
10393 maybe_process_partial_specialization to work
10394 correctly, but is not accurate in this case;
10395 the TAG is not an instantiation of anything.
10396 (The corresponding TEMPLATE_DECL is an
10397 instantiation, but the TYPE is not.) */
10398 CLASSTYPE_USE_TEMPLATE (newtag) = 0;
10400 /* Now, we call pushtag to put this NEWTAG into the scope of
10401 TYPE. We first set up the IDENTIFIER_TYPE_VALUE to avoid
10402 pushtag calling push_template_decl. We don't have to do
10403 this for enums because it will already have been done in
10404 tsubst_enum. */
10405 if (name)
10406 SET_IDENTIFIER_TYPE_VALUE (name, newtag);
10407 pushtag (name, newtag, /*tag_scope=*/ts_current);
10410 else if (DECL_DECLARES_FUNCTION_P (t))
10412 /* Build new TYPE_METHODS. */
10413 tree r;
10415 if (TREE_CODE (t) == TEMPLATE_DECL)
10416 ++processing_template_decl;
10417 r = tsubst (t, args, tf_error, NULL_TREE);
10418 if (TREE_CODE (t) == TEMPLATE_DECL)
10419 --processing_template_decl;
10420 set_current_access_from_decl (r);
10421 finish_member_declaration (r);
10422 /* Instantiate members marked with attribute used. */
10423 if (r != error_mark_node && DECL_PRESERVE_P (r))
10424 mark_used (r);
10425 if (TREE_CODE (r) == FUNCTION_DECL
10426 && DECL_OMP_DECLARE_REDUCTION_P (r))
10427 cp_check_omp_declare_reduction (r);
10429 else if (DECL_CLASS_TEMPLATE_P (t)
10430 && LAMBDA_TYPE_P (TREE_TYPE (t)))
10431 /* A closure type for a lambda in a default argument for a
10432 member template. Ignore it; it will be instantiated with
10433 the default argument. */;
10434 else
10436 /* Build new TYPE_FIELDS. */
10437 if (TREE_CODE (t) == STATIC_ASSERT)
10439 tree condition;
10441 ++c_inhibit_evaluation_warnings;
10442 condition =
10443 tsubst_expr (STATIC_ASSERT_CONDITION (t), args,
10444 tf_warning_or_error, NULL_TREE,
10445 /*integral_constant_expression_p=*/true);
10446 --c_inhibit_evaluation_warnings;
10448 finish_static_assert (condition,
10449 STATIC_ASSERT_MESSAGE (t),
10450 STATIC_ASSERT_SOURCE_LOCATION (t),
10451 /*member_p=*/true);
10453 else if (TREE_CODE (t) != CONST_DECL)
10455 tree r;
10456 tree vec = NULL_TREE;
10457 int len = 1;
10459 /* The file and line for this declaration, to
10460 assist in error message reporting. Since we
10461 called push_tinst_level above, we don't need to
10462 restore these. */
10463 input_location = DECL_SOURCE_LOCATION (t);
10465 if (TREE_CODE (t) == TEMPLATE_DECL)
10466 ++processing_template_decl;
10467 r = tsubst (t, args, tf_warning_or_error, NULL_TREE);
10468 if (TREE_CODE (t) == TEMPLATE_DECL)
10469 --processing_template_decl;
10471 if (TREE_CODE (r) == TREE_VEC)
10473 /* A capture pack became multiple fields. */
10474 vec = r;
10475 len = TREE_VEC_LENGTH (vec);
10478 for (int i = 0; i < len; ++i)
10480 if (vec)
10481 r = TREE_VEC_ELT (vec, i);
10482 if (VAR_P (r))
10484 /* In [temp.inst]:
10486 [t]he initialization (and any associated
10487 side-effects) of a static data member does
10488 not occur unless the static data member is
10489 itself used in a way that requires the
10490 definition of the static data member to
10491 exist.
10493 Therefore, we do not substitute into the
10494 initialized for the static data member here. */
10495 finish_static_data_member_decl
10497 /*init=*/NULL_TREE,
10498 /*init_const_expr_p=*/false,
10499 /*asmspec_tree=*/NULL_TREE,
10500 /*flags=*/0);
10501 /* Instantiate members marked with attribute used. */
10502 if (r != error_mark_node && DECL_PRESERVE_P (r))
10503 mark_used (r);
10505 else if (TREE_CODE (r) == FIELD_DECL)
10507 /* Determine whether R has a valid type and can be
10508 completed later. If R is invalid, then its type
10509 is replaced by error_mark_node. */
10510 tree rtype = TREE_TYPE (r);
10511 if (can_complete_type_without_circularity (rtype))
10512 complete_type (rtype);
10514 if (!complete_or_array_type_p (rtype))
10516 /* If R's type couldn't be completed and
10517 it isn't a flexible array member (whose
10518 type is incomplete by definition) give
10519 an error. */
10520 cxx_incomplete_type_error (r, rtype);
10521 TREE_TYPE (r) = error_mark_node;
10525 /* If it is a TYPE_DECL for a class-scoped ENUMERAL_TYPE,
10526 such a thing will already have been added to the field
10527 list by tsubst_enum in finish_member_declaration in the
10528 CLASSTYPE_NESTED_UTDS case above. */
10529 if (!(TREE_CODE (r) == TYPE_DECL
10530 && TREE_CODE (TREE_TYPE (r)) == ENUMERAL_TYPE
10531 && DECL_ARTIFICIAL (r)))
10533 set_current_access_from_decl (r);
10534 finish_member_declaration (r);
10540 else
10542 if (TYPE_P (t) || DECL_CLASS_TEMPLATE_P (t)
10543 || DECL_TEMPLATE_TEMPLATE_PARM_P (t))
10545 /* Build new CLASSTYPE_FRIEND_CLASSES. */
10547 tree friend_type = t;
10548 bool adjust_processing_template_decl = false;
10550 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
10552 /* template <class T> friend class C; */
10553 friend_type = tsubst_friend_class (friend_type, args);
10554 adjust_processing_template_decl = true;
10556 else if (TREE_CODE (friend_type) == UNBOUND_CLASS_TEMPLATE)
10558 /* template <class T> friend class C::D; */
10559 friend_type = tsubst (friend_type, args,
10560 tf_warning_or_error, NULL_TREE);
10561 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
10562 friend_type = TREE_TYPE (friend_type);
10563 adjust_processing_template_decl = true;
10565 else if (TREE_CODE (friend_type) == TYPENAME_TYPE
10566 || TREE_CODE (friend_type) == TEMPLATE_TYPE_PARM)
10568 /* This could be either
10570 friend class T::C;
10572 when dependent_type_p is false or
10574 template <class U> friend class T::C;
10576 otherwise. */
10577 /* Bump processing_template_decl in case this is something like
10578 template <class T> friend struct A<T>::B. */
10579 ++processing_template_decl;
10580 friend_type = tsubst (friend_type, args,
10581 tf_warning_or_error, NULL_TREE);
10582 if (dependent_type_p (friend_type))
10583 adjust_processing_template_decl = true;
10584 --processing_template_decl;
10586 else if (!CLASSTYPE_USE_TEMPLATE (friend_type)
10587 && hidden_name_p (TYPE_NAME (friend_type)))
10589 /* friend class C;
10591 where C hasn't been declared yet. Let's lookup name
10592 from namespace scope directly, bypassing any name that
10593 come from dependent base class. */
10594 tree ns = decl_namespace_context (TYPE_MAIN_DECL (friend_type));
10596 /* The call to xref_tag_from_type does injection for friend
10597 classes. */
10598 push_nested_namespace (ns);
10599 friend_type =
10600 xref_tag_from_type (friend_type, NULL_TREE,
10601 /*tag_scope=*/ts_current);
10602 pop_nested_namespace (ns);
10604 else if (uses_template_parms (friend_type))
10605 /* friend class C<T>; */
10606 friend_type = tsubst (friend_type, args,
10607 tf_warning_or_error, NULL_TREE);
10608 /* Otherwise it's
10610 friend class C;
10612 where C is already declared or
10614 friend class C<int>;
10616 We don't have to do anything in these cases. */
10618 if (adjust_processing_template_decl)
10619 /* Trick make_friend_class into realizing that the friend
10620 we're adding is a template, not an ordinary class. It's
10621 important that we use make_friend_class since it will
10622 perform some error-checking and output cross-reference
10623 information. */
10624 ++processing_template_decl;
10626 if (friend_type != error_mark_node)
10627 make_friend_class (type, friend_type, /*complain=*/false);
10629 if (adjust_processing_template_decl)
10630 --processing_template_decl;
10632 else
10634 /* Build new DECL_FRIENDLIST. */
10635 tree r;
10637 /* The file and line for this declaration, to
10638 assist in error message reporting. Since we
10639 called push_tinst_level above, we don't need to
10640 restore these. */
10641 input_location = DECL_SOURCE_LOCATION (t);
10643 if (TREE_CODE (t) == TEMPLATE_DECL)
10645 ++processing_template_decl;
10646 push_deferring_access_checks (dk_no_check);
10649 r = tsubst_friend_function (t, args);
10650 add_friend (type, r, /*complain=*/false);
10651 if (TREE_CODE (t) == TEMPLATE_DECL)
10653 pop_deferring_access_checks ();
10654 --processing_template_decl;
10660 if (fn_context)
10662 /* Restore these before substituting into the lambda capture
10663 initializers. */
10664 cp_unevaluated_operand = saved_unevaluated_operand;
10665 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
10668 if (tree expr = CLASSTYPE_LAMBDA_EXPR (type))
10670 tree decl = lambda_function (type);
10671 if (decl)
10673 if (cxx_dialect >= cxx1z)
10674 CLASSTYPE_LITERAL_P (type) = true;
10676 if (!DECL_TEMPLATE_INFO (decl)
10677 || DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (decl)) != decl)
10679 /* Set function_depth to avoid garbage collection. */
10680 ++function_depth;
10681 instantiate_decl (decl, /*defer_ok=*/false, false);
10682 --function_depth;
10685 /* We need to instantiate the capture list from the template
10686 after we've instantiated the closure members, but before we
10687 consider adding the conversion op. Also keep any captures
10688 that may have been added during instantiation of the op(). */
10689 tree tmpl_expr = CLASSTYPE_LAMBDA_EXPR (pattern);
10690 tree tmpl_cap
10691 = tsubst_copy_and_build (LAMBDA_EXPR_CAPTURE_LIST (tmpl_expr),
10692 args, tf_warning_or_error, NULL_TREE,
10693 false, false);
10695 LAMBDA_EXPR_CAPTURE_LIST (expr)
10696 = chainon (tmpl_cap, nreverse (LAMBDA_EXPR_CAPTURE_LIST (expr)));
10698 maybe_add_lambda_conv_op (type);
10700 else
10701 gcc_assert (errorcount);
10704 /* Set the file and line number information to whatever is given for
10705 the class itself. This puts error messages involving generated
10706 implicit functions at a predictable point, and the same point
10707 that would be used for non-template classes. */
10708 input_location = DECL_SOURCE_LOCATION (typedecl);
10710 unreverse_member_declarations (type);
10711 finish_struct_1 (type);
10712 TYPE_BEING_DEFINED (type) = 0;
10714 /* We don't instantiate default arguments for member functions. 14.7.1:
10716 The implicit instantiation of a class template specialization causes
10717 the implicit instantiation of the declarations, but not of the
10718 definitions or default arguments, of the class member functions,
10719 member classes, static data members and member templates.... */
10721 /* Some typedefs referenced from within the template code need to be access
10722 checked at template instantiation time, i.e now. These types were
10723 added to the template at parsing time. Let's get those and perform
10724 the access checks then. */
10725 perform_typedefs_access_check (pattern, args);
10726 perform_deferred_access_checks (tf_warning_or_error);
10727 pop_nested_class ();
10728 maximum_field_alignment = saved_maximum_field_alignment;
10729 if (!fn_context)
10730 pop_from_top_level ();
10731 pop_deferring_access_checks ();
10732 pop_tinst_level ();
10734 /* The vtable for a template class can be emitted in any translation
10735 unit in which the class is instantiated. When there is no key
10736 method, however, finish_struct_1 will already have added TYPE to
10737 the keyed_classes list. */
10738 if (TYPE_CONTAINS_VPTR_P (type) && CLASSTYPE_KEY_METHOD (type))
10739 keyed_classes = tree_cons (NULL_TREE, type, keyed_classes);
10741 return type;
10744 /* Wrapper for instantiate_class_template_1. */
10746 tree
10747 instantiate_class_template (tree type)
10749 tree ret;
10750 timevar_push (TV_TEMPLATE_INST);
10751 ret = instantiate_class_template_1 (type);
10752 timevar_pop (TV_TEMPLATE_INST);
10753 return ret;
10756 static tree
10757 tsubst_template_arg (tree t, tree args, tsubst_flags_t complain, tree in_decl)
10759 tree r;
10761 if (!t)
10762 r = t;
10763 else if (TYPE_P (t))
10764 r = tsubst (t, args, complain, in_decl);
10765 else
10767 if (!(complain & tf_warning))
10768 ++c_inhibit_evaluation_warnings;
10769 r = tsubst_expr (t, args, complain, in_decl,
10770 /*integral_constant_expression_p=*/true);
10771 if (!(complain & tf_warning))
10772 --c_inhibit_evaluation_warnings;
10774 return r;
10777 /* Given a function parameter pack TMPL_PARM and some function parameters
10778 instantiated from it at *SPEC_P, return a NONTYPE_ARGUMENT_PACK of them
10779 and set *SPEC_P to point at the next point in the list. */
10781 tree
10782 extract_fnparm_pack (tree tmpl_parm, tree *spec_p)
10784 /* Collect all of the extra "packed" parameters into an
10785 argument pack. */
10786 tree parmvec;
10787 tree parmtypevec;
10788 tree argpack = make_node (NONTYPE_ARGUMENT_PACK);
10789 tree argtypepack = cxx_make_type (TYPE_ARGUMENT_PACK);
10790 tree spec_parm = *spec_p;
10791 int i, len;
10793 for (len = 0; spec_parm; ++len, spec_parm = TREE_CHAIN (spec_parm))
10794 if (tmpl_parm
10795 && !function_parameter_expanded_from_pack_p (spec_parm, tmpl_parm))
10796 break;
10798 /* Fill in PARMVEC and PARMTYPEVEC with all of the parameters. */
10799 parmvec = make_tree_vec (len);
10800 parmtypevec = make_tree_vec (len);
10801 spec_parm = *spec_p;
10802 for (i = 0; i < len; i++, spec_parm = DECL_CHAIN (spec_parm))
10804 TREE_VEC_ELT (parmvec, i) = spec_parm;
10805 TREE_VEC_ELT (parmtypevec, i) = TREE_TYPE (spec_parm);
10808 /* Build the argument packs. */
10809 SET_ARGUMENT_PACK_ARGS (argpack, parmvec);
10810 SET_ARGUMENT_PACK_ARGS (argtypepack, parmtypevec);
10811 TREE_TYPE (argpack) = argtypepack;
10812 *spec_p = spec_parm;
10814 return argpack;
10817 /* Give a chain SPEC_PARM of PARM_DECLs, pack them into a
10818 NONTYPE_ARGUMENT_PACK. */
10820 static tree
10821 make_fnparm_pack (tree spec_parm)
10823 return extract_fnparm_pack (NULL_TREE, &spec_parm);
10826 /* Return 1 if the Ith element of the argument pack ARG_PACK is a
10827 pack expansion with no extra args, 2 if it has extra args, or 0
10828 if it is not a pack expansion. */
10830 static int
10831 argument_pack_element_is_expansion_p (tree arg_pack, int i)
10833 tree vec = ARGUMENT_PACK_ARGS (arg_pack);
10834 if (i >= TREE_VEC_LENGTH (vec))
10835 return 0;
10836 tree elt = TREE_VEC_ELT (vec, i);
10837 if (DECL_P (elt))
10838 /* A decl pack is itself an expansion. */
10839 elt = TREE_TYPE (elt);
10840 if (!PACK_EXPANSION_P (elt))
10841 return 0;
10842 if (PACK_EXPANSION_EXTRA_ARGS (elt))
10843 return 2;
10844 return 1;
10848 /* Creates and return an ARGUMENT_PACK_SELECT tree node. */
10850 static tree
10851 make_argument_pack_select (tree arg_pack, unsigned index)
10853 tree aps = make_node (ARGUMENT_PACK_SELECT);
10855 ARGUMENT_PACK_SELECT_FROM_PACK (aps) = arg_pack;
10856 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
10858 return aps;
10861 /* This is a subroutine of tsubst_pack_expansion.
10863 It returns TRUE if we need to use the PACK_EXPANSION_EXTRA_ARGS
10864 mechanism to store the (non complete list of) arguments of the
10865 substitution and return a non substituted pack expansion, in order
10866 to wait for when we have enough arguments to really perform the
10867 substitution. */
10869 static bool
10870 use_pack_expansion_extra_args_p (tree parm_packs,
10871 int arg_pack_len,
10872 bool has_empty_arg)
10874 /* If one pack has an expansion and another pack has a normal
10875 argument or if one pack has an empty argument and an another
10876 one hasn't then tsubst_pack_expansion cannot perform the
10877 substitution and need to fall back on the
10878 PACK_EXPANSION_EXTRA mechanism. */
10879 if (parm_packs == NULL_TREE)
10880 return false;
10881 else if (has_empty_arg)
10882 return true;
10884 bool has_expansion_arg = false;
10885 for (int i = 0 ; i < arg_pack_len; ++i)
10887 bool has_non_expansion_arg = false;
10888 for (tree parm_pack = parm_packs;
10889 parm_pack;
10890 parm_pack = TREE_CHAIN (parm_pack))
10892 tree arg = TREE_VALUE (parm_pack);
10894 int exp = argument_pack_element_is_expansion_p (arg, i);
10895 if (exp == 2)
10896 /* We can't substitute a pack expansion with extra args into
10897 our pattern. */
10898 return true;
10899 else if (exp)
10900 has_expansion_arg = true;
10901 else
10902 has_non_expansion_arg = true;
10905 if (has_expansion_arg && has_non_expansion_arg)
10906 return true;
10908 return false;
10911 /* [temp.variadic]/6 says that:
10913 The instantiation of a pack expansion [...]
10914 produces a list E1,E2, ..., En, where N is the number of elements
10915 in the pack expansion parameters.
10917 This subroutine of tsubst_pack_expansion produces one of these Ei.
10919 PATTERN is the pattern of the pack expansion. PARM_PACKS is a
10920 TREE_LIST in which each TREE_PURPOSE is a parameter pack of
10921 PATTERN, and each TREE_VALUE is its corresponding argument pack.
10922 INDEX is the index 'i' of the element Ei to produce. ARGS,
10923 COMPLAIN, and IN_DECL are the same parameters as for the
10924 tsubst_pack_expansion function.
10926 The function returns the resulting Ei upon successful completion,
10927 or error_mark_node.
10929 Note that this function possibly modifies the ARGS parameter, so
10930 it's the responsibility of the caller to restore it. */
10932 static tree
10933 gen_elem_of_pack_expansion_instantiation (tree pattern,
10934 tree parm_packs,
10935 unsigned index,
10936 tree args /* This parm gets
10937 modified. */,
10938 tsubst_flags_t complain,
10939 tree in_decl)
10941 tree t;
10942 bool ith_elem_is_expansion = false;
10944 /* For each parameter pack, change the substitution of the parameter
10945 pack to the ith argument in its argument pack, then expand the
10946 pattern. */
10947 for (tree pack = parm_packs; pack; pack = TREE_CHAIN (pack))
10949 tree parm = TREE_PURPOSE (pack);
10950 tree arg_pack = TREE_VALUE (pack);
10951 tree aps; /* instance of ARGUMENT_PACK_SELECT. */
10953 ith_elem_is_expansion |=
10954 argument_pack_element_is_expansion_p (arg_pack, index);
10956 /* Select the Ith argument from the pack. */
10957 if (TREE_CODE (parm) == PARM_DECL
10958 || TREE_CODE (parm) == FIELD_DECL)
10960 if (index == 0)
10962 aps = make_argument_pack_select (arg_pack, index);
10963 if (!mark_used (parm, complain) && !(complain & tf_error))
10964 return error_mark_node;
10965 register_local_specialization (aps, parm);
10967 else
10968 aps = retrieve_local_specialization (parm);
10970 else
10972 int idx, level;
10973 template_parm_level_and_index (parm, &level, &idx);
10975 if (index == 0)
10977 aps = make_argument_pack_select (arg_pack, index);
10978 /* Update the corresponding argument. */
10979 TMPL_ARG (args, level, idx) = aps;
10981 else
10982 /* Re-use the ARGUMENT_PACK_SELECT. */
10983 aps = TMPL_ARG (args, level, idx);
10985 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
10988 /* Substitute into the PATTERN with the (possibly altered)
10989 arguments. */
10990 if (pattern == in_decl)
10991 /* Expanding a fixed parameter pack from
10992 coerce_template_parameter_pack. */
10993 t = tsubst_decl (pattern, args, complain);
10994 else if (pattern == error_mark_node)
10995 t = error_mark_node;
10996 else if (constraint_p (pattern))
10998 if (processing_template_decl)
10999 t = tsubst_constraint (pattern, args, complain, in_decl);
11000 else
11001 t = (constraints_satisfied_p (pattern, args)
11002 ? boolean_true_node : boolean_false_node);
11004 else if (!TYPE_P (pattern))
11005 t = tsubst_expr (pattern, args, complain, in_decl,
11006 /*integral_constant_expression_p=*/false);
11007 else
11008 t = tsubst (pattern, args, complain, in_decl);
11010 /* If the Ith argument pack element is a pack expansion, then
11011 the Ith element resulting from the substituting is going to
11012 be a pack expansion as well. */
11013 if (ith_elem_is_expansion)
11014 t = make_pack_expansion (t);
11016 return t;
11019 /* When the unexpanded parameter pack in a fold expression expands to an empty
11020 sequence, the value of the expression is as follows; the program is
11021 ill-formed if the operator is not listed in this table.
11023 && true
11024 || false
11025 , void() */
11027 tree
11028 expand_empty_fold (tree t, tsubst_flags_t complain)
11030 tree_code code = (tree_code)TREE_INT_CST_LOW (TREE_OPERAND (t, 0));
11031 if (!FOLD_EXPR_MODIFY_P (t))
11032 switch (code)
11034 case TRUTH_ANDIF_EXPR:
11035 return boolean_true_node;
11036 case TRUTH_ORIF_EXPR:
11037 return boolean_false_node;
11038 case COMPOUND_EXPR:
11039 return void_node;
11040 default:
11041 break;
11044 if (complain & tf_error)
11045 error_at (location_of (t),
11046 "fold of empty expansion over %O", code);
11047 return error_mark_node;
11050 /* Given a fold-expression T and a current LEFT and RIGHT operand,
11051 form an expression that combines the two terms using the
11052 operator of T. */
11054 static tree
11055 fold_expression (tree t, tree left, tree right, tsubst_flags_t complain)
11057 tree op = FOLD_EXPR_OP (t);
11058 tree_code code = (tree_code)TREE_INT_CST_LOW (op);
11060 // Handle compound assignment operators.
11061 if (FOLD_EXPR_MODIFY_P (t))
11062 return build_x_modify_expr (input_location, left, code, right, complain);
11064 switch (code)
11066 case COMPOUND_EXPR:
11067 return build_x_compound_expr (input_location, left, right, complain);
11068 case DOTSTAR_EXPR:
11069 return build_m_component_ref (left, right, complain);
11070 default:
11071 return build_x_binary_op (input_location, code,
11072 left, TREE_CODE (left),
11073 right, TREE_CODE (right),
11074 /*overload=*/NULL,
11075 complain);
11079 /* Substitute ARGS into the pack of a fold expression T. */
11081 static inline tree
11082 tsubst_fold_expr_pack (tree t, tree args, tsubst_flags_t complain, tree in_decl)
11084 return tsubst_pack_expansion (FOLD_EXPR_PACK (t), args, complain, in_decl);
11087 /* Substitute ARGS into the pack of a fold expression T. */
11089 static inline tree
11090 tsubst_fold_expr_init (tree t, tree args, tsubst_flags_t complain, tree in_decl)
11092 return tsubst_expr (FOLD_EXPR_INIT (t), args, complain, in_decl, false);
11095 /* Expand a PACK of arguments into a grouped as left fold.
11096 Given a pack containing elements A0, A1, ..., An and an
11097 operator @, this builds the expression:
11099 ((A0 @ A1) @ A2) ... @ An
11101 Note that PACK must not be empty.
11103 The operator is defined by the original fold expression T. */
11105 static tree
11106 expand_left_fold (tree t, tree pack, tsubst_flags_t complain)
11108 tree left = TREE_VEC_ELT (pack, 0);
11109 for (int i = 1; i < TREE_VEC_LENGTH (pack); ++i)
11111 tree right = TREE_VEC_ELT (pack, i);
11112 left = fold_expression (t, left, right, complain);
11114 return left;
11117 /* Substitute into a unary left fold expression. */
11119 static tree
11120 tsubst_unary_left_fold (tree t, tree args, tsubst_flags_t complain,
11121 tree in_decl)
11123 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
11124 if (pack == error_mark_node)
11125 return error_mark_node;
11126 if (PACK_EXPANSION_P (pack))
11128 tree r = copy_node (t);
11129 FOLD_EXPR_PACK (r) = pack;
11130 return r;
11132 if (TREE_VEC_LENGTH (pack) == 0)
11133 return expand_empty_fold (t, complain);
11134 else
11135 return expand_left_fold (t, pack, complain);
11138 /* Substitute into a binary left fold expression.
11140 Do ths by building a single (non-empty) vector of argumnts and
11141 building the expression from those elements. */
11143 static tree
11144 tsubst_binary_left_fold (tree t, tree args, tsubst_flags_t complain,
11145 tree in_decl)
11147 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
11148 if (pack == error_mark_node)
11149 return error_mark_node;
11150 tree init = tsubst_fold_expr_init (t, args, complain, in_decl);
11151 if (init == error_mark_node)
11152 return error_mark_node;
11154 if (PACK_EXPANSION_P (pack))
11156 tree r = copy_node (t);
11157 FOLD_EXPR_PACK (r) = pack;
11158 FOLD_EXPR_INIT (r) = init;
11159 return r;
11162 tree vec = make_tree_vec (TREE_VEC_LENGTH (pack) + 1);
11163 TREE_VEC_ELT (vec, 0) = init;
11164 for (int i = 0; i < TREE_VEC_LENGTH (pack); ++i)
11165 TREE_VEC_ELT (vec, i + 1) = TREE_VEC_ELT (pack, i);
11167 return expand_left_fold (t, vec, complain);
11170 /* Expand a PACK of arguments into a grouped as right fold.
11171 Given a pack containing elementns A0, A1, ..., and an
11172 operator @, this builds the expression:
11174 A0@ ... (An-2 @ (An-1 @ An))
11176 Note that PACK must not be empty.
11178 The operator is defined by the original fold expression T. */
11180 tree
11181 expand_right_fold (tree t, tree pack, tsubst_flags_t complain)
11183 // Build the expression.
11184 int n = TREE_VEC_LENGTH (pack);
11185 tree right = TREE_VEC_ELT (pack, n - 1);
11186 for (--n; n != 0; --n)
11188 tree left = TREE_VEC_ELT (pack, n - 1);
11189 right = fold_expression (t, left, right, complain);
11191 return right;
11194 /* Substitute into a unary right fold expression. */
11196 static tree
11197 tsubst_unary_right_fold (tree t, tree args, tsubst_flags_t complain,
11198 tree in_decl)
11200 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
11201 if (pack == error_mark_node)
11202 return error_mark_node;
11203 if (PACK_EXPANSION_P (pack))
11205 tree r = copy_node (t);
11206 FOLD_EXPR_PACK (r) = pack;
11207 return r;
11209 if (TREE_VEC_LENGTH (pack) == 0)
11210 return expand_empty_fold (t, complain);
11211 else
11212 return expand_right_fold (t, pack, complain);
11215 /* Substitute into a binary right fold expression.
11217 Do ths by building a single (non-empty) vector of arguments and
11218 building the expression from those elements. */
11220 static tree
11221 tsubst_binary_right_fold (tree t, tree args, tsubst_flags_t complain,
11222 tree in_decl)
11224 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
11225 if (pack == error_mark_node)
11226 return error_mark_node;
11227 tree init = tsubst_fold_expr_init (t, args, complain, in_decl);
11228 if (init == error_mark_node)
11229 return error_mark_node;
11231 if (PACK_EXPANSION_P (pack))
11233 tree r = copy_node (t);
11234 FOLD_EXPR_PACK (r) = pack;
11235 FOLD_EXPR_INIT (r) = init;
11236 return r;
11239 int n = TREE_VEC_LENGTH (pack);
11240 tree vec = make_tree_vec (n + 1);
11241 for (int i = 0; i < n; ++i)
11242 TREE_VEC_ELT (vec, i) = TREE_VEC_ELT (pack, i);
11243 TREE_VEC_ELT (vec, n) = init;
11245 return expand_right_fold (t, vec, complain);
11249 /* Substitute ARGS into T, which is an pack expansion
11250 (i.e. TYPE_PACK_EXPANSION or EXPR_PACK_EXPANSION). Returns a
11251 TREE_VEC with the substituted arguments, a PACK_EXPANSION_* node
11252 (if only a partial substitution could be performed) or
11253 ERROR_MARK_NODE if there was an error. */
11254 tree
11255 tsubst_pack_expansion (tree t, tree args, tsubst_flags_t complain,
11256 tree in_decl)
11258 tree pattern;
11259 tree pack, packs = NULL_TREE;
11260 bool unsubstituted_packs = false;
11261 int i, len = -1;
11262 tree result;
11263 hash_map<tree, tree> *saved_local_specializations = NULL;
11264 bool need_local_specializations = false;
11265 int levels;
11267 gcc_assert (PACK_EXPANSION_P (t));
11268 pattern = PACK_EXPANSION_PATTERN (t);
11270 /* Add in any args remembered from an earlier partial instantiation. */
11271 args = add_to_template_args (PACK_EXPANSION_EXTRA_ARGS (t), args);
11273 levels = TMPL_ARGS_DEPTH (args);
11275 /* Determine the argument packs that will instantiate the parameter
11276 packs used in the expansion expression. While we're at it,
11277 compute the number of arguments to be expanded and make sure it
11278 is consistent. */
11279 for (pack = PACK_EXPANSION_PARAMETER_PACKS (t); pack;
11280 pack = TREE_CHAIN (pack))
11282 tree parm_pack = TREE_VALUE (pack);
11283 tree arg_pack = NULL_TREE;
11284 tree orig_arg = NULL_TREE;
11285 int level = 0;
11287 if (TREE_CODE (parm_pack) == BASES)
11289 if (BASES_DIRECT (parm_pack))
11290 return calculate_direct_bases (tsubst_expr (BASES_TYPE (parm_pack),
11291 args, complain, in_decl, false));
11292 else
11293 return calculate_bases (tsubst_expr (BASES_TYPE (parm_pack),
11294 args, complain, in_decl, false));
11296 if (TREE_CODE (parm_pack) == PARM_DECL)
11298 /* We know we have correct local_specializations if this
11299 expansion is at function scope, or if we're dealing with a
11300 local parameter in a requires expression; for the latter,
11301 tsubst_requires_expr set it up appropriately. */
11302 if (PACK_EXPANSION_LOCAL_P (t) || CONSTRAINT_VAR_P (parm_pack))
11303 arg_pack = retrieve_local_specialization (parm_pack);
11304 else
11305 /* We can't rely on local_specializations for a parameter
11306 name used later in a function declaration (such as in a
11307 late-specified return type). Even if it exists, it might
11308 have the wrong value for a recursive call. */
11309 need_local_specializations = true;
11311 if (!arg_pack)
11313 /* This parameter pack was used in an unevaluated context. Just
11314 make a dummy decl, since it's only used for its type. */
11315 arg_pack = tsubst_decl (parm_pack, args, complain);
11316 if (arg_pack && DECL_PACK_P (arg_pack))
11317 /* Partial instantiation of the parm_pack, we can't build
11318 up an argument pack yet. */
11319 arg_pack = NULL_TREE;
11320 else
11321 arg_pack = make_fnparm_pack (arg_pack);
11324 else if (TREE_CODE (parm_pack) == FIELD_DECL)
11325 arg_pack = tsubst_copy (parm_pack, args, complain, in_decl);
11326 else
11328 int idx;
11329 template_parm_level_and_index (parm_pack, &level, &idx);
11331 if (level <= levels)
11332 arg_pack = TMPL_ARG (args, level, idx);
11335 orig_arg = arg_pack;
11336 if (arg_pack && TREE_CODE (arg_pack) == ARGUMENT_PACK_SELECT)
11337 arg_pack = ARGUMENT_PACK_SELECT_FROM_PACK (arg_pack);
11339 if (arg_pack && !ARGUMENT_PACK_P (arg_pack))
11340 /* This can only happen if we forget to expand an argument
11341 pack somewhere else. Just return an error, silently. */
11343 result = make_tree_vec (1);
11344 TREE_VEC_ELT (result, 0) = error_mark_node;
11345 return result;
11348 if (arg_pack)
11350 int my_len =
11351 TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg_pack));
11353 /* Don't bother trying to do a partial substitution with
11354 incomplete packs; we'll try again after deduction. */
11355 if (ARGUMENT_PACK_INCOMPLETE_P (arg_pack))
11356 return t;
11358 if (len < 0)
11359 len = my_len;
11360 else if (len != my_len)
11362 if (!(complain & tf_error))
11363 /* Fail quietly. */;
11364 else if (TREE_CODE (t) == TYPE_PACK_EXPANSION)
11365 error ("mismatched argument pack lengths while expanding "
11366 "%<%T%>",
11367 pattern);
11368 else
11369 error ("mismatched argument pack lengths while expanding "
11370 "%<%E%>",
11371 pattern);
11372 return error_mark_node;
11375 /* Keep track of the parameter packs and their corresponding
11376 argument packs. */
11377 packs = tree_cons (parm_pack, arg_pack, packs);
11378 TREE_TYPE (packs) = orig_arg;
11380 else
11382 /* We can't substitute for this parameter pack. We use a flag as
11383 well as the missing_level counter because function parameter
11384 packs don't have a level. */
11385 gcc_assert (processing_template_decl);
11386 unsubstituted_packs = true;
11390 /* If the expansion is just T..., return the matching argument pack, unless
11391 we need to call convert_from_reference on all the elements. This is an
11392 important optimization; see c++/68422. */
11393 if (!unsubstituted_packs
11394 && TREE_PURPOSE (packs) == pattern)
11396 tree args = ARGUMENT_PACK_ARGS (TREE_VALUE (packs));
11397 /* Types need no adjustment, nor does sizeof..., and if we still have
11398 some pack expansion args we won't do anything yet. */
11399 if (TREE_CODE (t) == TYPE_PACK_EXPANSION
11400 || PACK_EXPANSION_SIZEOF_P (t)
11401 || pack_expansion_args_count (args))
11402 return args;
11403 /* Also optimize expression pack expansions if we can tell that the
11404 elements won't have reference type. */
11405 tree type = TREE_TYPE (pattern);
11406 if (type && TREE_CODE (type) != REFERENCE_TYPE
11407 && !PACK_EXPANSION_P (type)
11408 && !WILDCARD_TYPE_P (type))
11409 return args;
11410 /* Otherwise use the normal path so we get convert_from_reference. */
11413 /* We cannot expand this expansion expression, because we don't have
11414 all of the argument packs we need. */
11415 if (use_pack_expansion_extra_args_p (packs, len, unsubstituted_packs))
11417 /* We got some full packs, but we can't substitute them in until we
11418 have values for all the packs. So remember these until then. */
11420 t = make_pack_expansion (pattern);
11421 PACK_EXPANSION_EXTRA_ARGS (t) = args;
11422 return t;
11424 else if (unsubstituted_packs)
11426 /* There were no real arguments, we're just replacing a parameter
11427 pack with another version of itself. Substitute into the
11428 pattern and return a PACK_EXPANSION_*. The caller will need to
11429 deal with that. */
11430 if (TREE_CODE (t) == EXPR_PACK_EXPANSION)
11431 t = tsubst_expr (pattern, args, complain, in_decl,
11432 /*integral_constant_expression_p=*/false);
11433 else
11434 t = tsubst (pattern, args, complain, in_decl);
11435 t = make_pack_expansion (t);
11436 return t;
11439 gcc_assert (len >= 0);
11441 if (need_local_specializations)
11443 /* We're in a late-specified return type, so create our own local
11444 specializations map; the current map is either NULL or (in the
11445 case of recursive unification) might have bindings that we don't
11446 want to use or alter. */
11447 saved_local_specializations = local_specializations;
11448 local_specializations = new hash_map<tree, tree>;
11451 /* For each argument in each argument pack, substitute into the
11452 pattern. */
11453 result = make_tree_vec (len);
11454 tree elem_args = copy_template_args (args);
11455 for (i = 0; i < len; ++i)
11457 t = gen_elem_of_pack_expansion_instantiation (pattern, packs,
11459 elem_args, complain,
11460 in_decl);
11461 TREE_VEC_ELT (result, i) = t;
11462 if (t == error_mark_node)
11464 result = error_mark_node;
11465 break;
11469 /* Update ARGS to restore the substitution from parameter packs to
11470 their argument packs. */
11471 for (pack = packs; pack; pack = TREE_CHAIN (pack))
11473 tree parm = TREE_PURPOSE (pack);
11475 if (TREE_CODE (parm) == PARM_DECL
11476 || TREE_CODE (parm) == FIELD_DECL)
11477 register_local_specialization (TREE_TYPE (pack), parm);
11478 else
11480 int idx, level;
11482 if (TREE_VALUE (pack) == NULL_TREE)
11483 continue;
11485 template_parm_level_and_index (parm, &level, &idx);
11487 /* Update the corresponding argument. */
11488 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
11489 TREE_VEC_ELT (TREE_VEC_ELT (args, level -1 ), idx) =
11490 TREE_TYPE (pack);
11491 else
11492 TREE_VEC_ELT (args, idx) = TREE_TYPE (pack);
11496 if (need_local_specializations)
11498 delete local_specializations;
11499 local_specializations = saved_local_specializations;
11502 /* If the dependent pack arguments were such that we end up with only a
11503 single pack expansion again, there's no need to keep it in a TREE_VEC. */
11504 if (len == 1 && TREE_CODE (result) == TREE_VEC
11505 && PACK_EXPANSION_P (TREE_VEC_ELT (result, 0)))
11506 return TREE_VEC_ELT (result, 0);
11508 return result;
11511 /* Given PARM_DECL PARM, find the corresponding PARM_DECL in the template
11512 TMPL. We do this using DECL_PARM_INDEX, which should work even with
11513 parameter packs; all parms generated from a function parameter pack will
11514 have the same DECL_PARM_INDEX. */
11516 tree
11517 get_pattern_parm (tree parm, tree tmpl)
11519 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
11520 tree patparm;
11522 if (DECL_ARTIFICIAL (parm))
11524 for (patparm = DECL_ARGUMENTS (pattern);
11525 patparm; patparm = DECL_CHAIN (patparm))
11526 if (DECL_ARTIFICIAL (patparm)
11527 && DECL_NAME (parm) == DECL_NAME (patparm))
11528 break;
11530 else
11532 patparm = FUNCTION_FIRST_USER_PARM (DECL_TEMPLATE_RESULT (tmpl));
11533 patparm = chain_index (DECL_PARM_INDEX (parm)-1, patparm);
11534 gcc_assert (DECL_PARM_INDEX (patparm)
11535 == DECL_PARM_INDEX (parm));
11538 return patparm;
11541 /* Make an argument pack out of the TREE_VEC VEC. */
11543 static tree
11544 make_argument_pack (tree vec)
11546 tree pack;
11547 tree elt = TREE_VEC_ELT (vec, 0);
11548 if (TYPE_P (elt))
11549 pack = cxx_make_type (TYPE_ARGUMENT_PACK);
11550 else
11552 pack = make_node (NONTYPE_ARGUMENT_PACK);
11553 TREE_TYPE (pack) = TREE_TYPE (elt);
11554 TREE_CONSTANT (pack) = 1;
11556 SET_ARGUMENT_PACK_ARGS (pack, vec);
11557 return pack;
11560 /* Return an exact copy of template args T that can be modified
11561 independently. */
11563 static tree
11564 copy_template_args (tree t)
11566 if (t == error_mark_node)
11567 return t;
11569 int len = TREE_VEC_LENGTH (t);
11570 tree new_vec = make_tree_vec (len);
11572 for (int i = 0; i < len; ++i)
11574 tree elt = TREE_VEC_ELT (t, i);
11575 if (elt && TREE_CODE (elt) == TREE_VEC)
11576 elt = copy_template_args (elt);
11577 TREE_VEC_ELT (new_vec, i) = elt;
11580 NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_vec)
11581 = NON_DEFAULT_TEMPLATE_ARGS_COUNT (t);
11583 return new_vec;
11586 /* Substitute ARGS into the vector or list of template arguments T. */
11588 static tree
11589 tsubst_template_args (tree t, tree args, tsubst_flags_t complain, tree in_decl)
11591 tree orig_t = t;
11592 int len, need_new = 0, i, expanded_len_adjust = 0, out;
11593 tree *elts;
11595 if (t == error_mark_node)
11596 return error_mark_node;
11598 len = TREE_VEC_LENGTH (t);
11599 elts = XALLOCAVEC (tree, len);
11601 for (i = 0; i < len; i++)
11603 tree orig_arg = TREE_VEC_ELT (t, i);
11604 tree new_arg;
11606 if (TREE_CODE (orig_arg) == TREE_VEC)
11607 new_arg = tsubst_template_args (orig_arg, args, complain, in_decl);
11608 else if (PACK_EXPANSION_P (orig_arg))
11610 /* Substitute into an expansion expression. */
11611 new_arg = tsubst_pack_expansion (orig_arg, args, complain, in_decl);
11613 if (TREE_CODE (new_arg) == TREE_VEC)
11614 /* Add to the expanded length adjustment the number of
11615 expanded arguments. We subtract one from this
11616 measurement, because the argument pack expression
11617 itself is already counted as 1 in
11618 LEN. EXPANDED_LEN_ADJUST can actually be negative, if
11619 the argument pack is empty. */
11620 expanded_len_adjust += TREE_VEC_LENGTH (new_arg) - 1;
11622 else if (ARGUMENT_PACK_P (orig_arg))
11624 /* Substitute into each of the arguments. */
11625 new_arg = TYPE_P (orig_arg)
11626 ? cxx_make_type (TREE_CODE (orig_arg))
11627 : make_node (TREE_CODE (orig_arg));
11629 SET_ARGUMENT_PACK_ARGS (
11630 new_arg,
11631 tsubst_template_args (ARGUMENT_PACK_ARGS (orig_arg),
11632 args, complain, in_decl));
11634 if (ARGUMENT_PACK_ARGS (new_arg) == error_mark_node)
11635 new_arg = error_mark_node;
11637 if (TREE_CODE (new_arg) == NONTYPE_ARGUMENT_PACK) {
11638 TREE_TYPE (new_arg) = tsubst (TREE_TYPE (orig_arg), args,
11639 complain, in_decl);
11640 TREE_CONSTANT (new_arg) = TREE_CONSTANT (orig_arg);
11642 if (TREE_TYPE (new_arg) == error_mark_node)
11643 new_arg = error_mark_node;
11646 else
11647 new_arg = tsubst_template_arg (orig_arg, args, complain, in_decl);
11649 if (new_arg == error_mark_node)
11650 return error_mark_node;
11652 elts[i] = new_arg;
11653 if (new_arg != orig_arg)
11654 need_new = 1;
11657 if (!need_new)
11658 return t;
11660 /* Make space for the expanded arguments coming from template
11661 argument packs. */
11662 t = make_tree_vec (len + expanded_len_adjust);
11663 /* ORIG_T can contain TREE_VECs. That happens if ORIG_T contains the
11664 arguments for a member template.
11665 In that case each TREE_VEC in ORIG_T represents a level of template
11666 arguments, and ORIG_T won't carry any non defaulted argument count.
11667 It will rather be the nested TREE_VECs that will carry one.
11668 In other words, ORIG_T carries a non defaulted argument count only
11669 if it doesn't contain any nested TREE_VEC. */
11670 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t))
11672 int count = GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t);
11673 count += expanded_len_adjust;
11674 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (t, count);
11676 for (i = 0, out = 0; i < len; i++)
11678 if ((PACK_EXPANSION_P (TREE_VEC_ELT (orig_t, i))
11679 || ARGUMENT_PACK_P (TREE_VEC_ELT (orig_t, i)))
11680 && TREE_CODE (elts[i]) == TREE_VEC)
11682 int idx;
11684 /* Now expand the template argument pack "in place". */
11685 for (idx = 0; idx < TREE_VEC_LENGTH (elts[i]); idx++, out++)
11686 TREE_VEC_ELT (t, out) = TREE_VEC_ELT (elts[i], idx);
11688 else
11690 TREE_VEC_ELT (t, out) = elts[i];
11691 out++;
11695 return t;
11698 /* Substitute ARGS into one level PARMS of template parameters. */
11700 static tree
11701 tsubst_template_parms_level (tree parms, tree args, tsubst_flags_t complain)
11703 if (parms == error_mark_node)
11704 return error_mark_node;
11706 tree new_vec = make_tree_vec (TREE_VEC_LENGTH (parms));
11708 for (int i = 0; i < TREE_VEC_LENGTH (new_vec); ++i)
11710 tree tuple = TREE_VEC_ELT (parms, i);
11712 if (tuple == error_mark_node)
11713 continue;
11715 TREE_VEC_ELT (new_vec, i) =
11716 tsubst_template_parm (tuple, args, complain);
11719 return new_vec;
11722 /* Return the result of substituting ARGS into the template parameters
11723 given by PARMS. If there are m levels of ARGS and m + n levels of
11724 PARMS, then the result will contain n levels of PARMS. For
11725 example, if PARMS is `template <class T> template <class U>
11726 template <T*, U, class V>' and ARGS is {{int}, {double}} then the
11727 result will be `template <int*, double, class V>'. */
11729 static tree
11730 tsubst_template_parms (tree parms, tree args, tsubst_flags_t complain)
11732 tree r = NULL_TREE;
11733 tree* new_parms;
11735 /* When substituting into a template, we must set
11736 PROCESSING_TEMPLATE_DECL as the template parameters may be
11737 dependent if they are based on one-another, and the dependency
11738 predicates are short-circuit outside of templates. */
11739 ++processing_template_decl;
11741 for (new_parms = &r;
11742 parms && TMPL_PARMS_DEPTH (parms) > TMPL_ARGS_DEPTH (args);
11743 new_parms = &(TREE_CHAIN (*new_parms)),
11744 parms = TREE_CHAIN (parms))
11746 tree new_vec = tsubst_template_parms_level (TREE_VALUE (parms),
11747 args, complain);
11748 *new_parms =
11749 tree_cons (size_int (TMPL_PARMS_DEPTH (parms)
11750 - TMPL_ARGS_DEPTH (args)),
11751 new_vec, NULL_TREE);
11754 --processing_template_decl;
11756 return r;
11759 /* Return the result of substituting ARGS into one template parameter
11760 given by T. T Must be a TREE_LIST which TREE_VALUE is the template
11761 parameter and which TREE_PURPOSE is the default argument of the
11762 template parameter. */
11764 static tree
11765 tsubst_template_parm (tree t, tree args, tsubst_flags_t complain)
11767 tree default_value, parm_decl;
11769 if (args == NULL_TREE
11770 || t == NULL_TREE
11771 || t == error_mark_node)
11772 return t;
11774 gcc_assert (TREE_CODE (t) == TREE_LIST);
11776 default_value = TREE_PURPOSE (t);
11777 parm_decl = TREE_VALUE (t);
11779 parm_decl = tsubst (parm_decl, args, complain, NULL_TREE);
11780 if (TREE_CODE (parm_decl) == PARM_DECL
11781 && invalid_nontype_parm_type_p (TREE_TYPE (parm_decl), complain))
11782 parm_decl = error_mark_node;
11783 default_value = tsubst_template_arg (default_value, args,
11784 complain, NULL_TREE);
11786 return build_tree_list (default_value, parm_decl);
11789 /* Substitute the ARGS into the indicated aggregate (or enumeration)
11790 type T. If T is not an aggregate or enumeration type, it is
11791 handled as if by tsubst. IN_DECL is as for tsubst. If
11792 ENTERING_SCOPE is nonzero, T is the context for a template which
11793 we are presently tsubst'ing. Return the substituted value. */
11795 static tree
11796 tsubst_aggr_type (tree t,
11797 tree args,
11798 tsubst_flags_t complain,
11799 tree in_decl,
11800 int entering_scope)
11802 if (t == NULL_TREE)
11803 return NULL_TREE;
11805 switch (TREE_CODE (t))
11807 case RECORD_TYPE:
11808 if (TYPE_PTRMEMFUNC_P (t))
11809 return tsubst (TYPE_PTRMEMFUNC_FN_TYPE (t), args, complain, in_decl);
11811 /* Fall through. */
11812 case ENUMERAL_TYPE:
11813 case UNION_TYPE:
11814 if (TYPE_TEMPLATE_INFO (t) && uses_template_parms (t))
11816 tree argvec;
11817 tree context;
11818 tree r;
11819 int saved_unevaluated_operand;
11820 int saved_inhibit_evaluation_warnings;
11822 /* In "sizeof(X<I>)" we need to evaluate "I". */
11823 saved_unevaluated_operand = cp_unevaluated_operand;
11824 cp_unevaluated_operand = 0;
11825 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
11826 c_inhibit_evaluation_warnings = 0;
11828 /* First, determine the context for the type we are looking
11829 up. */
11830 context = TYPE_CONTEXT (t);
11831 if (context && TYPE_P (context))
11833 context = tsubst_aggr_type (context, args, complain,
11834 in_decl, /*entering_scope=*/1);
11835 /* If context is a nested class inside a class template,
11836 it may still need to be instantiated (c++/33959). */
11837 context = complete_type (context);
11840 /* Then, figure out what arguments are appropriate for the
11841 type we are trying to find. For example, given:
11843 template <class T> struct S;
11844 template <class T, class U> void f(T, U) { S<U> su; }
11846 and supposing that we are instantiating f<int, double>,
11847 then our ARGS will be {int, double}, but, when looking up
11848 S we only want {double}. */
11849 argvec = tsubst_template_args (TYPE_TI_ARGS (t), args,
11850 complain, in_decl);
11851 if (argvec == error_mark_node)
11852 r = error_mark_node;
11853 else
11855 r = lookup_template_class (t, argvec, in_decl, context,
11856 entering_scope, complain);
11857 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
11860 cp_unevaluated_operand = saved_unevaluated_operand;
11861 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
11863 return r;
11865 else
11866 /* This is not a template type, so there's nothing to do. */
11867 return t;
11869 default:
11870 return tsubst (t, args, complain, in_decl);
11874 /* Substitute into the default argument ARG (a default argument for
11875 FN), which has the indicated TYPE. */
11877 tree
11878 tsubst_default_argument (tree fn, tree type, tree arg, tsubst_flags_t complain)
11880 tree saved_class_ptr = NULL_TREE;
11881 tree saved_class_ref = NULL_TREE;
11882 int errs = errorcount + sorrycount;
11884 /* This can happen in invalid code. */
11885 if (TREE_CODE (arg) == DEFAULT_ARG)
11886 return arg;
11888 /* This default argument came from a template. Instantiate the
11889 default argument here, not in tsubst. In the case of
11890 something like:
11892 template <class T>
11893 struct S {
11894 static T t();
11895 void f(T = t());
11898 we must be careful to do name lookup in the scope of S<T>,
11899 rather than in the current class. */
11900 push_access_scope (fn);
11901 /* The "this" pointer is not valid in a default argument. */
11902 if (cfun)
11904 saved_class_ptr = current_class_ptr;
11905 cp_function_chain->x_current_class_ptr = NULL_TREE;
11906 saved_class_ref = current_class_ref;
11907 cp_function_chain->x_current_class_ref = NULL_TREE;
11910 push_deferring_access_checks(dk_no_deferred);
11911 /* The default argument expression may cause implicitly defined
11912 member functions to be synthesized, which will result in garbage
11913 collection. We must treat this situation as if we were within
11914 the body of function so as to avoid collecting live data on the
11915 stack. */
11916 ++function_depth;
11917 arg = tsubst_expr (arg, DECL_TI_ARGS (fn),
11918 complain, NULL_TREE,
11919 /*integral_constant_expression_p=*/false);
11920 --function_depth;
11921 pop_deferring_access_checks();
11923 /* Restore the "this" pointer. */
11924 if (cfun)
11926 cp_function_chain->x_current_class_ptr = saved_class_ptr;
11927 cp_function_chain->x_current_class_ref = saved_class_ref;
11930 if (errorcount+sorrycount > errs
11931 && (complain & tf_warning_or_error))
11932 inform (input_location,
11933 " when instantiating default argument for call to %D", fn);
11935 /* Make sure the default argument is reasonable. */
11936 arg = check_default_argument (type, arg, complain);
11938 pop_access_scope (fn);
11940 return arg;
11943 /* Substitute into all the default arguments for FN. */
11945 static void
11946 tsubst_default_arguments (tree fn, tsubst_flags_t complain)
11948 tree arg;
11949 tree tmpl_args;
11951 tmpl_args = DECL_TI_ARGS (fn);
11953 /* If this function is not yet instantiated, we certainly don't need
11954 its default arguments. */
11955 if (uses_template_parms (tmpl_args))
11956 return;
11957 /* Don't do this again for clones. */
11958 if (DECL_CLONED_FUNCTION_P (fn))
11959 return;
11961 for (arg = TYPE_ARG_TYPES (TREE_TYPE (fn));
11962 arg;
11963 arg = TREE_CHAIN (arg))
11964 if (TREE_PURPOSE (arg))
11965 TREE_PURPOSE (arg) = tsubst_default_argument (fn,
11966 TREE_VALUE (arg),
11967 TREE_PURPOSE (arg),
11968 complain);
11971 /* Substitute the ARGS into the T, which is a _DECL. Return the
11972 result of the substitution. Issue error and warning messages under
11973 control of COMPLAIN. */
11975 static tree
11976 tsubst_decl (tree t, tree args, tsubst_flags_t complain)
11978 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
11979 location_t saved_loc;
11980 tree r = NULL_TREE;
11981 tree in_decl = t;
11982 hashval_t hash = 0;
11984 /* Set the filename and linenumber to improve error-reporting. */
11985 saved_loc = input_location;
11986 input_location = DECL_SOURCE_LOCATION (t);
11988 switch (TREE_CODE (t))
11990 case TEMPLATE_DECL:
11992 /* We can get here when processing a member function template,
11993 member class template, or template template parameter. */
11994 tree decl = DECL_TEMPLATE_RESULT (t);
11995 tree spec;
11996 tree tmpl_args;
11997 tree full_args;
11999 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
12001 /* Template template parameter is treated here. */
12002 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12003 if (new_type == error_mark_node)
12004 r = error_mark_node;
12005 /* If we get a real template back, return it. This can happen in
12006 the context of most_specialized_partial_spec. */
12007 else if (TREE_CODE (new_type) == TEMPLATE_DECL)
12008 r = new_type;
12009 else
12010 /* The new TEMPLATE_DECL was built in
12011 reduce_template_parm_level. */
12012 r = TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (new_type);
12013 break;
12016 /* We might already have an instance of this template.
12017 The ARGS are for the surrounding class type, so the
12018 full args contain the tsubst'd args for the context,
12019 plus the innermost args from the template decl. */
12020 tmpl_args = DECL_CLASS_TEMPLATE_P (t)
12021 ? CLASSTYPE_TI_ARGS (TREE_TYPE (t))
12022 : DECL_TI_ARGS (DECL_TEMPLATE_RESULT (t));
12023 /* Because this is a template, the arguments will still be
12024 dependent, even after substitution. If
12025 PROCESSING_TEMPLATE_DECL is not set, the dependency
12026 predicates will short-circuit. */
12027 ++processing_template_decl;
12028 full_args = tsubst_template_args (tmpl_args, args,
12029 complain, in_decl);
12030 --processing_template_decl;
12031 if (full_args == error_mark_node)
12032 RETURN (error_mark_node);
12034 /* If this is a default template template argument,
12035 tsubst might not have changed anything. */
12036 if (full_args == tmpl_args)
12037 RETURN (t);
12039 hash = hash_tmpl_and_args (t, full_args);
12040 spec = retrieve_specialization (t, full_args, hash);
12041 if (spec != NULL_TREE)
12043 r = spec;
12044 break;
12047 /* Make a new template decl. It will be similar to the
12048 original, but will record the current template arguments.
12049 We also create a new function declaration, which is just
12050 like the old one, but points to this new template, rather
12051 than the old one. */
12052 r = copy_decl (t);
12053 gcc_assert (DECL_LANG_SPECIFIC (r) != 0);
12054 DECL_CHAIN (r) = NULL_TREE;
12056 // Build new template info linking to the original template decl.
12057 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
12059 if (TREE_CODE (decl) == TYPE_DECL
12060 && !TYPE_DECL_ALIAS_P (decl))
12062 tree new_type;
12063 ++processing_template_decl;
12064 new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12065 --processing_template_decl;
12066 if (new_type == error_mark_node)
12067 RETURN (error_mark_node);
12069 TREE_TYPE (r) = new_type;
12070 /* For a partial specialization, we need to keep pointing to
12071 the primary template. */
12072 if (!DECL_TEMPLATE_SPECIALIZATION (t))
12073 CLASSTYPE_TI_TEMPLATE (new_type) = r;
12074 DECL_TEMPLATE_RESULT (r) = TYPE_MAIN_DECL (new_type);
12075 DECL_TI_ARGS (r) = CLASSTYPE_TI_ARGS (new_type);
12076 DECL_CONTEXT (r) = TYPE_CONTEXT (new_type);
12078 else
12080 tree new_decl;
12081 ++processing_template_decl;
12082 new_decl = tsubst (decl, args, complain, in_decl);
12083 --processing_template_decl;
12084 if (new_decl == error_mark_node)
12085 RETURN (error_mark_node);
12087 DECL_TEMPLATE_RESULT (r) = new_decl;
12088 DECL_TI_TEMPLATE (new_decl) = r;
12089 TREE_TYPE (r) = TREE_TYPE (new_decl);
12090 DECL_TI_ARGS (r) = DECL_TI_ARGS (new_decl);
12091 DECL_CONTEXT (r) = DECL_CONTEXT (new_decl);
12094 SET_DECL_IMPLICIT_INSTANTIATION (r);
12095 DECL_TEMPLATE_INSTANTIATIONS (r) = NULL_TREE;
12096 DECL_TEMPLATE_SPECIALIZATIONS (r) = NULL_TREE;
12098 /* The template parameters for this new template are all the
12099 template parameters for the old template, except the
12100 outermost level of parameters. */
12101 DECL_TEMPLATE_PARMS (r)
12102 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
12103 complain);
12105 if (PRIMARY_TEMPLATE_P (t))
12106 DECL_PRIMARY_TEMPLATE (r) = r;
12108 if (TREE_CODE (decl) != TYPE_DECL && !VAR_P (decl))
12109 /* Record this non-type partial instantiation. */
12110 register_specialization (r, t,
12111 DECL_TI_ARGS (DECL_TEMPLATE_RESULT (r)),
12112 false, hash);
12114 break;
12116 case FUNCTION_DECL:
12118 tree ctx;
12119 tree argvec = NULL_TREE;
12120 tree *friends;
12121 tree gen_tmpl;
12122 tree type;
12123 int member;
12124 int args_depth;
12125 int parms_depth;
12127 /* Nobody should be tsubst'ing into non-template functions. */
12128 gcc_assert (DECL_TEMPLATE_INFO (t) != NULL_TREE);
12130 if (TREE_CODE (DECL_TI_TEMPLATE (t)) == TEMPLATE_DECL)
12132 tree spec;
12134 /* If T is not dependent, just return it. */
12135 if (!uses_template_parms (DECL_TI_ARGS (t)))
12136 RETURN (t);
12138 /* Calculate the most general template of which R is a
12139 specialization, and the complete set of arguments used to
12140 specialize R. */
12141 gen_tmpl = most_general_template (DECL_TI_TEMPLATE (t));
12142 argvec = tsubst_template_args (DECL_TI_ARGS
12143 (DECL_TEMPLATE_RESULT
12144 (DECL_TI_TEMPLATE (t))),
12145 args, complain, in_decl);
12146 if (argvec == error_mark_node)
12147 RETURN (error_mark_node);
12149 /* Check to see if we already have this specialization. */
12150 hash = hash_tmpl_and_args (gen_tmpl, argvec);
12151 spec = retrieve_specialization (gen_tmpl, argvec, hash);
12153 if (spec)
12155 r = spec;
12156 break;
12159 /* We can see more levels of arguments than parameters if
12160 there was a specialization of a member template, like
12161 this:
12163 template <class T> struct S { template <class U> void f(); }
12164 template <> template <class U> void S<int>::f(U);
12166 Here, we'll be substituting into the specialization,
12167 because that's where we can find the code we actually
12168 want to generate, but we'll have enough arguments for
12169 the most general template.
12171 We also deal with the peculiar case:
12173 template <class T> struct S {
12174 template <class U> friend void f();
12176 template <class U> void f() {}
12177 template S<int>;
12178 template void f<double>();
12180 Here, the ARGS for the instantiation of will be {int,
12181 double}. But, we only need as many ARGS as there are
12182 levels of template parameters in CODE_PATTERN. We are
12183 careful not to get fooled into reducing the ARGS in
12184 situations like:
12186 template <class T> struct S { template <class U> void f(U); }
12187 template <class T> template <> void S<T>::f(int) {}
12189 which we can spot because the pattern will be a
12190 specialization in this case. */
12191 args_depth = TMPL_ARGS_DEPTH (args);
12192 parms_depth =
12193 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (t)));
12194 if (args_depth > parms_depth
12195 && !DECL_TEMPLATE_SPECIALIZATION (t))
12196 args = get_innermost_template_args (args, parms_depth);
12198 else
12200 /* This special case arises when we have something like this:
12202 template <class T> struct S {
12203 friend void f<int>(int, double);
12206 Here, the DECL_TI_TEMPLATE for the friend declaration
12207 will be an IDENTIFIER_NODE. We are being called from
12208 tsubst_friend_function, and we want only to create a
12209 new decl (R) with appropriate types so that we can call
12210 determine_specialization. */
12211 gen_tmpl = NULL_TREE;
12214 if (DECL_CLASS_SCOPE_P (t))
12216 if (DECL_NAME (t) == constructor_name (DECL_CONTEXT (t)))
12217 member = 2;
12218 else
12219 member = 1;
12220 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args,
12221 complain, t, /*entering_scope=*/1);
12223 else
12225 member = 0;
12226 ctx = DECL_CONTEXT (t);
12228 type = tsubst (TREE_TYPE (t), args, complain|tf_fndecl_type, in_decl);
12229 if (type == error_mark_node)
12230 RETURN (error_mark_node);
12232 /* If we hit excessive deduction depth, the type is bogus even if
12233 it isn't error_mark_node, so don't build a decl. */
12234 if (excessive_deduction_depth)
12235 RETURN (error_mark_node);
12237 /* We do NOT check for matching decls pushed separately at this
12238 point, as they may not represent instantiations of this
12239 template, and in any case are considered separate under the
12240 discrete model. */
12241 r = copy_decl (t);
12242 DECL_USE_TEMPLATE (r) = 0;
12243 TREE_TYPE (r) = type;
12244 /* Clear out the mangled name and RTL for the instantiation. */
12245 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
12246 SET_DECL_RTL (r, NULL);
12247 /* Leave DECL_INITIAL set on deleted instantiations. */
12248 if (!DECL_DELETED_FN (r))
12249 DECL_INITIAL (r) = NULL_TREE;
12250 DECL_CONTEXT (r) = ctx;
12252 /* OpenMP UDRs have the only argument a reference to the declared
12253 type. We want to diagnose if the declared type is a reference,
12254 which is invalid, but as references to references are usually
12255 quietly merged, diagnose it here. */
12256 if (DECL_OMP_DECLARE_REDUCTION_P (t))
12258 tree argtype
12259 = TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (t))));
12260 argtype = tsubst (argtype, args, complain, in_decl);
12261 if (TREE_CODE (argtype) == REFERENCE_TYPE)
12262 error_at (DECL_SOURCE_LOCATION (t),
12263 "reference type %qT in "
12264 "%<#pragma omp declare reduction%>", argtype);
12265 if (strchr (IDENTIFIER_POINTER (DECL_NAME (t)), '~') == NULL)
12266 DECL_NAME (r) = omp_reduction_id (ERROR_MARK, DECL_NAME (t),
12267 argtype);
12270 if (member && DECL_CONV_FN_P (r))
12271 /* Type-conversion operator. Reconstruct the name, in
12272 case it's the name of one of the template's parameters. */
12273 DECL_NAME (r) = mangle_conv_op_name_for_type (TREE_TYPE (type));
12275 DECL_ARGUMENTS (r) = tsubst (DECL_ARGUMENTS (t), args,
12276 complain, t);
12277 DECL_RESULT (r) = NULL_TREE;
12279 TREE_STATIC (r) = 0;
12280 TREE_PUBLIC (r) = TREE_PUBLIC (t);
12281 DECL_EXTERNAL (r) = 1;
12282 /* If this is an instantiation of a function with internal
12283 linkage, we already know what object file linkage will be
12284 assigned to the instantiation. */
12285 DECL_INTERFACE_KNOWN (r) = !TREE_PUBLIC (r);
12286 DECL_DEFER_OUTPUT (r) = 0;
12287 DECL_CHAIN (r) = NULL_TREE;
12288 DECL_PENDING_INLINE_INFO (r) = 0;
12289 DECL_PENDING_INLINE_P (r) = 0;
12290 DECL_SAVED_TREE (r) = NULL_TREE;
12291 DECL_STRUCT_FUNCTION (r) = NULL;
12292 TREE_USED (r) = 0;
12293 /* We'll re-clone as appropriate in instantiate_template. */
12294 DECL_CLONED_FUNCTION (r) = NULL_TREE;
12296 /* If we aren't complaining now, return on error before we register
12297 the specialization so that we'll complain eventually. */
12298 if ((complain & tf_error) == 0
12299 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
12300 && !grok_op_properties (r, /*complain=*/false))
12301 RETURN (error_mark_node);
12303 /* When instantiating a constrained member, substitute
12304 into the constraints to create a new constraint. */
12305 if (tree ci = get_constraints (t))
12306 if (member)
12308 ci = tsubst_constraint_info (ci, argvec, complain, NULL_TREE);
12309 set_constraints (r, ci);
12312 /* Set up the DECL_TEMPLATE_INFO for R. There's no need to do
12313 this in the special friend case mentioned above where
12314 GEN_TMPL is NULL. */
12315 if (gen_tmpl)
12317 DECL_TEMPLATE_INFO (r)
12318 = build_template_info (gen_tmpl, argvec);
12319 SET_DECL_IMPLICIT_INSTANTIATION (r);
12321 tree new_r
12322 = register_specialization (r, gen_tmpl, argvec, false, hash);
12323 if (new_r != r)
12324 /* We instantiated this while substituting into
12325 the type earlier (template/friend54.C). */
12326 RETURN (new_r);
12328 /* We're not supposed to instantiate default arguments
12329 until they are called, for a template. But, for a
12330 declaration like:
12332 template <class T> void f ()
12333 { extern void g(int i = T()); }
12335 we should do the substitution when the template is
12336 instantiated. We handle the member function case in
12337 instantiate_class_template since the default arguments
12338 might refer to other members of the class. */
12339 if (!member
12340 && !PRIMARY_TEMPLATE_P (gen_tmpl)
12341 && !uses_template_parms (argvec))
12342 tsubst_default_arguments (r, complain);
12344 else
12345 DECL_TEMPLATE_INFO (r) = NULL_TREE;
12347 /* Copy the list of befriending classes. */
12348 for (friends = &DECL_BEFRIENDING_CLASSES (r);
12349 *friends;
12350 friends = &TREE_CHAIN (*friends))
12352 *friends = copy_node (*friends);
12353 TREE_VALUE (*friends) = tsubst (TREE_VALUE (*friends),
12354 args, complain,
12355 in_decl);
12358 if (DECL_CONSTRUCTOR_P (r) || DECL_DESTRUCTOR_P (r))
12360 maybe_retrofit_in_chrg (r);
12361 if (DECL_CONSTRUCTOR_P (r))
12362 grok_ctor_properties (ctx, r);
12363 /* If this is an instantiation of a member template, clone it.
12364 If it isn't, that'll be handled by
12365 clone_constructors_and_destructors. */
12366 if (PRIMARY_TEMPLATE_P (gen_tmpl))
12367 clone_function_decl (r, /*update_method_vec_p=*/0);
12369 else if ((complain & tf_error) != 0
12370 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
12371 && !grok_op_properties (r, /*complain=*/true))
12372 RETURN (error_mark_node);
12374 if (DECL_FRIEND_P (t) && DECL_FRIEND_CONTEXT (t))
12375 SET_DECL_FRIEND_CONTEXT (r,
12376 tsubst (DECL_FRIEND_CONTEXT (t),
12377 args, complain, in_decl));
12379 /* Possibly limit visibility based on template args. */
12380 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
12381 if (DECL_VISIBILITY_SPECIFIED (t))
12383 DECL_VISIBILITY_SPECIFIED (r) = 0;
12384 DECL_ATTRIBUTES (r)
12385 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
12387 determine_visibility (r);
12388 if (DECL_DEFAULTED_OUTSIDE_CLASS_P (r)
12389 && !processing_template_decl)
12390 defaulted_late_check (r);
12392 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
12393 args, complain, in_decl);
12395 break;
12397 case PARM_DECL:
12399 tree type = NULL_TREE;
12400 int i, len = 1;
12401 tree expanded_types = NULL_TREE;
12402 tree prev_r = NULL_TREE;
12403 tree first_r = NULL_TREE;
12405 if (DECL_PACK_P (t))
12407 /* If there is a local specialization that isn't a
12408 parameter pack, it means that we're doing a "simple"
12409 substitution from inside tsubst_pack_expansion. Just
12410 return the local specialization (which will be a single
12411 parm). */
12412 tree spec = retrieve_local_specialization (t);
12413 if (spec
12414 && TREE_CODE (spec) == PARM_DECL
12415 && TREE_CODE (TREE_TYPE (spec)) != TYPE_PACK_EXPANSION)
12416 RETURN (spec);
12418 /* Expand the TYPE_PACK_EXPANSION that provides the types for
12419 the parameters in this function parameter pack. */
12420 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
12421 complain, in_decl);
12422 if (TREE_CODE (expanded_types) == TREE_VEC)
12424 len = TREE_VEC_LENGTH (expanded_types);
12426 /* Zero-length parameter packs are boring. Just substitute
12427 into the chain. */
12428 if (len == 0)
12429 RETURN (tsubst (TREE_CHAIN (t), args, complain,
12430 TREE_CHAIN (t)));
12432 else
12434 /* All we did was update the type. Make a note of that. */
12435 type = expanded_types;
12436 expanded_types = NULL_TREE;
12440 /* Loop through all of the parameters we'll build. When T is
12441 a function parameter pack, LEN is the number of expanded
12442 types in EXPANDED_TYPES; otherwise, LEN is 1. */
12443 r = NULL_TREE;
12444 for (i = 0; i < len; ++i)
12446 prev_r = r;
12447 r = copy_node (t);
12448 if (DECL_TEMPLATE_PARM_P (t))
12449 SET_DECL_TEMPLATE_PARM_P (r);
12451 if (expanded_types)
12452 /* We're on the Ith parameter of the function parameter
12453 pack. */
12455 /* Get the Ith type. */
12456 type = TREE_VEC_ELT (expanded_types, i);
12458 /* Rename the parameter to include the index. */
12459 DECL_NAME (r)
12460 = make_ith_pack_parameter_name (DECL_NAME (r), i);
12462 else if (!type)
12463 /* We're dealing with a normal parameter. */
12464 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12466 type = type_decays_to (type);
12467 TREE_TYPE (r) = type;
12468 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
12470 if (DECL_INITIAL (r))
12472 if (TREE_CODE (DECL_INITIAL (r)) != TEMPLATE_PARM_INDEX)
12473 DECL_INITIAL (r) = TREE_TYPE (r);
12474 else
12475 DECL_INITIAL (r) = tsubst (DECL_INITIAL (r), args,
12476 complain, in_decl);
12479 DECL_CONTEXT (r) = NULL_TREE;
12481 if (!DECL_TEMPLATE_PARM_P (r))
12482 DECL_ARG_TYPE (r) = type_passed_as (type);
12484 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
12485 args, complain, in_decl);
12487 /* Keep track of the first new parameter we
12488 generate. That's what will be returned to the
12489 caller. */
12490 if (!first_r)
12491 first_r = r;
12493 /* Build a proper chain of parameters when substituting
12494 into a function parameter pack. */
12495 if (prev_r)
12496 DECL_CHAIN (prev_r) = r;
12499 /* If cp_unevaluated_operand is set, we're just looking for a
12500 single dummy parameter, so don't keep going. */
12501 if (DECL_CHAIN (t) && !cp_unevaluated_operand)
12502 DECL_CHAIN (r) = tsubst (DECL_CHAIN (t), args,
12503 complain, DECL_CHAIN (t));
12505 /* FIRST_R contains the start of the chain we've built. */
12506 r = first_r;
12508 break;
12510 case FIELD_DECL:
12512 tree type = NULL_TREE;
12513 tree vec = NULL_TREE;
12514 tree expanded_types = NULL_TREE;
12515 int len = 1;
12517 if (PACK_EXPANSION_P (TREE_TYPE (t)))
12519 /* This field is a lambda capture pack. Return a TREE_VEC of
12520 the expanded fields to instantiate_class_template_1 and
12521 store them in the specializations hash table as a
12522 NONTYPE_ARGUMENT_PACK so that tsubst_copy can find them. */
12523 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
12524 complain, in_decl);
12525 if (TREE_CODE (expanded_types) == TREE_VEC)
12527 len = TREE_VEC_LENGTH (expanded_types);
12528 vec = make_tree_vec (len);
12530 else
12532 /* All we did was update the type. Make a note of that. */
12533 type = expanded_types;
12534 expanded_types = NULL_TREE;
12538 for (int i = 0; i < len; ++i)
12540 r = copy_decl (t);
12541 if (expanded_types)
12543 type = TREE_VEC_ELT (expanded_types, i);
12544 DECL_NAME (r)
12545 = make_ith_pack_parameter_name (DECL_NAME (r), i);
12547 else if (!type)
12548 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12550 if (type == error_mark_node)
12551 RETURN (error_mark_node);
12552 TREE_TYPE (r) = type;
12553 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
12555 if (DECL_C_BIT_FIELD (r))
12556 /* For bit-fields, DECL_INITIAL gives the number of bits. For
12557 non-bit-fields DECL_INITIAL is a non-static data member
12558 initializer, which gets deferred instantiation. */
12559 DECL_INITIAL (r)
12560 = tsubst_expr (DECL_INITIAL (t), args,
12561 complain, in_decl,
12562 /*integral_constant_expression_p=*/true);
12563 else if (DECL_INITIAL (t))
12565 /* Set up DECL_TEMPLATE_INFO so that we can get at the
12566 NSDMI in perform_member_init. Still set DECL_INITIAL
12567 so that we know there is one. */
12568 DECL_INITIAL (r) = void_node;
12569 gcc_assert (DECL_LANG_SPECIFIC (r) == NULL);
12570 retrofit_lang_decl (r);
12571 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
12573 /* We don't have to set DECL_CONTEXT here; it is set by
12574 finish_member_declaration. */
12575 DECL_CHAIN (r) = NULL_TREE;
12577 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
12578 args, complain, in_decl);
12580 if (vec)
12581 TREE_VEC_ELT (vec, i) = r;
12584 if (vec)
12586 r = vec;
12587 tree pack = make_node (NONTYPE_ARGUMENT_PACK);
12588 tree tpack = cxx_make_type (TYPE_ARGUMENT_PACK);
12589 SET_ARGUMENT_PACK_ARGS (pack, vec);
12590 SET_ARGUMENT_PACK_ARGS (tpack, expanded_types);
12591 TREE_TYPE (pack) = tpack;
12592 register_specialization (pack, t, args, false, 0);
12595 break;
12597 case USING_DECL:
12598 /* We reach here only for member using decls. We also need to check
12599 uses_template_parms because DECL_DEPENDENT_P is not set for a
12600 using-declaration that designates a member of the current
12601 instantiation (c++/53549). */
12602 if (DECL_DEPENDENT_P (t)
12603 || uses_template_parms (USING_DECL_SCOPE (t)))
12605 tree scope = USING_DECL_SCOPE (t);
12606 tree name = tsubst_copy (DECL_NAME (t), args, complain, in_decl);
12607 if (PACK_EXPANSION_P (scope))
12609 tree vec = tsubst_pack_expansion (scope, args, complain, in_decl);
12610 int len = TREE_VEC_LENGTH (vec);
12611 r = make_tree_vec (len);
12612 for (int i = 0; i < len; ++i)
12614 tree escope = TREE_VEC_ELT (vec, i);
12615 tree elt = do_class_using_decl (escope, name);
12616 if (!elt)
12618 r = error_mark_node;
12619 break;
12621 else
12623 TREE_PROTECTED (elt) = TREE_PROTECTED (t);
12624 TREE_PRIVATE (elt) = TREE_PRIVATE (t);
12626 TREE_VEC_ELT (r, i) = elt;
12629 else
12631 tree inst_scope = tsubst_copy (USING_DECL_SCOPE (t), args,
12632 complain, in_decl);
12633 r = do_class_using_decl (inst_scope, name);
12634 if (!r)
12635 r = error_mark_node;
12636 else
12638 TREE_PROTECTED (r) = TREE_PROTECTED (t);
12639 TREE_PRIVATE (r) = TREE_PRIVATE (t);
12643 else
12645 r = copy_node (t);
12646 DECL_CHAIN (r) = NULL_TREE;
12648 break;
12650 case TYPE_DECL:
12651 case VAR_DECL:
12653 tree argvec = NULL_TREE;
12654 tree gen_tmpl = NULL_TREE;
12655 tree spec;
12656 tree tmpl = NULL_TREE;
12657 tree ctx;
12658 tree type = NULL_TREE;
12659 bool local_p;
12661 if (TREE_TYPE (t) == error_mark_node)
12662 RETURN (error_mark_node);
12664 if (TREE_CODE (t) == TYPE_DECL
12665 && t == TYPE_MAIN_DECL (TREE_TYPE (t)))
12667 /* If this is the canonical decl, we don't have to
12668 mess with instantiations, and often we can't (for
12669 typename, template type parms and such). Note that
12670 TYPE_NAME is not correct for the above test if
12671 we've copied the type for a typedef. */
12672 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12673 if (type == error_mark_node)
12674 RETURN (error_mark_node);
12675 r = TYPE_NAME (type);
12676 break;
12679 /* Check to see if we already have the specialization we
12680 need. */
12681 spec = NULL_TREE;
12682 if (DECL_CLASS_SCOPE_P (t) || DECL_NAMESPACE_SCOPE_P (t))
12684 /* T is a static data member or namespace-scope entity.
12685 We have to substitute into namespace-scope variables
12686 (not just variable templates) because of cases like:
12688 template <class T> void f() { extern T t; }
12690 where the entity referenced is not known until
12691 instantiation time. */
12692 local_p = false;
12693 ctx = DECL_CONTEXT (t);
12694 if (DECL_CLASS_SCOPE_P (t))
12696 ctx = tsubst_aggr_type (ctx, args,
12697 complain,
12698 in_decl, /*entering_scope=*/1);
12699 /* If CTX is unchanged, then T is in fact the
12700 specialization we want. That situation occurs when
12701 referencing a static data member within in its own
12702 class. We can use pointer equality, rather than
12703 same_type_p, because DECL_CONTEXT is always
12704 canonical... */
12705 if (ctx == DECL_CONTEXT (t)
12706 /* ... unless T is a member template; in which
12707 case our caller can be willing to create a
12708 specialization of that template represented
12709 by T. */
12710 && !(DECL_TI_TEMPLATE (t)
12711 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (t))))
12712 spec = t;
12715 if (!spec)
12717 tmpl = DECL_TI_TEMPLATE (t);
12718 gen_tmpl = most_general_template (tmpl);
12719 argvec = tsubst (DECL_TI_ARGS (t), args, complain, in_decl);
12720 if (argvec != error_mark_node)
12721 argvec = (coerce_innermost_template_parms
12722 (DECL_TEMPLATE_PARMS (gen_tmpl),
12723 argvec, t, complain,
12724 /*all*/true, /*defarg*/true));
12725 if (argvec == error_mark_node)
12726 RETURN (error_mark_node);
12727 hash = hash_tmpl_and_args (gen_tmpl, argvec);
12728 spec = retrieve_specialization (gen_tmpl, argvec, hash);
12731 else
12733 /* A local variable. */
12734 local_p = true;
12735 /* Subsequent calls to pushdecl will fill this in. */
12736 ctx = NULL_TREE;
12737 /* Unless this is a reference to a static variable from an
12738 enclosing function, in which case we need to fill it in now. */
12739 if (TREE_STATIC (t))
12741 tree fn = tsubst (DECL_CONTEXT (t), args, complain, in_decl);
12742 if (fn != current_function_decl)
12743 ctx = fn;
12745 spec = retrieve_local_specialization (t);
12747 /* If we already have the specialization we need, there is
12748 nothing more to do. */
12749 if (spec)
12751 r = spec;
12752 break;
12755 /* Create a new node for the specialization we need. */
12756 r = copy_decl (t);
12757 if (type == NULL_TREE)
12759 if (is_typedef_decl (t))
12760 type = DECL_ORIGINAL_TYPE (t);
12761 else
12762 type = TREE_TYPE (t);
12763 if (VAR_P (t)
12764 && VAR_HAD_UNKNOWN_BOUND (t)
12765 && type != error_mark_node)
12766 type = strip_array_domain (type);
12767 type = tsubst (type, args, complain, in_decl);
12769 if (VAR_P (r))
12771 /* Even if the original location is out of scope, the
12772 newly substituted one is not. */
12773 DECL_DEAD_FOR_LOCAL (r) = 0;
12774 DECL_INITIALIZED_P (r) = 0;
12775 DECL_TEMPLATE_INSTANTIATED (r) = 0;
12776 if (type == error_mark_node)
12777 RETURN (error_mark_node);
12778 if (TREE_CODE (type) == FUNCTION_TYPE)
12780 /* It may seem that this case cannot occur, since:
12782 typedef void f();
12783 void g() { f x; }
12785 declares a function, not a variable. However:
12787 typedef void f();
12788 template <typename T> void g() { T t; }
12789 template void g<f>();
12791 is an attempt to declare a variable with function
12792 type. */
12793 error ("variable %qD has function type",
12794 /* R is not yet sufficiently initialized, so we
12795 just use its name. */
12796 DECL_NAME (r));
12797 RETURN (error_mark_node);
12799 type = complete_type (type);
12800 /* Wait until cp_finish_decl to set this again, to handle
12801 circular dependency (template/instantiate6.C). */
12802 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r) = 0;
12803 type = check_var_type (DECL_NAME (r), type);
12805 if (DECL_HAS_VALUE_EXPR_P (t))
12807 tree ve = DECL_VALUE_EXPR (t);
12808 ve = tsubst_expr (ve, args, complain, in_decl,
12809 /*constant_expression_p=*/false);
12810 if (REFERENCE_REF_P (ve))
12812 gcc_assert (TREE_CODE (type) == REFERENCE_TYPE);
12813 ve = TREE_OPERAND (ve, 0);
12815 SET_DECL_VALUE_EXPR (r, ve);
12817 if (CP_DECL_THREAD_LOCAL_P (r)
12818 && !processing_template_decl)
12819 set_decl_tls_model (r, decl_default_tls_model (r));
12821 else if (DECL_SELF_REFERENCE_P (t))
12822 SET_DECL_SELF_REFERENCE_P (r);
12823 TREE_TYPE (r) = type;
12824 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
12825 DECL_CONTEXT (r) = ctx;
12826 /* Clear out the mangled name and RTL for the instantiation. */
12827 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
12828 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
12829 SET_DECL_RTL (r, NULL);
12830 /* The initializer must not be expanded until it is required;
12831 see [temp.inst]. */
12832 DECL_INITIAL (r) = NULL_TREE;
12833 if (VAR_P (r))
12834 SET_DECL_MODE (r, VOIDmode);
12835 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
12836 SET_DECL_RTL (r, NULL);
12837 DECL_SIZE (r) = DECL_SIZE_UNIT (r) = 0;
12838 if (VAR_P (r))
12840 /* Possibly limit visibility based on template args. */
12841 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
12842 if (DECL_VISIBILITY_SPECIFIED (t))
12844 DECL_VISIBILITY_SPECIFIED (r) = 0;
12845 DECL_ATTRIBUTES (r)
12846 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
12848 determine_visibility (r);
12851 if (!local_p)
12853 /* A static data member declaration is always marked
12854 external when it is declared in-class, even if an
12855 initializer is present. We mimic the non-template
12856 processing here. */
12857 DECL_EXTERNAL (r) = 1;
12858 if (DECL_NAMESPACE_SCOPE_P (t))
12859 DECL_NOT_REALLY_EXTERN (r) = 1;
12861 DECL_TEMPLATE_INFO (r) = build_template_info (tmpl, argvec);
12862 SET_DECL_IMPLICIT_INSTANTIATION (r);
12863 register_specialization (r, gen_tmpl, argvec, false, hash);
12865 else
12867 if (DECL_LANG_SPECIFIC (r))
12868 DECL_TEMPLATE_INFO (r) = NULL_TREE;
12869 if (!cp_unevaluated_operand)
12870 register_local_specialization (r, t);
12873 DECL_CHAIN (r) = NULL_TREE;
12875 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r),
12876 /*flags=*/0,
12877 args, complain, in_decl);
12879 /* Preserve a typedef that names a type. */
12880 if (is_typedef_decl (r) && type != error_mark_node)
12882 DECL_ORIGINAL_TYPE (r) = NULL_TREE;
12883 set_underlying_type (r);
12884 if (TYPE_DECL_ALIAS_P (r))
12885 /* An alias template specialization can be dependent
12886 even if its underlying type is not. */
12887 TYPE_DEPENDENT_P_VALID (TREE_TYPE (r)) = false;
12890 layout_decl (r, 0);
12892 break;
12894 default:
12895 gcc_unreachable ();
12897 #undef RETURN
12899 out:
12900 /* Restore the file and line information. */
12901 input_location = saved_loc;
12903 return r;
12906 /* Substitute into the ARG_TYPES of a function type.
12907 If END is a TREE_CHAIN, leave it and any following types
12908 un-substituted. */
12910 static tree
12911 tsubst_arg_types (tree arg_types,
12912 tree args,
12913 tree end,
12914 tsubst_flags_t complain,
12915 tree in_decl)
12917 tree remaining_arg_types;
12918 tree type = NULL_TREE;
12919 int i = 1;
12920 tree expanded_args = NULL_TREE;
12921 tree default_arg;
12923 if (!arg_types || arg_types == void_list_node || arg_types == end)
12924 return arg_types;
12926 remaining_arg_types = tsubst_arg_types (TREE_CHAIN (arg_types),
12927 args, end, complain, in_decl);
12928 if (remaining_arg_types == error_mark_node)
12929 return error_mark_node;
12931 if (PACK_EXPANSION_P (TREE_VALUE (arg_types)))
12933 /* For a pack expansion, perform substitution on the
12934 entire expression. Later on, we'll handle the arguments
12935 one-by-one. */
12936 expanded_args = tsubst_pack_expansion (TREE_VALUE (arg_types),
12937 args, complain, in_decl);
12939 if (TREE_CODE (expanded_args) == TREE_VEC)
12940 /* So that we'll spin through the parameters, one by one. */
12941 i = TREE_VEC_LENGTH (expanded_args);
12942 else
12944 /* We only partially substituted into the parameter
12945 pack. Our type is TYPE_PACK_EXPANSION. */
12946 type = expanded_args;
12947 expanded_args = NULL_TREE;
12951 while (i > 0) {
12952 --i;
12954 if (expanded_args)
12955 type = TREE_VEC_ELT (expanded_args, i);
12956 else if (!type)
12957 type = tsubst (TREE_VALUE (arg_types), args, complain, in_decl);
12959 if (type == error_mark_node)
12960 return error_mark_node;
12961 if (VOID_TYPE_P (type))
12963 if (complain & tf_error)
12965 error ("invalid parameter type %qT", type);
12966 if (in_decl)
12967 error ("in declaration %q+D", in_decl);
12969 return error_mark_node;
12971 /* DR 657. */
12972 if (abstract_virtuals_error_sfinae (ACU_PARM, type, complain))
12973 return error_mark_node;
12975 /* Do array-to-pointer, function-to-pointer conversion, and ignore
12976 top-level qualifiers as required. */
12977 type = cv_unqualified (type_decays_to (type));
12979 /* We do not substitute into default arguments here. The standard
12980 mandates that they be instantiated only when needed, which is
12981 done in build_over_call. */
12982 default_arg = TREE_PURPOSE (arg_types);
12984 if (default_arg && TREE_CODE (default_arg) == DEFAULT_ARG)
12986 /* We've instantiated a template before its default arguments
12987 have been parsed. This can happen for a nested template
12988 class, and is not an error unless we require the default
12989 argument in a call of this function. */
12990 remaining_arg_types =
12991 tree_cons (default_arg, type, remaining_arg_types);
12992 vec_safe_push (DEFARG_INSTANTIATIONS(default_arg), remaining_arg_types);
12994 else
12995 remaining_arg_types =
12996 hash_tree_cons (default_arg, type, remaining_arg_types);
12999 return remaining_arg_types;
13002 /* Substitute into a FUNCTION_TYPE or METHOD_TYPE. This routine does
13003 *not* handle the exception-specification for FNTYPE, because the
13004 initial substitution of explicitly provided template parameters
13005 during argument deduction forbids substitution into the
13006 exception-specification:
13008 [temp.deduct]
13010 All references in the function type of the function template to the
13011 corresponding template parameters are replaced by the specified tem-
13012 plate argument values. If a substitution in a template parameter or
13013 in the function type of the function template results in an invalid
13014 type, type deduction fails. [Note: The equivalent substitution in
13015 exception specifications is done only when the function is instanti-
13016 ated, at which point a program is ill-formed if the substitution
13017 results in an invalid type.] */
13019 static tree
13020 tsubst_function_type (tree t,
13021 tree args,
13022 tsubst_flags_t complain,
13023 tree in_decl)
13025 tree return_type;
13026 tree arg_types = NULL_TREE;
13027 tree fntype;
13029 /* The TYPE_CONTEXT is not used for function/method types. */
13030 gcc_assert (TYPE_CONTEXT (t) == NULL_TREE);
13032 /* DR 1227: Mixing immediate and non-immediate contexts in deduction
13033 failure. */
13034 bool late_return_type_p = TYPE_HAS_LATE_RETURN_TYPE (t);
13036 if (late_return_type_p)
13038 /* Substitute the argument types. */
13039 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, NULL_TREE,
13040 complain, in_decl);
13041 if (arg_types == error_mark_node)
13042 return error_mark_node;
13044 tree save_ccp = current_class_ptr;
13045 tree save_ccr = current_class_ref;
13046 tree this_type = (TREE_CODE (t) == METHOD_TYPE
13047 ? TREE_TYPE (TREE_VALUE (arg_types)) : NULL_TREE);
13048 bool do_inject = this_type && CLASS_TYPE_P (this_type);
13049 if (do_inject)
13051 /* DR 1207: 'this' is in scope in the trailing return type. */
13052 inject_this_parameter (this_type, cp_type_quals (this_type));
13055 /* Substitute the return type. */
13056 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13058 if (do_inject)
13060 current_class_ptr = save_ccp;
13061 current_class_ref = save_ccr;
13064 else
13065 /* Substitute the return type. */
13066 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13068 if (return_type == error_mark_node)
13069 return error_mark_node;
13070 /* DR 486 clarifies that creation of a function type with an
13071 invalid return type is a deduction failure. */
13072 if (TREE_CODE (return_type) == ARRAY_TYPE
13073 || TREE_CODE (return_type) == FUNCTION_TYPE)
13075 if (complain & tf_error)
13077 if (TREE_CODE (return_type) == ARRAY_TYPE)
13078 error ("function returning an array");
13079 else
13080 error ("function returning a function");
13082 return error_mark_node;
13084 /* And DR 657. */
13085 if (abstract_virtuals_error_sfinae (ACU_RETURN, return_type, complain))
13086 return error_mark_node;
13088 if (!late_return_type_p)
13090 /* Substitute the argument types. */
13091 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, NULL_TREE,
13092 complain, in_decl);
13093 if (arg_types == error_mark_node)
13094 return error_mark_node;
13097 /* Construct a new type node and return it. */
13098 if (TREE_CODE (t) == FUNCTION_TYPE)
13100 fntype = build_function_type (return_type, arg_types);
13101 fntype = apply_memfn_quals (fntype,
13102 type_memfn_quals (t),
13103 type_memfn_rqual (t));
13105 else
13107 tree r = TREE_TYPE (TREE_VALUE (arg_types));
13108 /* Don't pick up extra function qualifiers from the basetype. */
13109 r = cp_build_qualified_type_real (r, type_memfn_quals (t), complain);
13110 if (! MAYBE_CLASS_TYPE_P (r))
13112 /* [temp.deduct]
13114 Type deduction may fail for any of the following
13115 reasons:
13117 -- Attempting to create "pointer to member of T" when T
13118 is not a class type. */
13119 if (complain & tf_error)
13120 error ("creating pointer to member function of non-class type %qT",
13122 return error_mark_node;
13125 fntype = build_method_type_directly (r, return_type,
13126 TREE_CHAIN (arg_types));
13127 fntype = build_ref_qualified_type (fntype, type_memfn_rqual (t));
13129 fntype = cp_build_type_attribute_variant (fntype, TYPE_ATTRIBUTES (t));
13131 if (late_return_type_p)
13132 TYPE_HAS_LATE_RETURN_TYPE (fntype) = 1;
13134 return fntype;
13137 /* FNTYPE is a FUNCTION_TYPE or METHOD_TYPE. Substitute the template
13138 ARGS into that specification, and return the substituted
13139 specification. If there is no specification, return NULL_TREE. */
13141 static tree
13142 tsubst_exception_specification (tree fntype,
13143 tree args,
13144 tsubst_flags_t complain,
13145 tree in_decl,
13146 bool defer_ok)
13148 tree specs;
13149 tree new_specs;
13151 specs = TYPE_RAISES_EXCEPTIONS (fntype);
13152 new_specs = NULL_TREE;
13153 if (specs && TREE_PURPOSE (specs))
13155 /* A noexcept-specifier. */
13156 tree expr = TREE_PURPOSE (specs);
13157 if (TREE_CODE (expr) == INTEGER_CST)
13158 new_specs = expr;
13159 else if (defer_ok)
13161 /* Defer instantiation of noexcept-specifiers to avoid
13162 excessive instantiations (c++/49107). */
13163 new_specs = make_node (DEFERRED_NOEXCEPT);
13164 if (DEFERRED_NOEXCEPT_SPEC_P (specs))
13166 /* We already partially instantiated this member template,
13167 so combine the new args with the old. */
13168 DEFERRED_NOEXCEPT_PATTERN (new_specs)
13169 = DEFERRED_NOEXCEPT_PATTERN (expr);
13170 DEFERRED_NOEXCEPT_ARGS (new_specs)
13171 = add_to_template_args (DEFERRED_NOEXCEPT_ARGS (expr), args);
13173 else
13175 DEFERRED_NOEXCEPT_PATTERN (new_specs) = expr;
13176 DEFERRED_NOEXCEPT_ARGS (new_specs) = args;
13179 else
13180 new_specs = tsubst_copy_and_build
13181 (expr, args, complain, in_decl, /*function_p=*/false,
13182 /*integral_constant_expression_p=*/true);
13183 new_specs = build_noexcept_spec (new_specs, complain);
13185 else if (specs)
13187 if (! TREE_VALUE (specs))
13188 new_specs = specs;
13189 else
13190 while (specs)
13192 tree spec;
13193 int i, len = 1;
13194 tree expanded_specs = NULL_TREE;
13196 if (PACK_EXPANSION_P (TREE_VALUE (specs)))
13198 /* Expand the pack expansion type. */
13199 expanded_specs = tsubst_pack_expansion (TREE_VALUE (specs),
13200 args, complain,
13201 in_decl);
13203 if (expanded_specs == error_mark_node)
13204 return error_mark_node;
13205 else if (TREE_CODE (expanded_specs) == TREE_VEC)
13206 len = TREE_VEC_LENGTH (expanded_specs);
13207 else
13209 /* We're substituting into a member template, so
13210 we got a TYPE_PACK_EXPANSION back. Add that
13211 expansion and move on. */
13212 gcc_assert (TREE_CODE (expanded_specs)
13213 == TYPE_PACK_EXPANSION);
13214 new_specs = add_exception_specifier (new_specs,
13215 expanded_specs,
13216 complain);
13217 specs = TREE_CHAIN (specs);
13218 continue;
13222 for (i = 0; i < len; ++i)
13224 if (expanded_specs)
13225 spec = TREE_VEC_ELT (expanded_specs, i);
13226 else
13227 spec = tsubst (TREE_VALUE (specs), args, complain, in_decl);
13228 if (spec == error_mark_node)
13229 return spec;
13230 new_specs = add_exception_specifier (new_specs, spec,
13231 complain);
13234 specs = TREE_CHAIN (specs);
13237 return new_specs;
13240 /* Take the tree structure T and replace template parameters used
13241 therein with the argument vector ARGS. IN_DECL is an associated
13242 decl for diagnostics. If an error occurs, returns ERROR_MARK_NODE.
13243 Issue error and warning messages under control of COMPLAIN. Note
13244 that we must be relatively non-tolerant of extensions here, in
13245 order to preserve conformance; if we allow substitutions that
13246 should not be allowed, we may allow argument deductions that should
13247 not succeed, and therefore report ambiguous overload situations
13248 where there are none. In theory, we could allow the substitution,
13249 but indicate that it should have failed, and allow our caller to
13250 make sure that the right thing happens, but we don't try to do this
13251 yet.
13253 This function is used for dealing with types, decls and the like;
13254 for expressions, use tsubst_expr or tsubst_copy. */
13256 tree
13257 tsubst (tree t, tree args, tsubst_flags_t complain, tree in_decl)
13259 enum tree_code code;
13260 tree type, r = NULL_TREE;
13262 if (t == NULL_TREE || t == error_mark_node
13263 || t == integer_type_node
13264 || t == void_type_node
13265 || t == char_type_node
13266 || t == unknown_type_node
13267 || TREE_CODE (t) == NAMESPACE_DECL
13268 || TREE_CODE (t) == TRANSLATION_UNIT_DECL)
13269 return t;
13271 if (DECL_P (t))
13272 return tsubst_decl (t, args, complain);
13274 if (args == NULL_TREE)
13275 return t;
13277 code = TREE_CODE (t);
13279 if (code == IDENTIFIER_NODE)
13280 type = IDENTIFIER_TYPE_VALUE (t);
13281 else
13282 type = TREE_TYPE (t);
13284 gcc_assert (type != unknown_type_node);
13286 /* Reuse typedefs. We need to do this to handle dependent attributes,
13287 such as attribute aligned. */
13288 if (TYPE_P (t)
13289 && typedef_variant_p (t))
13291 tree decl = TYPE_NAME (t);
13293 if (alias_template_specialization_p (t))
13295 /* DECL represents an alias template and we want to
13296 instantiate it. */
13297 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
13298 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
13299 r = instantiate_alias_template (tmpl, gen_args, complain);
13301 else if (DECL_CLASS_SCOPE_P (decl)
13302 && CLASSTYPE_TEMPLATE_INFO (DECL_CONTEXT (decl))
13303 && uses_template_parms (DECL_CONTEXT (decl)))
13305 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
13306 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
13307 r = retrieve_specialization (tmpl, gen_args, 0);
13309 else if (DECL_FUNCTION_SCOPE_P (decl)
13310 && DECL_TEMPLATE_INFO (DECL_CONTEXT (decl))
13311 && uses_template_parms (DECL_TI_ARGS (DECL_CONTEXT (decl))))
13312 r = retrieve_local_specialization (decl);
13313 else
13314 /* The typedef is from a non-template context. */
13315 return t;
13317 if (r)
13319 r = TREE_TYPE (r);
13320 r = cp_build_qualified_type_real
13321 (r, cp_type_quals (t) | cp_type_quals (r),
13322 complain | tf_ignore_bad_quals);
13323 return r;
13325 else
13327 /* We don't have an instantiation yet, so drop the typedef. */
13328 int quals = cp_type_quals (t);
13329 t = DECL_ORIGINAL_TYPE (decl);
13330 t = cp_build_qualified_type_real (t, quals,
13331 complain | tf_ignore_bad_quals);
13335 bool fndecl_type = (complain & tf_fndecl_type);
13336 complain &= ~tf_fndecl_type;
13338 if (type
13339 && code != TYPENAME_TYPE
13340 && code != TEMPLATE_TYPE_PARM
13341 && code != IDENTIFIER_NODE
13342 && code != FUNCTION_TYPE
13343 && code != METHOD_TYPE)
13344 type = tsubst (type, args, complain, in_decl);
13345 if (type == error_mark_node)
13346 return error_mark_node;
13348 switch (code)
13350 case RECORD_TYPE:
13351 case UNION_TYPE:
13352 case ENUMERAL_TYPE:
13353 return tsubst_aggr_type (t, args, complain, in_decl,
13354 /*entering_scope=*/0);
13356 case ERROR_MARK:
13357 case IDENTIFIER_NODE:
13358 case VOID_TYPE:
13359 case REAL_TYPE:
13360 case COMPLEX_TYPE:
13361 case VECTOR_TYPE:
13362 case BOOLEAN_TYPE:
13363 case NULLPTR_TYPE:
13364 case LANG_TYPE:
13365 return t;
13367 case INTEGER_TYPE:
13368 if (t == integer_type_node)
13369 return t;
13371 if (TREE_CODE (TYPE_MIN_VALUE (t)) == INTEGER_CST
13372 && TREE_CODE (TYPE_MAX_VALUE (t)) == INTEGER_CST)
13373 return t;
13376 tree max, omax = TREE_OPERAND (TYPE_MAX_VALUE (t), 0);
13378 max = tsubst_expr (omax, args, complain, in_decl,
13379 /*integral_constant_expression_p=*/false);
13381 /* Fix up type of the magic NOP_EXPR with TREE_SIDE_EFFECTS if
13382 needed. */
13383 if (TREE_CODE (max) == NOP_EXPR
13384 && TREE_SIDE_EFFECTS (omax)
13385 && !TREE_TYPE (max))
13386 TREE_TYPE (max) = TREE_TYPE (TREE_OPERAND (max, 0));
13388 /* If we're in a partial instantiation, preserve the magic NOP_EXPR
13389 with TREE_SIDE_EFFECTS that indicates this is not an integral
13390 constant expression. */
13391 if (processing_template_decl
13392 && TREE_SIDE_EFFECTS (omax) && TREE_CODE (omax) == NOP_EXPR)
13394 gcc_assert (TREE_CODE (max) == NOP_EXPR);
13395 TREE_SIDE_EFFECTS (max) = 1;
13398 return compute_array_index_type (NULL_TREE, max, complain);
13401 case TEMPLATE_TYPE_PARM:
13402 case TEMPLATE_TEMPLATE_PARM:
13403 case BOUND_TEMPLATE_TEMPLATE_PARM:
13404 case TEMPLATE_PARM_INDEX:
13406 int idx;
13407 int level;
13408 int levels;
13409 tree arg = NULL_TREE;
13411 /* Early in template argument deduction substitution, we don't
13412 want to reduce the level of 'auto', or it will be confused
13413 with a normal template parm in subsequent deduction. */
13414 if (is_auto (t) && (complain & tf_partial))
13415 return t;
13417 r = NULL_TREE;
13419 gcc_assert (TREE_VEC_LENGTH (args) > 0);
13420 template_parm_level_and_index (t, &level, &idx);
13422 levels = TMPL_ARGS_DEPTH (args);
13423 if (level <= levels
13424 && TREE_VEC_LENGTH (TMPL_ARGS_LEVEL (args, level)) > 0)
13426 arg = TMPL_ARG (args, level, idx);
13428 if (arg && TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
13430 /* See through ARGUMENT_PACK_SELECT arguments. */
13431 arg = ARGUMENT_PACK_SELECT_ARG (arg);
13432 /* If the selected argument is an expansion E, that most
13433 likely means we were called from
13434 gen_elem_of_pack_expansion_instantiation during the
13435 substituting of pack an argument pack (which Ith
13436 element is a pack expansion, where I is
13437 ARGUMENT_PACK_SELECT_INDEX) into a pack expansion.
13438 In this case, the Ith element resulting from this
13439 substituting is going to be a pack expansion, which
13440 pattern is the pattern of E. Let's return the
13441 pattern of E, and
13442 gen_elem_of_pack_expansion_instantiation will
13443 build the resulting pack expansion from it. */
13444 if (PACK_EXPANSION_P (arg))
13446 /* Make sure we aren't throwing away arg info. */
13447 gcc_assert (!PACK_EXPANSION_EXTRA_ARGS (arg));
13448 arg = PACK_EXPANSION_PATTERN (arg);
13453 if (arg == error_mark_node)
13454 return error_mark_node;
13455 else if (arg != NULL_TREE)
13457 if (ARGUMENT_PACK_P (arg))
13458 /* If ARG is an argument pack, we don't actually want to
13459 perform a substitution here, because substitutions
13460 for argument packs are only done
13461 element-by-element. We can get to this point when
13462 substituting the type of a non-type template
13463 parameter pack, when that type actually contains
13464 template parameter packs from an outer template, e.g.,
13466 template<typename... Types> struct A {
13467 template<Types... Values> struct B { };
13468 }; */
13469 return t;
13471 if (code == TEMPLATE_TYPE_PARM)
13473 int quals;
13474 gcc_assert (TYPE_P (arg));
13476 quals = cp_type_quals (arg) | cp_type_quals (t);
13478 return cp_build_qualified_type_real
13479 (arg, quals, complain | tf_ignore_bad_quals);
13481 else if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
13483 /* We are processing a type constructed from a
13484 template template parameter. */
13485 tree argvec = tsubst (TYPE_TI_ARGS (t),
13486 args, complain, in_decl);
13487 if (argvec == error_mark_node)
13488 return error_mark_node;
13490 gcc_assert (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
13491 || TREE_CODE (arg) == TEMPLATE_DECL
13492 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
13494 if (TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE)
13495 /* Consider this code:
13497 template <template <class> class Template>
13498 struct Internal {
13499 template <class Arg> using Bind = Template<Arg>;
13502 template <template <class> class Template, class Arg>
13503 using Instantiate = Template<Arg>; //#0
13505 template <template <class> class Template,
13506 class Argument>
13507 using Bind =
13508 Instantiate<Internal<Template>::template Bind,
13509 Argument>; //#1
13511 When #1 is parsed, the
13512 BOUND_TEMPLATE_TEMPLATE_PARM representing the
13513 parameter `Template' in #0 matches the
13514 UNBOUND_CLASS_TEMPLATE representing the argument
13515 `Internal<Template>::template Bind'; We then want
13516 to assemble the type `Bind<Argument>' that can't
13517 be fully created right now, because
13518 `Internal<Template>' not being complete, the Bind
13519 template cannot be looked up in that context. So
13520 we need to "store" `Bind<Argument>' for later
13521 when the context of Bind becomes complete. Let's
13522 store that in a TYPENAME_TYPE. */
13523 return make_typename_type (TYPE_CONTEXT (arg),
13524 build_nt (TEMPLATE_ID_EXPR,
13525 TYPE_IDENTIFIER (arg),
13526 argvec),
13527 typename_type,
13528 complain);
13530 /* We can get a TEMPLATE_TEMPLATE_PARM here when we
13531 are resolving nested-types in the signature of a
13532 member function templates. Otherwise ARG is a
13533 TEMPLATE_DECL and is the real template to be
13534 instantiated. */
13535 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
13536 arg = TYPE_NAME (arg);
13538 r = lookup_template_class (arg,
13539 argvec, in_decl,
13540 DECL_CONTEXT (arg),
13541 /*entering_scope=*/0,
13542 complain);
13543 return cp_build_qualified_type_real
13544 (r, cp_type_quals (t) | cp_type_quals (r), complain);
13546 else if (code == TEMPLATE_TEMPLATE_PARM)
13547 return arg;
13548 else
13549 /* TEMPLATE_PARM_INDEX. */
13550 return convert_from_reference (unshare_expr (arg));
13553 if (level == 1)
13554 /* This can happen during the attempted tsubst'ing in
13555 unify. This means that we don't yet have any information
13556 about the template parameter in question. */
13557 return t;
13559 /* If we get here, we must have been looking at a parm for a
13560 more deeply nested template. Make a new version of this
13561 template parameter, but with a lower level. */
13562 switch (code)
13564 case TEMPLATE_TYPE_PARM:
13565 case TEMPLATE_TEMPLATE_PARM:
13566 case BOUND_TEMPLATE_TEMPLATE_PARM:
13567 if (cp_type_quals (t))
13569 r = tsubst (TYPE_MAIN_VARIANT (t), args, complain, in_decl);
13570 r = cp_build_qualified_type_real
13571 (r, cp_type_quals (t),
13572 complain | (code == TEMPLATE_TYPE_PARM
13573 ? tf_ignore_bad_quals : 0));
13575 else if (TREE_CODE (t) == TEMPLATE_TYPE_PARM
13576 && PLACEHOLDER_TYPE_CONSTRAINTS (t)
13577 && (r = (TEMPLATE_PARM_DESCENDANTS
13578 (TEMPLATE_TYPE_PARM_INDEX (t))))
13579 && (r = TREE_TYPE (r))
13580 && !PLACEHOLDER_TYPE_CONSTRAINTS (r))
13581 /* Break infinite recursion when substituting the constraints
13582 of a constrained placeholder. */;
13583 else
13585 r = copy_type (t);
13586 TEMPLATE_TYPE_PARM_INDEX (r)
13587 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (t),
13588 r, levels, args, complain);
13589 TYPE_STUB_DECL (r) = TYPE_NAME (r) = TEMPLATE_TYPE_DECL (r);
13590 TYPE_MAIN_VARIANT (r) = r;
13591 TYPE_POINTER_TO (r) = NULL_TREE;
13592 TYPE_REFERENCE_TO (r) = NULL_TREE;
13594 if (TREE_CODE (t) == TEMPLATE_TYPE_PARM)
13596 /* Propagate constraints on placeholders. */
13597 if (tree constr = PLACEHOLDER_TYPE_CONSTRAINTS (t))
13598 PLACEHOLDER_TYPE_CONSTRAINTS (r)
13599 = tsubst_constraint (constr, args, complain, in_decl);
13600 else if (tree pl = CLASS_PLACEHOLDER_TEMPLATE (t))
13602 if (DECL_TEMPLATE_TEMPLATE_PARM_P (pl))
13603 pl = tsubst (pl, args, complain, in_decl);
13604 CLASS_PLACEHOLDER_TEMPLATE (r) = pl;
13608 if (TREE_CODE (r) == TEMPLATE_TEMPLATE_PARM)
13609 /* We have reduced the level of the template
13610 template parameter, but not the levels of its
13611 template parameters, so canonical_type_parameter
13612 will not be able to find the canonical template
13613 template parameter for this level. Thus, we
13614 require structural equality checking to compare
13615 TEMPLATE_TEMPLATE_PARMs. */
13616 SET_TYPE_STRUCTURAL_EQUALITY (r);
13617 else if (TYPE_STRUCTURAL_EQUALITY_P (t))
13618 SET_TYPE_STRUCTURAL_EQUALITY (r);
13619 else
13620 TYPE_CANONICAL (r) = canonical_type_parameter (r);
13622 if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
13624 tree tinfo = TYPE_TEMPLATE_INFO (t);
13625 /* We might need to substitute into the types of non-type
13626 template parameters. */
13627 tree tmpl = tsubst (TI_TEMPLATE (tinfo), args,
13628 complain, in_decl);
13629 if (tmpl == error_mark_node)
13630 return error_mark_node;
13631 tree argvec = tsubst (TI_ARGS (tinfo), args,
13632 complain, in_decl);
13633 if (argvec == error_mark_node)
13634 return error_mark_node;
13636 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (r)
13637 = build_template_info (tmpl, argvec);
13640 break;
13642 case TEMPLATE_PARM_INDEX:
13643 r = reduce_template_parm_level (t, type, levels, args, complain);
13644 break;
13646 default:
13647 gcc_unreachable ();
13650 return r;
13653 case TREE_LIST:
13655 tree purpose, value, chain;
13657 if (t == void_list_node)
13658 return t;
13660 purpose = TREE_PURPOSE (t);
13661 if (purpose)
13663 purpose = tsubst (purpose, args, complain, in_decl);
13664 if (purpose == error_mark_node)
13665 return error_mark_node;
13667 value = TREE_VALUE (t);
13668 if (value)
13670 value = tsubst (value, args, complain, in_decl);
13671 if (value == error_mark_node)
13672 return error_mark_node;
13674 chain = TREE_CHAIN (t);
13675 if (chain && chain != void_type_node)
13677 chain = tsubst (chain, args, complain, in_decl);
13678 if (chain == error_mark_node)
13679 return error_mark_node;
13681 if (purpose == TREE_PURPOSE (t)
13682 && value == TREE_VALUE (t)
13683 && chain == TREE_CHAIN (t))
13684 return t;
13685 return hash_tree_cons (purpose, value, chain);
13688 case TREE_BINFO:
13689 /* We should never be tsubsting a binfo. */
13690 gcc_unreachable ();
13692 case TREE_VEC:
13693 /* A vector of template arguments. */
13694 gcc_assert (!type);
13695 return tsubst_template_args (t, args, complain, in_decl);
13697 case POINTER_TYPE:
13698 case REFERENCE_TYPE:
13700 if (type == TREE_TYPE (t) && TREE_CODE (type) != METHOD_TYPE)
13701 return t;
13703 /* [temp.deduct]
13705 Type deduction may fail for any of the following
13706 reasons:
13708 -- Attempting to create a pointer to reference type.
13709 -- Attempting to create a reference to a reference type or
13710 a reference to void.
13712 Core issue 106 says that creating a reference to a reference
13713 during instantiation is no longer a cause for failure. We
13714 only enforce this check in strict C++98 mode. */
13715 if ((TREE_CODE (type) == REFERENCE_TYPE
13716 && (((cxx_dialect == cxx98) && flag_iso) || code != REFERENCE_TYPE))
13717 || (code == REFERENCE_TYPE && VOID_TYPE_P (type)))
13719 static location_t last_loc;
13721 /* We keep track of the last time we issued this error
13722 message to avoid spewing a ton of messages during a
13723 single bad template instantiation. */
13724 if (complain & tf_error
13725 && last_loc != input_location)
13727 if (VOID_TYPE_P (type))
13728 error ("forming reference to void");
13729 else if (code == POINTER_TYPE)
13730 error ("forming pointer to reference type %qT", type);
13731 else
13732 error ("forming reference to reference type %qT", type);
13733 last_loc = input_location;
13736 return error_mark_node;
13738 else if (TREE_CODE (type) == FUNCTION_TYPE
13739 && (type_memfn_quals (type) != TYPE_UNQUALIFIED
13740 || type_memfn_rqual (type) != REF_QUAL_NONE))
13742 if (complain & tf_error)
13744 if (code == POINTER_TYPE)
13745 error ("forming pointer to qualified function type %qT",
13746 type);
13747 else
13748 error ("forming reference to qualified function type %qT",
13749 type);
13751 return error_mark_node;
13753 else if (code == POINTER_TYPE)
13755 r = build_pointer_type (type);
13756 if (TREE_CODE (type) == METHOD_TYPE)
13757 r = build_ptrmemfunc_type (r);
13759 else if (TREE_CODE (type) == REFERENCE_TYPE)
13760 /* In C++0x, during template argument substitution, when there is an
13761 attempt to create a reference to a reference type, reference
13762 collapsing is applied as described in [14.3.1/4 temp.arg.type]:
13764 "If a template-argument for a template-parameter T names a type
13765 that is a reference to a type A, an attempt to create the type
13766 'lvalue reference to cv T' creates the type 'lvalue reference to
13767 A,' while an attempt to create the type type rvalue reference to
13768 cv T' creates the type T"
13770 r = cp_build_reference_type
13771 (TREE_TYPE (type),
13772 TYPE_REF_IS_RVALUE (t) && TYPE_REF_IS_RVALUE (type));
13773 else
13774 r = cp_build_reference_type (type, TYPE_REF_IS_RVALUE (t));
13775 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
13777 if (r != error_mark_node)
13778 /* Will this ever be needed for TYPE_..._TO values? */
13779 layout_type (r);
13781 return r;
13783 case OFFSET_TYPE:
13785 r = tsubst (TYPE_OFFSET_BASETYPE (t), args, complain, in_decl);
13786 if (r == error_mark_node || !MAYBE_CLASS_TYPE_P (r))
13788 /* [temp.deduct]
13790 Type deduction may fail for any of the following
13791 reasons:
13793 -- Attempting to create "pointer to member of T" when T
13794 is not a class type. */
13795 if (complain & tf_error)
13796 error ("creating pointer to member of non-class type %qT", r);
13797 return error_mark_node;
13799 if (TREE_CODE (type) == REFERENCE_TYPE)
13801 if (complain & tf_error)
13802 error ("creating pointer to member reference type %qT", type);
13803 return error_mark_node;
13805 if (VOID_TYPE_P (type))
13807 if (complain & tf_error)
13808 error ("creating pointer to member of type void");
13809 return error_mark_node;
13811 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
13812 if (TREE_CODE (type) == FUNCTION_TYPE)
13814 /* The type of the implicit object parameter gets its
13815 cv-qualifiers from the FUNCTION_TYPE. */
13816 tree memptr;
13817 tree method_type
13818 = build_memfn_type (type, r, type_memfn_quals (type),
13819 type_memfn_rqual (type));
13820 memptr = build_ptrmemfunc_type (build_pointer_type (method_type));
13821 return cp_build_qualified_type_real (memptr, cp_type_quals (t),
13822 complain);
13824 else
13825 return cp_build_qualified_type_real (build_ptrmem_type (r, type),
13826 cp_type_quals (t),
13827 complain);
13829 case FUNCTION_TYPE:
13830 case METHOD_TYPE:
13832 tree fntype;
13833 tree specs;
13834 fntype = tsubst_function_type (t, args, complain, in_decl);
13835 if (fntype == error_mark_node)
13836 return error_mark_node;
13838 /* Substitute the exception specification. */
13839 specs = tsubst_exception_specification (t, args, complain, in_decl,
13840 /*defer_ok*/fndecl_type);
13841 if (specs == error_mark_node)
13842 return error_mark_node;
13843 if (specs)
13844 fntype = build_exception_variant (fntype, specs);
13845 return fntype;
13847 case ARRAY_TYPE:
13849 tree domain = tsubst (TYPE_DOMAIN (t), args, complain, in_decl);
13850 if (domain == error_mark_node)
13851 return error_mark_node;
13853 /* As an optimization, we avoid regenerating the array type if
13854 it will obviously be the same as T. */
13855 if (type == TREE_TYPE (t) && domain == TYPE_DOMAIN (t))
13856 return t;
13858 /* These checks should match the ones in create_array_type_for_decl.
13860 [temp.deduct]
13862 The deduction may fail for any of the following reasons:
13864 -- Attempting to create an array with an element type that
13865 is void, a function type, or a reference type, or [DR337]
13866 an abstract class type. */
13867 if (VOID_TYPE_P (type)
13868 || TREE_CODE (type) == FUNCTION_TYPE
13869 || (TREE_CODE (type) == ARRAY_TYPE
13870 && TYPE_DOMAIN (type) == NULL_TREE)
13871 || TREE_CODE (type) == REFERENCE_TYPE)
13873 if (complain & tf_error)
13874 error ("creating array of %qT", type);
13875 return error_mark_node;
13878 if (abstract_virtuals_error_sfinae (ACU_ARRAY, type, complain))
13879 return error_mark_node;
13881 r = build_cplus_array_type (type, domain);
13883 if (TYPE_USER_ALIGN (t))
13885 SET_TYPE_ALIGN (r, TYPE_ALIGN (t));
13886 TYPE_USER_ALIGN (r) = 1;
13889 return r;
13892 case TYPENAME_TYPE:
13894 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
13895 in_decl, /*entering_scope=*/1);
13896 if (ctx == error_mark_node)
13897 return error_mark_node;
13899 tree f = tsubst_copy (TYPENAME_TYPE_FULLNAME (t), args,
13900 complain, in_decl);
13901 if (f == error_mark_node)
13902 return error_mark_node;
13904 if (!MAYBE_CLASS_TYPE_P (ctx))
13906 if (complain & tf_error)
13907 error ("%qT is not a class, struct, or union type", ctx);
13908 return error_mark_node;
13910 else if (!uses_template_parms (ctx) && !TYPE_BEING_DEFINED (ctx))
13912 /* Normally, make_typename_type does not require that the CTX
13913 have complete type in order to allow things like:
13915 template <class T> struct S { typename S<T>::X Y; };
13917 But, such constructs have already been resolved by this
13918 point, so here CTX really should have complete type, unless
13919 it's a partial instantiation. */
13920 ctx = complete_type (ctx);
13921 if (!COMPLETE_TYPE_P (ctx))
13923 if (complain & tf_error)
13924 cxx_incomplete_type_error (NULL_TREE, ctx);
13925 return error_mark_node;
13929 f = make_typename_type (ctx, f, typename_type,
13930 complain | tf_keep_type_decl);
13931 if (f == error_mark_node)
13932 return f;
13933 if (TREE_CODE (f) == TYPE_DECL)
13935 complain |= tf_ignore_bad_quals;
13936 f = TREE_TYPE (f);
13939 if (TREE_CODE (f) != TYPENAME_TYPE)
13941 if (TYPENAME_IS_ENUM_P (t) && TREE_CODE (f) != ENUMERAL_TYPE)
13943 if (complain & tf_error)
13944 error ("%qT resolves to %qT, which is not an enumeration type",
13945 t, f);
13946 else
13947 return error_mark_node;
13949 else if (TYPENAME_IS_CLASS_P (t) && !CLASS_TYPE_P (f))
13951 if (complain & tf_error)
13952 error ("%qT resolves to %qT, which is is not a class type",
13953 t, f);
13954 else
13955 return error_mark_node;
13959 return cp_build_qualified_type_real
13960 (f, cp_type_quals (f) | cp_type_quals (t), complain);
13963 case UNBOUND_CLASS_TEMPLATE:
13965 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
13966 in_decl, /*entering_scope=*/1);
13967 tree name = TYPE_IDENTIFIER (t);
13968 tree parm_list = DECL_TEMPLATE_PARMS (TYPE_NAME (t));
13970 if (ctx == error_mark_node || name == error_mark_node)
13971 return error_mark_node;
13973 if (parm_list)
13974 parm_list = tsubst_template_parms (parm_list, args, complain);
13975 return make_unbound_class_template (ctx, name, parm_list, complain);
13978 case TYPEOF_TYPE:
13980 tree type;
13982 ++cp_unevaluated_operand;
13983 ++c_inhibit_evaluation_warnings;
13985 type = tsubst_expr (TYPEOF_TYPE_EXPR (t), args,
13986 complain, in_decl,
13987 /*integral_constant_expression_p=*/false);
13989 --cp_unevaluated_operand;
13990 --c_inhibit_evaluation_warnings;
13992 type = finish_typeof (type);
13993 return cp_build_qualified_type_real (type,
13994 cp_type_quals (t)
13995 | cp_type_quals (type),
13996 complain);
13999 case DECLTYPE_TYPE:
14001 tree type;
14003 ++cp_unevaluated_operand;
14004 ++c_inhibit_evaluation_warnings;
14006 type = tsubst_copy_and_build (DECLTYPE_TYPE_EXPR (t), args,
14007 complain|tf_decltype, in_decl,
14008 /*function_p*/false,
14009 /*integral_constant_expression*/false);
14011 if (DECLTYPE_FOR_INIT_CAPTURE (t))
14013 if (type == NULL_TREE)
14015 if (complain & tf_error)
14016 error ("empty initializer in lambda init-capture");
14017 type = error_mark_node;
14019 else if (TREE_CODE (type) == TREE_LIST)
14020 type = build_x_compound_expr_from_list (type, ELK_INIT, complain);
14023 --cp_unevaluated_operand;
14024 --c_inhibit_evaluation_warnings;
14026 if (DECLTYPE_FOR_LAMBDA_CAPTURE (t))
14027 type = lambda_capture_field_type (type,
14028 DECLTYPE_FOR_INIT_CAPTURE (t),
14029 DECLTYPE_FOR_REF_CAPTURE (t));
14030 else if (DECLTYPE_FOR_LAMBDA_PROXY (t))
14031 type = lambda_proxy_type (type);
14032 else
14034 bool id = DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t);
14035 if (id && TREE_CODE (DECLTYPE_TYPE_EXPR (t)) == BIT_NOT_EXPR
14036 && EXPR_P (type))
14037 /* In a template ~id could be either a complement expression
14038 or an unqualified-id naming a destructor; if instantiating
14039 it produces an expression, it's not an id-expression or
14040 member access. */
14041 id = false;
14042 type = finish_decltype_type (type, id, complain);
14044 return cp_build_qualified_type_real (type,
14045 cp_type_quals (t)
14046 | cp_type_quals (type),
14047 complain | tf_ignore_bad_quals);
14050 case UNDERLYING_TYPE:
14052 tree type = tsubst (UNDERLYING_TYPE_TYPE (t), args,
14053 complain, in_decl);
14054 return finish_underlying_type (type);
14057 case TYPE_ARGUMENT_PACK:
14058 case NONTYPE_ARGUMENT_PACK:
14060 tree r;
14062 if (code == NONTYPE_ARGUMENT_PACK)
14064 r = make_node (code);
14065 /* Set the already-substituted type. */
14066 TREE_TYPE (r) = type;
14068 else
14069 r = cxx_make_type (code);
14071 tree pack_args = ARGUMENT_PACK_ARGS (t);
14072 pack_args = tsubst_template_args (pack_args, args, complain, in_decl);
14073 SET_ARGUMENT_PACK_ARGS (r, pack_args);
14075 return r;
14078 case VOID_CST:
14079 case INTEGER_CST:
14080 case REAL_CST:
14081 case STRING_CST:
14082 case PLUS_EXPR:
14083 case MINUS_EXPR:
14084 case NEGATE_EXPR:
14085 case NOP_EXPR:
14086 case INDIRECT_REF:
14087 case ADDR_EXPR:
14088 case CALL_EXPR:
14089 case ARRAY_REF:
14090 case SCOPE_REF:
14091 /* We should use one of the expression tsubsts for these codes. */
14092 gcc_unreachable ();
14094 default:
14095 sorry ("use of %qs in template", get_tree_code_name (code));
14096 return error_mark_node;
14100 /* Like tsubst_expr for a BASELINK. OBJECT_TYPE, if non-NULL, is the
14101 type of the expression on the left-hand side of the "." or "->"
14102 operator. */
14104 static tree
14105 tsubst_baselink (tree baselink, tree object_type,
14106 tree args, tsubst_flags_t complain, tree in_decl)
14108 tree name;
14109 tree qualifying_scope;
14110 tree fns;
14111 tree optype;
14112 tree template_args = 0;
14113 bool template_id_p = false;
14114 bool qualified = BASELINK_QUALIFIED_P (baselink);
14116 /* A baselink indicates a function from a base class. Both the
14117 BASELINK_ACCESS_BINFO and the base class referenced may
14118 indicate bases of the template class, rather than the
14119 instantiated class. In addition, lookups that were not
14120 ambiguous before may be ambiguous now. Therefore, we perform
14121 the lookup again. */
14122 qualifying_scope = BINFO_TYPE (BASELINK_ACCESS_BINFO (baselink));
14123 qualifying_scope = tsubst (qualifying_scope, args,
14124 complain, in_decl);
14125 fns = BASELINK_FUNCTIONS (baselink);
14126 optype = tsubst (BASELINK_OPTYPE (baselink), args, complain, in_decl);
14127 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
14129 template_id_p = true;
14130 template_args = TREE_OPERAND (fns, 1);
14131 fns = TREE_OPERAND (fns, 0);
14132 if (template_args)
14133 template_args = tsubst_template_args (template_args, args,
14134 complain, in_decl);
14136 name = DECL_NAME (get_first_fn (fns));
14137 if (IDENTIFIER_TYPENAME_P (name))
14138 name = mangle_conv_op_name_for_type (optype);
14139 baselink = lookup_fnfields (qualifying_scope, name, /*protect=*/1);
14140 if (!baselink)
14142 if (constructor_name_p (name, qualifying_scope))
14144 if (complain & tf_error)
14145 error ("cannot call constructor %<%T::%D%> directly",
14146 qualifying_scope, name);
14148 return error_mark_node;
14151 /* If lookup found a single function, mark it as used at this
14152 point. (If it lookup found multiple functions the one selected
14153 later by overload resolution will be marked as used at that
14154 point.) */
14155 if (BASELINK_P (baselink))
14156 fns = BASELINK_FUNCTIONS (baselink);
14157 if (!template_id_p && !really_overloaded_fn (fns)
14158 && !mark_used (OVL_CURRENT (fns), complain) && !(complain & tf_error))
14159 return error_mark_node;
14161 /* Add back the template arguments, if present. */
14162 if (BASELINK_P (baselink) && template_id_p)
14163 BASELINK_FUNCTIONS (baselink)
14164 = build2 (TEMPLATE_ID_EXPR,
14165 unknown_type_node,
14166 BASELINK_FUNCTIONS (baselink),
14167 template_args);
14168 /* Update the conversion operator type. */
14169 if (BASELINK_P (baselink))
14170 BASELINK_OPTYPE (baselink) = optype;
14172 if (!object_type)
14173 object_type = current_class_type;
14175 if (qualified || name == complete_dtor_identifier)
14177 baselink = adjust_result_of_qualified_name_lookup (baselink,
14178 qualifying_scope,
14179 object_type);
14180 if (!qualified)
14181 /* We need to call adjust_result_of_qualified_name_lookup in case the
14182 destructor names a base class, but we unset BASELINK_QUALIFIED_P
14183 so that we still get virtual function binding. */
14184 BASELINK_QUALIFIED_P (baselink) = false;
14186 return baselink;
14189 /* Like tsubst_expr for a SCOPE_REF, given by QUALIFIED_ID. DONE is
14190 true if the qualified-id will be a postfix-expression in-and-of
14191 itself; false if more of the postfix-expression follows the
14192 QUALIFIED_ID. ADDRESS_P is true if the qualified-id is the operand
14193 of "&". */
14195 static tree
14196 tsubst_qualified_id (tree qualified_id, tree args,
14197 tsubst_flags_t complain, tree in_decl,
14198 bool done, bool address_p)
14200 tree expr;
14201 tree scope;
14202 tree name;
14203 bool is_template;
14204 tree template_args;
14205 location_t loc = UNKNOWN_LOCATION;
14207 gcc_assert (TREE_CODE (qualified_id) == SCOPE_REF);
14209 /* Figure out what name to look up. */
14210 name = TREE_OPERAND (qualified_id, 1);
14211 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
14213 is_template = true;
14214 loc = EXPR_LOCATION (name);
14215 template_args = TREE_OPERAND (name, 1);
14216 if (template_args)
14217 template_args = tsubst_template_args (template_args, args,
14218 complain, in_decl);
14219 if (template_args == error_mark_node)
14220 return error_mark_node;
14221 name = TREE_OPERAND (name, 0);
14223 else
14225 is_template = false;
14226 template_args = NULL_TREE;
14229 /* Substitute into the qualifying scope. When there are no ARGS, we
14230 are just trying to simplify a non-dependent expression. In that
14231 case the qualifying scope may be dependent, and, in any case,
14232 substituting will not help. */
14233 scope = TREE_OPERAND (qualified_id, 0);
14234 if (args)
14236 scope = tsubst (scope, args, complain, in_decl);
14237 expr = tsubst_copy (name, args, complain, in_decl);
14239 else
14240 expr = name;
14242 if (dependent_scope_p (scope))
14244 if (is_template)
14245 expr = build_min_nt_loc (loc, TEMPLATE_ID_EXPR, expr, template_args);
14246 tree r = build_qualified_name (NULL_TREE, scope, expr,
14247 QUALIFIED_NAME_IS_TEMPLATE (qualified_id));
14248 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (qualified_id);
14249 return r;
14252 if (!BASELINK_P (name) && !DECL_P (expr))
14254 if (TREE_CODE (expr) == BIT_NOT_EXPR)
14256 /* A BIT_NOT_EXPR is used to represent a destructor. */
14257 if (!check_dtor_name (scope, TREE_OPERAND (expr, 0)))
14259 error ("qualifying type %qT does not match destructor name ~%qT",
14260 scope, TREE_OPERAND (expr, 0));
14261 expr = error_mark_node;
14263 else
14264 expr = lookup_qualified_name (scope, complete_dtor_identifier,
14265 /*is_type_p=*/0, false);
14267 else
14268 expr = lookup_qualified_name (scope, expr, /*is_type_p=*/0, false);
14269 if (TREE_CODE (TREE_CODE (expr) == TEMPLATE_DECL
14270 ? DECL_TEMPLATE_RESULT (expr) : expr) == TYPE_DECL)
14272 if (complain & tf_error)
14274 error ("dependent-name %qE is parsed as a non-type, but "
14275 "instantiation yields a type", qualified_id);
14276 inform (input_location, "say %<typename %E%> if a type is meant", qualified_id);
14278 return error_mark_node;
14282 if (DECL_P (expr))
14284 check_accessibility_of_qualified_id (expr, /*object_type=*/NULL_TREE,
14285 scope);
14286 /* Remember that there was a reference to this entity. */
14287 if (!mark_used (expr, complain) && !(complain & tf_error))
14288 return error_mark_node;
14291 if (expr == error_mark_node || TREE_CODE (expr) == TREE_LIST)
14293 if (complain & tf_error)
14294 qualified_name_lookup_error (scope,
14295 TREE_OPERAND (qualified_id, 1),
14296 expr, input_location);
14297 return error_mark_node;
14300 if (is_template)
14302 if (variable_template_p (expr))
14303 expr = lookup_and_finish_template_variable (expr, template_args,
14304 complain);
14305 else
14306 expr = lookup_template_function (expr, template_args);
14309 if (expr == error_mark_node && complain & tf_error)
14310 qualified_name_lookup_error (scope, TREE_OPERAND (qualified_id, 1),
14311 expr, input_location);
14312 else if (TYPE_P (scope))
14314 expr = (adjust_result_of_qualified_name_lookup
14315 (expr, scope, current_nonlambda_class_type ()));
14316 expr = (finish_qualified_id_expr
14317 (scope, expr, done, address_p && PTRMEM_OK_P (qualified_id),
14318 QUALIFIED_NAME_IS_TEMPLATE (qualified_id),
14319 /*template_arg_p=*/false, complain));
14322 /* Expressions do not generally have reference type. */
14323 if (TREE_CODE (expr) != SCOPE_REF
14324 /* However, if we're about to form a pointer-to-member, we just
14325 want the referenced member referenced. */
14326 && TREE_CODE (expr) != OFFSET_REF)
14327 expr = convert_from_reference (expr);
14329 if (REF_PARENTHESIZED_P (qualified_id))
14330 expr = force_paren_expr (expr);
14332 return expr;
14335 /* tsubst the initializer for a VAR_DECL. INIT is the unsubstituted
14336 initializer, DECL is the substituted VAR_DECL. Other arguments are as
14337 for tsubst. */
14339 static tree
14340 tsubst_init (tree init, tree decl, tree args,
14341 tsubst_flags_t complain, tree in_decl)
14343 if (!init)
14344 return NULL_TREE;
14346 init = tsubst_expr (init, args, complain, in_decl, false);
14348 if (!init && TREE_TYPE (decl) != error_mark_node)
14350 /* If we had an initializer but it
14351 instantiated to nothing,
14352 value-initialize the object. This will
14353 only occur when the initializer was a
14354 pack expansion where the parameter packs
14355 used in that expansion were of length
14356 zero. */
14357 init = build_value_init (TREE_TYPE (decl),
14358 complain);
14359 if (TREE_CODE (init) == AGGR_INIT_EXPR)
14360 init = get_target_expr_sfinae (init, complain);
14363 return init;
14366 /* Like tsubst, but deals with expressions. This function just replaces
14367 template parms; to finish processing the resultant expression, use
14368 tsubst_copy_and_build or tsubst_expr. */
14370 static tree
14371 tsubst_copy (tree t, tree args, tsubst_flags_t complain, tree in_decl)
14373 enum tree_code code;
14374 tree r;
14376 if (t == NULL_TREE || t == error_mark_node || args == NULL_TREE)
14377 return t;
14379 code = TREE_CODE (t);
14381 switch (code)
14383 case PARM_DECL:
14384 r = retrieve_local_specialization (t);
14386 if (r == NULL_TREE)
14388 /* We get here for a use of 'this' in an NSDMI as part of a
14389 constructor call or as part of an aggregate initialization. */
14390 if (DECL_NAME (t) == this_identifier
14391 && ((current_function_decl
14392 && DECL_CONSTRUCTOR_P (current_function_decl))
14393 || (current_class_ref
14394 && TREE_CODE (current_class_ref) == PLACEHOLDER_EXPR)))
14395 return current_class_ptr;
14397 /* This can happen for a parameter name used later in a function
14398 declaration (such as in a late-specified return type). Just
14399 make a dummy decl, since it's only used for its type. */
14400 gcc_assert (cp_unevaluated_operand != 0);
14401 r = tsubst_decl (t, args, complain);
14402 /* Give it the template pattern as its context; its true context
14403 hasn't been instantiated yet and this is good enough for
14404 mangling. */
14405 DECL_CONTEXT (r) = DECL_CONTEXT (t);
14408 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
14409 r = ARGUMENT_PACK_SELECT_ARG (r);
14410 if (!mark_used (r, complain) && !(complain & tf_error))
14411 return error_mark_node;
14412 return r;
14414 case CONST_DECL:
14416 tree enum_type;
14417 tree v;
14419 if (DECL_TEMPLATE_PARM_P (t))
14420 return tsubst_copy (DECL_INITIAL (t), args, complain, in_decl);
14421 /* There is no need to substitute into namespace-scope
14422 enumerators. */
14423 if (DECL_NAMESPACE_SCOPE_P (t))
14424 return t;
14425 /* If ARGS is NULL, then T is known to be non-dependent. */
14426 if (args == NULL_TREE)
14427 return scalar_constant_value (t);
14429 /* Unfortunately, we cannot just call lookup_name here.
14430 Consider:
14432 template <int I> int f() {
14433 enum E { a = I };
14434 struct S { void g() { E e = a; } };
14437 When we instantiate f<7>::S::g(), say, lookup_name is not
14438 clever enough to find f<7>::a. */
14439 enum_type
14440 = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
14441 /*entering_scope=*/0);
14443 for (v = TYPE_VALUES (enum_type);
14444 v != NULL_TREE;
14445 v = TREE_CHAIN (v))
14446 if (TREE_PURPOSE (v) == DECL_NAME (t))
14447 return TREE_VALUE (v);
14449 /* We didn't find the name. That should never happen; if
14450 name-lookup found it during preliminary parsing, we
14451 should find it again here during instantiation. */
14452 gcc_unreachable ();
14454 return t;
14456 case FIELD_DECL:
14457 if (PACK_EXPANSION_P (TREE_TYPE (t)))
14459 /* Check for a local specialization set up by
14460 tsubst_pack_expansion. */
14461 if (tree r = retrieve_local_specialization (t))
14463 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
14464 r = ARGUMENT_PACK_SELECT_ARG (r);
14465 return r;
14468 /* When retrieving a capture pack from a generic lambda, remove the
14469 lambda call op's own template argument list from ARGS. Only the
14470 template arguments active for the closure type should be used to
14471 retrieve the pack specialization. */
14472 if (LAMBDA_FUNCTION_P (current_function_decl)
14473 && (template_class_depth (DECL_CONTEXT (t))
14474 != TMPL_ARGS_DEPTH (args)))
14475 args = strip_innermost_template_args (args, 1);
14477 /* Otherwise return the full NONTYPE_ARGUMENT_PACK that
14478 tsubst_decl put in the hash table. */
14479 return retrieve_specialization (t, args, 0);
14482 if (DECL_CONTEXT (t))
14484 tree ctx;
14486 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
14487 /*entering_scope=*/1);
14488 if (ctx != DECL_CONTEXT (t))
14490 tree r = lookup_field (ctx, DECL_NAME (t), 0, false);
14491 if (!r)
14493 if (complain & tf_error)
14494 error ("using invalid field %qD", t);
14495 return error_mark_node;
14497 return r;
14501 return t;
14503 case VAR_DECL:
14504 case FUNCTION_DECL:
14505 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
14506 r = tsubst (t, args, complain, in_decl);
14507 else if (local_variable_p (t)
14508 && uses_template_parms (DECL_CONTEXT (t)))
14510 r = retrieve_local_specialization (t);
14511 if (r == NULL_TREE)
14513 /* First try name lookup to find the instantiation. */
14514 r = lookup_name (DECL_NAME (t));
14515 if (r)
14517 /* Make sure that the one we found is the one we want. */
14518 tree ctx = DECL_CONTEXT (t);
14519 if (DECL_LANG_SPECIFIC (ctx) && DECL_TEMPLATE_INFO (ctx))
14520 ctx = tsubst (ctx, args, complain, in_decl);
14521 if (ctx != DECL_CONTEXT (r))
14522 r = NULL_TREE;
14525 if (r)
14526 /* OK */;
14527 else
14529 /* This can happen for a variable used in a
14530 late-specified return type of a local lambda, or for a
14531 local static or constant. Building a new VAR_DECL
14532 should be OK in all those cases. */
14533 r = tsubst_decl (t, args, complain);
14534 if (decl_maybe_constant_var_p (r))
14536 /* We can't call cp_finish_decl, so handle the
14537 initializer by hand. */
14538 tree init = tsubst_init (DECL_INITIAL (t), r, args,
14539 complain, in_decl);
14540 if (!processing_template_decl)
14541 init = maybe_constant_init (init);
14542 if (processing_template_decl
14543 ? potential_constant_expression (init)
14544 : reduced_constant_expression_p (init))
14545 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r)
14546 = TREE_CONSTANT (r) = true;
14547 DECL_INITIAL (r) = init;
14549 gcc_assert (cp_unevaluated_operand || TREE_STATIC (r)
14550 || decl_constant_var_p (r)
14551 || errorcount || sorrycount);
14552 if (!processing_template_decl
14553 && !TREE_STATIC (r))
14554 r = process_outer_var_ref (r, complain);
14556 /* Remember this for subsequent uses. */
14557 if (local_specializations)
14558 register_local_specialization (r, t);
14561 else
14562 r = t;
14563 if (!mark_used (r, complain))
14564 return error_mark_node;
14565 return r;
14567 case NAMESPACE_DECL:
14568 return t;
14570 case OVERLOAD:
14571 /* An OVERLOAD will always be a non-dependent overload set; an
14572 overload set from function scope will just be represented with an
14573 IDENTIFIER_NODE, and from class scope with a BASELINK. */
14574 gcc_assert (!uses_template_parms (t));
14575 return t;
14577 case BASELINK:
14578 return tsubst_baselink (t, current_nonlambda_class_type (),
14579 args, complain, in_decl);
14581 case TEMPLATE_DECL:
14582 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
14583 return tsubst (TREE_TYPE (DECL_TEMPLATE_RESULT (t)),
14584 args, complain, in_decl);
14585 else if (DECL_FUNCTION_TEMPLATE_P (t) && DECL_MEMBER_TEMPLATE_P (t))
14586 return tsubst (t, args, complain, in_decl);
14587 else if (DECL_CLASS_SCOPE_P (t)
14588 && uses_template_parms (DECL_CONTEXT (t)))
14590 /* Template template argument like the following example need
14591 special treatment:
14593 template <template <class> class TT> struct C {};
14594 template <class T> struct D {
14595 template <class U> struct E {};
14596 C<E> c; // #1
14598 D<int> d; // #2
14600 We are processing the template argument `E' in #1 for
14601 the template instantiation #2. Originally, `E' is a
14602 TEMPLATE_DECL with `D<T>' as its DECL_CONTEXT. Now we
14603 have to substitute this with one having context `D<int>'. */
14605 tree context = tsubst (DECL_CONTEXT (t), args, complain, in_decl);
14606 return lookup_field (context, DECL_NAME(t), 0, false);
14608 else
14609 /* Ordinary template template argument. */
14610 return t;
14612 case CAST_EXPR:
14613 case REINTERPRET_CAST_EXPR:
14614 case CONST_CAST_EXPR:
14615 case STATIC_CAST_EXPR:
14616 case DYNAMIC_CAST_EXPR:
14617 case IMPLICIT_CONV_EXPR:
14618 case CONVERT_EXPR:
14619 case NOP_EXPR:
14621 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14622 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14623 return build1 (code, type, op0);
14626 case SIZEOF_EXPR:
14627 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0))
14628 || ARGUMENT_PACK_P (TREE_OPERAND (t, 0)))
14630 tree expanded, op = TREE_OPERAND (t, 0);
14631 int len = 0;
14633 if (SIZEOF_EXPR_TYPE_P (t))
14634 op = TREE_TYPE (op);
14636 ++cp_unevaluated_operand;
14637 ++c_inhibit_evaluation_warnings;
14638 /* We only want to compute the number of arguments. */
14639 if (PACK_EXPANSION_P (op))
14640 expanded = tsubst_pack_expansion (op, args, complain, in_decl);
14641 else
14642 expanded = tsubst_template_args (ARGUMENT_PACK_ARGS (op),
14643 args, complain, in_decl);
14644 --cp_unevaluated_operand;
14645 --c_inhibit_evaluation_warnings;
14647 if (TREE_CODE (expanded) == TREE_VEC)
14649 len = TREE_VEC_LENGTH (expanded);
14650 /* Set TREE_USED for the benefit of -Wunused. */
14651 for (int i = 0; i < len; i++)
14652 if (DECL_P (TREE_VEC_ELT (expanded, i)))
14653 TREE_USED (TREE_VEC_ELT (expanded, i)) = true;
14656 if (expanded == error_mark_node)
14657 return error_mark_node;
14658 else if (PACK_EXPANSION_P (expanded)
14659 || (TREE_CODE (expanded) == TREE_VEC
14660 && pack_expansion_args_count (expanded)))
14663 if (PACK_EXPANSION_P (expanded))
14664 /* OK. */;
14665 else if (TREE_VEC_LENGTH (expanded) == 1)
14666 expanded = TREE_VEC_ELT (expanded, 0);
14667 else
14668 expanded = make_argument_pack (expanded);
14670 if (TYPE_P (expanded))
14671 return cxx_sizeof_or_alignof_type (expanded, SIZEOF_EXPR,
14672 complain & tf_error);
14673 else
14674 return cxx_sizeof_or_alignof_expr (expanded, SIZEOF_EXPR,
14675 complain & tf_error);
14677 else
14678 return build_int_cst (size_type_node, len);
14680 if (SIZEOF_EXPR_TYPE_P (t))
14682 r = tsubst (TREE_TYPE (TREE_OPERAND (t, 0)),
14683 args, complain, in_decl);
14684 r = build1 (NOP_EXPR, r, error_mark_node);
14685 r = build1 (SIZEOF_EXPR,
14686 tsubst (TREE_TYPE (t), args, complain, in_decl), r);
14687 SIZEOF_EXPR_TYPE_P (r) = 1;
14688 return r;
14690 /* Fall through */
14692 case INDIRECT_REF:
14693 case NEGATE_EXPR:
14694 case TRUTH_NOT_EXPR:
14695 case BIT_NOT_EXPR:
14696 case ADDR_EXPR:
14697 case UNARY_PLUS_EXPR: /* Unary + */
14698 case ALIGNOF_EXPR:
14699 case AT_ENCODE_EXPR:
14700 case ARROW_EXPR:
14701 case THROW_EXPR:
14702 case TYPEID_EXPR:
14703 case REALPART_EXPR:
14704 case IMAGPART_EXPR:
14705 case PAREN_EXPR:
14707 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14708 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14709 return build1 (code, type, op0);
14712 case COMPONENT_REF:
14714 tree object;
14715 tree name;
14717 object = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14718 name = TREE_OPERAND (t, 1);
14719 if (TREE_CODE (name) == BIT_NOT_EXPR)
14721 name = tsubst_copy (TREE_OPERAND (name, 0), args,
14722 complain, in_decl);
14723 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
14725 else if (TREE_CODE (name) == SCOPE_REF
14726 && TREE_CODE (TREE_OPERAND (name, 1)) == BIT_NOT_EXPR)
14728 tree base = tsubst_copy (TREE_OPERAND (name, 0), args,
14729 complain, in_decl);
14730 name = TREE_OPERAND (name, 1);
14731 name = tsubst_copy (TREE_OPERAND (name, 0), args,
14732 complain, in_decl);
14733 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
14734 name = build_qualified_name (/*type=*/NULL_TREE,
14735 base, name,
14736 /*template_p=*/false);
14738 else if (BASELINK_P (name))
14739 name = tsubst_baselink (name,
14740 non_reference (TREE_TYPE (object)),
14741 args, complain,
14742 in_decl);
14743 else
14744 name = tsubst_copy (name, args, complain, in_decl);
14745 return build_nt (COMPONENT_REF, object, name, NULL_TREE);
14748 case PLUS_EXPR:
14749 case MINUS_EXPR:
14750 case MULT_EXPR:
14751 case TRUNC_DIV_EXPR:
14752 case CEIL_DIV_EXPR:
14753 case FLOOR_DIV_EXPR:
14754 case ROUND_DIV_EXPR:
14755 case EXACT_DIV_EXPR:
14756 case BIT_AND_EXPR:
14757 case BIT_IOR_EXPR:
14758 case BIT_XOR_EXPR:
14759 case TRUNC_MOD_EXPR:
14760 case FLOOR_MOD_EXPR:
14761 case TRUTH_ANDIF_EXPR:
14762 case TRUTH_ORIF_EXPR:
14763 case TRUTH_AND_EXPR:
14764 case TRUTH_OR_EXPR:
14765 case RSHIFT_EXPR:
14766 case LSHIFT_EXPR:
14767 case RROTATE_EXPR:
14768 case LROTATE_EXPR:
14769 case EQ_EXPR:
14770 case NE_EXPR:
14771 case MAX_EXPR:
14772 case MIN_EXPR:
14773 case LE_EXPR:
14774 case GE_EXPR:
14775 case LT_EXPR:
14776 case GT_EXPR:
14777 case COMPOUND_EXPR:
14778 case DOTSTAR_EXPR:
14779 case MEMBER_REF:
14780 case PREDECREMENT_EXPR:
14781 case PREINCREMENT_EXPR:
14782 case POSTDECREMENT_EXPR:
14783 case POSTINCREMENT_EXPR:
14785 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14786 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14787 return build_nt (code, op0, op1);
14790 case SCOPE_REF:
14792 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14793 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14794 return build_qualified_name (/*type=*/NULL_TREE, op0, op1,
14795 QUALIFIED_NAME_IS_TEMPLATE (t));
14798 case ARRAY_REF:
14800 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14801 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14802 return build_nt (ARRAY_REF, op0, op1, NULL_TREE, NULL_TREE);
14805 case CALL_EXPR:
14807 int n = VL_EXP_OPERAND_LENGTH (t);
14808 tree result = build_vl_exp (CALL_EXPR, n);
14809 int i;
14810 for (i = 0; i < n; i++)
14811 TREE_OPERAND (t, i) = tsubst_copy (TREE_OPERAND (t, i), args,
14812 complain, in_decl);
14813 return result;
14816 case COND_EXPR:
14817 case MODOP_EXPR:
14818 case PSEUDO_DTOR_EXPR:
14819 case VEC_PERM_EXPR:
14821 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14822 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14823 tree op2 = tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl);
14824 r = build_nt (code, op0, op1, op2);
14825 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
14826 return r;
14829 case NEW_EXPR:
14831 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14832 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14833 tree op2 = tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl);
14834 r = build_nt (code, op0, op1, op2);
14835 NEW_EXPR_USE_GLOBAL (r) = NEW_EXPR_USE_GLOBAL (t);
14836 return r;
14839 case DELETE_EXPR:
14841 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14842 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14843 r = build_nt (code, op0, op1);
14844 DELETE_EXPR_USE_GLOBAL (r) = DELETE_EXPR_USE_GLOBAL (t);
14845 DELETE_EXPR_USE_VEC (r) = DELETE_EXPR_USE_VEC (t);
14846 return r;
14849 case TEMPLATE_ID_EXPR:
14851 /* Substituted template arguments */
14852 tree fn = TREE_OPERAND (t, 0);
14853 tree targs = TREE_OPERAND (t, 1);
14855 fn = tsubst_copy (fn, args, complain, in_decl);
14856 if (targs)
14857 targs = tsubst_template_args (targs, args, complain, in_decl);
14859 return lookup_template_function (fn, targs);
14862 case TREE_LIST:
14864 tree purpose, value, chain;
14866 if (t == void_list_node)
14867 return t;
14869 purpose = TREE_PURPOSE (t);
14870 if (purpose)
14871 purpose = tsubst_copy (purpose, args, complain, in_decl);
14872 value = TREE_VALUE (t);
14873 if (value)
14874 value = tsubst_copy (value, args, complain, in_decl);
14875 chain = TREE_CHAIN (t);
14876 if (chain && chain != void_type_node)
14877 chain = tsubst_copy (chain, args, complain, in_decl);
14878 if (purpose == TREE_PURPOSE (t)
14879 && value == TREE_VALUE (t)
14880 && chain == TREE_CHAIN (t))
14881 return t;
14882 return tree_cons (purpose, value, chain);
14885 case RECORD_TYPE:
14886 case UNION_TYPE:
14887 case ENUMERAL_TYPE:
14888 case INTEGER_TYPE:
14889 case TEMPLATE_TYPE_PARM:
14890 case TEMPLATE_TEMPLATE_PARM:
14891 case BOUND_TEMPLATE_TEMPLATE_PARM:
14892 case TEMPLATE_PARM_INDEX:
14893 case POINTER_TYPE:
14894 case REFERENCE_TYPE:
14895 case OFFSET_TYPE:
14896 case FUNCTION_TYPE:
14897 case METHOD_TYPE:
14898 case ARRAY_TYPE:
14899 case TYPENAME_TYPE:
14900 case UNBOUND_CLASS_TEMPLATE:
14901 case TYPEOF_TYPE:
14902 case DECLTYPE_TYPE:
14903 case TYPE_DECL:
14904 return tsubst (t, args, complain, in_decl);
14906 case USING_DECL:
14907 t = DECL_NAME (t);
14908 /* Fall through. */
14909 case IDENTIFIER_NODE:
14910 if (IDENTIFIER_TYPENAME_P (t))
14912 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14913 return mangle_conv_op_name_for_type (new_type);
14915 else
14916 return t;
14918 case CONSTRUCTOR:
14919 /* This is handled by tsubst_copy_and_build. */
14920 gcc_unreachable ();
14922 case VA_ARG_EXPR:
14924 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14925 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14926 return build_x_va_arg (EXPR_LOCATION (t), op0, type);
14929 case CLEANUP_POINT_EXPR:
14930 /* We shouldn't have built any of these during initial template
14931 generation. Instead, they should be built during instantiation
14932 in response to the saved STMT_IS_FULL_EXPR_P setting. */
14933 gcc_unreachable ();
14935 case OFFSET_REF:
14937 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14938 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14939 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14940 r = build2 (code, type, op0, op1);
14941 PTRMEM_OK_P (r) = PTRMEM_OK_P (t);
14942 if (!mark_used (TREE_OPERAND (r, 1), complain)
14943 && !(complain & tf_error))
14944 return error_mark_node;
14945 return r;
14948 case EXPR_PACK_EXPANSION:
14949 error ("invalid use of pack expansion expression");
14950 return error_mark_node;
14952 case NONTYPE_ARGUMENT_PACK:
14953 error ("use %<...%> to expand argument pack");
14954 return error_mark_node;
14956 case VOID_CST:
14957 gcc_checking_assert (t == void_node && VOID_TYPE_P (TREE_TYPE (t)));
14958 return t;
14960 case INTEGER_CST:
14961 case REAL_CST:
14962 case STRING_CST:
14963 case COMPLEX_CST:
14965 /* Instantiate any typedefs in the type. */
14966 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14967 r = fold_convert (type, t);
14968 gcc_assert (TREE_CODE (r) == code);
14969 return r;
14972 case PTRMEM_CST:
14973 /* These can sometimes show up in a partial instantiation, but never
14974 involve template parms. */
14975 gcc_assert (!uses_template_parms (t));
14976 return t;
14978 case UNARY_LEFT_FOLD_EXPR:
14979 return tsubst_unary_left_fold (t, args, complain, in_decl);
14980 case UNARY_RIGHT_FOLD_EXPR:
14981 return tsubst_unary_right_fold (t, args, complain, in_decl);
14982 case BINARY_LEFT_FOLD_EXPR:
14983 return tsubst_binary_left_fold (t, args, complain, in_decl);
14984 case BINARY_RIGHT_FOLD_EXPR:
14985 return tsubst_binary_right_fold (t, args, complain, in_decl);
14987 default:
14988 /* We shouldn't get here, but keep going if !flag_checking. */
14989 if (flag_checking)
14990 gcc_unreachable ();
14991 return t;
14995 /* Helper function for tsubst_omp_clauses, used for instantiation of
14996 OMP_CLAUSE_DECL of clauses. */
14998 static tree
14999 tsubst_omp_clause_decl (tree decl, tree args, tsubst_flags_t complain,
15000 tree in_decl)
15002 if (decl == NULL_TREE)
15003 return NULL_TREE;
15005 /* Handle an OpenMP array section represented as a TREE_LIST (or
15006 OMP_CLAUSE_DEPEND_KIND). An OMP_CLAUSE_DEPEND (with a depend
15007 kind of OMP_CLAUSE_DEPEND_SINK) can also be represented as a
15008 TREE_LIST. We can handle it exactly the same as an array section
15009 (purpose, value, and a chain), even though the nomenclature
15010 (low_bound, length, etc) is different. */
15011 if (TREE_CODE (decl) == TREE_LIST)
15013 tree low_bound
15014 = tsubst_expr (TREE_PURPOSE (decl), args, complain, in_decl,
15015 /*integral_constant_expression_p=*/false);
15016 tree length = tsubst_expr (TREE_VALUE (decl), args, complain, in_decl,
15017 /*integral_constant_expression_p=*/false);
15018 tree chain = tsubst_omp_clause_decl (TREE_CHAIN (decl), args, complain,
15019 in_decl);
15020 if (TREE_PURPOSE (decl) == low_bound
15021 && TREE_VALUE (decl) == length
15022 && TREE_CHAIN (decl) == chain)
15023 return decl;
15024 tree ret = tree_cons (low_bound, length, chain);
15025 OMP_CLAUSE_DEPEND_SINK_NEGATIVE (ret)
15026 = OMP_CLAUSE_DEPEND_SINK_NEGATIVE (decl);
15027 return ret;
15029 tree ret = tsubst_expr (decl, args, complain, in_decl,
15030 /*integral_constant_expression_p=*/false);
15031 /* Undo convert_from_reference tsubst_expr could have called. */
15032 if (decl
15033 && REFERENCE_REF_P (ret)
15034 && !REFERENCE_REF_P (decl))
15035 ret = TREE_OPERAND (ret, 0);
15036 return ret;
15039 /* Like tsubst_copy, but specifically for OpenMP clauses. */
15041 static tree
15042 tsubst_omp_clauses (tree clauses, enum c_omp_region_type ort,
15043 tree args, tsubst_flags_t complain, tree in_decl)
15045 tree new_clauses = NULL_TREE, nc, oc;
15046 tree linear_no_step = NULL_TREE;
15048 for (oc = clauses; oc ; oc = OMP_CLAUSE_CHAIN (oc))
15050 nc = copy_node (oc);
15051 OMP_CLAUSE_CHAIN (nc) = new_clauses;
15052 new_clauses = nc;
15054 switch (OMP_CLAUSE_CODE (nc))
15056 case OMP_CLAUSE_LASTPRIVATE:
15057 if (OMP_CLAUSE_LASTPRIVATE_STMT (oc))
15059 OMP_CLAUSE_LASTPRIVATE_STMT (nc) = push_stmt_list ();
15060 tsubst_expr (OMP_CLAUSE_LASTPRIVATE_STMT (oc), args, complain,
15061 in_decl, /*integral_constant_expression_p=*/false);
15062 OMP_CLAUSE_LASTPRIVATE_STMT (nc)
15063 = pop_stmt_list (OMP_CLAUSE_LASTPRIVATE_STMT (nc));
15065 /* FALLTHRU */
15066 case OMP_CLAUSE_PRIVATE:
15067 case OMP_CLAUSE_SHARED:
15068 case OMP_CLAUSE_FIRSTPRIVATE:
15069 case OMP_CLAUSE_COPYIN:
15070 case OMP_CLAUSE_COPYPRIVATE:
15071 case OMP_CLAUSE_UNIFORM:
15072 case OMP_CLAUSE_DEPEND:
15073 case OMP_CLAUSE_FROM:
15074 case OMP_CLAUSE_TO:
15075 case OMP_CLAUSE_MAP:
15076 case OMP_CLAUSE_USE_DEVICE_PTR:
15077 case OMP_CLAUSE_IS_DEVICE_PTR:
15078 OMP_CLAUSE_DECL (nc)
15079 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
15080 in_decl);
15081 break;
15082 case OMP_CLAUSE_TILE:
15083 case OMP_CLAUSE_IF:
15084 case OMP_CLAUSE_NUM_THREADS:
15085 case OMP_CLAUSE_SCHEDULE:
15086 case OMP_CLAUSE_COLLAPSE:
15087 case OMP_CLAUSE_FINAL:
15088 case OMP_CLAUSE_DEVICE:
15089 case OMP_CLAUSE_DIST_SCHEDULE:
15090 case OMP_CLAUSE_NUM_TEAMS:
15091 case OMP_CLAUSE_THREAD_LIMIT:
15092 case OMP_CLAUSE_SAFELEN:
15093 case OMP_CLAUSE_SIMDLEN:
15094 case OMP_CLAUSE_NUM_TASKS:
15095 case OMP_CLAUSE_GRAINSIZE:
15096 case OMP_CLAUSE_PRIORITY:
15097 case OMP_CLAUSE_ORDERED:
15098 case OMP_CLAUSE_HINT:
15099 case OMP_CLAUSE_NUM_GANGS:
15100 case OMP_CLAUSE_NUM_WORKERS:
15101 case OMP_CLAUSE_VECTOR_LENGTH:
15102 case OMP_CLAUSE_WORKER:
15103 case OMP_CLAUSE_VECTOR:
15104 case OMP_CLAUSE_ASYNC:
15105 case OMP_CLAUSE_WAIT:
15106 OMP_CLAUSE_OPERAND (nc, 0)
15107 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 0), args, complain,
15108 in_decl, /*integral_constant_expression_p=*/false);
15109 break;
15110 case OMP_CLAUSE_REDUCTION:
15111 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (oc))
15113 tree placeholder = OMP_CLAUSE_REDUCTION_PLACEHOLDER (oc);
15114 if (TREE_CODE (placeholder) == SCOPE_REF)
15116 tree scope = tsubst (TREE_OPERAND (placeholder, 0), args,
15117 complain, in_decl);
15118 OMP_CLAUSE_REDUCTION_PLACEHOLDER (nc)
15119 = build_qualified_name (NULL_TREE, scope,
15120 TREE_OPERAND (placeholder, 1),
15121 false);
15123 else
15124 gcc_assert (identifier_p (placeholder));
15126 OMP_CLAUSE_DECL (nc)
15127 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
15128 in_decl);
15129 break;
15130 case OMP_CLAUSE_GANG:
15131 case OMP_CLAUSE_ALIGNED:
15132 OMP_CLAUSE_DECL (nc)
15133 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
15134 in_decl);
15135 OMP_CLAUSE_OPERAND (nc, 1)
15136 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 1), args, complain,
15137 in_decl, /*integral_constant_expression_p=*/false);
15138 break;
15139 case OMP_CLAUSE_LINEAR:
15140 OMP_CLAUSE_DECL (nc)
15141 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
15142 in_decl);
15143 if (OMP_CLAUSE_LINEAR_STEP (oc) == NULL_TREE)
15145 gcc_assert (!linear_no_step);
15146 linear_no_step = nc;
15148 else if (OMP_CLAUSE_LINEAR_VARIABLE_STRIDE (oc))
15149 OMP_CLAUSE_LINEAR_STEP (nc)
15150 = tsubst_omp_clause_decl (OMP_CLAUSE_LINEAR_STEP (oc), args,
15151 complain, in_decl);
15152 else
15153 OMP_CLAUSE_LINEAR_STEP (nc)
15154 = tsubst_expr (OMP_CLAUSE_LINEAR_STEP (oc), args, complain,
15155 in_decl,
15156 /*integral_constant_expression_p=*/false);
15157 break;
15158 case OMP_CLAUSE_NOWAIT:
15159 case OMP_CLAUSE_DEFAULT:
15160 case OMP_CLAUSE_UNTIED:
15161 case OMP_CLAUSE_MERGEABLE:
15162 case OMP_CLAUSE_INBRANCH:
15163 case OMP_CLAUSE_NOTINBRANCH:
15164 case OMP_CLAUSE_PROC_BIND:
15165 case OMP_CLAUSE_FOR:
15166 case OMP_CLAUSE_PARALLEL:
15167 case OMP_CLAUSE_SECTIONS:
15168 case OMP_CLAUSE_TASKGROUP:
15169 case OMP_CLAUSE_NOGROUP:
15170 case OMP_CLAUSE_THREADS:
15171 case OMP_CLAUSE_SIMD:
15172 case OMP_CLAUSE_DEFAULTMAP:
15173 case OMP_CLAUSE_INDEPENDENT:
15174 case OMP_CLAUSE_AUTO:
15175 case OMP_CLAUSE_SEQ:
15176 break;
15177 default:
15178 gcc_unreachable ();
15180 if ((ort & C_ORT_OMP_DECLARE_SIMD) == C_ORT_OMP)
15181 switch (OMP_CLAUSE_CODE (nc))
15183 case OMP_CLAUSE_SHARED:
15184 case OMP_CLAUSE_PRIVATE:
15185 case OMP_CLAUSE_FIRSTPRIVATE:
15186 case OMP_CLAUSE_LASTPRIVATE:
15187 case OMP_CLAUSE_COPYPRIVATE:
15188 case OMP_CLAUSE_LINEAR:
15189 case OMP_CLAUSE_REDUCTION:
15190 case OMP_CLAUSE_USE_DEVICE_PTR:
15191 case OMP_CLAUSE_IS_DEVICE_PTR:
15192 /* tsubst_expr on SCOPE_REF results in returning
15193 finish_non_static_data_member result. Undo that here. */
15194 if (TREE_CODE (OMP_CLAUSE_DECL (oc)) == SCOPE_REF
15195 && (TREE_CODE (TREE_OPERAND (OMP_CLAUSE_DECL (oc), 1))
15196 == IDENTIFIER_NODE))
15198 tree t = OMP_CLAUSE_DECL (nc);
15199 tree v = t;
15200 while (v)
15201 switch (TREE_CODE (v))
15203 case COMPONENT_REF:
15204 case MEM_REF:
15205 case INDIRECT_REF:
15206 CASE_CONVERT:
15207 case POINTER_PLUS_EXPR:
15208 v = TREE_OPERAND (v, 0);
15209 continue;
15210 case PARM_DECL:
15211 if (DECL_CONTEXT (v) == current_function_decl
15212 && DECL_ARTIFICIAL (v)
15213 && DECL_NAME (v) == this_identifier)
15214 OMP_CLAUSE_DECL (nc) = TREE_OPERAND (t, 1);
15215 /* FALLTHRU */
15216 default:
15217 v = NULL_TREE;
15218 break;
15221 else if (VAR_P (OMP_CLAUSE_DECL (oc))
15222 && DECL_HAS_VALUE_EXPR_P (OMP_CLAUSE_DECL (oc))
15223 && DECL_ARTIFICIAL (OMP_CLAUSE_DECL (oc))
15224 && DECL_LANG_SPECIFIC (OMP_CLAUSE_DECL (oc))
15225 && DECL_OMP_PRIVATIZED_MEMBER (OMP_CLAUSE_DECL (oc)))
15227 tree decl = OMP_CLAUSE_DECL (nc);
15228 if (VAR_P (decl))
15230 if (!DECL_LANG_SPECIFIC (decl))
15231 retrofit_lang_decl (decl);
15232 DECL_OMP_PRIVATIZED_MEMBER (decl) = 1;
15235 break;
15236 default:
15237 break;
15241 new_clauses = nreverse (new_clauses);
15242 if (ort != C_ORT_OMP_DECLARE_SIMD)
15244 new_clauses = finish_omp_clauses (new_clauses, ort);
15245 if (linear_no_step)
15246 for (nc = new_clauses; nc; nc = OMP_CLAUSE_CHAIN (nc))
15247 if (nc == linear_no_step)
15249 OMP_CLAUSE_LINEAR_STEP (nc) = NULL_TREE;
15250 break;
15253 return new_clauses;
15256 /* Like tsubst_copy_and_build, but unshare TREE_LIST nodes. */
15258 static tree
15259 tsubst_copy_asm_operands (tree t, tree args, tsubst_flags_t complain,
15260 tree in_decl)
15262 #define RECUR(t) tsubst_copy_asm_operands (t, args, complain, in_decl)
15264 tree purpose, value, chain;
15266 if (t == NULL)
15267 return t;
15269 if (TREE_CODE (t) != TREE_LIST)
15270 return tsubst_copy_and_build (t, args, complain, in_decl,
15271 /*function_p=*/false,
15272 /*integral_constant_expression_p=*/false);
15274 if (t == void_list_node)
15275 return t;
15277 purpose = TREE_PURPOSE (t);
15278 if (purpose)
15279 purpose = RECUR (purpose);
15280 value = TREE_VALUE (t);
15281 if (value)
15283 if (TREE_CODE (value) != LABEL_DECL)
15284 value = RECUR (value);
15285 else
15287 value = lookup_label (DECL_NAME (value));
15288 gcc_assert (TREE_CODE (value) == LABEL_DECL);
15289 TREE_USED (value) = 1;
15292 chain = TREE_CHAIN (t);
15293 if (chain && chain != void_type_node)
15294 chain = RECUR (chain);
15295 return tree_cons (purpose, value, chain);
15296 #undef RECUR
15299 /* Used to temporarily communicate the list of #pragma omp parallel
15300 clauses to #pragma omp for instantiation if they are combined
15301 together. */
15303 static tree *omp_parallel_combined_clauses;
15305 /* Substitute one OMP_FOR iterator. */
15307 static void
15308 tsubst_omp_for_iterator (tree t, int i, tree declv, tree orig_declv,
15309 tree initv, tree condv, tree incrv, tree *clauses,
15310 tree args, tsubst_flags_t complain, tree in_decl,
15311 bool integral_constant_expression_p)
15313 #define RECUR(NODE) \
15314 tsubst_expr ((NODE), args, complain, in_decl, \
15315 integral_constant_expression_p)
15316 tree decl, init, cond, incr;
15318 init = TREE_VEC_ELT (OMP_FOR_INIT (t), i);
15319 gcc_assert (TREE_CODE (init) == MODIFY_EXPR);
15321 if (orig_declv && OMP_FOR_ORIG_DECLS (t))
15323 tree o = TREE_VEC_ELT (OMP_FOR_ORIG_DECLS (t), i);
15324 TREE_VEC_ELT (orig_declv, i) = RECUR (o);
15327 decl = TREE_OPERAND (init, 0);
15328 init = TREE_OPERAND (init, 1);
15329 tree decl_expr = NULL_TREE;
15330 if (init && TREE_CODE (init) == DECL_EXPR)
15332 /* We need to jump through some hoops to handle declarations in the
15333 init-statement, since we might need to handle auto deduction,
15334 but we need to keep control of initialization. */
15335 decl_expr = init;
15336 init = DECL_INITIAL (DECL_EXPR_DECL (init));
15337 decl = tsubst_decl (decl, args, complain);
15339 else
15341 if (TREE_CODE (decl) == SCOPE_REF)
15343 decl = RECUR (decl);
15344 if (TREE_CODE (decl) == COMPONENT_REF)
15346 tree v = decl;
15347 while (v)
15348 switch (TREE_CODE (v))
15350 case COMPONENT_REF:
15351 case MEM_REF:
15352 case INDIRECT_REF:
15353 CASE_CONVERT:
15354 case POINTER_PLUS_EXPR:
15355 v = TREE_OPERAND (v, 0);
15356 continue;
15357 case PARM_DECL:
15358 if (DECL_CONTEXT (v) == current_function_decl
15359 && DECL_ARTIFICIAL (v)
15360 && DECL_NAME (v) == this_identifier)
15362 decl = TREE_OPERAND (decl, 1);
15363 decl = omp_privatize_field (decl, false);
15365 /* FALLTHRU */
15366 default:
15367 v = NULL_TREE;
15368 break;
15372 else
15373 decl = RECUR (decl);
15375 init = RECUR (init);
15377 tree auto_node = type_uses_auto (TREE_TYPE (decl));
15378 if (auto_node && init)
15379 TREE_TYPE (decl)
15380 = do_auto_deduction (TREE_TYPE (decl), init, auto_node);
15382 gcc_assert (!type_dependent_expression_p (decl));
15384 if (!CLASS_TYPE_P (TREE_TYPE (decl)))
15386 if (decl_expr)
15388 /* Declare the variable, but don't let that initialize it. */
15389 tree init_sav = DECL_INITIAL (DECL_EXPR_DECL (decl_expr));
15390 DECL_INITIAL (DECL_EXPR_DECL (decl_expr)) = NULL_TREE;
15391 RECUR (decl_expr);
15392 DECL_INITIAL (DECL_EXPR_DECL (decl_expr)) = init_sav;
15395 cond = RECUR (TREE_VEC_ELT (OMP_FOR_COND (t), i));
15396 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
15397 if (TREE_CODE (incr) == MODIFY_EXPR)
15399 tree lhs = RECUR (TREE_OPERAND (incr, 0));
15400 tree rhs = RECUR (TREE_OPERAND (incr, 1));
15401 incr = build_x_modify_expr (EXPR_LOCATION (incr), lhs,
15402 NOP_EXPR, rhs, complain);
15404 else
15405 incr = RECUR (incr);
15406 TREE_VEC_ELT (declv, i) = decl;
15407 TREE_VEC_ELT (initv, i) = init;
15408 TREE_VEC_ELT (condv, i) = cond;
15409 TREE_VEC_ELT (incrv, i) = incr;
15410 return;
15413 if (decl_expr)
15415 /* Declare and initialize the variable. */
15416 RECUR (decl_expr);
15417 init = NULL_TREE;
15419 else if (init)
15421 tree *pc;
15422 int j;
15423 for (j = (omp_parallel_combined_clauses == NULL ? 1 : 0); j < 2; j++)
15425 for (pc = j ? clauses : omp_parallel_combined_clauses; *pc; )
15427 if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_PRIVATE
15428 && OMP_CLAUSE_DECL (*pc) == decl)
15429 break;
15430 else if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_LASTPRIVATE
15431 && OMP_CLAUSE_DECL (*pc) == decl)
15433 if (j)
15434 break;
15435 /* Move lastprivate (decl) clause to OMP_FOR_CLAUSES. */
15436 tree c = *pc;
15437 *pc = OMP_CLAUSE_CHAIN (c);
15438 OMP_CLAUSE_CHAIN (c) = *clauses;
15439 *clauses = c;
15441 else if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_FIRSTPRIVATE
15442 && OMP_CLAUSE_DECL (*pc) == decl)
15444 error ("iteration variable %qD should not be firstprivate",
15445 decl);
15446 *pc = OMP_CLAUSE_CHAIN (*pc);
15448 else if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_REDUCTION
15449 && OMP_CLAUSE_DECL (*pc) == decl)
15451 error ("iteration variable %qD should not be reduction",
15452 decl);
15453 *pc = OMP_CLAUSE_CHAIN (*pc);
15455 else
15456 pc = &OMP_CLAUSE_CHAIN (*pc);
15458 if (*pc)
15459 break;
15461 if (*pc == NULL_TREE)
15463 tree c = build_omp_clause (input_location, OMP_CLAUSE_PRIVATE);
15464 OMP_CLAUSE_DECL (c) = decl;
15465 c = finish_omp_clauses (c, C_ORT_OMP);
15466 if (c)
15468 OMP_CLAUSE_CHAIN (c) = *clauses;
15469 *clauses = c;
15473 cond = TREE_VEC_ELT (OMP_FOR_COND (t), i);
15474 if (COMPARISON_CLASS_P (cond))
15476 tree op0 = RECUR (TREE_OPERAND (cond, 0));
15477 tree op1 = RECUR (TREE_OPERAND (cond, 1));
15478 cond = build2 (TREE_CODE (cond), boolean_type_node, op0, op1);
15480 else
15481 cond = RECUR (cond);
15482 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
15483 switch (TREE_CODE (incr))
15485 case PREINCREMENT_EXPR:
15486 case PREDECREMENT_EXPR:
15487 case POSTINCREMENT_EXPR:
15488 case POSTDECREMENT_EXPR:
15489 incr = build2 (TREE_CODE (incr), TREE_TYPE (decl),
15490 RECUR (TREE_OPERAND (incr, 0)), NULL_TREE);
15491 break;
15492 case MODIFY_EXPR:
15493 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
15494 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
15496 tree rhs = TREE_OPERAND (incr, 1);
15497 tree lhs = RECUR (TREE_OPERAND (incr, 0));
15498 tree rhs0 = RECUR (TREE_OPERAND (rhs, 0));
15499 tree rhs1 = RECUR (TREE_OPERAND (rhs, 1));
15500 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
15501 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
15502 rhs0, rhs1));
15504 else
15505 incr = RECUR (incr);
15506 break;
15507 case MODOP_EXPR:
15508 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
15509 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
15511 tree lhs = RECUR (TREE_OPERAND (incr, 0));
15512 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
15513 build2 (TREE_CODE (TREE_OPERAND (incr, 1)),
15514 TREE_TYPE (decl), lhs,
15515 RECUR (TREE_OPERAND (incr, 2))));
15517 else if (TREE_CODE (TREE_OPERAND (incr, 1)) == NOP_EXPR
15518 && (TREE_CODE (TREE_OPERAND (incr, 2)) == PLUS_EXPR
15519 || (TREE_CODE (TREE_OPERAND (incr, 2)) == MINUS_EXPR)))
15521 tree rhs = TREE_OPERAND (incr, 2);
15522 tree lhs = RECUR (TREE_OPERAND (incr, 0));
15523 tree rhs0 = RECUR (TREE_OPERAND (rhs, 0));
15524 tree rhs1 = RECUR (TREE_OPERAND (rhs, 1));
15525 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
15526 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
15527 rhs0, rhs1));
15529 else
15530 incr = RECUR (incr);
15531 break;
15532 default:
15533 incr = RECUR (incr);
15534 break;
15537 TREE_VEC_ELT (declv, i) = decl;
15538 TREE_VEC_ELT (initv, i) = init;
15539 TREE_VEC_ELT (condv, i) = cond;
15540 TREE_VEC_ELT (incrv, i) = incr;
15541 #undef RECUR
15544 /* Helper function of tsubst_expr, find OMP_TEAMS inside
15545 of OMP_TARGET's body. */
15547 static tree
15548 tsubst_find_omp_teams (tree *tp, int *walk_subtrees, void *)
15550 *walk_subtrees = 0;
15551 switch (TREE_CODE (*tp))
15553 case OMP_TEAMS:
15554 return *tp;
15555 case BIND_EXPR:
15556 case STATEMENT_LIST:
15557 *walk_subtrees = 1;
15558 break;
15559 default:
15560 break;
15562 return NULL_TREE;
15565 /* Helper function for tsubst_expr. For decomposition declaration
15566 artificial base DECL, which is tsubsted PATTERN_DECL, tsubst
15567 also the corresponding decls representing the identifiers
15568 of the decomposition declaration. Return DECL if successful
15569 or error_mark_node otherwise, set *FIRST to the first decl
15570 in the list chained through DECL_CHAIN and *CNT to the number
15571 of such decls. */
15573 static tree
15574 tsubst_decomp_names (tree decl, tree pattern_decl, tree args,
15575 tsubst_flags_t complain, tree in_decl, tree *first,
15576 unsigned int *cnt)
15578 tree decl2, decl3, prev = decl;
15579 *cnt = 0;
15580 gcc_assert (DECL_NAME (decl) == NULL_TREE);
15581 for (decl2 = DECL_CHAIN (pattern_decl);
15582 decl2
15583 && VAR_P (decl2)
15584 && DECL_DECOMPOSITION_P (decl2)
15585 && DECL_NAME (decl2);
15586 decl2 = DECL_CHAIN (decl2))
15588 (*cnt)++;
15589 gcc_assert (DECL_HAS_VALUE_EXPR_P (decl2));
15590 tree v = DECL_VALUE_EXPR (decl2);
15591 DECL_HAS_VALUE_EXPR_P (decl2) = 0;
15592 SET_DECL_VALUE_EXPR (decl2, NULL_TREE);
15593 decl3 = tsubst (decl2, args, complain, in_decl);
15594 SET_DECL_VALUE_EXPR (decl2, v);
15595 DECL_HAS_VALUE_EXPR_P (decl2) = 1;
15596 if (VAR_P (decl3))
15597 DECL_TEMPLATE_INSTANTIATED (decl3) = 1;
15598 maybe_push_decl (decl3);
15599 if (error_operand_p (decl3))
15600 decl = error_mark_node;
15601 else if (decl != error_mark_node
15602 && DECL_CHAIN (decl3) != prev)
15604 gcc_assert (errorcount);
15605 decl = error_mark_node;
15607 else
15608 prev = decl3;
15610 *first = prev;
15611 return decl;
15614 /* Like tsubst_copy for expressions, etc. but also does semantic
15615 processing. */
15617 tree
15618 tsubst_expr (tree t, tree args, tsubst_flags_t complain, tree in_decl,
15619 bool integral_constant_expression_p)
15621 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
15622 #define RECUR(NODE) \
15623 tsubst_expr ((NODE), args, complain, in_decl, \
15624 integral_constant_expression_p)
15626 tree stmt, tmp;
15627 tree r;
15628 location_t loc;
15630 if (t == NULL_TREE || t == error_mark_node)
15631 return t;
15633 loc = input_location;
15634 if (EXPR_HAS_LOCATION (t))
15635 input_location = EXPR_LOCATION (t);
15636 if (STATEMENT_CODE_P (TREE_CODE (t)))
15637 current_stmt_tree ()->stmts_are_full_exprs_p = STMT_IS_FULL_EXPR_P (t);
15639 switch (TREE_CODE (t))
15641 case STATEMENT_LIST:
15643 tree_stmt_iterator i;
15644 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
15645 RECUR (tsi_stmt (i));
15646 break;
15649 case CTOR_INITIALIZER:
15650 finish_mem_initializers (tsubst_initializer_list
15651 (TREE_OPERAND (t, 0), args));
15652 break;
15654 case RETURN_EXPR:
15655 finish_return_stmt (RECUR (TREE_OPERAND (t, 0)));
15656 break;
15658 case EXPR_STMT:
15659 tmp = RECUR (EXPR_STMT_EXPR (t));
15660 if (EXPR_STMT_STMT_EXPR_RESULT (t))
15661 finish_stmt_expr_expr (tmp, cur_stmt_expr);
15662 else
15663 finish_expr_stmt (tmp);
15664 break;
15666 case USING_STMT:
15667 do_using_directive (USING_STMT_NAMESPACE (t));
15668 break;
15670 case DECL_EXPR:
15672 tree decl, pattern_decl;
15673 tree init;
15675 pattern_decl = decl = DECL_EXPR_DECL (t);
15676 if (TREE_CODE (decl) == LABEL_DECL)
15677 finish_label_decl (DECL_NAME (decl));
15678 else if (TREE_CODE (decl) == USING_DECL)
15680 tree scope = USING_DECL_SCOPE (decl);
15681 tree name = DECL_NAME (decl);
15683 scope = tsubst (scope, args, complain, in_decl);
15684 decl = lookup_qualified_name (scope, name,
15685 /*is_type_p=*/false,
15686 /*complain=*/false);
15687 if (decl == error_mark_node || TREE_CODE (decl) == TREE_LIST)
15688 qualified_name_lookup_error (scope, name, decl, input_location);
15689 else
15690 do_local_using_decl (decl, scope, name);
15692 else if (DECL_PACK_P (decl))
15694 /* Don't build up decls for a variadic capture proxy, we'll
15695 instantiate the elements directly as needed. */
15696 break;
15698 else
15700 init = DECL_INITIAL (decl);
15701 decl = tsubst (decl, args, complain, in_decl);
15702 if (decl != error_mark_node)
15704 /* By marking the declaration as instantiated, we avoid
15705 trying to instantiate it. Since instantiate_decl can't
15706 handle local variables, and since we've already done
15707 all that needs to be done, that's the right thing to
15708 do. */
15709 if (VAR_P (decl))
15710 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
15711 if (VAR_P (decl)
15712 && ANON_AGGR_TYPE_P (TREE_TYPE (decl)))
15713 /* Anonymous aggregates are a special case. */
15714 finish_anon_union (decl);
15715 else if (is_capture_proxy (DECL_EXPR_DECL (t)))
15717 DECL_CONTEXT (decl) = current_function_decl;
15718 if (DECL_NAME (decl) == this_identifier)
15720 tree lam = DECL_CONTEXT (current_function_decl);
15721 lam = CLASSTYPE_LAMBDA_EXPR (lam);
15722 LAMBDA_EXPR_THIS_CAPTURE (lam) = decl;
15724 insert_capture_proxy (decl);
15726 else if (DECL_IMPLICIT_TYPEDEF_P (t))
15727 /* We already did a pushtag. */;
15728 else if (TREE_CODE (decl) == FUNCTION_DECL
15729 && DECL_OMP_DECLARE_REDUCTION_P (decl)
15730 && DECL_FUNCTION_SCOPE_P (pattern_decl))
15732 DECL_CONTEXT (decl) = NULL_TREE;
15733 pushdecl (decl);
15734 DECL_CONTEXT (decl) = current_function_decl;
15735 cp_check_omp_declare_reduction (decl);
15737 else
15739 int const_init = false;
15740 maybe_push_decl (decl);
15741 if (VAR_P (decl)
15742 && DECL_PRETTY_FUNCTION_P (decl))
15744 /* For __PRETTY_FUNCTION__ we have to adjust the
15745 initializer. */
15746 const char *const name
15747 = cxx_printable_name (current_function_decl, 2);
15748 init = cp_fname_init (name, &TREE_TYPE (decl));
15750 else
15751 init = tsubst_init (init, decl, args, complain, in_decl);
15753 if (VAR_P (decl))
15754 const_init = (DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P
15755 (pattern_decl));
15756 cp_finish_decl (decl, init, const_init, NULL_TREE, 0);
15757 if (VAR_P (decl)
15758 && DECL_DECOMPOSITION_P (decl)
15759 && TREE_TYPE (pattern_decl) != error_mark_node)
15761 unsigned int cnt;
15762 tree first;
15763 decl = tsubst_decomp_names (decl, pattern_decl, args,
15764 complain, in_decl, &first,
15765 &cnt);
15766 if (decl != error_mark_node)
15767 cp_finish_decomp (decl, first, cnt);
15773 break;
15776 case FOR_STMT:
15777 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
15778 RECUR (FOR_INIT_STMT (t));
15779 finish_init_stmt (stmt);
15780 tmp = RECUR (FOR_COND (t));
15781 finish_for_cond (tmp, stmt, false);
15782 tmp = RECUR (FOR_EXPR (t));
15783 finish_for_expr (tmp, stmt);
15784 RECUR (FOR_BODY (t));
15785 finish_for_stmt (stmt);
15786 break;
15788 case RANGE_FOR_STMT:
15790 tree decl, expr;
15791 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
15792 decl = RANGE_FOR_DECL (t);
15793 decl = tsubst (decl, args, complain, in_decl);
15794 maybe_push_decl (decl);
15795 expr = RECUR (RANGE_FOR_EXPR (t));
15796 if (VAR_P (decl) && DECL_DECOMPOSITION_P (decl))
15798 unsigned int cnt;
15799 tree first;
15800 decl = tsubst_decomp_names (decl, RANGE_FOR_DECL (t), args,
15801 complain, in_decl, &first, &cnt);
15802 stmt = cp_convert_range_for (stmt, decl, expr, first, cnt,
15803 RANGE_FOR_IVDEP (t));
15805 else
15806 stmt = cp_convert_range_for (stmt, decl, expr, NULL_TREE, 0,
15807 RANGE_FOR_IVDEP (t));
15808 RECUR (RANGE_FOR_BODY (t));
15809 finish_for_stmt (stmt);
15811 break;
15813 case WHILE_STMT:
15814 stmt = begin_while_stmt ();
15815 tmp = RECUR (WHILE_COND (t));
15816 finish_while_stmt_cond (tmp, stmt, false);
15817 RECUR (WHILE_BODY (t));
15818 finish_while_stmt (stmt);
15819 break;
15821 case DO_STMT:
15822 stmt = begin_do_stmt ();
15823 RECUR (DO_BODY (t));
15824 finish_do_body (stmt);
15825 tmp = RECUR (DO_COND (t));
15826 finish_do_stmt (tmp, stmt, false);
15827 break;
15829 case IF_STMT:
15830 stmt = begin_if_stmt ();
15831 IF_STMT_CONSTEXPR_P (stmt) = IF_STMT_CONSTEXPR_P (t);
15832 tmp = RECUR (IF_COND (t));
15833 tmp = finish_if_stmt_cond (tmp, stmt);
15834 if (IF_STMT_CONSTEXPR_P (t) && integer_zerop (tmp))
15835 /* Don't instantiate the THEN_CLAUSE. */;
15836 else
15838 bool inhibit = integer_zerop (fold_non_dependent_expr (tmp));
15839 if (inhibit)
15840 ++c_inhibit_evaluation_warnings;
15841 RECUR (THEN_CLAUSE (t));
15842 if (inhibit)
15843 --c_inhibit_evaluation_warnings;
15845 finish_then_clause (stmt);
15847 if (IF_STMT_CONSTEXPR_P (t) && integer_nonzerop (tmp))
15848 /* Don't instantiate the ELSE_CLAUSE. */;
15849 else if (ELSE_CLAUSE (t))
15851 bool inhibit = integer_nonzerop (fold_non_dependent_expr (tmp));
15852 begin_else_clause (stmt);
15853 if (inhibit)
15854 ++c_inhibit_evaluation_warnings;
15855 RECUR (ELSE_CLAUSE (t));
15856 if (inhibit)
15857 --c_inhibit_evaluation_warnings;
15858 finish_else_clause (stmt);
15861 finish_if_stmt (stmt);
15862 break;
15864 case BIND_EXPR:
15865 if (BIND_EXPR_BODY_BLOCK (t))
15866 stmt = begin_function_body ();
15867 else
15868 stmt = begin_compound_stmt (BIND_EXPR_TRY_BLOCK (t)
15869 ? BCS_TRY_BLOCK : 0);
15871 RECUR (BIND_EXPR_BODY (t));
15873 if (BIND_EXPR_BODY_BLOCK (t))
15874 finish_function_body (stmt);
15875 else
15876 finish_compound_stmt (stmt);
15877 break;
15879 case BREAK_STMT:
15880 finish_break_stmt ();
15881 break;
15883 case CONTINUE_STMT:
15884 finish_continue_stmt ();
15885 break;
15887 case SWITCH_STMT:
15888 stmt = begin_switch_stmt ();
15889 tmp = RECUR (SWITCH_STMT_COND (t));
15890 finish_switch_cond (tmp, stmt);
15891 RECUR (SWITCH_STMT_BODY (t));
15892 finish_switch_stmt (stmt);
15893 break;
15895 case CASE_LABEL_EXPR:
15897 tree low = RECUR (CASE_LOW (t));
15898 tree high = RECUR (CASE_HIGH (t));
15899 tree l = finish_case_label (EXPR_LOCATION (t), low, high);
15900 if (l && TREE_CODE (l) == CASE_LABEL_EXPR)
15901 FALLTHROUGH_LABEL_P (CASE_LABEL (l))
15902 = FALLTHROUGH_LABEL_P (CASE_LABEL (t));
15904 break;
15906 case LABEL_EXPR:
15908 tree decl = LABEL_EXPR_LABEL (t);
15909 tree label;
15911 label = finish_label_stmt (DECL_NAME (decl));
15912 if (TREE_CODE (label) == LABEL_DECL)
15913 FALLTHROUGH_LABEL_P (label) = FALLTHROUGH_LABEL_P (decl);
15914 if (DECL_ATTRIBUTES (decl) != NULL_TREE)
15915 cplus_decl_attributes (&label, DECL_ATTRIBUTES (decl), 0);
15917 break;
15919 case GOTO_EXPR:
15920 tmp = GOTO_DESTINATION (t);
15921 if (TREE_CODE (tmp) != LABEL_DECL)
15922 /* Computed goto's must be tsubst'd into. On the other hand,
15923 non-computed gotos must not be; the identifier in question
15924 will have no binding. */
15925 tmp = RECUR (tmp);
15926 else
15927 tmp = DECL_NAME (tmp);
15928 finish_goto_stmt (tmp);
15929 break;
15931 case ASM_EXPR:
15933 tree string = RECUR (ASM_STRING (t));
15934 tree outputs = tsubst_copy_asm_operands (ASM_OUTPUTS (t), args,
15935 complain, in_decl);
15936 tree inputs = tsubst_copy_asm_operands (ASM_INPUTS (t), args,
15937 complain, in_decl);
15938 tree clobbers = tsubst_copy_asm_operands (ASM_CLOBBERS (t), args,
15939 complain, in_decl);
15940 tree labels = tsubst_copy_asm_operands (ASM_LABELS (t), args,
15941 complain, in_decl);
15942 tmp = finish_asm_stmt (ASM_VOLATILE_P (t), string, outputs, inputs,
15943 clobbers, labels);
15944 tree asm_expr = tmp;
15945 if (TREE_CODE (asm_expr) == CLEANUP_POINT_EXPR)
15946 asm_expr = TREE_OPERAND (asm_expr, 0);
15947 ASM_INPUT_P (asm_expr) = ASM_INPUT_P (t);
15949 break;
15951 case TRY_BLOCK:
15952 if (CLEANUP_P (t))
15954 stmt = begin_try_block ();
15955 RECUR (TRY_STMTS (t));
15956 finish_cleanup_try_block (stmt);
15957 finish_cleanup (RECUR (TRY_HANDLERS (t)), stmt);
15959 else
15961 tree compound_stmt = NULL_TREE;
15963 if (FN_TRY_BLOCK_P (t))
15964 stmt = begin_function_try_block (&compound_stmt);
15965 else
15966 stmt = begin_try_block ();
15968 RECUR (TRY_STMTS (t));
15970 if (FN_TRY_BLOCK_P (t))
15971 finish_function_try_block (stmt);
15972 else
15973 finish_try_block (stmt);
15975 RECUR (TRY_HANDLERS (t));
15976 if (FN_TRY_BLOCK_P (t))
15977 finish_function_handler_sequence (stmt, compound_stmt);
15978 else
15979 finish_handler_sequence (stmt);
15981 break;
15983 case HANDLER:
15985 tree decl = HANDLER_PARMS (t);
15987 if (decl)
15989 decl = tsubst (decl, args, complain, in_decl);
15990 /* Prevent instantiate_decl from trying to instantiate
15991 this variable. We've already done all that needs to be
15992 done. */
15993 if (decl != error_mark_node)
15994 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
15996 stmt = begin_handler ();
15997 finish_handler_parms (decl, stmt);
15998 RECUR (HANDLER_BODY (t));
15999 finish_handler (stmt);
16001 break;
16003 case TAG_DEFN:
16004 tmp = tsubst (TREE_TYPE (t), args, complain, NULL_TREE);
16005 if (CLASS_TYPE_P (tmp))
16007 /* Local classes are not independent templates; they are
16008 instantiated along with their containing function. And this
16009 way we don't have to deal with pushing out of one local class
16010 to instantiate a member of another local class. */
16011 tree fn;
16012 /* Closures are handled by the LAMBDA_EXPR. */
16013 gcc_assert (!LAMBDA_TYPE_P (TREE_TYPE (t)));
16014 complete_type (tmp);
16015 for (fn = TYPE_METHODS (tmp); fn; fn = DECL_CHAIN (fn))
16016 if (!DECL_ARTIFICIAL (fn))
16017 instantiate_decl (fn, /*defer_ok=*/false,
16018 /*expl_inst_class=*/false);
16020 break;
16022 case STATIC_ASSERT:
16024 tree condition;
16026 ++c_inhibit_evaluation_warnings;
16027 condition =
16028 tsubst_expr (STATIC_ASSERT_CONDITION (t),
16029 args,
16030 complain, in_decl,
16031 /*integral_constant_expression_p=*/true);
16032 --c_inhibit_evaluation_warnings;
16034 finish_static_assert (condition,
16035 STATIC_ASSERT_MESSAGE (t),
16036 STATIC_ASSERT_SOURCE_LOCATION (t),
16037 /*member_p=*/false);
16039 break;
16041 case OACC_KERNELS:
16042 case OACC_PARALLEL:
16043 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), C_ORT_ACC, args, complain,
16044 in_decl);
16045 stmt = begin_omp_parallel ();
16046 RECUR (OMP_BODY (t));
16047 finish_omp_construct (TREE_CODE (t), stmt, tmp);
16048 break;
16050 case OMP_PARALLEL:
16051 r = push_omp_privatization_clauses (OMP_PARALLEL_COMBINED (t));
16052 tmp = tsubst_omp_clauses (OMP_PARALLEL_CLAUSES (t), C_ORT_OMP, args,
16053 complain, in_decl);
16054 if (OMP_PARALLEL_COMBINED (t))
16055 omp_parallel_combined_clauses = &tmp;
16056 stmt = begin_omp_parallel ();
16057 RECUR (OMP_PARALLEL_BODY (t));
16058 gcc_assert (omp_parallel_combined_clauses == NULL);
16059 OMP_PARALLEL_COMBINED (finish_omp_parallel (tmp, stmt))
16060 = OMP_PARALLEL_COMBINED (t);
16061 pop_omp_privatization_clauses (r);
16062 break;
16064 case OMP_TASK:
16065 r = push_omp_privatization_clauses (false);
16066 tmp = tsubst_omp_clauses (OMP_TASK_CLAUSES (t), C_ORT_OMP, args,
16067 complain, in_decl);
16068 stmt = begin_omp_task ();
16069 RECUR (OMP_TASK_BODY (t));
16070 finish_omp_task (tmp, stmt);
16071 pop_omp_privatization_clauses (r);
16072 break;
16074 case OMP_FOR:
16075 case OMP_SIMD:
16076 case CILK_SIMD:
16077 case CILK_FOR:
16078 case OMP_DISTRIBUTE:
16079 case OMP_TASKLOOP:
16080 case OACC_LOOP:
16082 tree clauses, body, pre_body;
16083 tree declv = NULL_TREE, initv = NULL_TREE, condv = NULL_TREE;
16084 tree orig_declv = NULL_TREE;
16085 tree incrv = NULL_TREE;
16086 enum c_omp_region_type ort = C_ORT_OMP;
16087 int i;
16089 if (TREE_CODE (t) == CILK_SIMD || TREE_CODE (t) == CILK_FOR)
16090 ort = C_ORT_CILK;
16091 else if (TREE_CODE (t) == OACC_LOOP)
16092 ort = C_ORT_ACC;
16094 r = push_omp_privatization_clauses (OMP_FOR_INIT (t) == NULL_TREE);
16095 clauses = tsubst_omp_clauses (OMP_FOR_CLAUSES (t), ort, args, complain,
16096 in_decl);
16097 if (OMP_FOR_INIT (t) != NULL_TREE)
16099 declv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
16100 if (OMP_FOR_ORIG_DECLS (t))
16101 orig_declv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
16102 initv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
16103 condv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
16104 incrv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
16107 stmt = begin_omp_structured_block ();
16109 pre_body = push_stmt_list ();
16110 RECUR (OMP_FOR_PRE_BODY (t));
16111 pre_body = pop_stmt_list (pre_body);
16113 if (OMP_FOR_INIT (t) != NULL_TREE)
16114 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (t)); i++)
16115 tsubst_omp_for_iterator (t, i, declv, orig_declv, initv, condv,
16116 incrv, &clauses, args, complain, in_decl,
16117 integral_constant_expression_p);
16118 omp_parallel_combined_clauses = NULL;
16120 body = push_stmt_list ();
16121 RECUR (OMP_FOR_BODY (t));
16122 body = pop_stmt_list (body);
16124 if (OMP_FOR_INIT (t) != NULL_TREE)
16125 t = finish_omp_for (EXPR_LOCATION (t), TREE_CODE (t), declv,
16126 orig_declv, initv, condv, incrv, body, pre_body,
16127 NULL, clauses);
16128 else
16130 t = make_node (TREE_CODE (t));
16131 TREE_TYPE (t) = void_type_node;
16132 OMP_FOR_BODY (t) = body;
16133 OMP_FOR_PRE_BODY (t) = pre_body;
16134 OMP_FOR_CLAUSES (t) = clauses;
16135 SET_EXPR_LOCATION (t, EXPR_LOCATION (t));
16136 add_stmt (t);
16139 add_stmt (finish_omp_structured_block (stmt));
16140 pop_omp_privatization_clauses (r);
16142 break;
16144 case OMP_SECTIONS:
16145 omp_parallel_combined_clauses = NULL;
16146 /* FALLTHRU */
16147 case OMP_SINGLE:
16148 case OMP_TEAMS:
16149 case OMP_CRITICAL:
16150 r = push_omp_privatization_clauses (TREE_CODE (t) == OMP_TEAMS
16151 && OMP_TEAMS_COMBINED (t));
16152 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), C_ORT_OMP, args, complain,
16153 in_decl);
16154 stmt = push_stmt_list ();
16155 RECUR (OMP_BODY (t));
16156 stmt = pop_stmt_list (stmt);
16158 t = copy_node (t);
16159 OMP_BODY (t) = stmt;
16160 OMP_CLAUSES (t) = tmp;
16161 add_stmt (t);
16162 pop_omp_privatization_clauses (r);
16163 break;
16165 case OACC_DATA:
16166 case OMP_TARGET_DATA:
16167 case OMP_TARGET:
16168 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), (TREE_CODE (t) == OACC_DATA)
16169 ? C_ORT_ACC : C_ORT_OMP, args, complain,
16170 in_decl);
16171 keep_next_level (true);
16172 stmt = begin_omp_structured_block ();
16174 RECUR (OMP_BODY (t));
16175 stmt = finish_omp_structured_block (stmt);
16177 t = copy_node (t);
16178 OMP_BODY (t) = stmt;
16179 OMP_CLAUSES (t) = tmp;
16180 if (TREE_CODE (t) == OMP_TARGET && OMP_TARGET_COMBINED (t))
16182 tree teams = cp_walk_tree (&stmt, tsubst_find_omp_teams, NULL, NULL);
16183 if (teams)
16185 /* For combined target teams, ensure the num_teams and
16186 thread_limit clause expressions are evaluated on the host,
16187 before entering the target construct. */
16188 tree c;
16189 for (c = OMP_TEAMS_CLAUSES (teams);
16190 c; c = OMP_CLAUSE_CHAIN (c))
16191 if ((OMP_CLAUSE_CODE (c) == OMP_CLAUSE_NUM_TEAMS
16192 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_THREAD_LIMIT)
16193 && TREE_CODE (OMP_CLAUSE_OPERAND (c, 0)) != INTEGER_CST)
16195 tree expr = OMP_CLAUSE_OPERAND (c, 0);
16196 expr = force_target_expr (TREE_TYPE (expr), expr, tf_none);
16197 if (expr == error_mark_node)
16198 continue;
16199 tmp = TARGET_EXPR_SLOT (expr);
16200 add_stmt (expr);
16201 OMP_CLAUSE_OPERAND (c, 0) = expr;
16202 tree tc = build_omp_clause (OMP_CLAUSE_LOCATION (c),
16203 OMP_CLAUSE_FIRSTPRIVATE);
16204 OMP_CLAUSE_DECL (tc) = tmp;
16205 OMP_CLAUSE_CHAIN (tc) = OMP_TARGET_CLAUSES (t);
16206 OMP_TARGET_CLAUSES (t) = tc;
16210 add_stmt (t);
16211 break;
16213 case OACC_DECLARE:
16214 t = copy_node (t);
16215 tmp = tsubst_omp_clauses (OACC_DECLARE_CLAUSES (t), C_ORT_ACC, args,
16216 complain, in_decl);
16217 OACC_DECLARE_CLAUSES (t) = tmp;
16218 add_stmt (t);
16219 break;
16221 case OMP_TARGET_UPDATE:
16222 case OMP_TARGET_ENTER_DATA:
16223 case OMP_TARGET_EXIT_DATA:
16224 tmp = tsubst_omp_clauses (OMP_STANDALONE_CLAUSES (t), C_ORT_OMP, args,
16225 complain, in_decl);
16226 t = copy_node (t);
16227 OMP_STANDALONE_CLAUSES (t) = tmp;
16228 add_stmt (t);
16229 break;
16231 case OACC_ENTER_DATA:
16232 case OACC_EXIT_DATA:
16233 case OACC_UPDATE:
16234 tmp = tsubst_omp_clauses (OMP_STANDALONE_CLAUSES (t), C_ORT_ACC, args,
16235 complain, in_decl);
16236 t = copy_node (t);
16237 OMP_STANDALONE_CLAUSES (t) = tmp;
16238 add_stmt (t);
16239 break;
16241 case OMP_ORDERED:
16242 tmp = tsubst_omp_clauses (OMP_ORDERED_CLAUSES (t), C_ORT_OMP, args,
16243 complain, in_decl);
16244 stmt = push_stmt_list ();
16245 RECUR (OMP_BODY (t));
16246 stmt = pop_stmt_list (stmt);
16248 t = copy_node (t);
16249 OMP_BODY (t) = stmt;
16250 OMP_ORDERED_CLAUSES (t) = tmp;
16251 add_stmt (t);
16252 break;
16254 case OMP_SECTION:
16255 case OMP_MASTER:
16256 case OMP_TASKGROUP:
16257 stmt = push_stmt_list ();
16258 RECUR (OMP_BODY (t));
16259 stmt = pop_stmt_list (stmt);
16261 t = copy_node (t);
16262 OMP_BODY (t) = stmt;
16263 add_stmt (t);
16264 break;
16266 case OMP_ATOMIC:
16267 gcc_assert (OMP_ATOMIC_DEPENDENT_P (t));
16268 if (TREE_CODE (TREE_OPERAND (t, 1)) != MODIFY_EXPR)
16270 tree op1 = TREE_OPERAND (t, 1);
16271 tree rhs1 = NULL_TREE;
16272 tree lhs, rhs;
16273 if (TREE_CODE (op1) == COMPOUND_EXPR)
16275 rhs1 = RECUR (TREE_OPERAND (op1, 0));
16276 op1 = TREE_OPERAND (op1, 1);
16278 lhs = RECUR (TREE_OPERAND (op1, 0));
16279 rhs = RECUR (TREE_OPERAND (op1, 1));
16280 finish_omp_atomic (OMP_ATOMIC, TREE_CODE (op1), lhs, rhs,
16281 NULL_TREE, NULL_TREE, rhs1,
16282 OMP_ATOMIC_SEQ_CST (t));
16284 else
16286 tree op1 = TREE_OPERAND (t, 1);
16287 tree v = NULL_TREE, lhs, rhs = NULL_TREE, lhs1 = NULL_TREE;
16288 tree rhs1 = NULL_TREE;
16289 enum tree_code code = TREE_CODE (TREE_OPERAND (op1, 1));
16290 enum tree_code opcode = NOP_EXPR;
16291 if (code == OMP_ATOMIC_READ)
16293 v = RECUR (TREE_OPERAND (op1, 0));
16294 lhs = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
16296 else if (code == OMP_ATOMIC_CAPTURE_OLD
16297 || code == OMP_ATOMIC_CAPTURE_NEW)
16299 tree op11 = TREE_OPERAND (TREE_OPERAND (op1, 1), 1);
16300 v = RECUR (TREE_OPERAND (op1, 0));
16301 lhs1 = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
16302 if (TREE_CODE (op11) == COMPOUND_EXPR)
16304 rhs1 = RECUR (TREE_OPERAND (op11, 0));
16305 op11 = TREE_OPERAND (op11, 1);
16307 lhs = RECUR (TREE_OPERAND (op11, 0));
16308 rhs = RECUR (TREE_OPERAND (op11, 1));
16309 opcode = TREE_CODE (op11);
16310 if (opcode == MODIFY_EXPR)
16311 opcode = NOP_EXPR;
16313 else
16315 code = OMP_ATOMIC;
16316 lhs = RECUR (TREE_OPERAND (op1, 0));
16317 rhs = RECUR (TREE_OPERAND (op1, 1));
16319 finish_omp_atomic (code, opcode, lhs, rhs, v, lhs1, rhs1,
16320 OMP_ATOMIC_SEQ_CST (t));
16322 break;
16324 case TRANSACTION_EXPR:
16326 int flags = 0;
16327 flags |= (TRANSACTION_EXPR_OUTER (t) ? TM_STMT_ATTR_OUTER : 0);
16328 flags |= (TRANSACTION_EXPR_RELAXED (t) ? TM_STMT_ATTR_RELAXED : 0);
16330 if (TRANSACTION_EXPR_IS_STMT (t))
16332 tree body = TRANSACTION_EXPR_BODY (t);
16333 tree noex = NULL_TREE;
16334 if (TREE_CODE (body) == MUST_NOT_THROW_EXPR)
16336 noex = MUST_NOT_THROW_COND (body);
16337 if (noex == NULL_TREE)
16338 noex = boolean_true_node;
16339 body = TREE_OPERAND (body, 0);
16341 stmt = begin_transaction_stmt (input_location, NULL, flags);
16342 RECUR (body);
16343 finish_transaction_stmt (stmt, NULL, flags, RECUR (noex));
16345 else
16347 stmt = build_transaction_expr (EXPR_LOCATION (t),
16348 RECUR (TRANSACTION_EXPR_BODY (t)),
16349 flags, NULL_TREE);
16350 RETURN (stmt);
16353 break;
16355 case MUST_NOT_THROW_EXPR:
16357 tree op0 = RECUR (TREE_OPERAND (t, 0));
16358 tree cond = RECUR (MUST_NOT_THROW_COND (t));
16359 RETURN (build_must_not_throw_expr (op0, cond));
16362 case EXPR_PACK_EXPANSION:
16363 error ("invalid use of pack expansion expression");
16364 RETURN (error_mark_node);
16366 case NONTYPE_ARGUMENT_PACK:
16367 error ("use %<...%> to expand argument pack");
16368 RETURN (error_mark_node);
16370 case CILK_SPAWN_STMT:
16371 cfun->calls_cilk_spawn = 1;
16372 RETURN (build_cilk_spawn (EXPR_LOCATION (t), RECUR (CILK_SPAWN_FN (t))));
16374 case CILK_SYNC_STMT:
16375 RETURN (build_cilk_sync ());
16377 case COMPOUND_EXPR:
16378 tmp = RECUR (TREE_OPERAND (t, 0));
16379 if (tmp == NULL_TREE)
16380 /* If the first operand was a statement, we're done with it. */
16381 RETURN (RECUR (TREE_OPERAND (t, 1)));
16382 RETURN (build_x_compound_expr (EXPR_LOCATION (t), tmp,
16383 RECUR (TREE_OPERAND (t, 1)),
16384 complain));
16386 case ANNOTATE_EXPR:
16387 tmp = RECUR (TREE_OPERAND (t, 0));
16388 RETURN (build2_loc (EXPR_LOCATION (t), ANNOTATE_EXPR,
16389 TREE_TYPE (tmp), tmp, RECUR (TREE_OPERAND (t, 1))));
16391 default:
16392 gcc_assert (!STATEMENT_CODE_P (TREE_CODE (t)));
16394 RETURN (tsubst_copy_and_build (t, args, complain, in_decl,
16395 /*function_p=*/false,
16396 integral_constant_expression_p));
16399 RETURN (NULL_TREE);
16400 out:
16401 input_location = loc;
16402 return r;
16403 #undef RECUR
16404 #undef RETURN
16407 /* Instantiate the special body of the artificial DECL_OMP_DECLARE_REDUCTION
16408 function. For description of the body see comment above
16409 cp_parser_omp_declare_reduction_exprs. */
16411 static void
16412 tsubst_omp_udr (tree t, tree args, tsubst_flags_t complain, tree in_decl)
16414 if (t == NULL_TREE || t == error_mark_node)
16415 return;
16417 gcc_assert (TREE_CODE (t) == STATEMENT_LIST);
16419 tree_stmt_iterator tsi;
16420 int i;
16421 tree stmts[7];
16422 memset (stmts, 0, sizeof stmts);
16423 for (i = 0, tsi = tsi_start (t);
16424 i < 7 && !tsi_end_p (tsi);
16425 i++, tsi_next (&tsi))
16426 stmts[i] = tsi_stmt (tsi);
16427 gcc_assert (tsi_end_p (tsi));
16429 if (i >= 3)
16431 gcc_assert (TREE_CODE (stmts[0]) == DECL_EXPR
16432 && TREE_CODE (stmts[1]) == DECL_EXPR);
16433 tree omp_out = tsubst (DECL_EXPR_DECL (stmts[0]),
16434 args, complain, in_decl);
16435 tree omp_in = tsubst (DECL_EXPR_DECL (stmts[1]),
16436 args, complain, in_decl);
16437 DECL_CONTEXT (omp_out) = current_function_decl;
16438 DECL_CONTEXT (omp_in) = current_function_decl;
16439 keep_next_level (true);
16440 tree block = begin_omp_structured_block ();
16441 tsubst_expr (stmts[2], args, complain, in_decl, false);
16442 block = finish_omp_structured_block (block);
16443 block = maybe_cleanup_point_expr_void (block);
16444 add_decl_expr (omp_out);
16445 if (TREE_NO_WARNING (DECL_EXPR_DECL (stmts[0])))
16446 TREE_NO_WARNING (omp_out) = 1;
16447 add_decl_expr (omp_in);
16448 finish_expr_stmt (block);
16450 if (i >= 6)
16452 gcc_assert (TREE_CODE (stmts[3]) == DECL_EXPR
16453 && TREE_CODE (stmts[4]) == DECL_EXPR);
16454 tree omp_priv = tsubst (DECL_EXPR_DECL (stmts[3]),
16455 args, complain, in_decl);
16456 tree omp_orig = tsubst (DECL_EXPR_DECL (stmts[4]),
16457 args, complain, in_decl);
16458 DECL_CONTEXT (omp_priv) = current_function_decl;
16459 DECL_CONTEXT (omp_orig) = current_function_decl;
16460 keep_next_level (true);
16461 tree block = begin_omp_structured_block ();
16462 tsubst_expr (stmts[5], args, complain, in_decl, false);
16463 block = finish_omp_structured_block (block);
16464 block = maybe_cleanup_point_expr_void (block);
16465 cp_walk_tree (&block, cp_remove_omp_priv_cleanup_stmt, omp_priv, NULL);
16466 add_decl_expr (omp_priv);
16467 add_decl_expr (omp_orig);
16468 finish_expr_stmt (block);
16469 if (i == 7)
16470 add_decl_expr (omp_orig);
16474 /* T is a postfix-expression that is not being used in a function
16475 call. Return the substituted version of T. */
16477 static tree
16478 tsubst_non_call_postfix_expression (tree t, tree args,
16479 tsubst_flags_t complain,
16480 tree in_decl)
16482 if (TREE_CODE (t) == SCOPE_REF)
16483 t = tsubst_qualified_id (t, args, complain, in_decl,
16484 /*done=*/false, /*address_p=*/false);
16485 else
16486 t = tsubst_copy_and_build (t, args, complain, in_decl,
16487 /*function_p=*/false,
16488 /*integral_constant_expression_p=*/false);
16490 return t;
16493 /* Like tsubst but deals with expressions and performs semantic
16494 analysis. FUNCTION_P is true if T is the "F" in "F (ARGS)". */
16496 tree
16497 tsubst_copy_and_build (tree t,
16498 tree args,
16499 tsubst_flags_t complain,
16500 tree in_decl,
16501 bool function_p,
16502 bool integral_constant_expression_p)
16504 #define RETURN(EXP) do { retval = (EXP); goto out; } while(0)
16505 #define RECUR(NODE) \
16506 tsubst_copy_and_build (NODE, args, complain, in_decl, \
16507 /*function_p=*/false, \
16508 integral_constant_expression_p)
16510 tree retval, op1;
16511 location_t loc;
16513 if (t == NULL_TREE || t == error_mark_node)
16514 return t;
16516 loc = input_location;
16517 if (EXPR_HAS_LOCATION (t))
16518 input_location = EXPR_LOCATION (t);
16520 /* N3276 decltype magic only applies to calls at the top level or on the
16521 right side of a comma. */
16522 tsubst_flags_t decltype_flag = (complain & tf_decltype);
16523 complain &= ~tf_decltype;
16525 switch (TREE_CODE (t))
16527 case USING_DECL:
16528 t = DECL_NAME (t);
16529 /* Fall through. */
16530 case IDENTIFIER_NODE:
16532 tree decl;
16533 cp_id_kind idk;
16534 bool non_integral_constant_expression_p;
16535 const char *error_msg;
16537 if (IDENTIFIER_TYPENAME_P (t))
16539 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16540 t = mangle_conv_op_name_for_type (new_type);
16543 /* Look up the name. */
16544 decl = lookup_name (t);
16546 /* By convention, expressions use ERROR_MARK_NODE to indicate
16547 failure, not NULL_TREE. */
16548 if (decl == NULL_TREE)
16549 decl = error_mark_node;
16551 decl = finish_id_expression (t, decl, NULL_TREE,
16552 &idk,
16553 integral_constant_expression_p,
16554 /*allow_non_integral_constant_expression_p=*/(cxx_dialect >= cxx11),
16555 &non_integral_constant_expression_p,
16556 /*template_p=*/false,
16557 /*done=*/true,
16558 /*address_p=*/false,
16559 /*template_arg_p=*/false,
16560 &error_msg,
16561 input_location);
16562 if (error_msg)
16563 error (error_msg);
16564 if (!function_p && identifier_p (decl))
16566 if (complain & tf_error)
16567 unqualified_name_lookup_error (decl);
16568 decl = error_mark_node;
16570 RETURN (decl);
16573 case TEMPLATE_ID_EXPR:
16575 tree object;
16576 tree templ = RECUR (TREE_OPERAND (t, 0));
16577 tree targs = TREE_OPERAND (t, 1);
16579 if (targs)
16580 targs = tsubst_template_args (targs, args, complain, in_decl);
16581 if (targs == error_mark_node)
16582 return error_mark_node;
16584 if (variable_template_p (templ))
16585 RETURN (lookup_and_finish_template_variable (templ, targs, complain));
16587 if (TREE_CODE (templ) == COMPONENT_REF)
16589 object = TREE_OPERAND (templ, 0);
16590 templ = TREE_OPERAND (templ, 1);
16592 else
16593 object = NULL_TREE;
16594 templ = lookup_template_function (templ, targs);
16596 if (object)
16597 RETURN (build3 (COMPONENT_REF, TREE_TYPE (templ),
16598 object, templ, NULL_TREE));
16599 else
16600 RETURN (baselink_for_fns (templ));
16603 case INDIRECT_REF:
16605 tree r = RECUR (TREE_OPERAND (t, 0));
16607 if (REFERENCE_REF_P (t))
16609 /* A type conversion to reference type will be enclosed in
16610 such an indirect ref, but the substitution of the cast
16611 will have also added such an indirect ref. */
16612 if (TREE_CODE (TREE_TYPE (r)) == REFERENCE_TYPE)
16613 r = convert_from_reference (r);
16615 else
16616 r = build_x_indirect_ref (input_location, r, RO_UNARY_STAR,
16617 complain|decltype_flag);
16619 if (TREE_CODE (r) == INDIRECT_REF)
16620 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
16622 RETURN (r);
16625 case NOP_EXPR:
16627 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16628 tree op0 = RECUR (TREE_OPERAND (t, 0));
16629 RETURN (build_nop (type, op0));
16632 case IMPLICIT_CONV_EXPR:
16634 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16635 tree expr = RECUR (TREE_OPERAND (t, 0));
16636 int flags = LOOKUP_IMPLICIT;
16637 if (IMPLICIT_CONV_EXPR_DIRECT_INIT (t))
16638 flags = LOOKUP_NORMAL;
16639 RETURN (perform_implicit_conversion_flags (type, expr, complain,
16640 flags));
16643 case CONVERT_EXPR:
16645 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16646 tree op0 = RECUR (TREE_OPERAND (t, 0));
16647 RETURN (build1 (CONVERT_EXPR, type, op0));
16650 case CAST_EXPR:
16651 case REINTERPRET_CAST_EXPR:
16652 case CONST_CAST_EXPR:
16653 case DYNAMIC_CAST_EXPR:
16654 case STATIC_CAST_EXPR:
16656 tree type;
16657 tree op, r = NULL_TREE;
16659 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16660 if (integral_constant_expression_p
16661 && !cast_valid_in_integral_constant_expression_p (type))
16663 if (complain & tf_error)
16664 error ("a cast to a type other than an integral or "
16665 "enumeration type cannot appear in a constant-expression");
16666 RETURN (error_mark_node);
16669 op = RECUR (TREE_OPERAND (t, 0));
16671 warning_sentinel s(warn_useless_cast);
16672 switch (TREE_CODE (t))
16674 case CAST_EXPR:
16675 r = build_functional_cast (type, op, complain);
16676 break;
16677 case REINTERPRET_CAST_EXPR:
16678 r = build_reinterpret_cast (type, op, complain);
16679 break;
16680 case CONST_CAST_EXPR:
16681 r = build_const_cast (type, op, complain);
16682 break;
16683 case DYNAMIC_CAST_EXPR:
16684 r = build_dynamic_cast (type, op, complain);
16685 break;
16686 case STATIC_CAST_EXPR:
16687 r = build_static_cast (type, op, complain);
16688 break;
16689 default:
16690 gcc_unreachable ();
16693 RETURN (r);
16696 case POSTDECREMENT_EXPR:
16697 case POSTINCREMENT_EXPR:
16698 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
16699 args, complain, in_decl);
16700 RETURN (build_x_unary_op (input_location, TREE_CODE (t), op1,
16701 complain|decltype_flag));
16703 case PREDECREMENT_EXPR:
16704 case PREINCREMENT_EXPR:
16705 case NEGATE_EXPR:
16706 case BIT_NOT_EXPR:
16707 case ABS_EXPR:
16708 case TRUTH_NOT_EXPR:
16709 case UNARY_PLUS_EXPR: /* Unary + */
16710 case REALPART_EXPR:
16711 case IMAGPART_EXPR:
16712 RETURN (build_x_unary_op (input_location, TREE_CODE (t),
16713 RECUR (TREE_OPERAND (t, 0)),
16714 complain|decltype_flag));
16716 case FIX_TRUNC_EXPR:
16717 RETURN (cp_build_unary_op (FIX_TRUNC_EXPR, RECUR (TREE_OPERAND (t, 0)),
16718 false, complain));
16720 case ADDR_EXPR:
16721 op1 = TREE_OPERAND (t, 0);
16722 if (TREE_CODE (op1) == LABEL_DECL)
16723 RETURN (finish_label_address_expr (DECL_NAME (op1),
16724 EXPR_LOCATION (op1)));
16725 if (TREE_CODE (op1) == SCOPE_REF)
16726 op1 = tsubst_qualified_id (op1, args, complain, in_decl,
16727 /*done=*/true, /*address_p=*/true);
16728 else
16729 op1 = tsubst_non_call_postfix_expression (op1, args, complain,
16730 in_decl);
16731 RETURN (build_x_unary_op (input_location, ADDR_EXPR, op1,
16732 complain|decltype_flag));
16734 case PLUS_EXPR:
16735 case MINUS_EXPR:
16736 case MULT_EXPR:
16737 case TRUNC_DIV_EXPR:
16738 case CEIL_DIV_EXPR:
16739 case FLOOR_DIV_EXPR:
16740 case ROUND_DIV_EXPR:
16741 case EXACT_DIV_EXPR:
16742 case BIT_AND_EXPR:
16743 case BIT_IOR_EXPR:
16744 case BIT_XOR_EXPR:
16745 case TRUNC_MOD_EXPR:
16746 case FLOOR_MOD_EXPR:
16747 case TRUTH_ANDIF_EXPR:
16748 case TRUTH_ORIF_EXPR:
16749 case TRUTH_AND_EXPR:
16750 case TRUTH_OR_EXPR:
16751 case RSHIFT_EXPR:
16752 case LSHIFT_EXPR:
16753 case RROTATE_EXPR:
16754 case LROTATE_EXPR:
16755 case EQ_EXPR:
16756 case NE_EXPR:
16757 case MAX_EXPR:
16758 case MIN_EXPR:
16759 case LE_EXPR:
16760 case GE_EXPR:
16761 case LT_EXPR:
16762 case GT_EXPR:
16763 case MEMBER_REF:
16764 case DOTSTAR_EXPR:
16766 warning_sentinel s1(warn_type_limits);
16767 warning_sentinel s2(warn_div_by_zero);
16768 warning_sentinel s3(warn_logical_op);
16769 warning_sentinel s4(warn_tautological_compare);
16770 tree op0 = RECUR (TREE_OPERAND (t, 0));
16771 tree op1 = RECUR (TREE_OPERAND (t, 1));
16772 tree r = build_x_binary_op
16773 (input_location, TREE_CODE (t),
16774 op0,
16775 (TREE_NO_WARNING (TREE_OPERAND (t, 0))
16776 ? ERROR_MARK
16777 : TREE_CODE (TREE_OPERAND (t, 0))),
16778 op1,
16779 (TREE_NO_WARNING (TREE_OPERAND (t, 1))
16780 ? ERROR_MARK
16781 : TREE_CODE (TREE_OPERAND (t, 1))),
16782 /*overload=*/NULL,
16783 complain|decltype_flag);
16784 if (EXPR_P (r) && TREE_NO_WARNING (t))
16785 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
16787 RETURN (r);
16790 case POINTER_PLUS_EXPR:
16792 tree op0 = RECUR (TREE_OPERAND (t, 0));
16793 tree op1 = RECUR (TREE_OPERAND (t, 1));
16794 return fold_build_pointer_plus (op0, op1);
16797 case SCOPE_REF:
16798 RETURN (tsubst_qualified_id (t, args, complain, in_decl, /*done=*/true,
16799 /*address_p=*/false));
16800 case ARRAY_REF:
16801 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
16802 args, complain, in_decl);
16803 RETURN (build_x_array_ref (EXPR_LOCATION (t), op1,
16804 RECUR (TREE_OPERAND (t, 1)),
16805 complain|decltype_flag));
16807 case ARRAY_NOTATION_REF:
16809 tree start_index, length, stride;
16810 op1 = tsubst_non_call_postfix_expression (ARRAY_NOTATION_ARRAY (t),
16811 args, complain, in_decl);
16812 start_index = RECUR (ARRAY_NOTATION_START (t));
16813 length = RECUR (ARRAY_NOTATION_LENGTH (t));
16814 stride = RECUR (ARRAY_NOTATION_STRIDE (t));
16815 RETURN (build_array_notation_ref (EXPR_LOCATION (t), op1, start_index,
16816 length, stride, TREE_TYPE (op1)));
16818 case SIZEOF_EXPR:
16819 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0))
16820 || ARGUMENT_PACK_P (TREE_OPERAND (t, 0)))
16821 RETURN (tsubst_copy (t, args, complain, in_decl));
16822 /* Fall through */
16824 case ALIGNOF_EXPR:
16826 tree r;
16828 op1 = TREE_OPERAND (t, 0);
16829 if (TREE_CODE (t) == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (t))
16830 op1 = TREE_TYPE (op1);
16831 if (!args)
16833 /* When there are no ARGS, we are trying to evaluate a
16834 non-dependent expression from the parser. Trying to do
16835 the substitutions may not work. */
16836 if (!TYPE_P (op1))
16837 op1 = TREE_TYPE (op1);
16839 else
16841 ++cp_unevaluated_operand;
16842 ++c_inhibit_evaluation_warnings;
16843 if (TYPE_P (op1))
16844 op1 = tsubst (op1, args, complain, in_decl);
16845 else
16846 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
16847 /*function_p=*/false,
16848 /*integral_constant_expression_p=*/
16849 false);
16850 --cp_unevaluated_operand;
16851 --c_inhibit_evaluation_warnings;
16853 if (TYPE_P (op1))
16854 r = cxx_sizeof_or_alignof_type (op1, TREE_CODE (t),
16855 complain & tf_error);
16856 else
16857 r = cxx_sizeof_or_alignof_expr (op1, TREE_CODE (t),
16858 complain & tf_error);
16859 if (TREE_CODE (t) == SIZEOF_EXPR && r != error_mark_node)
16861 if (TREE_CODE (r) != SIZEOF_EXPR || TYPE_P (op1))
16863 if (!processing_template_decl && TYPE_P (op1))
16865 r = build_min (SIZEOF_EXPR, size_type_node,
16866 build1 (NOP_EXPR, op1, error_mark_node));
16867 SIZEOF_EXPR_TYPE_P (r) = 1;
16869 else
16870 r = build_min (SIZEOF_EXPR, size_type_node, op1);
16871 TREE_SIDE_EFFECTS (r) = 0;
16872 TREE_READONLY (r) = 1;
16874 SET_EXPR_LOCATION (r, EXPR_LOCATION (t));
16876 RETURN (r);
16879 case AT_ENCODE_EXPR:
16881 op1 = TREE_OPERAND (t, 0);
16882 ++cp_unevaluated_operand;
16883 ++c_inhibit_evaluation_warnings;
16884 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
16885 /*function_p=*/false,
16886 /*integral_constant_expression_p=*/false);
16887 --cp_unevaluated_operand;
16888 --c_inhibit_evaluation_warnings;
16889 RETURN (objc_build_encode_expr (op1));
16892 case NOEXCEPT_EXPR:
16893 op1 = TREE_OPERAND (t, 0);
16894 ++cp_unevaluated_operand;
16895 ++c_inhibit_evaluation_warnings;
16896 ++cp_noexcept_operand;
16897 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
16898 /*function_p=*/false,
16899 /*integral_constant_expression_p=*/false);
16900 --cp_unevaluated_operand;
16901 --c_inhibit_evaluation_warnings;
16902 --cp_noexcept_operand;
16903 RETURN (finish_noexcept_expr (op1, complain));
16905 case MODOP_EXPR:
16907 warning_sentinel s(warn_div_by_zero);
16908 tree lhs = RECUR (TREE_OPERAND (t, 0));
16909 tree rhs = RECUR (TREE_OPERAND (t, 2));
16910 tree r = build_x_modify_expr
16911 (EXPR_LOCATION (t), lhs, TREE_CODE (TREE_OPERAND (t, 1)), rhs,
16912 complain|decltype_flag);
16913 /* TREE_NO_WARNING must be set if either the expression was
16914 parenthesized or it uses an operator such as >>= rather
16915 than plain assignment. In the former case, it was already
16916 set and must be copied. In the latter case,
16917 build_x_modify_expr sets it and it must not be reset
16918 here. */
16919 if (TREE_NO_WARNING (t))
16920 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
16922 RETURN (r);
16925 case ARROW_EXPR:
16926 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
16927 args, complain, in_decl);
16928 /* Remember that there was a reference to this entity. */
16929 if (DECL_P (op1)
16930 && !mark_used (op1, complain) && !(complain & tf_error))
16931 RETURN (error_mark_node);
16932 RETURN (build_x_arrow (input_location, op1, complain));
16934 case NEW_EXPR:
16936 tree placement = RECUR (TREE_OPERAND (t, 0));
16937 tree init = RECUR (TREE_OPERAND (t, 3));
16938 vec<tree, va_gc> *placement_vec;
16939 vec<tree, va_gc> *init_vec;
16940 tree ret;
16942 if (placement == NULL_TREE)
16943 placement_vec = NULL;
16944 else
16946 placement_vec = make_tree_vector ();
16947 for (; placement != NULL_TREE; placement = TREE_CHAIN (placement))
16948 vec_safe_push (placement_vec, TREE_VALUE (placement));
16951 /* If there was an initializer in the original tree, but it
16952 instantiated to an empty list, then we should pass a
16953 non-NULL empty vector to tell build_new that it was an
16954 empty initializer() rather than no initializer. This can
16955 only happen when the initializer is a pack expansion whose
16956 parameter packs are of length zero. */
16957 if (init == NULL_TREE && TREE_OPERAND (t, 3) == NULL_TREE)
16958 init_vec = NULL;
16959 else
16961 init_vec = make_tree_vector ();
16962 if (init == void_node)
16963 gcc_assert (init_vec != NULL);
16964 else
16966 for (; init != NULL_TREE; init = TREE_CHAIN (init))
16967 vec_safe_push (init_vec, TREE_VALUE (init));
16971 tree op1 = tsubst (TREE_OPERAND (t, 1), args, complain, in_decl);
16972 tree op2 = RECUR (TREE_OPERAND (t, 2));
16973 ret = build_new (&placement_vec, op1, op2, &init_vec,
16974 NEW_EXPR_USE_GLOBAL (t),
16975 complain);
16977 if (placement_vec != NULL)
16978 release_tree_vector (placement_vec);
16979 if (init_vec != NULL)
16980 release_tree_vector (init_vec);
16982 RETURN (ret);
16985 case DELETE_EXPR:
16987 tree op0 = RECUR (TREE_OPERAND (t, 0));
16988 tree op1 = RECUR (TREE_OPERAND (t, 1));
16989 RETURN (delete_sanity (op0, op1,
16990 DELETE_EXPR_USE_VEC (t),
16991 DELETE_EXPR_USE_GLOBAL (t),
16992 complain));
16995 case COMPOUND_EXPR:
16997 tree op0 = tsubst_copy_and_build (TREE_OPERAND (t, 0), args,
16998 complain & ~tf_decltype, in_decl,
16999 /*function_p=*/false,
17000 integral_constant_expression_p);
17001 RETURN (build_x_compound_expr (EXPR_LOCATION (t),
17002 op0,
17003 RECUR (TREE_OPERAND (t, 1)),
17004 complain|decltype_flag));
17007 case CALL_EXPR:
17009 tree function;
17010 vec<tree, va_gc> *call_args;
17011 unsigned int nargs, i;
17012 bool qualified_p;
17013 bool koenig_p;
17014 tree ret;
17016 function = CALL_EXPR_FN (t);
17017 /* Internal function with no arguments. */
17018 if (function == NULL_TREE && call_expr_nargs (t) == 0)
17019 RETURN (t);
17021 /* When we parsed the expression, we determined whether or
17022 not Koenig lookup should be performed. */
17023 koenig_p = KOENIG_LOOKUP_P (t);
17024 if (function == NULL_TREE)
17026 koenig_p = false;
17027 qualified_p = false;
17029 else if (TREE_CODE (function) == SCOPE_REF)
17031 qualified_p = true;
17032 function = tsubst_qualified_id (function, args, complain, in_decl,
17033 /*done=*/false,
17034 /*address_p=*/false);
17036 else if (koenig_p && identifier_p (function))
17038 /* Do nothing; calling tsubst_copy_and_build on an identifier
17039 would incorrectly perform unqualified lookup again.
17041 Note that we can also have an IDENTIFIER_NODE if the earlier
17042 unqualified lookup found a member function; in that case
17043 koenig_p will be false and we do want to do the lookup
17044 again to find the instantiated member function.
17046 FIXME but doing that causes c++/15272, so we need to stop
17047 using IDENTIFIER_NODE in that situation. */
17048 qualified_p = false;
17050 else
17052 if (TREE_CODE (function) == COMPONENT_REF)
17054 tree op = TREE_OPERAND (function, 1);
17056 qualified_p = (TREE_CODE (op) == SCOPE_REF
17057 || (BASELINK_P (op)
17058 && BASELINK_QUALIFIED_P (op)));
17060 else
17061 qualified_p = false;
17063 if (TREE_CODE (function) == ADDR_EXPR
17064 && TREE_CODE (TREE_OPERAND (function, 0)) == FUNCTION_DECL)
17065 /* Avoid error about taking the address of a constructor. */
17066 function = TREE_OPERAND (function, 0);
17068 function = tsubst_copy_and_build (function, args, complain,
17069 in_decl,
17070 !qualified_p,
17071 integral_constant_expression_p);
17073 if (BASELINK_P (function))
17074 qualified_p = true;
17077 nargs = call_expr_nargs (t);
17078 call_args = make_tree_vector ();
17079 for (i = 0; i < nargs; ++i)
17081 tree arg = CALL_EXPR_ARG (t, i);
17083 if (!PACK_EXPANSION_P (arg))
17084 vec_safe_push (call_args, RECUR (CALL_EXPR_ARG (t, i)));
17085 else
17087 /* Expand the pack expansion and push each entry onto
17088 CALL_ARGS. */
17089 arg = tsubst_pack_expansion (arg, args, complain, in_decl);
17090 if (TREE_CODE (arg) == TREE_VEC)
17092 unsigned int len, j;
17094 len = TREE_VEC_LENGTH (arg);
17095 for (j = 0; j < len; ++j)
17097 tree value = TREE_VEC_ELT (arg, j);
17098 if (value != NULL_TREE)
17099 value = convert_from_reference (value);
17100 vec_safe_push (call_args, value);
17103 else
17105 /* A partial substitution. Add one entry. */
17106 vec_safe_push (call_args, arg);
17111 /* We do not perform argument-dependent lookup if normal
17112 lookup finds a non-function, in accordance with the
17113 expected resolution of DR 218. */
17114 if (koenig_p
17115 && ((is_overloaded_fn (function)
17116 /* If lookup found a member function, the Koenig lookup is
17117 not appropriate, even if an unqualified-name was used
17118 to denote the function. */
17119 && !DECL_FUNCTION_MEMBER_P (get_first_fn (function)))
17120 || identifier_p (function))
17121 /* Only do this when substitution turns a dependent call
17122 into a non-dependent call. */
17123 && type_dependent_expression_p_push (t)
17124 && !any_type_dependent_arguments_p (call_args))
17125 function = perform_koenig_lookup (function, call_args, tf_none);
17127 if (function != NULL_TREE
17128 && identifier_p (function)
17129 && !any_type_dependent_arguments_p (call_args))
17131 if (koenig_p && (complain & tf_warning_or_error))
17133 /* For backwards compatibility and good diagnostics, try
17134 the unqualified lookup again if we aren't in SFINAE
17135 context. */
17136 tree unq = (tsubst_copy_and_build
17137 (function, args, complain, in_decl, true,
17138 integral_constant_expression_p));
17139 if (unq == error_mark_node)
17141 release_tree_vector (call_args);
17142 RETURN (error_mark_node);
17145 if (unq != function)
17147 /* In a lambda fn, we have to be careful to not
17148 introduce new this captures. Legacy code can't
17149 be using lambdas anyway, so it's ok to be
17150 stricter. */
17151 bool in_lambda = (current_class_type
17152 && LAMBDA_TYPE_P (current_class_type));
17153 char const *msg = "%qD was not declared in this scope, "
17154 "and no declarations were found by "
17155 "argument-dependent lookup at the point "
17156 "of instantiation";
17158 bool diag = true;
17159 if (in_lambda)
17160 error_at (EXPR_LOC_OR_LOC (t, input_location),
17161 msg, function);
17162 else
17163 diag = permerror (EXPR_LOC_OR_LOC (t, input_location),
17164 msg, function);
17165 if (diag)
17167 tree fn = unq;
17168 if (INDIRECT_REF_P (fn))
17169 fn = TREE_OPERAND (fn, 0);
17170 if (TREE_CODE (fn) == COMPONENT_REF)
17171 fn = TREE_OPERAND (fn, 1);
17172 if (is_overloaded_fn (fn))
17173 fn = get_first_fn (fn);
17175 if (!DECL_P (fn))
17176 /* Can't say anything more. */;
17177 else if (DECL_CLASS_SCOPE_P (fn))
17179 location_t loc = EXPR_LOC_OR_LOC (t,
17180 input_location);
17181 inform (loc,
17182 "declarations in dependent base %qT are "
17183 "not found by unqualified lookup",
17184 DECL_CLASS_CONTEXT (fn));
17185 if (current_class_ptr)
17186 inform (loc,
17187 "use %<this->%D%> instead", function);
17188 else
17189 inform (loc,
17190 "use %<%T::%D%> instead",
17191 current_class_name, function);
17193 else
17194 inform (DECL_SOURCE_LOCATION (fn),
17195 "%qD declared here, later in the "
17196 "translation unit", fn);
17197 if (in_lambda)
17199 release_tree_vector (call_args);
17200 RETURN (error_mark_node);
17204 function = unq;
17207 if (identifier_p (function))
17209 if (complain & tf_error)
17210 unqualified_name_lookup_error (function);
17211 release_tree_vector (call_args);
17212 RETURN (error_mark_node);
17216 /* Remember that there was a reference to this entity. */
17217 if (function != NULL_TREE
17218 && DECL_P (function)
17219 && !mark_used (function, complain) && !(complain & tf_error))
17221 release_tree_vector (call_args);
17222 RETURN (error_mark_node);
17225 /* Put back tf_decltype for the actual call. */
17226 complain |= decltype_flag;
17228 if (function == NULL_TREE)
17229 switch (CALL_EXPR_IFN (t))
17231 case IFN_LAUNDER:
17232 gcc_assert (nargs == 1);
17233 if (vec_safe_length (call_args) != 1)
17235 error_at (EXPR_LOC_OR_LOC (t, input_location),
17236 "wrong number of arguments to "
17237 "%<__builtin_launder%>");
17238 ret = error_mark_node;
17240 else
17241 ret = finish_builtin_launder (EXPR_LOC_OR_LOC (t,
17242 input_location),
17243 (*call_args)[0], complain);
17244 break;
17246 default:
17247 /* Unsupported internal function with arguments. */
17248 gcc_unreachable ();
17250 else if (TREE_CODE (function) == OFFSET_REF)
17251 ret = build_offset_ref_call_from_tree (function, &call_args,
17252 complain);
17253 else if (TREE_CODE (function) == COMPONENT_REF)
17255 tree instance = TREE_OPERAND (function, 0);
17256 tree fn = TREE_OPERAND (function, 1);
17258 if (processing_template_decl
17259 && (type_dependent_expression_p (instance)
17260 || (!BASELINK_P (fn)
17261 && TREE_CODE (fn) != FIELD_DECL)
17262 || type_dependent_expression_p (fn)
17263 || any_type_dependent_arguments_p (call_args)))
17264 ret = build_nt_call_vec (function, call_args);
17265 else if (!BASELINK_P (fn))
17266 ret = finish_call_expr (function, &call_args,
17267 /*disallow_virtual=*/false,
17268 /*koenig_p=*/false,
17269 complain);
17270 else
17271 ret = (build_new_method_call
17272 (instance, fn,
17273 &call_args, NULL_TREE,
17274 qualified_p ? LOOKUP_NONVIRTUAL : LOOKUP_NORMAL,
17275 /*fn_p=*/NULL,
17276 complain));
17278 else
17279 ret = finish_call_expr (function, &call_args,
17280 /*disallow_virtual=*/qualified_p,
17281 koenig_p,
17282 complain);
17284 release_tree_vector (call_args);
17286 if (ret != error_mark_node)
17288 bool op = CALL_EXPR_OPERATOR_SYNTAX (t);
17289 bool ord = CALL_EXPR_ORDERED_ARGS (t);
17290 bool rev = CALL_EXPR_REVERSE_ARGS (t);
17291 bool thk = CALL_FROM_THUNK_P (t);
17292 if (op || ord || rev || thk)
17294 function = extract_call_expr (ret);
17295 CALL_EXPR_OPERATOR_SYNTAX (function) = op;
17296 CALL_EXPR_ORDERED_ARGS (function) = ord;
17297 CALL_EXPR_REVERSE_ARGS (function) = rev;
17298 if (thk)
17300 CALL_FROM_THUNK_P (function) = true;
17301 /* The thunk location is not interesting. */
17302 SET_EXPR_LOCATION (function, UNKNOWN_LOCATION);
17307 RETURN (ret);
17310 case COND_EXPR:
17312 tree cond = RECUR (TREE_OPERAND (t, 0));
17313 tree folded_cond = fold_non_dependent_expr (cond);
17314 tree exp1, exp2;
17316 if (TREE_CODE (folded_cond) == INTEGER_CST)
17318 if (integer_zerop (folded_cond))
17320 ++c_inhibit_evaluation_warnings;
17321 exp1 = RECUR (TREE_OPERAND (t, 1));
17322 --c_inhibit_evaluation_warnings;
17323 exp2 = RECUR (TREE_OPERAND (t, 2));
17325 else
17327 exp1 = RECUR (TREE_OPERAND (t, 1));
17328 ++c_inhibit_evaluation_warnings;
17329 exp2 = RECUR (TREE_OPERAND (t, 2));
17330 --c_inhibit_evaluation_warnings;
17332 cond = folded_cond;
17334 else
17336 exp1 = RECUR (TREE_OPERAND (t, 1));
17337 exp2 = RECUR (TREE_OPERAND (t, 2));
17340 RETURN (build_x_conditional_expr (EXPR_LOCATION (t),
17341 cond, exp1, exp2, complain));
17344 case PSEUDO_DTOR_EXPR:
17346 tree op0 = RECUR (TREE_OPERAND (t, 0));
17347 tree op1 = RECUR (TREE_OPERAND (t, 1));
17348 tree op2 = tsubst (TREE_OPERAND (t, 2), args, complain, in_decl);
17349 RETURN (finish_pseudo_destructor_expr (op0, op1, op2,
17350 input_location));
17353 case TREE_LIST:
17355 tree purpose, value, chain;
17357 if (t == void_list_node)
17358 RETURN (t);
17360 if ((TREE_PURPOSE (t) && PACK_EXPANSION_P (TREE_PURPOSE (t)))
17361 || (TREE_VALUE (t) && PACK_EXPANSION_P (TREE_VALUE (t))))
17363 /* We have pack expansions, so expand those and
17364 create a new list out of it. */
17365 tree purposevec = NULL_TREE;
17366 tree valuevec = NULL_TREE;
17367 tree chain;
17368 int i, len = -1;
17370 /* Expand the argument expressions. */
17371 if (TREE_PURPOSE (t))
17372 purposevec = tsubst_pack_expansion (TREE_PURPOSE (t), args,
17373 complain, in_decl);
17374 if (TREE_VALUE (t))
17375 valuevec = tsubst_pack_expansion (TREE_VALUE (t), args,
17376 complain, in_decl);
17378 /* Build the rest of the list. */
17379 chain = TREE_CHAIN (t);
17380 if (chain && chain != void_type_node)
17381 chain = RECUR (chain);
17383 /* Determine the number of arguments. */
17384 if (purposevec && TREE_CODE (purposevec) == TREE_VEC)
17386 len = TREE_VEC_LENGTH (purposevec);
17387 gcc_assert (!valuevec || len == TREE_VEC_LENGTH (valuevec));
17389 else if (TREE_CODE (valuevec) == TREE_VEC)
17390 len = TREE_VEC_LENGTH (valuevec);
17391 else
17393 /* Since we only performed a partial substitution into
17394 the argument pack, we only RETURN (a single list
17395 node. */
17396 if (purposevec == TREE_PURPOSE (t)
17397 && valuevec == TREE_VALUE (t)
17398 && chain == TREE_CHAIN (t))
17399 RETURN (t);
17401 RETURN (tree_cons (purposevec, valuevec, chain));
17404 /* Convert the argument vectors into a TREE_LIST */
17405 i = len;
17406 while (i > 0)
17408 /* Grab the Ith values. */
17409 i--;
17410 purpose = purposevec ? TREE_VEC_ELT (purposevec, i)
17411 : NULL_TREE;
17412 value
17413 = valuevec ? convert_from_reference (TREE_VEC_ELT (valuevec, i))
17414 : NULL_TREE;
17416 /* Build the list (backwards). */
17417 chain = tree_cons (purpose, value, chain);
17420 RETURN (chain);
17423 purpose = TREE_PURPOSE (t);
17424 if (purpose)
17425 purpose = RECUR (purpose);
17426 value = TREE_VALUE (t);
17427 if (value)
17428 value = RECUR (value);
17429 chain = TREE_CHAIN (t);
17430 if (chain && chain != void_type_node)
17431 chain = RECUR (chain);
17432 if (purpose == TREE_PURPOSE (t)
17433 && value == TREE_VALUE (t)
17434 && chain == TREE_CHAIN (t))
17435 RETURN (t);
17436 RETURN (tree_cons (purpose, value, chain));
17439 case COMPONENT_REF:
17441 tree object;
17442 tree object_type;
17443 tree member;
17444 tree r;
17446 object = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
17447 args, complain, in_decl);
17448 /* Remember that there was a reference to this entity. */
17449 if (DECL_P (object)
17450 && !mark_used (object, complain) && !(complain & tf_error))
17451 RETURN (error_mark_node);
17452 object_type = TREE_TYPE (object);
17454 member = TREE_OPERAND (t, 1);
17455 if (BASELINK_P (member))
17456 member = tsubst_baselink (member,
17457 non_reference (TREE_TYPE (object)),
17458 args, complain, in_decl);
17459 else
17460 member = tsubst_copy (member, args, complain, in_decl);
17461 if (member == error_mark_node)
17462 RETURN (error_mark_node);
17464 if (TREE_CODE (member) == FIELD_DECL)
17466 r = finish_non_static_data_member (member, object, NULL_TREE);
17467 if (TREE_CODE (r) == COMPONENT_REF)
17468 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
17469 RETURN (r);
17471 else if (type_dependent_expression_p (object))
17472 /* We can't do much here. */;
17473 else if (!CLASS_TYPE_P (object_type))
17475 if (scalarish_type_p (object_type))
17477 tree s = NULL_TREE;
17478 tree dtor = member;
17480 if (TREE_CODE (dtor) == SCOPE_REF)
17482 s = TREE_OPERAND (dtor, 0);
17483 dtor = TREE_OPERAND (dtor, 1);
17485 if (TREE_CODE (dtor) == BIT_NOT_EXPR)
17487 dtor = TREE_OPERAND (dtor, 0);
17488 if (TYPE_P (dtor))
17489 RETURN (finish_pseudo_destructor_expr
17490 (object, s, dtor, input_location));
17494 else if (TREE_CODE (member) == SCOPE_REF
17495 && TREE_CODE (TREE_OPERAND (member, 1)) == TEMPLATE_ID_EXPR)
17497 /* Lookup the template functions now that we know what the
17498 scope is. */
17499 tree scope = TREE_OPERAND (member, 0);
17500 tree tmpl = TREE_OPERAND (TREE_OPERAND (member, 1), 0);
17501 tree args = TREE_OPERAND (TREE_OPERAND (member, 1), 1);
17502 member = lookup_qualified_name (scope, tmpl,
17503 /*is_type_p=*/false,
17504 /*complain=*/false);
17505 if (BASELINK_P (member))
17507 BASELINK_FUNCTIONS (member)
17508 = build_nt (TEMPLATE_ID_EXPR, BASELINK_FUNCTIONS (member),
17509 args);
17510 member = (adjust_result_of_qualified_name_lookup
17511 (member, BINFO_TYPE (BASELINK_BINFO (member)),
17512 object_type));
17514 else
17516 qualified_name_lookup_error (scope, tmpl, member,
17517 input_location);
17518 RETURN (error_mark_node);
17521 else if (TREE_CODE (member) == SCOPE_REF
17522 && !CLASS_TYPE_P (TREE_OPERAND (member, 0))
17523 && TREE_CODE (TREE_OPERAND (member, 0)) != NAMESPACE_DECL)
17525 if (complain & tf_error)
17527 if (TYPE_P (TREE_OPERAND (member, 0)))
17528 error ("%qT is not a class or namespace",
17529 TREE_OPERAND (member, 0));
17530 else
17531 error ("%qD is not a class or namespace",
17532 TREE_OPERAND (member, 0));
17534 RETURN (error_mark_node);
17537 r = finish_class_member_access_expr (object, member,
17538 /*template_p=*/false,
17539 complain);
17540 if (TREE_CODE (r) == COMPONENT_REF)
17541 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
17542 RETURN (r);
17545 case THROW_EXPR:
17546 RETURN (build_throw
17547 (RECUR (TREE_OPERAND (t, 0))));
17549 case CONSTRUCTOR:
17551 vec<constructor_elt, va_gc> *n;
17552 constructor_elt *ce;
17553 unsigned HOST_WIDE_INT idx;
17554 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
17555 bool process_index_p;
17556 int newlen;
17557 bool need_copy_p = false;
17558 tree r;
17560 if (type == error_mark_node)
17561 RETURN (error_mark_node);
17563 /* digest_init will do the wrong thing if we let it. */
17564 if (type && TYPE_PTRMEMFUNC_P (type))
17565 RETURN (t);
17567 /* We do not want to process the index of aggregate
17568 initializers as they are identifier nodes which will be
17569 looked up by digest_init. */
17570 process_index_p = !(type && MAYBE_CLASS_TYPE_P (type));
17572 n = vec_safe_copy (CONSTRUCTOR_ELTS (t));
17573 newlen = vec_safe_length (n);
17574 FOR_EACH_VEC_SAFE_ELT (n, idx, ce)
17576 if (ce->index && process_index_p
17577 /* An identifier index is looked up in the type
17578 being initialized, not the current scope. */
17579 && TREE_CODE (ce->index) != IDENTIFIER_NODE)
17580 ce->index = RECUR (ce->index);
17582 if (PACK_EXPANSION_P (ce->value))
17584 /* Substitute into the pack expansion. */
17585 ce->value = tsubst_pack_expansion (ce->value, args, complain,
17586 in_decl);
17588 if (ce->value == error_mark_node
17589 || PACK_EXPANSION_P (ce->value))
17591 else if (TREE_VEC_LENGTH (ce->value) == 1)
17592 /* Just move the argument into place. */
17593 ce->value = TREE_VEC_ELT (ce->value, 0);
17594 else
17596 /* Update the length of the final CONSTRUCTOR
17597 arguments vector, and note that we will need to
17598 copy.*/
17599 newlen = newlen + TREE_VEC_LENGTH (ce->value) - 1;
17600 need_copy_p = true;
17603 else
17604 ce->value = RECUR (ce->value);
17607 if (need_copy_p)
17609 vec<constructor_elt, va_gc> *old_n = n;
17611 vec_alloc (n, newlen);
17612 FOR_EACH_VEC_ELT (*old_n, idx, ce)
17614 if (TREE_CODE (ce->value) == TREE_VEC)
17616 int i, len = TREE_VEC_LENGTH (ce->value);
17617 for (i = 0; i < len; ++i)
17618 CONSTRUCTOR_APPEND_ELT (n, 0,
17619 TREE_VEC_ELT (ce->value, i));
17621 else
17622 CONSTRUCTOR_APPEND_ELT (n, 0, ce->value);
17626 r = build_constructor (init_list_type_node, n);
17627 CONSTRUCTOR_IS_DIRECT_INIT (r) = CONSTRUCTOR_IS_DIRECT_INIT (t);
17629 if (TREE_HAS_CONSTRUCTOR (t))
17630 RETURN (finish_compound_literal (type, r, complain));
17632 TREE_TYPE (r) = type;
17633 RETURN (r);
17636 case TYPEID_EXPR:
17638 tree operand_0 = TREE_OPERAND (t, 0);
17639 if (TYPE_P (operand_0))
17641 operand_0 = tsubst (operand_0, args, complain, in_decl);
17642 RETURN (get_typeid (operand_0, complain));
17644 else
17646 operand_0 = RECUR (operand_0);
17647 RETURN (build_typeid (operand_0, complain));
17651 case VAR_DECL:
17652 if (!args)
17653 RETURN (t);
17654 else if (DECL_PACK_P (t))
17656 /* We don't build decls for an instantiation of a
17657 variadic capture proxy, we instantiate the elements
17658 when needed. */
17659 gcc_assert (DECL_HAS_VALUE_EXPR_P (t));
17660 return RECUR (DECL_VALUE_EXPR (t));
17662 /* Fall through */
17664 case PARM_DECL:
17666 tree r = tsubst_copy (t, args, complain, in_decl);
17667 /* ??? We're doing a subset of finish_id_expression here. */
17668 if (VAR_P (r)
17669 && !processing_template_decl
17670 && !cp_unevaluated_operand
17671 && (TREE_STATIC (r) || DECL_EXTERNAL (r))
17672 && CP_DECL_THREAD_LOCAL_P (r))
17674 if (tree wrap = get_tls_wrapper_fn (r))
17675 /* Replace an evaluated use of the thread_local variable with
17676 a call to its wrapper. */
17677 r = build_cxx_call (wrap, 0, NULL, tf_warning_or_error);
17679 else if (outer_automatic_var_p (r))
17681 r = process_outer_var_ref (r, complain);
17682 if (is_capture_proxy (r))
17683 register_local_specialization (r, t);
17686 if (TREE_CODE (TREE_TYPE (t)) != REFERENCE_TYPE)
17687 /* If the original type was a reference, we'll be wrapped in
17688 the appropriate INDIRECT_REF. */
17689 r = convert_from_reference (r);
17690 RETURN (r);
17693 case VA_ARG_EXPR:
17695 tree op0 = RECUR (TREE_OPERAND (t, 0));
17696 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
17697 RETURN (build_x_va_arg (EXPR_LOCATION (t), op0, type));
17700 case OFFSETOF_EXPR:
17702 tree object_ptr
17703 = tsubst_copy_and_build (TREE_OPERAND (t, 1), args, complain,
17704 in_decl, /*function_p=*/false,
17705 /*integral_constant_expression_p=*/false);
17706 RETURN (finish_offsetof (object_ptr,
17707 RECUR (TREE_OPERAND (t, 0)),
17708 EXPR_LOCATION (t)));
17711 case ADDRESSOF_EXPR:
17712 RETURN (cp_build_addressof (EXPR_LOCATION (t),
17713 RECUR (TREE_OPERAND (t, 0)), complain));
17715 case TRAIT_EXPR:
17717 tree type1 = tsubst (TRAIT_EXPR_TYPE1 (t), args,
17718 complain, in_decl);
17720 tree type2 = TRAIT_EXPR_TYPE2 (t);
17721 if (type2 && TREE_CODE (type2) == TREE_LIST)
17722 type2 = RECUR (type2);
17723 else if (type2)
17724 type2 = tsubst (type2, args, complain, in_decl);
17726 RETURN (finish_trait_expr (TRAIT_EXPR_KIND (t), type1, type2));
17729 case STMT_EXPR:
17731 tree old_stmt_expr = cur_stmt_expr;
17732 tree stmt_expr = begin_stmt_expr ();
17734 cur_stmt_expr = stmt_expr;
17735 tsubst_expr (STMT_EXPR_STMT (t), args, complain, in_decl,
17736 integral_constant_expression_p);
17737 stmt_expr = finish_stmt_expr (stmt_expr, false);
17738 cur_stmt_expr = old_stmt_expr;
17740 /* If the resulting list of expression statement is empty,
17741 fold it further into void_node. */
17742 if (empty_expr_stmt_p (stmt_expr))
17743 stmt_expr = void_node;
17745 RETURN (stmt_expr);
17748 case LAMBDA_EXPR:
17750 tree r = build_lambda_expr ();
17752 tree type = tsubst (LAMBDA_EXPR_CLOSURE (t), args, complain, NULL_TREE);
17753 LAMBDA_EXPR_CLOSURE (r) = type;
17754 CLASSTYPE_LAMBDA_EXPR (type) = r;
17756 LAMBDA_EXPR_LOCATION (r)
17757 = LAMBDA_EXPR_LOCATION (t);
17758 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (r)
17759 = LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (t);
17760 LAMBDA_EXPR_MUTABLE_P (r) = LAMBDA_EXPR_MUTABLE_P (t);
17761 LAMBDA_EXPR_DISCRIMINATOR (r)
17762 = (LAMBDA_EXPR_DISCRIMINATOR (t));
17763 tree scope = LAMBDA_EXPR_EXTRA_SCOPE (t);
17764 if (!scope)
17765 /* No substitution needed. */;
17766 else if (VAR_OR_FUNCTION_DECL_P (scope))
17767 /* For a function or variable scope, we want to use tsubst so that we
17768 don't complain about referring to an auto before deduction. */
17769 scope = tsubst (scope, args, complain, in_decl);
17770 else if (TREE_CODE (scope) == PARM_DECL)
17772 /* Look up the parameter we want directly, as tsubst_copy
17773 doesn't do what we need. */
17774 tree fn = tsubst (DECL_CONTEXT (scope), args, complain, in_decl);
17775 tree parm = FUNCTION_FIRST_USER_PARM (fn);
17776 while (DECL_PARM_INDEX (parm) != DECL_PARM_INDEX (scope))
17777 parm = DECL_CHAIN (parm);
17778 scope = parm;
17779 /* FIXME Work around the parm not having DECL_CONTEXT set. */
17780 if (DECL_CONTEXT (scope) == NULL_TREE)
17781 DECL_CONTEXT (scope) = fn;
17783 else if (TREE_CODE (scope) == FIELD_DECL)
17784 /* For a field, use tsubst_copy so that we look up the existing field
17785 rather than build a new one. */
17786 scope = RECUR (scope);
17787 else
17788 gcc_unreachable ();
17789 LAMBDA_EXPR_EXTRA_SCOPE (r) = scope;
17791 gcc_assert (LAMBDA_EXPR_THIS_CAPTURE (t) == NULL_TREE
17792 && LAMBDA_EXPR_PENDING_PROXIES (t) == NULL);
17794 /* Do this again now that LAMBDA_EXPR_EXTRA_SCOPE is set. */
17795 determine_visibility (TYPE_NAME (type));
17796 /* Now that we know visibility, instantiate the type so we have a
17797 declaration of the op() for later calls to lambda_function. */
17798 complete_type (type);
17800 if (tree fn = lambda_function (type))
17801 LAMBDA_EXPR_RETURN_TYPE (r) = TREE_TYPE (TREE_TYPE (fn));
17803 LAMBDA_EXPR_THIS_CAPTURE (r) = NULL_TREE;
17805 insert_pending_capture_proxies ();
17807 RETURN (build_lambda_object (r));
17810 case TARGET_EXPR:
17811 /* We can get here for a constant initializer of non-dependent type.
17812 FIXME stop folding in cp_parser_initializer_clause. */
17814 tree r = get_target_expr_sfinae (RECUR (TARGET_EXPR_INITIAL (t)),
17815 complain);
17816 RETURN (r);
17819 case TRANSACTION_EXPR:
17820 RETURN (tsubst_expr(t, args, complain, in_decl,
17821 integral_constant_expression_p));
17823 case PAREN_EXPR:
17824 RETURN (finish_parenthesized_expr (RECUR (TREE_OPERAND (t, 0))));
17826 case VEC_PERM_EXPR:
17828 tree op0 = RECUR (TREE_OPERAND (t, 0));
17829 tree op1 = RECUR (TREE_OPERAND (t, 1));
17830 tree op2 = RECUR (TREE_OPERAND (t, 2));
17831 RETURN (build_x_vec_perm_expr (input_location, op0, op1, op2,
17832 complain));
17835 case REQUIRES_EXPR:
17836 RETURN (tsubst_requires_expr (t, args, complain, in_decl));
17838 default:
17839 /* Handle Objective-C++ constructs, if appropriate. */
17841 tree subst
17842 = objcp_tsubst_copy_and_build (t, args, complain,
17843 in_decl, /*function_p=*/false);
17844 if (subst)
17845 RETURN (subst);
17847 RETURN (tsubst_copy (t, args, complain, in_decl));
17850 #undef RECUR
17851 #undef RETURN
17852 out:
17853 input_location = loc;
17854 return retval;
17857 /* Verify that the instantiated ARGS are valid. For type arguments,
17858 make sure that the type's linkage is ok. For non-type arguments,
17859 make sure they are constants if they are integral or enumerations.
17860 Emit an error under control of COMPLAIN, and return TRUE on error. */
17862 static bool
17863 check_instantiated_arg (tree tmpl, tree t, tsubst_flags_t complain)
17865 if (dependent_template_arg_p (t))
17866 return false;
17867 if (ARGUMENT_PACK_P (t))
17869 tree vec = ARGUMENT_PACK_ARGS (t);
17870 int len = TREE_VEC_LENGTH (vec);
17871 bool result = false;
17872 int i;
17874 for (i = 0; i < len; ++i)
17875 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (vec, i), complain))
17876 result = true;
17877 return result;
17879 else if (TYPE_P (t))
17881 /* [basic.link]: A name with no linkage (notably, the name
17882 of a class or enumeration declared in a local scope)
17883 shall not be used to declare an entity with linkage.
17884 This implies that names with no linkage cannot be used as
17885 template arguments
17887 DR 757 relaxes this restriction for C++0x. */
17888 tree nt = (cxx_dialect > cxx98 ? NULL_TREE
17889 : no_linkage_check (t, /*relaxed_p=*/false));
17891 if (nt)
17893 /* DR 488 makes use of a type with no linkage cause
17894 type deduction to fail. */
17895 if (complain & tf_error)
17897 if (TYPE_UNNAMED_P (nt))
17898 error ("%qT is/uses unnamed type", t);
17899 else
17900 error ("template argument for %qD uses local type %qT",
17901 tmpl, t);
17903 return true;
17905 /* In order to avoid all sorts of complications, we do not
17906 allow variably-modified types as template arguments. */
17907 else if (variably_modified_type_p (t, NULL_TREE))
17909 if (complain & tf_error)
17910 error ("%qT is a variably modified type", t);
17911 return true;
17914 /* Class template and alias template arguments should be OK. */
17915 else if (DECL_TYPE_TEMPLATE_P (t))
17917 /* A non-type argument of integral or enumerated type must be a
17918 constant. */
17919 else if (TREE_TYPE (t)
17920 && INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (t))
17921 && !REFERENCE_REF_P (t)
17922 && !TREE_CONSTANT (t))
17924 if (complain & tf_error)
17925 error ("integral expression %qE is not constant", t);
17926 return true;
17928 return false;
17931 static bool
17932 check_instantiated_args (tree tmpl, tree args, tsubst_flags_t complain)
17934 int ix, len = DECL_NTPARMS (tmpl);
17935 bool result = false;
17937 for (ix = 0; ix != len; ix++)
17939 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (args, ix), complain))
17940 result = true;
17942 if (result && (complain & tf_error))
17943 error (" trying to instantiate %qD", tmpl);
17944 return result;
17947 /* We're out of SFINAE context now, so generate diagnostics for the access
17948 errors we saw earlier when instantiating D from TMPL and ARGS. */
17950 static void
17951 recheck_decl_substitution (tree d, tree tmpl, tree args)
17953 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
17954 tree type = TREE_TYPE (pattern);
17955 location_t loc = input_location;
17957 push_access_scope (d);
17958 push_deferring_access_checks (dk_no_deferred);
17959 input_location = DECL_SOURCE_LOCATION (pattern);
17960 tsubst (type, args, tf_warning_or_error, d);
17961 input_location = loc;
17962 pop_deferring_access_checks ();
17963 pop_access_scope (d);
17966 /* Instantiate the indicated variable, function, or alias template TMPL with
17967 the template arguments in TARG_PTR. */
17969 static tree
17970 instantiate_template_1 (tree tmpl, tree orig_args, tsubst_flags_t complain)
17972 tree targ_ptr = orig_args;
17973 tree fndecl;
17974 tree gen_tmpl;
17975 tree spec;
17976 bool access_ok = true;
17978 if (tmpl == error_mark_node)
17979 return error_mark_node;
17981 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
17983 /* If this function is a clone, handle it specially. */
17984 if (DECL_CLONED_FUNCTION_P (tmpl))
17986 tree spec;
17987 tree clone;
17989 /* Use DECL_ABSTRACT_ORIGIN because only FUNCTION_DECLs have
17990 DECL_CLONED_FUNCTION. */
17991 spec = instantiate_template (DECL_ABSTRACT_ORIGIN (tmpl),
17992 targ_ptr, complain);
17993 if (spec == error_mark_node)
17994 return error_mark_node;
17996 /* Look for the clone. */
17997 FOR_EACH_CLONE (clone, spec)
17998 if (DECL_NAME (clone) == DECL_NAME (tmpl))
17999 return clone;
18000 /* We should always have found the clone by now. */
18001 gcc_unreachable ();
18002 return NULL_TREE;
18005 if (targ_ptr == error_mark_node)
18006 return error_mark_node;
18008 /* Check to see if we already have this specialization. */
18009 gen_tmpl = most_general_template (tmpl);
18010 if (TMPL_ARGS_DEPTH (targ_ptr)
18011 < TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (gen_tmpl)))
18012 /* targ_ptr only has the innermost template args, so add the outer ones
18013 from tmpl, which could be either a partial instantiation or gen_tmpl (in
18014 the case of a non-dependent call within a template definition). */
18015 targ_ptr = (add_outermost_template_args
18016 (DECL_TI_ARGS (DECL_TEMPLATE_RESULT (tmpl)),
18017 targ_ptr));
18019 /* It would be nice to avoid hashing here and then again in tsubst_decl,
18020 but it doesn't seem to be on the hot path. */
18021 spec = retrieve_specialization (gen_tmpl, targ_ptr, 0);
18023 gcc_assert (tmpl == gen_tmpl
18024 || ((fndecl = retrieve_specialization (tmpl, orig_args, 0))
18025 == spec)
18026 || fndecl == NULL_TREE);
18028 if (spec != NULL_TREE)
18030 if (FNDECL_HAS_ACCESS_ERRORS (spec))
18032 if (complain & tf_error)
18033 recheck_decl_substitution (spec, gen_tmpl, targ_ptr);
18034 return error_mark_node;
18036 return spec;
18039 if (check_instantiated_args (gen_tmpl, INNERMOST_TEMPLATE_ARGS (targ_ptr),
18040 complain))
18041 return error_mark_node;
18043 /* We are building a FUNCTION_DECL, during which the access of its
18044 parameters and return types have to be checked. However this
18045 FUNCTION_DECL which is the desired context for access checking
18046 is not built yet. We solve this chicken-and-egg problem by
18047 deferring all checks until we have the FUNCTION_DECL. */
18048 push_deferring_access_checks (dk_deferred);
18050 /* Instantiation of the function happens in the context of the function
18051 template, not the context of the overload resolution we're doing. */
18052 push_to_top_level ();
18053 /* If there are dependent arguments, e.g. because we're doing partial
18054 ordering, make sure processing_template_decl stays set. */
18055 if (uses_template_parms (targ_ptr))
18056 ++processing_template_decl;
18057 if (DECL_CLASS_SCOPE_P (gen_tmpl))
18059 tree ctx = tsubst_aggr_type (DECL_CONTEXT (gen_tmpl), targ_ptr,
18060 complain, gen_tmpl, true);
18061 push_nested_class (ctx);
18064 tree pattern = DECL_TEMPLATE_RESULT (gen_tmpl);
18066 fndecl = NULL_TREE;
18067 if (VAR_P (pattern))
18069 /* We need to determine if we're using a partial or explicit
18070 specialization now, because the type of the variable could be
18071 different. */
18072 tree tid = lookup_template_variable (gen_tmpl, targ_ptr);
18073 tree elt = most_specialized_partial_spec (tid, complain);
18074 if (elt == error_mark_node)
18075 pattern = error_mark_node;
18076 else if (elt)
18078 tree partial_tmpl = TREE_VALUE (elt);
18079 tree partial_args = TREE_PURPOSE (elt);
18080 tree partial_pat = DECL_TEMPLATE_RESULT (partial_tmpl);
18081 fndecl = tsubst (partial_pat, partial_args, complain, gen_tmpl);
18085 /* Substitute template parameters to obtain the specialization. */
18086 if (fndecl == NULL_TREE)
18087 fndecl = tsubst (pattern, targ_ptr, complain, gen_tmpl);
18088 if (DECL_CLASS_SCOPE_P (gen_tmpl))
18089 pop_nested_class ();
18090 pop_from_top_level ();
18092 if (fndecl == error_mark_node)
18094 pop_deferring_access_checks ();
18095 return error_mark_node;
18098 /* The DECL_TI_TEMPLATE should always be the immediate parent
18099 template, not the most general template. */
18100 DECL_TI_TEMPLATE (fndecl) = tmpl;
18101 DECL_TI_ARGS (fndecl) = targ_ptr;
18103 /* Now we know the specialization, compute access previously
18104 deferred. Do no access control for inheriting constructors,
18105 as we already checked access for the inherited constructor. */
18106 if (!(flag_new_inheriting_ctors
18107 && DECL_INHERITED_CTOR (fndecl)))
18109 push_access_scope (fndecl);
18110 if (!perform_deferred_access_checks (complain))
18111 access_ok = false;
18112 pop_access_scope (fndecl);
18114 pop_deferring_access_checks ();
18116 /* If we've just instantiated the main entry point for a function,
18117 instantiate all the alternate entry points as well. We do this
18118 by cloning the instantiation of the main entry point, not by
18119 instantiating the template clones. */
18120 if (DECL_CHAIN (gen_tmpl) && DECL_CLONED_FUNCTION_P (DECL_CHAIN (gen_tmpl)))
18121 clone_function_decl (fndecl, /*update_method_vec_p=*/0);
18123 if (!access_ok)
18125 if (!(complain & tf_error))
18127 /* Remember to reinstantiate when we're out of SFINAE so the user
18128 can see the errors. */
18129 FNDECL_HAS_ACCESS_ERRORS (fndecl) = true;
18131 return error_mark_node;
18133 return fndecl;
18136 /* Wrapper for instantiate_template_1. */
18138 tree
18139 instantiate_template (tree tmpl, tree orig_args, tsubst_flags_t complain)
18141 tree ret;
18142 timevar_push (TV_TEMPLATE_INST);
18143 ret = instantiate_template_1 (tmpl, orig_args, complain);
18144 timevar_pop (TV_TEMPLATE_INST);
18145 return ret;
18148 /* Instantiate the alias template TMPL with ARGS. Also push a template
18149 instantiation level, which instantiate_template doesn't do because
18150 functions and variables have sufficient context established by the
18151 callers. */
18153 static tree
18154 instantiate_alias_template (tree tmpl, tree args, tsubst_flags_t complain)
18156 struct pending_template *old_last_pend = last_pending_template;
18157 struct tinst_level *old_error_tinst = last_error_tinst_level;
18158 if (tmpl == error_mark_node || args == error_mark_node)
18159 return error_mark_node;
18160 tree tinst = build_tree_list (tmpl, args);
18161 if (!push_tinst_level (tinst))
18163 ggc_free (tinst);
18164 return error_mark_node;
18167 args =
18168 coerce_innermost_template_parms (DECL_TEMPLATE_PARMS (tmpl),
18169 args, tmpl, complain,
18170 /*require_all_args=*/true,
18171 /*use_default_args=*/true);
18173 tree r = instantiate_template (tmpl, args, complain);
18174 pop_tinst_level ();
18175 /* We can't free this if a pending_template entry or last_error_tinst_level
18176 is pointing at it. */
18177 if (last_pending_template == old_last_pend
18178 && last_error_tinst_level == old_error_tinst)
18179 ggc_free (tinst);
18181 return r;
18184 /* PARM is a template parameter pack for FN. Returns true iff
18185 PARM is used in a deducible way in the argument list of FN. */
18187 static bool
18188 pack_deducible_p (tree parm, tree fn)
18190 tree t = FUNCTION_FIRST_USER_PARMTYPE (fn);
18191 for (; t; t = TREE_CHAIN (t))
18193 tree type = TREE_VALUE (t);
18194 tree packs;
18195 if (!PACK_EXPANSION_P (type))
18196 continue;
18197 for (packs = PACK_EXPANSION_PARAMETER_PACKS (type);
18198 packs; packs = TREE_CHAIN (packs))
18199 if (template_args_equal (TREE_VALUE (packs), parm))
18201 /* The template parameter pack is used in a function parameter
18202 pack. If this is the end of the parameter list, the
18203 template parameter pack is deducible. */
18204 if (TREE_CHAIN (t) == void_list_node)
18205 return true;
18206 else
18207 /* Otherwise, not. Well, it could be deduced from
18208 a non-pack parameter, but doing so would end up with
18209 a deduction mismatch, so don't bother. */
18210 return false;
18213 /* The template parameter pack isn't used in any function parameter
18214 packs, but it might be used deeper, e.g. tuple<Args...>. */
18215 return true;
18218 /* The FN is a TEMPLATE_DECL for a function. ARGS is an array with
18219 NARGS elements of the arguments that are being used when calling
18220 it. TARGS is a vector into which the deduced template arguments
18221 are placed.
18223 Returns either a FUNCTION_DECL for the matching specialization of FN or
18224 NULL_TREE if no suitable specialization can be found. If EXPLAIN_P is
18225 true, diagnostics will be printed to explain why it failed.
18227 If FN is a conversion operator, or we are trying to produce a specific
18228 specialization, RETURN_TYPE is the return type desired.
18230 The EXPLICIT_TARGS are explicit template arguments provided via a
18231 template-id.
18233 The parameter STRICT is one of:
18235 DEDUCE_CALL:
18236 We are deducing arguments for a function call, as in
18237 [temp.deduct.call]. If RETURN_TYPE is non-null, we are
18238 deducing arguments for a call to the result of a conversion
18239 function template, as in [over.call.object].
18241 DEDUCE_CONV:
18242 We are deducing arguments for a conversion function, as in
18243 [temp.deduct.conv].
18245 DEDUCE_EXACT:
18246 We are deducing arguments when doing an explicit instantiation
18247 as in [temp.explicit], when determining an explicit specialization
18248 as in [temp.expl.spec], or when taking the address of a function
18249 template, as in [temp.deduct.funcaddr]. */
18251 tree
18252 fn_type_unification (tree fn,
18253 tree explicit_targs,
18254 tree targs,
18255 const tree *args,
18256 unsigned int nargs,
18257 tree return_type,
18258 unification_kind_t strict,
18259 int flags,
18260 bool explain_p,
18261 bool decltype_p)
18263 tree parms;
18264 tree fntype;
18265 tree decl = NULL_TREE;
18266 tsubst_flags_t complain = (explain_p ? tf_warning_or_error : tf_none);
18267 bool ok;
18268 static int deduction_depth;
18269 struct pending_template *old_last_pend = last_pending_template;
18270 struct tinst_level *old_error_tinst = last_error_tinst_level;
18272 tree orig_fn = fn;
18273 if (flag_new_inheriting_ctors)
18274 fn = strip_inheriting_ctors (fn);
18276 tree tparms = DECL_INNERMOST_TEMPLATE_PARMS (fn);
18277 tree tinst;
18278 tree r = error_mark_node;
18280 tree full_targs = targs;
18281 if (TMPL_ARGS_DEPTH (targs)
18282 < TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (fn)))
18283 full_targs = (add_outermost_template_args
18284 (DECL_TI_ARGS (DECL_TEMPLATE_RESULT (fn)),
18285 targs));
18287 if (decltype_p)
18288 complain |= tf_decltype;
18290 /* In C++0x, it's possible to have a function template whose type depends
18291 on itself recursively. This is most obvious with decltype, but can also
18292 occur with enumeration scope (c++/48969). So we need to catch infinite
18293 recursion and reject the substitution at deduction time; this function
18294 will return error_mark_node for any repeated substitution.
18296 This also catches excessive recursion such as when f<N> depends on
18297 f<N-1> across all integers, and returns error_mark_node for all the
18298 substitutions back up to the initial one.
18300 This is, of course, not reentrant. */
18301 if (excessive_deduction_depth)
18302 return error_mark_node;
18303 tinst = build_tree_list (fn, NULL_TREE);
18304 ++deduction_depth;
18306 gcc_assert (TREE_CODE (fn) == TEMPLATE_DECL);
18308 fntype = TREE_TYPE (fn);
18309 if (explicit_targs)
18311 /* [temp.deduct]
18313 The specified template arguments must match the template
18314 parameters in kind (i.e., type, nontype, template), and there
18315 must not be more arguments than there are parameters;
18316 otherwise type deduction fails.
18318 Nontype arguments must match the types of the corresponding
18319 nontype template parameters, or must be convertible to the
18320 types of the corresponding nontype parameters as specified in
18321 _temp.arg.nontype_, otherwise type deduction fails.
18323 All references in the function type of the function template
18324 to the corresponding template parameters are replaced by the
18325 specified template argument values. If a substitution in a
18326 template parameter or in the function type of the function
18327 template results in an invalid type, type deduction fails. */
18328 int i, len = TREE_VEC_LENGTH (tparms);
18329 location_t loc = input_location;
18330 bool incomplete = false;
18332 if (explicit_targs == error_mark_node)
18333 goto fail;
18335 if (TMPL_ARGS_DEPTH (explicit_targs)
18336 < TMPL_ARGS_DEPTH (full_targs))
18337 explicit_targs = add_outermost_template_args (full_targs,
18338 explicit_targs);
18340 /* Adjust any explicit template arguments before entering the
18341 substitution context. */
18342 explicit_targs
18343 = (coerce_template_parms (tparms, explicit_targs, NULL_TREE,
18344 complain,
18345 /*require_all_args=*/false,
18346 /*use_default_args=*/false));
18347 if (explicit_targs == error_mark_node)
18348 goto fail;
18350 /* Substitute the explicit args into the function type. This is
18351 necessary so that, for instance, explicitly declared function
18352 arguments can match null pointed constants. If we were given
18353 an incomplete set of explicit args, we must not do semantic
18354 processing during substitution as we could create partial
18355 instantiations. */
18356 for (i = 0; i < len; i++)
18358 tree parm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
18359 bool parameter_pack = false;
18360 tree targ = TREE_VEC_ELT (explicit_targs, i);
18362 /* Dig out the actual parm. */
18363 if (TREE_CODE (parm) == TYPE_DECL
18364 || TREE_CODE (parm) == TEMPLATE_DECL)
18366 parm = TREE_TYPE (parm);
18367 parameter_pack = TEMPLATE_TYPE_PARAMETER_PACK (parm);
18369 else if (TREE_CODE (parm) == PARM_DECL)
18371 parm = DECL_INITIAL (parm);
18372 parameter_pack = TEMPLATE_PARM_PARAMETER_PACK (parm);
18375 if (!parameter_pack && targ == NULL_TREE)
18376 /* No explicit argument for this template parameter. */
18377 incomplete = true;
18379 if (parameter_pack && pack_deducible_p (parm, fn))
18381 /* Mark the argument pack as "incomplete". We could
18382 still deduce more arguments during unification.
18383 We remove this mark in type_unification_real. */
18384 if (targ)
18386 ARGUMENT_PACK_INCOMPLETE_P(targ) = 1;
18387 ARGUMENT_PACK_EXPLICIT_ARGS (targ)
18388 = ARGUMENT_PACK_ARGS (targ);
18391 /* We have some incomplete argument packs. */
18392 incomplete = true;
18396 TREE_VALUE (tinst) = explicit_targs;
18397 if (!push_tinst_level (tinst))
18399 excessive_deduction_depth = true;
18400 goto fail;
18402 processing_template_decl += incomplete;
18403 input_location = DECL_SOURCE_LOCATION (fn);
18404 /* Ignore any access checks; we'll see them again in
18405 instantiate_template and they might have the wrong
18406 access path at this point. */
18407 push_deferring_access_checks (dk_deferred);
18408 fntype = tsubst (TREE_TYPE (fn), explicit_targs,
18409 complain | tf_partial | tf_fndecl_type, NULL_TREE);
18410 pop_deferring_access_checks ();
18411 input_location = loc;
18412 processing_template_decl -= incomplete;
18413 pop_tinst_level ();
18415 if (fntype == error_mark_node)
18416 goto fail;
18418 /* Place the explicitly specified arguments in TARGS. */
18419 explicit_targs = INNERMOST_TEMPLATE_ARGS (explicit_targs);
18420 for (i = NUM_TMPL_ARGS (explicit_targs); i--;)
18421 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (explicit_targs, i);
18424 /* Never do unification on the 'this' parameter. */
18425 parms = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (fntype));
18427 if (return_type && strict == DEDUCE_CALL)
18429 /* We're deducing for a call to the result of a template conversion
18430 function. The parms we really want are in return_type. */
18431 if (POINTER_TYPE_P (return_type))
18432 return_type = TREE_TYPE (return_type);
18433 parms = TYPE_ARG_TYPES (return_type);
18435 else if (return_type)
18437 tree *new_args;
18439 parms = tree_cons (NULL_TREE, TREE_TYPE (fntype), parms);
18440 new_args = XALLOCAVEC (tree, nargs + 1);
18441 new_args[0] = return_type;
18442 memcpy (new_args + 1, args, nargs * sizeof (tree));
18443 args = new_args;
18444 ++nargs;
18447 /* We allow incomplete unification without an error message here
18448 because the standard doesn't seem to explicitly prohibit it. Our
18449 callers must be ready to deal with unification failures in any
18450 event. */
18452 TREE_VALUE (tinst) = targs;
18453 /* If we aren't explaining yet, push tinst context so we can see where
18454 any errors (e.g. from class instantiations triggered by instantiation
18455 of default template arguments) come from. If we are explaining, this
18456 context is redundant. */
18457 if (!explain_p && !push_tinst_level (tinst))
18459 excessive_deduction_depth = true;
18460 goto fail;
18463 /* type_unification_real will pass back any access checks from default
18464 template argument substitution. */
18465 vec<deferred_access_check, va_gc> *checks;
18466 checks = NULL;
18468 ok = !type_unification_real (DECL_INNERMOST_TEMPLATE_PARMS (fn),
18469 full_targs, parms, args, nargs, /*subr=*/0,
18470 strict, flags, &checks, explain_p);
18471 if (!explain_p)
18472 pop_tinst_level ();
18473 if (!ok)
18474 goto fail;
18476 /* Now that we have bindings for all of the template arguments,
18477 ensure that the arguments deduced for the template template
18478 parameters have compatible template parameter lists. We cannot
18479 check this property before we have deduced all template
18480 arguments, because the template parameter types of a template
18481 template parameter might depend on prior template parameters
18482 deduced after the template template parameter. The following
18483 ill-formed example illustrates this issue:
18485 template<typename T, template<T> class C> void f(C<5>, T);
18487 template<int N> struct X {};
18489 void g() {
18490 f(X<5>(), 5l); // error: template argument deduction fails
18493 The template parameter list of 'C' depends on the template type
18494 parameter 'T', but 'C' is deduced to 'X' before 'T' is deduced to
18495 'long'. Thus, we can't check that 'C' cannot bind to 'X' at the
18496 time that we deduce 'C'. */
18497 if (!template_template_parm_bindings_ok_p
18498 (DECL_INNERMOST_TEMPLATE_PARMS (fn), targs))
18500 unify_inconsistent_template_template_parameters (explain_p);
18501 goto fail;
18504 /* All is well so far. Now, check:
18506 [temp.deduct]
18508 When all template arguments have been deduced, all uses of
18509 template parameters in nondeduced contexts are replaced with
18510 the corresponding deduced argument values. If the
18511 substitution results in an invalid type, as described above,
18512 type deduction fails. */
18513 TREE_VALUE (tinst) = targs;
18514 if (!push_tinst_level (tinst))
18516 excessive_deduction_depth = true;
18517 goto fail;
18520 /* Also collect access checks from the instantiation. */
18521 reopen_deferring_access_checks (checks);
18523 decl = instantiate_template (fn, targs, complain);
18525 checks = get_deferred_access_checks ();
18526 pop_deferring_access_checks ();
18528 pop_tinst_level ();
18530 if (decl == error_mark_node)
18531 goto fail;
18533 /* Now perform any access checks encountered during substitution. */
18534 push_access_scope (decl);
18535 ok = perform_access_checks (checks, complain);
18536 pop_access_scope (decl);
18537 if (!ok)
18538 goto fail;
18540 /* If we're looking for an exact match, check that what we got
18541 is indeed an exact match. It might not be if some template
18542 parameters are used in non-deduced contexts. But don't check
18543 for an exact match if we have dependent template arguments;
18544 in that case we're doing partial ordering, and we already know
18545 that we have two candidates that will provide the actual type. */
18546 if (strict == DEDUCE_EXACT && !any_dependent_template_arguments_p (targs))
18548 tree substed = TREE_TYPE (decl);
18549 unsigned int i;
18551 tree sarg
18552 = skip_artificial_parms_for (decl, TYPE_ARG_TYPES (substed));
18553 if (return_type)
18554 sarg = tree_cons (NULL_TREE, TREE_TYPE (substed), sarg);
18555 for (i = 0; i < nargs && sarg; ++i, sarg = TREE_CHAIN (sarg))
18556 if (!same_type_p (args[i], TREE_VALUE (sarg)))
18558 unify_type_mismatch (explain_p, args[i],
18559 TREE_VALUE (sarg));
18560 goto fail;
18564 /* After doing deduction with the inherited constructor, actually return an
18565 instantiation of the inheriting constructor. */
18566 if (orig_fn != fn)
18567 decl = instantiate_template (orig_fn, targs, complain);
18569 r = decl;
18571 fail:
18572 --deduction_depth;
18573 if (excessive_deduction_depth)
18575 if (deduction_depth == 0)
18576 /* Reset once we're all the way out. */
18577 excessive_deduction_depth = false;
18580 /* We can't free this if a pending_template entry or last_error_tinst_level
18581 is pointing at it. */
18582 if (last_pending_template == old_last_pend
18583 && last_error_tinst_level == old_error_tinst)
18584 ggc_free (tinst);
18586 return r;
18589 /* Adjust types before performing type deduction, as described in
18590 [temp.deduct.call] and [temp.deduct.conv]. The rules in these two
18591 sections are symmetric. PARM is the type of a function parameter
18592 or the return type of the conversion function. ARG is the type of
18593 the argument passed to the call, or the type of the value
18594 initialized with the result of the conversion function.
18595 ARG_EXPR is the original argument expression, which may be null. */
18597 static int
18598 maybe_adjust_types_for_deduction (unification_kind_t strict,
18599 tree* parm,
18600 tree* arg,
18601 tree arg_expr)
18603 int result = 0;
18605 switch (strict)
18607 case DEDUCE_CALL:
18608 break;
18610 case DEDUCE_CONV:
18611 /* Swap PARM and ARG throughout the remainder of this
18612 function; the handling is precisely symmetric since PARM
18613 will initialize ARG rather than vice versa. */
18614 std::swap (parm, arg);
18615 break;
18617 case DEDUCE_EXACT:
18618 /* Core issue #873: Do the DR606 thing (see below) for these cases,
18619 too, but here handle it by stripping the reference from PARM
18620 rather than by adding it to ARG. */
18621 if (TREE_CODE (*parm) == REFERENCE_TYPE
18622 && TYPE_REF_IS_RVALUE (*parm)
18623 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
18624 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
18625 && TREE_CODE (*arg) == REFERENCE_TYPE
18626 && !TYPE_REF_IS_RVALUE (*arg))
18627 *parm = TREE_TYPE (*parm);
18628 /* Nothing else to do in this case. */
18629 return 0;
18631 default:
18632 gcc_unreachable ();
18635 if (TREE_CODE (*parm) != REFERENCE_TYPE)
18637 /* [temp.deduct.call]
18639 If P is not a reference type:
18641 --If A is an array type, the pointer type produced by the
18642 array-to-pointer standard conversion (_conv.array_) is
18643 used in place of A for type deduction; otherwise,
18645 --If A is a function type, the pointer type produced by
18646 the function-to-pointer standard conversion
18647 (_conv.func_) is used in place of A for type deduction;
18648 otherwise,
18650 --If A is a cv-qualified type, the top level
18651 cv-qualifiers of A's type are ignored for type
18652 deduction. */
18653 if (TREE_CODE (*arg) == ARRAY_TYPE)
18654 *arg = build_pointer_type (TREE_TYPE (*arg));
18655 else if (TREE_CODE (*arg) == FUNCTION_TYPE)
18656 *arg = build_pointer_type (*arg);
18657 else
18658 *arg = TYPE_MAIN_VARIANT (*arg);
18661 /* [14.8.2.1/3 temp.deduct.call], "A forwarding reference is an rvalue
18662 reference to a cv-unqualified template parameter that does not represent a
18663 template parameter of a class template (during class template argument
18664 deduction (13.3.1.8)). If P is a forwarding reference and the argument is
18665 an lvalue, the type "lvalue reference to A" is used in place of A for type
18666 deduction. */
18667 if (TREE_CODE (*parm) == REFERENCE_TYPE
18668 && TYPE_REF_IS_RVALUE (*parm)
18669 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
18670 && !TEMPLATE_TYPE_PARM_FOR_CLASS (TREE_TYPE (*parm))
18671 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
18672 && (arg_expr ? lvalue_p (arg_expr)
18673 /* try_one_overload doesn't provide an arg_expr, but
18674 functions are always lvalues. */
18675 : TREE_CODE (*arg) == FUNCTION_TYPE))
18676 *arg = build_reference_type (*arg);
18678 /* [temp.deduct.call]
18680 If P is a cv-qualified type, the top level cv-qualifiers
18681 of P's type are ignored for type deduction. If P is a
18682 reference type, the type referred to by P is used for
18683 type deduction. */
18684 *parm = TYPE_MAIN_VARIANT (*parm);
18685 if (TREE_CODE (*parm) == REFERENCE_TYPE)
18687 *parm = TREE_TYPE (*parm);
18688 result |= UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
18691 /* DR 322. For conversion deduction, remove a reference type on parm
18692 too (which has been swapped into ARG). */
18693 if (strict == DEDUCE_CONV && TREE_CODE (*arg) == REFERENCE_TYPE)
18694 *arg = TREE_TYPE (*arg);
18696 return result;
18699 /* Subroutine of unify_one_argument. PARM is a function parameter of a
18700 template which does contain any deducible template parameters; check if
18701 ARG is a suitable match for it. STRICT, FLAGS and EXPLAIN_P are as in
18702 unify_one_argument. */
18704 static int
18705 check_non_deducible_conversion (tree parm, tree arg, int strict,
18706 int flags, bool explain_p)
18708 tree type;
18710 if (!TYPE_P (arg))
18711 type = TREE_TYPE (arg);
18712 else
18713 type = arg;
18715 if (same_type_p (parm, type))
18716 return unify_success (explain_p);
18718 if (strict == DEDUCE_CONV)
18720 if (can_convert_arg (type, parm, NULL_TREE, flags,
18721 explain_p ? tf_warning_or_error : tf_none))
18722 return unify_success (explain_p);
18724 else if (strict != DEDUCE_EXACT)
18726 if (can_convert_arg (parm, type,
18727 TYPE_P (arg) ? NULL_TREE : arg,
18728 flags, explain_p ? tf_warning_or_error : tf_none))
18729 return unify_success (explain_p);
18732 if (strict == DEDUCE_EXACT)
18733 return unify_type_mismatch (explain_p, parm, arg);
18734 else
18735 return unify_arg_conversion (explain_p, parm, type, arg);
18738 static bool uses_deducible_template_parms (tree type);
18740 /* Returns true iff the expression EXPR is one from which a template
18741 argument can be deduced. In other words, if it's an undecorated
18742 use of a template non-type parameter. */
18744 static bool
18745 deducible_expression (tree expr)
18747 /* Strip implicit conversions. */
18748 while (CONVERT_EXPR_P (expr))
18749 expr = TREE_OPERAND (expr, 0);
18750 return (TREE_CODE (expr) == TEMPLATE_PARM_INDEX);
18753 /* Returns true iff the array domain DOMAIN uses a template parameter in a
18754 deducible way; that is, if it has a max value of <PARM> - 1. */
18756 static bool
18757 deducible_array_bound (tree domain)
18759 if (domain == NULL_TREE)
18760 return false;
18762 tree max = TYPE_MAX_VALUE (domain);
18763 if (TREE_CODE (max) != MINUS_EXPR)
18764 return false;
18766 return deducible_expression (TREE_OPERAND (max, 0));
18769 /* Returns true iff the template arguments ARGS use a template parameter
18770 in a deducible way. */
18772 static bool
18773 deducible_template_args (tree args)
18775 for (int i = 0; i < TREE_VEC_LENGTH (args); ++i)
18777 bool deducible;
18778 tree elt = TREE_VEC_ELT (args, i);
18779 if (ARGUMENT_PACK_P (elt))
18780 deducible = deducible_template_args (ARGUMENT_PACK_ARGS (elt));
18781 else
18783 if (PACK_EXPANSION_P (elt))
18784 elt = PACK_EXPANSION_PATTERN (elt);
18785 if (TREE_CODE (elt) == TEMPLATE_TEMPLATE_PARM)
18786 deducible = true;
18787 else if (TYPE_P (elt))
18788 deducible = uses_deducible_template_parms (elt);
18789 else
18790 deducible = deducible_expression (elt);
18792 if (deducible)
18793 return true;
18795 return false;
18798 /* Returns true iff TYPE contains any deducible references to template
18799 parameters, as per 14.8.2.5. */
18801 static bool
18802 uses_deducible_template_parms (tree type)
18804 if (PACK_EXPANSION_P (type))
18805 type = PACK_EXPANSION_PATTERN (type);
18807 /* T
18808 cv-list T
18809 TT<T>
18810 TT<i>
18811 TT<> */
18812 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
18813 || TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
18814 return true;
18816 /* T*
18818 T&& */
18819 if (POINTER_TYPE_P (type))
18820 return uses_deducible_template_parms (TREE_TYPE (type));
18822 /* T[integer-constant ]
18823 type [i] */
18824 if (TREE_CODE (type) == ARRAY_TYPE)
18825 return (uses_deducible_template_parms (TREE_TYPE (type))
18826 || deducible_array_bound (TYPE_DOMAIN (type)));
18828 /* T type ::*
18829 type T::*
18830 T T::*
18831 T (type ::*)()
18832 type (T::*)()
18833 type (type ::*)(T)
18834 type (T::*)(T)
18835 T (type ::*)(T)
18836 T (T::*)()
18837 T (T::*)(T) */
18838 if (TYPE_PTRMEM_P (type))
18839 return (uses_deducible_template_parms (TYPE_PTRMEM_CLASS_TYPE (type))
18840 || (uses_deducible_template_parms
18841 (TYPE_PTRMEM_POINTED_TO_TYPE (type))));
18843 /* template-name <T> (where template-name refers to a class template)
18844 template-name <i> (where template-name refers to a class template) */
18845 if (CLASS_TYPE_P (type)
18846 && CLASSTYPE_TEMPLATE_INFO (type)
18847 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type)))
18848 return deducible_template_args (INNERMOST_TEMPLATE_ARGS
18849 (CLASSTYPE_TI_ARGS (type)));
18851 /* type (T)
18853 T(T) */
18854 if (TREE_CODE (type) == FUNCTION_TYPE
18855 || TREE_CODE (type) == METHOD_TYPE)
18857 if (uses_deducible_template_parms (TREE_TYPE (type)))
18858 return true;
18859 tree parm = TYPE_ARG_TYPES (type);
18860 if (TREE_CODE (type) == METHOD_TYPE)
18861 parm = TREE_CHAIN (parm);
18862 for (; parm; parm = TREE_CHAIN (parm))
18863 if (uses_deducible_template_parms (TREE_VALUE (parm)))
18864 return true;
18867 return false;
18870 /* Subroutine of type_unification_real and unify_pack_expansion to
18871 handle unification of a single P/A pair. Parameters are as
18872 for those functions. */
18874 static int
18875 unify_one_argument (tree tparms, tree targs, tree parm, tree arg,
18876 int subr, unification_kind_t strict,
18877 bool explain_p)
18879 tree arg_expr = NULL_TREE;
18880 int arg_strict;
18882 if (arg == error_mark_node || parm == error_mark_node)
18883 return unify_invalid (explain_p);
18884 if (arg == unknown_type_node)
18885 /* We can't deduce anything from this, but we might get all the
18886 template args from other function args. */
18887 return unify_success (explain_p);
18889 /* Implicit conversions (Clause 4) will be performed on a function
18890 argument to convert it to the type of the corresponding function
18891 parameter if the parameter type contains no template-parameters that
18892 participate in template argument deduction. */
18893 if (strict != DEDUCE_EXACT
18894 && TYPE_P (parm) && !uses_deducible_template_parms (parm))
18895 /* For function parameters with no deducible template parameters,
18896 just return. We'll check non-dependent conversions later. */
18897 return unify_success (explain_p);
18899 switch (strict)
18901 case DEDUCE_CALL:
18902 arg_strict = (UNIFY_ALLOW_OUTER_LEVEL
18903 | UNIFY_ALLOW_MORE_CV_QUAL
18904 | UNIFY_ALLOW_DERIVED);
18905 break;
18907 case DEDUCE_CONV:
18908 arg_strict = UNIFY_ALLOW_LESS_CV_QUAL;
18909 break;
18911 case DEDUCE_EXACT:
18912 arg_strict = UNIFY_ALLOW_NONE;
18913 break;
18915 default:
18916 gcc_unreachable ();
18919 /* We only do these transformations if this is the top-level
18920 parameter_type_list in a call or declaration matching; in other
18921 situations (nested function declarators, template argument lists) we
18922 won't be comparing a type to an expression, and we don't do any type
18923 adjustments. */
18924 if (!subr)
18926 if (!TYPE_P (arg))
18928 gcc_assert (TREE_TYPE (arg) != NULL_TREE);
18929 if (type_unknown_p (arg))
18931 /* [temp.deduct.type] A template-argument can be
18932 deduced from a pointer to function or pointer
18933 to member function argument if the set of
18934 overloaded functions does not contain function
18935 templates and at most one of a set of
18936 overloaded functions provides a unique
18937 match. */
18939 if (resolve_overloaded_unification
18940 (tparms, targs, parm, arg, strict,
18941 arg_strict, explain_p))
18942 return unify_success (explain_p);
18943 return unify_overload_resolution_failure (explain_p, arg);
18946 arg_expr = arg;
18947 arg = unlowered_expr_type (arg);
18948 if (arg == error_mark_node)
18949 return unify_invalid (explain_p);
18952 arg_strict |=
18953 maybe_adjust_types_for_deduction (strict, &parm, &arg, arg_expr);
18955 else
18956 if ((TYPE_P (parm) || TREE_CODE (parm) == TEMPLATE_DECL)
18957 != (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL))
18958 return unify_template_argument_mismatch (explain_p, parm, arg);
18960 /* For deduction from an init-list we need the actual list. */
18961 if (arg_expr && BRACE_ENCLOSED_INITIALIZER_P (arg_expr))
18962 arg = arg_expr;
18963 return unify (tparms, targs, parm, arg, arg_strict, explain_p);
18966 /* for_each_template_parm callback that always returns 0. */
18968 static int
18969 zero_r (tree, void *)
18971 return 0;
18974 /* for_each_template_parm any_fn callback to handle deduction of a template
18975 type argument from the type of an array bound. */
18977 static int
18978 array_deduction_r (tree t, void *data)
18980 tree_pair_p d = (tree_pair_p)data;
18981 tree &tparms = d->purpose;
18982 tree &targs = d->value;
18984 if (TREE_CODE (t) == ARRAY_TYPE)
18985 if (tree dom = TYPE_DOMAIN (t))
18986 if (tree max = TYPE_MAX_VALUE (dom))
18988 if (TREE_CODE (max) == MINUS_EXPR)
18989 max = TREE_OPERAND (max, 0);
18990 if (TREE_CODE (max) == TEMPLATE_PARM_INDEX)
18991 unify (tparms, targs, TREE_TYPE (max), size_type_node,
18992 UNIFY_ALLOW_NONE, /*explain*/false);
18995 /* Keep walking. */
18996 return 0;
18999 /* Try to deduce any not-yet-deduced template type arguments from the type of
19000 an array bound. This is handled separately from unify because 14.8.2.5 says
19001 "The type of a type parameter is only deduced from an array bound if it is
19002 not otherwise deduced." */
19004 static void
19005 try_array_deduction (tree tparms, tree targs, tree parm)
19007 tree_pair_s data = { tparms, targs };
19008 hash_set<tree> visited;
19009 for_each_template_parm (parm, zero_r, &data, &visited,
19010 /*nondeduced*/false, array_deduction_r);
19013 /* Most parms like fn_type_unification.
19015 If SUBR is 1, we're being called recursively (to unify the
19016 arguments of a function or method parameter of a function
19017 template).
19019 CHECKS is a pointer to a vector of access checks encountered while
19020 substituting default template arguments. */
19022 static int
19023 type_unification_real (tree tparms,
19024 tree full_targs,
19025 tree xparms,
19026 const tree *xargs,
19027 unsigned int xnargs,
19028 int subr,
19029 unification_kind_t strict,
19030 int flags,
19031 vec<deferred_access_check, va_gc> **checks,
19032 bool explain_p)
19034 tree parm, arg;
19035 int i;
19036 int ntparms = TREE_VEC_LENGTH (tparms);
19037 int saw_undeduced = 0;
19038 tree parms;
19039 const tree *args;
19040 unsigned int nargs;
19041 unsigned int ia;
19043 gcc_assert (TREE_CODE (tparms) == TREE_VEC);
19044 gcc_assert (xparms == NULL_TREE || TREE_CODE (xparms) == TREE_LIST);
19045 gcc_assert (ntparms > 0);
19047 tree targs = INNERMOST_TEMPLATE_ARGS (full_targs);
19049 /* Reset the number of non-defaulted template arguments contained
19050 in TARGS. */
19051 NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs) = NULL_TREE;
19053 again:
19054 parms = xparms;
19055 args = xargs;
19056 nargs = xnargs;
19058 ia = 0;
19059 while (parms && parms != void_list_node
19060 && ia < nargs)
19062 parm = TREE_VALUE (parms);
19064 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION
19065 && (!TREE_CHAIN (parms) || TREE_CHAIN (parms) == void_list_node))
19066 /* For a function parameter pack that occurs at the end of the
19067 parameter-declaration-list, the type A of each remaining
19068 argument of the call is compared with the type P of the
19069 declarator-id of the function parameter pack. */
19070 break;
19072 parms = TREE_CHAIN (parms);
19074 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION)
19075 /* For a function parameter pack that does not occur at the
19076 end of the parameter-declaration-list, the type of the
19077 parameter pack is a non-deduced context. */
19078 continue;
19080 arg = args[ia];
19081 ++ia;
19083 if (unify_one_argument (tparms, full_targs, parm, arg, subr, strict,
19084 explain_p))
19085 return 1;
19088 if (parms
19089 && parms != void_list_node
19090 && TREE_CODE (TREE_VALUE (parms)) == TYPE_PACK_EXPANSION)
19092 /* Unify the remaining arguments with the pack expansion type. */
19093 tree argvec;
19094 tree parmvec = make_tree_vec (1);
19096 /* Allocate a TREE_VEC and copy in all of the arguments */
19097 argvec = make_tree_vec (nargs - ia);
19098 for (i = 0; ia < nargs; ++ia, ++i)
19099 TREE_VEC_ELT (argvec, i) = args[ia];
19101 /* Copy the parameter into parmvec. */
19102 TREE_VEC_ELT (parmvec, 0) = TREE_VALUE (parms);
19103 if (unify_pack_expansion (tparms, full_targs, parmvec, argvec, strict,
19104 /*subr=*/subr, explain_p))
19105 return 1;
19107 /* Advance to the end of the list of parameters. */
19108 parms = TREE_CHAIN (parms);
19111 /* Fail if we've reached the end of the parm list, and more args
19112 are present, and the parm list isn't variadic. */
19113 if (ia < nargs && parms == void_list_node)
19114 return unify_too_many_arguments (explain_p, nargs, ia);
19115 /* Fail if parms are left and they don't have default values and
19116 they aren't all deduced as empty packs (c++/57397). This is
19117 consistent with sufficient_parms_p. */
19118 if (parms && parms != void_list_node
19119 && TREE_PURPOSE (parms) == NULL_TREE)
19121 unsigned int count = nargs;
19122 tree p = parms;
19123 bool type_pack_p;
19126 type_pack_p = TREE_CODE (TREE_VALUE (p)) == TYPE_PACK_EXPANSION;
19127 if (!type_pack_p)
19128 count++;
19129 p = TREE_CHAIN (p);
19131 while (p && p != void_list_node);
19132 if (count != nargs)
19133 return unify_too_few_arguments (explain_p, ia, count,
19134 type_pack_p);
19137 if (!subr)
19139 tsubst_flags_t complain = (explain_p
19140 ? tf_warning_or_error
19141 : tf_none);
19142 bool tried_array_deduction = (cxx_dialect < cxx1z);
19144 for (i = 0; i < ntparms; i++)
19146 tree targ = TREE_VEC_ELT (targs, i);
19147 tree tparm = TREE_VEC_ELT (tparms, i);
19149 /* Clear the "incomplete" flags on all argument packs now so that
19150 substituting them into later default arguments works. */
19151 if (targ && ARGUMENT_PACK_P (targ))
19153 ARGUMENT_PACK_INCOMPLETE_P (targ) = 0;
19154 ARGUMENT_PACK_EXPLICIT_ARGS (targ) = NULL_TREE;
19157 if (targ || tparm == error_mark_node)
19158 continue;
19159 tparm = TREE_VALUE (tparm);
19161 if (TREE_CODE (tparm) == TYPE_DECL
19162 && !tried_array_deduction)
19164 try_array_deduction (tparms, targs, xparms);
19165 tried_array_deduction = true;
19166 if (TREE_VEC_ELT (targs, i))
19167 continue;
19170 /* If this is an undeduced nontype parameter that depends on
19171 a type parameter, try another pass; its type may have been
19172 deduced from a later argument than the one from which
19173 this parameter can be deduced. */
19174 if (TREE_CODE (tparm) == PARM_DECL
19175 && uses_template_parms (TREE_TYPE (tparm))
19176 && saw_undeduced < 2)
19178 saw_undeduced = 1;
19179 continue;
19182 /* Core issue #226 (C++0x) [temp.deduct]:
19184 If a template argument has not been deduced, its
19185 default template argument, if any, is used.
19187 When we are in C++98 mode, TREE_PURPOSE will either
19188 be NULL_TREE or ERROR_MARK_NODE, so we do not need
19189 to explicitly check cxx_dialect here. */
19190 if (TREE_PURPOSE (TREE_VEC_ELT (tparms, i)))
19191 /* OK, there is a default argument. Wait until after the
19192 conversion check to do substitution. */
19193 continue;
19195 /* If the type parameter is a parameter pack, then it will
19196 be deduced to an empty parameter pack. */
19197 if (template_parameter_pack_p (tparm))
19199 tree arg;
19201 if (TREE_CODE (tparm) == TEMPLATE_PARM_INDEX)
19203 arg = make_node (NONTYPE_ARGUMENT_PACK);
19204 TREE_TYPE (arg) = TREE_TYPE (TEMPLATE_PARM_DECL (tparm));
19205 TREE_CONSTANT (arg) = 1;
19207 else
19208 arg = cxx_make_type (TYPE_ARGUMENT_PACK);
19210 SET_ARGUMENT_PACK_ARGS (arg, make_tree_vec (0));
19212 TREE_VEC_ELT (targs, i) = arg;
19213 continue;
19216 return unify_parameter_deduction_failure (explain_p, tparm);
19219 /* DR 1391: All parameters have args, now check non-dependent parms for
19220 convertibility. */
19221 if (saw_undeduced < 2)
19222 for (ia = 0, parms = xparms, args = xargs, nargs = xnargs;
19223 parms && parms != void_list_node && ia < nargs; )
19225 parm = TREE_VALUE (parms);
19227 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION
19228 && (!TREE_CHAIN (parms)
19229 || TREE_CHAIN (parms) == void_list_node))
19230 /* For a function parameter pack that occurs at the end of the
19231 parameter-declaration-list, the type A of each remaining
19232 argument of the call is compared with the type P of the
19233 declarator-id of the function parameter pack. */
19234 break;
19236 parms = TREE_CHAIN (parms);
19238 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION)
19239 /* For a function parameter pack that does not occur at the
19240 end of the parameter-declaration-list, the type of the
19241 parameter pack is a non-deduced context. */
19242 continue;
19244 arg = args[ia];
19245 ++ia;
19247 if (uses_template_parms (parm))
19248 continue;
19249 if (check_non_deducible_conversion (parm, arg, strict, flags,
19250 explain_p))
19251 return 1;
19254 /* Now substitute into the default template arguments. */
19255 for (i = 0; i < ntparms; i++)
19257 tree targ = TREE_VEC_ELT (targs, i);
19258 tree tparm = TREE_VEC_ELT (tparms, i);
19260 if (targ || tparm == error_mark_node)
19261 continue;
19262 tree parm = TREE_VALUE (tparm);
19264 if (TREE_CODE (parm) == PARM_DECL
19265 && uses_template_parms (TREE_TYPE (parm))
19266 && saw_undeduced < 2)
19267 continue;
19269 tree arg = TREE_PURPOSE (tparm);
19270 reopen_deferring_access_checks (*checks);
19271 location_t save_loc = input_location;
19272 if (DECL_P (parm))
19273 input_location = DECL_SOURCE_LOCATION (parm);
19274 arg = tsubst_template_arg (arg, full_targs, complain, NULL_TREE);
19275 if (!uses_template_parms (arg))
19276 arg = convert_template_argument (parm, arg, full_targs, complain,
19277 i, NULL_TREE);
19278 else if (saw_undeduced < 2)
19279 arg = NULL_TREE;
19280 else
19281 arg = error_mark_node;
19282 input_location = save_loc;
19283 *checks = get_deferred_access_checks ();
19284 pop_deferring_access_checks ();
19285 if (arg == error_mark_node)
19286 return 1;
19287 else if (arg)
19289 TREE_VEC_ELT (targs, i) = arg;
19290 /* The position of the first default template argument,
19291 is also the number of non-defaulted arguments in TARGS.
19292 Record that. */
19293 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
19294 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, i);
19298 if (saw_undeduced++ == 1)
19299 goto again;
19302 if (CHECKING_P && !NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
19303 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, TREE_VEC_LENGTH (targs));
19305 return unify_success (explain_p);
19308 /* Subroutine of type_unification_real. Args are like the variables
19309 at the call site. ARG is an overloaded function (or template-id);
19310 we try deducing template args from each of the overloads, and if
19311 only one succeeds, we go with that. Modifies TARGS and returns
19312 true on success. */
19314 static bool
19315 resolve_overloaded_unification (tree tparms,
19316 tree targs,
19317 tree parm,
19318 tree arg,
19319 unification_kind_t strict,
19320 int sub_strict,
19321 bool explain_p)
19323 tree tempargs = copy_node (targs);
19324 int good = 0;
19325 tree goodfn = NULL_TREE;
19326 bool addr_p;
19328 if (TREE_CODE (arg) == ADDR_EXPR)
19330 arg = TREE_OPERAND (arg, 0);
19331 addr_p = true;
19333 else
19334 addr_p = false;
19336 if (TREE_CODE (arg) == COMPONENT_REF)
19337 /* Handle `&x' where `x' is some static or non-static member
19338 function name. */
19339 arg = TREE_OPERAND (arg, 1);
19341 if (TREE_CODE (arg) == OFFSET_REF)
19342 arg = TREE_OPERAND (arg, 1);
19344 /* Strip baselink information. */
19345 if (BASELINK_P (arg))
19346 arg = BASELINK_FUNCTIONS (arg);
19348 if (TREE_CODE (arg) == TEMPLATE_ID_EXPR)
19350 /* If we got some explicit template args, we need to plug them into
19351 the affected templates before we try to unify, in case the
19352 explicit args will completely resolve the templates in question. */
19354 int ok = 0;
19355 tree expl_subargs = TREE_OPERAND (arg, 1);
19356 arg = TREE_OPERAND (arg, 0);
19358 for (; arg; arg = OVL_NEXT (arg))
19360 tree fn = OVL_CURRENT (arg);
19361 tree subargs, elem;
19363 if (TREE_CODE (fn) != TEMPLATE_DECL)
19364 continue;
19366 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
19367 expl_subargs, NULL_TREE, tf_none,
19368 /*require_all_args=*/true,
19369 /*use_default_args=*/true);
19370 if (subargs != error_mark_node
19371 && !any_dependent_template_arguments_p (subargs))
19373 elem = TREE_TYPE (instantiate_template (fn, subargs, tf_none));
19374 if (try_one_overload (tparms, targs, tempargs, parm,
19375 elem, strict, sub_strict, addr_p, explain_p)
19376 && (!goodfn || !same_type_p (goodfn, elem)))
19378 goodfn = elem;
19379 ++good;
19382 else if (subargs)
19383 ++ok;
19385 /* If no templates (or more than one) are fully resolved by the
19386 explicit arguments, this template-id is a non-deduced context; it
19387 could still be OK if we deduce all template arguments for the
19388 enclosing call through other arguments. */
19389 if (good != 1)
19390 good = ok;
19392 else if (TREE_CODE (arg) != OVERLOAD
19393 && TREE_CODE (arg) != FUNCTION_DECL)
19394 /* If ARG is, for example, "(0, &f)" then its type will be unknown
19395 -- but the deduction does not succeed because the expression is
19396 not just the function on its own. */
19397 return false;
19398 else
19399 for (; arg; arg = OVL_NEXT (arg))
19400 if (try_one_overload (tparms, targs, tempargs, parm,
19401 TREE_TYPE (OVL_CURRENT (arg)),
19402 strict, sub_strict, addr_p, explain_p)
19403 && (!goodfn || !decls_match (goodfn, OVL_CURRENT (arg))))
19405 goodfn = OVL_CURRENT (arg);
19406 ++good;
19409 /* [temp.deduct.type] A template-argument can be deduced from a pointer
19410 to function or pointer to member function argument if the set of
19411 overloaded functions does not contain function templates and at most
19412 one of a set of overloaded functions provides a unique match.
19414 So if we found multiple possibilities, we return success but don't
19415 deduce anything. */
19417 if (good == 1)
19419 int i = TREE_VEC_LENGTH (targs);
19420 for (; i--; )
19421 if (TREE_VEC_ELT (tempargs, i))
19423 tree old = TREE_VEC_ELT (targs, i);
19424 tree new_ = TREE_VEC_ELT (tempargs, i);
19425 if (new_ && old && ARGUMENT_PACK_P (old)
19426 && ARGUMENT_PACK_EXPLICIT_ARGS (old))
19427 /* Don't forget explicit template arguments in a pack. */
19428 ARGUMENT_PACK_EXPLICIT_ARGS (new_)
19429 = ARGUMENT_PACK_EXPLICIT_ARGS (old);
19430 TREE_VEC_ELT (targs, i) = new_;
19433 if (good)
19434 return true;
19436 return false;
19439 /* Core DR 115: In contexts where deduction is done and fails, or in
19440 contexts where deduction is not done, if a template argument list is
19441 specified and it, along with any default template arguments, identifies
19442 a single function template specialization, then the template-id is an
19443 lvalue for the function template specialization. */
19445 tree
19446 resolve_nondeduced_context (tree orig_expr, tsubst_flags_t complain)
19448 tree expr, offset, baselink;
19449 bool addr;
19451 if (!type_unknown_p (orig_expr))
19452 return orig_expr;
19454 expr = orig_expr;
19455 addr = false;
19456 offset = NULL_TREE;
19457 baselink = NULL_TREE;
19459 if (TREE_CODE (expr) == ADDR_EXPR)
19461 expr = TREE_OPERAND (expr, 0);
19462 addr = true;
19464 if (TREE_CODE (expr) == OFFSET_REF)
19466 offset = expr;
19467 expr = TREE_OPERAND (expr, 1);
19469 if (BASELINK_P (expr))
19471 baselink = expr;
19472 expr = BASELINK_FUNCTIONS (expr);
19475 if (TREE_CODE (expr) == TEMPLATE_ID_EXPR)
19477 int good = 0;
19478 tree goodfn = NULL_TREE;
19480 /* If we got some explicit template args, we need to plug them into
19481 the affected templates before we try to unify, in case the
19482 explicit args will completely resolve the templates in question. */
19484 tree expl_subargs = TREE_OPERAND (expr, 1);
19485 tree arg = TREE_OPERAND (expr, 0);
19486 tree badfn = NULL_TREE;
19487 tree badargs = NULL_TREE;
19489 for (; arg; arg = OVL_NEXT (arg))
19491 tree fn = OVL_CURRENT (arg);
19492 tree subargs, elem;
19494 if (TREE_CODE (fn) != TEMPLATE_DECL)
19495 continue;
19497 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
19498 expl_subargs, NULL_TREE, tf_none,
19499 /*require_all_args=*/true,
19500 /*use_default_args=*/true);
19501 if (subargs != error_mark_node
19502 && !any_dependent_template_arguments_p (subargs))
19504 elem = instantiate_template (fn, subargs, tf_none);
19505 if (elem == error_mark_node)
19507 badfn = fn;
19508 badargs = subargs;
19510 else if (elem && (!goodfn || !decls_match (goodfn, elem)))
19512 goodfn = elem;
19513 ++good;
19517 if (good == 1)
19519 mark_used (goodfn);
19520 expr = goodfn;
19521 if (baselink)
19522 expr = build_baselink (BASELINK_BINFO (baselink),
19523 BASELINK_ACCESS_BINFO (baselink),
19524 expr, BASELINK_OPTYPE (baselink));
19525 if (offset)
19527 tree base
19528 = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (offset, 0)));
19529 expr = build_offset_ref (base, expr, addr, complain);
19531 if (addr)
19532 expr = cp_build_addr_expr (expr, complain);
19533 return expr;
19535 else if (good == 0 && badargs && (complain & tf_error))
19536 /* There were no good options and at least one bad one, so let the
19537 user know what the problem is. */
19538 instantiate_template (badfn, badargs, complain);
19540 return orig_expr;
19543 /* Subroutine of resolve_overloaded_unification; does deduction for a single
19544 overload. Fills TARGS with any deduced arguments, or error_mark_node if
19545 different overloads deduce different arguments for a given parm.
19546 ADDR_P is true if the expression for which deduction is being
19547 performed was of the form "& fn" rather than simply "fn".
19549 Returns 1 on success. */
19551 static int
19552 try_one_overload (tree tparms,
19553 tree orig_targs,
19554 tree targs,
19555 tree parm,
19556 tree arg,
19557 unification_kind_t strict,
19558 int sub_strict,
19559 bool addr_p,
19560 bool explain_p)
19562 int nargs;
19563 tree tempargs;
19564 int i;
19566 if (arg == error_mark_node)
19567 return 0;
19569 /* [temp.deduct.type] A template-argument can be deduced from a pointer
19570 to function or pointer to member function argument if the set of
19571 overloaded functions does not contain function templates and at most
19572 one of a set of overloaded functions provides a unique match.
19574 So if this is a template, just return success. */
19576 if (uses_template_parms (arg))
19577 return 1;
19579 if (TREE_CODE (arg) == METHOD_TYPE)
19580 arg = build_ptrmemfunc_type (build_pointer_type (arg));
19581 else if (addr_p)
19582 arg = build_pointer_type (arg);
19584 sub_strict |= maybe_adjust_types_for_deduction (strict, &parm, &arg, NULL);
19586 /* We don't copy orig_targs for this because if we have already deduced
19587 some template args from previous args, unify would complain when we
19588 try to deduce a template parameter for the same argument, even though
19589 there isn't really a conflict. */
19590 nargs = TREE_VEC_LENGTH (targs);
19591 tempargs = make_tree_vec (nargs);
19593 if (unify (tparms, tempargs, parm, arg, sub_strict, explain_p))
19594 return 0;
19596 /* First make sure we didn't deduce anything that conflicts with
19597 explicitly specified args. */
19598 for (i = nargs; i--; )
19600 tree elt = TREE_VEC_ELT (tempargs, i);
19601 tree oldelt = TREE_VEC_ELT (orig_targs, i);
19603 if (!elt)
19604 /*NOP*/;
19605 else if (uses_template_parms (elt))
19606 /* Since we're unifying against ourselves, we will fill in
19607 template args used in the function parm list with our own
19608 template parms. Discard them. */
19609 TREE_VEC_ELT (tempargs, i) = NULL_TREE;
19610 else if (oldelt && ARGUMENT_PACK_P (oldelt))
19612 /* Check that the argument at each index of the deduced argument pack
19613 is equivalent to the corresponding explicitly specified argument.
19614 We may have deduced more arguments than were explicitly specified,
19615 and that's OK. */
19616 gcc_assert (ARGUMENT_PACK_INCOMPLETE_P (oldelt));
19617 gcc_assert (ARGUMENT_PACK_ARGS (oldelt)
19618 == ARGUMENT_PACK_EXPLICIT_ARGS (oldelt));
19620 tree explicit_pack = ARGUMENT_PACK_ARGS (oldelt);
19621 tree deduced_pack = ARGUMENT_PACK_ARGS (elt);
19623 if (TREE_VEC_LENGTH (deduced_pack)
19624 < TREE_VEC_LENGTH (explicit_pack))
19625 return 0;
19627 for (int j = 0; j < TREE_VEC_LENGTH (explicit_pack); j++)
19628 if (!template_args_equal (TREE_VEC_ELT (explicit_pack, j),
19629 TREE_VEC_ELT (deduced_pack, j)))
19630 return 0;
19632 else if (oldelt && !template_args_equal (oldelt, elt))
19633 return 0;
19636 for (i = nargs; i--; )
19638 tree elt = TREE_VEC_ELT (tempargs, i);
19640 if (elt)
19641 TREE_VEC_ELT (targs, i) = elt;
19644 return 1;
19647 /* PARM is a template class (perhaps with unbound template
19648 parameters). ARG is a fully instantiated type. If ARG can be
19649 bound to PARM, return ARG, otherwise return NULL_TREE. TPARMS and
19650 TARGS are as for unify. */
19652 static tree
19653 try_class_unification (tree tparms, tree targs, tree parm, tree arg,
19654 bool explain_p)
19656 tree copy_of_targs;
19658 if (!CLASSTYPE_SPECIALIZATION_OF_PRIMARY_TEMPLATE_P (arg))
19659 return NULL_TREE;
19660 else if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
19661 /* Matches anything. */;
19662 else if (most_general_template (CLASSTYPE_TI_TEMPLATE (arg))
19663 != most_general_template (CLASSTYPE_TI_TEMPLATE (parm)))
19664 return NULL_TREE;
19666 /* We need to make a new template argument vector for the call to
19667 unify. If we used TARGS, we'd clutter it up with the result of
19668 the attempted unification, even if this class didn't work out.
19669 We also don't want to commit ourselves to all the unifications
19670 we've already done, since unification is supposed to be done on
19671 an argument-by-argument basis. In other words, consider the
19672 following pathological case:
19674 template <int I, int J, int K>
19675 struct S {};
19677 template <int I, int J>
19678 struct S<I, J, 2> : public S<I, I, I>, S<J, J, J> {};
19680 template <int I, int J, int K>
19681 void f(S<I, J, K>, S<I, I, I>);
19683 void g() {
19684 S<0, 0, 0> s0;
19685 S<0, 1, 2> s2;
19687 f(s0, s2);
19690 Now, by the time we consider the unification involving `s2', we
19691 already know that we must have `f<0, 0, 0>'. But, even though
19692 `S<0, 1, 2>' is derived from `S<0, 0, 0>', the code is invalid
19693 because there are two ways to unify base classes of S<0, 1, 2>
19694 with S<I, I, I>. If we kept the already deduced knowledge, we
19695 would reject the possibility I=1. */
19696 copy_of_targs = make_tree_vec (TREE_VEC_LENGTH (targs));
19698 if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
19700 if (unify_bound_ttp_args (tparms, copy_of_targs, parm, arg, explain_p))
19701 return NULL_TREE;
19702 return arg;
19705 /* If unification failed, we're done. */
19706 if (unify (tparms, copy_of_targs, CLASSTYPE_TI_ARGS (parm),
19707 CLASSTYPE_TI_ARGS (arg), UNIFY_ALLOW_NONE, explain_p))
19708 return NULL_TREE;
19710 return arg;
19713 /* Given a template type PARM and a class type ARG, find the unique
19714 base type in ARG that is an instance of PARM. We do not examine
19715 ARG itself; only its base-classes. If there is not exactly one
19716 appropriate base class, return NULL_TREE. PARM may be the type of
19717 a partial specialization, as well as a plain template type. Used
19718 by unify. */
19720 static enum template_base_result
19721 get_template_base (tree tparms, tree targs, tree parm, tree arg,
19722 bool explain_p, tree *result)
19724 tree rval = NULL_TREE;
19725 tree binfo;
19727 gcc_assert (RECORD_OR_UNION_CODE_P (TREE_CODE (arg)));
19729 binfo = TYPE_BINFO (complete_type (arg));
19730 if (!binfo)
19732 /* The type could not be completed. */
19733 *result = NULL_TREE;
19734 return tbr_incomplete_type;
19737 /* Walk in inheritance graph order. The search order is not
19738 important, and this avoids multiple walks of virtual bases. */
19739 for (binfo = TREE_CHAIN (binfo); binfo; binfo = TREE_CHAIN (binfo))
19741 tree r = try_class_unification (tparms, targs, parm,
19742 BINFO_TYPE (binfo), explain_p);
19744 if (r)
19746 /* If there is more than one satisfactory baseclass, then:
19748 [temp.deduct.call]
19750 If they yield more than one possible deduced A, the type
19751 deduction fails.
19753 applies. */
19754 if (rval && !same_type_p (r, rval))
19756 *result = NULL_TREE;
19757 return tbr_ambiguous_baseclass;
19760 rval = r;
19764 *result = rval;
19765 return tbr_success;
19768 /* Returns the level of DECL, which declares a template parameter. */
19770 static int
19771 template_decl_level (tree decl)
19773 switch (TREE_CODE (decl))
19775 case TYPE_DECL:
19776 case TEMPLATE_DECL:
19777 return TEMPLATE_TYPE_LEVEL (TREE_TYPE (decl));
19779 case PARM_DECL:
19780 return TEMPLATE_PARM_LEVEL (DECL_INITIAL (decl));
19782 default:
19783 gcc_unreachable ();
19785 return 0;
19788 /* Decide whether ARG can be unified with PARM, considering only the
19789 cv-qualifiers of each type, given STRICT as documented for unify.
19790 Returns nonzero iff the unification is OK on that basis. */
19792 static int
19793 check_cv_quals_for_unify (int strict, tree arg, tree parm)
19795 int arg_quals = cp_type_quals (arg);
19796 int parm_quals = cp_type_quals (parm);
19798 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
19799 && !(strict & UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
19801 /* Although a CVR qualifier is ignored when being applied to a
19802 substituted template parameter ([8.3.2]/1 for example), that
19803 does not allow us to unify "const T" with "int&" because both
19804 types are not of the form "cv-list T" [14.8.2.5 temp.deduct.type].
19805 It is ok when we're allowing additional CV qualifiers
19806 at the outer level [14.8.2.1]/3,1st bullet. */
19807 if ((TREE_CODE (arg) == REFERENCE_TYPE
19808 || TREE_CODE (arg) == FUNCTION_TYPE
19809 || TREE_CODE (arg) == METHOD_TYPE)
19810 && (parm_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE)))
19811 return 0;
19813 if ((!POINTER_TYPE_P (arg) && TREE_CODE (arg) != TEMPLATE_TYPE_PARM)
19814 && (parm_quals & TYPE_QUAL_RESTRICT))
19815 return 0;
19818 if (!(strict & (UNIFY_ALLOW_MORE_CV_QUAL | UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
19819 && (arg_quals & parm_quals) != parm_quals)
19820 return 0;
19822 if (!(strict & (UNIFY_ALLOW_LESS_CV_QUAL | UNIFY_ALLOW_OUTER_LESS_CV_QUAL))
19823 && (parm_quals & arg_quals) != arg_quals)
19824 return 0;
19826 return 1;
19829 /* Determines the LEVEL and INDEX for the template parameter PARM. */
19830 void
19831 template_parm_level_and_index (tree parm, int* level, int* index)
19833 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
19834 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
19835 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
19837 *index = TEMPLATE_TYPE_IDX (parm);
19838 *level = TEMPLATE_TYPE_LEVEL (parm);
19840 else
19842 *index = TEMPLATE_PARM_IDX (parm);
19843 *level = TEMPLATE_PARM_LEVEL (parm);
19847 #define RECUR_AND_CHECK_FAILURE(TP, TA, P, A, S, EP) \
19848 do { \
19849 if (unify (TP, TA, P, A, S, EP)) \
19850 return 1; \
19851 } while (0)
19853 /* Unifies the remaining arguments in PACKED_ARGS with the pack
19854 expansion at the end of PACKED_PARMS. Returns 0 if the type
19855 deduction succeeds, 1 otherwise. STRICT is the same as in
19856 fn_type_unification. CALL_ARGS_P is true iff PACKED_ARGS is actually a
19857 function call argument list. We'll need to adjust the arguments to make them
19858 types. SUBR tells us if this is from a recursive call to
19859 type_unification_real, or for comparing two template argument
19860 lists. */
19862 static int
19863 unify_pack_expansion (tree tparms, tree targs, tree packed_parms,
19864 tree packed_args, unification_kind_t strict,
19865 bool subr, bool explain_p)
19867 tree parm
19868 = TREE_VEC_ELT (packed_parms, TREE_VEC_LENGTH (packed_parms) - 1);
19869 tree pattern = PACK_EXPANSION_PATTERN (parm);
19870 tree pack, packs = NULL_TREE;
19871 int i, start = TREE_VEC_LENGTH (packed_parms) - 1;
19873 packed_args = expand_template_argument_pack (packed_args);
19875 int len = TREE_VEC_LENGTH (packed_args);
19877 /* Determine the parameter packs we will be deducing from the
19878 pattern, and record their current deductions. */
19879 for (pack = PACK_EXPANSION_PARAMETER_PACKS (parm);
19880 pack; pack = TREE_CHAIN (pack))
19882 tree parm_pack = TREE_VALUE (pack);
19883 int idx, level;
19885 /* Determine the index and level of this parameter pack. */
19886 template_parm_level_and_index (parm_pack, &level, &idx);
19888 /* Keep track of the parameter packs and their corresponding
19889 argument packs. */
19890 packs = tree_cons (parm_pack, TMPL_ARG (targs, level, idx), packs);
19891 TREE_TYPE (packs) = make_tree_vec (len - start);
19894 /* Loop through all of the arguments that have not yet been
19895 unified and unify each with the pattern. */
19896 for (i = start; i < len; i++)
19898 tree parm;
19899 bool any_explicit = false;
19900 tree arg = TREE_VEC_ELT (packed_args, i);
19902 /* For each parameter pack, set its TMPL_ARG to either NULL_TREE
19903 or the element of its argument pack at the current index if
19904 this argument was explicitly specified. */
19905 for (pack = packs; pack; pack = TREE_CHAIN (pack))
19907 int idx, level;
19908 tree arg, pargs;
19909 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
19911 arg = NULL_TREE;
19912 if (TREE_VALUE (pack)
19913 && (pargs = ARGUMENT_PACK_EXPLICIT_ARGS (TREE_VALUE (pack)))
19914 && (i - start < TREE_VEC_LENGTH (pargs)))
19916 any_explicit = true;
19917 arg = TREE_VEC_ELT (pargs, i - start);
19919 TMPL_ARG (targs, level, idx) = arg;
19922 /* If we had explicit template arguments, substitute them into the
19923 pattern before deduction. */
19924 if (any_explicit)
19926 /* Some arguments might still be unspecified or dependent. */
19927 bool dependent;
19928 ++processing_template_decl;
19929 dependent = any_dependent_template_arguments_p (targs);
19930 if (!dependent)
19931 --processing_template_decl;
19932 parm = tsubst (pattern, targs,
19933 explain_p ? tf_warning_or_error : tf_none,
19934 NULL_TREE);
19935 if (dependent)
19936 --processing_template_decl;
19937 if (parm == error_mark_node)
19938 return 1;
19940 else
19941 parm = pattern;
19943 /* Unify the pattern with the current argument. */
19944 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
19945 explain_p))
19946 return 1;
19948 /* For each parameter pack, collect the deduced value. */
19949 for (pack = packs; pack; pack = TREE_CHAIN (pack))
19951 int idx, level;
19952 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
19954 TREE_VEC_ELT (TREE_TYPE (pack), i - start) =
19955 TMPL_ARG (targs, level, idx);
19959 /* Verify that the results of unification with the parameter packs
19960 produce results consistent with what we've seen before, and make
19961 the deduced argument packs available. */
19962 for (pack = packs; pack; pack = TREE_CHAIN (pack))
19964 tree old_pack = TREE_VALUE (pack);
19965 tree new_args = TREE_TYPE (pack);
19966 int i, len = TREE_VEC_LENGTH (new_args);
19967 int idx, level;
19968 bool nondeduced_p = false;
19970 /* By default keep the original deduced argument pack.
19971 If necessary, more specific code is going to update the
19972 resulting deduced argument later down in this function. */
19973 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
19974 TMPL_ARG (targs, level, idx) = old_pack;
19976 /* If NEW_ARGS contains any NULL_TREE entries, we didn't
19977 actually deduce anything. */
19978 for (i = 0; i < len && !nondeduced_p; ++i)
19979 if (TREE_VEC_ELT (new_args, i) == NULL_TREE)
19980 nondeduced_p = true;
19981 if (nondeduced_p)
19982 continue;
19984 if (old_pack && ARGUMENT_PACK_INCOMPLETE_P (old_pack))
19986 /* If we had fewer function args than explicit template args,
19987 just use the explicits. */
19988 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
19989 int explicit_len = TREE_VEC_LENGTH (explicit_args);
19990 if (len < explicit_len)
19991 new_args = explicit_args;
19994 if (!old_pack)
19996 tree result;
19997 /* Build the deduced *_ARGUMENT_PACK. */
19998 if (TREE_CODE (TREE_PURPOSE (pack)) == TEMPLATE_PARM_INDEX)
20000 result = make_node (NONTYPE_ARGUMENT_PACK);
20001 TREE_TYPE (result) =
20002 TREE_TYPE (TEMPLATE_PARM_DECL (TREE_PURPOSE (pack)));
20003 TREE_CONSTANT (result) = 1;
20005 else
20006 result = cxx_make_type (TYPE_ARGUMENT_PACK);
20008 SET_ARGUMENT_PACK_ARGS (result, new_args);
20010 /* Note the deduced argument packs for this parameter
20011 pack. */
20012 TMPL_ARG (targs, level, idx) = result;
20014 else if (ARGUMENT_PACK_INCOMPLETE_P (old_pack)
20015 && (ARGUMENT_PACK_ARGS (old_pack)
20016 == ARGUMENT_PACK_EXPLICIT_ARGS (old_pack)))
20018 /* We only had the explicitly-provided arguments before, but
20019 now we have a complete set of arguments. */
20020 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
20022 SET_ARGUMENT_PACK_ARGS (old_pack, new_args);
20023 ARGUMENT_PACK_INCOMPLETE_P (old_pack) = 1;
20024 ARGUMENT_PACK_EXPLICIT_ARGS (old_pack) = explicit_args;
20026 else
20028 tree bad_old_arg = NULL_TREE, bad_new_arg = NULL_TREE;
20029 tree old_args = ARGUMENT_PACK_ARGS (old_pack);
20031 if (!comp_template_args (old_args, new_args,
20032 &bad_old_arg, &bad_new_arg))
20033 /* Inconsistent unification of this parameter pack. */
20034 return unify_parameter_pack_inconsistent (explain_p,
20035 bad_old_arg,
20036 bad_new_arg);
20040 return unify_success (explain_p);
20043 /* Handle unification of the domain of an array. PARM_DOM and ARG_DOM are
20044 INTEGER_TYPEs representing the TYPE_DOMAIN of ARRAY_TYPEs. The other
20045 parameters and return value are as for unify. */
20047 static int
20048 unify_array_domain (tree tparms, tree targs,
20049 tree parm_dom, tree arg_dom,
20050 bool explain_p)
20052 tree parm_max;
20053 tree arg_max;
20054 bool parm_cst;
20055 bool arg_cst;
20057 /* Our representation of array types uses "N - 1" as the
20058 TYPE_MAX_VALUE for an array with "N" elements, if "N" is
20059 not an integer constant. We cannot unify arbitrarily
20060 complex expressions, so we eliminate the MINUS_EXPRs
20061 here. */
20062 parm_max = TYPE_MAX_VALUE (parm_dom);
20063 parm_cst = TREE_CODE (parm_max) == INTEGER_CST;
20064 if (!parm_cst)
20066 gcc_assert (TREE_CODE (parm_max) == MINUS_EXPR);
20067 parm_max = TREE_OPERAND (parm_max, 0);
20069 arg_max = TYPE_MAX_VALUE (arg_dom);
20070 arg_cst = TREE_CODE (arg_max) == INTEGER_CST;
20071 if (!arg_cst)
20073 /* The ARG_MAX may not be a simple MINUS_EXPR, if we are
20074 trying to unify the type of a variable with the type
20075 of a template parameter. For example:
20077 template <unsigned int N>
20078 void f (char (&) [N]);
20079 int g();
20080 void h(int i) {
20081 char a[g(i)];
20082 f(a);
20085 Here, the type of the ARG will be "int [g(i)]", and
20086 may be a SAVE_EXPR, etc. */
20087 if (TREE_CODE (arg_max) != MINUS_EXPR)
20088 return unify_vla_arg (explain_p, arg_dom);
20089 arg_max = TREE_OPERAND (arg_max, 0);
20092 /* If only one of the bounds used a MINUS_EXPR, compensate
20093 by adding one to the other bound. */
20094 if (parm_cst && !arg_cst)
20095 parm_max = fold_build2_loc (input_location, PLUS_EXPR,
20096 integer_type_node,
20097 parm_max,
20098 integer_one_node);
20099 else if (arg_cst && !parm_cst)
20100 arg_max = fold_build2_loc (input_location, PLUS_EXPR,
20101 integer_type_node,
20102 arg_max,
20103 integer_one_node);
20105 return unify (tparms, targs, parm_max, arg_max,
20106 UNIFY_ALLOW_INTEGER, explain_p);
20109 /* Returns whether T, a P or A in unify, is a type, template or expression. */
20111 enum pa_kind_t { pa_type, pa_tmpl, pa_expr };
20113 static pa_kind_t
20114 pa_kind (tree t)
20116 if (PACK_EXPANSION_P (t))
20117 t = PACK_EXPANSION_PATTERN (t);
20118 if (TREE_CODE (t) == TEMPLATE_TEMPLATE_PARM
20119 || TREE_CODE (t) == UNBOUND_CLASS_TEMPLATE
20120 || DECL_TYPE_TEMPLATE_P (t))
20121 return pa_tmpl;
20122 else if (TYPE_P (t))
20123 return pa_type;
20124 else
20125 return pa_expr;
20128 /* Deduce the value of template parameters. TPARMS is the (innermost)
20129 set of template parameters to a template. TARGS is the bindings
20130 for those template parameters, as determined thus far; TARGS may
20131 include template arguments for outer levels of template parameters
20132 as well. PARM is a parameter to a template function, or a
20133 subcomponent of that parameter; ARG is the corresponding argument.
20134 This function attempts to match PARM with ARG in a manner
20135 consistent with the existing assignments in TARGS. If more values
20136 are deduced, then TARGS is updated.
20138 Returns 0 if the type deduction succeeds, 1 otherwise. The
20139 parameter STRICT is a bitwise or of the following flags:
20141 UNIFY_ALLOW_NONE:
20142 Require an exact match between PARM and ARG.
20143 UNIFY_ALLOW_MORE_CV_QUAL:
20144 Allow the deduced ARG to be more cv-qualified (by qualification
20145 conversion) than ARG.
20146 UNIFY_ALLOW_LESS_CV_QUAL:
20147 Allow the deduced ARG to be less cv-qualified than ARG.
20148 UNIFY_ALLOW_DERIVED:
20149 Allow the deduced ARG to be a template base class of ARG,
20150 or a pointer to a template base class of the type pointed to by
20151 ARG.
20152 UNIFY_ALLOW_INTEGER:
20153 Allow any integral type to be deduced. See the TEMPLATE_PARM_INDEX
20154 case for more information.
20155 UNIFY_ALLOW_OUTER_LEVEL:
20156 This is the outermost level of a deduction. Used to determine validity
20157 of qualification conversions. A valid qualification conversion must
20158 have const qualified pointers leading up to the inner type which
20159 requires additional CV quals, except at the outer level, where const
20160 is not required [conv.qual]. It would be normal to set this flag in
20161 addition to setting UNIFY_ALLOW_MORE_CV_QUAL.
20162 UNIFY_ALLOW_OUTER_MORE_CV_QUAL:
20163 This is the outermost level of a deduction, and PARM can be more CV
20164 qualified at this point.
20165 UNIFY_ALLOW_OUTER_LESS_CV_QUAL:
20166 This is the outermost level of a deduction, and PARM can be less CV
20167 qualified at this point. */
20169 static int
20170 unify (tree tparms, tree targs, tree parm, tree arg, int strict,
20171 bool explain_p)
20173 int idx;
20174 tree targ;
20175 tree tparm;
20176 int strict_in = strict;
20177 tsubst_flags_t complain = (explain_p
20178 ? tf_warning_or_error
20179 : tf_none);
20181 /* I don't think this will do the right thing with respect to types.
20182 But the only case I've seen it in so far has been array bounds, where
20183 signedness is the only information lost, and I think that will be
20184 okay. */
20185 while (CONVERT_EXPR_P (parm))
20186 parm = TREE_OPERAND (parm, 0);
20188 if (arg == error_mark_node)
20189 return unify_invalid (explain_p);
20190 if (arg == unknown_type_node
20191 || arg == init_list_type_node)
20192 /* We can't deduce anything from this, but we might get all the
20193 template args from other function args. */
20194 return unify_success (explain_p);
20196 if (parm == any_targ_node || arg == any_targ_node)
20197 return unify_success (explain_p);
20199 /* If PARM uses template parameters, then we can't bail out here,
20200 even if ARG == PARM, since we won't record unifications for the
20201 template parameters. We might need them if we're trying to
20202 figure out which of two things is more specialized. */
20203 if (arg == parm && !uses_template_parms (parm))
20204 return unify_success (explain_p);
20206 /* Handle init lists early, so the rest of the function can assume
20207 we're dealing with a type. */
20208 if (BRACE_ENCLOSED_INITIALIZER_P (arg))
20210 tree elt, elttype;
20211 unsigned i;
20212 tree orig_parm = parm;
20214 /* Replace T with std::initializer_list<T> for deduction. */
20215 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
20216 && flag_deduce_init_list)
20217 parm = listify (parm);
20219 if (!is_std_init_list (parm)
20220 && TREE_CODE (parm) != ARRAY_TYPE)
20221 /* We can only deduce from an initializer list argument if the
20222 parameter is std::initializer_list or an array; otherwise this
20223 is a non-deduced context. */
20224 return unify_success (explain_p);
20226 if (TREE_CODE (parm) == ARRAY_TYPE)
20227 elttype = TREE_TYPE (parm);
20228 else
20230 elttype = TREE_VEC_ELT (CLASSTYPE_TI_ARGS (parm), 0);
20231 /* Deduction is defined in terms of a single type, so just punt
20232 on the (bizarre) std::initializer_list<T...>. */
20233 if (PACK_EXPANSION_P (elttype))
20234 return unify_success (explain_p);
20237 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (arg), i, elt)
20239 int elt_strict = strict;
20241 if (elt == error_mark_node)
20242 return unify_invalid (explain_p);
20244 if (!BRACE_ENCLOSED_INITIALIZER_P (elt))
20246 tree type = TREE_TYPE (elt);
20247 if (type == error_mark_node)
20248 return unify_invalid (explain_p);
20249 /* It should only be possible to get here for a call. */
20250 gcc_assert (elt_strict & UNIFY_ALLOW_OUTER_LEVEL);
20251 elt_strict |= maybe_adjust_types_for_deduction
20252 (DEDUCE_CALL, &elttype, &type, elt);
20253 elt = type;
20256 RECUR_AND_CHECK_FAILURE (tparms, targs, elttype, elt, elt_strict,
20257 explain_p);
20260 if (TREE_CODE (parm) == ARRAY_TYPE
20261 && deducible_array_bound (TYPE_DOMAIN (parm)))
20263 /* Also deduce from the length of the initializer list. */
20264 tree max = size_int (CONSTRUCTOR_NELTS (arg));
20265 tree idx = compute_array_index_type (NULL_TREE, max, tf_none);
20266 if (idx == error_mark_node)
20267 return unify_invalid (explain_p);
20268 return unify_array_domain (tparms, targs, TYPE_DOMAIN (parm),
20269 idx, explain_p);
20272 /* If the std::initializer_list<T> deduction worked, replace the
20273 deduced A with std::initializer_list<A>. */
20274 if (orig_parm != parm)
20276 idx = TEMPLATE_TYPE_IDX (orig_parm);
20277 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
20278 targ = listify (targ);
20279 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = targ;
20281 return unify_success (explain_p);
20284 /* If parm and arg aren't the same kind of thing (template, type, or
20285 expression), fail early. */
20286 if (pa_kind (parm) != pa_kind (arg))
20287 return unify_invalid (explain_p);
20289 /* Immediately reject some pairs that won't unify because of
20290 cv-qualification mismatches. */
20291 if (TREE_CODE (arg) == TREE_CODE (parm)
20292 && TYPE_P (arg)
20293 /* It is the elements of the array which hold the cv quals of an array
20294 type, and the elements might be template type parms. We'll check
20295 when we recurse. */
20296 && TREE_CODE (arg) != ARRAY_TYPE
20297 /* We check the cv-qualifiers when unifying with template type
20298 parameters below. We want to allow ARG `const T' to unify with
20299 PARM `T' for example, when computing which of two templates
20300 is more specialized, for example. */
20301 && TREE_CODE (arg) != TEMPLATE_TYPE_PARM
20302 && !check_cv_quals_for_unify (strict_in, arg, parm))
20303 return unify_cv_qual_mismatch (explain_p, parm, arg);
20305 if (!(strict & UNIFY_ALLOW_OUTER_LEVEL)
20306 && TYPE_P (parm) && !CP_TYPE_CONST_P (parm))
20307 strict &= ~UNIFY_ALLOW_MORE_CV_QUAL;
20308 strict &= ~UNIFY_ALLOW_OUTER_LEVEL;
20309 strict &= ~UNIFY_ALLOW_DERIVED;
20310 strict &= ~UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
20311 strict &= ~UNIFY_ALLOW_OUTER_LESS_CV_QUAL;
20313 switch (TREE_CODE (parm))
20315 case TYPENAME_TYPE:
20316 case SCOPE_REF:
20317 case UNBOUND_CLASS_TEMPLATE:
20318 /* In a type which contains a nested-name-specifier, template
20319 argument values cannot be deduced for template parameters used
20320 within the nested-name-specifier. */
20321 return unify_success (explain_p);
20323 case TEMPLATE_TYPE_PARM:
20324 case TEMPLATE_TEMPLATE_PARM:
20325 case BOUND_TEMPLATE_TEMPLATE_PARM:
20326 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
20327 if (error_operand_p (tparm))
20328 return unify_invalid (explain_p);
20330 if (TEMPLATE_TYPE_LEVEL (parm)
20331 != template_decl_level (tparm))
20332 /* The PARM is not one we're trying to unify. Just check
20333 to see if it matches ARG. */
20335 if (TREE_CODE (arg) == TREE_CODE (parm)
20336 && (is_auto (parm) ? is_auto (arg)
20337 : same_type_p (parm, arg)))
20338 return unify_success (explain_p);
20339 else
20340 return unify_type_mismatch (explain_p, parm, arg);
20342 idx = TEMPLATE_TYPE_IDX (parm);
20343 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
20344 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, idx));
20345 if (error_operand_p (tparm))
20346 return unify_invalid (explain_p);
20348 /* Check for mixed types and values. */
20349 if ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
20350 && TREE_CODE (tparm) != TYPE_DECL)
20351 || (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
20352 && TREE_CODE (tparm) != TEMPLATE_DECL))
20353 gcc_unreachable ();
20355 if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
20357 if ((strict_in & UNIFY_ALLOW_DERIVED)
20358 && CLASS_TYPE_P (arg))
20360 /* First try to match ARG directly. */
20361 tree t = try_class_unification (tparms, targs, parm, arg,
20362 explain_p);
20363 if (!t)
20365 /* Otherwise, look for a suitable base of ARG, as below. */
20366 enum template_base_result r;
20367 r = get_template_base (tparms, targs, parm, arg,
20368 explain_p, &t);
20369 if (!t)
20370 return unify_no_common_base (explain_p, r, parm, arg);
20371 arg = t;
20374 /* ARG must be constructed from a template class or a template
20375 template parameter. */
20376 else if (TREE_CODE (arg) != BOUND_TEMPLATE_TEMPLATE_PARM
20377 && !CLASSTYPE_SPECIALIZATION_OF_PRIMARY_TEMPLATE_P (arg))
20378 return unify_template_deduction_failure (explain_p, parm, arg);
20380 /* Deduce arguments T, i from TT<T> or TT<i>. */
20381 if (unify_bound_ttp_args (tparms, targs, parm, arg, explain_p))
20382 return 1;
20384 arg = TYPE_TI_TEMPLATE (arg);
20386 /* Fall through to deduce template name. */
20389 if (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
20390 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
20392 /* Deduce template name TT from TT, TT<>, TT<T> and TT<i>. */
20394 /* Simple cases: Value already set, does match or doesn't. */
20395 if (targ != NULL_TREE && template_args_equal (targ, arg))
20396 return unify_success (explain_p);
20397 else if (targ)
20398 return unify_inconsistency (explain_p, parm, targ, arg);
20400 else
20402 /* If PARM is `const T' and ARG is only `int', we don't have
20403 a match unless we are allowing additional qualification.
20404 If ARG is `const int' and PARM is just `T' that's OK;
20405 that binds `const int' to `T'. */
20406 if (!check_cv_quals_for_unify (strict_in | UNIFY_ALLOW_LESS_CV_QUAL,
20407 arg, parm))
20408 return unify_cv_qual_mismatch (explain_p, parm, arg);
20410 /* Consider the case where ARG is `const volatile int' and
20411 PARM is `const T'. Then, T should be `volatile int'. */
20412 arg = cp_build_qualified_type_real
20413 (arg, cp_type_quals (arg) & ~cp_type_quals (parm), tf_none);
20414 if (arg == error_mark_node)
20415 return unify_invalid (explain_p);
20417 /* Simple cases: Value already set, does match or doesn't. */
20418 if (targ != NULL_TREE && same_type_p (targ, arg))
20419 return unify_success (explain_p);
20420 else if (targ)
20421 return unify_inconsistency (explain_p, parm, targ, arg);
20423 /* Make sure that ARG is not a variable-sized array. (Note
20424 that were talking about variable-sized arrays (like
20425 `int[n]'), rather than arrays of unknown size (like
20426 `int[]').) We'll get very confused by such a type since
20427 the bound of the array is not constant, and therefore
20428 not mangleable. Besides, such types are not allowed in
20429 ISO C++, so we can do as we please here. We do allow
20430 them for 'auto' deduction, since that isn't ABI-exposed. */
20431 if (!is_auto (parm) && variably_modified_type_p (arg, NULL_TREE))
20432 return unify_vla_arg (explain_p, arg);
20434 /* Strip typedefs as in convert_template_argument. */
20435 arg = canonicalize_type_argument (arg, tf_none);
20438 /* If ARG is a parameter pack or an expansion, we cannot unify
20439 against it unless PARM is also a parameter pack. */
20440 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
20441 && !template_parameter_pack_p (parm))
20442 return unify_parameter_pack_mismatch (explain_p, parm, arg);
20444 /* If the argument deduction results is a METHOD_TYPE,
20445 then there is a problem.
20446 METHOD_TYPE doesn't map to any real C++ type the result of
20447 the deduction can not be of that type. */
20448 if (TREE_CODE (arg) == METHOD_TYPE)
20449 return unify_method_type_error (explain_p, arg);
20451 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
20452 return unify_success (explain_p);
20454 case TEMPLATE_PARM_INDEX:
20455 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
20456 if (error_operand_p (tparm))
20457 return unify_invalid (explain_p);
20459 if (TEMPLATE_PARM_LEVEL (parm)
20460 != template_decl_level (tparm))
20462 /* The PARM is not one we're trying to unify. Just check
20463 to see if it matches ARG. */
20464 int result = !(TREE_CODE (arg) == TREE_CODE (parm)
20465 && cp_tree_equal (parm, arg));
20466 if (result)
20467 unify_expression_unequal (explain_p, parm, arg);
20468 return result;
20471 idx = TEMPLATE_PARM_IDX (parm);
20472 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
20474 if (targ)
20476 int x = !cp_tree_equal (targ, arg);
20477 if (x)
20478 unify_inconsistency (explain_p, parm, targ, arg);
20479 return x;
20482 if (cxx_dialect >= cxx1z
20483 /* We deduce from array bounds in try_array_deduction. */
20484 && !(strict & UNIFY_ALLOW_INTEGER)
20485 && uses_template_parms (TREE_TYPE (parm))
20486 && !type_uses_auto (TREE_TYPE (parm)))
20488 tree atype = TREE_TYPE (arg);
20489 RECUR_AND_CHECK_FAILURE (tparms, targs,
20490 TREE_TYPE (parm), atype,
20491 UNIFY_ALLOW_NONE, explain_p);
20494 /* [temp.deduct.type] If, in the declaration of a function template
20495 with a non-type template-parameter, the non-type
20496 template-parameter is used in an expression in the function
20497 parameter-list and, if the corresponding template-argument is
20498 deduced, the template-argument type shall match the type of the
20499 template-parameter exactly, except that a template-argument
20500 deduced from an array bound may be of any integral type.
20501 The non-type parameter might use already deduced type parameters. */
20502 tparm = tsubst (TREE_TYPE (parm), targs, 0, NULL_TREE);
20503 if (tree a = type_uses_auto (tparm))
20505 tparm = do_auto_deduction (tparm, arg, a, complain, adc_unify);
20506 if (tparm == error_mark_node)
20507 return 1;
20510 if (!TREE_TYPE (arg))
20511 /* Template-parameter dependent expression. Just accept it for now.
20512 It will later be processed in convert_template_argument. */
20514 else if (same_type_p (TREE_TYPE (arg), tparm))
20515 /* OK */;
20516 else if ((strict & UNIFY_ALLOW_INTEGER)
20517 && CP_INTEGRAL_TYPE_P (tparm))
20518 /* Convert the ARG to the type of PARM; the deduced non-type
20519 template argument must exactly match the types of the
20520 corresponding parameter. */
20521 arg = fold (build_nop (tparm, arg));
20522 else if (uses_template_parms (tparm))
20523 /* We haven't deduced the type of this parameter yet. Try again
20524 later. */
20525 return unify_success (explain_p);
20526 else
20527 return unify_type_mismatch (explain_p, tparm, TREE_TYPE (arg));
20529 /* If ARG is a parameter pack or an expansion, we cannot unify
20530 against it unless PARM is also a parameter pack. */
20531 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
20532 && !TEMPLATE_PARM_PARAMETER_PACK (parm))
20533 return unify_parameter_pack_mismatch (explain_p, parm, arg);
20536 bool removed_attr = false;
20537 arg = strip_typedefs_expr (arg, &removed_attr);
20539 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
20540 return unify_success (explain_p);
20542 case PTRMEM_CST:
20544 /* A pointer-to-member constant can be unified only with
20545 another constant. */
20546 if (TREE_CODE (arg) != PTRMEM_CST)
20547 return unify_ptrmem_cst_mismatch (explain_p, parm, arg);
20549 /* Just unify the class member. It would be useless (and possibly
20550 wrong, depending on the strict flags) to unify also
20551 PTRMEM_CST_CLASS, because we want to be sure that both parm and
20552 arg refer to the same variable, even if through different
20553 classes. For instance:
20555 struct A { int x; };
20556 struct B : A { };
20558 Unification of &A::x and &B::x must succeed. */
20559 return unify (tparms, targs, PTRMEM_CST_MEMBER (parm),
20560 PTRMEM_CST_MEMBER (arg), strict, explain_p);
20563 case POINTER_TYPE:
20565 if (!TYPE_PTR_P (arg))
20566 return unify_type_mismatch (explain_p, parm, arg);
20568 /* [temp.deduct.call]
20570 A can be another pointer or pointer to member type that can
20571 be converted to the deduced A via a qualification
20572 conversion (_conv.qual_).
20574 We pass down STRICT here rather than UNIFY_ALLOW_NONE.
20575 This will allow for additional cv-qualification of the
20576 pointed-to types if appropriate. */
20578 if (TREE_CODE (TREE_TYPE (arg)) == RECORD_TYPE)
20579 /* The derived-to-base conversion only persists through one
20580 level of pointers. */
20581 strict |= (strict_in & UNIFY_ALLOW_DERIVED);
20583 return unify (tparms, targs, TREE_TYPE (parm),
20584 TREE_TYPE (arg), strict, explain_p);
20587 case REFERENCE_TYPE:
20588 if (TREE_CODE (arg) != REFERENCE_TYPE)
20589 return unify_type_mismatch (explain_p, parm, arg);
20590 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
20591 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
20593 case ARRAY_TYPE:
20594 if (TREE_CODE (arg) != ARRAY_TYPE)
20595 return unify_type_mismatch (explain_p, parm, arg);
20596 if ((TYPE_DOMAIN (parm) == NULL_TREE)
20597 != (TYPE_DOMAIN (arg) == NULL_TREE))
20598 return unify_type_mismatch (explain_p, parm, arg);
20599 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
20600 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
20601 if (TYPE_DOMAIN (parm) != NULL_TREE)
20602 return unify_array_domain (tparms, targs, TYPE_DOMAIN (parm),
20603 TYPE_DOMAIN (arg), explain_p);
20604 return unify_success (explain_p);
20606 case REAL_TYPE:
20607 case COMPLEX_TYPE:
20608 case VECTOR_TYPE:
20609 case INTEGER_TYPE:
20610 case BOOLEAN_TYPE:
20611 case ENUMERAL_TYPE:
20612 case VOID_TYPE:
20613 case NULLPTR_TYPE:
20614 if (TREE_CODE (arg) != TREE_CODE (parm))
20615 return unify_type_mismatch (explain_p, parm, arg);
20617 /* We have already checked cv-qualification at the top of the
20618 function. */
20619 if (!same_type_ignoring_top_level_qualifiers_p (arg, parm))
20620 return unify_type_mismatch (explain_p, parm, arg);
20622 /* As far as unification is concerned, this wins. Later checks
20623 will invalidate it if necessary. */
20624 return unify_success (explain_p);
20626 /* Types INTEGER_CST and MINUS_EXPR can come from array bounds. */
20627 /* Type INTEGER_CST can come from ordinary constant template args. */
20628 case INTEGER_CST:
20629 while (CONVERT_EXPR_P (arg))
20630 arg = TREE_OPERAND (arg, 0);
20632 if (TREE_CODE (arg) != INTEGER_CST)
20633 return unify_template_argument_mismatch (explain_p, parm, arg);
20634 return (tree_int_cst_equal (parm, arg)
20635 ? unify_success (explain_p)
20636 : unify_template_argument_mismatch (explain_p, parm, arg));
20638 case TREE_VEC:
20640 int i, len, argslen;
20641 int parm_variadic_p = 0;
20643 if (TREE_CODE (arg) != TREE_VEC)
20644 return unify_template_argument_mismatch (explain_p, parm, arg);
20646 len = TREE_VEC_LENGTH (parm);
20647 argslen = TREE_VEC_LENGTH (arg);
20649 /* Check for pack expansions in the parameters. */
20650 for (i = 0; i < len; ++i)
20652 if (PACK_EXPANSION_P (TREE_VEC_ELT (parm, i)))
20654 if (i == len - 1)
20655 /* We can unify against something with a trailing
20656 parameter pack. */
20657 parm_variadic_p = 1;
20658 else
20659 /* [temp.deduct.type]/9: If the template argument list of
20660 P contains a pack expansion that is not the last
20661 template argument, the entire template argument list
20662 is a non-deduced context. */
20663 return unify_success (explain_p);
20667 /* If we don't have enough arguments to satisfy the parameters
20668 (not counting the pack expression at the end), or we have
20669 too many arguments for a parameter list that doesn't end in
20670 a pack expression, we can't unify. */
20671 if (parm_variadic_p
20672 ? argslen < len - parm_variadic_p
20673 : argslen != len)
20674 return unify_arity (explain_p, TREE_VEC_LENGTH (arg), len);
20676 /* Unify all of the parameters that precede the (optional)
20677 pack expression. */
20678 for (i = 0; i < len - parm_variadic_p; ++i)
20680 RECUR_AND_CHECK_FAILURE (tparms, targs,
20681 TREE_VEC_ELT (parm, i),
20682 TREE_VEC_ELT (arg, i),
20683 UNIFY_ALLOW_NONE, explain_p);
20685 if (parm_variadic_p)
20686 return unify_pack_expansion (tparms, targs, parm, arg,
20687 DEDUCE_EXACT,
20688 /*subr=*/true, explain_p);
20689 return unify_success (explain_p);
20692 case RECORD_TYPE:
20693 case UNION_TYPE:
20694 if (TREE_CODE (arg) != TREE_CODE (parm))
20695 return unify_type_mismatch (explain_p, parm, arg);
20697 if (TYPE_PTRMEMFUNC_P (parm))
20699 if (!TYPE_PTRMEMFUNC_P (arg))
20700 return unify_type_mismatch (explain_p, parm, arg);
20702 return unify (tparms, targs,
20703 TYPE_PTRMEMFUNC_FN_TYPE (parm),
20704 TYPE_PTRMEMFUNC_FN_TYPE (arg),
20705 strict, explain_p);
20707 else if (TYPE_PTRMEMFUNC_P (arg))
20708 return unify_type_mismatch (explain_p, parm, arg);
20710 if (CLASSTYPE_TEMPLATE_INFO (parm))
20712 tree t = NULL_TREE;
20714 if (strict_in & UNIFY_ALLOW_DERIVED)
20716 /* First, we try to unify the PARM and ARG directly. */
20717 t = try_class_unification (tparms, targs,
20718 parm, arg, explain_p);
20720 if (!t)
20722 /* Fallback to the special case allowed in
20723 [temp.deduct.call]:
20725 If P is a class, and P has the form
20726 template-id, then A can be a derived class of
20727 the deduced A. Likewise, if P is a pointer to
20728 a class of the form template-id, A can be a
20729 pointer to a derived class pointed to by the
20730 deduced A. */
20731 enum template_base_result r;
20732 r = get_template_base (tparms, targs, parm, arg,
20733 explain_p, &t);
20735 if (!t)
20737 /* Don't give the derived diagnostic if we're
20738 already dealing with the same template. */
20739 bool same_template
20740 = (CLASSTYPE_TEMPLATE_INFO (arg)
20741 && (CLASSTYPE_TI_TEMPLATE (parm)
20742 == CLASSTYPE_TI_TEMPLATE (arg)));
20743 return unify_no_common_base (explain_p && !same_template,
20744 r, parm, arg);
20748 else if (CLASSTYPE_TEMPLATE_INFO (arg)
20749 && (CLASSTYPE_TI_TEMPLATE (parm)
20750 == CLASSTYPE_TI_TEMPLATE (arg)))
20751 /* Perhaps PARM is something like S<U> and ARG is S<int>.
20752 Then, we should unify `int' and `U'. */
20753 t = arg;
20754 else
20755 /* There's no chance of unification succeeding. */
20756 return unify_type_mismatch (explain_p, parm, arg);
20758 return unify (tparms, targs, CLASSTYPE_TI_ARGS (parm),
20759 CLASSTYPE_TI_ARGS (t), UNIFY_ALLOW_NONE, explain_p);
20761 else if (!same_type_ignoring_top_level_qualifiers_p (parm, arg))
20762 return unify_type_mismatch (explain_p, parm, arg);
20763 return unify_success (explain_p);
20765 case METHOD_TYPE:
20766 case FUNCTION_TYPE:
20768 unsigned int nargs;
20769 tree *args;
20770 tree a;
20771 unsigned int i;
20773 if (TREE_CODE (arg) != TREE_CODE (parm))
20774 return unify_type_mismatch (explain_p, parm, arg);
20776 /* CV qualifications for methods can never be deduced, they must
20777 match exactly. We need to check them explicitly here,
20778 because type_unification_real treats them as any other
20779 cv-qualified parameter. */
20780 if (TREE_CODE (parm) == METHOD_TYPE
20781 && (!check_cv_quals_for_unify
20782 (UNIFY_ALLOW_NONE,
20783 class_of_this_parm (arg),
20784 class_of_this_parm (parm))))
20785 return unify_cv_qual_mismatch (explain_p, parm, arg);
20786 if (TREE_CODE (arg) == FUNCTION_TYPE
20787 && type_memfn_quals (parm) != type_memfn_quals (arg))
20788 return unify_cv_qual_mismatch (explain_p, parm, arg);
20789 if (type_memfn_rqual (parm) != type_memfn_rqual (arg))
20790 return unify_type_mismatch (explain_p, parm, arg);
20792 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm),
20793 TREE_TYPE (arg), UNIFY_ALLOW_NONE, explain_p);
20795 nargs = list_length (TYPE_ARG_TYPES (arg));
20796 args = XALLOCAVEC (tree, nargs);
20797 for (a = TYPE_ARG_TYPES (arg), i = 0;
20798 a != NULL_TREE && a != void_list_node;
20799 a = TREE_CHAIN (a), ++i)
20800 args[i] = TREE_VALUE (a);
20801 nargs = i;
20803 if (type_unification_real (tparms, targs, TYPE_ARG_TYPES (parm),
20804 args, nargs, 1, DEDUCE_EXACT,
20805 LOOKUP_NORMAL, NULL, explain_p))
20806 return 1;
20808 if (flag_noexcept_type)
20810 tree pspec = TYPE_RAISES_EXCEPTIONS (parm);
20811 tree aspec = canonical_eh_spec (TYPE_RAISES_EXCEPTIONS (arg));
20812 if (pspec == NULL_TREE) pspec = noexcept_false_spec;
20813 if (aspec == NULL_TREE) aspec = noexcept_false_spec;
20814 if (TREE_PURPOSE (pspec) && TREE_PURPOSE (aspec)
20815 && uses_template_parms (TREE_PURPOSE (pspec)))
20816 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_PURPOSE (pspec),
20817 TREE_PURPOSE (aspec),
20818 UNIFY_ALLOW_NONE, explain_p);
20819 else if (nothrow_spec_p (pspec) && !nothrow_spec_p (aspec))
20820 return unify_type_mismatch (explain_p, parm, arg);
20823 return 0;
20826 case OFFSET_TYPE:
20827 /* Unify a pointer to member with a pointer to member function, which
20828 deduces the type of the member as a function type. */
20829 if (TYPE_PTRMEMFUNC_P (arg))
20831 /* Check top-level cv qualifiers */
20832 if (!check_cv_quals_for_unify (UNIFY_ALLOW_NONE, arg, parm))
20833 return unify_cv_qual_mismatch (explain_p, parm, arg);
20835 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
20836 TYPE_PTRMEMFUNC_OBJECT_TYPE (arg),
20837 UNIFY_ALLOW_NONE, explain_p);
20839 /* Determine the type of the function we are unifying against. */
20840 tree fntype = static_fn_type (arg);
20842 return unify (tparms, targs, TREE_TYPE (parm), fntype, strict, explain_p);
20845 if (TREE_CODE (arg) != OFFSET_TYPE)
20846 return unify_type_mismatch (explain_p, parm, arg);
20847 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
20848 TYPE_OFFSET_BASETYPE (arg),
20849 UNIFY_ALLOW_NONE, explain_p);
20850 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
20851 strict, explain_p);
20853 case CONST_DECL:
20854 if (DECL_TEMPLATE_PARM_P (parm))
20855 return unify (tparms, targs, DECL_INITIAL (parm), arg, strict, explain_p);
20856 if (arg != scalar_constant_value (parm))
20857 return unify_template_argument_mismatch (explain_p, parm, arg);
20858 return unify_success (explain_p);
20860 case FIELD_DECL:
20861 case TEMPLATE_DECL:
20862 /* Matched cases are handled by the ARG == PARM test above. */
20863 return unify_template_argument_mismatch (explain_p, parm, arg);
20865 case VAR_DECL:
20866 /* We might get a variable as a non-type template argument in parm if the
20867 corresponding parameter is type-dependent. Make any necessary
20868 adjustments based on whether arg is a reference. */
20869 if (CONSTANT_CLASS_P (arg))
20870 parm = fold_non_dependent_expr (parm);
20871 else if (REFERENCE_REF_P (arg))
20873 tree sub = TREE_OPERAND (arg, 0);
20874 STRIP_NOPS (sub);
20875 if (TREE_CODE (sub) == ADDR_EXPR)
20876 arg = TREE_OPERAND (sub, 0);
20878 /* Now use the normal expression code to check whether they match. */
20879 goto expr;
20881 case TYPE_ARGUMENT_PACK:
20882 case NONTYPE_ARGUMENT_PACK:
20883 return unify (tparms, targs, ARGUMENT_PACK_ARGS (parm),
20884 ARGUMENT_PACK_ARGS (arg), strict, explain_p);
20886 case TYPEOF_TYPE:
20887 case DECLTYPE_TYPE:
20888 case UNDERLYING_TYPE:
20889 /* Cannot deduce anything from TYPEOF_TYPE, DECLTYPE_TYPE,
20890 or UNDERLYING_TYPE nodes. */
20891 return unify_success (explain_p);
20893 case ERROR_MARK:
20894 /* Unification fails if we hit an error node. */
20895 return unify_invalid (explain_p);
20897 case INDIRECT_REF:
20898 if (REFERENCE_REF_P (parm))
20900 if (REFERENCE_REF_P (arg))
20901 arg = TREE_OPERAND (arg, 0);
20902 return unify (tparms, targs, TREE_OPERAND (parm, 0), arg,
20903 strict, explain_p);
20905 /* FALLTHRU */
20907 default:
20908 /* An unresolved overload is a nondeduced context. */
20909 if (is_overloaded_fn (parm) || type_unknown_p (parm))
20910 return unify_success (explain_p);
20911 gcc_assert (EXPR_P (parm) || TREE_CODE (parm) == TRAIT_EXPR);
20912 expr:
20913 /* We must be looking at an expression. This can happen with
20914 something like:
20916 template <int I>
20917 void foo(S<I>, S<I + 2>);
20919 This is a "nondeduced context":
20921 [deduct.type]
20923 The nondeduced contexts are:
20925 --A type that is a template-id in which one or more of
20926 the template-arguments is an expression that references
20927 a template-parameter.
20929 In these cases, we assume deduction succeeded, but don't
20930 actually infer any unifications. */
20932 if (!uses_template_parms (parm)
20933 && !template_args_equal (parm, arg))
20934 return unify_expression_unequal (explain_p, parm, arg);
20935 else
20936 return unify_success (explain_p);
20939 #undef RECUR_AND_CHECK_FAILURE
20941 /* Note that DECL can be defined in this translation unit, if
20942 required. */
20944 static void
20945 mark_definable (tree decl)
20947 tree clone;
20948 DECL_NOT_REALLY_EXTERN (decl) = 1;
20949 FOR_EACH_CLONE (clone, decl)
20950 DECL_NOT_REALLY_EXTERN (clone) = 1;
20953 /* Called if RESULT is explicitly instantiated, or is a member of an
20954 explicitly instantiated class. */
20956 void
20957 mark_decl_instantiated (tree result, int extern_p)
20959 SET_DECL_EXPLICIT_INSTANTIATION (result);
20961 /* If this entity has already been written out, it's too late to
20962 make any modifications. */
20963 if (TREE_ASM_WRITTEN (result))
20964 return;
20966 /* For anonymous namespace we don't need to do anything. */
20967 if (decl_anon_ns_mem_p (result))
20969 gcc_assert (!TREE_PUBLIC (result));
20970 return;
20973 if (TREE_CODE (result) != FUNCTION_DECL)
20974 /* The TREE_PUBLIC flag for function declarations will have been
20975 set correctly by tsubst. */
20976 TREE_PUBLIC (result) = 1;
20978 /* This might have been set by an earlier implicit instantiation. */
20979 DECL_COMDAT (result) = 0;
20981 if (extern_p)
20982 DECL_NOT_REALLY_EXTERN (result) = 0;
20983 else
20985 mark_definable (result);
20986 mark_needed (result);
20987 /* Always make artificials weak. */
20988 if (DECL_ARTIFICIAL (result) && flag_weak)
20989 comdat_linkage (result);
20990 /* For WIN32 we also want to put explicit instantiations in
20991 linkonce sections. */
20992 else if (TREE_PUBLIC (result))
20993 maybe_make_one_only (result);
20996 /* If EXTERN_P, then this function will not be emitted -- unless
20997 followed by an explicit instantiation, at which point its linkage
20998 will be adjusted. If !EXTERN_P, then this function will be
20999 emitted here. In neither circumstance do we want
21000 import_export_decl to adjust the linkage. */
21001 DECL_INTERFACE_KNOWN (result) = 1;
21004 /* Subroutine of more_specialized_fn: check whether TARGS is missing any
21005 important template arguments. If any are missing, we check whether
21006 they're important by using error_mark_node for substituting into any
21007 args that were used for partial ordering (the ones between ARGS and END)
21008 and seeing if it bubbles up. */
21010 static bool
21011 check_undeduced_parms (tree targs, tree args, tree end)
21013 bool found = false;
21014 int i;
21015 for (i = TREE_VEC_LENGTH (targs) - 1; i >= 0; --i)
21016 if (TREE_VEC_ELT (targs, i) == NULL_TREE)
21018 found = true;
21019 TREE_VEC_ELT (targs, i) = error_mark_node;
21021 if (found)
21023 tree substed = tsubst_arg_types (args, targs, end, tf_none, NULL_TREE);
21024 if (substed == error_mark_node)
21025 return true;
21027 return false;
21030 /* Given two function templates PAT1 and PAT2, return:
21032 1 if PAT1 is more specialized than PAT2 as described in [temp.func.order].
21033 -1 if PAT2 is more specialized than PAT1.
21034 0 if neither is more specialized.
21036 LEN indicates the number of parameters we should consider
21037 (defaulted parameters should not be considered).
21039 The 1998 std underspecified function template partial ordering, and
21040 DR214 addresses the issue. We take pairs of arguments, one from
21041 each of the templates, and deduce them against each other. One of
21042 the templates will be more specialized if all the *other*
21043 template's arguments deduce against its arguments and at least one
21044 of its arguments *does* *not* deduce against the other template's
21045 corresponding argument. Deduction is done as for class templates.
21046 The arguments used in deduction have reference and top level cv
21047 qualifiers removed. Iff both arguments were originally reference
21048 types *and* deduction succeeds in both directions, an lvalue reference
21049 wins against an rvalue reference and otherwise the template
21050 with the more cv-qualified argument wins for that pairing (if
21051 neither is more cv-qualified, they both are equal). Unlike regular
21052 deduction, after all the arguments have been deduced in this way,
21053 we do *not* verify the deduced template argument values can be
21054 substituted into non-deduced contexts.
21056 The logic can be a bit confusing here, because we look at deduce1 and
21057 targs1 to see if pat2 is at least as specialized, and vice versa; if we
21058 can find template arguments for pat1 to make arg1 look like arg2, that
21059 means that arg2 is at least as specialized as arg1. */
21062 more_specialized_fn (tree pat1, tree pat2, int len)
21064 tree decl1 = DECL_TEMPLATE_RESULT (pat1);
21065 tree decl2 = DECL_TEMPLATE_RESULT (pat2);
21066 tree targs1 = make_tree_vec (DECL_NTPARMS (pat1));
21067 tree targs2 = make_tree_vec (DECL_NTPARMS (pat2));
21068 tree tparms1 = DECL_INNERMOST_TEMPLATE_PARMS (pat1);
21069 tree tparms2 = DECL_INNERMOST_TEMPLATE_PARMS (pat2);
21070 tree args1 = TYPE_ARG_TYPES (TREE_TYPE (decl1));
21071 tree args2 = TYPE_ARG_TYPES (TREE_TYPE (decl2));
21072 tree origs1, origs2;
21073 bool lose1 = false;
21074 bool lose2 = false;
21076 /* Remove the this parameter from non-static member functions. If
21077 one is a non-static member function and the other is not a static
21078 member function, remove the first parameter from that function
21079 also. This situation occurs for operator functions where we
21080 locate both a member function (with this pointer) and non-member
21081 operator (with explicit first operand). */
21082 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl1))
21084 len--; /* LEN is the number of significant arguments for DECL1 */
21085 args1 = TREE_CHAIN (args1);
21086 if (!DECL_STATIC_FUNCTION_P (decl2))
21087 args2 = TREE_CHAIN (args2);
21089 else if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl2))
21091 args2 = TREE_CHAIN (args2);
21092 if (!DECL_STATIC_FUNCTION_P (decl1))
21094 len--;
21095 args1 = TREE_CHAIN (args1);
21099 /* If only one is a conversion operator, they are unordered. */
21100 if (DECL_CONV_FN_P (decl1) != DECL_CONV_FN_P (decl2))
21101 return 0;
21103 /* Consider the return type for a conversion function */
21104 if (DECL_CONV_FN_P (decl1))
21106 args1 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl1)), args1);
21107 args2 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl2)), args2);
21108 len++;
21111 processing_template_decl++;
21113 origs1 = args1;
21114 origs2 = args2;
21116 while (len--
21117 /* Stop when an ellipsis is seen. */
21118 && args1 != NULL_TREE && args2 != NULL_TREE)
21120 tree arg1 = TREE_VALUE (args1);
21121 tree arg2 = TREE_VALUE (args2);
21122 int deduce1, deduce2;
21123 int quals1 = -1;
21124 int quals2 = -1;
21125 int ref1 = 0;
21126 int ref2 = 0;
21128 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
21129 && TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
21131 /* When both arguments are pack expansions, we need only
21132 unify the patterns themselves. */
21133 arg1 = PACK_EXPANSION_PATTERN (arg1);
21134 arg2 = PACK_EXPANSION_PATTERN (arg2);
21136 /* This is the last comparison we need to do. */
21137 len = 0;
21140 if (TREE_CODE (arg1) == REFERENCE_TYPE)
21142 ref1 = TYPE_REF_IS_RVALUE (arg1) + 1;
21143 arg1 = TREE_TYPE (arg1);
21144 quals1 = cp_type_quals (arg1);
21147 if (TREE_CODE (arg2) == REFERENCE_TYPE)
21149 ref2 = TYPE_REF_IS_RVALUE (arg2) + 1;
21150 arg2 = TREE_TYPE (arg2);
21151 quals2 = cp_type_quals (arg2);
21154 arg1 = TYPE_MAIN_VARIANT (arg1);
21155 arg2 = TYPE_MAIN_VARIANT (arg2);
21157 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION)
21159 int i, len2 = remaining_arguments (args2);
21160 tree parmvec = make_tree_vec (1);
21161 tree argvec = make_tree_vec (len2);
21162 tree ta = args2;
21164 /* Setup the parameter vector, which contains only ARG1. */
21165 TREE_VEC_ELT (parmvec, 0) = arg1;
21167 /* Setup the argument vector, which contains the remaining
21168 arguments. */
21169 for (i = 0; i < len2; i++, ta = TREE_CHAIN (ta))
21170 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
21172 deduce1 = (unify_pack_expansion (tparms1, targs1, parmvec,
21173 argvec, DEDUCE_EXACT,
21174 /*subr=*/true, /*explain_p=*/false)
21175 == 0);
21177 /* We cannot deduce in the other direction, because ARG1 is
21178 a pack expansion but ARG2 is not. */
21179 deduce2 = 0;
21181 else if (TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
21183 int i, len1 = remaining_arguments (args1);
21184 tree parmvec = make_tree_vec (1);
21185 tree argvec = make_tree_vec (len1);
21186 tree ta = args1;
21188 /* Setup the parameter vector, which contains only ARG1. */
21189 TREE_VEC_ELT (parmvec, 0) = arg2;
21191 /* Setup the argument vector, which contains the remaining
21192 arguments. */
21193 for (i = 0; i < len1; i++, ta = TREE_CHAIN (ta))
21194 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
21196 deduce2 = (unify_pack_expansion (tparms2, targs2, parmvec,
21197 argvec, DEDUCE_EXACT,
21198 /*subr=*/true, /*explain_p=*/false)
21199 == 0);
21201 /* We cannot deduce in the other direction, because ARG2 is
21202 a pack expansion but ARG1 is not.*/
21203 deduce1 = 0;
21206 else
21208 /* The normal case, where neither argument is a pack
21209 expansion. */
21210 deduce1 = (unify (tparms1, targs1, arg1, arg2,
21211 UNIFY_ALLOW_NONE, /*explain_p=*/false)
21212 == 0);
21213 deduce2 = (unify (tparms2, targs2, arg2, arg1,
21214 UNIFY_ALLOW_NONE, /*explain_p=*/false)
21215 == 0);
21218 /* If we couldn't deduce arguments for tparms1 to make arg1 match
21219 arg2, then arg2 is not as specialized as arg1. */
21220 if (!deduce1)
21221 lose2 = true;
21222 if (!deduce2)
21223 lose1 = true;
21225 /* "If, for a given type, deduction succeeds in both directions
21226 (i.e., the types are identical after the transformations above)
21227 and both P and A were reference types (before being replaced with
21228 the type referred to above):
21229 - if the type from the argument template was an lvalue reference and
21230 the type from the parameter template was not, the argument type is
21231 considered to be more specialized than the other; otherwise,
21232 - if the type from the argument template is more cv-qualified
21233 than the type from the parameter template (as described above),
21234 the argument type is considered to be more specialized than the other;
21235 otherwise,
21236 - neither type is more specialized than the other." */
21238 if (deduce1 && deduce2)
21240 if (ref1 && ref2 && ref1 != ref2)
21242 if (ref1 > ref2)
21243 lose1 = true;
21244 else
21245 lose2 = true;
21247 else if (quals1 != quals2 && quals1 >= 0 && quals2 >= 0)
21249 if ((quals1 & quals2) == quals2)
21250 lose2 = true;
21251 if ((quals1 & quals2) == quals1)
21252 lose1 = true;
21256 if (lose1 && lose2)
21257 /* We've failed to deduce something in either direction.
21258 These must be unordered. */
21259 break;
21261 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
21262 || TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
21263 /* We have already processed all of the arguments in our
21264 handing of the pack expansion type. */
21265 len = 0;
21267 args1 = TREE_CHAIN (args1);
21268 args2 = TREE_CHAIN (args2);
21271 /* "In most cases, all template parameters must have values in order for
21272 deduction to succeed, but for partial ordering purposes a template
21273 parameter may remain without a value provided it is not used in the
21274 types being used for partial ordering."
21276 Thus, if we are missing any of the targs1 we need to substitute into
21277 origs1, then pat2 is not as specialized as pat1. This can happen when
21278 there is a nondeduced context. */
21279 if (!lose2 && check_undeduced_parms (targs1, origs1, args1))
21280 lose2 = true;
21281 if (!lose1 && check_undeduced_parms (targs2, origs2, args2))
21282 lose1 = true;
21284 processing_template_decl--;
21286 /* If both deductions succeed, the partial ordering selects the more
21287 constrained template. */
21288 if (!lose1 && !lose2)
21290 tree c1 = get_constraints (DECL_TEMPLATE_RESULT (pat1));
21291 tree c2 = get_constraints (DECL_TEMPLATE_RESULT (pat2));
21292 lose1 = !subsumes_constraints (c1, c2);
21293 lose2 = !subsumes_constraints (c2, c1);
21296 /* All things being equal, if the next argument is a pack expansion
21297 for one function but not for the other, prefer the
21298 non-variadic function. FIXME this is bogus; see c++/41958. */
21299 if (lose1 == lose2
21300 && args1 && TREE_VALUE (args1)
21301 && args2 && TREE_VALUE (args2))
21303 lose1 = TREE_CODE (TREE_VALUE (args1)) == TYPE_PACK_EXPANSION;
21304 lose2 = TREE_CODE (TREE_VALUE (args2)) == TYPE_PACK_EXPANSION;
21307 if (lose1 == lose2)
21308 return 0;
21309 else if (!lose1)
21310 return 1;
21311 else
21312 return -1;
21315 /* Determine which of two partial specializations of TMPL is more
21316 specialized.
21318 PAT1 is a TREE_LIST whose TREE_VALUE is the TEMPLATE_DECL corresponding
21319 to the first partial specialization. The TREE_PURPOSE is the
21320 innermost set of template parameters for the partial
21321 specialization. PAT2 is similar, but for the second template.
21323 Return 1 if the first partial specialization is more specialized;
21324 -1 if the second is more specialized; 0 if neither is more
21325 specialized.
21327 See [temp.class.order] for information about determining which of
21328 two templates is more specialized. */
21330 static int
21331 more_specialized_partial_spec (tree tmpl, tree pat1, tree pat2)
21333 tree targs;
21334 int winner = 0;
21335 bool any_deductions = false;
21337 tree tmpl1 = TREE_VALUE (pat1);
21338 tree tmpl2 = TREE_VALUE (pat2);
21339 tree specargs1 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl1)));
21340 tree specargs2 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl2)));
21342 /* Just like what happens for functions, if we are ordering between
21343 different template specializations, we may encounter dependent
21344 types in the arguments, and we need our dependency check functions
21345 to behave correctly. */
21346 ++processing_template_decl;
21347 targs = get_partial_spec_bindings (tmpl, tmpl1, specargs2);
21348 if (targs)
21350 --winner;
21351 any_deductions = true;
21354 targs = get_partial_spec_bindings (tmpl, tmpl2, specargs1);
21355 if (targs)
21357 ++winner;
21358 any_deductions = true;
21360 --processing_template_decl;
21362 /* If both deductions succeed, the partial ordering selects the more
21363 constrained template. */
21364 if (!winner && any_deductions)
21365 return more_constrained (tmpl1, tmpl2);
21367 /* In the case of a tie where at least one of the templates
21368 has a parameter pack at the end, the template with the most
21369 non-packed parameters wins. */
21370 if (winner == 0
21371 && any_deductions
21372 && (template_args_variadic_p (TREE_PURPOSE (pat1))
21373 || template_args_variadic_p (TREE_PURPOSE (pat2))))
21375 tree args1 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat1));
21376 tree args2 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat2));
21377 int len1 = TREE_VEC_LENGTH (args1);
21378 int len2 = TREE_VEC_LENGTH (args2);
21380 /* We don't count the pack expansion at the end. */
21381 if (template_args_variadic_p (TREE_PURPOSE (pat1)))
21382 --len1;
21383 if (template_args_variadic_p (TREE_PURPOSE (pat2)))
21384 --len2;
21386 if (len1 > len2)
21387 return 1;
21388 else if (len1 < len2)
21389 return -1;
21392 return winner;
21395 /* Return the template arguments that will produce the function signature
21396 DECL from the function template FN, with the explicit template
21397 arguments EXPLICIT_ARGS. If CHECK_RETTYPE is true, the return type must
21398 also match. Return NULL_TREE if no satisfactory arguments could be
21399 found. */
21401 static tree
21402 get_bindings (tree fn, tree decl, tree explicit_args, bool check_rettype)
21404 int ntparms = DECL_NTPARMS (fn);
21405 tree targs = make_tree_vec (ntparms);
21406 tree decl_type = TREE_TYPE (decl);
21407 tree decl_arg_types;
21408 tree *args;
21409 unsigned int nargs, ix;
21410 tree arg;
21412 gcc_assert (decl != DECL_TEMPLATE_RESULT (fn));
21414 /* Never do unification on the 'this' parameter. */
21415 decl_arg_types = skip_artificial_parms_for (decl,
21416 TYPE_ARG_TYPES (decl_type));
21418 nargs = list_length (decl_arg_types);
21419 args = XALLOCAVEC (tree, nargs);
21420 for (arg = decl_arg_types, ix = 0;
21421 arg != NULL_TREE && arg != void_list_node;
21422 arg = TREE_CHAIN (arg), ++ix)
21423 args[ix] = TREE_VALUE (arg);
21425 if (fn_type_unification (fn, explicit_args, targs,
21426 args, ix,
21427 (check_rettype || DECL_CONV_FN_P (fn)
21428 ? TREE_TYPE (decl_type) : NULL_TREE),
21429 DEDUCE_EXACT, LOOKUP_NORMAL, /*explain_p=*/false,
21430 /*decltype*/false)
21431 == error_mark_node)
21432 return NULL_TREE;
21434 return targs;
21437 /* Return the innermost template arguments that, when applied to a partial
21438 specialization SPEC_TMPL of TMPL, yield the ARGS.
21440 For example, suppose we have:
21442 template <class T, class U> struct S {};
21443 template <class T> struct S<T*, int> {};
21445 Then, suppose we want to get `S<double*, int>'. SPEC_TMPL will be the
21446 partial specialization and the ARGS will be {double*, int}. The resulting
21447 vector will be {double}, indicating that `T' is bound to `double'. */
21449 static tree
21450 get_partial_spec_bindings (tree tmpl, tree spec_tmpl, tree args)
21452 tree tparms = DECL_INNERMOST_TEMPLATE_PARMS (spec_tmpl);
21453 tree spec_args
21454 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (spec_tmpl)));
21455 int i, ntparms = TREE_VEC_LENGTH (tparms);
21456 tree deduced_args;
21457 tree innermost_deduced_args;
21459 innermost_deduced_args = make_tree_vec (ntparms);
21460 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
21462 deduced_args = copy_node (args);
21463 SET_TMPL_ARGS_LEVEL (deduced_args,
21464 TMPL_ARGS_DEPTH (deduced_args),
21465 innermost_deduced_args);
21467 else
21468 deduced_args = innermost_deduced_args;
21470 bool tried_array_deduction = (cxx_dialect < cxx1z);
21471 again:
21472 if (unify (tparms, deduced_args,
21473 INNERMOST_TEMPLATE_ARGS (spec_args),
21474 INNERMOST_TEMPLATE_ARGS (args),
21475 UNIFY_ALLOW_NONE, /*explain_p=*/false))
21476 return NULL_TREE;
21478 for (i = 0; i < ntparms; ++i)
21479 if (! TREE_VEC_ELT (innermost_deduced_args, i))
21481 if (!tried_array_deduction)
21483 try_array_deduction (tparms, innermost_deduced_args,
21484 INNERMOST_TEMPLATE_ARGS (spec_args));
21485 tried_array_deduction = true;
21486 if (TREE_VEC_ELT (innermost_deduced_args, i))
21487 goto again;
21489 return NULL_TREE;
21492 tree tinst = build_tree_list (spec_tmpl, deduced_args);
21493 if (!push_tinst_level (tinst))
21495 excessive_deduction_depth = true;
21496 return NULL_TREE;
21499 /* Verify that nondeduced template arguments agree with the type
21500 obtained from argument deduction.
21502 For example:
21504 struct A { typedef int X; };
21505 template <class T, class U> struct C {};
21506 template <class T> struct C<T, typename T::X> {};
21508 Then with the instantiation `C<A, int>', we can deduce that
21509 `T' is `A' but unify () does not check whether `typename T::X'
21510 is `int'. */
21511 spec_args = tsubst (spec_args, deduced_args, tf_none, NULL_TREE);
21512 spec_args = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
21513 spec_args, tmpl,
21514 tf_none, false, false);
21516 pop_tinst_level ();
21518 if (spec_args == error_mark_node
21519 /* We only need to check the innermost arguments; the other
21520 arguments will always agree. */
21521 || !comp_template_args (INNERMOST_TEMPLATE_ARGS (spec_args),
21522 INNERMOST_TEMPLATE_ARGS (args)))
21523 return NULL_TREE;
21525 /* Now that we have bindings for all of the template arguments,
21526 ensure that the arguments deduced for the template template
21527 parameters have compatible template parameter lists. See the use
21528 of template_template_parm_bindings_ok_p in fn_type_unification
21529 for more information. */
21530 if (!template_template_parm_bindings_ok_p (tparms, deduced_args))
21531 return NULL_TREE;
21533 return deduced_args;
21536 // Compare two function templates T1 and T2 by deducing bindings
21537 // from one against the other. If both deductions succeed, compare
21538 // constraints to see which is more constrained.
21539 static int
21540 more_specialized_inst (tree t1, tree t2)
21542 int fate = 0;
21543 int count = 0;
21545 if (get_bindings (t1, DECL_TEMPLATE_RESULT (t2), NULL_TREE, true))
21547 --fate;
21548 ++count;
21551 if (get_bindings (t2, DECL_TEMPLATE_RESULT (t1), NULL_TREE, true))
21553 ++fate;
21554 ++count;
21557 // If both deductions succeed, then one may be more constrained.
21558 if (count == 2 && fate == 0)
21559 fate = more_constrained (t1, t2);
21561 return fate;
21564 /* TEMPLATES is a TREE_LIST. Each TREE_VALUE is a TEMPLATE_DECL.
21565 Return the TREE_LIST node with the most specialized template, if
21566 any. If there is no most specialized template, the error_mark_node
21567 is returned.
21569 Note that this function does not look at, or modify, the
21570 TREE_PURPOSE or TREE_TYPE of any of the nodes. Since the node
21571 returned is one of the elements of INSTANTIATIONS, callers may
21572 store information in the TREE_PURPOSE or TREE_TYPE of the nodes,
21573 and retrieve it from the value returned. */
21575 tree
21576 most_specialized_instantiation (tree templates)
21578 tree fn, champ;
21580 ++processing_template_decl;
21582 champ = templates;
21583 for (fn = TREE_CHAIN (templates); fn; fn = TREE_CHAIN (fn))
21585 int fate = more_specialized_inst (TREE_VALUE (champ), TREE_VALUE (fn));
21586 if (fate == -1)
21587 champ = fn;
21588 else if (!fate)
21590 /* Equally specialized, move to next function. If there
21591 is no next function, nothing's most specialized. */
21592 fn = TREE_CHAIN (fn);
21593 champ = fn;
21594 if (!fn)
21595 break;
21599 if (champ)
21600 /* Now verify that champ is better than everything earlier in the
21601 instantiation list. */
21602 for (fn = templates; fn != champ; fn = TREE_CHAIN (fn)) {
21603 if (more_specialized_inst (TREE_VALUE (champ), TREE_VALUE (fn)) != 1)
21605 champ = NULL_TREE;
21606 break;
21610 processing_template_decl--;
21612 if (!champ)
21613 return error_mark_node;
21615 return champ;
21618 /* If DECL is a specialization of some template, return the most
21619 general such template. Otherwise, returns NULL_TREE.
21621 For example, given:
21623 template <class T> struct S { template <class U> void f(U); };
21625 if TMPL is `template <class U> void S<int>::f(U)' this will return
21626 the full template. This function will not trace past partial
21627 specializations, however. For example, given in addition:
21629 template <class T> struct S<T*> { template <class U> void f(U); };
21631 if TMPL is `template <class U> void S<int*>::f(U)' this will return
21632 `template <class T> template <class U> S<T*>::f(U)'. */
21634 tree
21635 most_general_template (tree decl)
21637 if (TREE_CODE (decl) != TEMPLATE_DECL)
21639 if (tree tinfo = get_template_info (decl))
21640 decl = TI_TEMPLATE (tinfo);
21641 /* The TI_TEMPLATE can be an IDENTIFIER_NODE for a
21642 template friend, or a FIELD_DECL for a capture pack. */
21643 if (TREE_CODE (decl) != TEMPLATE_DECL)
21644 return NULL_TREE;
21647 /* Look for more and more general templates. */
21648 while (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl))
21650 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE in some cases.
21651 (See cp-tree.h for details.) */
21652 if (TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
21653 break;
21655 if (CLASS_TYPE_P (TREE_TYPE (decl))
21656 && !TYPE_DECL_ALIAS_P (TYPE_NAME (TREE_TYPE (decl)))
21657 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
21658 break;
21660 /* Stop if we run into an explicitly specialized class template. */
21661 if (!DECL_NAMESPACE_SCOPE_P (decl)
21662 && DECL_CONTEXT (decl)
21663 && CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (decl)))
21664 break;
21666 decl = DECL_TI_TEMPLATE (decl);
21669 return decl;
21672 /* Return the most specialized of the template partial specializations
21673 which can produce TARGET, a specialization of some class or variable
21674 template. The value returned is actually a TREE_LIST; the TREE_VALUE is
21675 a TEMPLATE_DECL node corresponding to the partial specialization, while
21676 the TREE_PURPOSE is the set of template arguments that must be
21677 substituted into the template pattern in order to generate TARGET.
21679 If the choice of partial specialization is ambiguous, a diagnostic
21680 is issued, and the error_mark_node is returned. If there are no
21681 partial specializations matching TARGET, then NULL_TREE is
21682 returned, indicating that the primary template should be used. */
21684 static tree
21685 most_specialized_partial_spec (tree target, tsubst_flags_t complain)
21687 tree list = NULL_TREE;
21688 tree t;
21689 tree champ;
21690 int fate;
21691 bool ambiguous_p;
21692 tree outer_args = NULL_TREE;
21693 tree tmpl, args;
21695 if (TYPE_P (target))
21697 tree tinfo = CLASSTYPE_TEMPLATE_INFO (target);
21698 tmpl = TI_TEMPLATE (tinfo);
21699 args = TI_ARGS (tinfo);
21701 else if (TREE_CODE (target) == TEMPLATE_ID_EXPR)
21703 tmpl = TREE_OPERAND (target, 0);
21704 args = TREE_OPERAND (target, 1);
21706 else if (VAR_P (target))
21708 tree tinfo = DECL_TEMPLATE_INFO (target);
21709 tmpl = TI_TEMPLATE (tinfo);
21710 args = TI_ARGS (tinfo);
21712 else
21713 gcc_unreachable ();
21715 tree main_tmpl = most_general_template (tmpl);
21717 /* For determining which partial specialization to use, only the
21718 innermost args are interesting. */
21719 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
21721 outer_args = strip_innermost_template_args (args, 1);
21722 args = INNERMOST_TEMPLATE_ARGS (args);
21725 for (t = DECL_TEMPLATE_SPECIALIZATIONS (main_tmpl); t; t = TREE_CHAIN (t))
21727 tree spec_args;
21728 tree spec_tmpl = TREE_VALUE (t);
21730 if (outer_args)
21732 /* Substitute in the template args from the enclosing class. */
21733 ++processing_template_decl;
21734 spec_tmpl = tsubst (spec_tmpl, outer_args, tf_none, NULL_TREE);
21735 --processing_template_decl;
21738 if (spec_tmpl == error_mark_node)
21739 return error_mark_node;
21741 spec_args = get_partial_spec_bindings (tmpl, spec_tmpl, args);
21742 if (spec_args)
21744 if (outer_args)
21745 spec_args = add_to_template_args (outer_args, spec_args);
21747 /* Keep the candidate only if the constraints are satisfied,
21748 or if we're not compiling with concepts. */
21749 if (!flag_concepts
21750 || constraints_satisfied_p (spec_tmpl, spec_args))
21752 list = tree_cons (spec_args, TREE_VALUE (t), list);
21753 TREE_TYPE (list) = TREE_TYPE (t);
21758 if (! list)
21759 return NULL_TREE;
21761 ambiguous_p = false;
21762 t = list;
21763 champ = t;
21764 t = TREE_CHAIN (t);
21765 for (; t; t = TREE_CHAIN (t))
21767 fate = more_specialized_partial_spec (tmpl, champ, t);
21768 if (fate == 1)
21770 else
21772 if (fate == 0)
21774 t = TREE_CHAIN (t);
21775 if (! t)
21777 ambiguous_p = true;
21778 break;
21781 champ = t;
21785 if (!ambiguous_p)
21786 for (t = list; t && t != champ; t = TREE_CHAIN (t))
21788 fate = more_specialized_partial_spec (tmpl, champ, t);
21789 if (fate != 1)
21791 ambiguous_p = true;
21792 break;
21796 if (ambiguous_p)
21798 const char *str;
21799 char *spaces = NULL;
21800 if (!(complain & tf_error))
21801 return error_mark_node;
21802 if (TYPE_P (target))
21803 error ("ambiguous template instantiation for %q#T", target);
21804 else
21805 error ("ambiguous template instantiation for %q#D", target);
21806 str = ngettext ("candidate is:", "candidates are:", list_length (list));
21807 for (t = list; t; t = TREE_CHAIN (t))
21809 tree subst = build_tree_list (TREE_VALUE (t), TREE_PURPOSE (t));
21810 inform (DECL_SOURCE_LOCATION (TREE_VALUE (t)),
21811 "%s %#S", spaces ? spaces : str, subst);
21812 spaces = spaces ? spaces : get_spaces (str);
21814 free (spaces);
21815 return error_mark_node;
21818 return champ;
21821 /* Explicitly instantiate DECL. */
21823 void
21824 do_decl_instantiation (tree decl, tree storage)
21826 tree result = NULL_TREE;
21827 int extern_p = 0;
21829 if (!decl || decl == error_mark_node)
21830 /* An error occurred, for which grokdeclarator has already issued
21831 an appropriate message. */
21832 return;
21833 else if (! DECL_LANG_SPECIFIC (decl))
21835 error ("explicit instantiation of non-template %q#D", decl);
21836 return;
21839 bool var_templ = (DECL_TEMPLATE_INFO (decl)
21840 && variable_template_p (DECL_TI_TEMPLATE (decl)));
21842 if (VAR_P (decl) && !var_templ)
21844 /* There is an asymmetry here in the way VAR_DECLs and
21845 FUNCTION_DECLs are handled by grokdeclarator. In the case of
21846 the latter, the DECL we get back will be marked as a
21847 template instantiation, and the appropriate
21848 DECL_TEMPLATE_INFO will be set up. This does not happen for
21849 VAR_DECLs so we do the lookup here. Probably, grokdeclarator
21850 should handle VAR_DECLs as it currently handles
21851 FUNCTION_DECLs. */
21852 if (!DECL_CLASS_SCOPE_P (decl))
21854 error ("%qD is not a static data member of a class template", decl);
21855 return;
21857 result = lookup_field (DECL_CONTEXT (decl), DECL_NAME (decl), 0, false);
21858 if (!result || !VAR_P (result))
21860 error ("no matching template for %qD found", decl);
21861 return;
21863 if (!same_type_p (TREE_TYPE (result), TREE_TYPE (decl)))
21865 error ("type %qT for explicit instantiation %qD does not match "
21866 "declared type %qT", TREE_TYPE (result), decl,
21867 TREE_TYPE (decl));
21868 return;
21871 else if (TREE_CODE (decl) != FUNCTION_DECL && !var_templ)
21873 error ("explicit instantiation of %q#D", decl);
21874 return;
21876 else
21877 result = decl;
21879 /* Check for various error cases. Note that if the explicit
21880 instantiation is valid the RESULT will currently be marked as an
21881 *implicit* instantiation; DECL_EXPLICIT_INSTANTIATION is not set
21882 until we get here. */
21884 if (DECL_TEMPLATE_SPECIALIZATION (result))
21886 /* DR 259 [temp.spec].
21888 Both an explicit instantiation and a declaration of an explicit
21889 specialization shall not appear in a program unless the explicit
21890 instantiation follows a declaration of the explicit specialization.
21892 For a given set of template parameters, if an explicit
21893 instantiation of a template appears after a declaration of an
21894 explicit specialization for that template, the explicit
21895 instantiation has no effect. */
21896 return;
21898 else if (DECL_EXPLICIT_INSTANTIATION (result))
21900 /* [temp.spec]
21902 No program shall explicitly instantiate any template more
21903 than once.
21905 We check DECL_NOT_REALLY_EXTERN so as not to complain when
21906 the first instantiation was `extern' and the second is not,
21907 and EXTERN_P for the opposite case. */
21908 if (DECL_NOT_REALLY_EXTERN (result) && !extern_p)
21909 permerror (input_location, "duplicate explicit instantiation of %q#D", result);
21910 /* If an "extern" explicit instantiation follows an ordinary
21911 explicit instantiation, the template is instantiated. */
21912 if (extern_p)
21913 return;
21915 else if (!DECL_IMPLICIT_INSTANTIATION (result))
21917 error ("no matching template for %qD found", result);
21918 return;
21920 else if (!DECL_TEMPLATE_INFO (result))
21922 permerror (input_location, "explicit instantiation of non-template %q#D", result);
21923 return;
21926 if (storage == NULL_TREE)
21928 else if (storage == ridpointers[(int) RID_EXTERN])
21930 if (!in_system_header_at (input_location) && (cxx_dialect == cxx98))
21931 pedwarn (input_location, OPT_Wpedantic,
21932 "ISO C++ 1998 forbids the use of %<extern%> on explicit "
21933 "instantiations");
21934 extern_p = 1;
21936 else
21937 error ("storage class %qD applied to template instantiation", storage);
21939 check_explicit_instantiation_namespace (result);
21940 mark_decl_instantiated (result, extern_p);
21941 if (! extern_p)
21942 instantiate_decl (result, /*defer_ok=*/true,
21943 /*expl_inst_class_mem_p=*/false);
21946 static void
21947 mark_class_instantiated (tree t, int extern_p)
21949 SET_CLASSTYPE_EXPLICIT_INSTANTIATION (t);
21950 SET_CLASSTYPE_INTERFACE_KNOWN (t);
21951 CLASSTYPE_INTERFACE_ONLY (t) = extern_p;
21952 TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (t)) = extern_p;
21953 if (! extern_p)
21955 CLASSTYPE_DEBUG_REQUESTED (t) = 1;
21956 rest_of_type_compilation (t, 1);
21960 /* Called from do_type_instantiation through binding_table_foreach to
21961 do recursive instantiation for the type bound in ENTRY. */
21962 static void
21963 bt_instantiate_type_proc (binding_entry entry, void *data)
21965 tree storage = *(tree *) data;
21967 if (MAYBE_CLASS_TYPE_P (entry->type)
21968 && !uses_template_parms (CLASSTYPE_TI_ARGS (entry->type)))
21969 do_type_instantiation (TYPE_MAIN_DECL (entry->type), storage, 0);
21972 /* Called from do_type_instantiation to instantiate a member
21973 (a member function or a static member variable) of an
21974 explicitly instantiated class template. */
21975 static void
21976 instantiate_class_member (tree decl, int extern_p)
21978 mark_decl_instantiated (decl, extern_p);
21979 if (! extern_p)
21980 instantiate_decl (decl, /*defer_ok=*/true,
21981 /*expl_inst_class_mem_p=*/true);
21984 /* Perform an explicit instantiation of template class T. STORAGE, if
21985 non-null, is the RID for extern, inline or static. COMPLAIN is
21986 nonzero if this is called from the parser, zero if called recursively,
21987 since the standard is unclear (as detailed below). */
21989 void
21990 do_type_instantiation (tree t, tree storage, tsubst_flags_t complain)
21992 int extern_p = 0;
21993 int nomem_p = 0;
21994 int static_p = 0;
21995 int previous_instantiation_extern_p = 0;
21997 if (TREE_CODE (t) == TYPE_DECL)
21998 t = TREE_TYPE (t);
22000 if (! CLASS_TYPE_P (t) || ! CLASSTYPE_TEMPLATE_INFO (t))
22002 tree tmpl =
22003 (TYPE_TEMPLATE_INFO (t)) ? TYPE_TI_TEMPLATE (t) : NULL;
22004 if (tmpl)
22005 error ("explicit instantiation of non-class template %qD", tmpl);
22006 else
22007 error ("explicit instantiation of non-template type %qT", t);
22008 return;
22011 complete_type (t);
22013 if (!COMPLETE_TYPE_P (t))
22015 if (complain & tf_error)
22016 error ("explicit instantiation of %q#T before definition of template",
22018 return;
22021 if (storage != NULL_TREE)
22023 if (!in_system_header_at (input_location))
22025 if (storage == ridpointers[(int) RID_EXTERN])
22027 if (cxx_dialect == cxx98)
22028 pedwarn (input_location, OPT_Wpedantic,
22029 "ISO C++ 1998 forbids the use of %<extern%> on "
22030 "explicit instantiations");
22032 else
22033 pedwarn (input_location, OPT_Wpedantic,
22034 "ISO C++ forbids the use of %qE"
22035 " on explicit instantiations", storage);
22038 if (storage == ridpointers[(int) RID_INLINE])
22039 nomem_p = 1;
22040 else if (storage == ridpointers[(int) RID_EXTERN])
22041 extern_p = 1;
22042 else if (storage == ridpointers[(int) RID_STATIC])
22043 static_p = 1;
22044 else
22046 error ("storage class %qD applied to template instantiation",
22047 storage);
22048 extern_p = 0;
22052 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (t))
22054 /* DR 259 [temp.spec].
22056 Both an explicit instantiation and a declaration of an explicit
22057 specialization shall not appear in a program unless the explicit
22058 instantiation follows a declaration of the explicit specialization.
22060 For a given set of template parameters, if an explicit
22061 instantiation of a template appears after a declaration of an
22062 explicit specialization for that template, the explicit
22063 instantiation has no effect. */
22064 return;
22066 else if (CLASSTYPE_EXPLICIT_INSTANTIATION (t))
22068 /* [temp.spec]
22070 No program shall explicitly instantiate any template more
22071 than once.
22073 If PREVIOUS_INSTANTIATION_EXTERN_P, then the first explicit
22074 instantiation was `extern'. If EXTERN_P then the second is.
22075 These cases are OK. */
22076 previous_instantiation_extern_p = CLASSTYPE_INTERFACE_ONLY (t);
22078 if (!previous_instantiation_extern_p && !extern_p
22079 && (complain & tf_error))
22080 permerror (input_location, "duplicate explicit instantiation of %q#T", t);
22082 /* If we've already instantiated the template, just return now. */
22083 if (!CLASSTYPE_INTERFACE_ONLY (t))
22084 return;
22087 check_explicit_instantiation_namespace (TYPE_NAME (t));
22088 mark_class_instantiated (t, extern_p);
22090 if (nomem_p)
22091 return;
22094 tree tmp;
22096 /* In contrast to implicit instantiation, where only the
22097 declarations, and not the definitions, of members are
22098 instantiated, we have here:
22100 [temp.explicit]
22102 The explicit instantiation of a class template specialization
22103 implies the instantiation of all of its members not
22104 previously explicitly specialized in the translation unit
22105 containing the explicit instantiation.
22107 Of course, we can't instantiate member template classes, since
22108 we don't have any arguments for them. Note that the standard
22109 is unclear on whether the instantiation of the members are
22110 *explicit* instantiations or not. However, the most natural
22111 interpretation is that it should be an explicit instantiation. */
22113 if (! static_p)
22114 for (tmp = TYPE_METHODS (t); tmp; tmp = DECL_CHAIN (tmp))
22115 if (TREE_CODE (tmp) == FUNCTION_DECL
22116 && DECL_TEMPLATE_INSTANTIATION (tmp)
22117 && user_provided_p (tmp))
22118 instantiate_class_member (tmp, extern_p);
22120 for (tmp = TYPE_FIELDS (t); tmp; tmp = DECL_CHAIN (tmp))
22121 if (VAR_P (tmp) && DECL_TEMPLATE_INSTANTIATION (tmp))
22122 instantiate_class_member (tmp, extern_p);
22124 if (CLASSTYPE_NESTED_UTDS (t))
22125 binding_table_foreach (CLASSTYPE_NESTED_UTDS (t),
22126 bt_instantiate_type_proc, &storage);
22130 /* Given a function DECL, which is a specialization of TMPL, modify
22131 DECL to be a re-instantiation of TMPL with the same template
22132 arguments. TMPL should be the template into which tsubst'ing
22133 should occur for DECL, not the most general template.
22135 One reason for doing this is a scenario like this:
22137 template <class T>
22138 void f(const T&, int i);
22140 void g() { f(3, 7); }
22142 template <class T>
22143 void f(const T& t, const int i) { }
22145 Note that when the template is first instantiated, with
22146 instantiate_template, the resulting DECL will have no name for the
22147 first parameter, and the wrong type for the second. So, when we go
22148 to instantiate the DECL, we regenerate it. */
22150 static void
22151 regenerate_decl_from_template (tree decl, tree tmpl, tree args)
22153 /* The arguments used to instantiate DECL, from the most general
22154 template. */
22155 tree code_pattern;
22157 code_pattern = DECL_TEMPLATE_RESULT (tmpl);
22159 /* Make sure that we can see identifiers, and compute access
22160 correctly. */
22161 push_access_scope (decl);
22163 if (TREE_CODE (decl) == FUNCTION_DECL)
22165 tree decl_parm;
22166 tree pattern_parm;
22167 tree specs;
22168 int args_depth;
22169 int parms_depth;
22171 args_depth = TMPL_ARGS_DEPTH (args);
22172 parms_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
22173 if (args_depth > parms_depth)
22174 args = get_innermost_template_args (args, parms_depth);
22176 specs = tsubst_exception_specification (TREE_TYPE (code_pattern),
22177 args, tf_error, NULL_TREE,
22178 /*defer_ok*/false);
22179 if (specs && specs != error_mark_node)
22180 TREE_TYPE (decl) = build_exception_variant (TREE_TYPE (decl),
22181 specs);
22183 /* Merge parameter declarations. */
22184 decl_parm = skip_artificial_parms_for (decl,
22185 DECL_ARGUMENTS (decl));
22186 pattern_parm
22187 = skip_artificial_parms_for (code_pattern,
22188 DECL_ARGUMENTS (code_pattern));
22189 while (decl_parm && !DECL_PACK_P (pattern_parm))
22191 tree parm_type;
22192 tree attributes;
22194 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
22195 DECL_NAME (decl_parm) = DECL_NAME (pattern_parm);
22196 parm_type = tsubst (TREE_TYPE (pattern_parm), args, tf_error,
22197 NULL_TREE);
22198 parm_type = type_decays_to (parm_type);
22199 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
22200 TREE_TYPE (decl_parm) = parm_type;
22201 attributes = DECL_ATTRIBUTES (pattern_parm);
22202 if (DECL_ATTRIBUTES (decl_parm) != attributes)
22204 DECL_ATTRIBUTES (decl_parm) = attributes;
22205 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
22207 decl_parm = DECL_CHAIN (decl_parm);
22208 pattern_parm = DECL_CHAIN (pattern_parm);
22210 /* Merge any parameters that match with the function parameter
22211 pack. */
22212 if (pattern_parm && DECL_PACK_P (pattern_parm))
22214 int i, len;
22215 tree expanded_types;
22216 /* Expand the TYPE_PACK_EXPANSION that provides the types for
22217 the parameters in this function parameter pack. */
22218 expanded_types = tsubst_pack_expansion (TREE_TYPE (pattern_parm),
22219 args, tf_error, NULL_TREE);
22220 len = TREE_VEC_LENGTH (expanded_types);
22221 for (i = 0; i < len; i++)
22223 tree parm_type;
22224 tree attributes;
22226 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
22227 /* Rename the parameter to include the index. */
22228 DECL_NAME (decl_parm) =
22229 make_ith_pack_parameter_name (DECL_NAME (pattern_parm), i);
22230 parm_type = TREE_VEC_ELT (expanded_types, i);
22231 parm_type = type_decays_to (parm_type);
22232 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
22233 TREE_TYPE (decl_parm) = parm_type;
22234 attributes = DECL_ATTRIBUTES (pattern_parm);
22235 if (DECL_ATTRIBUTES (decl_parm) != attributes)
22237 DECL_ATTRIBUTES (decl_parm) = attributes;
22238 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
22240 decl_parm = DECL_CHAIN (decl_parm);
22243 /* Merge additional specifiers from the CODE_PATTERN. */
22244 if (DECL_DECLARED_INLINE_P (code_pattern)
22245 && !DECL_DECLARED_INLINE_P (decl))
22246 DECL_DECLARED_INLINE_P (decl) = 1;
22248 else if (VAR_P (decl))
22250 DECL_INITIAL (decl) =
22251 tsubst_expr (DECL_INITIAL (code_pattern), args,
22252 tf_error, DECL_TI_TEMPLATE (decl),
22253 /*integral_constant_expression_p=*/false);
22254 if (VAR_HAD_UNKNOWN_BOUND (decl))
22255 TREE_TYPE (decl) = tsubst (TREE_TYPE (code_pattern), args,
22256 tf_error, DECL_TI_TEMPLATE (decl));
22258 else
22259 gcc_unreachable ();
22261 pop_access_scope (decl);
22264 /* Return the TEMPLATE_DECL into which DECL_TI_ARGS(DECL) should be
22265 substituted to get DECL. */
22267 tree
22268 template_for_substitution (tree decl)
22270 tree tmpl = DECL_TI_TEMPLATE (decl);
22272 /* Set TMPL to the template whose DECL_TEMPLATE_RESULT is the pattern
22273 for the instantiation. This is not always the most general
22274 template. Consider, for example:
22276 template <class T>
22277 struct S { template <class U> void f();
22278 template <> void f<int>(); };
22280 and an instantiation of S<double>::f<int>. We want TD to be the
22281 specialization S<T>::f<int>, not the more general S<T>::f<U>. */
22282 while (/* An instantiation cannot have a definition, so we need a
22283 more general template. */
22284 DECL_TEMPLATE_INSTANTIATION (tmpl)
22285 /* We must also deal with friend templates. Given:
22287 template <class T> struct S {
22288 template <class U> friend void f() {};
22291 S<int>::f<U> say, is not an instantiation of S<T>::f<U>,
22292 so far as the language is concerned, but that's still
22293 where we get the pattern for the instantiation from. On
22294 other hand, if the definition comes outside the class, say:
22296 template <class T> struct S {
22297 template <class U> friend void f();
22299 template <class U> friend void f() {}
22301 we don't need to look any further. That's what the check for
22302 DECL_INITIAL is for. */
22303 || (TREE_CODE (decl) == FUNCTION_DECL
22304 && DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (tmpl)
22305 && !DECL_INITIAL (DECL_TEMPLATE_RESULT (tmpl))))
22307 /* The present template, TD, should not be a definition. If it
22308 were a definition, we should be using it! Note that we
22309 cannot restructure the loop to just keep going until we find
22310 a template with a definition, since that might go too far if
22311 a specialization was declared, but not defined. */
22313 /* Fetch the more general template. */
22314 tmpl = DECL_TI_TEMPLATE (tmpl);
22317 return tmpl;
22320 /* Returns true if we need to instantiate this template instance even if we
22321 know we aren't going to emit it. */
22323 bool
22324 always_instantiate_p (tree decl)
22326 /* We always instantiate inline functions so that we can inline them. An
22327 explicit instantiation declaration prohibits implicit instantiation of
22328 non-inline functions. With high levels of optimization, we would
22329 normally inline non-inline functions -- but we're not allowed to do
22330 that for "extern template" functions. Therefore, we check
22331 DECL_DECLARED_INLINE_P, rather than possibly_inlined_p. */
22332 return ((TREE_CODE (decl) == FUNCTION_DECL
22333 && (DECL_DECLARED_INLINE_P (decl)
22334 || type_uses_auto (TREE_TYPE (TREE_TYPE (decl)))))
22335 /* And we need to instantiate static data members so that
22336 their initializers are available in integral constant
22337 expressions. */
22338 || (VAR_P (decl)
22339 && decl_maybe_constant_var_p (decl)));
22342 /* If FN has a noexcept-specifier that hasn't been instantiated yet,
22343 instantiate it now, modifying TREE_TYPE (fn). */
22345 void
22346 maybe_instantiate_noexcept (tree fn)
22348 tree fntype, spec, noex, clone;
22350 /* Don't instantiate a noexcept-specification from template context. */
22351 if (processing_template_decl)
22352 return;
22354 if (DECL_CLONED_FUNCTION_P (fn))
22355 fn = DECL_CLONED_FUNCTION (fn);
22356 fntype = TREE_TYPE (fn);
22357 spec = TYPE_RAISES_EXCEPTIONS (fntype);
22359 if (!spec || !TREE_PURPOSE (spec))
22360 return;
22362 noex = TREE_PURPOSE (spec);
22364 if (TREE_CODE (noex) == DEFERRED_NOEXCEPT)
22366 if (DEFERRED_NOEXCEPT_PATTERN (noex) == NULL_TREE)
22367 spec = get_defaulted_eh_spec (fn);
22368 else if (push_tinst_level (fn))
22370 push_access_scope (fn);
22371 push_deferring_access_checks (dk_no_deferred);
22372 input_location = DECL_SOURCE_LOCATION (fn);
22373 noex = tsubst_copy_and_build (DEFERRED_NOEXCEPT_PATTERN (noex),
22374 DEFERRED_NOEXCEPT_ARGS (noex),
22375 tf_warning_or_error, fn,
22376 /*function_p=*/false,
22377 /*integral_constant_expression_p=*/true);
22378 pop_deferring_access_checks ();
22379 pop_access_scope (fn);
22380 pop_tinst_level ();
22381 spec = build_noexcept_spec (noex, tf_warning_or_error);
22382 if (spec == error_mark_node)
22383 spec = noexcept_false_spec;
22385 else
22386 spec = noexcept_false_spec;
22388 TREE_TYPE (fn) = build_exception_variant (fntype, spec);
22391 FOR_EACH_CLONE (clone, fn)
22393 if (TREE_TYPE (clone) == fntype)
22394 TREE_TYPE (clone) = TREE_TYPE (fn);
22395 else
22396 TREE_TYPE (clone) = build_exception_variant (TREE_TYPE (clone), spec);
22400 /* Produce the definition of D, a _DECL generated from a template. If
22401 DEFER_OK is true, then we don't have to actually do the
22402 instantiation now; we just have to do it sometime. Normally it is
22403 an error if this is an explicit instantiation but D is undefined.
22404 EXPL_INST_CLASS_MEM_P is true iff D is a member of an explicitly
22405 instantiated class template. */
22407 tree
22408 instantiate_decl (tree d, bool defer_ok, bool expl_inst_class_mem_p)
22410 tree tmpl = DECL_TI_TEMPLATE (d);
22411 tree gen_args;
22412 tree args;
22413 tree td;
22414 tree code_pattern;
22415 tree spec;
22416 tree gen_tmpl;
22417 bool pattern_defined;
22418 location_t saved_loc = input_location;
22419 int saved_unevaluated_operand = cp_unevaluated_operand;
22420 int saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
22421 bool external_p;
22422 bool deleted_p;
22424 /* This function should only be used to instantiate templates for
22425 functions and static member variables. */
22426 gcc_assert (VAR_OR_FUNCTION_DECL_P (d));
22428 /* A concept is never instantiated. */
22429 gcc_assert (!DECL_DECLARED_CONCEPT_P (d));
22431 /* Variables are never deferred; if instantiation is required, they
22432 are instantiated right away. That allows for better code in the
22433 case that an expression refers to the value of the variable --
22434 if the variable has a constant value the referring expression can
22435 take advantage of that fact. */
22436 if (VAR_P (d))
22437 defer_ok = false;
22439 /* Don't instantiate cloned functions. Instead, instantiate the
22440 functions they cloned. */
22441 if (TREE_CODE (d) == FUNCTION_DECL && DECL_CLONED_FUNCTION_P (d))
22442 d = DECL_CLONED_FUNCTION (d);
22444 if (DECL_TEMPLATE_INSTANTIATED (d)
22445 || (TREE_CODE (d) == FUNCTION_DECL
22446 && DECL_DEFAULTED_FN (d) && DECL_INITIAL (d))
22447 || DECL_TEMPLATE_SPECIALIZATION (d))
22448 /* D has already been instantiated or explicitly specialized, so
22449 there's nothing for us to do here.
22451 It might seem reasonable to check whether or not D is an explicit
22452 instantiation, and, if so, stop here. But when an explicit
22453 instantiation is deferred until the end of the compilation,
22454 DECL_EXPLICIT_INSTANTIATION is set, even though we still need to do
22455 the instantiation. */
22456 return d;
22458 /* Check to see whether we know that this template will be
22459 instantiated in some other file, as with "extern template"
22460 extension. */
22461 external_p = (DECL_INTERFACE_KNOWN (d) && DECL_REALLY_EXTERN (d));
22463 /* In general, we do not instantiate such templates. */
22464 if (external_p && !always_instantiate_p (d))
22465 return d;
22467 gen_tmpl = most_general_template (tmpl);
22468 gen_args = DECL_TI_ARGS (d);
22470 if (tmpl != gen_tmpl)
22471 /* We should already have the extra args. */
22472 gcc_assert (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (gen_tmpl))
22473 == TMPL_ARGS_DEPTH (gen_args));
22474 /* And what's in the hash table should match D. */
22475 gcc_assert ((spec = retrieve_specialization (gen_tmpl, gen_args, 0)) == d
22476 || spec == NULL_TREE);
22478 /* This needs to happen before any tsubsting. */
22479 if (! push_tinst_level (d))
22480 return d;
22482 timevar_push (TV_TEMPLATE_INST);
22484 /* Set TD to the template whose DECL_TEMPLATE_RESULT is the pattern
22485 for the instantiation. */
22486 td = template_for_substitution (d);
22487 args = gen_args;
22489 if (VAR_P (d))
22491 /* Look up an explicit specialization, if any. */
22492 tree tid = lookup_template_variable (gen_tmpl, gen_args);
22493 tree elt = most_specialized_partial_spec (tid, tf_warning_or_error);
22494 if (elt && elt != error_mark_node)
22496 td = TREE_VALUE (elt);
22497 args = TREE_PURPOSE (elt);
22501 code_pattern = DECL_TEMPLATE_RESULT (td);
22503 /* We should never be trying to instantiate a member of a class
22504 template or partial specialization. */
22505 gcc_assert (d != code_pattern);
22507 if ((DECL_NAMESPACE_SCOPE_P (d) && !DECL_INITIALIZED_IN_CLASS_P (d))
22508 || DECL_TEMPLATE_SPECIALIZATION (td))
22509 /* In the case of a friend template whose definition is provided
22510 outside the class, we may have too many arguments. Drop the
22511 ones we don't need. The same is true for specializations. */
22512 args = get_innermost_template_args
22513 (args, TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (td)));
22515 if (TREE_CODE (d) == FUNCTION_DECL)
22517 deleted_p = DECL_DELETED_FN (code_pattern);
22518 pattern_defined = ((DECL_SAVED_TREE (code_pattern) != NULL_TREE
22519 && DECL_INITIAL (code_pattern) != error_mark_node)
22520 || DECL_DEFAULTED_OUTSIDE_CLASS_P (code_pattern)
22521 || deleted_p);
22523 else
22525 deleted_p = false;
22526 if (DECL_CLASS_SCOPE_P (code_pattern))
22527 pattern_defined = (! DECL_IN_AGGR_P (code_pattern)
22528 || DECL_INLINE_VAR_P (code_pattern));
22529 else
22530 pattern_defined = ! DECL_EXTERNAL (code_pattern);
22533 /* We may be in the middle of deferred access check. Disable it now. */
22534 push_deferring_access_checks (dk_no_deferred);
22536 /* Unless an explicit instantiation directive has already determined
22537 the linkage of D, remember that a definition is available for
22538 this entity. */
22539 if (pattern_defined
22540 && !DECL_INTERFACE_KNOWN (d)
22541 && !DECL_NOT_REALLY_EXTERN (d))
22542 mark_definable (d);
22544 DECL_SOURCE_LOCATION (td) = DECL_SOURCE_LOCATION (code_pattern);
22545 DECL_SOURCE_LOCATION (d) = DECL_SOURCE_LOCATION (code_pattern);
22546 input_location = DECL_SOURCE_LOCATION (d);
22548 /* If D is a member of an explicitly instantiated class template,
22549 and no definition is available, treat it like an implicit
22550 instantiation. */
22551 if (!pattern_defined && expl_inst_class_mem_p
22552 && DECL_EXPLICIT_INSTANTIATION (d))
22554 /* Leave linkage flags alone on instantiations with anonymous
22555 visibility. */
22556 if (TREE_PUBLIC (d))
22558 DECL_NOT_REALLY_EXTERN (d) = 0;
22559 DECL_INTERFACE_KNOWN (d) = 0;
22561 SET_DECL_IMPLICIT_INSTANTIATION (d);
22564 /* Defer all other templates, unless we have been explicitly
22565 forbidden from doing so. */
22566 if (/* If there is no definition, we cannot instantiate the
22567 template. */
22568 ! pattern_defined
22569 /* If it's OK to postpone instantiation, do so. */
22570 || defer_ok
22571 /* If this is a static data member that will be defined
22572 elsewhere, we don't want to instantiate the entire data
22573 member, but we do want to instantiate the initializer so that
22574 we can substitute that elsewhere. */
22575 || (external_p && VAR_P (d))
22576 /* Handle here a deleted function too, avoid generating
22577 its body (c++/61080). */
22578 || deleted_p)
22580 /* The definition of the static data member is now required so
22581 we must substitute the initializer. */
22582 if (VAR_P (d)
22583 && !DECL_INITIAL (d)
22584 && DECL_INITIAL (code_pattern))
22586 tree ns;
22587 tree init;
22588 bool const_init = false;
22589 bool enter_context = DECL_CLASS_SCOPE_P (d);
22591 ns = decl_namespace_context (d);
22592 push_nested_namespace (ns);
22593 if (enter_context)
22594 push_nested_class (DECL_CONTEXT (d));
22595 init = tsubst_expr (DECL_INITIAL (code_pattern),
22596 args,
22597 tf_warning_or_error, NULL_TREE,
22598 /*integral_constant_expression_p=*/false);
22599 /* If instantiating the initializer involved instantiating this
22600 again, don't call cp_finish_decl twice. */
22601 if (!DECL_INITIAL (d))
22603 /* Make sure the initializer is still constant, in case of
22604 circular dependency (template/instantiate6.C). */
22605 const_init
22606 = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
22607 cp_finish_decl (d, init, /*init_const_expr_p=*/const_init,
22608 /*asmspec_tree=*/NULL_TREE,
22609 LOOKUP_ONLYCONVERTING);
22611 if (enter_context)
22612 pop_nested_class ();
22613 pop_nested_namespace (ns);
22616 /* We restore the source position here because it's used by
22617 add_pending_template. */
22618 input_location = saved_loc;
22620 if (at_eof && !pattern_defined
22621 && DECL_EXPLICIT_INSTANTIATION (d)
22622 && DECL_NOT_REALLY_EXTERN (d))
22623 /* [temp.explicit]
22625 The definition of a non-exported function template, a
22626 non-exported member function template, or a non-exported
22627 member function or static data member of a class template
22628 shall be present in every translation unit in which it is
22629 explicitly instantiated. */
22630 permerror (input_location, "explicit instantiation of %qD "
22631 "but no definition available", d);
22633 /* If we're in unevaluated context, we just wanted to get the
22634 constant value; this isn't an odr use, so don't queue
22635 a full instantiation. */
22636 if (cp_unevaluated_operand != 0)
22637 goto out;
22638 /* ??? Historically, we have instantiated inline functions, even
22639 when marked as "extern template". */
22640 if (!(external_p && VAR_P (d)))
22641 add_pending_template (d);
22642 goto out;
22644 /* Tell the repository that D is available in this translation unit
22645 -- and see if it is supposed to be instantiated here. */
22646 if (TREE_PUBLIC (d) && !DECL_REALLY_EXTERN (d) && !repo_emit_p (d))
22648 /* In a PCH file, despite the fact that the repository hasn't
22649 requested instantiation in the PCH it is still possible that
22650 an instantiation will be required in a file that includes the
22651 PCH. */
22652 if (pch_file)
22653 add_pending_template (d);
22654 /* Instantiate inline functions so that the inliner can do its
22655 job, even though we'll not be emitting a copy of this
22656 function. */
22657 if (!(TREE_CODE (d) == FUNCTION_DECL && possibly_inlined_p (d)))
22658 goto out;
22661 bool push_to_top, nested;
22662 tree fn_context;
22663 fn_context = decl_function_context (d);
22664 nested = current_function_decl != NULL_TREE;
22665 push_to_top = !(nested && fn_context == current_function_decl);
22667 vec<tree> omp_privatization_save;
22668 if (nested)
22669 save_omp_privatization_clauses (omp_privatization_save);
22671 if (push_to_top)
22672 push_to_top_level ();
22673 else
22675 push_function_context ();
22676 cp_unevaluated_operand = 0;
22677 c_inhibit_evaluation_warnings = 0;
22680 /* Mark D as instantiated so that recursive calls to
22681 instantiate_decl do not try to instantiate it again. */
22682 DECL_TEMPLATE_INSTANTIATED (d) = 1;
22684 /* Regenerate the declaration in case the template has been modified
22685 by a subsequent redeclaration. */
22686 regenerate_decl_from_template (d, td, args);
22688 /* We already set the file and line above. Reset them now in case
22689 they changed as a result of calling regenerate_decl_from_template. */
22690 input_location = DECL_SOURCE_LOCATION (d);
22692 if (VAR_P (d))
22694 tree init;
22695 bool const_init = false;
22697 /* Clear out DECL_RTL; whatever was there before may not be right
22698 since we've reset the type of the declaration. */
22699 SET_DECL_RTL (d, NULL);
22700 DECL_IN_AGGR_P (d) = 0;
22702 /* The initializer is placed in DECL_INITIAL by
22703 regenerate_decl_from_template so we don't need to
22704 push/pop_access_scope again here. Pull it out so that
22705 cp_finish_decl can process it. */
22706 init = DECL_INITIAL (d);
22707 DECL_INITIAL (d) = NULL_TREE;
22708 DECL_INITIALIZED_P (d) = 0;
22710 /* Clear DECL_EXTERNAL so that cp_finish_decl will process the
22711 initializer. That function will defer actual emission until
22712 we have a chance to determine linkage. */
22713 DECL_EXTERNAL (d) = 0;
22715 /* Enter the scope of D so that access-checking works correctly. */
22716 bool enter_context = DECL_CLASS_SCOPE_P (d);
22717 if (enter_context)
22718 push_nested_class (DECL_CONTEXT (d));
22720 const_init = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
22721 cp_finish_decl (d, init, const_init, NULL_TREE, 0);
22723 if (enter_context)
22724 pop_nested_class ();
22726 if (variable_template_p (gen_tmpl))
22727 note_variable_template_instantiation (d);
22729 else if (TREE_CODE (d) == FUNCTION_DECL && DECL_DEFAULTED_FN (code_pattern))
22730 synthesize_method (d);
22731 else if (TREE_CODE (d) == FUNCTION_DECL)
22733 hash_map<tree, tree> *saved_local_specializations;
22734 tree tmpl_parm;
22735 tree spec_parm;
22736 tree block = NULL_TREE;
22737 tree lambda_ctx = NULL_TREE;
22739 /* Save away the current list, in case we are instantiating one
22740 template from within the body of another. */
22741 saved_local_specializations = local_specializations;
22743 /* Set up the list of local specializations. */
22744 local_specializations = new hash_map<tree, tree>;
22746 /* Set up context. */
22747 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern)
22748 && TREE_CODE (DECL_CONTEXT (code_pattern)) == FUNCTION_DECL)
22749 block = push_stmt_list ();
22750 else
22752 if (push_to_top && LAMBDA_FUNCTION_P (d))
22754 /* When instantiating a lambda's templated function
22755 operator, we need to push the non-lambda class scope
22756 of the lambda itself so that the nested function
22757 stack is sufficiently correct to deal with this
22758 capture. */
22759 lambda_ctx = DECL_CONTEXT (d);
22761 lambda_ctx = decl_type_context (TYPE_NAME (lambda_ctx));
22762 while (lambda_ctx && LAMBDA_TYPE_P (lambda_ctx));
22763 if (lambda_ctx)
22764 push_nested_class (lambda_ctx);
22766 start_preparsed_function (d, NULL_TREE, SF_PRE_PARSED);
22769 /* Some typedefs referenced from within the template code need to be
22770 access checked at template instantiation time, i.e now. These
22771 types were added to the template at parsing time. Let's get those
22772 and perform the access checks then. */
22773 perform_typedefs_access_check (DECL_TEMPLATE_RESULT (td),
22774 args);
22776 /* Create substitution entries for the parameters. */
22777 tmpl_parm = DECL_ARGUMENTS (code_pattern);
22778 spec_parm = DECL_ARGUMENTS (d);
22779 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (d))
22781 register_local_specialization (spec_parm, tmpl_parm);
22782 spec_parm = skip_artificial_parms_for (d, spec_parm);
22783 tmpl_parm = skip_artificial_parms_for (code_pattern, tmpl_parm);
22785 for (; tmpl_parm; tmpl_parm = DECL_CHAIN (tmpl_parm))
22787 if (!DECL_PACK_P (tmpl_parm))
22789 register_local_specialization (spec_parm, tmpl_parm);
22790 spec_parm = DECL_CHAIN (spec_parm);
22792 else
22794 /* Register the (value) argument pack as a specialization of
22795 TMPL_PARM, then move on. */
22796 tree argpack = extract_fnparm_pack (tmpl_parm, &spec_parm);
22797 register_local_specialization (argpack, tmpl_parm);
22800 gcc_assert (!spec_parm);
22802 /* Substitute into the body of the function. */
22803 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern))
22804 tsubst_omp_udr (DECL_SAVED_TREE (code_pattern), args,
22805 tf_warning_or_error, tmpl);
22806 else
22808 tsubst_expr (DECL_SAVED_TREE (code_pattern), args,
22809 tf_warning_or_error, tmpl,
22810 /*integral_constant_expression_p=*/false);
22812 /* Set the current input_location to the end of the function
22813 so that finish_function knows where we are. */
22814 input_location
22815 = DECL_STRUCT_FUNCTION (code_pattern)->function_end_locus;
22817 /* Remember if we saw an infinite loop in the template. */
22818 current_function_infinite_loop
22819 = DECL_STRUCT_FUNCTION (code_pattern)->language->infinite_loop;
22822 /* We don't need the local specializations any more. */
22823 delete local_specializations;
22824 local_specializations = saved_local_specializations;
22826 /* Finish the function. */
22827 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern)
22828 && TREE_CODE (DECL_CONTEXT (code_pattern)) == FUNCTION_DECL)
22829 DECL_SAVED_TREE (d) = pop_stmt_list (block);
22830 else
22832 d = finish_function (0);
22833 expand_or_defer_fn (d);
22835 if (lambda_ctx)
22836 pop_nested_class ();
22838 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern))
22839 cp_check_omp_declare_reduction (d);
22842 /* We're not deferring instantiation any more. */
22843 TI_PENDING_TEMPLATE_FLAG (DECL_TEMPLATE_INFO (d)) = 0;
22845 if (push_to_top)
22846 pop_from_top_level ();
22847 else
22848 pop_function_context ();
22850 if (nested)
22851 restore_omp_privatization_clauses (omp_privatization_save);
22853 out:
22854 pop_deferring_access_checks ();
22855 timevar_pop (TV_TEMPLATE_INST);
22856 pop_tinst_level ();
22857 input_location = saved_loc;
22858 cp_unevaluated_operand = saved_unevaluated_operand;
22859 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
22861 return d;
22864 /* Run through the list of templates that we wish we could
22865 instantiate, and instantiate any we can. RETRIES is the
22866 number of times we retry pending template instantiation. */
22868 void
22869 instantiate_pending_templates (int retries)
22871 int reconsider;
22872 location_t saved_loc = input_location;
22874 /* Instantiating templates may trigger vtable generation. This in turn
22875 may require further template instantiations. We place a limit here
22876 to avoid infinite loop. */
22877 if (pending_templates && retries >= max_tinst_depth)
22879 tree decl = pending_templates->tinst->decl;
22881 fatal_error (input_location,
22882 "template instantiation depth exceeds maximum of %d"
22883 " instantiating %q+D, possibly from virtual table generation"
22884 " (use -ftemplate-depth= to increase the maximum)",
22885 max_tinst_depth, decl);
22886 if (TREE_CODE (decl) == FUNCTION_DECL)
22887 /* Pretend that we defined it. */
22888 DECL_INITIAL (decl) = error_mark_node;
22889 return;
22894 struct pending_template **t = &pending_templates;
22895 struct pending_template *last = NULL;
22896 reconsider = 0;
22897 while (*t)
22899 tree instantiation = reopen_tinst_level ((*t)->tinst);
22900 bool complete = false;
22902 if (TYPE_P (instantiation))
22904 tree fn;
22906 if (!COMPLETE_TYPE_P (instantiation))
22908 instantiate_class_template (instantiation);
22909 if (CLASSTYPE_TEMPLATE_INSTANTIATION (instantiation))
22910 for (fn = TYPE_METHODS (instantiation);
22912 fn = TREE_CHAIN (fn))
22913 if (! DECL_ARTIFICIAL (fn))
22914 instantiate_decl (fn,
22915 /*defer_ok=*/false,
22916 /*expl_inst_class_mem_p=*/false);
22917 if (COMPLETE_TYPE_P (instantiation))
22918 reconsider = 1;
22921 complete = COMPLETE_TYPE_P (instantiation);
22923 else
22925 if (!DECL_TEMPLATE_SPECIALIZATION (instantiation)
22926 && !DECL_TEMPLATE_INSTANTIATED (instantiation))
22928 instantiation
22929 = instantiate_decl (instantiation,
22930 /*defer_ok=*/false,
22931 /*expl_inst_class_mem_p=*/false);
22932 if (DECL_TEMPLATE_INSTANTIATED (instantiation))
22933 reconsider = 1;
22936 complete = (DECL_TEMPLATE_SPECIALIZATION (instantiation)
22937 || DECL_TEMPLATE_INSTANTIATED (instantiation));
22940 if (complete)
22941 /* If INSTANTIATION has been instantiated, then we don't
22942 need to consider it again in the future. */
22943 *t = (*t)->next;
22944 else
22946 last = *t;
22947 t = &(*t)->next;
22949 tinst_depth = 0;
22950 current_tinst_level = NULL;
22952 last_pending_template = last;
22954 while (reconsider);
22956 input_location = saved_loc;
22959 /* Substitute ARGVEC into T, which is a list of initializers for
22960 either base class or a non-static data member. The TREE_PURPOSEs
22961 are DECLs, and the TREE_VALUEs are the initializer values. Used by
22962 instantiate_decl. */
22964 static tree
22965 tsubst_initializer_list (tree t, tree argvec)
22967 tree inits = NULL_TREE;
22969 for (; t; t = TREE_CHAIN (t))
22971 tree decl;
22972 tree init;
22973 tree expanded_bases = NULL_TREE;
22974 tree expanded_arguments = NULL_TREE;
22975 int i, len = 1;
22977 if (TREE_CODE (TREE_PURPOSE (t)) == TYPE_PACK_EXPANSION)
22979 tree expr;
22980 tree arg;
22982 /* Expand the base class expansion type into separate base
22983 classes. */
22984 expanded_bases = tsubst_pack_expansion (TREE_PURPOSE (t), argvec,
22985 tf_warning_or_error,
22986 NULL_TREE);
22987 if (expanded_bases == error_mark_node)
22988 continue;
22990 /* We'll be building separate TREE_LISTs of arguments for
22991 each base. */
22992 len = TREE_VEC_LENGTH (expanded_bases);
22993 expanded_arguments = make_tree_vec (len);
22994 for (i = 0; i < len; i++)
22995 TREE_VEC_ELT (expanded_arguments, i) = NULL_TREE;
22997 /* Build a dummy EXPR_PACK_EXPANSION that will be used to
22998 expand each argument in the TREE_VALUE of t. */
22999 expr = make_node (EXPR_PACK_EXPANSION);
23000 PACK_EXPANSION_LOCAL_P (expr) = true;
23001 PACK_EXPANSION_PARAMETER_PACKS (expr) =
23002 PACK_EXPANSION_PARAMETER_PACKS (TREE_PURPOSE (t));
23004 if (TREE_VALUE (t) == void_type_node)
23005 /* VOID_TYPE_NODE is used to indicate
23006 value-initialization. */
23008 for (i = 0; i < len; i++)
23009 TREE_VEC_ELT (expanded_arguments, i) = void_type_node;
23011 else
23013 /* Substitute parameter packs into each argument in the
23014 TREE_LIST. */
23015 in_base_initializer = 1;
23016 for (arg = TREE_VALUE (t); arg; arg = TREE_CHAIN (arg))
23018 tree expanded_exprs;
23020 /* Expand the argument. */
23021 SET_PACK_EXPANSION_PATTERN (expr, TREE_VALUE (arg));
23022 expanded_exprs
23023 = tsubst_pack_expansion (expr, argvec,
23024 tf_warning_or_error,
23025 NULL_TREE);
23026 if (expanded_exprs == error_mark_node)
23027 continue;
23029 /* Prepend each of the expanded expressions to the
23030 corresponding TREE_LIST in EXPANDED_ARGUMENTS. */
23031 for (i = 0; i < len; i++)
23033 TREE_VEC_ELT (expanded_arguments, i) =
23034 tree_cons (NULL_TREE,
23035 TREE_VEC_ELT (expanded_exprs, i),
23036 TREE_VEC_ELT (expanded_arguments, i));
23039 in_base_initializer = 0;
23041 /* Reverse all of the TREE_LISTs in EXPANDED_ARGUMENTS,
23042 since we built them backwards. */
23043 for (i = 0; i < len; i++)
23045 TREE_VEC_ELT (expanded_arguments, i) =
23046 nreverse (TREE_VEC_ELT (expanded_arguments, i));
23051 for (i = 0; i < len; ++i)
23053 if (expanded_bases)
23055 decl = TREE_VEC_ELT (expanded_bases, i);
23056 decl = expand_member_init (decl);
23057 init = TREE_VEC_ELT (expanded_arguments, i);
23059 else
23061 tree tmp;
23062 decl = tsubst_copy (TREE_PURPOSE (t), argvec,
23063 tf_warning_or_error, NULL_TREE);
23065 decl = expand_member_init (decl);
23066 if (decl && !DECL_P (decl))
23067 in_base_initializer = 1;
23069 init = TREE_VALUE (t);
23070 tmp = init;
23071 if (init != void_type_node)
23072 init = tsubst_expr (init, argvec,
23073 tf_warning_or_error, NULL_TREE,
23074 /*integral_constant_expression_p=*/false);
23075 if (init == NULL_TREE && tmp != NULL_TREE)
23076 /* If we had an initializer but it instantiated to nothing,
23077 value-initialize the object. This will only occur when
23078 the initializer was a pack expansion where the parameter
23079 packs used in that expansion were of length zero. */
23080 init = void_type_node;
23081 in_base_initializer = 0;
23084 if (decl)
23086 init = build_tree_list (decl, init);
23087 TREE_CHAIN (init) = inits;
23088 inits = init;
23092 return inits;
23095 /* Set CURRENT_ACCESS_SPECIFIER based on the protection of DECL. */
23097 static void
23098 set_current_access_from_decl (tree decl)
23100 if (TREE_PRIVATE (decl))
23101 current_access_specifier = access_private_node;
23102 else if (TREE_PROTECTED (decl))
23103 current_access_specifier = access_protected_node;
23104 else
23105 current_access_specifier = access_public_node;
23108 /* Instantiate an enumerated type. TAG is the template type, NEWTAG
23109 is the instantiation (which should have been created with
23110 start_enum) and ARGS are the template arguments to use. */
23112 static void
23113 tsubst_enum (tree tag, tree newtag, tree args)
23115 tree e;
23117 if (SCOPED_ENUM_P (newtag))
23118 begin_scope (sk_scoped_enum, newtag);
23120 for (e = TYPE_VALUES (tag); e; e = TREE_CHAIN (e))
23122 tree value;
23123 tree decl;
23125 decl = TREE_VALUE (e);
23126 /* Note that in a template enum, the TREE_VALUE is the
23127 CONST_DECL, not the corresponding INTEGER_CST. */
23128 value = tsubst_expr (DECL_INITIAL (decl),
23129 args, tf_warning_or_error, NULL_TREE,
23130 /*integral_constant_expression_p=*/true);
23132 /* Give this enumeration constant the correct access. */
23133 set_current_access_from_decl (decl);
23135 /* Actually build the enumerator itself. Here we're assuming that
23136 enumerators can't have dependent attributes. */
23137 build_enumerator (DECL_NAME (decl), value, newtag,
23138 DECL_ATTRIBUTES (decl), DECL_SOURCE_LOCATION (decl));
23141 if (SCOPED_ENUM_P (newtag))
23142 finish_scope ();
23144 finish_enum_value_list (newtag);
23145 finish_enum (newtag);
23147 DECL_SOURCE_LOCATION (TYPE_NAME (newtag))
23148 = DECL_SOURCE_LOCATION (TYPE_NAME (tag));
23151 /* DECL is a FUNCTION_DECL that is a template specialization. Return
23152 its type -- but without substituting the innermost set of template
23153 arguments. So, innermost set of template parameters will appear in
23154 the type. */
23156 tree
23157 get_mostly_instantiated_function_type (tree decl)
23159 /* For a function, DECL_TI_TEMPLATE is partially instantiated. */
23160 return TREE_TYPE (DECL_TI_TEMPLATE (decl));
23163 /* Return truthvalue if we're processing a template different from
23164 the last one involved in diagnostics. */
23165 bool
23166 problematic_instantiation_changed (void)
23168 return current_tinst_level != last_error_tinst_level;
23171 /* Remember current template involved in diagnostics. */
23172 void
23173 record_last_problematic_instantiation (void)
23175 last_error_tinst_level = current_tinst_level;
23178 struct tinst_level *
23179 current_instantiation (void)
23181 return current_tinst_level;
23184 /* Return TRUE if current_function_decl is being instantiated, false
23185 otherwise. */
23187 bool
23188 instantiating_current_function_p (void)
23190 return (current_instantiation ()
23191 && current_instantiation ()->decl == current_function_decl);
23194 /* [temp.param] Check that template non-type parm TYPE is of an allowable
23195 type. Return zero for ok, nonzero for disallowed. Issue error and
23196 warning messages under control of COMPLAIN. */
23198 static int
23199 invalid_nontype_parm_type_p (tree type, tsubst_flags_t complain)
23201 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
23202 return 0;
23203 else if (POINTER_TYPE_P (type))
23204 return 0;
23205 else if (TYPE_PTRMEM_P (type))
23206 return 0;
23207 else if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
23208 return 0;
23209 else if (TREE_CODE (type) == TYPENAME_TYPE)
23210 return 0;
23211 else if (TREE_CODE (type) == DECLTYPE_TYPE)
23212 return 0;
23213 else if (TREE_CODE (type) == NULLPTR_TYPE)
23214 return 0;
23215 /* A bound template template parm could later be instantiated to have a valid
23216 nontype parm type via an alias template. */
23217 else if (cxx_dialect >= cxx11
23218 && TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
23219 return 0;
23221 if (complain & tf_error)
23223 if (type == error_mark_node)
23224 inform (input_location, "invalid template non-type parameter");
23225 else
23226 error ("%q#T is not a valid type for a template non-type parameter",
23227 type);
23229 return 1;
23232 /* Returns TRUE if TYPE is dependent, in the sense of [temp.dep.type].
23233 Assumes that TYPE really is a type, and not the ERROR_MARK_NODE.*/
23235 static bool
23236 dependent_type_p_r (tree type)
23238 tree scope;
23240 /* [temp.dep.type]
23242 A type is dependent if it is:
23244 -- a template parameter. Template template parameters are types
23245 for us (since TYPE_P holds true for them) so we handle
23246 them here. */
23247 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
23248 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM)
23249 return true;
23250 /* -- a qualified-id with a nested-name-specifier which contains a
23251 class-name that names a dependent type or whose unqualified-id
23252 names a dependent type. */
23253 if (TREE_CODE (type) == TYPENAME_TYPE)
23254 return true;
23256 /* An alias template specialization can be dependent even if the
23257 resulting type is not. */
23258 if (dependent_alias_template_spec_p (type))
23259 return true;
23261 /* -- a cv-qualified type where the cv-unqualified type is
23262 dependent.
23263 No code is necessary for this bullet; the code below handles
23264 cv-qualified types, and we don't want to strip aliases with
23265 TYPE_MAIN_VARIANT because of DR 1558. */
23266 /* -- a compound type constructed from any dependent type. */
23267 if (TYPE_PTRMEM_P (type))
23268 return (dependent_type_p (TYPE_PTRMEM_CLASS_TYPE (type))
23269 || dependent_type_p (TYPE_PTRMEM_POINTED_TO_TYPE
23270 (type)));
23271 else if (TYPE_PTR_P (type)
23272 || TREE_CODE (type) == REFERENCE_TYPE)
23273 return dependent_type_p (TREE_TYPE (type));
23274 else if (TREE_CODE (type) == FUNCTION_TYPE
23275 || TREE_CODE (type) == METHOD_TYPE)
23277 tree arg_type;
23279 if (dependent_type_p (TREE_TYPE (type)))
23280 return true;
23281 for (arg_type = TYPE_ARG_TYPES (type);
23282 arg_type;
23283 arg_type = TREE_CHAIN (arg_type))
23284 if (dependent_type_p (TREE_VALUE (arg_type)))
23285 return true;
23286 return false;
23288 /* -- an array type constructed from any dependent type or whose
23289 size is specified by a constant expression that is
23290 value-dependent.
23292 We checked for type- and value-dependence of the bounds in
23293 compute_array_index_type, so TYPE_DEPENDENT_P is already set. */
23294 if (TREE_CODE (type) == ARRAY_TYPE)
23296 if (TYPE_DOMAIN (type)
23297 && dependent_type_p (TYPE_DOMAIN (type)))
23298 return true;
23299 return dependent_type_p (TREE_TYPE (type));
23302 /* -- a template-id in which either the template name is a template
23303 parameter ... */
23304 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
23305 return true;
23306 /* ... or any of the template arguments is a dependent type or
23307 an expression that is type-dependent or value-dependent. */
23308 else if (CLASS_TYPE_P (type) && CLASSTYPE_TEMPLATE_INFO (type)
23309 && (any_dependent_template_arguments_p
23310 (INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type)))))
23311 return true;
23313 /* All TYPEOF_TYPEs, DECLTYPE_TYPEs, and UNDERLYING_TYPEs are
23314 dependent; if the argument of the `typeof' expression is not
23315 type-dependent, then it should already been have resolved. */
23316 if (TREE_CODE (type) == TYPEOF_TYPE
23317 || TREE_CODE (type) == DECLTYPE_TYPE
23318 || TREE_CODE (type) == UNDERLYING_TYPE)
23319 return true;
23321 /* A template argument pack is dependent if any of its packed
23322 arguments are. */
23323 if (TREE_CODE (type) == TYPE_ARGUMENT_PACK)
23325 tree args = ARGUMENT_PACK_ARGS (type);
23326 int i, len = TREE_VEC_LENGTH (args);
23327 for (i = 0; i < len; ++i)
23328 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
23329 return true;
23332 /* All TYPE_PACK_EXPANSIONs are dependent, because parameter packs must
23333 be template parameters. */
23334 if (TREE_CODE (type) == TYPE_PACK_EXPANSION)
23335 return true;
23337 if (any_dependent_type_attributes_p (TYPE_ATTRIBUTES (type)))
23338 return true;
23340 /* The standard does not specifically mention types that are local
23341 to template functions or local classes, but they should be
23342 considered dependent too. For example:
23344 template <int I> void f() {
23345 enum E { a = I };
23346 S<sizeof (E)> s;
23349 The size of `E' cannot be known until the value of `I' has been
23350 determined. Therefore, `E' must be considered dependent. */
23351 scope = TYPE_CONTEXT (type);
23352 if (scope && TYPE_P (scope))
23353 return dependent_type_p (scope);
23354 /* Don't use type_dependent_expression_p here, as it can lead
23355 to infinite recursion trying to determine whether a lambda
23356 nested in a lambda is dependent (c++/47687). */
23357 else if (scope && TREE_CODE (scope) == FUNCTION_DECL
23358 && DECL_LANG_SPECIFIC (scope)
23359 && DECL_TEMPLATE_INFO (scope)
23360 && (any_dependent_template_arguments_p
23361 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (scope)))))
23362 return true;
23364 /* Other types are non-dependent. */
23365 return false;
23368 /* Returns TRUE if TYPE is dependent, in the sense of
23369 [temp.dep.type]. Note that a NULL type is considered dependent. */
23371 bool
23372 dependent_type_p (tree type)
23374 /* If there are no template parameters in scope, then there can't be
23375 any dependent types. */
23376 if (!processing_template_decl)
23378 /* If we are not processing a template, then nobody should be
23379 providing us with a dependent type. */
23380 gcc_assert (type);
23381 gcc_assert (TREE_CODE (type) != TEMPLATE_TYPE_PARM || is_auto (type));
23382 return false;
23385 /* If the type is NULL, we have not computed a type for the entity
23386 in question; in that case, the type is dependent. */
23387 if (!type)
23388 return true;
23390 /* Erroneous types can be considered non-dependent. */
23391 if (type == error_mark_node)
23392 return false;
23394 /* If we have not already computed the appropriate value for TYPE,
23395 do so now. */
23396 if (!TYPE_DEPENDENT_P_VALID (type))
23398 TYPE_DEPENDENT_P (type) = dependent_type_p_r (type);
23399 TYPE_DEPENDENT_P_VALID (type) = 1;
23402 return TYPE_DEPENDENT_P (type);
23405 /* Returns TRUE if SCOPE is a dependent scope, in which we can't do any
23406 lookup. In other words, a dependent type that is not the current
23407 instantiation. */
23409 bool
23410 dependent_scope_p (tree scope)
23412 return (scope && TYPE_P (scope) && dependent_type_p (scope)
23413 && !currently_open_class (scope));
23416 /* T is a SCOPE_REF; return whether we need to consider it
23417 instantiation-dependent so that we can check access at instantiation
23418 time even though we know which member it resolves to. */
23420 static bool
23421 instantiation_dependent_scope_ref_p (tree t)
23423 if (DECL_P (TREE_OPERAND (t, 1))
23424 && CLASS_TYPE_P (TREE_OPERAND (t, 0))
23425 && accessible_in_template_p (TREE_OPERAND (t, 0),
23426 TREE_OPERAND (t, 1)))
23427 return false;
23428 else
23429 return true;
23432 /* Returns TRUE if the EXPRESSION is value-dependent, in the sense of
23433 [temp.dep.constexpr]. EXPRESSION is already known to be a constant
23434 expression. */
23436 /* Note that this predicate is not appropriate for general expressions;
23437 only constant expressions (that satisfy potential_constant_expression)
23438 can be tested for value dependence. */
23440 bool
23441 value_dependent_expression_p (tree expression)
23443 if (!processing_template_decl || expression == NULL_TREE)
23444 return false;
23446 /* A name declared with a dependent type. */
23447 if (DECL_P (expression) && type_dependent_expression_p (expression))
23448 return true;
23450 switch (TREE_CODE (expression))
23452 case BASELINK:
23453 /* A dependent member function of the current instantiation. */
23454 return dependent_type_p (BINFO_TYPE (BASELINK_BINFO (expression)));
23456 case FUNCTION_DECL:
23457 /* A dependent member function of the current instantiation. */
23458 if (DECL_CLASS_SCOPE_P (expression)
23459 && dependent_type_p (DECL_CONTEXT (expression)))
23460 return true;
23461 break;
23463 case IDENTIFIER_NODE:
23464 /* A name that has not been looked up -- must be dependent. */
23465 return true;
23467 case TEMPLATE_PARM_INDEX:
23468 /* A non-type template parm. */
23469 return true;
23471 case CONST_DECL:
23472 /* A non-type template parm. */
23473 if (DECL_TEMPLATE_PARM_P (expression))
23474 return true;
23475 return value_dependent_expression_p (DECL_INITIAL (expression));
23477 case VAR_DECL:
23478 /* A constant with literal type and is initialized
23479 with an expression that is value-dependent.
23481 Note that a non-dependent parenthesized initializer will have
23482 already been replaced with its constant value, so if we see
23483 a TREE_LIST it must be dependent. */
23484 if (DECL_INITIAL (expression)
23485 && decl_constant_var_p (expression)
23486 && (TREE_CODE (DECL_INITIAL (expression)) == TREE_LIST
23487 /* cp_finish_decl doesn't fold reference initializers. */
23488 || TREE_CODE (TREE_TYPE (expression)) == REFERENCE_TYPE
23489 || type_dependent_expression_p (DECL_INITIAL (expression))
23490 || value_dependent_expression_p (DECL_INITIAL (expression))))
23491 return true;
23492 return false;
23494 case DYNAMIC_CAST_EXPR:
23495 case STATIC_CAST_EXPR:
23496 case CONST_CAST_EXPR:
23497 case REINTERPRET_CAST_EXPR:
23498 case CAST_EXPR:
23499 /* These expressions are value-dependent if the type to which
23500 the cast occurs is dependent or the expression being casted
23501 is value-dependent. */
23503 tree type = TREE_TYPE (expression);
23505 if (dependent_type_p (type))
23506 return true;
23508 /* A functional cast has a list of operands. */
23509 expression = TREE_OPERAND (expression, 0);
23510 if (!expression)
23512 /* If there are no operands, it must be an expression such
23513 as "int()". This should not happen for aggregate types
23514 because it would form non-constant expressions. */
23515 gcc_assert (cxx_dialect >= cxx11
23516 || INTEGRAL_OR_ENUMERATION_TYPE_P (type));
23518 return false;
23521 if (TREE_CODE (expression) == TREE_LIST)
23522 return any_value_dependent_elements_p (expression);
23524 return value_dependent_expression_p (expression);
23527 case SIZEOF_EXPR:
23528 if (SIZEOF_EXPR_TYPE_P (expression))
23529 return dependent_type_p (TREE_TYPE (TREE_OPERAND (expression, 0)));
23530 /* FALLTHRU */
23531 case ALIGNOF_EXPR:
23532 case TYPEID_EXPR:
23533 /* A `sizeof' expression is value-dependent if the operand is
23534 type-dependent or is a pack expansion. */
23535 expression = TREE_OPERAND (expression, 0);
23536 if (PACK_EXPANSION_P (expression))
23537 return true;
23538 else if (TYPE_P (expression))
23539 return dependent_type_p (expression);
23540 return instantiation_dependent_uneval_expression_p (expression);
23542 case AT_ENCODE_EXPR:
23543 /* An 'encode' expression is value-dependent if the operand is
23544 type-dependent. */
23545 expression = TREE_OPERAND (expression, 0);
23546 return dependent_type_p (expression);
23548 case NOEXCEPT_EXPR:
23549 expression = TREE_OPERAND (expression, 0);
23550 return instantiation_dependent_uneval_expression_p (expression);
23552 case SCOPE_REF:
23553 /* All instantiation-dependent expressions should also be considered
23554 value-dependent. */
23555 return instantiation_dependent_scope_ref_p (expression);
23557 case COMPONENT_REF:
23558 return (value_dependent_expression_p (TREE_OPERAND (expression, 0))
23559 || value_dependent_expression_p (TREE_OPERAND (expression, 1)));
23561 case NONTYPE_ARGUMENT_PACK:
23562 /* A NONTYPE_ARGUMENT_PACK is value-dependent if any packed argument
23563 is value-dependent. */
23565 tree values = ARGUMENT_PACK_ARGS (expression);
23566 int i, len = TREE_VEC_LENGTH (values);
23568 for (i = 0; i < len; ++i)
23569 if (value_dependent_expression_p (TREE_VEC_ELT (values, i)))
23570 return true;
23572 return false;
23575 case TRAIT_EXPR:
23577 tree type2 = TRAIT_EXPR_TYPE2 (expression);
23578 return (dependent_type_p (TRAIT_EXPR_TYPE1 (expression))
23579 || (type2 ? dependent_type_p (type2) : false));
23582 case MODOP_EXPR:
23583 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
23584 || (value_dependent_expression_p (TREE_OPERAND (expression, 2))));
23586 case ARRAY_REF:
23587 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
23588 || (value_dependent_expression_p (TREE_OPERAND (expression, 1))));
23590 case ADDR_EXPR:
23592 tree op = TREE_OPERAND (expression, 0);
23593 return (value_dependent_expression_p (op)
23594 || has_value_dependent_address (op));
23597 case REQUIRES_EXPR:
23598 /* Treat all requires-expressions as value-dependent so
23599 we don't try to fold them. */
23600 return true;
23602 case TYPE_REQ:
23603 return dependent_type_p (TREE_OPERAND (expression, 0));
23605 case CALL_EXPR:
23607 if (value_dependent_expression_p (CALL_EXPR_FN (expression)))
23608 return true;
23609 tree fn = get_callee_fndecl (expression);
23610 int i, nargs;
23611 nargs = call_expr_nargs (expression);
23612 for (i = 0; i < nargs; ++i)
23614 tree op = CALL_EXPR_ARG (expression, i);
23615 /* In a call to a constexpr member function, look through the
23616 implicit ADDR_EXPR on the object argument so that it doesn't
23617 cause the call to be considered value-dependent. We also
23618 look through it in potential_constant_expression. */
23619 if (i == 0 && fn && DECL_DECLARED_CONSTEXPR_P (fn)
23620 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
23621 && TREE_CODE (op) == ADDR_EXPR)
23622 op = TREE_OPERAND (op, 0);
23623 if (value_dependent_expression_p (op))
23624 return true;
23626 return false;
23629 case TEMPLATE_ID_EXPR:
23630 /* If a TEMPLATE_ID_EXPR involves a dependent name, it will be
23631 type-dependent. */
23632 return type_dependent_expression_p (expression)
23633 || variable_concept_p (TREE_OPERAND (expression, 0));
23635 case CONSTRUCTOR:
23637 unsigned ix;
23638 tree val;
23639 if (dependent_type_p (TREE_TYPE (expression)))
23640 return true;
23641 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), ix, val)
23642 if (value_dependent_expression_p (val))
23643 return true;
23644 return false;
23647 case STMT_EXPR:
23648 /* Treat a GNU statement expression as dependent to avoid crashing
23649 under instantiate_non_dependent_expr; it can't be constant. */
23650 return true;
23652 default:
23653 /* A constant expression is value-dependent if any subexpression is
23654 value-dependent. */
23655 switch (TREE_CODE_CLASS (TREE_CODE (expression)))
23657 case tcc_reference:
23658 case tcc_unary:
23659 case tcc_comparison:
23660 case tcc_binary:
23661 case tcc_expression:
23662 case tcc_vl_exp:
23664 int i, len = cp_tree_operand_length (expression);
23666 for (i = 0; i < len; i++)
23668 tree t = TREE_OPERAND (expression, i);
23670 /* In some cases, some of the operands may be missing.l
23671 (For example, in the case of PREDECREMENT_EXPR, the
23672 amount to increment by may be missing.) That doesn't
23673 make the expression dependent. */
23674 if (t && value_dependent_expression_p (t))
23675 return true;
23678 break;
23679 default:
23680 break;
23682 break;
23685 /* The expression is not value-dependent. */
23686 return false;
23689 /* Returns TRUE if the EXPRESSION is type-dependent, in the sense of
23690 [temp.dep.expr]. Note that an expression with no type is
23691 considered dependent. Other parts of the compiler arrange for an
23692 expression with type-dependent subexpressions to have no type, so
23693 this function doesn't have to be fully recursive. */
23695 bool
23696 type_dependent_expression_p (tree expression)
23698 if (!processing_template_decl)
23699 return false;
23701 if (expression == NULL_TREE || expression == error_mark_node)
23702 return false;
23704 /* An unresolved name is always dependent. */
23705 if (identifier_p (expression)
23706 || TREE_CODE (expression) == USING_DECL
23707 || TREE_CODE (expression) == WILDCARD_DECL)
23708 return true;
23710 /* A fold expression is type-dependent. */
23711 if (TREE_CODE (expression) == UNARY_LEFT_FOLD_EXPR
23712 || TREE_CODE (expression) == UNARY_RIGHT_FOLD_EXPR
23713 || TREE_CODE (expression) == BINARY_LEFT_FOLD_EXPR
23714 || TREE_CODE (expression) == BINARY_RIGHT_FOLD_EXPR)
23715 return true;
23717 /* Some expression forms are never type-dependent. */
23718 if (TREE_CODE (expression) == PSEUDO_DTOR_EXPR
23719 || TREE_CODE (expression) == SIZEOF_EXPR
23720 || TREE_CODE (expression) == ALIGNOF_EXPR
23721 || TREE_CODE (expression) == AT_ENCODE_EXPR
23722 || TREE_CODE (expression) == NOEXCEPT_EXPR
23723 || TREE_CODE (expression) == TRAIT_EXPR
23724 || TREE_CODE (expression) == TYPEID_EXPR
23725 || TREE_CODE (expression) == DELETE_EXPR
23726 || TREE_CODE (expression) == VEC_DELETE_EXPR
23727 || TREE_CODE (expression) == THROW_EXPR
23728 || TREE_CODE (expression) == REQUIRES_EXPR)
23729 return false;
23731 /* The types of these expressions depends only on the type to which
23732 the cast occurs. */
23733 if (TREE_CODE (expression) == DYNAMIC_CAST_EXPR
23734 || TREE_CODE (expression) == STATIC_CAST_EXPR
23735 || TREE_CODE (expression) == CONST_CAST_EXPR
23736 || TREE_CODE (expression) == REINTERPRET_CAST_EXPR
23737 || TREE_CODE (expression) == IMPLICIT_CONV_EXPR
23738 || TREE_CODE (expression) == CAST_EXPR)
23739 return dependent_type_p (TREE_TYPE (expression));
23741 /* The types of these expressions depends only on the type created
23742 by the expression. */
23743 if (TREE_CODE (expression) == NEW_EXPR
23744 || TREE_CODE (expression) == VEC_NEW_EXPR)
23746 /* For NEW_EXPR tree nodes created inside a template, either
23747 the object type itself or a TREE_LIST may appear as the
23748 operand 1. */
23749 tree type = TREE_OPERAND (expression, 1);
23750 if (TREE_CODE (type) == TREE_LIST)
23751 /* This is an array type. We need to check array dimensions
23752 as well. */
23753 return dependent_type_p (TREE_VALUE (TREE_PURPOSE (type)))
23754 || value_dependent_expression_p
23755 (TREE_OPERAND (TREE_VALUE (type), 1));
23756 else
23757 return dependent_type_p (type);
23760 if (TREE_CODE (expression) == SCOPE_REF)
23762 tree scope = TREE_OPERAND (expression, 0);
23763 tree name = TREE_OPERAND (expression, 1);
23765 /* 14.6.2.2 [temp.dep.expr]: An id-expression is type-dependent if it
23766 contains an identifier associated by name lookup with one or more
23767 declarations declared with a dependent type, or...a
23768 nested-name-specifier or qualified-id that names a member of an
23769 unknown specialization. */
23770 return (type_dependent_expression_p (name)
23771 || dependent_scope_p (scope));
23774 if (TREE_CODE (expression) == TEMPLATE_DECL
23775 && !DECL_TEMPLATE_TEMPLATE_PARM_P (expression))
23776 return uses_outer_template_parms (expression);
23778 if (TREE_CODE (expression) == STMT_EXPR)
23779 expression = stmt_expr_value_expr (expression);
23781 if (BRACE_ENCLOSED_INITIALIZER_P (expression))
23783 tree elt;
23784 unsigned i;
23786 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), i, elt)
23788 if (type_dependent_expression_p (elt))
23789 return true;
23791 return false;
23794 /* A static data member of the current instantiation with incomplete
23795 array type is type-dependent, as the definition and specializations
23796 can have different bounds. */
23797 if (VAR_P (expression)
23798 && DECL_CLASS_SCOPE_P (expression)
23799 && dependent_type_p (DECL_CONTEXT (expression))
23800 && VAR_HAD_UNKNOWN_BOUND (expression))
23801 return true;
23803 /* An array of unknown bound depending on a variadic parameter, eg:
23805 template<typename... Args>
23806 void foo (Args... args)
23808 int arr[] = { args... };
23811 template<int... vals>
23812 void bar ()
23814 int arr[] = { vals... };
23817 If the array has no length and has an initializer, it must be that
23818 we couldn't determine its length in cp_complete_array_type because
23819 it is dependent. */
23820 if (VAR_P (expression)
23821 && TREE_CODE (TREE_TYPE (expression)) == ARRAY_TYPE
23822 && !TYPE_DOMAIN (TREE_TYPE (expression))
23823 && DECL_INITIAL (expression))
23824 return true;
23826 /* A function or variable template-id is type-dependent if it has any
23827 dependent template arguments. Note that we only consider the innermost
23828 template arguments here, since those are the ones that come from the
23829 template-id; the template arguments for the enclosing class do not make it
23830 type-dependent, they only make a member function value-dependent. */
23831 if (VAR_OR_FUNCTION_DECL_P (expression)
23832 && DECL_LANG_SPECIFIC (expression)
23833 && DECL_TEMPLATE_INFO (expression)
23834 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (expression))
23835 && (any_dependent_template_arguments_p
23836 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (expression)))))
23837 return true;
23839 /* Always dependent, on the number of arguments if nothing else. */
23840 if (TREE_CODE (expression) == EXPR_PACK_EXPANSION)
23841 return true;
23843 if (TREE_TYPE (expression) == unknown_type_node)
23845 if (TREE_CODE (expression) == ADDR_EXPR)
23846 return type_dependent_expression_p (TREE_OPERAND (expression, 0));
23847 if (TREE_CODE (expression) == COMPONENT_REF
23848 || TREE_CODE (expression) == OFFSET_REF)
23850 if (type_dependent_expression_p (TREE_OPERAND (expression, 0)))
23851 return true;
23852 expression = TREE_OPERAND (expression, 1);
23853 if (identifier_p (expression))
23854 return false;
23856 /* SCOPE_REF with non-null TREE_TYPE is always non-dependent. */
23857 if (TREE_CODE (expression) == SCOPE_REF)
23858 return false;
23860 if (BASELINK_P (expression))
23862 if (BASELINK_OPTYPE (expression)
23863 && dependent_type_p (BASELINK_OPTYPE (expression)))
23864 return true;
23865 expression = BASELINK_FUNCTIONS (expression);
23868 if (TREE_CODE (expression) == TEMPLATE_ID_EXPR)
23870 if (any_dependent_template_arguments_p
23871 (TREE_OPERAND (expression, 1)))
23872 return true;
23873 expression = TREE_OPERAND (expression, 0);
23874 if (identifier_p (expression))
23875 return true;
23878 gcc_assert (TREE_CODE (expression) == OVERLOAD
23879 || TREE_CODE (expression) == FUNCTION_DECL);
23881 while (expression)
23883 if (type_dependent_expression_p (OVL_CURRENT (expression)))
23884 return true;
23885 expression = OVL_NEXT (expression);
23887 return false;
23890 gcc_assert (TREE_CODE (expression) != TYPE_DECL);
23892 /* Dependent type attributes might not have made it from the decl to
23893 the type yet. */
23894 if (DECL_P (expression)
23895 && any_dependent_type_attributes_p (DECL_ATTRIBUTES (expression)))
23896 return true;
23898 return (dependent_type_p (TREE_TYPE (expression)));
23901 /* [temp.dep.expr]/5: A class member access expression (5.2.5) is
23902 type-dependent if the expression refers to a member of the current
23903 instantiation and the type of the referenced member is dependent, or the
23904 class member access expression refers to a member of an unknown
23905 specialization.
23907 This function returns true if the OBJECT in such a class member access
23908 expression is of an unknown specialization. */
23910 bool
23911 type_dependent_object_expression_p (tree object)
23913 tree scope = TREE_TYPE (object);
23914 return (!scope || dependent_scope_p (scope));
23917 /* walk_tree callback function for instantiation_dependent_expression_p,
23918 below. Returns non-zero if a dependent subexpression is found. */
23920 static tree
23921 instantiation_dependent_r (tree *tp, int *walk_subtrees,
23922 void * /*data*/)
23924 if (TYPE_P (*tp))
23926 /* We don't have to worry about decltype currently because decltype
23927 of an instantiation-dependent expr is a dependent type. This
23928 might change depending on the resolution of DR 1172. */
23929 *walk_subtrees = false;
23930 return NULL_TREE;
23932 enum tree_code code = TREE_CODE (*tp);
23933 switch (code)
23935 /* Don't treat an argument list as dependent just because it has no
23936 TREE_TYPE. */
23937 case TREE_LIST:
23938 case TREE_VEC:
23939 return NULL_TREE;
23941 case TEMPLATE_PARM_INDEX:
23942 return *tp;
23944 /* Handle expressions with type operands. */
23945 case SIZEOF_EXPR:
23946 case ALIGNOF_EXPR:
23947 case TYPEID_EXPR:
23948 case AT_ENCODE_EXPR:
23950 tree op = TREE_OPERAND (*tp, 0);
23951 if (code == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (*tp))
23952 op = TREE_TYPE (op);
23953 if (TYPE_P (op))
23955 if (dependent_type_p (op))
23956 return *tp;
23957 else
23959 *walk_subtrees = false;
23960 return NULL_TREE;
23963 break;
23966 case COMPONENT_REF:
23967 if (identifier_p (TREE_OPERAND (*tp, 1)))
23968 /* In a template, finish_class_member_access_expr creates a
23969 COMPONENT_REF with an IDENTIFIER_NODE for op1 even if it isn't
23970 type-dependent, so that we can check access control at
23971 instantiation time (PR 42277). See also Core issue 1273. */
23972 return *tp;
23973 break;
23975 case SCOPE_REF:
23976 if (instantiation_dependent_scope_ref_p (*tp))
23977 return *tp;
23978 else
23979 break;
23981 /* Treat statement-expressions as dependent. */
23982 case BIND_EXPR:
23983 return *tp;
23985 /* Treat requires-expressions as dependent. */
23986 case REQUIRES_EXPR:
23987 return *tp;
23989 case CALL_EXPR:
23990 /* Treat calls to function concepts as dependent. */
23991 if (function_concept_check_p (*tp))
23992 return *tp;
23993 break;
23995 case TEMPLATE_ID_EXPR:
23996 /* And variable concepts. */
23997 if (variable_concept_p (TREE_OPERAND (*tp, 0)))
23998 return *tp;
23999 break;
24001 default:
24002 break;
24005 if (type_dependent_expression_p (*tp))
24006 return *tp;
24007 else
24008 return NULL_TREE;
24011 /* Returns TRUE if the EXPRESSION is instantiation-dependent, in the
24012 sense defined by the ABI:
24014 "An expression is instantiation-dependent if it is type-dependent
24015 or value-dependent, or it has a subexpression that is type-dependent
24016 or value-dependent."
24018 Except don't actually check value-dependence for unevaluated expressions,
24019 because in sizeof(i) we don't care about the value of i. Checking
24020 type-dependence will in turn check value-dependence of array bounds/template
24021 arguments as needed. */
24023 bool
24024 instantiation_dependent_uneval_expression_p (tree expression)
24026 tree result;
24028 if (!processing_template_decl)
24029 return false;
24031 if (expression == error_mark_node)
24032 return false;
24034 result = cp_walk_tree_without_duplicates (&expression,
24035 instantiation_dependent_r, NULL);
24036 return result != NULL_TREE;
24039 /* As above, but also check value-dependence of the expression as a whole. */
24041 bool
24042 instantiation_dependent_expression_p (tree expression)
24044 return (instantiation_dependent_uneval_expression_p (expression)
24045 || value_dependent_expression_p (expression));
24048 /* Like type_dependent_expression_p, but it also works while not processing
24049 a template definition, i.e. during substitution or mangling. */
24051 bool
24052 type_dependent_expression_p_push (tree expr)
24054 bool b;
24055 ++processing_template_decl;
24056 b = type_dependent_expression_p (expr);
24057 --processing_template_decl;
24058 return b;
24061 /* Returns TRUE if ARGS contains a type-dependent expression. */
24063 bool
24064 any_type_dependent_arguments_p (const vec<tree, va_gc> *args)
24066 unsigned int i;
24067 tree arg;
24069 FOR_EACH_VEC_SAFE_ELT (args, i, arg)
24071 if (type_dependent_expression_p (arg))
24072 return true;
24074 return false;
24077 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
24078 expressions) contains any type-dependent expressions. */
24080 bool
24081 any_type_dependent_elements_p (const_tree list)
24083 for (; list; list = TREE_CHAIN (list))
24084 if (type_dependent_expression_p (TREE_VALUE (list)))
24085 return true;
24087 return false;
24090 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
24091 expressions) contains any value-dependent expressions. */
24093 bool
24094 any_value_dependent_elements_p (const_tree list)
24096 for (; list; list = TREE_CHAIN (list))
24097 if (value_dependent_expression_p (TREE_VALUE (list)))
24098 return true;
24100 return false;
24103 /* Returns TRUE if the ARG (a template argument) is dependent. */
24105 bool
24106 dependent_template_arg_p (tree arg)
24108 if (!processing_template_decl)
24109 return false;
24111 /* Assume a template argument that was wrongly written by the user
24112 is dependent. This is consistent with what
24113 any_dependent_template_arguments_p [that calls this function]
24114 does. */
24115 if (!arg || arg == error_mark_node)
24116 return true;
24118 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
24119 arg = ARGUMENT_PACK_SELECT_ARG (arg);
24121 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
24122 return true;
24123 if (TREE_CODE (arg) == TEMPLATE_DECL)
24125 if (DECL_TEMPLATE_PARM_P (arg))
24126 return true;
24127 /* A member template of a dependent class is not necessarily
24128 type-dependent, but it is a dependent template argument because it
24129 will be a member of an unknown specialization to that template. */
24130 tree scope = CP_DECL_CONTEXT (arg);
24131 return TYPE_P (scope) && dependent_type_p (scope);
24133 else if (ARGUMENT_PACK_P (arg))
24135 tree args = ARGUMENT_PACK_ARGS (arg);
24136 int i, len = TREE_VEC_LENGTH (args);
24137 for (i = 0; i < len; ++i)
24139 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
24140 return true;
24143 return false;
24145 else if (TYPE_P (arg))
24146 return dependent_type_p (arg);
24147 else
24148 return (type_dependent_expression_p (arg)
24149 || value_dependent_expression_p (arg));
24152 /* Returns true if ARGS (a collection of template arguments) contains
24153 any types that require structural equality testing. */
24155 bool
24156 any_template_arguments_need_structural_equality_p (tree args)
24158 int i;
24159 int j;
24161 if (!args)
24162 return false;
24163 if (args == error_mark_node)
24164 return true;
24166 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
24168 tree level = TMPL_ARGS_LEVEL (args, i + 1);
24169 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
24171 tree arg = TREE_VEC_ELT (level, j);
24172 tree packed_args = NULL_TREE;
24173 int k, len = 1;
24175 if (ARGUMENT_PACK_P (arg))
24177 /* Look inside the argument pack. */
24178 packed_args = ARGUMENT_PACK_ARGS (arg);
24179 len = TREE_VEC_LENGTH (packed_args);
24182 for (k = 0; k < len; ++k)
24184 if (packed_args)
24185 arg = TREE_VEC_ELT (packed_args, k);
24187 if (error_operand_p (arg))
24188 return true;
24189 else if (TREE_CODE (arg) == TEMPLATE_DECL)
24190 continue;
24191 else if (TYPE_P (arg) && TYPE_STRUCTURAL_EQUALITY_P (arg))
24192 return true;
24193 else if (!TYPE_P (arg) && TREE_TYPE (arg)
24194 && TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (arg)))
24195 return true;
24200 return false;
24203 /* Returns true if ARGS (a collection of template arguments) contains
24204 any dependent arguments. */
24206 bool
24207 any_dependent_template_arguments_p (const_tree args)
24209 int i;
24210 int j;
24212 if (!args)
24213 return false;
24214 if (args == error_mark_node)
24215 return true;
24217 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
24219 const_tree level = TMPL_ARGS_LEVEL (args, i + 1);
24220 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
24221 if (dependent_template_arg_p (TREE_VEC_ELT (level, j)))
24222 return true;
24225 return false;
24228 /* Returns TRUE if the template TMPL is type-dependent. */
24230 bool
24231 dependent_template_p (tree tmpl)
24233 if (TREE_CODE (tmpl) == OVERLOAD)
24235 while (tmpl)
24237 if (dependent_template_p (OVL_CURRENT (tmpl)))
24238 return true;
24239 tmpl = OVL_NEXT (tmpl);
24241 return false;
24244 /* Template template parameters are dependent. */
24245 if (DECL_TEMPLATE_TEMPLATE_PARM_P (tmpl)
24246 || TREE_CODE (tmpl) == TEMPLATE_TEMPLATE_PARM)
24247 return true;
24248 /* So are names that have not been looked up. */
24249 if (TREE_CODE (tmpl) == SCOPE_REF || identifier_p (tmpl))
24250 return true;
24251 return false;
24254 /* Returns TRUE if the specialization TMPL<ARGS> is dependent. */
24256 bool
24257 dependent_template_id_p (tree tmpl, tree args)
24259 return (dependent_template_p (tmpl)
24260 || any_dependent_template_arguments_p (args));
24263 /* Returns TRUE if OMP_FOR with DECLV, INITV, CONDV and INCRV vectors
24264 are dependent. */
24266 bool
24267 dependent_omp_for_p (tree declv, tree initv, tree condv, tree incrv)
24269 int i;
24271 if (!processing_template_decl)
24272 return false;
24274 for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
24276 tree decl = TREE_VEC_ELT (declv, i);
24277 tree init = TREE_VEC_ELT (initv, i);
24278 tree cond = TREE_VEC_ELT (condv, i);
24279 tree incr = TREE_VEC_ELT (incrv, i);
24281 if (type_dependent_expression_p (decl)
24282 || TREE_CODE (decl) == SCOPE_REF)
24283 return true;
24285 if (init && type_dependent_expression_p (init))
24286 return true;
24288 if (type_dependent_expression_p (cond))
24289 return true;
24291 if (COMPARISON_CLASS_P (cond)
24292 && (type_dependent_expression_p (TREE_OPERAND (cond, 0))
24293 || type_dependent_expression_p (TREE_OPERAND (cond, 1))))
24294 return true;
24296 if (TREE_CODE (incr) == MODOP_EXPR)
24298 if (type_dependent_expression_p (TREE_OPERAND (incr, 0))
24299 || type_dependent_expression_p (TREE_OPERAND (incr, 2)))
24300 return true;
24302 else if (type_dependent_expression_p (incr))
24303 return true;
24304 else if (TREE_CODE (incr) == MODIFY_EXPR)
24306 if (type_dependent_expression_p (TREE_OPERAND (incr, 0)))
24307 return true;
24308 else if (BINARY_CLASS_P (TREE_OPERAND (incr, 1)))
24310 tree t = TREE_OPERAND (incr, 1);
24311 if (type_dependent_expression_p (TREE_OPERAND (t, 0))
24312 || type_dependent_expression_p (TREE_OPERAND (t, 1)))
24313 return true;
24318 return false;
24321 /* TYPE is a TYPENAME_TYPE. Returns the ordinary TYPE to which the
24322 TYPENAME_TYPE corresponds. Returns the original TYPENAME_TYPE if
24323 no such TYPE can be found. Note that this function peers inside
24324 uninstantiated templates and therefore should be used only in
24325 extremely limited situations. ONLY_CURRENT_P restricts this
24326 peering to the currently open classes hierarchy (which is required
24327 when comparing types). */
24329 tree
24330 resolve_typename_type (tree type, bool only_current_p)
24332 tree scope;
24333 tree name;
24334 tree decl;
24335 int quals;
24336 tree pushed_scope;
24337 tree result;
24339 gcc_assert (TREE_CODE (type) == TYPENAME_TYPE);
24341 scope = TYPE_CONTEXT (type);
24342 /* Usually the non-qualified identifier of a TYPENAME_TYPE is
24343 TYPE_IDENTIFIER (type). But when 'type' is a typedef variant of
24344 a TYPENAME_TYPE node, then TYPE_NAME (type) is set to the TYPE_DECL representing
24345 the typedef. In that case TYPE_IDENTIFIER (type) is not the non-qualified
24346 identifier of the TYPENAME_TYPE anymore.
24347 So by getting the TYPE_IDENTIFIER of the _main declaration_ of the
24348 TYPENAME_TYPE instead, we avoid messing up with a possible
24349 typedef variant case. */
24350 name = TYPE_IDENTIFIER (TYPE_MAIN_VARIANT (type));
24352 /* If the SCOPE is itself a TYPENAME_TYPE, then we need to resolve
24353 it first before we can figure out what NAME refers to. */
24354 if (TREE_CODE (scope) == TYPENAME_TYPE)
24356 if (TYPENAME_IS_RESOLVING_P (scope))
24357 /* Given a class template A with a dependent base with nested type C,
24358 typedef typename A::C::C C will land us here, as trying to resolve
24359 the initial A::C leads to the local C typedef, which leads back to
24360 A::C::C. So we break the recursion now. */
24361 return type;
24362 else
24363 scope = resolve_typename_type (scope, only_current_p);
24365 /* If we don't know what SCOPE refers to, then we cannot resolve the
24366 TYPENAME_TYPE. */
24367 if (!CLASS_TYPE_P (scope))
24368 return type;
24369 /* If this is a typedef, we don't want to look inside (c++/11987). */
24370 if (typedef_variant_p (type))
24371 return type;
24372 /* If SCOPE isn't the template itself, it will not have a valid
24373 TYPE_FIELDS list. */
24374 if (same_type_p (scope, CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope)))
24375 /* scope is either the template itself or a compatible instantiation
24376 like X<T>, so look up the name in the original template. */
24377 scope = CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope);
24378 /* We shouldn't have built a TYPENAME_TYPE with a non-dependent scope. */
24379 gcc_checking_assert (uses_template_parms (scope));
24380 /* If scope has no fields, it can't be a current instantiation. Check this
24381 before currently_open_class to avoid infinite recursion (71515). */
24382 if (!TYPE_FIELDS (scope))
24383 return type;
24384 /* If the SCOPE is not the current instantiation, there's no reason
24385 to look inside it. */
24386 if (only_current_p && !currently_open_class (scope))
24387 return type;
24388 /* Enter the SCOPE so that name lookup will be resolved as if we
24389 were in the class definition. In particular, SCOPE will no
24390 longer be considered a dependent type. */
24391 pushed_scope = push_scope (scope);
24392 /* Look up the declaration. */
24393 decl = lookup_member (scope, name, /*protect=*/0, /*want_type=*/true,
24394 tf_warning_or_error);
24396 result = NULL_TREE;
24398 /* For a TYPENAME_TYPE like "typename X::template Y<T>", we want to
24399 find a TEMPLATE_DECL. Otherwise, we want to find a TYPE_DECL. */
24400 if (!decl)
24401 /*nop*/;
24402 else if (identifier_p (TYPENAME_TYPE_FULLNAME (type))
24403 && TREE_CODE (decl) == TYPE_DECL)
24405 result = TREE_TYPE (decl);
24406 if (result == error_mark_node)
24407 result = NULL_TREE;
24409 else if (TREE_CODE (TYPENAME_TYPE_FULLNAME (type)) == TEMPLATE_ID_EXPR
24410 && DECL_CLASS_TEMPLATE_P (decl))
24412 tree tmpl;
24413 tree args;
24414 /* Obtain the template and the arguments. */
24415 tmpl = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 0);
24416 args = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 1);
24417 /* Instantiate the template. */
24418 result = lookup_template_class (tmpl, args, NULL_TREE, NULL_TREE,
24419 /*entering_scope=*/0,
24420 tf_error | tf_user);
24421 if (result == error_mark_node)
24422 result = NULL_TREE;
24425 /* Leave the SCOPE. */
24426 if (pushed_scope)
24427 pop_scope (pushed_scope);
24429 /* If we failed to resolve it, return the original typename. */
24430 if (!result)
24431 return type;
24433 /* If lookup found a typename type, resolve that too. */
24434 if (TREE_CODE (result) == TYPENAME_TYPE && !TYPENAME_IS_RESOLVING_P (result))
24436 /* Ill-formed programs can cause infinite recursion here, so we
24437 must catch that. */
24438 TYPENAME_IS_RESOLVING_P (result) = 1;
24439 result = resolve_typename_type (result, only_current_p);
24440 TYPENAME_IS_RESOLVING_P (result) = 0;
24443 /* Qualify the resulting type. */
24444 quals = cp_type_quals (type);
24445 if (quals)
24446 result = cp_build_qualified_type (result, cp_type_quals (result) | quals);
24448 return result;
24451 /* EXPR is an expression which is not type-dependent. Return a proxy
24452 for EXPR that can be used to compute the types of larger
24453 expressions containing EXPR. */
24455 tree
24456 build_non_dependent_expr (tree expr)
24458 tree inner_expr;
24460 /* When checking, try to get a constant value for all non-dependent
24461 expressions in order to expose bugs in *_dependent_expression_p
24462 and constexpr. This can affect code generation, see PR70704, so
24463 only do this for -fchecking=2. */
24464 if (flag_checking > 1
24465 && cxx_dialect >= cxx11
24466 /* Don't do this during nsdmi parsing as it can lead to
24467 unexpected recursive instantiations. */
24468 && !parsing_nsdmi ()
24469 /* Don't do this during concept expansion either and for
24470 the same reason. */
24471 && !expanding_concept ())
24472 fold_non_dependent_expr (expr);
24474 /* Preserve OVERLOADs; the functions must be available to resolve
24475 types. */
24476 inner_expr = expr;
24477 if (TREE_CODE (inner_expr) == STMT_EXPR)
24478 inner_expr = stmt_expr_value_expr (inner_expr);
24479 if (TREE_CODE (inner_expr) == ADDR_EXPR)
24480 inner_expr = TREE_OPERAND (inner_expr, 0);
24481 if (TREE_CODE (inner_expr) == COMPONENT_REF)
24482 inner_expr = TREE_OPERAND (inner_expr, 1);
24483 if (is_overloaded_fn (inner_expr)
24484 || TREE_CODE (inner_expr) == OFFSET_REF)
24485 return expr;
24486 /* There is no need to return a proxy for a variable. */
24487 if (VAR_P (expr))
24488 return expr;
24489 /* Preserve string constants; conversions from string constants to
24490 "char *" are allowed, even though normally a "const char *"
24491 cannot be used to initialize a "char *". */
24492 if (TREE_CODE (expr) == STRING_CST)
24493 return expr;
24494 /* Preserve void and arithmetic constants, as an optimization -- there is no
24495 reason to create a new node. */
24496 if (TREE_CODE (expr) == VOID_CST
24497 || TREE_CODE (expr) == INTEGER_CST
24498 || TREE_CODE (expr) == REAL_CST)
24499 return expr;
24500 /* Preserve THROW_EXPRs -- all throw-expressions have type "void".
24501 There is at least one place where we want to know that a
24502 particular expression is a throw-expression: when checking a ?:
24503 expression, there are special rules if the second or third
24504 argument is a throw-expression. */
24505 if (TREE_CODE (expr) == THROW_EXPR)
24506 return expr;
24508 /* Don't wrap an initializer list, we need to be able to look inside. */
24509 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
24510 return expr;
24512 /* Don't wrap a dummy object, we need to be able to test for it. */
24513 if (is_dummy_object (expr))
24514 return expr;
24516 if (TREE_CODE (expr) == COND_EXPR)
24517 return build3 (COND_EXPR,
24518 TREE_TYPE (expr),
24519 TREE_OPERAND (expr, 0),
24520 (TREE_OPERAND (expr, 1)
24521 ? build_non_dependent_expr (TREE_OPERAND (expr, 1))
24522 : build_non_dependent_expr (TREE_OPERAND (expr, 0))),
24523 build_non_dependent_expr (TREE_OPERAND (expr, 2)));
24524 if (TREE_CODE (expr) == COMPOUND_EXPR
24525 && !COMPOUND_EXPR_OVERLOADED (expr))
24526 return build2 (COMPOUND_EXPR,
24527 TREE_TYPE (expr),
24528 TREE_OPERAND (expr, 0),
24529 build_non_dependent_expr (TREE_OPERAND (expr, 1)));
24531 /* If the type is unknown, it can't really be non-dependent */
24532 gcc_assert (TREE_TYPE (expr) != unknown_type_node);
24534 /* Otherwise, build a NON_DEPENDENT_EXPR. */
24535 return build1 (NON_DEPENDENT_EXPR, TREE_TYPE (expr), expr);
24538 /* ARGS is a vector of expressions as arguments to a function call.
24539 Replace the arguments with equivalent non-dependent expressions.
24540 This modifies ARGS in place. */
24542 void
24543 make_args_non_dependent (vec<tree, va_gc> *args)
24545 unsigned int ix;
24546 tree arg;
24548 FOR_EACH_VEC_SAFE_ELT (args, ix, arg)
24550 tree newarg = build_non_dependent_expr (arg);
24551 if (newarg != arg)
24552 (*args)[ix] = newarg;
24556 /* Returns a type which represents 'auto' or 'decltype(auto)'. We use a
24557 TEMPLATE_TYPE_PARM with a level one deeper than the actual template
24558 parms. If set_canonical is true, we set TYPE_CANONICAL on it. */
24560 static tree
24561 make_auto_1 (tree name, bool set_canonical)
24563 tree au = cxx_make_type (TEMPLATE_TYPE_PARM);
24564 TYPE_NAME (au) = build_decl (input_location,
24565 TYPE_DECL, name, au);
24566 TYPE_STUB_DECL (au) = TYPE_NAME (au);
24567 TEMPLATE_TYPE_PARM_INDEX (au) = build_template_parm_index
24568 (0, processing_template_decl + 1, processing_template_decl + 1,
24569 TYPE_NAME (au), NULL_TREE);
24570 if (set_canonical)
24571 TYPE_CANONICAL (au) = canonical_type_parameter (au);
24572 DECL_ARTIFICIAL (TYPE_NAME (au)) = 1;
24573 SET_DECL_TEMPLATE_PARM_P (TYPE_NAME (au));
24575 return au;
24578 tree
24579 make_decltype_auto (void)
24581 return make_auto_1 (decltype_auto_identifier, true);
24584 tree
24585 make_auto (void)
24587 return make_auto_1 (auto_identifier, true);
24590 /* Return a C++17 deduction placeholder for class template TMPL. */
24592 tree
24593 make_template_placeholder (tree tmpl)
24595 tree t = make_auto_1 (DECL_NAME (tmpl), true);
24596 CLASS_PLACEHOLDER_TEMPLATE (t) = tmpl;
24597 return t;
24600 /* Make a "constrained auto" type-specifier. This is an
24601 auto type with constraints that must be associated after
24602 deduction. The constraint is formed from the given
24603 CONC and its optional sequence of arguments, which are
24604 non-null if written as partial-concept-id. */
24606 tree
24607 make_constrained_auto (tree con, tree args)
24609 tree type = make_auto_1 (auto_identifier, false);
24611 /* Build the constraint. */
24612 tree tmpl = DECL_TI_TEMPLATE (con);
24613 tree expr;
24614 if (VAR_P (con))
24615 expr = build_concept_check (tmpl, type, args);
24616 else
24617 expr = build_concept_check (build_overload (tmpl, NULL_TREE), type, args);
24619 tree constr = normalize_expression (expr);
24620 PLACEHOLDER_TYPE_CONSTRAINTS (type) = constr;
24622 /* Our canonical type depends on the constraint. */
24623 TYPE_CANONICAL (type) = canonical_type_parameter (type);
24625 /* Attach the constraint to the type declaration. */
24626 tree decl = TYPE_NAME (type);
24627 return decl;
24630 /* Given type ARG, return std::initializer_list<ARG>. */
24632 static tree
24633 listify (tree arg)
24635 tree std_init_list = namespace_binding
24636 (get_identifier ("initializer_list"), std_node);
24637 tree argvec;
24638 if (!std_init_list || !DECL_CLASS_TEMPLATE_P (std_init_list))
24640 error ("deducing from brace-enclosed initializer list requires "
24641 "#include <initializer_list>");
24642 return error_mark_node;
24644 argvec = make_tree_vec (1);
24645 TREE_VEC_ELT (argvec, 0) = arg;
24646 return lookup_template_class (std_init_list, argvec, NULL_TREE,
24647 NULL_TREE, 0, tf_warning_or_error);
24650 /* Replace auto in TYPE with std::initializer_list<auto>. */
24652 static tree
24653 listify_autos (tree type, tree auto_node)
24655 tree init_auto = listify (auto_node);
24656 tree argvec = make_tree_vec (1);
24657 TREE_VEC_ELT (argvec, 0) = init_auto;
24658 if (processing_template_decl)
24659 argvec = add_to_template_args (current_template_args (), argvec);
24660 return tsubst (type, argvec, tf_warning_or_error, NULL_TREE);
24663 /* Hash traits for hashing possibly constrained 'auto'
24664 TEMPLATE_TYPE_PARMs for use by do_auto_deduction. */
24666 struct auto_hash : default_hash_traits<tree>
24668 static inline hashval_t hash (tree);
24669 static inline bool equal (tree, tree);
24672 /* Hash the 'auto' T. */
24674 inline hashval_t
24675 auto_hash::hash (tree t)
24677 if (tree c = PLACEHOLDER_TYPE_CONSTRAINTS (t))
24678 /* Matching constrained-type-specifiers denote the same template
24679 parameter, so hash the constraint. */
24680 return hash_placeholder_constraint (c);
24681 else
24682 /* But unconstrained autos are all separate, so just hash the pointer. */
24683 return iterative_hash_object (t, 0);
24686 /* Compare two 'auto's. */
24688 inline bool
24689 auto_hash::equal (tree t1, tree t2)
24691 if (t1 == t2)
24692 return true;
24694 tree c1 = PLACEHOLDER_TYPE_CONSTRAINTS (t1);
24695 tree c2 = PLACEHOLDER_TYPE_CONSTRAINTS (t2);
24697 /* Two unconstrained autos are distinct. */
24698 if (!c1 || !c2)
24699 return false;
24701 return equivalent_placeholder_constraints (c1, c2);
24704 /* for_each_template_parm callback for extract_autos: if t is a (possibly
24705 constrained) auto, add it to the vector. */
24707 static int
24708 extract_autos_r (tree t, void *data)
24710 hash_table<auto_hash> &hash = *(hash_table<auto_hash>*)data;
24711 if (is_auto_or_concept (t))
24713 /* All the autos were built with index 0; fix that up now. */
24714 tree *p = hash.find_slot (t, INSERT);
24715 unsigned idx;
24716 if (*p)
24717 /* If this is a repeated constrained-type-specifier, use the index we
24718 chose before. */
24719 idx = TEMPLATE_PARM_IDX (TEMPLATE_TYPE_PARM_INDEX (*p));
24720 else
24722 /* Otherwise this is new, so use the current count. */
24723 *p = t;
24724 idx = hash.elements () - 1;
24726 TEMPLATE_PARM_IDX (TEMPLATE_TYPE_PARM_INDEX (t)) = idx;
24729 /* Always keep walking. */
24730 return 0;
24733 /* Return a TREE_VEC of the 'auto's used in type under the Concepts TS, which
24734 says they can appear anywhere in the type. */
24736 static tree
24737 extract_autos (tree type)
24739 hash_set<tree> visited;
24740 hash_table<auto_hash> hash (2);
24742 for_each_template_parm (type, extract_autos_r, &hash, &visited, true);
24744 tree tree_vec = make_tree_vec (hash.elements());
24745 for (hash_table<auto_hash>::iterator iter = hash.begin();
24746 iter != hash.end(); ++iter)
24748 tree elt = *iter;
24749 unsigned i = TEMPLATE_PARM_IDX (TEMPLATE_TYPE_PARM_INDEX (elt));
24750 TREE_VEC_ELT (tree_vec, i)
24751 = build_tree_list (NULL_TREE, TYPE_NAME (elt));
24754 return tree_vec;
24757 /* The stem for deduction guide names. */
24758 const char *const dguide_base = "__dguide_";
24760 /* Return the name for a deduction guide for class template TMPL. */
24762 tree
24763 dguide_name (tree tmpl)
24765 tree type = (TYPE_P (tmpl) ? tmpl : TREE_TYPE (tmpl));
24766 tree tname = TYPE_IDENTIFIER (type);
24767 char *buf = (char *) alloca (1 + strlen (dguide_base)
24768 + IDENTIFIER_LENGTH (tname));
24769 memcpy (buf, dguide_base, strlen (dguide_base));
24770 memcpy (buf + strlen (dguide_base), IDENTIFIER_POINTER (tname),
24771 IDENTIFIER_LENGTH (tname) + 1);
24772 tree dname = get_identifier (buf);
24773 TREE_TYPE (dname) = type;
24774 return dname;
24777 /* True if NAME is the name of a deduction guide. */
24779 bool
24780 dguide_name_p (tree name)
24782 return (TREE_TYPE (name)
24783 && !strncmp (IDENTIFIER_POINTER (name), dguide_base,
24784 strlen (dguide_base)));
24787 /* True if FN is a deduction guide. */
24789 bool
24790 deduction_guide_p (const_tree fn)
24792 if (DECL_P (fn))
24793 if (tree name = DECL_NAME (fn))
24794 return dguide_name_p (name);
24795 return false;
24798 /* OLDDECL is a _DECL for a template parameter. Return a similar parameter at
24799 LEVEL:INDEX, using tsubst_args and complain for substitution into non-type
24800 template parameter types. Note that the handling of template template
24801 parameters relies on current_template_parms being set appropriately for the
24802 new template. */
24804 static tree
24805 rewrite_template_parm (tree olddecl, unsigned index, unsigned level,
24806 tree tsubst_args, tsubst_flags_t complain)
24808 tree oldidx = get_template_parm_index (olddecl);
24810 tree newtype;
24811 if (TREE_CODE (olddecl) == TYPE_DECL
24812 || TREE_CODE (olddecl) == TEMPLATE_DECL)
24814 tree oldtype = TREE_TYPE (olddecl);
24815 newtype = cxx_make_type (TREE_CODE (oldtype));
24816 TYPE_MAIN_VARIANT (newtype) = newtype;
24817 if (TREE_CODE (oldtype) == TEMPLATE_TYPE_PARM)
24818 TEMPLATE_TYPE_PARM_FOR_CLASS (newtype)
24819 = TEMPLATE_TYPE_PARM_FOR_CLASS (oldtype);
24821 else
24822 newtype = tsubst (TREE_TYPE (olddecl), tsubst_args,
24823 complain, NULL_TREE);
24825 tree newdecl
24826 = build_decl (DECL_SOURCE_LOCATION (olddecl), TREE_CODE (olddecl),
24827 DECL_NAME (olddecl), newtype);
24828 SET_DECL_TEMPLATE_PARM_P (newdecl);
24830 tree newidx;
24831 if (TREE_CODE (olddecl) == TYPE_DECL
24832 || TREE_CODE (olddecl) == TEMPLATE_DECL)
24834 newidx = TEMPLATE_TYPE_PARM_INDEX (newtype)
24835 = build_template_parm_index (index, level, level,
24836 newdecl, newtype);
24837 TYPE_STUB_DECL (newtype) = TYPE_NAME (newtype) = newdecl;
24838 TYPE_CANONICAL (newtype) = canonical_type_parameter (newtype);
24840 if (TREE_CODE (olddecl) == TEMPLATE_DECL)
24842 DECL_TEMPLATE_RESULT (newdecl)
24843 = build_decl (DECL_SOURCE_LOCATION (olddecl), TYPE_DECL,
24844 DECL_NAME (olddecl), newtype);
24845 DECL_ARTIFICIAL (DECL_TEMPLATE_RESULT (newdecl)) = true;
24846 // First create a copy (ttargs) of tsubst_args with an
24847 // additional level for the template template parameter's own
24848 // template parameters (ttparms).
24849 tree ttparms = (INNERMOST_TEMPLATE_PARMS
24850 (DECL_TEMPLATE_PARMS (olddecl)));
24851 const int depth = TMPL_ARGS_DEPTH (tsubst_args);
24852 tree ttargs = make_tree_vec (depth + 1);
24853 for (int i = 0; i < depth; ++i)
24854 TREE_VEC_ELT (ttargs, i) = TREE_VEC_ELT (tsubst_args, i);
24855 TREE_VEC_ELT (ttargs, depth)
24856 = template_parms_level_to_args (ttparms);
24857 // Substitute ttargs into ttparms to fix references to
24858 // other template parameters.
24859 ttparms = tsubst_template_parms_level (ttparms, ttargs,
24860 complain);
24861 // Now substitute again with args based on tparms, to reduce
24862 // the level of the ttparms.
24863 ttargs = current_template_args ();
24864 ttparms = tsubst_template_parms_level (ttparms, ttargs,
24865 complain);
24866 // Finally, tack the adjusted parms onto tparms.
24867 ttparms = tree_cons (size_int (depth), ttparms,
24868 current_template_parms);
24869 DECL_TEMPLATE_PARMS (newdecl) = ttparms;
24872 else
24874 tree oldconst = TEMPLATE_PARM_DECL (oldidx);
24875 tree newconst
24876 = build_decl (DECL_SOURCE_LOCATION (oldconst),
24877 TREE_CODE (oldconst),
24878 DECL_NAME (oldconst), newtype);
24879 TREE_CONSTANT (newconst) = TREE_CONSTANT (newdecl)
24880 = TREE_READONLY (newconst) = TREE_READONLY (newdecl) = true;
24881 SET_DECL_TEMPLATE_PARM_P (newconst);
24882 newidx = build_template_parm_index (index, level, level,
24883 newconst, newtype);
24884 DECL_INITIAL (newdecl) = DECL_INITIAL (newconst) = newidx;
24887 TEMPLATE_PARM_PARAMETER_PACK (newidx)
24888 = TEMPLATE_PARM_PARAMETER_PACK (oldidx);
24889 return newdecl;
24892 /* Returns a C++17 class deduction guide template based on the constructor
24893 CTOR. */
24895 static tree
24896 build_deduction_guide (tree ctor, tree outer_args, tsubst_flags_t complain)
24898 if (outer_args)
24899 ctor = tsubst (ctor, outer_args, complain, ctor);
24900 tree type = DECL_CONTEXT (ctor);
24901 tree fn_tmpl;
24902 if (TREE_CODE (ctor) == TEMPLATE_DECL)
24904 fn_tmpl = ctor;
24905 ctor = DECL_TEMPLATE_RESULT (fn_tmpl);
24907 else
24908 fn_tmpl = DECL_TI_TEMPLATE (ctor);
24910 tree tparms = DECL_TEMPLATE_PARMS (fn_tmpl);
24911 /* If type is a member class template, DECL_TI_ARGS (ctor) will have fully
24912 specialized args for the enclosing class. Strip those off, as the
24913 deduction guide won't have those template parameters. */
24914 tree targs = get_innermost_template_args (DECL_TI_ARGS (ctor),
24915 TMPL_PARMS_DEPTH (tparms));
24916 /* Discard the 'this' parameter. */
24917 tree fparms = FUNCTION_ARG_CHAIN (ctor);
24918 tree fargs = TREE_CHAIN (DECL_ARGUMENTS (ctor));
24919 tree ci = get_constraints (ctor);
24921 if (PRIMARY_TEMPLATE_P (fn_tmpl))
24923 /* For a member template constructor, we need to flatten the two template
24924 parameter lists into one, and then adjust the function signature
24925 accordingly. This gets...complicated. */
24926 ++processing_template_decl;
24927 tree save_parms = current_template_parms;
24929 /* For a member template we should have two levels of parms/args, one for
24930 the class and one for the constructor. We stripped specialized args
24931 for further enclosing classes above. */
24932 const int depth = 2;
24933 gcc_assert (TMPL_ARGS_DEPTH (targs) == depth);
24935 /* Template args for translating references to the two-level template
24936 parameters into references to the one-level template parameters we are
24937 creating. */
24938 tree tsubst_args = copy_node (targs);
24939 TMPL_ARGS_LEVEL (tsubst_args, depth)
24940 = copy_node (TMPL_ARGS_LEVEL (tsubst_args, depth));
24942 /* Template parms for the constructor template. */
24943 tree ftparms = TREE_VALUE (tparms);
24944 unsigned flen = TREE_VEC_LENGTH (ftparms);
24945 /* Template parms for the class template. */
24946 tparms = TREE_CHAIN (tparms);
24947 tree ctparms = TREE_VALUE (tparms);
24948 unsigned clen = TREE_VEC_LENGTH (ctparms);
24949 /* Template parms for the deduction guide start as a copy of the template
24950 parms for the class. We set current_template_parms for
24951 lookup_template_class_1. */
24952 current_template_parms = tparms = copy_node (tparms);
24953 tree new_vec = TREE_VALUE (tparms) = make_tree_vec (flen + clen);
24954 for (unsigned i = 0; i < clen; ++i)
24955 TREE_VEC_ELT (new_vec, i) = TREE_VEC_ELT (ctparms, i);
24957 /* Now we need to rewrite the constructor parms to append them to the
24958 class parms. */
24959 for (unsigned i = 0; i < flen; ++i)
24961 unsigned index = i + clen;
24962 unsigned level = 1;
24963 tree oldelt = TREE_VEC_ELT (ftparms, i);
24964 tree olddecl = TREE_VALUE (oldelt);
24965 tree newdecl = rewrite_template_parm (olddecl, index, level,
24966 tsubst_args, complain);
24967 tree newdef = tsubst_template_arg (TREE_PURPOSE (oldelt),
24968 tsubst_args, complain, ctor);
24969 tree list = build_tree_list (newdef, newdecl);
24970 TEMPLATE_PARM_CONSTRAINTS (list)
24971 = tsubst_constraint_info (TEMPLATE_PARM_CONSTRAINTS (oldelt),
24972 tsubst_args, complain, ctor);
24973 TREE_VEC_ELT (new_vec, index) = list;
24974 TMPL_ARG (tsubst_args, depth, i) = template_parm_to_arg (list);
24977 /* Now we have a final set of template parms to substitute into the
24978 function signature. */
24979 targs = template_parms_to_args (tparms);
24980 fparms = tsubst_arg_types (fparms, tsubst_args, NULL_TREE,
24981 complain, ctor);
24982 fargs = tsubst (fargs, tsubst_args, complain, ctor);
24983 if (ci)
24984 ci = tsubst_constraint_info (ci, tsubst_args, complain, ctor);
24986 current_template_parms = save_parms;
24987 --processing_template_decl;
24989 else
24991 /* Copy the parms so we can set DECL_PRIMARY_TEMPLATE. */
24992 tparms = copy_node (tparms);
24993 INNERMOST_TEMPLATE_PARMS (tparms)
24994 = copy_node (INNERMOST_TEMPLATE_PARMS (tparms));
24997 tree fntype = build_function_type (type, fparms);
24998 tree ded_fn = build_lang_decl_loc (DECL_SOURCE_LOCATION (ctor),
24999 FUNCTION_DECL,
25000 dguide_name (type), fntype);
25001 DECL_ARGUMENTS (ded_fn) = fargs;
25002 DECL_ARTIFICIAL (ded_fn) = true;
25003 DECL_NONCONVERTING_P (ded_fn) = DECL_NONCONVERTING_P (ctor);
25004 tree ded_tmpl = build_template_decl (ded_fn, tparms, /*member*/false);
25005 DECL_ARTIFICIAL (ded_tmpl) = true;
25006 DECL_TEMPLATE_RESULT (ded_tmpl) = ded_fn;
25007 TREE_TYPE (ded_tmpl) = TREE_TYPE (ded_fn);
25008 DECL_TEMPLATE_INFO (ded_fn) = build_template_info (ded_tmpl, targs);
25009 DECL_PRIMARY_TEMPLATE (ded_tmpl) = ded_tmpl;
25010 if (ci)
25011 set_constraints (ded_tmpl, ci);
25013 return ded_tmpl;
25016 /* Deduce template arguments for the class template placeholder PTYPE for
25017 template TMPL based on the initializer INIT, and return the resulting
25018 type. */
25020 static tree
25021 do_class_deduction (tree ptype, tree tmpl, tree init, int flags,
25022 tsubst_flags_t complain)
25024 if (!DECL_CLASS_TEMPLATE_P (tmpl))
25026 /* We should have handled this in the caller. */
25027 if (DECL_TEMPLATE_TEMPLATE_PARM_P (tmpl))
25028 return ptype;
25029 if (complain & tf_error)
25030 error ("non-class template %qT used without template arguments", tmpl);
25031 return error_mark_node;
25034 tree type = TREE_TYPE (tmpl);
25036 vec<tree,va_gc> *args;
25037 if (TREE_CODE (init) == TREE_LIST)
25038 args = make_tree_vector_from_list (init);
25039 else if (BRACE_ENCLOSED_INITIALIZER_P (init))
25040 args = make_tree_vector_from_ctor (init);
25041 else
25042 args = make_tree_vector_single (init);
25044 if (args->length() == 1)
25046 /* First try to deduce directly, since we don't have implicitly-declared
25047 constructors yet. */
25048 tree parms = build_tree_list (NULL_TREE, type);
25049 tree tparms = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (tmpl));
25050 tree targs = make_tree_vec (TREE_VEC_LENGTH (tparms));
25051 int err = type_unification_real (tparms, targs, parms, &(*args)[0],
25052 1, /*subr*/false, DEDUCE_CALL,
25053 LOOKUP_NORMAL, NULL, /*explain*/false);
25054 if (err == 0)
25055 return tsubst (type, targs, complain, tmpl);
25058 tree dname = dguide_name (tmpl);
25059 tree cands = lookup_qualified_name (CP_DECL_CONTEXT (tmpl), dname,
25060 /*type*/false, /*complain*/false,
25061 /*hidden*/false);
25062 if (cands == error_mark_node)
25063 cands = NULL_TREE;
25065 tree outer_args = NULL_TREE;
25066 if (DECL_CLASS_SCOPE_P (tmpl)
25067 && CLASSTYPE_TEMPLATE_INFO (DECL_CONTEXT (tmpl)))
25069 outer_args = CLASSTYPE_TI_ARGS (DECL_CONTEXT (tmpl));
25070 type = TREE_TYPE (most_general_template (tmpl));
25073 if (CLASSTYPE_METHOD_VEC (type))
25074 // FIXME cache artificial deduction guides
25075 for (tree fns = CLASSTYPE_CONSTRUCTORS (type); fns; fns = OVL_NEXT (fns))
25077 tree fn = OVL_CURRENT (fns);
25078 tree guide = build_deduction_guide (fn, outer_args, complain);
25079 cands = ovl_cons (guide, cands);
25082 if (cands == NULL_TREE)
25084 error ("cannot deduce template arguments for %qT, as it has "
25085 "no deduction guides or user-declared constructors", type);
25086 return error_mark_node;
25089 /* Prune explicit deduction guides in copy-initialization context. */
25090 tree old_cands = cands;
25091 if (flags & LOOKUP_ONLYCONVERTING)
25093 tree t = cands;
25094 for (; t; t = OVL_NEXT (t))
25095 if (DECL_NONCONVERTING_P (DECL_TEMPLATE_RESULT (OVL_CURRENT (t))))
25096 break;
25097 if (t)
25099 tree pruned = NULL_TREE;
25100 for (t = cands; t; t = OVL_NEXT (t))
25102 tree f = OVL_CURRENT (t);
25103 if (!DECL_NONCONVERTING_P (DECL_TEMPLATE_RESULT (f)))
25104 pruned = build_overload (f, pruned);
25106 cands = pruned;
25107 if (cands == NULL_TREE)
25109 error ("cannot deduce template arguments for copy-initialization"
25110 " of %qT, as it has no non-explicit deduction guides or "
25111 "user-declared constructors", type);
25112 return error_mark_node;
25117 ++cp_unevaluated_operand;
25118 tree t = build_new_function_call (cands, &args, /*koenig*/false,
25119 tf_decltype);
25121 if (t == error_mark_node && (complain & tf_warning_or_error))
25123 error ("class template argument deduction failed:");
25124 t = build_new_function_call (cands, &args, /*koenig*/false,
25125 complain | tf_decltype);
25126 if (old_cands != cands)
25127 inform (input_location, "explicit deduction guides not considered "
25128 "for copy-initialization");
25131 --cp_unevaluated_operand;
25132 release_tree_vector (args);
25134 return TREE_TYPE (t);
25137 /* Replace occurrences of 'auto' in TYPE with the appropriate type deduced
25138 from INIT. AUTO_NODE is the TEMPLATE_TYPE_PARM used for 'auto' in TYPE. */
25140 tree
25141 do_auto_deduction (tree type, tree init, tree auto_node)
25143 return do_auto_deduction (type, init, auto_node,
25144 tf_warning_or_error,
25145 adc_unspecified);
25148 /* Replace occurrences of 'auto' in TYPE with the appropriate type deduced
25149 from INIT. AUTO_NODE is the TEMPLATE_TYPE_PARM used for 'auto' in TYPE.
25150 The CONTEXT determines the context in which auto deduction is performed
25151 and is used to control error diagnostics. FLAGS are the LOOKUP_* flags.
25152 OUTER_TARGS are used during template argument deduction
25153 (context == adc_unify) to properly substitute the result, and is ignored
25154 in other contexts.
25156 For partial-concept-ids, extra args may be appended to the list of deduced
25157 template arguments prior to determining constraint satisfaction. */
25159 tree
25160 do_auto_deduction (tree type, tree init, tree auto_node,
25161 tsubst_flags_t complain, auto_deduction_context context,
25162 tree outer_targs, int flags)
25164 tree targs;
25166 if (init == error_mark_node)
25167 return error_mark_node;
25169 if (type_dependent_expression_p (init)
25170 && context != adc_unify)
25171 /* Defining a subset of type-dependent expressions that we can deduce
25172 from ahead of time isn't worth the trouble. */
25173 return type;
25175 if (tree tmpl = CLASS_PLACEHOLDER_TEMPLATE (auto_node))
25176 /* C++17 class template argument deduction. */
25177 return do_class_deduction (type, tmpl, init, flags, complain);
25179 /* [dcl.spec.auto]: Obtain P from T by replacing the occurrences of auto
25180 with either a new invented type template parameter U or, if the
25181 initializer is a braced-init-list (8.5.4), with
25182 std::initializer_list<U>. */
25183 if (BRACE_ENCLOSED_INITIALIZER_P (init))
25185 if (!DIRECT_LIST_INIT_P (init))
25186 type = listify_autos (type, auto_node);
25187 else if (CONSTRUCTOR_NELTS (init) == 1)
25188 init = CONSTRUCTOR_ELT (init, 0)->value;
25189 else
25191 if (complain & tf_warning_or_error)
25193 if (permerror (input_location, "direct-list-initialization of "
25194 "%<auto%> requires exactly one element"))
25195 inform (input_location,
25196 "for deduction to %<std::initializer_list%>, use copy-"
25197 "list-initialization (i.e. add %<=%> before the %<{%>)");
25199 type = listify_autos (type, auto_node);
25203 if (type == error_mark_node)
25204 return error_mark_node;
25206 init = resolve_nondeduced_context (init, complain);
25208 if (context == adc_decomp_type
25209 && auto_node == type
25210 && init != error_mark_node
25211 && TREE_CODE (TREE_TYPE (init)) == ARRAY_TYPE)
25212 /* [dcl.decomp]/1 - if decomposition declaration has no ref-qualifiers
25213 and initializer has array type, deduce cv-qualified array type. */
25214 return cp_build_qualified_type_real (TREE_TYPE (init), TYPE_QUALS (type),
25215 complain);
25216 else if (AUTO_IS_DECLTYPE (auto_node))
25218 bool id = (DECL_P (init)
25219 || ((TREE_CODE (init) == COMPONENT_REF
25220 || TREE_CODE (init) == SCOPE_REF)
25221 && !REF_PARENTHESIZED_P (init)));
25222 targs = make_tree_vec (1);
25223 TREE_VEC_ELT (targs, 0)
25224 = finish_decltype_type (init, id, tf_warning_or_error);
25225 if (type != auto_node)
25227 if (complain & tf_error)
25228 error ("%qT as type rather than plain %<decltype(auto)%>", type);
25229 return error_mark_node;
25232 else
25234 tree parms = build_tree_list (NULL_TREE, type);
25235 tree tparms;
25237 if (flag_concepts)
25238 tparms = extract_autos (type);
25239 else
25241 tparms = make_tree_vec (1);
25242 TREE_VEC_ELT (tparms, 0)
25243 = build_tree_list (NULL_TREE, TYPE_NAME (auto_node));
25246 targs = make_tree_vec (TREE_VEC_LENGTH (tparms));
25247 int val = type_unification_real (tparms, targs, parms, &init, 1, 0,
25248 DEDUCE_CALL, LOOKUP_NORMAL,
25249 NULL, /*explain_p=*/false);
25250 if (val > 0)
25252 if (processing_template_decl)
25253 /* Try again at instantiation time. */
25254 return type;
25255 if (type && type != error_mark_node
25256 && (complain & tf_error))
25257 /* If type is error_mark_node a diagnostic must have been
25258 emitted by now. Also, having a mention to '<type error>'
25259 in the diagnostic is not really useful to the user. */
25261 if (cfun && auto_node == current_function_auto_return_pattern
25262 && LAMBDA_FUNCTION_P (current_function_decl))
25263 error ("unable to deduce lambda return type from %qE", init);
25264 else
25265 error ("unable to deduce %qT from %qE", type, init);
25266 type_unification_real (tparms, targs, parms, &init, 1, 0,
25267 DEDUCE_CALL, LOOKUP_NORMAL,
25268 NULL, /*explain_p=*/true);
25270 return error_mark_node;
25274 /* Check any placeholder constraints against the deduced type. */
25275 if (flag_concepts && !processing_template_decl)
25276 if (tree constr = PLACEHOLDER_TYPE_CONSTRAINTS (auto_node))
25278 /* Use the deduced type to check the associated constraints. If we
25279 have a partial-concept-id, rebuild the argument list so that
25280 we check using the extra arguments. */
25281 gcc_assert (TREE_CODE (constr) == CHECK_CONSTR);
25282 tree cargs = CHECK_CONSTR_ARGS (constr);
25283 if (TREE_VEC_LENGTH (cargs) > 1)
25285 cargs = copy_node (cargs);
25286 TREE_VEC_ELT (cargs, 0) = TREE_VEC_ELT (targs, 0);
25288 else
25289 cargs = targs;
25290 if (!constraints_satisfied_p (constr, cargs))
25292 if (complain & tf_warning_or_error)
25294 switch (context)
25296 case adc_unspecified:
25297 case adc_unify:
25298 error("placeholder constraints not satisfied");
25299 break;
25300 case adc_variable_type:
25301 case adc_decomp_type:
25302 error ("deduced initializer does not satisfy "
25303 "placeholder constraints");
25304 break;
25305 case adc_return_type:
25306 error ("deduced return type does not satisfy "
25307 "placeholder constraints");
25308 break;
25309 case adc_requirement:
25310 error ("deduced expression type does not satisfy "
25311 "placeholder constraints");
25312 break;
25314 diagnose_constraints (input_location, constr, targs);
25316 return error_mark_node;
25320 if (processing_template_decl && context != adc_unify)
25321 outer_targs = current_template_args ();
25322 targs = add_to_template_args (outer_targs, targs);
25323 return tsubst (type, targs, complain, NULL_TREE);
25326 /* Substitutes LATE_RETURN_TYPE for 'auto' in TYPE and returns the
25327 result. */
25329 tree
25330 splice_late_return_type (tree type, tree late_return_type)
25332 if (is_auto (type))
25334 if (late_return_type)
25335 return late_return_type;
25337 tree idx = get_template_parm_index (type);
25338 if (TEMPLATE_PARM_LEVEL (idx) <= processing_template_decl)
25339 /* In an abbreviated function template we didn't know we were dealing
25340 with a function template when we saw the auto return type, so update
25341 it to have the correct level. */
25342 return make_auto_1 (TYPE_IDENTIFIER (type), true);
25344 return type;
25347 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto' or
25348 'decltype(auto)' or a deduced class template. */
25350 bool
25351 is_auto (const_tree type)
25353 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
25354 && (TYPE_IDENTIFIER (type) == auto_identifier
25355 || TYPE_IDENTIFIER (type) == decltype_auto_identifier
25356 || CLASS_PLACEHOLDER_TEMPLATE (type)))
25357 return true;
25358 else
25359 return false;
25362 /* for_each_template_parm callback for type_uses_auto. */
25365 is_auto_r (tree tp, void */*data*/)
25367 return is_auto_or_concept (tp);
25370 /* Returns the TEMPLATE_TYPE_PARM in TYPE representing `auto' iff TYPE contains
25371 a use of `auto'. Returns NULL_TREE otherwise. */
25373 tree
25374 type_uses_auto (tree type)
25376 if (type == NULL_TREE)
25377 return NULL_TREE;
25378 else if (flag_concepts)
25380 /* The Concepts TS allows multiple autos in one type-specifier; just
25381 return the first one we find, do_auto_deduction will collect all of
25382 them. */
25383 if (uses_template_parms (type))
25384 return for_each_template_parm (type, is_auto_r, /*data*/NULL,
25385 /*visited*/NULL, /*nondeduced*/true);
25386 else
25387 return NULL_TREE;
25389 else
25390 return find_type_usage (type, is_auto);
25393 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto',
25394 'decltype(auto)' or a concept. */
25396 bool
25397 is_auto_or_concept (const_tree type)
25399 return is_auto (type); // or concept
25402 /* Returns the TEMPLATE_TYPE_PARM in TYPE representing a generic type (`auto' or
25403 a concept identifier) iff TYPE contains a use of a generic type. Returns
25404 NULL_TREE otherwise. */
25406 tree
25407 type_uses_auto_or_concept (tree type)
25409 return find_type_usage (type, is_auto_or_concept);
25413 /* For a given template T, return the vector of typedefs referenced
25414 in T for which access check is needed at T instantiation time.
25415 T is either a FUNCTION_DECL or a RECORD_TYPE.
25416 Those typedefs were added to T by the function
25417 append_type_to_template_for_access_check. */
25419 vec<qualified_typedef_usage_t, va_gc> *
25420 get_types_needing_access_check (tree t)
25422 tree ti;
25423 vec<qualified_typedef_usage_t, va_gc> *result = NULL;
25425 if (!t || t == error_mark_node)
25426 return NULL;
25428 if (!(ti = get_template_info (t)))
25429 return NULL;
25431 if (CLASS_TYPE_P (t)
25432 || TREE_CODE (t) == FUNCTION_DECL)
25434 if (!TI_TEMPLATE (ti))
25435 return NULL;
25437 result = TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti);
25440 return result;
25443 /* Append the typedef TYPE_DECL used in template T to a list of typedefs
25444 tied to T. That list of typedefs will be access checked at
25445 T instantiation time.
25446 T is either a FUNCTION_DECL or a RECORD_TYPE.
25447 TYPE_DECL is a TYPE_DECL node representing a typedef.
25448 SCOPE is the scope through which TYPE_DECL is accessed.
25449 LOCATION is the location of the usage point of TYPE_DECL.
25451 This function is a subroutine of
25452 append_type_to_template_for_access_check. */
25454 static void
25455 append_type_to_template_for_access_check_1 (tree t,
25456 tree type_decl,
25457 tree scope,
25458 location_t location)
25460 qualified_typedef_usage_t typedef_usage;
25461 tree ti;
25463 if (!t || t == error_mark_node)
25464 return;
25466 gcc_assert ((TREE_CODE (t) == FUNCTION_DECL
25467 || CLASS_TYPE_P (t))
25468 && type_decl
25469 && TREE_CODE (type_decl) == TYPE_DECL
25470 && scope);
25472 if (!(ti = get_template_info (t)))
25473 return;
25475 gcc_assert (TI_TEMPLATE (ti));
25477 typedef_usage.typedef_decl = type_decl;
25478 typedef_usage.context = scope;
25479 typedef_usage.locus = location;
25481 vec_safe_push (TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti), typedef_usage);
25484 /* Append TYPE_DECL to the template TEMPL.
25485 TEMPL is either a class type, a FUNCTION_DECL or a a TEMPLATE_DECL.
25486 At TEMPL instanciation time, TYPE_DECL will be checked to see
25487 if it can be accessed through SCOPE.
25488 LOCATION is the location of the usage point of TYPE_DECL.
25490 e.g. consider the following code snippet:
25492 class C
25494 typedef int myint;
25497 template<class U> struct S
25499 C::myint mi; // <-- usage point of the typedef C::myint
25502 S<char> s;
25504 At S<char> instantiation time, we need to check the access of C::myint
25505 In other words, we need to check the access of the myint typedef through
25506 the C scope. For that purpose, this function will add the myint typedef
25507 and the scope C through which its being accessed to a list of typedefs
25508 tied to the template S. That list will be walked at template instantiation
25509 time and access check performed on each typedefs it contains.
25510 Note that this particular code snippet should yield an error because
25511 myint is private to C. */
25513 void
25514 append_type_to_template_for_access_check (tree templ,
25515 tree type_decl,
25516 tree scope,
25517 location_t location)
25519 qualified_typedef_usage_t *iter;
25520 unsigned i;
25522 gcc_assert (type_decl && (TREE_CODE (type_decl) == TYPE_DECL));
25524 /* Make sure we don't append the type to the template twice. */
25525 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (templ), i, iter)
25526 if (iter->typedef_decl == type_decl && scope == iter->context)
25527 return;
25529 append_type_to_template_for_access_check_1 (templ, type_decl,
25530 scope, location);
25533 /* Convert the generic type parameters in PARM that match the types given in the
25534 range [START_IDX, END_IDX) from the current_template_parms into generic type
25535 packs. */
25537 tree
25538 convert_generic_types_to_packs (tree parm, int start_idx, int end_idx)
25540 tree current = current_template_parms;
25541 int depth = TMPL_PARMS_DEPTH (current);
25542 current = INNERMOST_TEMPLATE_PARMS (current);
25543 tree replacement = make_tree_vec (TREE_VEC_LENGTH (current));
25545 for (int i = 0; i < start_idx; ++i)
25546 TREE_VEC_ELT (replacement, i)
25547 = TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (current, i)));
25549 for (int i = start_idx; i < end_idx; ++i)
25551 /* Create a distinct parameter pack type from the current parm and add it
25552 to the replacement args to tsubst below into the generic function
25553 parameter. */
25555 tree o = TREE_TYPE (TREE_VALUE
25556 (TREE_VEC_ELT (current, i)));
25557 tree t = copy_type (o);
25558 TEMPLATE_TYPE_PARM_INDEX (t)
25559 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (o),
25560 o, 0, 0, tf_none);
25561 TREE_TYPE (TEMPLATE_TYPE_DECL (t)) = t;
25562 TYPE_STUB_DECL (t) = TYPE_NAME (t) = TEMPLATE_TYPE_DECL (t);
25563 TYPE_MAIN_VARIANT (t) = t;
25564 TEMPLATE_TYPE_PARAMETER_PACK (t) = true;
25565 TYPE_CANONICAL (t) = canonical_type_parameter (t);
25566 TREE_VEC_ELT (replacement, i) = t;
25567 TREE_VALUE (TREE_VEC_ELT (current, i)) = TREE_CHAIN (t);
25570 for (int i = end_idx, e = TREE_VEC_LENGTH (current); i < e; ++i)
25571 TREE_VEC_ELT (replacement, i)
25572 = TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (current, i)));
25574 /* If there are more levels then build up the replacement with the outer
25575 template parms. */
25576 if (depth > 1)
25577 replacement = add_to_template_args (template_parms_to_args
25578 (TREE_CHAIN (current_template_parms)),
25579 replacement);
25581 return tsubst (parm, replacement, tf_none, NULL_TREE);
25584 /* Entries in the decl_constraint hash table. */
25585 struct GTY((for_user)) constr_entry
25587 tree decl;
25588 tree ci;
25591 /* Hashing function and equality for constraint entries. */
25592 struct constr_hasher : ggc_ptr_hash<constr_entry>
25594 static hashval_t hash (constr_entry *e)
25596 return (hashval_t)DECL_UID (e->decl);
25599 static bool equal (constr_entry *e1, constr_entry *e2)
25601 return e1->decl == e2->decl;
25605 /* A mapping from declarations to constraint information. Note that
25606 both templates and their underlying declarations are mapped to the
25607 same constraint information.
25609 FIXME: This is defined in pt.c because garbage collection
25610 code is not being generated for constraint.cc. */
25612 static GTY (()) hash_table<constr_hasher> *decl_constraints;
25614 /* Returns the template constraints of declaration T. If T is not
25615 constrained, return NULL_TREE. Note that T must be non-null. */
25617 tree
25618 get_constraints (tree t)
25620 if (!flag_concepts)
25621 return NULL_TREE;
25623 gcc_assert (DECL_P (t));
25624 if (TREE_CODE (t) == TEMPLATE_DECL)
25625 t = DECL_TEMPLATE_RESULT (t);
25626 constr_entry elt = { t, NULL_TREE };
25627 constr_entry* found = decl_constraints->find (&elt);
25628 if (found)
25629 return found->ci;
25630 else
25631 return NULL_TREE;
25634 /* Associate the given constraint information CI with the declaration
25635 T. If T is a template, then the constraints are associated with
25636 its underlying declaration. Don't build associations if CI is
25637 NULL_TREE. */
25639 void
25640 set_constraints (tree t, tree ci)
25642 if (!ci)
25643 return;
25644 gcc_assert (t && flag_concepts);
25645 if (TREE_CODE (t) == TEMPLATE_DECL)
25646 t = DECL_TEMPLATE_RESULT (t);
25647 gcc_assert (!get_constraints (t));
25648 constr_entry elt = {t, ci};
25649 constr_entry** slot = decl_constraints->find_slot (&elt, INSERT);
25650 constr_entry* entry = ggc_alloc<constr_entry> ();
25651 *entry = elt;
25652 *slot = entry;
25655 /* Remove the associated constraints of the declaration T. */
25657 void
25658 remove_constraints (tree t)
25660 gcc_assert (DECL_P (t));
25661 if (TREE_CODE (t) == TEMPLATE_DECL)
25662 t = DECL_TEMPLATE_RESULT (t);
25664 constr_entry elt = {t, NULL_TREE};
25665 constr_entry** slot = decl_constraints->find_slot (&elt, NO_INSERT);
25666 if (slot)
25667 decl_constraints->clear_slot (slot);
25670 /* Memoized satisfaction results for declarations. This
25671 maps the pair (constraint_info, arguments) to the result computed
25672 by constraints_satisfied_p. */
25674 struct GTY((for_user)) constraint_sat_entry
25676 tree ci;
25677 tree args;
25678 tree result;
25681 /* Hashing function and equality for constraint entries. */
25683 struct constraint_sat_hasher : ggc_ptr_hash<constraint_sat_entry>
25685 static hashval_t hash (constraint_sat_entry *e)
25687 hashval_t val = iterative_hash_object(e->ci, 0);
25688 return iterative_hash_template_arg (e->args, val);
25691 static bool equal (constraint_sat_entry *e1, constraint_sat_entry *e2)
25693 return e1->ci == e2->ci && comp_template_args (e1->args, e2->args);
25697 /* Memoized satisfaction results for concept checks. */
25699 struct GTY((for_user)) concept_spec_entry
25701 tree tmpl;
25702 tree args;
25703 tree result;
25706 /* Hashing function and equality for constraint entries. */
25708 struct concept_spec_hasher : ggc_ptr_hash<concept_spec_entry>
25710 static hashval_t hash (concept_spec_entry *e)
25712 return hash_tmpl_and_args (e->tmpl, e->args);
25715 static bool equal (concept_spec_entry *e1, concept_spec_entry *e2)
25717 ++comparing_specializations;
25718 bool eq = e1->tmpl == e2->tmpl && comp_template_args (e1->args, e2->args);
25719 --comparing_specializations;
25720 return eq;
25724 static GTY (()) hash_table<constraint_sat_hasher> *constraint_memos;
25725 static GTY (()) hash_table<concept_spec_hasher> *concept_memos;
25727 /* Search for a memoized satisfaction result. Returns one of the
25728 truth value nodes if previously memoized, or NULL_TREE otherwise. */
25730 tree
25731 lookup_constraint_satisfaction (tree ci, tree args)
25733 constraint_sat_entry elt = { ci, args, NULL_TREE };
25734 constraint_sat_entry* found = constraint_memos->find (&elt);
25735 if (found)
25736 return found->result;
25737 else
25738 return NULL_TREE;
25741 /* Memoize the result of a satisfication test. Returns the saved result. */
25743 tree
25744 memoize_constraint_satisfaction (tree ci, tree args, tree result)
25746 constraint_sat_entry elt = {ci, args, result};
25747 constraint_sat_entry** slot = constraint_memos->find_slot (&elt, INSERT);
25748 constraint_sat_entry* entry = ggc_alloc<constraint_sat_entry> ();
25749 *entry = elt;
25750 *slot = entry;
25751 return result;
25754 /* Search for a memoized satisfaction result for a concept. */
25756 tree
25757 lookup_concept_satisfaction (tree tmpl, tree args)
25759 concept_spec_entry elt = { tmpl, args, NULL_TREE };
25760 concept_spec_entry* found = concept_memos->find (&elt);
25761 if (found)
25762 return found->result;
25763 else
25764 return NULL_TREE;
25767 /* Memoize the result of a concept check. Returns the saved result. */
25769 tree
25770 memoize_concept_satisfaction (tree tmpl, tree args, tree result)
25772 concept_spec_entry elt = {tmpl, args, result};
25773 concept_spec_entry** slot = concept_memos->find_slot (&elt, INSERT);
25774 concept_spec_entry* entry = ggc_alloc<concept_spec_entry> ();
25775 *entry = elt;
25776 *slot = entry;
25777 return result;
25780 static GTY (()) hash_table<concept_spec_hasher> *concept_expansions;
25782 /* Returns a prior concept specialization. This returns the substituted
25783 and normalized constraints defined by the concept. */
25785 tree
25786 get_concept_expansion (tree tmpl, tree args)
25788 concept_spec_entry elt = { tmpl, args, NULL_TREE };
25789 concept_spec_entry* found = concept_expansions->find (&elt);
25790 if (found)
25791 return found->result;
25792 else
25793 return NULL_TREE;
25796 /* Save a concept expansion for later. */
25798 tree
25799 save_concept_expansion (tree tmpl, tree args, tree def)
25801 concept_spec_entry elt = {tmpl, args, def};
25802 concept_spec_entry** slot = concept_expansions->find_slot (&elt, INSERT);
25803 concept_spec_entry* entry = ggc_alloc<concept_spec_entry> ();
25804 *entry = elt;
25805 *slot = entry;
25806 return def;
25809 static hashval_t
25810 hash_subsumption_args (tree t1, tree t2)
25812 gcc_assert (TREE_CODE (t1) == CHECK_CONSTR);
25813 gcc_assert (TREE_CODE (t2) == CHECK_CONSTR);
25814 int val = 0;
25815 val = iterative_hash_object (CHECK_CONSTR_CONCEPT (t1), val);
25816 val = iterative_hash_template_arg (CHECK_CONSTR_ARGS (t1), val);
25817 val = iterative_hash_object (CHECK_CONSTR_CONCEPT (t2), val);
25818 val = iterative_hash_template_arg (CHECK_CONSTR_ARGS (t2), val);
25819 return val;
25822 /* Compare the constraints of two subsumption entries. The LEFT1 and
25823 LEFT2 arguments comprise the first subsumption pair and the RIGHT1
25824 and RIGHT2 arguments comprise the second. These are all CHECK_CONSTRs. */
25826 static bool
25827 comp_subsumption_args (tree left1, tree left2, tree right1, tree right2)
25829 if (CHECK_CONSTR_CONCEPT (left1) == CHECK_CONSTR_CONCEPT (right1))
25830 if (CHECK_CONSTR_CONCEPT (left2) == CHECK_CONSTR_CONCEPT (right2))
25831 if (comp_template_args (CHECK_CONSTR_ARGS (left1),
25832 CHECK_CONSTR_ARGS (right1)))
25833 return comp_template_args (CHECK_CONSTR_ARGS (left2),
25834 CHECK_CONSTR_ARGS (right2));
25835 return false;
25838 /* Key/value pair for learning and memoizing subsumption results. This
25839 associates a pair of check constraints (including arguments) with
25840 a boolean value indicating the result. */
25842 struct GTY((for_user)) subsumption_entry
25844 tree t1;
25845 tree t2;
25846 bool result;
25849 /* Hashing function and equality for constraint entries. */
25851 struct subsumption_hasher : ggc_ptr_hash<subsumption_entry>
25853 static hashval_t hash (subsumption_entry *e)
25855 return hash_subsumption_args (e->t1, e->t2);
25858 static bool equal (subsumption_entry *e1, subsumption_entry *e2)
25860 ++comparing_specializations;
25861 bool eq = comp_subsumption_args(e1->t1, e1->t2, e2->t1, e2->t2);
25862 --comparing_specializations;
25863 return eq;
25867 static GTY (()) hash_table<subsumption_hasher> *subsumption_table;
25869 /* Search for a previously cached subsumption result. */
25871 bool*
25872 lookup_subsumption_result (tree t1, tree t2)
25874 subsumption_entry elt = { t1, t2, false };
25875 subsumption_entry* found = subsumption_table->find (&elt);
25876 if (found)
25877 return &found->result;
25878 else
25879 return 0;
25882 /* Save a subsumption result. */
25884 bool
25885 save_subsumption_result (tree t1, tree t2, bool result)
25887 subsumption_entry elt = {t1, t2, result};
25888 subsumption_entry** slot = subsumption_table->find_slot (&elt, INSERT);
25889 subsumption_entry* entry = ggc_alloc<subsumption_entry> ();
25890 *entry = elt;
25891 *slot = entry;
25892 return result;
25895 /* Set up the hash table for constraint association. */
25897 void
25898 init_constraint_processing (void)
25900 if (!flag_concepts)
25901 return;
25903 decl_constraints = hash_table<constr_hasher>::create_ggc(37);
25904 constraint_memos = hash_table<constraint_sat_hasher>::create_ggc(37);
25905 concept_memos = hash_table<concept_spec_hasher>::create_ggc(37);
25906 concept_expansions = hash_table<concept_spec_hasher>::create_ggc(37);
25907 subsumption_table = hash_table<subsumption_hasher>::create_ggc(37);
25910 /* Set up the hash tables for template instantiations. */
25912 void
25913 init_template_processing (void)
25915 decl_specializations = hash_table<spec_hasher>::create_ggc (37);
25916 type_specializations = hash_table<spec_hasher>::create_ggc (37);
25919 /* Print stats about the template hash tables for -fstats. */
25921 void
25922 print_template_statistics (void)
25924 fprintf (stderr, "decl_specializations: size %ld, %ld elements, "
25925 "%f collisions\n", (long) decl_specializations->size (),
25926 (long) decl_specializations->elements (),
25927 decl_specializations->collisions ());
25928 fprintf (stderr, "type_specializations: size %ld, %ld elements, "
25929 "%f collisions\n", (long) type_specializations->size (),
25930 (long) type_specializations->elements (),
25931 type_specializations->collisions ());
25934 #include "gt-cp-pt.h"