2017-04-24 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / cp / pt.c
blobf8436b30b37172436ccd37f9a42922debc938d71
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 tree dd = duplicate_decls (spec, fn, is_friend);
1603 if (dd == error_mark_node)
1604 /* We've already complained in duplicate_decls. */
1605 return error_mark_node;
1607 if (dd == NULL_TREE && DECL_INITIAL (spec))
1608 /* Dup decl failed, but this is a new definition. Set the
1609 line number so any errors match this new
1610 definition. */
1611 DECL_SOURCE_LOCATION (fn) = DECL_SOURCE_LOCATION (spec);
1613 return fn;
1616 else if (fn)
1617 return duplicate_decls (spec, fn, is_friend);
1619 /* A specialization must be declared in the same namespace as the
1620 template it is specializing. */
1621 if (DECL_P (spec) && DECL_TEMPLATE_SPECIALIZATION (spec)
1622 && !check_specialization_namespace (tmpl))
1623 DECL_CONTEXT (spec) = DECL_CONTEXT (tmpl);
1625 if (slot != NULL /* !optimize_specialization_lookup_p (tmpl) */)
1627 spec_entry *entry = ggc_alloc<spec_entry> ();
1628 gcc_assert (tmpl && args && spec);
1629 *entry = elt;
1630 *slot = entry;
1631 if ((TREE_CODE (spec) == FUNCTION_DECL && DECL_NAMESPACE_SCOPE_P (spec)
1632 && PRIMARY_TEMPLATE_P (tmpl)
1633 && DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (tmpl)) == NULL_TREE)
1634 || variable_template_p (tmpl))
1635 /* If TMPL is a forward declaration of a template function, keep a list
1636 of all specializations in case we need to reassign them to a friend
1637 template later in tsubst_friend_function.
1639 Also keep a list of all variable template instantiations so that
1640 process_partial_specialization can check whether a later partial
1641 specialization would have used it. */
1642 DECL_TEMPLATE_INSTANTIATIONS (tmpl)
1643 = tree_cons (args, spec, DECL_TEMPLATE_INSTANTIATIONS (tmpl));
1646 return spec;
1649 /* Returns true iff two spec_entry nodes are equivalent. */
1651 int comparing_specializations;
1653 bool
1654 spec_hasher::equal (spec_entry *e1, spec_entry *e2)
1656 int equal;
1658 ++comparing_specializations;
1659 equal = (e1->tmpl == e2->tmpl
1660 && comp_template_args (e1->args, e2->args));
1661 if (equal && flag_concepts
1662 /* tmpl could be a FIELD_DECL for a capture pack. */
1663 && TREE_CODE (e1->tmpl) == TEMPLATE_DECL
1664 && VAR_P (DECL_TEMPLATE_RESULT (e1->tmpl))
1665 && uses_template_parms (e1->args))
1667 /* Partial specializations of a variable template can be distinguished by
1668 constraints. */
1669 tree c1 = e1->spec ? get_constraints (e1->spec) : NULL_TREE;
1670 tree c2 = e2->spec ? get_constraints (e2->spec) : NULL_TREE;
1671 equal = equivalent_constraints (c1, c2);
1673 --comparing_specializations;
1675 return equal;
1678 /* Returns a hash for a template TMPL and template arguments ARGS. */
1680 static hashval_t
1681 hash_tmpl_and_args (tree tmpl, tree args)
1683 hashval_t val = iterative_hash_object (DECL_UID (tmpl), 0);
1684 return iterative_hash_template_arg (args, val);
1687 /* Returns a hash for a spec_entry node based on the TMPL and ARGS members,
1688 ignoring SPEC. */
1690 hashval_t
1691 spec_hasher::hash (spec_entry *e)
1693 return hash_tmpl_and_args (e->tmpl, e->args);
1696 /* Recursively calculate a hash value for a template argument ARG, for use
1697 in the hash tables of template specializations. */
1699 hashval_t
1700 iterative_hash_template_arg (tree arg, hashval_t val)
1702 unsigned HOST_WIDE_INT i;
1703 enum tree_code code;
1704 char tclass;
1706 if (arg == NULL_TREE)
1707 return iterative_hash_object (arg, val);
1709 if (!TYPE_P (arg))
1710 STRIP_NOPS (arg);
1712 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
1713 gcc_unreachable ();
1715 code = TREE_CODE (arg);
1716 tclass = TREE_CODE_CLASS (code);
1718 val = iterative_hash_object (code, val);
1720 switch (code)
1722 case ERROR_MARK:
1723 return val;
1725 case IDENTIFIER_NODE:
1726 return iterative_hash_object (IDENTIFIER_HASH_VALUE (arg), val);
1728 case TREE_VEC:
1730 int i, len = TREE_VEC_LENGTH (arg);
1731 for (i = 0; i < len; ++i)
1732 val = iterative_hash_template_arg (TREE_VEC_ELT (arg, i), val);
1733 return val;
1736 case TYPE_PACK_EXPANSION:
1737 case EXPR_PACK_EXPANSION:
1738 val = iterative_hash_template_arg (PACK_EXPANSION_PATTERN (arg), val);
1739 return iterative_hash_template_arg (PACK_EXPANSION_EXTRA_ARGS (arg), val);
1741 case TYPE_ARGUMENT_PACK:
1742 case NONTYPE_ARGUMENT_PACK:
1743 return iterative_hash_template_arg (ARGUMENT_PACK_ARGS (arg), val);
1745 case TREE_LIST:
1746 for (; arg; arg = TREE_CHAIN (arg))
1747 val = iterative_hash_template_arg (TREE_VALUE (arg), val);
1748 return val;
1750 case OVERLOAD:
1751 for (; arg; arg = OVL_NEXT (arg))
1752 val = iterative_hash_template_arg (OVL_CURRENT (arg), val);
1753 return val;
1755 case CONSTRUCTOR:
1757 tree field, value;
1758 iterative_hash_template_arg (TREE_TYPE (arg), val);
1759 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (arg), i, field, value)
1761 val = iterative_hash_template_arg (field, val);
1762 val = iterative_hash_template_arg (value, val);
1764 return val;
1767 case PARM_DECL:
1768 if (!DECL_ARTIFICIAL (arg))
1770 val = iterative_hash_object (DECL_PARM_INDEX (arg), val);
1771 val = iterative_hash_object (DECL_PARM_LEVEL (arg), val);
1773 return iterative_hash_template_arg (TREE_TYPE (arg), val);
1775 case TARGET_EXPR:
1776 return iterative_hash_template_arg (TARGET_EXPR_INITIAL (arg), val);
1778 case PTRMEM_CST:
1779 val = iterative_hash_template_arg (PTRMEM_CST_CLASS (arg), val);
1780 return iterative_hash_template_arg (PTRMEM_CST_MEMBER (arg), val);
1782 case TEMPLATE_PARM_INDEX:
1783 val = iterative_hash_template_arg
1784 (TREE_TYPE (TEMPLATE_PARM_DECL (arg)), val);
1785 val = iterative_hash_object (TEMPLATE_PARM_LEVEL (arg), val);
1786 return iterative_hash_object (TEMPLATE_PARM_IDX (arg), val);
1788 case TRAIT_EXPR:
1789 val = iterative_hash_object (TRAIT_EXPR_KIND (arg), val);
1790 val = iterative_hash_template_arg (TRAIT_EXPR_TYPE1 (arg), val);
1791 return iterative_hash_template_arg (TRAIT_EXPR_TYPE2 (arg), val);
1793 case BASELINK:
1794 val = iterative_hash_template_arg (BINFO_TYPE (BASELINK_BINFO (arg)),
1795 val);
1796 return iterative_hash_template_arg (DECL_NAME (get_first_fn (arg)),
1797 val);
1799 case MODOP_EXPR:
1800 val = iterative_hash_template_arg (TREE_OPERAND (arg, 0), val);
1801 code = TREE_CODE (TREE_OPERAND (arg, 1));
1802 val = iterative_hash_object (code, val);
1803 return iterative_hash_template_arg (TREE_OPERAND (arg, 2), val);
1805 case LAMBDA_EXPR:
1806 /* A lambda can't appear in a template arg, but don't crash on
1807 erroneous input. */
1808 gcc_assert (seen_error ());
1809 return val;
1811 case CAST_EXPR:
1812 case IMPLICIT_CONV_EXPR:
1813 case STATIC_CAST_EXPR:
1814 case REINTERPRET_CAST_EXPR:
1815 case CONST_CAST_EXPR:
1816 case DYNAMIC_CAST_EXPR:
1817 case NEW_EXPR:
1818 val = iterative_hash_template_arg (TREE_TYPE (arg), val);
1819 /* Now hash operands as usual. */
1820 break;
1822 default:
1823 break;
1826 switch (tclass)
1828 case tcc_type:
1829 if (alias_template_specialization_p (arg))
1831 // We want an alias specialization that survived strip_typedefs
1832 // to hash differently from its TYPE_CANONICAL, to avoid hash
1833 // collisions that compare as different in template_args_equal.
1834 // These could be dependent specializations that strip_typedefs
1835 // left alone, or untouched specializations because
1836 // coerce_template_parms returns the unconverted template
1837 // arguments if it sees incomplete argument packs.
1838 tree ti = TYPE_ALIAS_TEMPLATE_INFO (arg);
1839 return hash_tmpl_and_args (TI_TEMPLATE (ti), TI_ARGS (ti));
1841 if (TYPE_CANONICAL (arg))
1842 return iterative_hash_object (TYPE_HASH (TYPE_CANONICAL (arg)),
1843 val);
1844 else if (TREE_CODE (arg) == DECLTYPE_TYPE)
1845 return iterative_hash_template_arg (DECLTYPE_TYPE_EXPR (arg), val);
1846 /* Otherwise just compare the types during lookup. */
1847 return val;
1849 case tcc_declaration:
1850 case tcc_constant:
1851 return iterative_hash_expr (arg, val);
1853 default:
1854 gcc_assert (IS_EXPR_CODE_CLASS (tclass));
1856 unsigned n = cp_tree_operand_length (arg);
1857 for (i = 0; i < n; ++i)
1858 val = iterative_hash_template_arg (TREE_OPERAND (arg, i), val);
1859 return val;
1862 gcc_unreachable ();
1863 return 0;
1866 /* Unregister the specialization SPEC as a specialization of TMPL.
1867 Replace it with NEW_SPEC, if NEW_SPEC is non-NULL. Returns true
1868 if the SPEC was listed as a specialization of TMPL.
1870 Note that SPEC has been ggc_freed, so we can't look inside it. */
1872 bool
1873 reregister_specialization (tree spec, tree tinfo, tree new_spec)
1875 spec_entry *entry;
1876 spec_entry elt;
1878 elt.tmpl = most_general_template (TI_TEMPLATE (tinfo));
1879 elt.args = TI_ARGS (tinfo);
1880 elt.spec = NULL_TREE;
1882 entry = decl_specializations->find (&elt);
1883 if (entry != NULL)
1885 gcc_assert (entry->spec == spec || entry->spec == new_spec);
1886 gcc_assert (new_spec != NULL_TREE);
1887 entry->spec = new_spec;
1888 return 1;
1891 return 0;
1894 /* Like register_specialization, but for local declarations. We are
1895 registering SPEC, an instantiation of TMPL. */
1897 void
1898 register_local_specialization (tree spec, tree tmpl)
1900 local_specializations->put (tmpl, spec);
1903 /* TYPE is a class type. Returns true if TYPE is an explicitly
1904 specialized class. */
1906 bool
1907 explicit_class_specialization_p (tree type)
1909 if (!CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
1910 return false;
1911 return !uses_template_parms (CLASSTYPE_TI_ARGS (type));
1914 /* Print the list of functions at FNS, going through all the overloads
1915 for each element of the list. Alternatively, FNS can not be a
1916 TREE_LIST, in which case it will be printed together with all the
1917 overloads.
1919 MORE and *STR should respectively be FALSE and NULL when the function
1920 is called from the outside. They are used internally on recursive
1921 calls. print_candidates manages the two parameters and leaves NULL
1922 in *STR when it ends. */
1924 static void
1925 print_candidates_1 (tree fns, bool more, const char **str)
1927 tree fn, fn2;
1928 char *spaces = NULL;
1930 for (fn = fns; fn; fn = OVL_NEXT (fn))
1931 if (TREE_CODE (fn) == TREE_LIST)
1933 for (fn2 = fn; fn2 != NULL_TREE; fn2 = TREE_CHAIN (fn2))
1934 print_candidates_1 (TREE_VALUE (fn2),
1935 TREE_CHAIN (fn2) || more, str);
1937 else
1939 tree cand = OVL_CURRENT (fn);
1940 if (!*str)
1942 /* Pick the prefix string. */
1943 if (!more && !OVL_NEXT (fns))
1945 inform (DECL_SOURCE_LOCATION (cand),
1946 "candidate is: %#D", cand);
1947 continue;
1950 *str = _("candidates are:");
1951 spaces = get_spaces (*str);
1953 inform (DECL_SOURCE_LOCATION (cand), "%s %#D", *str, cand);
1954 *str = spaces ? spaces : *str;
1957 if (!more)
1959 free (spaces);
1960 *str = NULL;
1964 /* Print the list of candidate FNS in an error message. FNS can also
1965 be a TREE_LIST of non-functions in the case of an ambiguous lookup. */
1967 void
1968 print_candidates (tree fns)
1970 const char *str = NULL;
1971 print_candidates_1 (fns, false, &str);
1972 gcc_assert (str == NULL);
1975 /* Get a (possibly) constrained template declaration for the
1976 purpose of ordering candidates. */
1977 static tree
1978 get_template_for_ordering (tree list)
1980 gcc_assert (TREE_CODE (list) == TREE_LIST);
1981 tree f = TREE_VALUE (list);
1982 if (tree ti = DECL_TEMPLATE_INFO (f))
1983 return TI_TEMPLATE (ti);
1984 return f;
1987 /* Among candidates having the same signature, return the
1988 most constrained or NULL_TREE if there is no best candidate.
1989 If the signatures of candidates vary (e.g., template
1990 specialization vs. member function), then there can be no
1991 most constrained.
1993 Note that we don't compare constraints on the functions
1994 themselves, but rather those of their templates. */
1995 static tree
1996 most_constrained_function (tree candidates)
1998 // Try to find the best candidate in a first pass.
1999 tree champ = candidates;
2000 for (tree c = TREE_CHAIN (champ); c; c = TREE_CHAIN (c))
2002 int winner = more_constrained (get_template_for_ordering (champ),
2003 get_template_for_ordering (c));
2004 if (winner == -1)
2005 champ = c; // The candidate is more constrained
2006 else if (winner == 0)
2007 return NULL_TREE; // Neither is more constrained
2010 // Verify that the champ is better than previous candidates.
2011 for (tree c = candidates; c != champ; c = TREE_CHAIN (c)) {
2012 if (!more_constrained (get_template_for_ordering (champ),
2013 get_template_for_ordering (c)))
2014 return NULL_TREE;
2017 return champ;
2021 /* Returns the template (one of the functions given by TEMPLATE_ID)
2022 which can be specialized to match the indicated DECL with the
2023 explicit template args given in TEMPLATE_ID. The DECL may be
2024 NULL_TREE if none is available. In that case, the functions in
2025 TEMPLATE_ID are non-members.
2027 If NEED_MEMBER_TEMPLATE is nonzero the function is known to be a
2028 specialization of a member template.
2030 The TEMPLATE_COUNT is the number of references to qualifying
2031 template classes that appeared in the name of the function. See
2032 check_explicit_specialization for a more accurate description.
2034 TSK indicates what kind of template declaration (if any) is being
2035 declared. TSK_TEMPLATE indicates that the declaration given by
2036 DECL, though a FUNCTION_DECL, has template parameters, and is
2037 therefore a template function.
2039 The template args (those explicitly specified and those deduced)
2040 are output in a newly created vector *TARGS_OUT.
2042 If it is impossible to determine the result, an error message is
2043 issued. The error_mark_node is returned to indicate failure. */
2045 static tree
2046 determine_specialization (tree template_id,
2047 tree decl,
2048 tree* targs_out,
2049 int need_member_template,
2050 int template_count,
2051 tmpl_spec_kind tsk)
2053 tree fns;
2054 tree targs;
2055 tree explicit_targs;
2056 tree candidates = NULL_TREE;
2058 /* A TREE_LIST of templates of which DECL may be a specialization.
2059 The TREE_VALUE of each node is a TEMPLATE_DECL. The
2060 corresponding TREE_PURPOSE is the set of template arguments that,
2061 when used to instantiate the template, would produce a function
2062 with the signature of DECL. */
2063 tree templates = NULL_TREE;
2064 int header_count;
2065 cp_binding_level *b;
2067 *targs_out = NULL_TREE;
2069 if (template_id == error_mark_node || decl == error_mark_node)
2070 return error_mark_node;
2072 /* We shouldn't be specializing a member template of an
2073 unspecialized class template; we already gave an error in
2074 check_specialization_scope, now avoid crashing. */
2075 if (template_count && DECL_CLASS_SCOPE_P (decl)
2076 && template_class_depth (DECL_CONTEXT (decl)) > 0)
2078 gcc_assert (errorcount);
2079 return error_mark_node;
2082 fns = TREE_OPERAND (template_id, 0);
2083 explicit_targs = TREE_OPERAND (template_id, 1);
2085 if (fns == error_mark_node)
2086 return error_mark_node;
2088 /* Check for baselinks. */
2089 if (BASELINK_P (fns))
2090 fns = BASELINK_FUNCTIONS (fns);
2092 if (TREE_CODE (decl) == FUNCTION_DECL && !is_overloaded_fn (fns))
2094 error ("%qD is not a function template", fns);
2095 return error_mark_node;
2097 else if (VAR_P (decl) && !variable_template_p (fns))
2099 error ("%qD is not a variable template", fns);
2100 return error_mark_node;
2103 /* Count the number of template headers specified for this
2104 specialization. */
2105 header_count = 0;
2106 for (b = current_binding_level;
2107 b->kind == sk_template_parms;
2108 b = b->level_chain)
2109 ++header_count;
2111 tree orig_fns = fns;
2113 if (variable_template_p (fns))
2115 tree parms = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (fns));
2116 targs = coerce_template_parms (parms, explicit_targs, fns,
2117 tf_warning_or_error,
2118 /*req_all*/true, /*use_defarg*/true);
2119 if (targs != error_mark_node)
2120 templates = tree_cons (targs, fns, templates);
2122 else for (; fns; fns = OVL_NEXT (fns))
2124 tree fn = OVL_CURRENT (fns);
2126 if (TREE_CODE (fn) == TEMPLATE_DECL)
2128 tree decl_arg_types;
2129 tree fn_arg_types;
2130 tree insttype;
2132 /* In case of explicit specialization, we need to check if
2133 the number of template headers appearing in the specialization
2134 is correct. This is usually done in check_explicit_specialization,
2135 but the check done there cannot be exhaustive when specializing
2136 member functions. Consider the following code:
2138 template <> void A<int>::f(int);
2139 template <> template <> void A<int>::f(int);
2141 Assuming that A<int> is not itself an explicit specialization
2142 already, the first line specializes "f" which is a non-template
2143 member function, whilst the second line specializes "f" which
2144 is a template member function. So both lines are syntactically
2145 correct, and check_explicit_specialization does not reject
2146 them.
2148 Here, we can do better, as we are matching the specialization
2149 against the declarations. We count the number of template
2150 headers, and we check if they match TEMPLATE_COUNT + 1
2151 (TEMPLATE_COUNT is the number of qualifying template classes,
2152 plus there must be another header for the member template
2153 itself).
2155 Notice that if header_count is zero, this is not a
2156 specialization but rather a template instantiation, so there
2157 is no check we can perform here. */
2158 if (header_count && header_count != template_count + 1)
2159 continue;
2161 /* Check that the number of template arguments at the
2162 innermost level for DECL is the same as for FN. */
2163 if (current_binding_level->kind == sk_template_parms
2164 && !current_binding_level->explicit_spec_p
2165 && (TREE_VEC_LENGTH (DECL_INNERMOST_TEMPLATE_PARMS (fn))
2166 != TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS
2167 (current_template_parms))))
2168 continue;
2170 /* DECL might be a specialization of FN. */
2171 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
2172 fn_arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn));
2174 /* For a non-static member function, we need to make sure
2175 that the const qualification is the same. Since
2176 get_bindings does not try to merge the "this" parameter,
2177 we must do the comparison explicitly. */
2178 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
2179 && !same_type_p (TREE_VALUE (fn_arg_types),
2180 TREE_VALUE (decl_arg_types)))
2181 continue;
2183 /* Skip the "this" parameter and, for constructors of
2184 classes with virtual bases, the VTT parameter. A
2185 full specialization of a constructor will have a VTT
2186 parameter, but a template never will. */
2187 decl_arg_types
2188 = skip_artificial_parms_for (decl, decl_arg_types);
2189 fn_arg_types
2190 = skip_artificial_parms_for (fn, fn_arg_types);
2192 /* Function templates cannot be specializations; there are
2193 no partial specializations of functions. Therefore, if
2194 the type of DECL does not match FN, there is no
2195 match.
2197 Note that it should never be the case that we have both
2198 candidates added here, and for regular member functions
2199 below. */
2200 if (tsk == tsk_template)
2202 if (compparms (fn_arg_types, decl_arg_types))
2203 candidates = tree_cons (NULL_TREE, fn, candidates);
2204 continue;
2207 /* See whether this function might be a specialization of this
2208 template. Suppress access control because we might be trying
2209 to make this specialization a friend, and we have already done
2210 access control for the declaration of the specialization. */
2211 push_deferring_access_checks (dk_no_check);
2212 targs = get_bindings (fn, decl, explicit_targs, /*check_ret=*/true);
2213 pop_deferring_access_checks ();
2215 if (!targs)
2216 /* We cannot deduce template arguments that when used to
2217 specialize TMPL will produce DECL. */
2218 continue;
2220 /* Remove, from the set of candidates, all those functions
2221 whose constraints are not satisfied. */
2222 if (flag_concepts && !constraints_satisfied_p (fn, targs))
2223 continue;
2225 // Then, try to form the new function type.
2226 insttype = tsubst (TREE_TYPE (fn), targs, tf_fndecl_type, NULL_TREE);
2227 if (insttype == error_mark_node)
2228 continue;
2229 fn_arg_types
2230 = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (insttype));
2231 if (!compparms (fn_arg_types, decl_arg_types))
2232 continue;
2234 /* Save this template, and the arguments deduced. */
2235 templates = tree_cons (targs, fn, templates);
2237 else if (need_member_template)
2238 /* FN is an ordinary member function, and we need a
2239 specialization of a member template. */
2241 else if (TREE_CODE (fn) != FUNCTION_DECL)
2242 /* We can get IDENTIFIER_NODEs here in certain erroneous
2243 cases. */
2245 else if (!DECL_FUNCTION_MEMBER_P (fn))
2246 /* This is just an ordinary non-member function. Nothing can
2247 be a specialization of that. */
2249 else if (DECL_ARTIFICIAL (fn))
2250 /* Cannot specialize functions that are created implicitly. */
2252 else
2254 tree decl_arg_types;
2256 /* This is an ordinary member function. However, since
2257 we're here, we can assume its enclosing class is a
2258 template class. For example,
2260 template <typename T> struct S { void f(); };
2261 template <> void S<int>::f() {}
2263 Here, S<int>::f is a non-template, but S<int> is a
2264 template class. If FN has the same type as DECL, we
2265 might be in business. */
2267 if (!DECL_TEMPLATE_INFO (fn))
2268 /* Its enclosing class is an explicit specialization
2269 of a template class. This is not a candidate. */
2270 continue;
2272 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
2273 TREE_TYPE (TREE_TYPE (fn))))
2274 /* The return types differ. */
2275 continue;
2277 /* Adjust the type of DECL in case FN is a static member. */
2278 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
2279 if (DECL_STATIC_FUNCTION_P (fn)
2280 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2281 decl_arg_types = TREE_CHAIN (decl_arg_types);
2283 if (!compparms (TYPE_ARG_TYPES (TREE_TYPE (fn)),
2284 decl_arg_types))
2285 continue;
2287 // If the deduced arguments do not satisfy the constraints,
2288 // this is not a candidate.
2289 if (flag_concepts && !constraints_satisfied_p (fn))
2290 continue;
2292 // Add the candidate.
2293 candidates = tree_cons (NULL_TREE, fn, candidates);
2297 if (templates && TREE_CHAIN (templates))
2299 /* We have:
2301 [temp.expl.spec]
2303 It is possible for a specialization with a given function
2304 signature to be instantiated from more than one function
2305 template. In such cases, explicit specification of the
2306 template arguments must be used to uniquely identify the
2307 function template specialization being specialized.
2309 Note that here, there's no suggestion that we're supposed to
2310 determine which of the candidate templates is most
2311 specialized. However, we, also have:
2313 [temp.func.order]
2315 Partial ordering of overloaded function template
2316 declarations is used in the following contexts to select
2317 the function template to which a function template
2318 specialization refers:
2320 -- when an explicit specialization refers to a function
2321 template.
2323 So, we do use the partial ordering rules, at least for now.
2324 This extension can only serve to make invalid programs valid,
2325 so it's safe. And, there is strong anecdotal evidence that
2326 the committee intended the partial ordering rules to apply;
2327 the EDG front end has that behavior, and John Spicer claims
2328 that the committee simply forgot to delete the wording in
2329 [temp.expl.spec]. */
2330 tree tmpl = most_specialized_instantiation (templates);
2331 if (tmpl != error_mark_node)
2333 templates = tmpl;
2334 TREE_CHAIN (templates) = NULL_TREE;
2338 // Concepts allows multiple declarations of member functions
2339 // with the same signature. Like above, we need to rely on
2340 // on the partial ordering of those candidates to determine which
2341 // is the best.
2342 if (flag_concepts && candidates && TREE_CHAIN (candidates))
2344 if (tree cand = most_constrained_function (candidates))
2346 candidates = cand;
2347 TREE_CHAIN (cand) = NULL_TREE;
2351 if (templates == NULL_TREE && candidates == NULL_TREE)
2353 error ("template-id %qD for %q+D does not match any template "
2354 "declaration", template_id, decl);
2355 if (header_count && header_count != template_count + 1)
2356 inform (input_location, "saw %d %<template<>%>, need %d for "
2357 "specializing a member function template",
2358 header_count, template_count + 1);
2359 else
2360 print_candidates (orig_fns);
2361 return error_mark_node;
2363 else if ((templates && TREE_CHAIN (templates))
2364 || (candidates && TREE_CHAIN (candidates))
2365 || (templates && candidates))
2367 error ("ambiguous template specialization %qD for %q+D",
2368 template_id, decl);
2369 candidates = chainon (candidates, templates);
2370 print_candidates (candidates);
2371 return error_mark_node;
2374 /* We have one, and exactly one, match. */
2375 if (candidates)
2377 tree fn = TREE_VALUE (candidates);
2378 *targs_out = copy_node (DECL_TI_ARGS (fn));
2380 // Propagate the candidate's constraints to the declaration.
2381 set_constraints (decl, get_constraints (fn));
2383 /* DECL is a re-declaration or partial instantiation of a template
2384 function. */
2385 if (TREE_CODE (fn) == TEMPLATE_DECL)
2386 return fn;
2387 /* It was a specialization of an ordinary member function in a
2388 template class. */
2389 return DECL_TI_TEMPLATE (fn);
2392 /* It was a specialization of a template. */
2393 targs = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (TREE_VALUE (templates)));
2394 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (targs))
2396 *targs_out = copy_node (targs);
2397 SET_TMPL_ARGS_LEVEL (*targs_out,
2398 TMPL_ARGS_DEPTH (*targs_out),
2399 TREE_PURPOSE (templates));
2401 else
2402 *targs_out = TREE_PURPOSE (templates);
2403 return TREE_VALUE (templates);
2406 /* Returns a chain of parameter types, exactly like the SPEC_TYPES,
2407 but with the default argument values filled in from those in the
2408 TMPL_TYPES. */
2410 static tree
2411 copy_default_args_to_explicit_spec_1 (tree spec_types,
2412 tree tmpl_types)
2414 tree new_spec_types;
2416 if (!spec_types)
2417 return NULL_TREE;
2419 if (spec_types == void_list_node)
2420 return void_list_node;
2422 /* Substitute into the rest of the list. */
2423 new_spec_types =
2424 copy_default_args_to_explicit_spec_1 (TREE_CHAIN (spec_types),
2425 TREE_CHAIN (tmpl_types));
2427 /* Add the default argument for this parameter. */
2428 return hash_tree_cons (TREE_PURPOSE (tmpl_types),
2429 TREE_VALUE (spec_types),
2430 new_spec_types);
2433 /* DECL is an explicit specialization. Replicate default arguments
2434 from the template it specializes. (That way, code like:
2436 template <class T> void f(T = 3);
2437 template <> void f(double);
2438 void g () { f (); }
2440 works, as required.) An alternative approach would be to look up
2441 the correct default arguments at the call-site, but this approach
2442 is consistent with how implicit instantiations are handled. */
2444 static void
2445 copy_default_args_to_explicit_spec (tree decl)
2447 tree tmpl;
2448 tree spec_types;
2449 tree tmpl_types;
2450 tree new_spec_types;
2451 tree old_type;
2452 tree new_type;
2453 tree t;
2454 tree object_type = NULL_TREE;
2455 tree in_charge = NULL_TREE;
2456 tree vtt = NULL_TREE;
2458 /* See if there's anything we need to do. */
2459 tmpl = DECL_TI_TEMPLATE (decl);
2460 tmpl_types = TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (tmpl)));
2461 for (t = tmpl_types; t; t = TREE_CHAIN (t))
2462 if (TREE_PURPOSE (t))
2463 break;
2464 if (!t)
2465 return;
2467 old_type = TREE_TYPE (decl);
2468 spec_types = TYPE_ARG_TYPES (old_type);
2470 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2472 /* Remove the this pointer, but remember the object's type for
2473 CV quals. */
2474 object_type = TREE_TYPE (TREE_VALUE (spec_types));
2475 spec_types = TREE_CHAIN (spec_types);
2476 tmpl_types = TREE_CHAIN (tmpl_types);
2478 if (DECL_HAS_IN_CHARGE_PARM_P (decl))
2480 /* DECL may contain more parameters than TMPL due to the extra
2481 in-charge parameter in constructors and destructors. */
2482 in_charge = spec_types;
2483 spec_types = TREE_CHAIN (spec_types);
2485 if (DECL_HAS_VTT_PARM_P (decl))
2487 vtt = spec_types;
2488 spec_types = TREE_CHAIN (spec_types);
2492 /* Compute the merged default arguments. */
2493 new_spec_types =
2494 copy_default_args_to_explicit_spec_1 (spec_types, tmpl_types);
2496 /* Compute the new FUNCTION_TYPE. */
2497 if (object_type)
2499 if (vtt)
2500 new_spec_types = hash_tree_cons (TREE_PURPOSE (vtt),
2501 TREE_VALUE (vtt),
2502 new_spec_types);
2504 if (in_charge)
2505 /* Put the in-charge parameter back. */
2506 new_spec_types = hash_tree_cons (TREE_PURPOSE (in_charge),
2507 TREE_VALUE (in_charge),
2508 new_spec_types);
2510 new_type = build_method_type_directly (object_type,
2511 TREE_TYPE (old_type),
2512 new_spec_types);
2514 else
2515 new_type = build_function_type (TREE_TYPE (old_type),
2516 new_spec_types);
2517 new_type = cp_build_type_attribute_variant (new_type,
2518 TYPE_ATTRIBUTES (old_type));
2519 new_type = build_exception_variant (new_type,
2520 TYPE_RAISES_EXCEPTIONS (old_type));
2522 if (TYPE_HAS_LATE_RETURN_TYPE (old_type))
2523 TYPE_HAS_LATE_RETURN_TYPE (new_type) = 1;
2525 TREE_TYPE (decl) = new_type;
2528 /* Return the number of template headers we expect to see for a definition
2529 or specialization of CTYPE or one of its non-template members. */
2532 num_template_headers_for_class (tree ctype)
2534 int num_templates = 0;
2536 while (ctype && CLASS_TYPE_P (ctype))
2538 /* You're supposed to have one `template <...>' for every
2539 template class, but you don't need one for a full
2540 specialization. For example:
2542 template <class T> struct S{};
2543 template <> struct S<int> { void f(); };
2544 void S<int>::f () {}
2546 is correct; there shouldn't be a `template <>' for the
2547 definition of `S<int>::f'. */
2548 if (!CLASSTYPE_TEMPLATE_INFO (ctype))
2549 /* If CTYPE does not have template information of any
2550 kind, then it is not a template, nor is it nested
2551 within a template. */
2552 break;
2553 if (explicit_class_specialization_p (ctype))
2554 break;
2555 if (PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (ctype)))
2556 ++num_templates;
2558 ctype = TYPE_CONTEXT (ctype);
2561 return num_templates;
2564 /* Do a simple sanity check on the template headers that precede the
2565 variable declaration DECL. */
2567 void
2568 check_template_variable (tree decl)
2570 tree ctx = CP_DECL_CONTEXT (decl);
2571 int wanted = num_template_headers_for_class (ctx);
2572 if (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl)
2573 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl)))
2575 if (cxx_dialect < cxx14)
2576 pedwarn (DECL_SOURCE_LOCATION (decl), 0,
2577 "variable templates only available with "
2578 "-std=c++14 or -std=gnu++14");
2580 // Namespace-scope variable templates should have a template header.
2581 ++wanted;
2583 if (template_header_count > wanted)
2585 bool warned = pedwarn (DECL_SOURCE_LOCATION (decl), 0,
2586 "too many template headers for %D (should be %d)",
2587 decl, wanted);
2588 if (warned && CLASS_TYPE_P (ctx)
2589 && CLASSTYPE_TEMPLATE_SPECIALIZATION (ctx))
2590 inform (DECL_SOURCE_LOCATION (decl),
2591 "members of an explicitly specialized class are defined "
2592 "without a template header");
2596 /* An explicit specialization whose declarator-id or class-head-name is not
2597 qualified shall be declared in the nearest enclosing namespace of the
2598 template, or, if the namespace is inline (7.3.1), any namespace from its
2599 enclosing namespace set.
2601 If the name declared in the explicit instantiation is an unqualified name,
2602 the explicit instantiation shall appear in the namespace where its template
2603 is declared or, if that namespace is inline (7.3.1), any namespace from its
2604 enclosing namespace set. */
2606 void
2607 check_unqualified_spec_or_inst (tree t, location_t loc)
2609 tree tmpl = most_general_template (t);
2610 if (DECL_NAMESPACE_SCOPE_P (tmpl)
2611 && !is_associated_namespace (current_namespace,
2612 CP_DECL_CONTEXT (tmpl)))
2614 if (processing_specialization)
2615 permerror (loc, "explicit specialization of %qD outside its "
2616 "namespace must use a nested-name-specifier", tmpl);
2617 else if (processing_explicit_instantiation
2618 && cxx_dialect >= cxx11)
2619 /* This was allowed in C++98, so only pedwarn. */
2620 pedwarn (loc, OPT_Wpedantic, "explicit instantiation of %qD "
2621 "outside its namespace must use a nested-name-"
2622 "specifier", tmpl);
2626 /* Check to see if the function just declared, as indicated in
2627 DECLARATOR, and in DECL, is a specialization of a function
2628 template. We may also discover that the declaration is an explicit
2629 instantiation at this point.
2631 Returns DECL, or an equivalent declaration that should be used
2632 instead if all goes well. Issues an error message if something is
2633 amiss. Returns error_mark_node if the error is not easily
2634 recoverable.
2636 FLAGS is a bitmask consisting of the following flags:
2638 2: The function has a definition.
2639 4: The function is a friend.
2641 The TEMPLATE_COUNT is the number of references to qualifying
2642 template classes that appeared in the name of the function. For
2643 example, in
2645 template <class T> struct S { void f(); };
2646 void S<int>::f();
2648 the TEMPLATE_COUNT would be 1. However, explicitly specialized
2649 classes are not counted in the TEMPLATE_COUNT, so that in
2651 template <class T> struct S {};
2652 template <> struct S<int> { void f(); }
2653 template <> void S<int>::f();
2655 the TEMPLATE_COUNT would be 0. (Note that this declaration is
2656 invalid; there should be no template <>.)
2658 If the function is a specialization, it is marked as such via
2659 DECL_TEMPLATE_SPECIALIZATION. Furthermore, its DECL_TEMPLATE_INFO
2660 is set up correctly, and it is added to the list of specializations
2661 for that template. */
2663 tree
2664 check_explicit_specialization (tree declarator,
2665 tree decl,
2666 int template_count,
2667 int flags)
2669 int have_def = flags & 2;
2670 int is_friend = flags & 4;
2671 bool is_concept = flags & 8;
2672 int specialization = 0;
2673 int explicit_instantiation = 0;
2674 int member_specialization = 0;
2675 tree ctype = DECL_CLASS_CONTEXT (decl);
2676 tree dname = DECL_NAME (decl);
2677 tmpl_spec_kind tsk;
2679 if (is_friend)
2681 if (!processing_specialization)
2682 tsk = tsk_none;
2683 else
2684 tsk = tsk_excessive_parms;
2686 else
2687 tsk = current_tmpl_spec_kind (template_count);
2689 switch (tsk)
2691 case tsk_none:
2692 if (processing_specialization && !VAR_P (decl))
2694 specialization = 1;
2695 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2697 else if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2699 if (is_friend)
2700 /* This could be something like:
2702 template <class T> void f(T);
2703 class S { friend void f<>(int); } */
2704 specialization = 1;
2705 else
2707 /* This case handles bogus declarations like template <>
2708 template <class T> void f<int>(); */
2710 error ("template-id %qD in declaration of primary template",
2711 declarator);
2712 return decl;
2715 break;
2717 case tsk_invalid_member_spec:
2718 /* The error has already been reported in
2719 check_specialization_scope. */
2720 return error_mark_node;
2722 case tsk_invalid_expl_inst:
2723 error ("template parameter list used in explicit instantiation");
2725 /* Fall through. */
2727 case tsk_expl_inst:
2728 if (have_def)
2729 error ("definition provided for explicit instantiation");
2731 explicit_instantiation = 1;
2732 break;
2734 case tsk_excessive_parms:
2735 case tsk_insufficient_parms:
2736 if (tsk == tsk_excessive_parms)
2737 error ("too many template parameter lists in declaration of %qD",
2738 decl);
2739 else if (template_header_count)
2740 error("too few template parameter lists in declaration of %qD", decl);
2741 else
2742 error("explicit specialization of %qD must be introduced by "
2743 "%<template <>%>", decl);
2745 /* Fall through. */
2746 case tsk_expl_spec:
2747 if (is_concept)
2748 error ("explicit specialization declared %<concept%>");
2750 if (VAR_P (decl) && TREE_CODE (declarator) != TEMPLATE_ID_EXPR)
2751 /* In cases like template<> constexpr bool v = true;
2752 We'll give an error in check_template_variable. */
2753 break;
2755 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2756 if (ctype)
2757 member_specialization = 1;
2758 else
2759 specialization = 1;
2760 break;
2762 case tsk_template:
2763 if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2765 /* This case handles bogus declarations like template <>
2766 template <class T> void f<int>(); */
2768 if (!uses_template_parms (declarator))
2769 error ("template-id %qD in declaration of primary template",
2770 declarator);
2771 else if (variable_template_p (TREE_OPERAND (declarator, 0)))
2773 /* Partial specialization of variable template. */
2774 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2775 specialization = 1;
2776 goto ok;
2778 else if (cxx_dialect < cxx14)
2779 error ("non-type partial specialization %qD "
2780 "is not allowed", declarator);
2781 else
2782 error ("non-class, non-variable partial specialization %qD "
2783 "is not allowed", declarator);
2784 return decl;
2785 ok:;
2788 if (ctype && CLASSTYPE_TEMPLATE_INSTANTIATION (ctype))
2789 /* This is a specialization of a member template, without
2790 specialization the containing class. Something like:
2792 template <class T> struct S {
2793 template <class U> void f (U);
2795 template <> template <class U> void S<int>::f(U) {}
2797 That's a specialization -- but of the entire template. */
2798 specialization = 1;
2799 break;
2801 default:
2802 gcc_unreachable ();
2805 if ((specialization || member_specialization)
2806 /* This doesn't apply to variable templates. */
2807 && (TREE_CODE (TREE_TYPE (decl)) == FUNCTION_TYPE
2808 || TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE))
2810 tree t = TYPE_ARG_TYPES (TREE_TYPE (decl));
2811 for (; t; t = TREE_CHAIN (t))
2812 if (TREE_PURPOSE (t))
2814 permerror (input_location,
2815 "default argument specified in explicit specialization");
2816 break;
2820 if (specialization || member_specialization || explicit_instantiation)
2822 tree tmpl = NULL_TREE;
2823 tree targs = NULL_TREE;
2824 bool was_template_id = (TREE_CODE (declarator) == TEMPLATE_ID_EXPR);
2826 /* Make sure that the declarator is a TEMPLATE_ID_EXPR. */
2827 if (!was_template_id)
2829 tree fns;
2831 gcc_assert (identifier_p (declarator));
2832 if (ctype)
2833 fns = dname;
2834 else
2836 /* If there is no class context, the explicit instantiation
2837 must be at namespace scope. */
2838 gcc_assert (DECL_NAMESPACE_SCOPE_P (decl));
2840 /* Find the namespace binding, using the declaration
2841 context. */
2842 fns = lookup_qualified_name (CP_DECL_CONTEXT (decl), dname,
2843 false, true);
2844 if (fns == error_mark_node)
2845 /* If lookup fails, look for a friend declaration so we can
2846 give a better diagnostic. */
2847 fns = lookup_qualified_name (CP_DECL_CONTEXT (decl), dname,
2848 /*type*/false, /*complain*/true,
2849 /*hidden*/true);
2851 if (fns == error_mark_node || !is_overloaded_fn (fns))
2853 error ("%qD is not a template function", dname);
2854 fns = error_mark_node;
2858 declarator = lookup_template_function (fns, NULL_TREE);
2861 if (declarator == error_mark_node)
2862 return error_mark_node;
2864 if (ctype != NULL_TREE && TYPE_BEING_DEFINED (ctype))
2866 if (!explicit_instantiation)
2867 /* A specialization in class scope. This is invalid,
2868 but the error will already have been flagged by
2869 check_specialization_scope. */
2870 return error_mark_node;
2871 else
2873 /* It's not valid to write an explicit instantiation in
2874 class scope, e.g.:
2876 class C { template void f(); }
2878 This case is caught by the parser. However, on
2879 something like:
2881 template class C { void f(); };
2883 (which is invalid) we can get here. The error will be
2884 issued later. */
2888 return decl;
2890 else if (ctype != NULL_TREE
2891 && (identifier_p (TREE_OPERAND (declarator, 0))))
2893 // We'll match variable templates in start_decl.
2894 if (VAR_P (decl))
2895 return decl;
2897 /* Find the list of functions in ctype that have the same
2898 name as the declared function. */
2899 tree name = TREE_OPERAND (declarator, 0);
2900 tree fns = NULL_TREE;
2901 int idx;
2903 if (constructor_name_p (name, ctype))
2905 int is_constructor = DECL_CONSTRUCTOR_P (decl);
2907 if (is_constructor ? !TYPE_HAS_USER_CONSTRUCTOR (ctype)
2908 : !CLASSTYPE_DESTRUCTORS (ctype))
2910 /* From [temp.expl.spec]:
2912 If such an explicit specialization for the member
2913 of a class template names an implicitly-declared
2914 special member function (clause _special_), the
2915 program is ill-formed.
2917 Similar language is found in [temp.explicit]. */
2918 error ("specialization of implicitly-declared special member function");
2919 return error_mark_node;
2922 name = is_constructor ? ctor_identifier : dtor_identifier;
2925 if (!DECL_CONV_FN_P (decl))
2927 idx = lookup_fnfields_1 (ctype, name);
2928 if (idx >= 0)
2929 fns = (*CLASSTYPE_METHOD_VEC (ctype))[idx];
2931 else
2933 vec<tree, va_gc> *methods;
2934 tree ovl;
2936 /* For a type-conversion operator, we cannot do a
2937 name-based lookup. We might be looking for `operator
2938 int' which will be a specialization of `operator T'.
2939 So, we find *all* the conversion operators, and then
2940 select from them. */
2941 fns = NULL_TREE;
2943 methods = CLASSTYPE_METHOD_VEC (ctype);
2944 if (methods)
2945 for (idx = CLASSTYPE_FIRST_CONVERSION_SLOT;
2946 methods->iterate (idx, &ovl);
2947 ++idx)
2949 if (!DECL_CONV_FN_P (OVL_CURRENT (ovl)))
2950 /* There are no more conversion functions. */
2951 break;
2953 /* Glue all these conversion functions together
2954 with those we already have. */
2955 for (; ovl; ovl = OVL_NEXT (ovl))
2956 fns = ovl_cons (OVL_CURRENT (ovl), fns);
2960 if (fns == NULL_TREE)
2962 error ("no member function %qD declared in %qT", name, ctype);
2963 return error_mark_node;
2965 else
2966 TREE_OPERAND (declarator, 0) = fns;
2969 /* Figure out what exactly is being specialized at this point.
2970 Note that for an explicit instantiation, even one for a
2971 member function, we cannot tell a priori whether the
2972 instantiation is for a member template, or just a member
2973 function of a template class. Even if a member template is
2974 being instantiated, the member template arguments may be
2975 elided if they can be deduced from the rest of the
2976 declaration. */
2977 tmpl = determine_specialization (declarator, decl,
2978 &targs,
2979 member_specialization,
2980 template_count,
2981 tsk);
2983 if (!tmpl || tmpl == error_mark_node)
2984 /* We couldn't figure out what this declaration was
2985 specializing. */
2986 return error_mark_node;
2987 else
2989 if (TREE_CODE (decl) == FUNCTION_DECL
2990 && DECL_HIDDEN_FRIEND_P (tmpl))
2992 if (pedwarn (DECL_SOURCE_LOCATION (decl), 0,
2993 "friend declaration %qD is not visible to "
2994 "explicit specialization", tmpl))
2995 inform (DECL_SOURCE_LOCATION (tmpl),
2996 "friend declaration here");
2998 else if (!ctype && !is_friend
2999 && CP_DECL_CONTEXT (decl) == current_namespace)
3000 check_unqualified_spec_or_inst (tmpl, DECL_SOURCE_LOCATION (decl));
3002 tree gen_tmpl = most_general_template (tmpl);
3004 if (explicit_instantiation)
3006 /* We don't set DECL_EXPLICIT_INSTANTIATION here; that
3007 is done by do_decl_instantiation later. */
3009 int arg_depth = TMPL_ARGS_DEPTH (targs);
3010 int parm_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
3012 if (arg_depth > parm_depth)
3014 /* If TMPL is not the most general template (for
3015 example, if TMPL is a friend template that is
3016 injected into namespace scope), then there will
3017 be too many levels of TARGS. Remove some of them
3018 here. */
3019 int i;
3020 tree new_targs;
3022 new_targs = make_tree_vec (parm_depth);
3023 for (i = arg_depth - parm_depth; i < arg_depth; ++i)
3024 TREE_VEC_ELT (new_targs, i - (arg_depth - parm_depth))
3025 = TREE_VEC_ELT (targs, i);
3026 targs = new_targs;
3029 return instantiate_template (tmpl, targs, tf_error);
3032 /* If we thought that the DECL was a member function, but it
3033 turns out to be specializing a static member function,
3034 make DECL a static member function as well. */
3035 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
3036 && DECL_STATIC_FUNCTION_P (tmpl)
3037 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
3038 revert_static_member_fn (decl);
3040 /* If this is a specialization of a member template of a
3041 template class, we want to return the TEMPLATE_DECL, not
3042 the specialization of it. */
3043 if (tsk == tsk_template && !was_template_id)
3045 tree result = DECL_TEMPLATE_RESULT (tmpl);
3046 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
3047 DECL_INITIAL (result) = NULL_TREE;
3048 if (have_def)
3050 tree parm;
3051 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
3052 DECL_SOURCE_LOCATION (result)
3053 = DECL_SOURCE_LOCATION (decl);
3054 /* We want to use the argument list specified in the
3055 definition, not in the original declaration. */
3056 DECL_ARGUMENTS (result) = DECL_ARGUMENTS (decl);
3057 for (parm = DECL_ARGUMENTS (result); parm;
3058 parm = DECL_CHAIN (parm))
3059 DECL_CONTEXT (parm) = result;
3061 return register_specialization (tmpl, gen_tmpl, targs,
3062 is_friend, 0);
3065 /* Set up the DECL_TEMPLATE_INFO for DECL. */
3066 DECL_TEMPLATE_INFO (decl) = build_template_info (tmpl, targs);
3068 if (was_template_id)
3069 TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (decl)) = true;
3071 /* Inherit default function arguments from the template
3072 DECL is specializing. */
3073 if (DECL_FUNCTION_TEMPLATE_P (tmpl))
3074 copy_default_args_to_explicit_spec (decl);
3076 /* This specialization has the same protection as the
3077 template it specializes. */
3078 TREE_PRIVATE (decl) = TREE_PRIVATE (gen_tmpl);
3079 TREE_PROTECTED (decl) = TREE_PROTECTED (gen_tmpl);
3081 /* 7.1.1-1 [dcl.stc]
3083 A storage-class-specifier shall not be specified in an
3084 explicit specialization...
3086 The parser rejects these, so unless action is taken here,
3087 explicit function specializations will always appear with
3088 global linkage.
3090 The action recommended by the C++ CWG in response to C++
3091 defect report 605 is to make the storage class and linkage
3092 of the explicit specialization match the templated function:
3094 http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#605
3096 if (tsk == tsk_expl_spec && DECL_FUNCTION_TEMPLATE_P (gen_tmpl))
3098 tree tmpl_func = DECL_TEMPLATE_RESULT (gen_tmpl);
3099 gcc_assert (TREE_CODE (tmpl_func) == FUNCTION_DECL);
3101 /* A concept cannot be specialized. */
3102 if (DECL_DECLARED_CONCEPT_P (tmpl_func))
3104 error ("explicit specialization of function concept %qD",
3105 gen_tmpl);
3106 return error_mark_node;
3109 /* This specialization has the same linkage and visibility as
3110 the function template it specializes. */
3111 TREE_PUBLIC (decl) = TREE_PUBLIC (tmpl_func);
3112 if (! TREE_PUBLIC (decl))
3114 DECL_INTERFACE_KNOWN (decl) = 1;
3115 DECL_NOT_REALLY_EXTERN (decl) = 1;
3117 DECL_THIS_STATIC (decl) = DECL_THIS_STATIC (tmpl_func);
3118 if (DECL_VISIBILITY_SPECIFIED (tmpl_func))
3120 DECL_VISIBILITY_SPECIFIED (decl) = 1;
3121 DECL_VISIBILITY (decl) = DECL_VISIBILITY (tmpl_func);
3125 /* If DECL is a friend declaration, declared using an
3126 unqualified name, the namespace associated with DECL may
3127 have been set incorrectly. For example, in:
3129 template <typename T> void f(T);
3130 namespace N {
3131 struct S { friend void f<int>(int); }
3134 we will have set the DECL_CONTEXT for the friend
3135 declaration to N, rather than to the global namespace. */
3136 if (DECL_NAMESPACE_SCOPE_P (decl))
3137 DECL_CONTEXT (decl) = DECL_CONTEXT (tmpl);
3139 if (is_friend && !have_def)
3140 /* This is not really a declaration of a specialization.
3141 It's just the name of an instantiation. But, it's not
3142 a request for an instantiation, either. */
3143 SET_DECL_IMPLICIT_INSTANTIATION (decl);
3144 else if (TREE_CODE (decl) == FUNCTION_DECL)
3145 /* A specialization is not necessarily COMDAT. */
3146 DECL_COMDAT (decl) = (TREE_PUBLIC (decl)
3147 && DECL_DECLARED_INLINE_P (decl));
3148 else if (VAR_P (decl))
3149 DECL_COMDAT (decl) = false;
3151 /* If this is a full specialization, register it so that we can find
3152 it again. Partial specializations will be registered in
3153 process_partial_specialization. */
3154 if (!processing_template_decl)
3155 decl = register_specialization (decl, gen_tmpl, targs,
3156 is_friend, 0);
3158 /* A 'structor should already have clones. */
3159 gcc_assert (decl == error_mark_node
3160 || variable_template_p (tmpl)
3161 || !(DECL_CONSTRUCTOR_P (decl)
3162 || DECL_DESTRUCTOR_P (decl))
3163 || DECL_CLONED_FUNCTION_P (DECL_CHAIN (decl)));
3167 return decl;
3170 /* Returns 1 iff PARMS1 and PARMS2 are identical sets of template
3171 parameters. These are represented in the same format used for
3172 DECL_TEMPLATE_PARMS. */
3175 comp_template_parms (const_tree parms1, const_tree parms2)
3177 const_tree p1;
3178 const_tree p2;
3180 if (parms1 == parms2)
3181 return 1;
3183 for (p1 = parms1, p2 = parms2;
3184 p1 != NULL_TREE && p2 != NULL_TREE;
3185 p1 = TREE_CHAIN (p1), p2 = TREE_CHAIN (p2))
3187 tree t1 = TREE_VALUE (p1);
3188 tree t2 = TREE_VALUE (p2);
3189 int i;
3191 gcc_assert (TREE_CODE (t1) == TREE_VEC);
3192 gcc_assert (TREE_CODE (t2) == TREE_VEC);
3194 if (TREE_VEC_LENGTH (t1) != TREE_VEC_LENGTH (t2))
3195 return 0;
3197 for (i = 0; i < TREE_VEC_LENGTH (t2); ++i)
3199 tree parm1 = TREE_VALUE (TREE_VEC_ELT (t1, i));
3200 tree parm2 = TREE_VALUE (TREE_VEC_ELT (t2, i));
3202 /* If either of the template parameters are invalid, assume
3203 they match for the sake of error recovery. */
3204 if (error_operand_p (parm1) || error_operand_p (parm2))
3205 return 1;
3207 if (TREE_CODE (parm1) != TREE_CODE (parm2))
3208 return 0;
3210 if (TREE_CODE (parm1) == TEMPLATE_TYPE_PARM
3211 && (TEMPLATE_TYPE_PARAMETER_PACK (parm1)
3212 == TEMPLATE_TYPE_PARAMETER_PACK (parm2)))
3213 continue;
3214 else if (!same_type_p (TREE_TYPE (parm1), TREE_TYPE (parm2)))
3215 return 0;
3219 if ((p1 != NULL_TREE) != (p2 != NULL_TREE))
3220 /* One set of parameters has more parameters lists than the
3221 other. */
3222 return 0;
3224 return 1;
3227 /* Determine whether PARM is a parameter pack. */
3229 bool
3230 template_parameter_pack_p (const_tree parm)
3232 /* Determine if we have a non-type template parameter pack. */
3233 if (TREE_CODE (parm) == PARM_DECL)
3234 return (DECL_TEMPLATE_PARM_P (parm)
3235 && TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)));
3236 if (TREE_CODE (parm) == TEMPLATE_PARM_INDEX)
3237 return TEMPLATE_PARM_PARAMETER_PACK (parm);
3239 /* If this is a list of template parameters, we could get a
3240 TYPE_DECL or a TEMPLATE_DECL. */
3241 if (TREE_CODE (parm) == TYPE_DECL || TREE_CODE (parm) == TEMPLATE_DECL)
3242 parm = TREE_TYPE (parm);
3244 /* Otherwise it must be a type template parameter. */
3245 return ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
3246 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
3247 && TEMPLATE_TYPE_PARAMETER_PACK (parm));
3250 /* Determine if T is a function parameter pack. */
3252 bool
3253 function_parameter_pack_p (const_tree t)
3255 if (t && TREE_CODE (t) == PARM_DECL)
3256 return DECL_PACK_P (t);
3257 return false;
3260 /* Return the function template declaration of PRIMARY_FUNC_TMPL_INST.
3261 PRIMARY_FUNC_TMPL_INST is a primary function template instantiation. */
3263 tree
3264 get_function_template_decl (const_tree primary_func_tmpl_inst)
3266 if (! primary_func_tmpl_inst
3267 || TREE_CODE (primary_func_tmpl_inst) != FUNCTION_DECL
3268 || ! primary_template_instantiation_p (primary_func_tmpl_inst))
3269 return NULL;
3271 return DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (primary_func_tmpl_inst));
3274 /* Return true iff the function parameter PARAM_DECL was expanded
3275 from the function parameter pack PACK. */
3277 bool
3278 function_parameter_expanded_from_pack_p (tree param_decl, tree pack)
3280 if (DECL_ARTIFICIAL (param_decl)
3281 || !function_parameter_pack_p (pack))
3282 return false;
3284 /* The parameter pack and its pack arguments have the same
3285 DECL_PARM_INDEX. */
3286 return DECL_PARM_INDEX (pack) == DECL_PARM_INDEX (param_decl);
3289 /* Determine whether ARGS describes a variadic template args list,
3290 i.e., one that is terminated by a template argument pack. */
3292 static bool
3293 template_args_variadic_p (tree args)
3295 int nargs;
3296 tree last_parm;
3298 if (args == NULL_TREE)
3299 return false;
3301 args = INNERMOST_TEMPLATE_ARGS (args);
3302 nargs = TREE_VEC_LENGTH (args);
3304 if (nargs == 0)
3305 return false;
3307 last_parm = TREE_VEC_ELT (args, nargs - 1);
3309 return ARGUMENT_PACK_P (last_parm);
3312 /* Generate a new name for the parameter pack name NAME (an
3313 IDENTIFIER_NODE) that incorporates its */
3315 static tree
3316 make_ith_pack_parameter_name (tree name, int i)
3318 /* Munge the name to include the parameter index. */
3319 #define NUMBUF_LEN 128
3320 char numbuf[NUMBUF_LEN];
3321 char* newname;
3322 int newname_len;
3324 if (name == NULL_TREE)
3325 return name;
3326 snprintf (numbuf, NUMBUF_LEN, "%i", i);
3327 newname_len = IDENTIFIER_LENGTH (name)
3328 + strlen (numbuf) + 2;
3329 newname = (char*)alloca (newname_len);
3330 snprintf (newname, newname_len,
3331 "%s#%i", IDENTIFIER_POINTER (name), i);
3332 return get_identifier (newname);
3335 /* Return true if T is a primary function, class or alias template
3336 instantiation. */
3338 bool
3339 primary_template_instantiation_p (const_tree t)
3341 if (!t)
3342 return false;
3344 if (TREE_CODE (t) == FUNCTION_DECL)
3345 return DECL_LANG_SPECIFIC (t)
3346 && DECL_TEMPLATE_INSTANTIATION (t)
3347 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (t));
3348 else if (CLASS_TYPE_P (t) && !TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
3349 return CLASSTYPE_TEMPLATE_INSTANTIATION (t)
3350 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (t));
3351 else if (alias_template_specialization_p (t))
3352 return true;
3353 return false;
3356 /* Return true if PARM is a template template parameter. */
3358 bool
3359 template_template_parameter_p (const_tree parm)
3361 return DECL_TEMPLATE_TEMPLATE_PARM_P (parm);
3364 /* Return true iff PARM is a DECL representing a type template
3365 parameter. */
3367 bool
3368 template_type_parameter_p (const_tree parm)
3370 return (parm
3371 && (TREE_CODE (parm) == TYPE_DECL
3372 || TREE_CODE (parm) == TEMPLATE_DECL)
3373 && DECL_TEMPLATE_PARM_P (parm));
3376 /* Return the template parameters of T if T is a
3377 primary template instantiation, NULL otherwise. */
3379 tree
3380 get_primary_template_innermost_parameters (const_tree t)
3382 tree parms = NULL, template_info = NULL;
3384 if ((template_info = get_template_info (t))
3385 && primary_template_instantiation_p (t))
3386 parms = INNERMOST_TEMPLATE_PARMS
3387 (DECL_TEMPLATE_PARMS (TI_TEMPLATE (template_info)));
3389 return parms;
3392 /* Return the template parameters of the LEVELth level from the full list
3393 of template parameters PARMS. */
3395 tree
3396 get_template_parms_at_level (tree parms, int level)
3398 tree p;
3399 if (!parms
3400 || TREE_CODE (parms) != TREE_LIST
3401 || level > TMPL_PARMS_DEPTH (parms))
3402 return NULL_TREE;
3404 for (p = parms; p; p = TREE_CHAIN (p))
3405 if (TMPL_PARMS_DEPTH (p) == level)
3406 return p;
3408 return NULL_TREE;
3411 /* Returns the template arguments of T if T is a template instantiation,
3412 NULL otherwise. */
3414 tree
3415 get_template_innermost_arguments (const_tree t)
3417 tree args = NULL, template_info = NULL;
3419 if ((template_info = get_template_info (t))
3420 && TI_ARGS (template_info))
3421 args = INNERMOST_TEMPLATE_ARGS (TI_ARGS (template_info));
3423 return args;
3426 /* Return the argument pack elements of T if T is a template argument pack,
3427 NULL otherwise. */
3429 tree
3430 get_template_argument_pack_elems (const_tree t)
3432 if (TREE_CODE (t) != TYPE_ARGUMENT_PACK
3433 && TREE_CODE (t) != NONTYPE_ARGUMENT_PACK)
3434 return NULL;
3436 return ARGUMENT_PACK_ARGS (t);
3439 /* Structure used to track the progress of find_parameter_packs_r. */
3440 struct find_parameter_pack_data
3442 /* TREE_LIST that will contain all of the parameter packs found by
3443 the traversal. */
3444 tree* parameter_packs;
3446 /* Set of AST nodes that have been visited by the traversal. */
3447 hash_set<tree> *visited;
3449 /* True iff we're making a type pack expansion. */
3450 bool type_pack_expansion_p;
3453 /* Identifies all of the argument packs that occur in a template
3454 argument and appends them to the TREE_LIST inside DATA, which is a
3455 find_parameter_pack_data structure. This is a subroutine of
3456 make_pack_expansion and uses_parameter_packs. */
3457 static tree
3458 find_parameter_packs_r (tree *tp, int *walk_subtrees, void* data)
3460 tree t = *tp;
3461 struct find_parameter_pack_data* ppd =
3462 (struct find_parameter_pack_data*)data;
3463 bool parameter_pack_p = false;
3465 /* Handle type aliases/typedefs. */
3466 if (TYPE_ALIAS_P (t))
3468 if (tree tinfo = TYPE_ALIAS_TEMPLATE_INFO (t))
3469 cp_walk_tree (&TI_ARGS (tinfo),
3470 &find_parameter_packs_r,
3471 ppd, ppd->visited);
3472 *walk_subtrees = 0;
3473 return NULL_TREE;
3476 /* Identify whether this is a parameter pack or not. */
3477 switch (TREE_CODE (t))
3479 case TEMPLATE_PARM_INDEX:
3480 if (TEMPLATE_PARM_PARAMETER_PACK (t))
3481 parameter_pack_p = true;
3482 break;
3484 case TEMPLATE_TYPE_PARM:
3485 t = TYPE_MAIN_VARIANT (t);
3486 /* FALLTHRU */
3487 case TEMPLATE_TEMPLATE_PARM:
3488 /* If the placeholder appears in the decl-specifier-seq of a function
3489 parameter pack (14.6.3), or the type-specifier-seq of a type-id that
3490 is a pack expansion, the invented template parameter is a template
3491 parameter pack. */
3492 if (ppd->type_pack_expansion_p && is_auto_or_concept (t))
3493 TEMPLATE_TYPE_PARAMETER_PACK (t) = true;
3494 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
3495 parameter_pack_p = true;
3496 break;
3498 case FIELD_DECL:
3499 case PARM_DECL:
3500 if (DECL_PACK_P (t))
3502 /* We don't want to walk into the type of a PARM_DECL,
3503 because we don't want to see the type parameter pack. */
3504 *walk_subtrees = 0;
3505 parameter_pack_p = true;
3507 break;
3509 /* Look through a lambda capture proxy to the field pack. */
3510 case VAR_DECL:
3511 if (DECL_HAS_VALUE_EXPR_P (t))
3513 tree v = DECL_VALUE_EXPR (t);
3514 cp_walk_tree (&v,
3515 &find_parameter_packs_r,
3516 ppd, ppd->visited);
3517 *walk_subtrees = 0;
3519 else if (variable_template_specialization_p (t))
3521 cp_walk_tree (&DECL_TI_ARGS (t),
3522 find_parameter_packs_r,
3523 ppd, ppd->visited);
3524 *walk_subtrees = 0;
3526 break;
3528 case BASES:
3529 parameter_pack_p = true;
3530 break;
3531 default:
3532 /* Not a parameter pack. */
3533 break;
3536 if (parameter_pack_p)
3538 /* Add this parameter pack to the list. */
3539 *ppd->parameter_packs = tree_cons (NULL_TREE, t, *ppd->parameter_packs);
3542 if (TYPE_P (t))
3543 cp_walk_tree (&TYPE_CONTEXT (t),
3544 &find_parameter_packs_r, ppd, ppd->visited);
3546 /* This switch statement will return immediately if we don't find a
3547 parameter pack. */
3548 switch (TREE_CODE (t))
3550 case TEMPLATE_PARM_INDEX:
3551 return NULL_TREE;
3553 case BOUND_TEMPLATE_TEMPLATE_PARM:
3554 /* Check the template itself. */
3555 cp_walk_tree (&TREE_TYPE (TYPE_TI_TEMPLATE (t)),
3556 &find_parameter_packs_r, ppd, ppd->visited);
3557 /* Check the template arguments. */
3558 cp_walk_tree (&TYPE_TI_ARGS (t), &find_parameter_packs_r, ppd,
3559 ppd->visited);
3560 *walk_subtrees = 0;
3561 return NULL_TREE;
3563 case TEMPLATE_TYPE_PARM:
3564 case TEMPLATE_TEMPLATE_PARM:
3565 return NULL_TREE;
3567 case PARM_DECL:
3568 return NULL_TREE;
3570 case RECORD_TYPE:
3571 if (TYPE_PTRMEMFUNC_P (t))
3572 return NULL_TREE;
3573 /* Fall through. */
3575 case UNION_TYPE:
3576 case ENUMERAL_TYPE:
3577 if (TYPE_TEMPLATE_INFO (t))
3578 cp_walk_tree (&TYPE_TI_ARGS (t),
3579 &find_parameter_packs_r, ppd, ppd->visited);
3581 *walk_subtrees = 0;
3582 return NULL_TREE;
3584 case TEMPLATE_DECL:
3585 if (!DECL_TEMPLATE_TEMPLATE_PARM_P (t))
3586 return NULL_TREE;
3587 gcc_fallthrough();
3589 case CONSTRUCTOR:
3590 cp_walk_tree (&TREE_TYPE (t),
3591 &find_parameter_packs_r, ppd, ppd->visited);
3592 return NULL_TREE;
3594 case TYPENAME_TYPE:
3595 cp_walk_tree (&TYPENAME_TYPE_FULLNAME (t), &find_parameter_packs_r,
3596 ppd, ppd->visited);
3597 *walk_subtrees = 0;
3598 return NULL_TREE;
3600 case TYPE_PACK_EXPANSION:
3601 case EXPR_PACK_EXPANSION:
3602 *walk_subtrees = 0;
3603 return NULL_TREE;
3605 case INTEGER_TYPE:
3606 cp_walk_tree (&TYPE_MAX_VALUE (t), &find_parameter_packs_r,
3607 ppd, ppd->visited);
3608 *walk_subtrees = 0;
3609 return NULL_TREE;
3611 case IDENTIFIER_NODE:
3612 cp_walk_tree (&TREE_TYPE (t), &find_parameter_packs_r, ppd,
3613 ppd->visited);
3614 *walk_subtrees = 0;
3615 return NULL_TREE;
3617 case DECLTYPE_TYPE:
3619 /* When traversing a DECLTYPE_TYPE_EXPR, we need to set
3620 type_pack_expansion_p to false so that any placeholders
3621 within the expression don't get marked as parameter packs. */
3622 bool type_pack_expansion_p = ppd->type_pack_expansion_p;
3623 ppd->type_pack_expansion_p = false;
3624 cp_walk_tree (&DECLTYPE_TYPE_EXPR (t), &find_parameter_packs_r,
3625 ppd, ppd->visited);
3626 ppd->type_pack_expansion_p = type_pack_expansion_p;
3627 *walk_subtrees = 0;
3628 return NULL_TREE;
3631 default:
3632 return NULL_TREE;
3635 return NULL_TREE;
3638 /* Determines if the expression or type T uses any parameter packs. */
3639 bool
3640 uses_parameter_packs (tree t)
3642 tree parameter_packs = NULL_TREE;
3643 struct find_parameter_pack_data ppd;
3644 ppd.parameter_packs = &parameter_packs;
3645 ppd.visited = new hash_set<tree>;
3646 ppd.type_pack_expansion_p = false;
3647 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3648 delete ppd.visited;
3649 return parameter_packs != NULL_TREE;
3652 /* Turn ARG, which may be an expression, type, or a TREE_LIST
3653 representation a base-class initializer into a parameter pack
3654 expansion. If all goes well, the resulting node will be an
3655 EXPR_PACK_EXPANSION, TYPE_PACK_EXPANSION, or TREE_LIST,
3656 respectively. */
3657 tree
3658 make_pack_expansion (tree arg)
3660 tree result;
3661 tree parameter_packs = NULL_TREE;
3662 bool for_types = false;
3663 struct find_parameter_pack_data ppd;
3665 if (!arg || arg == error_mark_node)
3666 return arg;
3668 if (TREE_CODE (arg) == TREE_LIST && TREE_PURPOSE (arg))
3670 /* A TREE_LIST with a non-null TREE_PURPOSE is for a base
3671 class initializer. In this case, the TREE_PURPOSE will be a
3672 _TYPE node (representing the base class expansion we're
3673 initializing) and the TREE_VALUE will be a TREE_LIST
3674 containing the initialization arguments.
3676 The resulting expansion looks somewhat different from most
3677 expansions. Rather than returning just one _EXPANSION, we
3678 return a TREE_LIST whose TREE_PURPOSE is a
3679 TYPE_PACK_EXPANSION containing the bases that will be
3680 initialized. The TREE_VALUE will be identical to the
3681 original TREE_VALUE, which is a list of arguments that will
3682 be passed to each base. We do not introduce any new pack
3683 expansion nodes into the TREE_VALUE (although it is possible
3684 that some already exist), because the TREE_PURPOSE and
3685 TREE_VALUE all need to be expanded together with the same
3686 _EXPANSION node. Note that the TYPE_PACK_EXPANSION in the
3687 resulting TREE_PURPOSE will mention the parameter packs in
3688 both the bases and the arguments to the bases. */
3689 tree purpose;
3690 tree value;
3691 tree parameter_packs = NULL_TREE;
3693 /* Determine which parameter packs will be used by the base
3694 class expansion. */
3695 ppd.visited = new hash_set<tree>;
3696 ppd.parameter_packs = &parameter_packs;
3697 ppd.type_pack_expansion_p = true;
3698 gcc_assert (TYPE_P (TREE_PURPOSE (arg)));
3699 cp_walk_tree (&TREE_PURPOSE (arg), &find_parameter_packs_r,
3700 &ppd, ppd.visited);
3702 if (parameter_packs == NULL_TREE)
3704 error ("base initializer expansion %<%T%> contains no parameter packs", arg);
3705 delete ppd.visited;
3706 return error_mark_node;
3709 if (TREE_VALUE (arg) != void_type_node)
3711 /* Collect the sets of parameter packs used in each of the
3712 initialization arguments. */
3713 for (value = TREE_VALUE (arg); value; value = TREE_CHAIN (value))
3715 /* Determine which parameter packs will be expanded in this
3716 argument. */
3717 cp_walk_tree (&TREE_VALUE (value), &find_parameter_packs_r,
3718 &ppd, ppd.visited);
3722 delete ppd.visited;
3724 /* Create the pack expansion type for the base type. */
3725 purpose = cxx_make_type (TYPE_PACK_EXPANSION);
3726 SET_PACK_EXPANSION_PATTERN (purpose, TREE_PURPOSE (arg));
3727 PACK_EXPANSION_PARAMETER_PACKS (purpose) = parameter_packs;
3729 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3730 they will rarely be compared to anything. */
3731 SET_TYPE_STRUCTURAL_EQUALITY (purpose);
3733 return tree_cons (purpose, TREE_VALUE (arg), NULL_TREE);
3736 if (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL)
3737 for_types = true;
3739 /* Build the PACK_EXPANSION_* node. */
3740 result = for_types
3741 ? cxx_make_type (TYPE_PACK_EXPANSION)
3742 : make_node (EXPR_PACK_EXPANSION);
3743 SET_PACK_EXPANSION_PATTERN (result, arg);
3744 if (TREE_CODE (result) == EXPR_PACK_EXPANSION)
3746 /* Propagate type and const-expression information. */
3747 TREE_TYPE (result) = TREE_TYPE (arg);
3748 TREE_CONSTANT (result) = TREE_CONSTANT (arg);
3749 /* Mark this read now, since the expansion might be length 0. */
3750 mark_exp_read (arg);
3752 else
3753 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3754 they will rarely be compared to anything. */
3755 SET_TYPE_STRUCTURAL_EQUALITY (result);
3757 /* Determine which parameter packs will be expanded. */
3758 ppd.parameter_packs = &parameter_packs;
3759 ppd.visited = new hash_set<tree>;
3760 ppd.type_pack_expansion_p = TYPE_P (arg);
3761 cp_walk_tree (&arg, &find_parameter_packs_r, &ppd, ppd.visited);
3762 delete ppd.visited;
3764 /* Make sure we found some parameter packs. */
3765 if (parameter_packs == NULL_TREE)
3767 if (TYPE_P (arg))
3768 error ("expansion pattern %<%T%> contains no argument packs", arg);
3769 else
3770 error ("expansion pattern %<%E%> contains no argument packs", arg);
3771 return error_mark_node;
3773 PACK_EXPANSION_PARAMETER_PACKS (result) = parameter_packs;
3775 PACK_EXPANSION_LOCAL_P (result) = at_function_scope_p ();
3777 return result;
3780 /* Checks T for any "bare" parameter packs, which have not yet been
3781 expanded, and issues an error if any are found. This operation can
3782 only be done on full expressions or types (e.g., an expression
3783 statement, "if" condition, etc.), because we could have expressions like:
3785 foo(f(g(h(args)))...)
3787 where "args" is a parameter pack. check_for_bare_parameter_packs
3788 should not be called for the subexpressions args, h(args),
3789 g(h(args)), or f(g(h(args))), because we would produce erroneous
3790 error messages.
3792 Returns TRUE and emits an error if there were bare parameter packs,
3793 returns FALSE otherwise. */
3794 bool
3795 check_for_bare_parameter_packs (tree t)
3797 tree parameter_packs = NULL_TREE;
3798 struct find_parameter_pack_data ppd;
3800 if (!processing_template_decl || !t || t == error_mark_node)
3801 return false;
3803 if (TREE_CODE (t) == TYPE_DECL)
3804 t = TREE_TYPE (t);
3806 ppd.parameter_packs = &parameter_packs;
3807 ppd.visited = new hash_set<tree>;
3808 ppd.type_pack_expansion_p = false;
3809 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3810 delete ppd.visited;
3812 if (parameter_packs)
3814 location_t loc = EXPR_LOC_OR_LOC (t, input_location);
3815 error_at (loc, "parameter packs not expanded with %<...%>:");
3816 while (parameter_packs)
3818 tree pack = TREE_VALUE (parameter_packs);
3819 tree name = NULL_TREE;
3821 if (TREE_CODE (pack) == TEMPLATE_TYPE_PARM
3822 || TREE_CODE (pack) == TEMPLATE_TEMPLATE_PARM)
3823 name = TYPE_NAME (pack);
3824 else if (TREE_CODE (pack) == TEMPLATE_PARM_INDEX)
3825 name = DECL_NAME (TEMPLATE_PARM_DECL (pack));
3826 else
3827 name = DECL_NAME (pack);
3829 if (name)
3830 inform (loc, " %qD", name);
3831 else
3832 inform (loc, " <anonymous>");
3834 parameter_packs = TREE_CHAIN (parameter_packs);
3837 return true;
3840 return false;
3843 /* Expand any parameter packs that occur in the template arguments in
3844 ARGS. */
3845 tree
3846 expand_template_argument_pack (tree args)
3848 if (args == error_mark_node)
3849 return error_mark_node;
3851 tree result_args = NULL_TREE;
3852 int in_arg, out_arg = 0, nargs = args ? TREE_VEC_LENGTH (args) : 0;
3853 int num_result_args = -1;
3854 int non_default_args_count = -1;
3856 /* First, determine if we need to expand anything, and the number of
3857 slots we'll need. */
3858 for (in_arg = 0; in_arg < nargs; ++in_arg)
3860 tree arg = TREE_VEC_ELT (args, in_arg);
3861 if (arg == NULL_TREE)
3862 return args;
3863 if (ARGUMENT_PACK_P (arg))
3865 int num_packed = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg));
3866 if (num_result_args < 0)
3867 num_result_args = in_arg + num_packed;
3868 else
3869 num_result_args += num_packed;
3871 else
3873 if (num_result_args >= 0)
3874 num_result_args++;
3878 /* If no expansion is necessary, we're done. */
3879 if (num_result_args < 0)
3880 return args;
3882 /* Expand arguments. */
3883 result_args = make_tree_vec (num_result_args);
3884 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (args))
3885 non_default_args_count =
3886 GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (args);
3887 for (in_arg = 0; in_arg < nargs; ++in_arg)
3889 tree arg = TREE_VEC_ELT (args, in_arg);
3890 if (ARGUMENT_PACK_P (arg))
3892 tree packed = ARGUMENT_PACK_ARGS (arg);
3893 int i, num_packed = TREE_VEC_LENGTH (packed);
3894 for (i = 0; i < num_packed; ++i, ++out_arg)
3895 TREE_VEC_ELT (result_args, out_arg) = TREE_VEC_ELT(packed, i);
3896 if (non_default_args_count > 0)
3897 non_default_args_count += num_packed - 1;
3899 else
3901 TREE_VEC_ELT (result_args, out_arg) = arg;
3902 ++out_arg;
3905 if (non_default_args_count >= 0)
3906 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (result_args, non_default_args_count);
3907 return result_args;
3910 /* Checks if DECL shadows a template parameter.
3912 [temp.local]: A template-parameter shall not be redeclared within its
3913 scope (including nested scopes).
3915 Emits an error and returns TRUE if the DECL shadows a parameter,
3916 returns FALSE otherwise. */
3918 bool
3919 check_template_shadow (tree decl)
3921 tree olddecl;
3923 /* If we're not in a template, we can't possibly shadow a template
3924 parameter. */
3925 if (!current_template_parms)
3926 return true;
3928 /* Figure out what we're shadowing. */
3929 if (TREE_CODE (decl) == OVERLOAD)
3930 decl = OVL_CURRENT (decl);
3931 olddecl = innermost_non_namespace_value (DECL_NAME (decl));
3933 /* If there's no previous binding for this name, we're not shadowing
3934 anything, let alone a template parameter. */
3935 if (!olddecl)
3936 return true;
3938 /* If we're not shadowing a template parameter, we're done. Note
3939 that OLDDECL might be an OVERLOAD (or perhaps even an
3940 ERROR_MARK), so we can't just blithely assume it to be a _DECL
3941 node. */
3942 if (!DECL_P (olddecl) || !DECL_TEMPLATE_PARM_P (olddecl))
3943 return true;
3945 /* We check for decl != olddecl to avoid bogus errors for using a
3946 name inside a class. We check TPFI to avoid duplicate errors for
3947 inline member templates. */
3948 if (decl == olddecl
3949 || (DECL_TEMPLATE_PARM_P (decl)
3950 && TEMPLATE_PARMS_FOR_INLINE (current_template_parms)))
3951 return true;
3953 /* Don't complain about the injected class name, as we've already
3954 complained about the class itself. */
3955 if (DECL_SELF_REFERENCE_P (decl))
3956 return false;
3958 if (DECL_TEMPLATE_PARM_P (decl))
3959 error ("declaration of template parameter %q+D shadows "
3960 "template parameter", decl);
3961 else
3962 error ("declaration of %q+#D shadows template parameter", decl);
3963 inform (DECL_SOURCE_LOCATION (olddecl),
3964 "template parameter %qD declared here", olddecl);
3965 return false;
3968 /* Return a new TEMPLATE_PARM_INDEX with the indicated INDEX, LEVEL,
3969 ORIG_LEVEL, DECL, and TYPE. */
3971 static tree
3972 build_template_parm_index (int index,
3973 int level,
3974 int orig_level,
3975 tree decl,
3976 tree type)
3978 tree t = make_node (TEMPLATE_PARM_INDEX);
3979 TEMPLATE_PARM_IDX (t) = index;
3980 TEMPLATE_PARM_LEVEL (t) = level;
3981 TEMPLATE_PARM_ORIG_LEVEL (t) = orig_level;
3982 TEMPLATE_PARM_DECL (t) = decl;
3983 TREE_TYPE (t) = type;
3984 TREE_CONSTANT (t) = TREE_CONSTANT (decl);
3985 TREE_READONLY (t) = TREE_READONLY (decl);
3987 return t;
3990 /* Find the canonical type parameter for the given template type
3991 parameter. Returns the canonical type parameter, which may be TYPE
3992 if no such parameter existed. */
3994 static tree
3995 canonical_type_parameter (tree type)
3997 tree list;
3998 int idx = TEMPLATE_TYPE_IDX (type);
3999 if (!canonical_template_parms)
4000 vec_alloc (canonical_template_parms, idx + 1);
4002 if (canonical_template_parms->length () <= (unsigned) idx)
4003 vec_safe_grow_cleared (canonical_template_parms, idx + 1);
4005 list = (*canonical_template_parms)[idx];
4006 while (list && !comptypes (type, TREE_VALUE (list), COMPARE_STRUCTURAL))
4007 list = TREE_CHAIN (list);
4009 if (list)
4010 return TREE_VALUE (list);
4011 else
4013 (*canonical_template_parms)[idx]
4014 = tree_cons (NULL_TREE, type, (*canonical_template_parms)[idx]);
4015 return type;
4019 /* Return a TEMPLATE_PARM_INDEX, similar to INDEX, but whose
4020 TEMPLATE_PARM_LEVEL has been decreased by LEVELS. If such a
4021 TEMPLATE_PARM_INDEX already exists, it is returned; otherwise, a
4022 new one is created. */
4024 static tree
4025 reduce_template_parm_level (tree index, tree type, int levels, tree args,
4026 tsubst_flags_t complain)
4028 if (TEMPLATE_PARM_DESCENDANTS (index) == NULL_TREE
4029 || (TEMPLATE_PARM_LEVEL (TEMPLATE_PARM_DESCENDANTS (index))
4030 != TEMPLATE_PARM_LEVEL (index) - levels)
4031 || !same_type_p (type, TREE_TYPE (TEMPLATE_PARM_DESCENDANTS (index))))
4033 tree orig_decl = TEMPLATE_PARM_DECL (index);
4034 tree decl, t;
4036 decl = build_decl (DECL_SOURCE_LOCATION (orig_decl),
4037 TREE_CODE (orig_decl), DECL_NAME (orig_decl), type);
4038 TREE_CONSTANT (decl) = TREE_CONSTANT (orig_decl);
4039 TREE_READONLY (decl) = TREE_READONLY (orig_decl);
4040 DECL_ARTIFICIAL (decl) = 1;
4041 SET_DECL_TEMPLATE_PARM_P (decl);
4043 t = build_template_parm_index (TEMPLATE_PARM_IDX (index),
4044 TEMPLATE_PARM_LEVEL (index) - levels,
4045 TEMPLATE_PARM_ORIG_LEVEL (index),
4046 decl, type);
4047 TEMPLATE_PARM_DESCENDANTS (index) = t;
4048 TEMPLATE_PARM_PARAMETER_PACK (t)
4049 = TEMPLATE_PARM_PARAMETER_PACK (index);
4051 /* Template template parameters need this. */
4052 if (TREE_CODE (decl) == TEMPLATE_DECL)
4054 DECL_TEMPLATE_RESULT (decl)
4055 = build_decl (DECL_SOURCE_LOCATION (decl),
4056 TYPE_DECL, DECL_NAME (decl), type);
4057 DECL_ARTIFICIAL (DECL_TEMPLATE_RESULT (decl)) = true;
4058 DECL_TEMPLATE_PARMS (decl) = tsubst_template_parms
4059 (DECL_TEMPLATE_PARMS (orig_decl), args, complain);
4063 return TEMPLATE_PARM_DESCENDANTS (index);
4066 /* Process information from new template parameter PARM and append it
4067 to the LIST being built. This new parameter is a non-type
4068 parameter iff IS_NON_TYPE is true. This new parameter is a
4069 parameter pack iff IS_PARAMETER_PACK is true. The location of PARM
4070 is in PARM_LOC. */
4072 tree
4073 process_template_parm (tree list, location_t parm_loc, tree parm,
4074 bool is_non_type, bool is_parameter_pack)
4076 tree decl = 0;
4077 int idx = 0;
4079 gcc_assert (TREE_CODE (parm) == TREE_LIST);
4080 tree defval = TREE_PURPOSE (parm);
4081 tree constr = TREE_TYPE (parm);
4083 if (list)
4085 tree p = tree_last (list);
4087 if (p && TREE_VALUE (p) != error_mark_node)
4089 p = TREE_VALUE (p);
4090 if (TREE_CODE (p) == TYPE_DECL || TREE_CODE (p) == TEMPLATE_DECL)
4091 idx = TEMPLATE_TYPE_IDX (TREE_TYPE (p));
4092 else
4093 idx = TEMPLATE_PARM_IDX (DECL_INITIAL (p));
4096 ++idx;
4099 if (is_non_type)
4101 parm = TREE_VALUE (parm);
4103 SET_DECL_TEMPLATE_PARM_P (parm);
4105 if (TREE_TYPE (parm) != error_mark_node)
4107 /* [temp.param]
4109 The top-level cv-qualifiers on the template-parameter are
4110 ignored when determining its type. */
4111 TREE_TYPE (parm) = TYPE_MAIN_VARIANT (TREE_TYPE (parm));
4112 if (invalid_nontype_parm_type_p (TREE_TYPE (parm), 1))
4113 TREE_TYPE (parm) = error_mark_node;
4114 else if (uses_parameter_packs (TREE_TYPE (parm))
4115 && !is_parameter_pack
4116 /* If we're in a nested template parameter list, the template
4117 template parameter could be a parameter pack. */
4118 && processing_template_parmlist == 1)
4120 /* This template parameter is not a parameter pack, but it
4121 should be. Complain about "bare" parameter packs. */
4122 check_for_bare_parameter_packs (TREE_TYPE (parm));
4124 /* Recover by calling this a parameter pack. */
4125 is_parameter_pack = true;
4129 /* A template parameter is not modifiable. */
4130 TREE_CONSTANT (parm) = 1;
4131 TREE_READONLY (parm) = 1;
4132 decl = build_decl (parm_loc,
4133 CONST_DECL, DECL_NAME (parm), TREE_TYPE (parm));
4134 TREE_CONSTANT (decl) = 1;
4135 TREE_READONLY (decl) = 1;
4136 DECL_INITIAL (parm) = DECL_INITIAL (decl)
4137 = build_template_parm_index (idx, processing_template_decl,
4138 processing_template_decl,
4139 decl, TREE_TYPE (parm));
4141 TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm))
4142 = is_parameter_pack;
4144 else
4146 tree t;
4147 parm = TREE_VALUE (TREE_VALUE (parm));
4149 if (parm && TREE_CODE (parm) == TEMPLATE_DECL)
4151 t = cxx_make_type (TEMPLATE_TEMPLATE_PARM);
4152 /* This is for distinguishing between real templates and template
4153 template parameters */
4154 TREE_TYPE (parm) = t;
4155 TREE_TYPE (DECL_TEMPLATE_RESULT (parm)) = t;
4156 decl = parm;
4158 else
4160 t = cxx_make_type (TEMPLATE_TYPE_PARM);
4161 /* parm is either IDENTIFIER_NODE or NULL_TREE. */
4162 decl = build_decl (parm_loc,
4163 TYPE_DECL, parm, t);
4166 TYPE_NAME (t) = decl;
4167 TYPE_STUB_DECL (t) = decl;
4168 parm = decl;
4169 TEMPLATE_TYPE_PARM_INDEX (t)
4170 = build_template_parm_index (idx, processing_template_decl,
4171 processing_template_decl,
4172 decl, TREE_TYPE (parm));
4173 TEMPLATE_TYPE_PARAMETER_PACK (t) = is_parameter_pack;
4174 TYPE_CANONICAL (t) = canonical_type_parameter (t);
4176 DECL_ARTIFICIAL (decl) = 1;
4177 SET_DECL_TEMPLATE_PARM_P (decl);
4179 /* Build requirements for the type/template parameter.
4180 This must be done after SET_DECL_TEMPLATE_PARM_P or
4181 process_template_parm could fail. */
4182 tree reqs = finish_shorthand_constraint (parm, constr);
4184 pushdecl (decl);
4186 /* Build the parameter node linking the parameter declaration,
4187 its default argument (if any), and its constraints (if any). */
4188 parm = build_tree_list (defval, parm);
4189 TEMPLATE_PARM_CONSTRAINTS (parm) = reqs;
4191 return chainon (list, parm);
4194 /* The end of a template parameter list has been reached. Process the
4195 tree list into a parameter vector, converting each parameter into a more
4196 useful form. Type parameters are saved as IDENTIFIER_NODEs, and others
4197 as PARM_DECLs. */
4199 tree
4200 end_template_parm_list (tree parms)
4202 int nparms;
4203 tree parm, next;
4204 tree saved_parmlist = make_tree_vec (list_length (parms));
4206 /* Pop the dummy parameter level and add the real one. */
4207 current_template_parms = TREE_CHAIN (current_template_parms);
4209 current_template_parms
4210 = tree_cons (size_int (processing_template_decl),
4211 saved_parmlist, current_template_parms);
4213 for (parm = parms, nparms = 0; parm; parm = next, nparms++)
4215 next = TREE_CHAIN (parm);
4216 TREE_VEC_ELT (saved_parmlist, nparms) = parm;
4217 TREE_CHAIN (parm) = NULL_TREE;
4220 --processing_template_parmlist;
4222 return saved_parmlist;
4225 // Explicitly indicate the end of the template parameter list. We assume
4226 // that the current template parameters have been constructed and/or
4227 // managed explicitly, as when creating new template template parameters
4228 // from a shorthand constraint.
4229 void
4230 end_template_parm_list ()
4232 --processing_template_parmlist;
4235 /* end_template_decl is called after a template declaration is seen. */
4237 void
4238 end_template_decl (void)
4240 reset_specialization ();
4242 if (! processing_template_decl)
4243 return;
4245 /* This matches the pushlevel in begin_template_parm_list. */
4246 finish_scope ();
4248 --processing_template_decl;
4249 current_template_parms = TREE_CHAIN (current_template_parms);
4252 /* Takes a TREE_LIST representing a template parameter and convert it
4253 into an argument suitable to be passed to the type substitution
4254 functions. Note that If the TREE_LIST contains an error_mark
4255 node, the returned argument is error_mark_node. */
4257 tree
4258 template_parm_to_arg (tree t)
4261 if (t == NULL_TREE
4262 || TREE_CODE (t) != TREE_LIST)
4263 return t;
4265 if (error_operand_p (TREE_VALUE (t)))
4266 return error_mark_node;
4268 t = TREE_VALUE (t);
4270 if (TREE_CODE (t) == TYPE_DECL
4271 || TREE_CODE (t) == TEMPLATE_DECL)
4273 t = TREE_TYPE (t);
4275 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
4277 /* Turn this argument into a TYPE_ARGUMENT_PACK
4278 with a single element, which expands T. */
4279 tree vec = make_tree_vec (1);
4280 if (CHECKING_P)
4281 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (vec, TREE_VEC_LENGTH (vec));
4283 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
4285 t = cxx_make_type (TYPE_ARGUMENT_PACK);
4286 SET_ARGUMENT_PACK_ARGS (t, vec);
4289 else
4291 t = DECL_INITIAL (t);
4293 if (TEMPLATE_PARM_PARAMETER_PACK (t))
4295 /* Turn this argument into a NONTYPE_ARGUMENT_PACK
4296 with a single element, which expands T. */
4297 tree vec = make_tree_vec (1);
4298 tree type = TREE_TYPE (TEMPLATE_PARM_DECL (t));
4299 if (CHECKING_P)
4300 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (vec, TREE_VEC_LENGTH (vec));
4302 t = convert_from_reference (t);
4303 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
4305 t = make_node (NONTYPE_ARGUMENT_PACK);
4306 SET_ARGUMENT_PACK_ARGS (t, vec);
4307 TREE_TYPE (t) = type;
4309 else
4310 t = convert_from_reference (t);
4312 return t;
4315 /* Given a single level of template parameters (a TREE_VEC), return it
4316 as a set of template arguments. */
4318 static tree
4319 template_parms_level_to_args (tree parms)
4321 tree a = copy_node (parms);
4322 TREE_TYPE (a) = NULL_TREE;
4323 for (int i = TREE_VEC_LENGTH (a) - 1; i >= 0; --i)
4324 TREE_VEC_ELT (a, i) = template_parm_to_arg (TREE_VEC_ELT (a, i));
4326 if (CHECKING_P)
4327 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (a, TREE_VEC_LENGTH (a));
4329 return a;
4332 /* Given a set of template parameters, return them as a set of template
4333 arguments. The template parameters are represented as a TREE_VEC, in
4334 the form documented in cp-tree.h for template arguments. */
4336 static tree
4337 template_parms_to_args (tree parms)
4339 tree header;
4340 tree args = NULL_TREE;
4341 int length = TMPL_PARMS_DEPTH (parms);
4342 int l = length;
4344 /* If there is only one level of template parameters, we do not
4345 create a TREE_VEC of TREE_VECs. Instead, we return a single
4346 TREE_VEC containing the arguments. */
4347 if (length > 1)
4348 args = make_tree_vec (length);
4350 for (header = parms; header; header = TREE_CHAIN (header))
4352 tree a = template_parms_level_to_args (TREE_VALUE (header));
4354 if (length > 1)
4355 TREE_VEC_ELT (args, --l) = a;
4356 else
4357 args = a;
4360 return args;
4363 /* Within the declaration of a template, return the currently active
4364 template parameters as an argument TREE_VEC. */
4366 static tree
4367 current_template_args (void)
4369 return template_parms_to_args (current_template_parms);
4372 /* Update the declared TYPE by doing any lookups which were thought to be
4373 dependent, but are not now that we know the SCOPE of the declarator. */
4375 tree
4376 maybe_update_decl_type (tree orig_type, tree scope)
4378 tree type = orig_type;
4380 if (type == NULL_TREE)
4381 return type;
4383 if (TREE_CODE (orig_type) == TYPE_DECL)
4384 type = TREE_TYPE (type);
4386 if (scope && TYPE_P (scope) && dependent_type_p (scope)
4387 && dependent_type_p (type)
4388 /* Don't bother building up the args in this case. */
4389 && TREE_CODE (type) != TEMPLATE_TYPE_PARM)
4391 /* tsubst in the args corresponding to the template parameters,
4392 including auto if present. Most things will be unchanged, but
4393 make_typename_type and tsubst_qualified_id will resolve
4394 TYPENAME_TYPEs and SCOPE_REFs that were previously dependent. */
4395 tree args = current_template_args ();
4396 tree auto_node = type_uses_auto (type);
4397 tree pushed;
4398 if (auto_node)
4400 tree auto_vec = make_tree_vec (1);
4401 TREE_VEC_ELT (auto_vec, 0) = auto_node;
4402 args = add_to_template_args (args, auto_vec);
4404 pushed = push_scope (scope);
4405 type = tsubst (type, args, tf_warning_or_error, NULL_TREE);
4406 if (pushed)
4407 pop_scope (scope);
4410 if (type == error_mark_node)
4411 return orig_type;
4413 if (TREE_CODE (orig_type) == TYPE_DECL)
4415 if (same_type_p (type, TREE_TYPE (orig_type)))
4416 type = orig_type;
4417 else
4418 type = TYPE_NAME (type);
4420 return type;
4423 /* Return a TEMPLATE_DECL corresponding to DECL, using the indicated
4424 template PARMS and constraints, CONSTR. If MEMBER_TEMPLATE_P is true,
4425 the new template is a member template. */
4427 tree
4428 build_template_decl (tree decl, tree parms, bool member_template_p)
4430 tree tmpl = build_lang_decl (TEMPLATE_DECL, DECL_NAME (decl), NULL_TREE);
4431 DECL_TEMPLATE_PARMS (tmpl) = parms;
4432 DECL_CONTEXT (tmpl) = DECL_CONTEXT (decl);
4433 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
4434 DECL_MEMBER_TEMPLATE_P (tmpl) = member_template_p;
4436 return tmpl;
4439 struct template_parm_data
4441 /* The level of the template parameters we are currently
4442 processing. */
4443 int level;
4445 /* The index of the specialization argument we are currently
4446 processing. */
4447 int current_arg;
4449 /* An array whose size is the number of template parameters. The
4450 elements are nonzero if the parameter has been used in any one
4451 of the arguments processed so far. */
4452 int* parms;
4454 /* An array whose size is the number of template arguments. The
4455 elements are nonzero if the argument makes use of template
4456 parameters of this level. */
4457 int* arg_uses_template_parms;
4460 /* Subroutine of push_template_decl used to see if each template
4461 parameter in a partial specialization is used in the explicit
4462 argument list. If T is of the LEVEL given in DATA (which is
4463 treated as a template_parm_data*), then DATA->PARMS is marked
4464 appropriately. */
4466 static int
4467 mark_template_parm (tree t, void* data)
4469 int level;
4470 int idx;
4471 struct template_parm_data* tpd = (struct template_parm_data*) data;
4473 template_parm_level_and_index (t, &level, &idx);
4475 if (level == tpd->level)
4477 tpd->parms[idx] = 1;
4478 tpd->arg_uses_template_parms[tpd->current_arg] = 1;
4481 /* In C++17 the type of a non-type argument is a deduced context. */
4482 if (cxx_dialect >= cxx1z
4483 && TREE_CODE (t) == TEMPLATE_PARM_INDEX)
4484 for_each_template_parm (TREE_TYPE (t),
4485 &mark_template_parm,
4486 data,
4487 NULL,
4488 /*include_nondeduced_p=*/false);
4490 /* Return zero so that for_each_template_parm will continue the
4491 traversal of the tree; we want to mark *every* template parm. */
4492 return 0;
4495 /* Process the partial specialization DECL. */
4497 static tree
4498 process_partial_specialization (tree decl)
4500 tree type = TREE_TYPE (decl);
4501 tree tinfo = get_template_info (decl);
4502 tree maintmpl = TI_TEMPLATE (tinfo);
4503 tree specargs = TI_ARGS (tinfo);
4504 tree inner_args = INNERMOST_TEMPLATE_ARGS (specargs);
4505 tree main_inner_parms = DECL_INNERMOST_TEMPLATE_PARMS (maintmpl);
4506 tree inner_parms;
4507 tree inst;
4508 int nargs = TREE_VEC_LENGTH (inner_args);
4509 int ntparms;
4510 int i;
4511 bool did_error_intro = false;
4512 struct template_parm_data tpd;
4513 struct template_parm_data tpd2;
4515 gcc_assert (current_template_parms);
4517 /* A concept cannot be specialized. */
4518 if (flag_concepts && variable_concept_p (maintmpl))
4520 error ("specialization of variable concept %q#D", maintmpl);
4521 return error_mark_node;
4524 inner_parms = INNERMOST_TEMPLATE_PARMS (current_template_parms);
4525 ntparms = TREE_VEC_LENGTH (inner_parms);
4527 /* We check that each of the template parameters given in the
4528 partial specialization is used in the argument list to the
4529 specialization. For example:
4531 template <class T> struct S;
4532 template <class T> struct S<T*>;
4534 The second declaration is OK because `T*' uses the template
4535 parameter T, whereas
4537 template <class T> struct S<int>;
4539 is no good. Even trickier is:
4541 template <class T>
4542 struct S1
4544 template <class U>
4545 struct S2;
4546 template <class U>
4547 struct S2<T>;
4550 The S2<T> declaration is actually invalid; it is a
4551 full-specialization. Of course,
4553 template <class U>
4554 struct S2<T (*)(U)>;
4556 or some such would have been OK. */
4557 tpd.level = TMPL_PARMS_DEPTH (current_template_parms);
4558 tpd.parms = XALLOCAVEC (int, ntparms);
4559 memset (tpd.parms, 0, sizeof (int) * ntparms);
4561 tpd.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4562 memset (tpd.arg_uses_template_parms, 0, sizeof (int) * nargs);
4563 for (i = 0; i < nargs; ++i)
4565 tpd.current_arg = i;
4566 for_each_template_parm (TREE_VEC_ELT (inner_args, i),
4567 &mark_template_parm,
4568 &tpd,
4569 NULL,
4570 /*include_nondeduced_p=*/false);
4572 for (i = 0; i < ntparms; ++i)
4573 if (tpd.parms[i] == 0)
4575 /* One of the template parms was not used in a deduced context in the
4576 specialization. */
4577 if (!did_error_intro)
4579 error ("template parameters not deducible in "
4580 "partial specialization:");
4581 did_error_intro = true;
4584 inform (input_location, " %qD",
4585 TREE_VALUE (TREE_VEC_ELT (inner_parms, i)));
4588 if (did_error_intro)
4589 return error_mark_node;
4591 /* [temp.class.spec]
4593 The argument list of the specialization shall not be identical to
4594 the implicit argument list of the primary template. */
4595 tree main_args
4596 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (maintmpl)));
4597 if (comp_template_args (inner_args, INNERMOST_TEMPLATE_ARGS (main_args))
4598 && (!flag_concepts
4599 || !strictly_subsumes (current_template_constraints (),
4600 get_constraints (maintmpl))))
4602 if (!flag_concepts)
4603 error ("partial specialization %q+D does not specialize "
4604 "any template arguments", decl);
4605 else
4606 error ("partial specialization %q+D does not specialize any "
4607 "template arguments and is not more constrained than", decl);
4608 inform (DECL_SOURCE_LOCATION (maintmpl), "primary template here");
4611 /* A partial specialization that replaces multiple parameters of the
4612 primary template with a pack expansion is less specialized for those
4613 parameters. */
4614 if (nargs < DECL_NTPARMS (maintmpl))
4616 error ("partial specialization is not more specialized than the "
4617 "primary template because it replaces multiple parameters "
4618 "with a pack expansion");
4619 inform (DECL_SOURCE_LOCATION (maintmpl), "primary template here");
4620 /* Avoid crash in process_partial_specialization. */
4621 return decl;
4624 /* If we aren't in a dependent class, we can actually try deduction. */
4625 else if (tpd.level == 1
4626 /* FIXME we should be able to handle a partial specialization of a
4627 partial instantiation, but currently we can't (c++/41727). */
4628 && TMPL_ARGS_DEPTH (specargs) == 1
4629 && !get_partial_spec_bindings (maintmpl, maintmpl, specargs))
4631 if (permerror (input_location, "partial specialization %qD is not "
4632 "more specialized than", decl))
4633 inform (DECL_SOURCE_LOCATION (maintmpl), "primary template %qD",
4634 maintmpl);
4637 /* [temp.class.spec]
4639 A partially specialized non-type argument expression shall not
4640 involve template parameters of the partial specialization except
4641 when the argument expression is a simple identifier.
4643 The type of a template parameter corresponding to a specialized
4644 non-type argument shall not be dependent on a parameter of the
4645 specialization.
4647 Also, we verify that pack expansions only occur at the
4648 end of the argument list. */
4649 gcc_assert (nargs == DECL_NTPARMS (maintmpl));
4650 tpd2.parms = 0;
4651 for (i = 0; i < nargs; ++i)
4653 tree parm = TREE_VALUE (TREE_VEC_ELT (main_inner_parms, i));
4654 tree arg = TREE_VEC_ELT (inner_args, i);
4655 tree packed_args = NULL_TREE;
4656 int j, len = 1;
4658 if (ARGUMENT_PACK_P (arg))
4660 /* Extract the arguments from the argument pack. We'll be
4661 iterating over these in the following loop. */
4662 packed_args = ARGUMENT_PACK_ARGS (arg);
4663 len = TREE_VEC_LENGTH (packed_args);
4666 for (j = 0; j < len; j++)
4668 if (packed_args)
4669 /* Get the Jth argument in the parameter pack. */
4670 arg = TREE_VEC_ELT (packed_args, j);
4672 if (PACK_EXPANSION_P (arg))
4674 /* Pack expansions must come at the end of the
4675 argument list. */
4676 if ((packed_args && j < len - 1)
4677 || (!packed_args && i < nargs - 1))
4679 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4680 error ("parameter pack argument %qE must be at the "
4681 "end of the template argument list", arg);
4682 else
4683 error ("parameter pack argument %qT must be at the "
4684 "end of the template argument list", arg);
4688 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4689 /* We only care about the pattern. */
4690 arg = PACK_EXPANSION_PATTERN (arg);
4692 if (/* These first two lines are the `non-type' bit. */
4693 !TYPE_P (arg)
4694 && TREE_CODE (arg) != TEMPLATE_DECL
4695 /* This next two lines are the `argument expression is not just a
4696 simple identifier' condition and also the `specialized
4697 non-type argument' bit. */
4698 && TREE_CODE (arg) != TEMPLATE_PARM_INDEX
4699 && !(REFERENCE_REF_P (arg)
4700 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_PARM_INDEX))
4702 if ((!packed_args && tpd.arg_uses_template_parms[i])
4703 || (packed_args && uses_template_parms (arg)))
4704 error ("template argument %qE involves template parameter(s)",
4705 arg);
4706 else
4708 /* Look at the corresponding template parameter,
4709 marking which template parameters its type depends
4710 upon. */
4711 tree type = TREE_TYPE (parm);
4713 if (!tpd2.parms)
4715 /* We haven't yet initialized TPD2. Do so now. */
4716 tpd2.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4717 /* The number of parameters here is the number in the
4718 main template, which, as checked in the assertion
4719 above, is NARGS. */
4720 tpd2.parms = XALLOCAVEC (int, nargs);
4721 tpd2.level =
4722 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (maintmpl));
4725 /* Mark the template parameters. But this time, we're
4726 looking for the template parameters of the main
4727 template, not in the specialization. */
4728 tpd2.current_arg = i;
4729 tpd2.arg_uses_template_parms[i] = 0;
4730 memset (tpd2.parms, 0, sizeof (int) * nargs);
4731 for_each_template_parm (type,
4732 &mark_template_parm,
4733 &tpd2,
4734 NULL,
4735 /*include_nondeduced_p=*/false);
4737 if (tpd2.arg_uses_template_parms [i])
4739 /* The type depended on some template parameters.
4740 If they are fully specialized in the
4741 specialization, that's OK. */
4742 int j;
4743 int count = 0;
4744 for (j = 0; j < nargs; ++j)
4745 if (tpd2.parms[j] != 0
4746 && tpd.arg_uses_template_parms [j])
4747 ++count;
4748 if (count != 0)
4749 error_n (input_location, count,
4750 "type %qT of template argument %qE depends "
4751 "on a template parameter",
4752 "type %qT of template argument %qE depends "
4753 "on template parameters",
4754 type,
4755 arg);
4762 /* We should only get here once. */
4763 if (TREE_CODE (decl) == TYPE_DECL)
4764 gcc_assert (!COMPLETE_TYPE_P (type));
4766 // Build the template decl.
4767 tree tmpl = build_template_decl (decl, current_template_parms,
4768 DECL_MEMBER_TEMPLATE_P (maintmpl));
4769 TREE_TYPE (tmpl) = type;
4770 DECL_TEMPLATE_RESULT (tmpl) = decl;
4771 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
4772 DECL_TEMPLATE_INFO (tmpl) = build_template_info (maintmpl, specargs);
4773 DECL_PRIMARY_TEMPLATE (tmpl) = maintmpl;
4775 /* Give template template parms a DECL_CONTEXT of the template
4776 for which they are a parameter. */
4777 for (i = 0; i < ntparms; ++i)
4779 tree parm = TREE_VALUE (TREE_VEC_ELT (inner_parms, i));
4780 if (TREE_CODE (parm) == TEMPLATE_DECL)
4781 DECL_CONTEXT (parm) = tmpl;
4784 if (VAR_P (decl))
4785 /* We didn't register this in check_explicit_specialization so we could
4786 wait until the constraints were set. */
4787 decl = register_specialization (decl, maintmpl, specargs, false, 0);
4788 else
4789 associate_classtype_constraints (type);
4791 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)
4792 = tree_cons (specargs, tmpl,
4793 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl));
4794 TREE_TYPE (DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)) = type;
4796 for (inst = DECL_TEMPLATE_INSTANTIATIONS (maintmpl); inst;
4797 inst = TREE_CHAIN (inst))
4799 tree instance = TREE_VALUE (inst);
4800 if (TYPE_P (instance)
4801 ? (COMPLETE_TYPE_P (instance)
4802 && CLASSTYPE_IMPLICIT_INSTANTIATION (instance))
4803 : DECL_TEMPLATE_INSTANTIATION (instance))
4805 tree spec = most_specialized_partial_spec (instance, tf_none);
4806 tree inst_decl = (DECL_P (instance)
4807 ? instance : TYPE_NAME (instance));
4808 if (!spec)
4809 /* OK */;
4810 else if (spec == error_mark_node)
4811 permerror (input_location,
4812 "declaration of %qD ambiguates earlier template "
4813 "instantiation for %qD", decl, inst_decl);
4814 else if (TREE_VALUE (spec) == tmpl)
4815 permerror (input_location,
4816 "partial specialization of %qD after instantiation "
4817 "of %qD", decl, inst_decl);
4821 return decl;
4824 /* PARM is a template parameter of some form; return the corresponding
4825 TEMPLATE_PARM_INDEX. */
4827 static tree
4828 get_template_parm_index (tree parm)
4830 if (TREE_CODE (parm) == PARM_DECL
4831 || TREE_CODE (parm) == CONST_DECL)
4832 parm = DECL_INITIAL (parm);
4833 else if (TREE_CODE (parm) == TYPE_DECL
4834 || TREE_CODE (parm) == TEMPLATE_DECL)
4835 parm = TREE_TYPE (parm);
4836 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
4837 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM
4838 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
4839 parm = TEMPLATE_TYPE_PARM_INDEX (parm);
4840 gcc_assert (TREE_CODE (parm) == TEMPLATE_PARM_INDEX);
4841 return parm;
4844 /* Subroutine of fixed_parameter_pack_p below. Look for any template
4845 parameter packs used by the template parameter PARM. */
4847 static void
4848 fixed_parameter_pack_p_1 (tree parm, struct find_parameter_pack_data *ppd)
4850 /* A type parm can't refer to another parm. */
4851 if (TREE_CODE (parm) == TYPE_DECL)
4852 return;
4853 else if (TREE_CODE (parm) == PARM_DECL)
4855 cp_walk_tree (&TREE_TYPE (parm), &find_parameter_packs_r,
4856 ppd, ppd->visited);
4857 return;
4860 gcc_assert (TREE_CODE (parm) == TEMPLATE_DECL);
4862 tree vec = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (parm));
4863 for (int i = 0; i < TREE_VEC_LENGTH (vec); ++i)
4864 fixed_parameter_pack_p_1 (TREE_VALUE (TREE_VEC_ELT (vec, i)), ppd);
4867 /* PARM is a template parameter pack. Return any parameter packs used in
4868 its type or the type of any of its template parameters. If there are
4869 any such packs, it will be instantiated into a fixed template parameter
4870 list by partial instantiation rather than be fully deduced. */
4872 tree
4873 fixed_parameter_pack_p (tree parm)
4875 /* This can only be true in a member template. */
4876 if (TEMPLATE_PARM_ORIG_LEVEL (get_template_parm_index (parm)) < 2)
4877 return NULL_TREE;
4878 /* This can only be true for a parameter pack. */
4879 if (!template_parameter_pack_p (parm))
4880 return NULL_TREE;
4881 /* A type parm can't refer to another parm. */
4882 if (TREE_CODE (parm) == TYPE_DECL)
4883 return NULL_TREE;
4885 tree parameter_packs = NULL_TREE;
4886 struct find_parameter_pack_data ppd;
4887 ppd.parameter_packs = &parameter_packs;
4888 ppd.visited = new hash_set<tree>;
4889 ppd.type_pack_expansion_p = false;
4891 fixed_parameter_pack_p_1 (parm, &ppd);
4893 delete ppd.visited;
4894 return parameter_packs;
4897 /* Check that a template declaration's use of default arguments and
4898 parameter packs is not invalid. Here, PARMS are the template
4899 parameters. IS_PRIMARY is true if DECL is the thing declared by
4900 a primary template. IS_PARTIAL is true if DECL is a partial
4901 specialization.
4903 IS_FRIEND_DECL is nonzero if DECL is a friend function template
4904 declaration (but not a definition); 1 indicates a declaration, 2
4905 indicates a redeclaration. When IS_FRIEND_DECL=2, no errors are
4906 emitted for extraneous default arguments.
4908 Returns TRUE if there were no errors found, FALSE otherwise. */
4910 bool
4911 check_default_tmpl_args (tree decl, tree parms, bool is_primary,
4912 bool is_partial, int is_friend_decl)
4914 const char *msg;
4915 int last_level_to_check;
4916 tree parm_level;
4917 bool no_errors = true;
4919 /* [temp.param]
4921 A default template-argument shall not be specified in a
4922 function template declaration or a function template definition, nor
4923 in the template-parameter-list of the definition of a member of a
4924 class template. */
4926 if (TREE_CODE (CP_DECL_CONTEXT (decl)) == FUNCTION_DECL
4927 || (TREE_CODE (decl) == FUNCTION_DECL && DECL_LOCAL_FUNCTION_P (decl)))
4928 /* You can't have a function template declaration in a local
4929 scope, nor you can you define a member of a class template in a
4930 local scope. */
4931 return true;
4933 if ((TREE_CODE (decl) == TYPE_DECL
4934 && TREE_TYPE (decl)
4935 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
4936 || (TREE_CODE (decl) == FUNCTION_DECL
4937 && LAMBDA_FUNCTION_P (decl)))
4938 /* A lambda doesn't have an explicit declaration; don't complain
4939 about the parms of the enclosing class. */
4940 return true;
4942 if (current_class_type
4943 && !TYPE_BEING_DEFINED (current_class_type)
4944 && DECL_LANG_SPECIFIC (decl)
4945 && DECL_DECLARES_FUNCTION_P (decl)
4946 /* If this is either a friend defined in the scope of the class
4947 or a member function. */
4948 && (DECL_FUNCTION_MEMBER_P (decl)
4949 ? same_type_p (DECL_CONTEXT (decl), current_class_type)
4950 : DECL_FRIEND_CONTEXT (decl)
4951 ? same_type_p (DECL_FRIEND_CONTEXT (decl), current_class_type)
4952 : false)
4953 /* And, if it was a member function, it really was defined in
4954 the scope of the class. */
4955 && (!DECL_FUNCTION_MEMBER_P (decl)
4956 || DECL_INITIALIZED_IN_CLASS_P (decl)))
4957 /* We already checked these parameters when the template was
4958 declared, so there's no need to do it again now. This function
4959 was defined in class scope, but we're processing its body now
4960 that the class is complete. */
4961 return true;
4963 /* Core issue 226 (C++0x only): the following only applies to class
4964 templates. */
4965 if (is_primary
4966 && ((cxx_dialect == cxx98) || TREE_CODE (decl) != FUNCTION_DECL))
4968 /* [temp.param]
4970 If a template-parameter has a default template-argument, all
4971 subsequent template-parameters shall have a default
4972 template-argument supplied. */
4973 for (parm_level = parms; parm_level; parm_level = TREE_CHAIN (parm_level))
4975 tree inner_parms = TREE_VALUE (parm_level);
4976 int ntparms = TREE_VEC_LENGTH (inner_parms);
4977 int seen_def_arg_p = 0;
4978 int i;
4980 for (i = 0; i < ntparms; ++i)
4982 tree parm = TREE_VEC_ELT (inner_parms, i);
4984 if (parm == error_mark_node)
4985 continue;
4987 if (TREE_PURPOSE (parm))
4988 seen_def_arg_p = 1;
4989 else if (seen_def_arg_p
4990 && !template_parameter_pack_p (TREE_VALUE (parm)))
4992 error ("no default argument for %qD", TREE_VALUE (parm));
4993 /* For better subsequent error-recovery, we indicate that
4994 there should have been a default argument. */
4995 TREE_PURPOSE (parm) = error_mark_node;
4996 no_errors = false;
4998 else if (!is_partial
4999 && !is_friend_decl
5000 /* Don't complain about an enclosing partial
5001 specialization. */
5002 && parm_level == parms
5003 && TREE_CODE (decl) == TYPE_DECL
5004 && i < ntparms - 1
5005 && template_parameter_pack_p (TREE_VALUE (parm))
5006 /* A fixed parameter pack will be partially
5007 instantiated into a fixed length list. */
5008 && !fixed_parameter_pack_p (TREE_VALUE (parm)))
5010 /* A primary class template can only have one
5011 parameter pack, at the end of the template
5012 parameter list. */
5014 error ("parameter pack %q+D must be at the end of the"
5015 " template parameter list", TREE_VALUE (parm));
5017 TREE_VALUE (TREE_VEC_ELT (inner_parms, i))
5018 = error_mark_node;
5019 no_errors = false;
5025 if (((cxx_dialect == cxx98) && TREE_CODE (decl) != TYPE_DECL)
5026 || is_partial
5027 || !is_primary
5028 || is_friend_decl)
5029 /* For an ordinary class template, default template arguments are
5030 allowed at the innermost level, e.g.:
5031 template <class T = int>
5032 struct S {};
5033 but, in a partial specialization, they're not allowed even
5034 there, as we have in [temp.class.spec]:
5036 The template parameter list of a specialization shall not
5037 contain default template argument values.
5039 So, for a partial specialization, or for a function template
5040 (in C++98/C++03), we look at all of them. */
5042 else
5043 /* But, for a primary class template that is not a partial
5044 specialization we look at all template parameters except the
5045 innermost ones. */
5046 parms = TREE_CHAIN (parms);
5048 /* Figure out what error message to issue. */
5049 if (is_friend_decl == 2)
5050 msg = G_("default template arguments may not be used in function template "
5051 "friend re-declaration");
5052 else if (is_friend_decl)
5053 msg = G_("default template arguments may not be used in function template "
5054 "friend declarations");
5055 else if (TREE_CODE (decl) == FUNCTION_DECL && (cxx_dialect == cxx98))
5056 msg = G_("default template arguments may not be used in function templates "
5057 "without -std=c++11 or -std=gnu++11");
5058 else if (is_partial)
5059 msg = G_("default template arguments may not be used in "
5060 "partial specializations");
5061 else if (current_class_type && CLASSTYPE_IS_TEMPLATE (current_class_type))
5062 msg = G_("default argument for template parameter for class enclosing %qD");
5063 else
5064 /* Per [temp.param]/9, "A default template-argument shall not be
5065 specified in the template-parameter-lists of the definition of
5066 a member of a class template that appears outside of the member's
5067 class.", thus if we aren't handling a member of a class template
5068 there is no need to examine the parameters. */
5069 return true;
5071 if (current_class_type && TYPE_BEING_DEFINED (current_class_type))
5072 /* If we're inside a class definition, there's no need to
5073 examine the parameters to the class itself. On the one
5074 hand, they will be checked when the class is defined, and,
5075 on the other, default arguments are valid in things like:
5076 template <class T = double>
5077 struct S { template <class U> void f(U); };
5078 Here the default argument for `S' has no bearing on the
5079 declaration of `f'. */
5080 last_level_to_check = template_class_depth (current_class_type) + 1;
5081 else
5082 /* Check everything. */
5083 last_level_to_check = 0;
5085 for (parm_level = parms;
5086 parm_level && TMPL_PARMS_DEPTH (parm_level) >= last_level_to_check;
5087 parm_level = TREE_CHAIN (parm_level))
5089 tree inner_parms = TREE_VALUE (parm_level);
5090 int i;
5091 int ntparms;
5093 ntparms = TREE_VEC_LENGTH (inner_parms);
5094 for (i = 0; i < ntparms; ++i)
5096 if (TREE_VEC_ELT (inner_parms, i) == error_mark_node)
5097 continue;
5099 if (TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)))
5101 if (msg)
5103 no_errors = false;
5104 if (is_friend_decl == 2)
5105 return no_errors;
5107 error (msg, decl);
5108 msg = 0;
5111 /* Clear out the default argument so that we are not
5112 confused later. */
5113 TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)) = NULL_TREE;
5117 /* At this point, if we're still interested in issuing messages,
5118 they must apply to classes surrounding the object declared. */
5119 if (msg)
5120 msg = G_("default argument for template parameter for class "
5121 "enclosing %qD");
5124 return no_errors;
5127 /* Worker for push_template_decl_real, called via
5128 for_each_template_parm. DATA is really an int, indicating the
5129 level of the parameters we are interested in. If T is a template
5130 parameter of that level, return nonzero. */
5132 static int
5133 template_parm_this_level_p (tree t, void* data)
5135 int this_level = *(int *)data;
5136 int level;
5138 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
5139 level = TEMPLATE_PARM_LEVEL (t);
5140 else
5141 level = TEMPLATE_TYPE_LEVEL (t);
5142 return level == this_level;
5145 /* Worker for uses_outer_template_parms, called via for_each_template_parm.
5146 DATA is really an int, indicating the innermost outer level of parameters.
5147 If T is a template parameter of that level or further out, return
5148 nonzero. */
5150 static int
5151 template_parm_outer_level (tree t, void *data)
5153 int this_level = *(int *)data;
5154 int level;
5156 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
5157 level = TEMPLATE_PARM_LEVEL (t);
5158 else
5159 level = TEMPLATE_TYPE_LEVEL (t);
5160 return level <= this_level;
5163 /* Creates a TEMPLATE_DECL for the indicated DECL using the template
5164 parameters given by current_template_args, or reuses a
5165 previously existing one, if appropriate. Returns the DECL, or an
5166 equivalent one, if it is replaced via a call to duplicate_decls.
5168 If IS_FRIEND is true, DECL is a friend declaration. */
5170 tree
5171 push_template_decl_real (tree decl, bool is_friend)
5173 tree tmpl;
5174 tree args;
5175 tree info;
5176 tree ctx;
5177 bool is_primary;
5178 bool is_partial;
5179 int new_template_p = 0;
5180 /* True if the template is a member template, in the sense of
5181 [temp.mem]. */
5182 bool member_template_p = false;
5184 if (decl == error_mark_node || !current_template_parms)
5185 return error_mark_node;
5187 /* See if this is a partial specialization. */
5188 is_partial = ((DECL_IMPLICIT_TYPEDEF_P (decl)
5189 && TREE_CODE (TREE_TYPE (decl)) != ENUMERAL_TYPE
5190 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
5191 || (VAR_P (decl)
5192 && DECL_LANG_SPECIFIC (decl)
5193 && DECL_TEMPLATE_SPECIALIZATION (decl)
5194 && TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (decl))));
5196 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_FRIEND_P (decl))
5197 is_friend = true;
5199 if (is_friend)
5200 /* For a friend, we want the context of the friend function, not
5201 the type of which it is a friend. */
5202 ctx = CP_DECL_CONTEXT (decl);
5203 else if (CP_DECL_CONTEXT (decl)
5204 && TREE_CODE (CP_DECL_CONTEXT (decl)) != NAMESPACE_DECL)
5205 /* In the case of a virtual function, we want the class in which
5206 it is defined. */
5207 ctx = CP_DECL_CONTEXT (decl);
5208 else
5209 /* Otherwise, if we're currently defining some class, the DECL
5210 is assumed to be a member of the class. */
5211 ctx = current_scope ();
5213 if (ctx && TREE_CODE (ctx) == NAMESPACE_DECL)
5214 ctx = NULL_TREE;
5216 if (!DECL_CONTEXT (decl))
5217 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
5219 /* See if this is a primary template. */
5220 if (is_friend && ctx
5221 && uses_template_parms_level (ctx, processing_template_decl))
5222 /* A friend template that specifies a class context, i.e.
5223 template <typename T> friend void A<T>::f();
5224 is not primary. */
5225 is_primary = false;
5226 else if (TREE_CODE (decl) == TYPE_DECL
5227 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
5228 is_primary = false;
5229 else
5230 is_primary = template_parm_scope_p ();
5232 if (is_primary)
5234 warning (OPT_Wtemplates, "template %qD declared", decl);
5236 if (DECL_CLASS_SCOPE_P (decl))
5237 member_template_p = true;
5238 if (TREE_CODE (decl) == TYPE_DECL
5239 && anon_aggrname_p (DECL_NAME (decl)))
5241 error ("template class without a name");
5242 return error_mark_node;
5244 else if (TREE_CODE (decl) == FUNCTION_DECL)
5246 if (member_template_p)
5248 if (DECL_OVERRIDE_P (decl) || DECL_FINAL_P (decl))
5249 error ("member template %qD may not have virt-specifiers", decl);
5251 if (DECL_DESTRUCTOR_P (decl))
5253 /* [temp.mem]
5255 A destructor shall not be a member template. */
5256 error ("destructor %qD declared as member template", decl);
5257 return error_mark_node;
5259 if (NEW_DELETE_OPNAME_P (DECL_NAME (decl))
5260 && (!prototype_p (TREE_TYPE (decl))
5261 || TYPE_ARG_TYPES (TREE_TYPE (decl)) == void_list_node
5262 || !TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (decl)))
5263 || (TREE_CHAIN (TYPE_ARG_TYPES ((TREE_TYPE (decl))))
5264 == void_list_node)))
5266 /* [basic.stc.dynamic.allocation]
5268 An allocation function can be a function
5269 template. ... Template allocation functions shall
5270 have two or more parameters. */
5271 error ("invalid template declaration of %qD", decl);
5272 return error_mark_node;
5275 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
5276 && CLASS_TYPE_P (TREE_TYPE (decl)))
5278 /* Class template, set TEMPLATE_TYPE_PARM_FOR_CLASS. */
5279 tree parms = INNERMOST_TEMPLATE_PARMS (current_template_parms);
5280 for (int i = 0; i < TREE_VEC_LENGTH (parms); ++i)
5282 tree t = TREE_VALUE (TREE_VEC_ELT (parms, i));
5283 if (TREE_CODE (t) == TYPE_DECL)
5284 t = TREE_TYPE (t);
5285 if (TREE_CODE (t) == TEMPLATE_TYPE_PARM)
5286 TEMPLATE_TYPE_PARM_FOR_CLASS (t) = true;
5289 else if (TREE_CODE (decl) == TYPE_DECL
5290 && TYPE_DECL_ALIAS_P (decl))
5291 /* alias-declaration */
5292 gcc_assert (!DECL_ARTIFICIAL (decl));
5293 else if (VAR_P (decl))
5294 /* C++14 variable template. */;
5295 else
5297 error ("template declaration of %q#D", decl);
5298 return error_mark_node;
5302 /* Check to see that the rules regarding the use of default
5303 arguments are not being violated. */
5304 check_default_tmpl_args (decl, current_template_parms,
5305 is_primary, is_partial, /*is_friend_decl=*/0);
5307 /* Ensure that there are no parameter packs in the type of this
5308 declaration that have not been expanded. */
5309 if (TREE_CODE (decl) == FUNCTION_DECL)
5311 /* Check each of the arguments individually to see if there are
5312 any bare parameter packs. */
5313 tree type = TREE_TYPE (decl);
5314 tree arg = DECL_ARGUMENTS (decl);
5315 tree argtype = TYPE_ARG_TYPES (type);
5317 while (arg && argtype)
5319 if (!DECL_PACK_P (arg)
5320 && check_for_bare_parameter_packs (TREE_TYPE (arg)))
5322 /* This is a PARM_DECL that contains unexpanded parameter
5323 packs. We have already complained about this in the
5324 check_for_bare_parameter_packs call, so just replace
5325 these types with ERROR_MARK_NODE. */
5326 TREE_TYPE (arg) = error_mark_node;
5327 TREE_VALUE (argtype) = error_mark_node;
5330 arg = DECL_CHAIN (arg);
5331 argtype = TREE_CHAIN (argtype);
5334 /* Check for bare parameter packs in the return type and the
5335 exception specifiers. */
5336 if (check_for_bare_parameter_packs (TREE_TYPE (type)))
5337 /* Errors were already issued, set return type to int
5338 as the frontend doesn't expect error_mark_node as
5339 the return type. */
5340 TREE_TYPE (type) = integer_type_node;
5341 if (check_for_bare_parameter_packs (TYPE_RAISES_EXCEPTIONS (type)))
5342 TYPE_RAISES_EXCEPTIONS (type) = NULL_TREE;
5344 else if (check_for_bare_parameter_packs ((TREE_CODE (decl) == TYPE_DECL
5345 && TYPE_DECL_ALIAS_P (decl))
5346 ? DECL_ORIGINAL_TYPE (decl)
5347 : TREE_TYPE (decl)))
5349 TREE_TYPE (decl) = error_mark_node;
5350 return error_mark_node;
5353 if (is_partial)
5354 return process_partial_specialization (decl);
5356 args = current_template_args ();
5358 if (!ctx
5359 || TREE_CODE (ctx) == FUNCTION_DECL
5360 || (CLASS_TYPE_P (ctx) && TYPE_BEING_DEFINED (ctx))
5361 || (TREE_CODE (decl) == TYPE_DECL
5362 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
5363 || (is_friend && !DECL_TEMPLATE_INFO (decl)))
5365 if (DECL_LANG_SPECIFIC (decl)
5366 && DECL_TEMPLATE_INFO (decl)
5367 && DECL_TI_TEMPLATE (decl))
5368 tmpl = DECL_TI_TEMPLATE (decl);
5369 /* If DECL is a TYPE_DECL for a class-template, then there won't
5370 be DECL_LANG_SPECIFIC. The information equivalent to
5371 DECL_TEMPLATE_INFO is found in TYPE_TEMPLATE_INFO instead. */
5372 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
5373 && TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
5374 && TYPE_TI_TEMPLATE (TREE_TYPE (decl)))
5376 /* Since a template declaration already existed for this
5377 class-type, we must be redeclaring it here. Make sure
5378 that the redeclaration is valid. */
5379 redeclare_class_template (TREE_TYPE (decl),
5380 current_template_parms,
5381 current_template_constraints ());
5382 /* We don't need to create a new TEMPLATE_DECL; just use the
5383 one we already had. */
5384 tmpl = TYPE_TI_TEMPLATE (TREE_TYPE (decl));
5386 else
5388 tmpl = build_template_decl (decl, current_template_parms,
5389 member_template_p);
5390 new_template_p = 1;
5392 if (DECL_LANG_SPECIFIC (decl)
5393 && DECL_TEMPLATE_SPECIALIZATION (decl))
5395 /* A specialization of a member template of a template
5396 class. */
5397 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
5398 DECL_TEMPLATE_INFO (tmpl) = DECL_TEMPLATE_INFO (decl);
5399 DECL_TEMPLATE_INFO (decl) = NULL_TREE;
5403 else
5405 tree a, t, current, parms;
5406 int i;
5407 tree tinfo = get_template_info (decl);
5409 if (!tinfo)
5411 error ("template definition of non-template %q#D", decl);
5412 return error_mark_node;
5415 tmpl = TI_TEMPLATE (tinfo);
5417 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
5418 && DECL_TEMPLATE_INFO (decl) && DECL_TI_ARGS (decl)
5419 && DECL_TEMPLATE_SPECIALIZATION (decl)
5420 && DECL_MEMBER_TEMPLATE_P (tmpl))
5422 tree new_tmpl;
5424 /* The declaration is a specialization of a member
5425 template, declared outside the class. Therefore, the
5426 innermost template arguments will be NULL, so we
5427 replace them with the arguments determined by the
5428 earlier call to check_explicit_specialization. */
5429 args = DECL_TI_ARGS (decl);
5431 new_tmpl
5432 = build_template_decl (decl, current_template_parms,
5433 member_template_p);
5434 DECL_TEMPLATE_RESULT (new_tmpl) = decl;
5435 TREE_TYPE (new_tmpl) = TREE_TYPE (decl);
5436 DECL_TI_TEMPLATE (decl) = new_tmpl;
5437 SET_DECL_TEMPLATE_SPECIALIZATION (new_tmpl);
5438 DECL_TEMPLATE_INFO (new_tmpl)
5439 = build_template_info (tmpl, args);
5441 register_specialization (new_tmpl,
5442 most_general_template (tmpl),
5443 args,
5444 is_friend, 0);
5445 return decl;
5448 /* Make sure the template headers we got make sense. */
5450 parms = DECL_TEMPLATE_PARMS (tmpl);
5451 i = TMPL_PARMS_DEPTH (parms);
5452 if (TMPL_ARGS_DEPTH (args) != i)
5454 error ("expected %d levels of template parms for %q#D, got %d",
5455 i, decl, TMPL_ARGS_DEPTH (args));
5456 DECL_INTERFACE_KNOWN (decl) = 1;
5457 return error_mark_node;
5459 else
5460 for (current = decl; i > 0; --i, parms = TREE_CHAIN (parms))
5462 a = TMPL_ARGS_LEVEL (args, i);
5463 t = INNERMOST_TEMPLATE_PARMS (parms);
5465 if (TREE_VEC_LENGTH (t) != TREE_VEC_LENGTH (a))
5467 if (current == decl)
5468 error ("got %d template parameters for %q#D",
5469 TREE_VEC_LENGTH (a), decl);
5470 else
5471 error ("got %d template parameters for %q#T",
5472 TREE_VEC_LENGTH (a), current);
5473 error (" but %d required", TREE_VEC_LENGTH (t));
5474 /* Avoid crash in import_export_decl. */
5475 DECL_INTERFACE_KNOWN (decl) = 1;
5476 return error_mark_node;
5479 if (current == decl)
5480 current = ctx;
5481 else if (current == NULL_TREE)
5482 /* Can happen in erroneous input. */
5483 break;
5484 else
5485 current = get_containing_scope (current);
5488 /* Check that the parms are used in the appropriate qualifying scopes
5489 in the declarator. */
5490 if (!comp_template_args
5491 (TI_ARGS (tinfo),
5492 TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl)))))
5494 error ("\
5495 template arguments to %qD do not match original template %qD",
5496 decl, DECL_TEMPLATE_RESULT (tmpl));
5497 if (!uses_template_parms (TI_ARGS (tinfo)))
5498 inform (input_location, "use template<> for an explicit specialization");
5499 /* Avoid crash in import_export_decl. */
5500 DECL_INTERFACE_KNOWN (decl) = 1;
5501 return error_mark_node;
5505 DECL_TEMPLATE_RESULT (tmpl) = decl;
5506 TREE_TYPE (tmpl) = TREE_TYPE (decl);
5508 /* Push template declarations for global functions and types. Note
5509 that we do not try to push a global template friend declared in a
5510 template class; such a thing may well depend on the template
5511 parameters of the class. */
5512 if (new_template_p && !ctx
5513 && !(is_friend && template_class_depth (current_class_type) > 0))
5515 tmpl = pushdecl_namespace_level (tmpl, is_friend);
5516 if (tmpl == error_mark_node)
5517 return error_mark_node;
5519 /* Hide template friend classes that haven't been declared yet. */
5520 if (is_friend && TREE_CODE (decl) == TYPE_DECL)
5522 DECL_ANTICIPATED (tmpl) = 1;
5523 DECL_FRIEND_P (tmpl) = 1;
5527 if (is_primary)
5529 tree parms = DECL_TEMPLATE_PARMS (tmpl);
5530 int i;
5532 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
5533 if (DECL_CONV_FN_P (tmpl))
5535 int depth = TMPL_PARMS_DEPTH (parms);
5537 /* It is a conversion operator. See if the type converted to
5538 depends on innermost template operands. */
5540 if (uses_template_parms_level (TREE_TYPE (TREE_TYPE (tmpl)),
5541 depth))
5542 DECL_TEMPLATE_CONV_FN_P (tmpl) = 1;
5545 /* Give template template parms a DECL_CONTEXT of the template
5546 for which they are a parameter. */
5547 parms = INNERMOST_TEMPLATE_PARMS (parms);
5548 for (i = TREE_VEC_LENGTH (parms) - 1; i >= 0; --i)
5550 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
5551 if (TREE_CODE (parm) == TEMPLATE_DECL)
5552 DECL_CONTEXT (parm) = tmpl;
5555 if (TREE_CODE (decl) == TYPE_DECL
5556 && TYPE_DECL_ALIAS_P (decl)
5557 && complex_alias_template_p (tmpl))
5558 TEMPLATE_DECL_COMPLEX_ALIAS_P (tmpl) = true;
5561 /* The DECL_TI_ARGS of DECL contains full set of arguments referring
5562 back to its most general template. If TMPL is a specialization,
5563 ARGS may only have the innermost set of arguments. Add the missing
5564 argument levels if necessary. */
5565 if (DECL_TEMPLATE_INFO (tmpl))
5566 args = add_outermost_template_args (DECL_TI_ARGS (tmpl), args);
5568 info = build_template_info (tmpl, args);
5570 if (DECL_IMPLICIT_TYPEDEF_P (decl))
5571 SET_TYPE_TEMPLATE_INFO (TREE_TYPE (tmpl), info);
5572 else
5574 if (is_primary && !DECL_LANG_SPECIFIC (decl))
5575 retrofit_lang_decl (decl);
5576 if (DECL_LANG_SPECIFIC (decl))
5577 DECL_TEMPLATE_INFO (decl) = info;
5580 if (flag_implicit_templates
5581 && !is_friend
5582 && TREE_PUBLIC (decl)
5583 && VAR_OR_FUNCTION_DECL_P (decl))
5584 /* Set DECL_COMDAT on template instantiations; if we force
5585 them to be emitted by explicit instantiation or -frepo,
5586 mark_needed will tell cgraph to do the right thing. */
5587 DECL_COMDAT (decl) = true;
5589 return DECL_TEMPLATE_RESULT (tmpl);
5592 tree
5593 push_template_decl (tree decl)
5595 return push_template_decl_real (decl, false);
5598 /* FN is an inheriting constructor that inherits from the constructor
5599 template INHERITED; turn FN into a constructor template with a matching
5600 template header. */
5602 tree
5603 add_inherited_template_parms (tree fn, tree inherited)
5605 tree inner_parms
5606 = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (inherited));
5607 inner_parms = copy_node (inner_parms);
5608 tree parms
5609 = tree_cons (size_int (processing_template_decl + 1),
5610 inner_parms, current_template_parms);
5611 tree tmpl = build_template_decl (fn, parms, /*member*/true);
5612 tree args = template_parms_to_args (parms);
5613 DECL_TEMPLATE_INFO (fn) = build_template_info (tmpl, args);
5614 TREE_TYPE (tmpl) = TREE_TYPE (fn);
5615 DECL_TEMPLATE_RESULT (tmpl) = fn;
5616 DECL_ARTIFICIAL (tmpl) = true;
5617 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
5618 return tmpl;
5621 /* Called when a class template TYPE is redeclared with the indicated
5622 template PARMS, e.g.:
5624 template <class T> struct S;
5625 template <class T> struct S {}; */
5627 bool
5628 redeclare_class_template (tree type, tree parms, tree cons)
5630 tree tmpl;
5631 tree tmpl_parms;
5632 int i;
5634 if (!TYPE_TEMPLATE_INFO (type))
5636 error ("%qT is not a template type", type);
5637 return false;
5640 tmpl = TYPE_TI_TEMPLATE (type);
5641 if (!PRIMARY_TEMPLATE_P (tmpl))
5642 /* The type is nested in some template class. Nothing to worry
5643 about here; there are no new template parameters for the nested
5644 type. */
5645 return true;
5647 if (!parms)
5649 error ("template specifiers not specified in declaration of %qD",
5650 tmpl);
5651 return false;
5654 parms = INNERMOST_TEMPLATE_PARMS (parms);
5655 tmpl_parms = DECL_INNERMOST_TEMPLATE_PARMS (tmpl);
5657 if (TREE_VEC_LENGTH (parms) != TREE_VEC_LENGTH (tmpl_parms))
5659 error_n (input_location, TREE_VEC_LENGTH (parms),
5660 "redeclared with %d template parameter",
5661 "redeclared with %d template parameters",
5662 TREE_VEC_LENGTH (parms));
5663 inform_n (DECL_SOURCE_LOCATION (tmpl), TREE_VEC_LENGTH (tmpl_parms),
5664 "previous declaration %qD used %d template parameter",
5665 "previous declaration %qD used %d template parameters",
5666 tmpl, TREE_VEC_LENGTH (tmpl_parms));
5667 return false;
5670 for (i = 0; i < TREE_VEC_LENGTH (tmpl_parms); ++i)
5672 tree tmpl_parm;
5673 tree parm;
5674 tree tmpl_default;
5675 tree parm_default;
5677 if (TREE_VEC_ELT (tmpl_parms, i) == error_mark_node
5678 || TREE_VEC_ELT (parms, i) == error_mark_node)
5679 continue;
5681 tmpl_parm = TREE_VALUE (TREE_VEC_ELT (tmpl_parms, i));
5682 if (error_operand_p (tmpl_parm))
5683 return false;
5685 parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
5686 tmpl_default = TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i));
5687 parm_default = TREE_PURPOSE (TREE_VEC_ELT (parms, i));
5689 /* TMPL_PARM and PARM can be either TYPE_DECL, PARM_DECL, or
5690 TEMPLATE_DECL. */
5691 if (TREE_CODE (tmpl_parm) != TREE_CODE (parm)
5692 || (TREE_CODE (tmpl_parm) != TYPE_DECL
5693 && !same_type_p (TREE_TYPE (tmpl_parm), TREE_TYPE (parm)))
5694 || (TREE_CODE (tmpl_parm) != PARM_DECL
5695 && (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (tmpl_parm))
5696 != TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm))))
5697 || (TREE_CODE (tmpl_parm) == PARM_DECL
5698 && (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (tmpl_parm))
5699 != TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))))
5701 error ("template parameter %q+#D", tmpl_parm);
5702 error ("redeclared here as %q#D", parm);
5703 return false;
5706 if (tmpl_default != NULL_TREE && parm_default != NULL_TREE)
5708 /* We have in [temp.param]:
5710 A template-parameter may not be given default arguments
5711 by two different declarations in the same scope. */
5712 error_at (input_location, "redefinition of default argument for %q#D", parm);
5713 inform (DECL_SOURCE_LOCATION (tmpl_parm),
5714 "original definition appeared here");
5715 return false;
5718 if (parm_default != NULL_TREE)
5719 /* Update the previous template parameters (which are the ones
5720 that will really count) with the new default value. */
5721 TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i)) = parm_default;
5722 else if (tmpl_default != NULL_TREE)
5723 /* Update the new parameters, too; they'll be used as the
5724 parameters for any members. */
5725 TREE_PURPOSE (TREE_VEC_ELT (parms, i)) = tmpl_default;
5727 /* Give each template template parm in this redeclaration a
5728 DECL_CONTEXT of the template for which they are a parameter. */
5729 if (TREE_CODE (parm) == TEMPLATE_DECL)
5731 gcc_assert (DECL_CONTEXT (parm) == NULL_TREE);
5732 DECL_CONTEXT (parm) = tmpl;
5735 if (TREE_CODE (parm) == TYPE_DECL)
5736 TEMPLATE_TYPE_PARM_FOR_CLASS (TREE_TYPE (parm)) = true;
5739 // Cannot redeclare a class template with a different set of constraints.
5740 if (!equivalent_constraints (get_constraints (tmpl), cons))
5742 error_at (input_location, "redeclaration %q#D with different "
5743 "constraints", tmpl);
5744 inform (DECL_SOURCE_LOCATION (tmpl),
5745 "original declaration appeared here");
5748 return true;
5751 /* The actual substitution part of instantiate_non_dependent_expr_sfinae,
5752 to be used when the caller has already checked
5753 (processing_template_decl
5754 && !instantiation_dependent_expression_p (expr)
5755 && potential_constant_expression (expr))
5756 and cleared processing_template_decl. */
5758 tree
5759 instantiate_non_dependent_expr_internal (tree expr, tsubst_flags_t complain)
5761 return tsubst_copy_and_build (expr,
5762 /*args=*/NULL_TREE,
5763 complain,
5764 /*in_decl=*/NULL_TREE,
5765 /*function_p=*/false,
5766 /*integral_constant_expression_p=*/true);
5769 /* Simplify EXPR if it is a non-dependent expression. Returns the
5770 (possibly simplified) expression. */
5772 tree
5773 instantiate_non_dependent_expr_sfinae (tree expr, tsubst_flags_t complain)
5775 if (expr == NULL_TREE)
5776 return NULL_TREE;
5778 /* If we're in a template, but EXPR isn't value dependent, simplify
5779 it. We're supposed to treat:
5781 template <typename T> void f(T[1 + 1]);
5782 template <typename T> void f(T[2]);
5784 as two declarations of the same function, for example. */
5785 if (processing_template_decl
5786 && potential_nondependent_constant_expression (expr))
5788 processing_template_decl_sentinel s;
5789 expr = instantiate_non_dependent_expr_internal (expr, complain);
5791 return expr;
5794 tree
5795 instantiate_non_dependent_expr (tree expr)
5797 return instantiate_non_dependent_expr_sfinae (expr, tf_error);
5800 /* Like instantiate_non_dependent_expr, but return NULL_TREE rather than
5801 an uninstantiated expression. */
5803 tree
5804 instantiate_non_dependent_or_null (tree expr)
5806 if (expr == NULL_TREE)
5807 return NULL_TREE;
5808 if (processing_template_decl)
5810 if (!potential_nondependent_constant_expression (expr))
5811 expr = NULL_TREE;
5812 else
5814 processing_template_decl_sentinel s;
5815 expr = instantiate_non_dependent_expr_internal (expr, tf_error);
5818 return expr;
5821 /* True iff T is a specialization of a variable template. */
5823 bool
5824 variable_template_specialization_p (tree t)
5826 if (!VAR_P (t) || !DECL_LANG_SPECIFIC (t) || !DECL_TEMPLATE_INFO (t))
5827 return false;
5828 tree tmpl = DECL_TI_TEMPLATE (t);
5829 return variable_template_p (tmpl);
5832 /* Return TRUE iff T is a type alias, a TEMPLATE_DECL for an alias
5833 template declaration, or a TYPE_DECL for an alias declaration. */
5835 bool
5836 alias_type_or_template_p (tree t)
5838 if (t == NULL_TREE)
5839 return false;
5840 return ((TREE_CODE (t) == TYPE_DECL && TYPE_DECL_ALIAS_P (t))
5841 || (TYPE_P (t)
5842 && TYPE_NAME (t)
5843 && TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
5844 || DECL_ALIAS_TEMPLATE_P (t));
5847 /* Return TRUE iff T is a specialization of an alias template. */
5849 bool
5850 alias_template_specialization_p (const_tree t)
5852 /* It's an alias template specialization if it's an alias and its
5853 TYPE_NAME is a specialization of a primary template. */
5854 if (TYPE_ALIAS_P (t))
5855 if (tree tinfo = TYPE_ALIAS_TEMPLATE_INFO (t))
5856 return PRIMARY_TEMPLATE_P (TI_TEMPLATE (tinfo));
5858 return false;
5861 /* An alias template is complex from a SFINAE perspective if a template-id
5862 using that alias can be ill-formed when the expansion is not, as with
5863 the void_t template. We determine this by checking whether the
5864 expansion for the alias template uses all its template parameters. */
5866 struct uses_all_template_parms_data
5868 int level;
5869 bool *seen;
5872 static int
5873 uses_all_template_parms_r (tree t, void *data_)
5875 struct uses_all_template_parms_data &data
5876 = *(struct uses_all_template_parms_data*)data_;
5877 tree idx = get_template_parm_index (t);
5879 if (TEMPLATE_PARM_LEVEL (idx) == data.level)
5880 data.seen[TEMPLATE_PARM_IDX (idx)] = true;
5881 return 0;
5884 static bool
5885 complex_alias_template_p (const_tree tmpl)
5887 struct uses_all_template_parms_data data;
5888 tree pat = DECL_ORIGINAL_TYPE (DECL_TEMPLATE_RESULT (tmpl));
5889 tree parms = DECL_TEMPLATE_PARMS (tmpl);
5890 data.level = TMPL_PARMS_DEPTH (parms);
5891 int len = TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS (parms));
5892 data.seen = XALLOCAVEC (bool, len);
5893 for (int i = 0; i < len; ++i)
5894 data.seen[i] = false;
5896 for_each_template_parm (pat, uses_all_template_parms_r, &data, NULL, true);
5897 for (int i = 0; i < len; ++i)
5898 if (!data.seen[i])
5899 return true;
5900 return false;
5903 /* Return TRUE iff T is a specialization of a complex alias template with
5904 dependent template-arguments. */
5906 bool
5907 dependent_alias_template_spec_p (const_tree t)
5909 if (!alias_template_specialization_p (t))
5910 return false;
5912 tree tinfo = TYPE_ALIAS_TEMPLATE_INFO (t);
5913 if (!TEMPLATE_DECL_COMPLEX_ALIAS_P (TI_TEMPLATE (tinfo)))
5914 return false;
5916 tree args = INNERMOST_TEMPLATE_ARGS (TI_ARGS (tinfo));
5917 if (!any_dependent_template_arguments_p (args))
5918 return false;
5920 return true;
5923 /* Return the number of innermost template parameters in TMPL. */
5925 static int
5926 num_innermost_template_parms (tree tmpl)
5928 tree parms = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (tmpl));
5929 return TREE_VEC_LENGTH (parms);
5932 /* Return either TMPL or another template that it is equivalent to under DR
5933 1286: An alias that just changes the name of a template is equivalent to
5934 the other template. */
5936 static tree
5937 get_underlying_template (tree tmpl)
5939 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
5940 while (DECL_ALIAS_TEMPLATE_P (tmpl))
5942 /* Determine if the alias is equivalent to an underlying template. */
5943 tree orig_type = DECL_ORIGINAL_TYPE (DECL_TEMPLATE_RESULT (tmpl));
5944 tree tinfo = TYPE_TEMPLATE_INFO_MAYBE_ALIAS (orig_type);
5945 if (!tinfo)
5946 break;
5948 tree underlying = TI_TEMPLATE (tinfo);
5949 if (!PRIMARY_TEMPLATE_P (underlying)
5950 || (num_innermost_template_parms (tmpl)
5951 != num_innermost_template_parms (underlying)))
5952 break;
5954 tree alias_args = INNERMOST_TEMPLATE_ARGS
5955 (template_parms_to_args (DECL_TEMPLATE_PARMS (tmpl)));
5956 if (!comp_template_args (TI_ARGS (tinfo), alias_args))
5957 break;
5959 /* Alias is equivalent. Strip it and repeat. */
5960 tmpl = underlying;
5963 return tmpl;
5966 /* Subroutine of convert_nontype_argument. Converts EXPR to TYPE, which
5967 must be a reference-to-function or a pointer-to-function type, as specified
5968 in [temp.arg.nontype]: disambiguate EXPR if it is an overload set,
5969 and check that the resulting function has external linkage. */
5971 static tree
5972 convert_nontype_argument_function (tree type, tree expr,
5973 tsubst_flags_t complain)
5975 tree fns = expr;
5976 tree fn, fn_no_ptr;
5977 linkage_kind linkage;
5979 fn = instantiate_type (type, fns, tf_none);
5980 if (fn == error_mark_node)
5981 return error_mark_node;
5983 if (value_dependent_expression_p (fn))
5984 goto accept;
5986 fn_no_ptr = strip_fnptr_conv (fn);
5987 if (TREE_CODE (fn_no_ptr) == ADDR_EXPR)
5988 fn_no_ptr = TREE_OPERAND (fn_no_ptr, 0);
5989 if (BASELINK_P (fn_no_ptr))
5990 fn_no_ptr = BASELINK_FUNCTIONS (fn_no_ptr);
5992 /* [temp.arg.nontype]/1
5994 A template-argument for a non-type, non-template template-parameter
5995 shall be one of:
5996 [...]
5997 -- the address of an object or function with external [C++11: or
5998 internal] linkage. */
6000 if (TREE_CODE (fn_no_ptr) != FUNCTION_DECL)
6002 if (complain & tf_error)
6004 error ("%qE is not a valid template argument for type %qT",
6005 expr, type);
6006 if (TYPE_PTR_P (type))
6007 inform (input_location, "it must be the address of a function "
6008 "with external linkage");
6009 else
6010 inform (input_location, "it must be the name of a function with "
6011 "external linkage");
6013 return NULL_TREE;
6016 linkage = decl_linkage (fn_no_ptr);
6017 if (cxx_dialect >= cxx11 ? linkage == lk_none : linkage != lk_external)
6019 if (complain & tf_error)
6021 if (cxx_dialect >= cxx11)
6022 error ("%qE is not a valid template argument for type %qT "
6023 "because %qD has no linkage",
6024 expr, type, fn_no_ptr);
6025 else
6026 error ("%qE is not a valid template argument for type %qT "
6027 "because %qD does not have external linkage",
6028 expr, type, fn_no_ptr);
6030 return NULL_TREE;
6033 accept:
6034 if (TREE_CODE (type) == REFERENCE_TYPE)
6035 fn = build_address (fn);
6036 if (!same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (fn)))
6037 fn = build_nop (type, fn);
6039 return fn;
6042 /* Subroutine of convert_nontype_argument.
6043 Check if EXPR of type TYPE is a valid pointer-to-member constant.
6044 Emit an error otherwise. */
6046 static bool
6047 check_valid_ptrmem_cst_expr (tree type, tree expr,
6048 tsubst_flags_t complain)
6050 STRIP_NOPS (expr);
6051 if (expr && (null_ptr_cst_p (expr) || TREE_CODE (expr) == PTRMEM_CST))
6052 return true;
6053 if (cxx_dialect >= cxx11 && null_member_pointer_value_p (expr))
6054 return true;
6055 if (processing_template_decl
6056 && TREE_CODE (expr) == ADDR_EXPR
6057 && TREE_CODE (TREE_OPERAND (expr, 0)) == OFFSET_REF)
6058 return true;
6059 if (complain & tf_error)
6061 error ("%qE is not a valid template argument for type %qT",
6062 expr, type);
6063 error ("it must be a pointer-to-member of the form %<&X::Y%>");
6065 return false;
6068 /* Returns TRUE iff the address of OP is value-dependent.
6070 14.6.2.4 [temp.dep.temp]:
6071 A non-integral non-type template-argument is dependent if its type is
6072 dependent or it has either of the following forms
6073 qualified-id
6074 & qualified-id
6075 and contains a nested-name-specifier which specifies a class-name that
6076 names a dependent type.
6078 We generalize this to just say that the address of a member of a
6079 dependent class is value-dependent; the above doesn't cover the
6080 address of a static data member named with an unqualified-id. */
6082 static bool
6083 has_value_dependent_address (tree op)
6085 /* We could use get_inner_reference here, but there's no need;
6086 this is only relevant for template non-type arguments, which
6087 can only be expressed as &id-expression. */
6088 if (DECL_P (op))
6090 tree ctx = CP_DECL_CONTEXT (op);
6091 if (TYPE_P (ctx) && dependent_type_p (ctx))
6092 return true;
6095 return false;
6098 /* The next set of functions are used for providing helpful explanatory
6099 diagnostics for failed overload resolution. Their messages should be
6100 indented by two spaces for consistency with the messages in
6101 call.c */
6103 static int
6104 unify_success (bool /*explain_p*/)
6106 return 0;
6109 static int
6110 unify_parameter_deduction_failure (bool explain_p, tree parm)
6112 if (explain_p)
6113 inform (input_location,
6114 " couldn't deduce template parameter %qD", parm);
6115 return 1;
6118 static int
6119 unify_invalid (bool /*explain_p*/)
6121 return 1;
6124 static int
6125 unify_cv_qual_mismatch (bool explain_p, tree parm, tree arg)
6127 if (explain_p)
6128 inform (input_location,
6129 " types %qT and %qT have incompatible cv-qualifiers",
6130 parm, arg);
6131 return 1;
6134 static int
6135 unify_type_mismatch (bool explain_p, tree parm, tree arg)
6137 if (explain_p)
6138 inform (input_location, " mismatched types %qT and %qT", parm, arg);
6139 return 1;
6142 static int
6143 unify_parameter_pack_mismatch (bool explain_p, tree parm, tree arg)
6145 if (explain_p)
6146 inform (input_location,
6147 " template parameter %qD is not a parameter pack, but "
6148 "argument %qD is",
6149 parm, arg);
6150 return 1;
6153 static int
6154 unify_ptrmem_cst_mismatch (bool explain_p, tree parm, tree arg)
6156 if (explain_p)
6157 inform (input_location,
6158 " template argument %qE does not match "
6159 "pointer-to-member constant %qE",
6160 arg, parm);
6161 return 1;
6164 static int
6165 unify_expression_unequal (bool explain_p, tree parm, tree arg)
6167 if (explain_p)
6168 inform (input_location, " %qE is not equivalent to %qE", parm, arg);
6169 return 1;
6172 static int
6173 unify_parameter_pack_inconsistent (bool explain_p, tree old_arg, tree new_arg)
6175 if (explain_p)
6176 inform (input_location,
6177 " inconsistent parameter pack deduction with %qT and %qT",
6178 old_arg, new_arg);
6179 return 1;
6182 static int
6183 unify_inconsistency (bool explain_p, tree parm, tree first, tree second)
6185 if (explain_p)
6187 if (TYPE_P (parm))
6188 inform (input_location,
6189 " deduced conflicting types for parameter %qT (%qT and %qT)",
6190 parm, first, second);
6191 else
6192 inform (input_location,
6193 " deduced conflicting values for non-type parameter "
6194 "%qE (%qE and %qE)", parm, first, second);
6196 return 1;
6199 static int
6200 unify_vla_arg (bool explain_p, tree arg)
6202 if (explain_p)
6203 inform (input_location,
6204 " variable-sized array type %qT is not "
6205 "a valid template argument",
6206 arg);
6207 return 1;
6210 static int
6211 unify_method_type_error (bool explain_p, tree arg)
6213 if (explain_p)
6214 inform (input_location,
6215 " member function type %qT is not a valid template argument",
6216 arg);
6217 return 1;
6220 static int
6221 unify_arity (bool explain_p, int have, int wanted, bool least_p = false)
6223 if (explain_p)
6225 if (least_p)
6226 inform_n (input_location, wanted,
6227 " candidate expects at least %d argument, %d provided",
6228 " candidate expects at least %d arguments, %d provided",
6229 wanted, have);
6230 else
6231 inform_n (input_location, wanted,
6232 " candidate expects %d argument, %d provided",
6233 " candidate expects %d arguments, %d provided",
6234 wanted, have);
6236 return 1;
6239 static int
6240 unify_too_many_arguments (bool explain_p, int have, int wanted)
6242 return unify_arity (explain_p, have, wanted);
6245 static int
6246 unify_too_few_arguments (bool explain_p, int have, int wanted,
6247 bool least_p = false)
6249 return unify_arity (explain_p, have, wanted, least_p);
6252 static int
6253 unify_arg_conversion (bool explain_p, tree to_type,
6254 tree from_type, tree arg)
6256 if (explain_p)
6257 inform (EXPR_LOC_OR_LOC (arg, input_location),
6258 " cannot convert %qE (type %qT) to type %qT",
6259 arg, from_type, to_type);
6260 return 1;
6263 static int
6264 unify_no_common_base (bool explain_p, enum template_base_result r,
6265 tree parm, tree arg)
6267 if (explain_p)
6268 switch (r)
6270 case tbr_ambiguous_baseclass:
6271 inform (input_location, " %qT is an ambiguous base class of %qT",
6272 parm, arg);
6273 break;
6274 default:
6275 inform (input_location, " %qT is not derived from %qT", arg, parm);
6276 break;
6278 return 1;
6281 static int
6282 unify_inconsistent_template_template_parameters (bool explain_p)
6284 if (explain_p)
6285 inform (input_location,
6286 " template parameters of a template template argument are "
6287 "inconsistent with other deduced template arguments");
6288 return 1;
6291 static int
6292 unify_template_deduction_failure (bool explain_p, tree parm, tree arg)
6294 if (explain_p)
6295 inform (input_location,
6296 " can't deduce a template for %qT from non-template type %qT",
6297 parm, arg);
6298 return 1;
6301 static int
6302 unify_template_argument_mismatch (bool explain_p, tree parm, tree arg)
6304 if (explain_p)
6305 inform (input_location,
6306 " template argument %qE does not match %qE", arg, parm);
6307 return 1;
6310 static int
6311 unify_overload_resolution_failure (bool explain_p, tree arg)
6313 if (explain_p)
6314 inform (input_location,
6315 " could not resolve address from overloaded function %qE",
6316 arg);
6317 return 1;
6320 /* Attempt to convert the non-type template parameter EXPR to the
6321 indicated TYPE. If the conversion is successful, return the
6322 converted value. If the conversion is unsuccessful, return
6323 NULL_TREE if we issued an error message, or error_mark_node if we
6324 did not. We issue error messages for out-and-out bad template
6325 parameters, but not simply because the conversion failed, since we
6326 might be just trying to do argument deduction. Both TYPE and EXPR
6327 must be non-dependent.
6329 The conversion follows the special rules described in
6330 [temp.arg.nontype], and it is much more strict than an implicit
6331 conversion.
6333 This function is called twice for each template argument (see
6334 lookup_template_class for a more accurate description of this
6335 problem). This means that we need to handle expressions which
6336 are not valid in a C++ source, but can be created from the
6337 first call (for instance, casts to perform conversions). These
6338 hacks can go away after we fix the double coercion problem. */
6340 static tree
6341 convert_nontype_argument (tree type, tree expr, tsubst_flags_t complain)
6343 tree expr_type;
6345 /* Detect immediately string literals as invalid non-type argument.
6346 This special-case is not needed for correctness (we would easily
6347 catch this later), but only to provide better diagnostic for this
6348 common user mistake. As suggested by DR 100, we do not mention
6349 linkage issues in the diagnostic as this is not the point. */
6350 /* FIXME we're making this OK. */
6351 if (TREE_CODE (expr) == STRING_CST)
6353 if (complain & tf_error)
6354 error ("%qE is not a valid template argument for type %qT "
6355 "because string literals can never be used in this context",
6356 expr, type);
6357 return NULL_TREE;
6360 /* Add the ADDR_EXPR now for the benefit of
6361 value_dependent_expression_p. */
6362 if (TYPE_PTROBV_P (type)
6363 && TREE_CODE (TREE_TYPE (expr)) == ARRAY_TYPE)
6365 expr = decay_conversion (expr, complain);
6366 if (expr == error_mark_node)
6367 return error_mark_node;
6370 /* If we are in a template, EXPR may be non-dependent, but still
6371 have a syntactic, rather than semantic, form. For example, EXPR
6372 might be a SCOPE_REF, rather than the VAR_DECL to which the
6373 SCOPE_REF refers. Preserving the qualifying scope is necessary
6374 so that access checking can be performed when the template is
6375 instantiated -- but here we need the resolved form so that we can
6376 convert the argument. */
6377 bool non_dep = false;
6378 if (TYPE_REF_OBJ_P (type)
6379 && has_value_dependent_address (expr))
6380 /* If we want the address and it's value-dependent, don't fold. */;
6381 else if (processing_template_decl
6382 && potential_nondependent_constant_expression (expr))
6383 non_dep = true;
6384 if (error_operand_p (expr))
6385 return error_mark_node;
6386 expr_type = TREE_TYPE (expr);
6387 if (TREE_CODE (type) == REFERENCE_TYPE)
6388 expr = mark_lvalue_use (expr);
6389 else
6390 expr = mark_rvalue_use (expr);
6392 /* If the argument is non-dependent, perform any conversions in
6393 non-dependent context as well. */
6394 processing_template_decl_sentinel s (non_dep);
6395 if (non_dep)
6396 expr = instantiate_non_dependent_expr_internal (expr, complain);
6398 if (value_dependent_expression_p (expr))
6399 expr = canonicalize_expr_argument (expr, complain);
6401 /* 14.3.2/5: The null pointer{,-to-member} conversion is applied
6402 to a non-type argument of "nullptr". */
6403 if (expr == nullptr_node && TYPE_PTR_OR_PTRMEM_P (type))
6404 expr = fold_simple (convert (type, expr));
6406 /* In C++11, integral or enumeration non-type template arguments can be
6407 arbitrary constant expressions. Pointer and pointer to
6408 member arguments can be general constant expressions that evaluate
6409 to a null value, but otherwise still need to be of a specific form. */
6410 if (cxx_dialect >= cxx11)
6412 if (TREE_CODE (expr) == PTRMEM_CST)
6413 /* A PTRMEM_CST is already constant, and a valid template
6414 argument for a parameter of pointer to member type, we just want
6415 to leave it in that form rather than lower it to a
6416 CONSTRUCTOR. */;
6417 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
6418 /* Constant value checking is done later with type conversion. */;
6419 else if (cxx_dialect >= cxx1z)
6421 if (TREE_CODE (type) != REFERENCE_TYPE)
6422 expr = maybe_constant_value (expr);
6423 else if (REFERENCE_REF_P (expr))
6425 expr = TREE_OPERAND (expr, 0);
6426 expr = maybe_constant_value (expr);
6427 expr = convert_from_reference (expr);
6430 else if (TYPE_PTR_OR_PTRMEM_P (type))
6432 tree folded = maybe_constant_value (expr);
6433 if (TYPE_PTR_P (type) ? integer_zerop (folded)
6434 : null_member_pointer_value_p (folded))
6435 expr = folded;
6439 /* HACK: Due to double coercion, we can get a
6440 NOP_EXPR<REFERENCE_TYPE>(ADDR_EXPR<POINTER_TYPE> (arg)) here,
6441 which is the tree that we built on the first call (see
6442 below when coercing to reference to object or to reference to
6443 function). We just strip everything and get to the arg.
6444 See g++.old-deja/g++.oliva/template4.C and g++.dg/template/nontype9.C
6445 for examples. */
6446 if (TYPE_REF_OBJ_P (type) || TYPE_REFFN_P (type))
6448 tree probe_type, probe = expr;
6449 if (REFERENCE_REF_P (probe))
6450 probe = TREE_OPERAND (probe, 0);
6451 probe_type = TREE_TYPE (probe);
6452 if (TREE_CODE (probe) == NOP_EXPR)
6454 /* ??? Maybe we could use convert_from_reference here, but we
6455 would need to relax its constraints because the NOP_EXPR
6456 could actually change the type to something more cv-qualified,
6457 and this is not folded by convert_from_reference. */
6458 tree addr = TREE_OPERAND (probe, 0);
6459 if (TREE_CODE (probe_type) == REFERENCE_TYPE
6460 && TREE_CODE (addr) == ADDR_EXPR
6461 && TYPE_PTR_P (TREE_TYPE (addr))
6462 && (same_type_ignoring_top_level_qualifiers_p
6463 (TREE_TYPE (probe_type),
6464 TREE_TYPE (TREE_TYPE (addr)))))
6466 expr = TREE_OPERAND (addr, 0);
6467 expr_type = TREE_TYPE (probe_type);
6472 /* We could also generate a NOP_EXPR(ADDR_EXPR()) when the
6473 parameter is a pointer to object, through decay and
6474 qualification conversion. Let's strip everything. */
6475 else if (TREE_CODE (expr) == NOP_EXPR && TYPE_PTROBV_P (type))
6477 tree probe = expr;
6478 STRIP_NOPS (probe);
6479 if (TREE_CODE (probe) == ADDR_EXPR
6480 && TYPE_PTR_P (TREE_TYPE (probe)))
6482 /* Skip the ADDR_EXPR only if it is part of the decay for
6483 an array. Otherwise, it is part of the original argument
6484 in the source code. */
6485 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (probe, 0))) == ARRAY_TYPE)
6486 probe = TREE_OPERAND (probe, 0);
6487 expr = probe;
6488 expr_type = TREE_TYPE (expr);
6492 /* [temp.arg.nontype]/5, bullet 1
6494 For a non-type template-parameter of integral or enumeration type,
6495 integral promotions (_conv.prom_) and integral conversions
6496 (_conv.integral_) are applied. */
6497 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
6499 tree t = build_integral_nontype_arg_conv (type, expr, complain);
6500 t = maybe_constant_value (t);
6501 if (t != error_mark_node)
6502 expr = t;
6504 if (!same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (expr)))
6505 return error_mark_node;
6507 /* Notice that there are constant expressions like '4 % 0' which
6508 do not fold into integer constants. */
6509 if (TREE_CODE (expr) != INTEGER_CST
6510 && !value_dependent_expression_p (expr))
6512 if (complain & tf_error)
6514 int errs = errorcount, warns = warningcount + werrorcount;
6515 if (processing_template_decl
6516 && !require_potential_constant_expression (expr))
6517 return NULL_TREE;
6518 expr = cxx_constant_value (expr);
6519 if (errorcount > errs || warningcount + werrorcount > warns)
6520 inform (EXPR_LOC_OR_LOC (expr, input_location),
6521 "in template argument for type %qT ", type);
6522 if (expr == error_mark_node)
6523 return NULL_TREE;
6524 /* else cxx_constant_value complained but gave us
6525 a real constant, so go ahead. */
6526 gcc_assert (TREE_CODE (expr) == INTEGER_CST);
6528 else
6529 return NULL_TREE;
6532 /* Avoid typedef problems. */
6533 if (TREE_TYPE (expr) != type)
6534 expr = fold_convert (type, expr);
6536 /* [temp.arg.nontype]/5, bullet 2
6538 For a non-type template-parameter of type pointer to object,
6539 qualification conversions (_conv.qual_) and the array-to-pointer
6540 conversion (_conv.array_) are applied. */
6541 else if (TYPE_PTROBV_P (type))
6543 /* [temp.arg.nontype]/1 (TC1 version, DR 49):
6545 A template-argument for a non-type, non-template template-parameter
6546 shall be one of: [...]
6548 -- the name of a non-type template-parameter;
6549 -- the address of an object or function with external linkage, [...]
6550 expressed as "& id-expression" where the & is optional if the name
6551 refers to a function or array, or if the corresponding
6552 template-parameter is a reference.
6554 Here, we do not care about functions, as they are invalid anyway
6555 for a parameter of type pointer-to-object. */
6557 if (value_dependent_expression_p (expr))
6558 /* Non-type template parameters are OK. */
6560 else if (cxx_dialect >= cxx11 && integer_zerop (expr))
6561 /* Null pointer values are OK in C++11. */;
6562 else if (TREE_CODE (expr) != ADDR_EXPR
6563 && TREE_CODE (expr_type) != ARRAY_TYPE)
6565 if (VAR_P (expr))
6567 if (complain & tf_error)
6568 error ("%qD is not a valid template argument "
6569 "because %qD is a variable, not the address of "
6570 "a variable", expr, expr);
6571 return NULL_TREE;
6573 if (POINTER_TYPE_P (expr_type))
6575 if (complain & tf_error)
6576 error ("%qE is not a valid template argument for %qT "
6577 "because it is not the address of a variable",
6578 expr, type);
6579 return NULL_TREE;
6581 /* Other values, like integer constants, might be valid
6582 non-type arguments of some other type. */
6583 return error_mark_node;
6585 else
6587 tree decl;
6589 decl = ((TREE_CODE (expr) == ADDR_EXPR)
6590 ? TREE_OPERAND (expr, 0) : expr);
6591 if (!VAR_P (decl))
6593 if (complain & tf_error)
6594 error ("%qE is not a valid template argument of type %qT "
6595 "because %qE is not a variable", expr, type, decl);
6596 return NULL_TREE;
6598 else if (cxx_dialect < cxx11 && !DECL_EXTERNAL_LINKAGE_P (decl))
6600 if (complain & tf_error)
6601 error ("%qE is not a valid template argument of type %qT "
6602 "because %qD does not have external linkage",
6603 expr, type, decl);
6604 return NULL_TREE;
6606 else if (cxx_dialect >= cxx11 && decl_linkage (decl) == lk_none)
6608 if (complain & tf_error)
6609 error ("%qE is not a valid template argument of type %qT "
6610 "because %qD has no linkage", expr, type, decl);
6611 return NULL_TREE;
6615 expr = decay_conversion (expr, complain);
6616 if (expr == error_mark_node)
6617 return error_mark_node;
6619 expr = perform_qualification_conversions (type, expr);
6620 if (expr == error_mark_node)
6621 return error_mark_node;
6623 /* [temp.arg.nontype]/5, bullet 3
6625 For a non-type template-parameter of type reference to object, no
6626 conversions apply. The type referred to by the reference may be more
6627 cv-qualified than the (otherwise identical) type of the
6628 template-argument. The template-parameter is bound directly to the
6629 template-argument, which must be an lvalue. */
6630 else if (TYPE_REF_OBJ_P (type))
6632 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (type),
6633 expr_type))
6634 return error_mark_node;
6636 if (!at_least_as_qualified_p (TREE_TYPE (type), expr_type))
6638 if (complain & tf_error)
6639 error ("%qE is not a valid template argument for type %qT "
6640 "because of conflicts in cv-qualification", expr, type);
6641 return NULL_TREE;
6644 if (!lvalue_p (expr))
6646 if (complain & tf_error)
6647 error ("%qE is not a valid template argument for type %qT "
6648 "because it is not an lvalue", expr, type);
6649 return NULL_TREE;
6652 /* [temp.arg.nontype]/1
6654 A template-argument for a non-type, non-template template-parameter
6655 shall be one of: [...]
6657 -- the address of an object or function with external linkage. */
6658 if (INDIRECT_REF_P (expr)
6659 && TYPE_REF_OBJ_P (TREE_TYPE (TREE_OPERAND (expr, 0))))
6661 expr = TREE_OPERAND (expr, 0);
6662 if (DECL_P (expr))
6664 if (complain & tf_error)
6665 error ("%q#D is not a valid template argument for type %qT "
6666 "because a reference variable does not have a constant "
6667 "address", expr, type);
6668 return NULL_TREE;
6672 if (!value_dependent_expression_p (expr))
6674 if (!DECL_P (expr))
6676 if (complain & tf_error)
6677 error ("%qE is not a valid template argument for type %qT "
6678 "because it is not an object with linkage",
6679 expr, type);
6680 return NULL_TREE;
6683 /* DR 1155 allows internal linkage in C++11 and up. */
6684 linkage_kind linkage = decl_linkage (expr);
6685 if (linkage < (cxx_dialect >= cxx11 ? lk_internal : lk_external))
6687 if (complain & tf_error)
6688 error ("%qE is not a valid template argument for type %qT "
6689 "because object %qD does not have linkage",
6690 expr, type, expr);
6691 return NULL_TREE;
6694 expr = build_nop (type, build_address (expr));
6697 /* [temp.arg.nontype]/5, bullet 4
6699 For a non-type template-parameter of type pointer to function, only
6700 the function-to-pointer conversion (_conv.func_) is applied. If the
6701 template-argument represents a set of overloaded functions (or a
6702 pointer to such), the matching function is selected from the set
6703 (_over.over_). */
6704 else if (TYPE_PTRFN_P (type))
6706 /* If the argument is a template-id, we might not have enough
6707 context information to decay the pointer. */
6708 if (!type_unknown_p (expr_type))
6710 expr = decay_conversion (expr, complain);
6711 if (expr == error_mark_node)
6712 return error_mark_node;
6715 if (cxx_dialect >= cxx11 && integer_zerop (expr))
6716 /* Null pointer values are OK in C++11. */
6717 return perform_qualification_conversions (type, expr);
6719 expr = convert_nontype_argument_function (type, expr, complain);
6720 if (!expr || expr == error_mark_node)
6721 return expr;
6723 /* [temp.arg.nontype]/5, bullet 5
6725 For a non-type template-parameter of type reference to function, no
6726 conversions apply. If the template-argument represents a set of
6727 overloaded functions, the matching function is selected from the set
6728 (_over.over_). */
6729 else if (TYPE_REFFN_P (type))
6731 if (TREE_CODE (expr) == ADDR_EXPR)
6733 if (complain & tf_error)
6735 error ("%qE is not a valid template argument for type %qT "
6736 "because it is a pointer", expr, type);
6737 inform (input_location, "try using %qE instead",
6738 TREE_OPERAND (expr, 0));
6740 return NULL_TREE;
6743 expr = convert_nontype_argument_function (type, expr, complain);
6744 if (!expr || expr == error_mark_node)
6745 return expr;
6747 /* [temp.arg.nontype]/5, bullet 6
6749 For a non-type template-parameter of type pointer to member function,
6750 no conversions apply. If the template-argument represents a set of
6751 overloaded member functions, the matching member function is selected
6752 from the set (_over.over_). */
6753 else if (TYPE_PTRMEMFUNC_P (type))
6755 expr = instantiate_type (type, expr, tf_none);
6756 if (expr == error_mark_node)
6757 return error_mark_node;
6759 /* [temp.arg.nontype] bullet 1 says the pointer to member
6760 expression must be a pointer-to-member constant. */
6761 if (!value_dependent_expression_p (expr)
6762 && !check_valid_ptrmem_cst_expr (type, expr, complain))
6763 return error_mark_node;
6765 /* Repeated conversion can't deal with a conversion that turns PTRMEM_CST
6766 into a CONSTRUCTOR, so build up a new PTRMEM_CST instead. */
6767 if (fnptr_conv_p (type, TREE_TYPE (expr)))
6768 expr = make_ptrmem_cst (type, PTRMEM_CST_MEMBER (expr));
6770 /* There is no way to disable standard conversions in
6771 resolve_address_of_overloaded_function (called by
6772 instantiate_type). It is possible that the call succeeded by
6773 converting &B::I to &D::I (where B is a base of D), so we need
6774 to reject this conversion here.
6776 Actually, even if there was a way to disable standard conversions,
6777 it would still be better to reject them here so that we can
6778 provide a superior diagnostic. */
6779 if (!same_type_p (TREE_TYPE (expr), type))
6781 if (complain & tf_error)
6783 error ("%qE is not a valid template argument for type %qT "
6784 "because it is of type %qT", expr, type,
6785 TREE_TYPE (expr));
6786 /* If we are just one standard conversion off, explain. */
6787 if (can_convert_standard (type, TREE_TYPE (expr), complain))
6788 inform (input_location,
6789 "standard conversions are not allowed in this context");
6791 return NULL_TREE;
6794 /* [temp.arg.nontype]/5, bullet 7
6796 For a non-type template-parameter of type pointer to data member,
6797 qualification conversions (_conv.qual_) are applied. */
6798 else if (TYPE_PTRDATAMEM_P (type))
6800 /* [temp.arg.nontype] bullet 1 says the pointer to member
6801 expression must be a pointer-to-member constant. */
6802 if (!value_dependent_expression_p (expr)
6803 && !check_valid_ptrmem_cst_expr (type, expr, complain))
6804 return error_mark_node;
6806 expr = perform_qualification_conversions (type, expr);
6807 if (expr == error_mark_node)
6808 return expr;
6810 else if (NULLPTR_TYPE_P (type))
6812 if (expr != nullptr_node)
6814 if (complain & tf_error)
6815 error ("%qE is not a valid template argument for type %qT "
6816 "because it is of type %qT", expr, type, TREE_TYPE (expr));
6817 return NULL_TREE;
6819 return expr;
6821 /* A template non-type parameter must be one of the above. */
6822 else
6823 gcc_unreachable ();
6825 /* Sanity check: did we actually convert the argument to the
6826 right type? */
6827 gcc_assert (same_type_ignoring_top_level_qualifiers_p
6828 (type, TREE_TYPE (expr)));
6829 return convert_from_reference (expr);
6832 /* Subroutine of coerce_template_template_parms, which returns 1 if
6833 PARM_PARM and ARG_PARM match using the rule for the template
6834 parameters of template template parameters. Both PARM and ARG are
6835 template parameters; the rest of the arguments are the same as for
6836 coerce_template_template_parms.
6838 static int
6839 coerce_template_template_parm (tree parm,
6840 tree arg,
6841 tsubst_flags_t complain,
6842 tree in_decl,
6843 tree outer_args)
6845 if (arg == NULL_TREE || error_operand_p (arg)
6846 || parm == NULL_TREE || error_operand_p (parm))
6847 return 0;
6849 if (TREE_CODE (arg) != TREE_CODE (parm))
6850 return 0;
6852 switch (TREE_CODE (parm))
6854 case TEMPLATE_DECL:
6855 /* We encounter instantiations of templates like
6856 template <template <template <class> class> class TT>
6857 class C; */
6859 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
6860 tree argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
6862 if (!coerce_template_template_parms
6863 (parmparm, argparm, complain, in_decl, outer_args))
6864 return 0;
6866 /* Fall through. */
6868 case TYPE_DECL:
6869 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (arg))
6870 && !TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
6871 /* Argument is a parameter pack but parameter is not. */
6872 return 0;
6873 break;
6875 case PARM_DECL:
6876 /* The tsubst call is used to handle cases such as
6878 template <int> class C {};
6879 template <class T, template <T> class TT> class D {};
6880 D<int, C> d;
6882 i.e. the parameter list of TT depends on earlier parameters. */
6883 if (!uses_template_parms (TREE_TYPE (arg)))
6885 tree t = tsubst (TREE_TYPE (parm), outer_args, complain, in_decl);
6886 if (!uses_template_parms (t)
6887 && !same_type_p (t, TREE_TYPE (arg)))
6888 return 0;
6891 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (arg))
6892 && !TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
6893 /* Argument is a parameter pack but parameter is not. */
6894 return 0;
6896 break;
6898 default:
6899 gcc_unreachable ();
6902 return 1;
6905 /* Coerce template argument list ARGLIST for use with template
6906 template-parameter TEMPL. */
6908 static tree
6909 coerce_template_args_for_ttp (tree templ, tree arglist,
6910 tsubst_flags_t complain)
6912 /* Consider an example where a template template parameter declared as
6914 template <class T, class U = std::allocator<T> > class TT
6916 The template parameter level of T and U are one level larger than
6917 of TT. To proper process the default argument of U, say when an
6918 instantiation `TT<int>' is seen, we need to build the full
6919 arguments containing {int} as the innermost level. Outer levels,
6920 available when not appearing as default template argument, can be
6921 obtained from the arguments of the enclosing template.
6923 Suppose that TT is later substituted with std::vector. The above
6924 instantiation is `TT<int, std::allocator<T> >' with TT at
6925 level 1, and T at level 2, while the template arguments at level 1
6926 becomes {std::vector} and the inner level 2 is {int}. */
6928 tree outer = DECL_CONTEXT (templ);
6929 if (outer)
6931 if (DECL_TEMPLATE_SPECIALIZATION (outer))
6932 /* We want arguments for the partial specialization, not arguments for
6933 the primary template. */
6934 outer = template_parms_to_args (DECL_TEMPLATE_PARMS (outer));
6935 else
6936 outer = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (outer)));
6938 else if (current_template_parms)
6940 /* This is an argument of the current template, so we haven't set
6941 DECL_CONTEXT yet. */
6942 tree relevant_template_parms;
6944 /* Parameter levels that are greater than the level of the given
6945 template template parm are irrelevant. */
6946 relevant_template_parms = current_template_parms;
6947 while (TMPL_PARMS_DEPTH (relevant_template_parms)
6948 != TEMPLATE_TYPE_LEVEL (TREE_TYPE (templ)))
6949 relevant_template_parms = TREE_CHAIN (relevant_template_parms);
6951 outer = template_parms_to_args (relevant_template_parms);
6954 if (outer)
6955 arglist = add_to_template_args (outer, arglist);
6957 tree parmlist = DECL_INNERMOST_TEMPLATE_PARMS (templ);
6958 return coerce_template_parms (parmlist, arglist, templ,
6959 complain,
6960 /*require_all_args=*/true,
6961 /*use_default_args=*/true);
6964 /* A cache of template template parameters with match-all default
6965 arguments. */
6966 static GTY((deletable)) hash_map<tree,tree> *defaulted_ttp_cache;
6967 static void
6968 store_defaulted_ttp (tree v, tree t)
6970 if (!defaulted_ttp_cache)
6971 defaulted_ttp_cache = hash_map<tree,tree>::create_ggc (13);
6972 defaulted_ttp_cache->put (v, t);
6974 static tree
6975 lookup_defaulted_ttp (tree v)
6977 if (defaulted_ttp_cache)
6978 if (tree *p = defaulted_ttp_cache->get (v))
6979 return *p;
6980 return NULL_TREE;
6983 /* T is a bound template template-parameter. Copy its arguments into default
6984 arguments of the template template-parameter's template parameters. */
6986 static tree
6987 add_defaults_to_ttp (tree otmpl)
6989 if (tree c = lookup_defaulted_ttp (otmpl))
6990 return c;
6992 tree ntmpl = copy_node (otmpl);
6994 tree ntype = copy_node (TREE_TYPE (otmpl));
6995 TYPE_STUB_DECL (ntype) = TYPE_NAME (ntype) = ntmpl;
6996 TYPE_MAIN_VARIANT (ntype) = ntype;
6997 TYPE_POINTER_TO (ntype) = TYPE_REFERENCE_TO (ntype) = NULL_TREE;
6998 TYPE_NAME (ntype) = ntmpl;
6999 SET_TYPE_STRUCTURAL_EQUALITY (ntype);
7001 tree idx = TEMPLATE_TYPE_PARM_INDEX (ntype)
7002 = copy_node (TEMPLATE_TYPE_PARM_INDEX (ntype));
7003 TEMPLATE_PARM_DECL (idx) = ntmpl;
7004 TREE_TYPE (ntmpl) = TREE_TYPE (idx) = ntype;
7006 tree oparms = DECL_TEMPLATE_PARMS (otmpl);
7007 tree parms = DECL_TEMPLATE_PARMS (ntmpl) = copy_node (oparms);
7008 TREE_CHAIN (parms) = TREE_CHAIN (oparms);
7009 tree vec = TREE_VALUE (parms) = copy_node (TREE_VALUE (parms));
7010 for (int i = 0; i < TREE_VEC_LENGTH (vec); ++i)
7012 tree o = TREE_VEC_ELT (vec, i);
7013 if (!template_parameter_pack_p (TREE_VALUE (o)))
7015 tree n = TREE_VEC_ELT (vec, i) = copy_node (o);
7016 TREE_PURPOSE (n) = any_targ_node;
7020 store_defaulted_ttp (otmpl, ntmpl);
7021 return ntmpl;
7024 /* ARG is a bound potential template template-argument, and PARGS is a list
7025 of arguments for the corresponding template template-parameter. Adjust
7026 PARGS as appropriate for application to ARG's template, and if ARG is a
7027 BOUND_TEMPLATE_TEMPLATE_PARM, possibly adjust it to add default template
7028 arguments to the template template parameter. */
7030 static tree
7031 coerce_ttp_args_for_tta (tree& arg, tree pargs, tsubst_flags_t complain)
7033 ++processing_template_decl;
7034 tree arg_tmpl = TYPE_TI_TEMPLATE (arg);
7035 if (DECL_TEMPLATE_TEMPLATE_PARM_P (arg_tmpl))
7037 /* When comparing two template template-parameters in partial ordering,
7038 rewrite the one currently being used as an argument to have default
7039 arguments for all parameters. */
7040 arg_tmpl = add_defaults_to_ttp (arg_tmpl);
7041 pargs = coerce_template_args_for_ttp (arg_tmpl, pargs, complain);
7042 if (pargs != error_mark_node)
7043 arg = bind_template_template_parm (TREE_TYPE (arg_tmpl),
7044 TYPE_TI_ARGS (arg));
7046 else
7048 tree aparms
7049 = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (arg_tmpl));
7050 pargs = coerce_template_parms (aparms, pargs, arg_tmpl, complain,
7051 /*require_all*/true,
7052 /*use_default*/true);
7054 --processing_template_decl;
7055 return pargs;
7058 /* Subroutine of unify for the case when PARM is a
7059 BOUND_TEMPLATE_TEMPLATE_PARM. */
7061 static int
7062 unify_bound_ttp_args (tree tparms, tree targs, tree parm, tree& arg,
7063 bool explain_p)
7065 tree parmvec = TYPE_TI_ARGS (parm);
7066 tree argvec = INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (arg));
7068 /* The template template parm might be variadic and the argument
7069 not, so flatten both argument lists. */
7070 parmvec = expand_template_argument_pack (parmvec);
7071 argvec = expand_template_argument_pack (argvec);
7073 tree nparmvec = parmvec;
7074 if (flag_new_ttp)
7076 /* In keeping with P0522R0, adjust P's template arguments
7077 to apply to A's template; then flatten it again. */
7078 nparmvec = coerce_ttp_args_for_tta (arg, parmvec, tf_none);
7079 nparmvec = expand_template_argument_pack (nparmvec);
7082 if (unify (tparms, targs, nparmvec, argvec,
7083 UNIFY_ALLOW_NONE, explain_p))
7084 return 1;
7086 /* If the P0522 adjustment eliminated a pack expansion, deduce
7087 empty packs. */
7088 if (flag_new_ttp
7089 && TREE_VEC_LENGTH (nparmvec) < TREE_VEC_LENGTH (parmvec)
7090 && unify_pack_expansion (tparms, targs, parmvec, argvec,
7091 DEDUCE_EXACT, /*sub*/true, explain_p))
7092 return 1;
7094 return 0;
7097 /* Return 1 if PARM_PARMS and ARG_PARMS matches using rule for
7098 template template parameters. Both PARM_PARMS and ARG_PARMS are
7099 vectors of TREE_LIST nodes containing TYPE_DECL, TEMPLATE_DECL
7100 or PARM_DECL.
7102 Consider the example:
7103 template <class T> class A;
7104 template<template <class U> class TT> class B;
7106 For B<A>, PARM_PARMS are the parameters to TT, while ARG_PARMS are
7107 the parameters to A, and OUTER_ARGS contains A. */
7109 static int
7110 coerce_template_template_parms (tree parm_parms,
7111 tree arg_parms,
7112 tsubst_flags_t complain,
7113 tree in_decl,
7114 tree outer_args)
7116 int nparms, nargs, i;
7117 tree parm, arg;
7118 int variadic_p = 0;
7120 gcc_assert (TREE_CODE (parm_parms) == TREE_VEC);
7121 gcc_assert (TREE_CODE (arg_parms) == TREE_VEC);
7123 nparms = TREE_VEC_LENGTH (parm_parms);
7124 nargs = TREE_VEC_LENGTH (arg_parms);
7126 if (flag_new_ttp)
7128 /* P0522R0: A template template-parameter P is at least as specialized as
7129 a template template-argument A if, given the following rewrite to two
7130 function templates, the function template corresponding to P is at
7131 least as specialized as the function template corresponding to A
7132 according to the partial ordering rules for function templates
7133 ([temp.func.order]). Given an invented class template X with the
7134 template parameter list of A (including default arguments):
7136 * Each of the two function templates has the same template parameters,
7137 respectively, as P or A.
7139 * Each function template has a single function parameter whose type is
7140 a specialization of X with template arguments corresponding to the
7141 template parameters from the respective function template where, for
7142 each template parameter PP in the template parameter list of the
7143 function template, a corresponding template argument AA is formed. If
7144 PP declares a parameter pack, then AA is the pack expansion
7145 PP... ([temp.variadic]); otherwise, AA is the id-expression PP.
7147 If the rewrite produces an invalid type, then P is not at least as
7148 specialized as A. */
7150 /* So coerce P's args to apply to A's parms, and then deduce between A's
7151 args and the converted args. If that succeeds, A is at least as
7152 specialized as P, so they match.*/
7153 tree pargs = template_parms_level_to_args (parm_parms);
7154 ++processing_template_decl;
7155 pargs = coerce_template_parms (arg_parms, pargs, NULL_TREE, tf_none,
7156 /*require_all*/true, /*use_default*/true);
7157 --processing_template_decl;
7158 if (pargs != error_mark_node)
7160 tree targs = make_tree_vec (nargs);
7161 tree aargs = template_parms_level_to_args (arg_parms);
7162 if (!unify (arg_parms, targs, aargs, pargs, UNIFY_ALLOW_NONE,
7163 /*explain*/false))
7164 return 1;
7168 /* Determine whether we have a parameter pack at the end of the
7169 template template parameter's template parameter list. */
7170 if (TREE_VEC_ELT (parm_parms, nparms - 1) != error_mark_node)
7172 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, nparms - 1));
7174 if (error_operand_p (parm))
7175 return 0;
7177 switch (TREE_CODE (parm))
7179 case TEMPLATE_DECL:
7180 case TYPE_DECL:
7181 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
7182 variadic_p = 1;
7183 break;
7185 case PARM_DECL:
7186 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
7187 variadic_p = 1;
7188 break;
7190 default:
7191 gcc_unreachable ();
7195 if (nargs != nparms
7196 && !(variadic_p && nargs >= nparms - 1))
7197 return 0;
7199 /* Check all of the template parameters except the parameter pack at
7200 the end (if any). */
7201 for (i = 0; i < nparms - variadic_p; ++i)
7203 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node
7204 || TREE_VEC_ELT (arg_parms, i) == error_mark_node)
7205 continue;
7207 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
7208 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
7210 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
7211 outer_args))
7212 return 0;
7216 if (variadic_p)
7218 /* Check each of the template parameters in the template
7219 argument against the template parameter pack at the end of
7220 the template template parameter. */
7221 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node)
7222 return 0;
7224 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
7226 for (; i < nargs; ++i)
7228 if (TREE_VEC_ELT (arg_parms, i) == error_mark_node)
7229 continue;
7231 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
7233 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
7234 outer_args))
7235 return 0;
7239 return 1;
7242 /* Verifies that the deduced template arguments (in TARGS) for the
7243 template template parameters (in TPARMS) represent valid bindings,
7244 by comparing the template parameter list of each template argument
7245 to the template parameter list of its corresponding template
7246 template parameter, in accordance with DR150. This
7247 routine can only be called after all template arguments have been
7248 deduced. It will return TRUE if all of the template template
7249 parameter bindings are okay, FALSE otherwise. */
7250 bool
7251 template_template_parm_bindings_ok_p (tree tparms, tree targs)
7253 int i, ntparms = TREE_VEC_LENGTH (tparms);
7254 bool ret = true;
7256 /* We're dealing with template parms in this process. */
7257 ++processing_template_decl;
7259 targs = INNERMOST_TEMPLATE_ARGS (targs);
7261 for (i = 0; i < ntparms; ++i)
7263 tree tparm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
7264 tree targ = TREE_VEC_ELT (targs, i);
7266 if (TREE_CODE (tparm) == TEMPLATE_DECL && targ)
7268 tree packed_args = NULL_TREE;
7269 int idx, len = 1;
7271 if (ARGUMENT_PACK_P (targ))
7273 /* Look inside the argument pack. */
7274 packed_args = ARGUMENT_PACK_ARGS (targ);
7275 len = TREE_VEC_LENGTH (packed_args);
7278 for (idx = 0; idx < len; ++idx)
7280 tree targ_parms = NULL_TREE;
7282 if (packed_args)
7283 /* Extract the next argument from the argument
7284 pack. */
7285 targ = TREE_VEC_ELT (packed_args, idx);
7287 if (PACK_EXPANSION_P (targ))
7288 /* Look at the pattern of the pack expansion. */
7289 targ = PACK_EXPANSION_PATTERN (targ);
7291 /* Extract the template parameters from the template
7292 argument. */
7293 if (TREE_CODE (targ) == TEMPLATE_DECL)
7294 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (targ);
7295 else if (TREE_CODE (targ) == TEMPLATE_TEMPLATE_PARM)
7296 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (TYPE_NAME (targ));
7298 /* Verify that we can coerce the template template
7299 parameters from the template argument to the template
7300 parameter. This requires an exact match. */
7301 if (targ_parms
7302 && !coerce_template_template_parms
7303 (DECL_INNERMOST_TEMPLATE_PARMS (tparm),
7304 targ_parms,
7305 tf_none,
7306 tparm,
7307 targs))
7309 ret = false;
7310 goto out;
7316 out:
7318 --processing_template_decl;
7319 return ret;
7322 /* Since type attributes aren't mangled, we need to strip them from
7323 template type arguments. */
7325 static tree
7326 canonicalize_type_argument (tree arg, tsubst_flags_t complain)
7328 if (!arg || arg == error_mark_node || arg == TYPE_CANONICAL (arg))
7329 return arg;
7330 bool removed_attributes = false;
7331 tree canon = strip_typedefs (arg, &removed_attributes);
7332 if (removed_attributes
7333 && (complain & tf_warning))
7334 warning (OPT_Wignored_attributes,
7335 "ignoring attributes on template argument %qT", arg);
7336 return canon;
7339 /* And from inside dependent non-type arguments like sizeof(Type). */
7341 static tree
7342 canonicalize_expr_argument (tree arg, tsubst_flags_t complain)
7344 if (!arg || arg == error_mark_node)
7345 return arg;
7346 bool removed_attributes = false;
7347 tree canon = strip_typedefs_expr (arg, &removed_attributes);
7348 if (removed_attributes
7349 && (complain & tf_warning))
7350 warning (OPT_Wignored_attributes,
7351 "ignoring attributes in template argument %qE", arg);
7352 return canon;
7355 // A template declaration can be substituted for a constrained
7356 // template template parameter only when the argument is more
7357 // constrained than the parameter.
7358 static bool
7359 is_compatible_template_arg (tree parm, tree arg)
7361 tree parm_cons = get_constraints (parm);
7363 /* For now, allow constrained template template arguments
7364 and unconstrained template template parameters. */
7365 if (parm_cons == NULL_TREE)
7366 return true;
7368 tree arg_cons = get_constraints (arg);
7370 // If the template parameter is constrained, we need to rewrite its
7371 // constraints in terms of the ARG's template parameters. This ensures
7372 // that all of the template parameter types will have the same depth.
7374 // Note that this is only valid when coerce_template_template_parm is
7375 // true for the innermost template parameters of PARM and ARG. In other
7376 // words, because coercion is successful, this conversion will be valid.
7377 if (parm_cons)
7379 tree args = template_parms_to_args (DECL_TEMPLATE_PARMS (arg));
7380 parm_cons = tsubst_constraint_info (parm_cons,
7381 INNERMOST_TEMPLATE_ARGS (args),
7382 tf_none, NULL_TREE);
7383 if (parm_cons == error_mark_node)
7384 return false;
7387 return subsumes (parm_cons, arg_cons);
7390 // Convert a placeholder argument into a binding to the original
7391 // parameter. The original parameter is saved as the TREE_TYPE of
7392 // ARG.
7393 static inline tree
7394 convert_wildcard_argument (tree parm, tree arg)
7396 TREE_TYPE (arg) = parm;
7397 return arg;
7400 /* Convert the indicated template ARG as necessary to match the
7401 indicated template PARM. Returns the converted ARG, or
7402 error_mark_node if the conversion was unsuccessful. Error and
7403 warning messages are issued under control of COMPLAIN. This
7404 conversion is for the Ith parameter in the parameter list. ARGS is
7405 the full set of template arguments deduced so far. */
7407 static tree
7408 convert_template_argument (tree parm,
7409 tree arg,
7410 tree args,
7411 tsubst_flags_t complain,
7412 int i,
7413 tree in_decl)
7415 tree orig_arg;
7416 tree val;
7417 int is_type, requires_type, is_tmpl_type, requires_tmpl_type;
7419 if (parm == error_mark_node)
7420 return error_mark_node;
7422 /* Trivially convert placeholders. */
7423 if (TREE_CODE (arg) == WILDCARD_DECL)
7424 return convert_wildcard_argument (parm, arg);
7426 if (arg == any_targ_node)
7427 return arg;
7429 if (TREE_CODE (arg) == TREE_LIST
7430 && TREE_CODE (TREE_VALUE (arg)) == OFFSET_REF)
7432 /* The template argument was the name of some
7433 member function. That's usually
7434 invalid, but static members are OK. In any
7435 case, grab the underlying fields/functions
7436 and issue an error later if required. */
7437 orig_arg = TREE_VALUE (arg);
7438 TREE_TYPE (arg) = unknown_type_node;
7441 orig_arg = arg;
7443 requires_tmpl_type = TREE_CODE (parm) == TEMPLATE_DECL;
7444 requires_type = (TREE_CODE (parm) == TYPE_DECL
7445 || requires_tmpl_type);
7447 /* When determining whether an argument pack expansion is a template,
7448 look at the pattern. */
7449 if (TREE_CODE (arg) == TYPE_PACK_EXPANSION)
7450 arg = PACK_EXPANSION_PATTERN (arg);
7452 /* Deal with an injected-class-name used as a template template arg. */
7453 if (requires_tmpl_type && CLASS_TYPE_P (arg))
7455 tree t = maybe_get_template_decl_from_type_decl (TYPE_NAME (arg));
7456 if (TREE_CODE (t) == TEMPLATE_DECL)
7458 if (cxx_dialect >= cxx11)
7459 /* OK under DR 1004. */;
7460 else if (complain & tf_warning_or_error)
7461 pedwarn (input_location, OPT_Wpedantic, "injected-class-name %qD"
7462 " used as template template argument", TYPE_NAME (arg));
7463 else if (flag_pedantic_errors)
7464 t = arg;
7466 arg = t;
7470 is_tmpl_type =
7471 ((TREE_CODE (arg) == TEMPLATE_DECL
7472 && TREE_CODE (DECL_TEMPLATE_RESULT (arg)) == TYPE_DECL)
7473 || (requires_tmpl_type && TREE_CODE (arg) == TYPE_ARGUMENT_PACK)
7474 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
7475 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
7477 if (is_tmpl_type
7478 && (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
7479 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE))
7480 arg = TYPE_STUB_DECL (arg);
7482 is_type = TYPE_P (arg) || is_tmpl_type;
7484 if (requires_type && ! is_type && TREE_CODE (arg) == SCOPE_REF
7485 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_TYPE_PARM)
7487 if (TREE_CODE (TREE_OPERAND (arg, 1)) == BIT_NOT_EXPR)
7489 if (complain & tf_error)
7490 error ("invalid use of destructor %qE as a type", orig_arg);
7491 return error_mark_node;
7494 permerror (input_location,
7495 "to refer to a type member of a template parameter, "
7496 "use %<typename %E%>", orig_arg);
7498 orig_arg = make_typename_type (TREE_OPERAND (arg, 0),
7499 TREE_OPERAND (arg, 1),
7500 typename_type,
7501 complain);
7502 arg = orig_arg;
7503 is_type = 1;
7505 if (is_type != requires_type)
7507 if (in_decl)
7509 if (complain & tf_error)
7511 error ("type/value mismatch at argument %d in template "
7512 "parameter list for %qD",
7513 i + 1, in_decl);
7514 if (is_type)
7515 inform (input_location,
7516 " expected a constant of type %qT, got %qT",
7517 TREE_TYPE (parm),
7518 (DECL_P (arg) ? DECL_NAME (arg) : orig_arg));
7519 else if (requires_tmpl_type)
7520 inform (input_location,
7521 " expected a class template, got %qE", orig_arg);
7522 else
7523 inform (input_location,
7524 " expected a type, got %qE", orig_arg);
7527 return error_mark_node;
7529 if (is_tmpl_type ^ requires_tmpl_type)
7531 if (in_decl && (complain & tf_error))
7533 error ("type/value mismatch at argument %d in template "
7534 "parameter list for %qD",
7535 i + 1, in_decl);
7536 if (is_tmpl_type)
7537 inform (input_location,
7538 " expected a type, got %qT", DECL_NAME (arg));
7539 else
7540 inform (input_location,
7541 " expected a class template, got %qT", orig_arg);
7543 return error_mark_node;
7546 if (is_type)
7548 if (requires_tmpl_type)
7550 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
7551 val = orig_arg;
7552 else if (TREE_CODE (TREE_TYPE (arg)) == UNBOUND_CLASS_TEMPLATE)
7553 /* The number of argument required is not known yet.
7554 Just accept it for now. */
7555 val = TREE_TYPE (arg);
7556 else
7558 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
7559 tree argparm;
7561 /* Strip alias templates that are equivalent to another
7562 template. */
7563 arg = get_underlying_template (arg);
7564 argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
7566 if (coerce_template_template_parms (parmparm, argparm,
7567 complain, in_decl,
7568 args))
7570 val = arg;
7572 /* TEMPLATE_TEMPLATE_PARM node is preferred over
7573 TEMPLATE_DECL. */
7574 if (val != error_mark_node)
7576 if (DECL_TEMPLATE_TEMPLATE_PARM_P (val))
7577 val = TREE_TYPE (val);
7578 if (TREE_CODE (orig_arg) == TYPE_PACK_EXPANSION)
7579 val = make_pack_expansion (val);
7582 else
7584 if (in_decl && (complain & tf_error))
7586 error ("type/value mismatch at argument %d in "
7587 "template parameter list for %qD",
7588 i + 1, in_decl);
7589 inform (input_location,
7590 " expected a template of type %qD, got %qT",
7591 parm, orig_arg);
7594 val = error_mark_node;
7597 // Check that the constraints are compatible before allowing the
7598 // substitution.
7599 if (val != error_mark_node)
7600 if (!is_compatible_template_arg (parm, arg))
7602 if (in_decl && (complain & tf_error))
7604 error ("constraint mismatch at argument %d in "
7605 "template parameter list for %qD",
7606 i + 1, in_decl);
7607 inform (input_location, " expected %qD but got %qD",
7608 parm, arg);
7610 val = error_mark_node;
7614 else
7615 val = orig_arg;
7616 /* We only form one instance of each template specialization.
7617 Therefore, if we use a non-canonical variant (i.e., a
7618 typedef), any future messages referring to the type will use
7619 the typedef, which is confusing if those future uses do not
7620 themselves also use the typedef. */
7621 if (TYPE_P (val))
7622 val = canonicalize_type_argument (val, complain);
7624 else
7626 tree t = TREE_TYPE (parm);
7628 if (tree a = type_uses_auto (t))
7630 if (ARGUMENT_PACK_P (orig_arg))
7631 /* There's nothing to check for an auto argument pack. */
7632 return orig_arg;
7634 t = do_auto_deduction (t, arg, a, complain, adc_unify, args);
7635 if (t == error_mark_node)
7636 return error_mark_node;
7638 else
7639 t = tsubst (t, args, complain, in_decl);
7641 if (invalid_nontype_parm_type_p (t, complain))
7642 return error_mark_node;
7644 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
7646 if (same_type_p (t, TREE_TYPE (orig_arg)))
7647 val = orig_arg;
7648 else
7650 /* Not sure if this is reachable, but it doesn't hurt
7651 to be robust. */
7652 error ("type mismatch in nontype parameter pack");
7653 val = error_mark_node;
7656 else if (!type_dependent_expression_p (orig_arg)
7657 && !uses_template_parms (t))
7658 /* We used to call digest_init here. However, digest_init
7659 will report errors, which we don't want when complain
7660 is zero. More importantly, digest_init will try too
7661 hard to convert things: for example, `0' should not be
7662 converted to pointer type at this point according to
7663 the standard. Accepting this is not merely an
7664 extension, since deciding whether or not these
7665 conversions can occur is part of determining which
7666 function template to call, or whether a given explicit
7667 argument specification is valid. */
7668 val = convert_nontype_argument (t, orig_arg, complain);
7669 else
7670 val = canonicalize_expr_argument (orig_arg, complain);
7672 if (val == NULL_TREE)
7673 val = error_mark_node;
7674 else if (val == error_mark_node && (complain & tf_error))
7675 error ("could not convert template argument %qE from %qT to %qT",
7676 orig_arg, TREE_TYPE (orig_arg), t);
7678 if (INDIRECT_REF_P (val))
7680 /* Reject template arguments that are references to built-in
7681 functions with no library fallbacks. */
7682 const_tree inner = TREE_OPERAND (val, 0);
7683 const_tree innertype = TREE_TYPE (inner);
7684 if (innertype
7685 && TREE_CODE (innertype) == REFERENCE_TYPE
7686 && TREE_CODE (TREE_TYPE (innertype)) == FUNCTION_TYPE
7687 && 0 < TREE_OPERAND_LENGTH (inner)
7688 && reject_gcc_builtin (TREE_OPERAND (inner, 0)))
7689 return error_mark_node;
7692 if (TREE_CODE (val) == SCOPE_REF)
7694 /* Strip typedefs from the SCOPE_REF. */
7695 tree type = canonicalize_type_argument (TREE_TYPE (val), complain);
7696 tree scope = canonicalize_type_argument (TREE_OPERAND (val, 0),
7697 complain);
7698 val = build_qualified_name (type, scope, TREE_OPERAND (val, 1),
7699 QUALIFIED_NAME_IS_TEMPLATE (val));
7703 return val;
7706 /* Coerces the remaining template arguments in INNER_ARGS (from
7707 ARG_IDX to the end) into the parameter pack at PARM_IDX in PARMS.
7708 Returns the coerced argument pack. PARM_IDX is the position of this
7709 parameter in the template parameter list. ARGS is the original
7710 template argument list. */
7711 static tree
7712 coerce_template_parameter_pack (tree parms,
7713 int parm_idx,
7714 tree args,
7715 tree inner_args,
7716 int arg_idx,
7717 tree new_args,
7718 int* lost,
7719 tree in_decl,
7720 tsubst_flags_t complain)
7722 tree parm = TREE_VEC_ELT (parms, parm_idx);
7723 int nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
7724 tree packed_args;
7725 tree argument_pack;
7726 tree packed_parms = NULL_TREE;
7728 if (arg_idx > nargs)
7729 arg_idx = nargs;
7731 if (tree packs = fixed_parameter_pack_p (TREE_VALUE (parm)))
7733 /* When the template parameter is a non-type template parameter pack
7734 or template template parameter pack whose type or template
7735 parameters use parameter packs, we know exactly how many arguments
7736 we are looking for. Build a vector of the instantiated decls for
7737 these template parameters in PACKED_PARMS. */
7738 /* We can't use make_pack_expansion here because it would interpret a
7739 _DECL as a use rather than a declaration. */
7740 tree decl = TREE_VALUE (parm);
7741 tree exp = cxx_make_type (TYPE_PACK_EXPANSION);
7742 SET_PACK_EXPANSION_PATTERN (exp, decl);
7743 PACK_EXPANSION_PARAMETER_PACKS (exp) = packs;
7744 SET_TYPE_STRUCTURAL_EQUALITY (exp);
7746 TREE_VEC_LENGTH (args)--;
7747 packed_parms = tsubst_pack_expansion (exp, args, complain, decl);
7748 TREE_VEC_LENGTH (args)++;
7750 if (packed_parms == error_mark_node)
7751 return error_mark_node;
7753 /* If we're doing a partial instantiation of a member template,
7754 verify that all of the types used for the non-type
7755 template parameter pack are, in fact, valid for non-type
7756 template parameters. */
7757 if (arg_idx < nargs
7758 && PACK_EXPANSION_P (TREE_VEC_ELT (inner_args, arg_idx)))
7760 int j, len = TREE_VEC_LENGTH (packed_parms);
7761 for (j = 0; j < len; ++j)
7763 tree t = TREE_TYPE (TREE_VEC_ELT (packed_parms, j));
7764 if (invalid_nontype_parm_type_p (t, complain))
7765 return error_mark_node;
7767 /* We don't know how many args we have yet, just
7768 use the unconverted ones for now. */
7769 return NULL_TREE;
7772 packed_args = make_tree_vec (TREE_VEC_LENGTH (packed_parms));
7774 /* Check if we have a placeholder pack, which indicates we're
7775 in the context of a introduction list. In that case we want
7776 to match this pack to the single placeholder. */
7777 else if (arg_idx < nargs
7778 && TREE_CODE (TREE_VEC_ELT (inner_args, arg_idx)) == WILDCARD_DECL
7779 && WILDCARD_PACK_P (TREE_VEC_ELT (inner_args, arg_idx)))
7781 nargs = arg_idx + 1;
7782 packed_args = make_tree_vec (1);
7784 else
7785 packed_args = make_tree_vec (nargs - arg_idx);
7787 /* Convert the remaining arguments, which will be a part of the
7788 parameter pack "parm". */
7789 int first_pack_arg = arg_idx;
7790 for (; arg_idx < nargs; ++arg_idx)
7792 tree arg = TREE_VEC_ELT (inner_args, arg_idx);
7793 tree actual_parm = TREE_VALUE (parm);
7794 int pack_idx = arg_idx - first_pack_arg;
7796 if (packed_parms)
7798 /* Once we've packed as many args as we have types, stop. */
7799 if (pack_idx >= TREE_VEC_LENGTH (packed_parms))
7800 break;
7801 else if (PACK_EXPANSION_P (arg))
7802 /* We don't know how many args we have yet, just
7803 use the unconverted ones for now. */
7804 return NULL_TREE;
7805 else
7806 actual_parm = TREE_VEC_ELT (packed_parms, pack_idx);
7809 if (arg == error_mark_node)
7811 if (complain & tf_error)
7812 error ("template argument %d is invalid", arg_idx + 1);
7814 else
7815 arg = convert_template_argument (actual_parm,
7816 arg, new_args, complain, parm_idx,
7817 in_decl);
7818 if (arg == error_mark_node)
7819 (*lost)++;
7820 TREE_VEC_ELT (packed_args, pack_idx) = arg;
7823 if (arg_idx - first_pack_arg < TREE_VEC_LENGTH (packed_args)
7824 && TREE_VEC_LENGTH (packed_args) > 0)
7826 if (complain & tf_error)
7827 error ("wrong number of template arguments (%d, should be %d)",
7828 arg_idx - first_pack_arg, TREE_VEC_LENGTH (packed_args));
7829 return error_mark_node;
7832 if (TREE_CODE (TREE_VALUE (parm)) == TYPE_DECL
7833 || TREE_CODE (TREE_VALUE (parm)) == TEMPLATE_DECL)
7834 argument_pack = cxx_make_type (TYPE_ARGUMENT_PACK);
7835 else
7837 argument_pack = make_node (NONTYPE_ARGUMENT_PACK);
7838 TREE_TYPE (argument_pack)
7839 = tsubst (TREE_TYPE (TREE_VALUE (parm)), new_args, complain, in_decl);
7840 TREE_CONSTANT (argument_pack) = 1;
7843 SET_ARGUMENT_PACK_ARGS (argument_pack, packed_args);
7844 if (CHECKING_P)
7845 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (packed_args,
7846 TREE_VEC_LENGTH (packed_args));
7847 return argument_pack;
7850 /* Returns the number of pack expansions in the template argument vector
7851 ARGS. */
7853 static int
7854 pack_expansion_args_count (tree args)
7856 int i;
7857 int count = 0;
7858 if (args)
7859 for (i = 0; i < TREE_VEC_LENGTH (args); ++i)
7861 tree elt = TREE_VEC_ELT (args, i);
7862 if (elt && PACK_EXPANSION_P (elt))
7863 ++count;
7865 return count;
7868 /* Convert all template arguments to their appropriate types, and
7869 return a vector containing the innermost resulting template
7870 arguments. If any error occurs, return error_mark_node. Error and
7871 warning messages are issued under control of COMPLAIN.
7873 If REQUIRE_ALL_ARGS is false, argument deduction will be performed
7874 for arguments not specified in ARGS. Otherwise, if
7875 USE_DEFAULT_ARGS is true, default arguments will be used to fill in
7876 unspecified arguments. If REQUIRE_ALL_ARGS is true, but
7877 USE_DEFAULT_ARGS is false, then all arguments must be specified in
7878 ARGS. */
7880 static tree
7881 coerce_template_parms (tree parms,
7882 tree args,
7883 tree in_decl,
7884 tsubst_flags_t complain,
7885 bool require_all_args,
7886 bool use_default_args)
7888 int nparms, nargs, parm_idx, arg_idx, lost = 0;
7889 tree orig_inner_args;
7890 tree inner_args;
7891 tree new_args;
7892 tree new_inner_args;
7893 int saved_unevaluated_operand;
7894 int saved_inhibit_evaluation_warnings;
7896 /* When used as a boolean value, indicates whether this is a
7897 variadic template parameter list. Since it's an int, we can also
7898 subtract it from nparms to get the number of non-variadic
7899 parameters. */
7900 int variadic_p = 0;
7901 int variadic_args_p = 0;
7902 int post_variadic_parms = 0;
7904 /* Likewise for parameters with default arguments. */
7905 int default_p = 0;
7907 if (args == error_mark_node)
7908 return error_mark_node;
7910 nparms = TREE_VEC_LENGTH (parms);
7912 /* Determine if there are any parameter packs or default arguments. */
7913 for (parm_idx = 0; parm_idx < nparms; ++parm_idx)
7915 tree parm = TREE_VEC_ELT (parms, parm_idx);
7916 if (variadic_p)
7917 ++post_variadic_parms;
7918 if (template_parameter_pack_p (TREE_VALUE (parm)))
7919 ++variadic_p;
7920 if (TREE_PURPOSE (parm))
7921 ++default_p;
7924 inner_args = orig_inner_args = INNERMOST_TEMPLATE_ARGS (args);
7925 /* If there are no parameters that follow a parameter pack, we need to
7926 expand any argument packs so that we can deduce a parameter pack from
7927 some non-packed args followed by an argument pack, as in variadic85.C.
7928 If there are such parameters, we need to leave argument packs intact
7929 so the arguments are assigned properly. This can happen when dealing
7930 with a nested class inside a partial specialization of a class
7931 template, as in variadic92.C, or when deducing a template parameter pack
7932 from a sub-declarator, as in variadic114.C. */
7933 if (!post_variadic_parms)
7934 inner_args = expand_template_argument_pack (inner_args);
7936 /* Count any pack expansion args. */
7937 variadic_args_p = pack_expansion_args_count (inner_args);
7939 nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
7940 if ((nargs - variadic_args_p > nparms && !variadic_p)
7941 || (nargs < nparms - variadic_p
7942 && require_all_args
7943 && !variadic_args_p
7944 && (!use_default_args
7945 || (TREE_VEC_ELT (parms, nargs) != error_mark_node
7946 && !TREE_PURPOSE (TREE_VEC_ELT (parms, nargs))))))
7948 if (complain & tf_error)
7950 if (variadic_p || default_p)
7952 nparms -= variadic_p + default_p;
7953 error ("wrong number of template arguments "
7954 "(%d, should be at least %d)", nargs, nparms);
7956 else
7957 error ("wrong number of template arguments "
7958 "(%d, should be %d)", nargs, nparms);
7960 if (in_decl)
7961 inform (DECL_SOURCE_LOCATION (in_decl),
7962 "provided for %qD", in_decl);
7965 return error_mark_node;
7967 /* We can't pass a pack expansion to a non-pack parameter of an alias
7968 template (DR 1430). */
7969 else if (in_decl
7970 && (DECL_ALIAS_TEMPLATE_P (in_decl)
7971 || concept_template_p (in_decl))
7972 && variadic_args_p
7973 && nargs - variadic_args_p < nparms - variadic_p)
7975 if (complain & tf_error)
7977 for (int i = 0; i < TREE_VEC_LENGTH (inner_args); ++i)
7979 tree arg = TREE_VEC_ELT (inner_args, i);
7980 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
7982 if (PACK_EXPANSION_P (arg)
7983 && !template_parameter_pack_p (parm))
7985 if (DECL_ALIAS_TEMPLATE_P (in_decl))
7986 error_at (location_of (arg),
7987 "pack expansion argument for non-pack parameter "
7988 "%qD of alias template %qD", parm, in_decl);
7989 else
7990 error_at (location_of (arg),
7991 "pack expansion argument for non-pack parameter "
7992 "%qD of concept %qD", parm, in_decl);
7993 inform (DECL_SOURCE_LOCATION (parm), "declared here");
7994 goto found;
7997 gcc_unreachable ();
7998 found:;
8000 return error_mark_node;
8003 /* We need to evaluate the template arguments, even though this
8004 template-id may be nested within a "sizeof". */
8005 saved_unevaluated_operand = cp_unevaluated_operand;
8006 cp_unevaluated_operand = 0;
8007 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
8008 c_inhibit_evaluation_warnings = 0;
8009 new_inner_args = make_tree_vec (nparms);
8010 new_args = add_outermost_template_args (args, new_inner_args);
8011 int pack_adjust = 0;
8012 for (parm_idx = 0, arg_idx = 0; parm_idx < nparms; parm_idx++, arg_idx++)
8014 tree arg;
8015 tree parm;
8017 /* Get the Ith template parameter. */
8018 parm = TREE_VEC_ELT (parms, parm_idx);
8020 if (parm == error_mark_node)
8022 TREE_VEC_ELT (new_inner_args, arg_idx) = error_mark_node;
8023 continue;
8026 /* Calculate the next argument. */
8027 if (arg_idx < nargs)
8028 arg = TREE_VEC_ELT (inner_args, arg_idx);
8029 else
8030 arg = NULL_TREE;
8032 if (template_parameter_pack_p (TREE_VALUE (parm))
8033 && !(arg && ARGUMENT_PACK_P (arg)))
8035 /* Some arguments will be placed in the
8036 template parameter pack PARM. */
8037 arg = coerce_template_parameter_pack (parms, parm_idx, args,
8038 inner_args, arg_idx,
8039 new_args, &lost,
8040 in_decl, complain);
8042 if (arg == NULL_TREE)
8044 /* We don't know how many args we have yet, just use the
8045 unconverted (and still packed) ones for now. */
8046 new_inner_args = orig_inner_args;
8047 arg_idx = nargs;
8048 break;
8051 TREE_VEC_ELT (new_inner_args, parm_idx) = arg;
8053 /* Store this argument. */
8054 if (arg == error_mark_node)
8056 lost++;
8057 /* We are done with all of the arguments. */
8058 arg_idx = nargs;
8060 else
8062 pack_adjust = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg)) - 1;
8063 arg_idx += pack_adjust;
8066 continue;
8068 else if (arg)
8070 if (PACK_EXPANSION_P (arg))
8072 /* "If every valid specialization of a variadic template
8073 requires an empty template parameter pack, the template is
8074 ill-formed, no diagnostic required." So check that the
8075 pattern works with this parameter. */
8076 tree pattern = PACK_EXPANSION_PATTERN (arg);
8077 tree conv = convert_template_argument (TREE_VALUE (parm),
8078 pattern, new_args,
8079 complain, parm_idx,
8080 in_decl);
8081 if (conv == error_mark_node)
8083 if (complain & tf_error)
8084 inform (input_location, "so any instantiation with a "
8085 "non-empty parameter pack would be ill-formed");
8086 ++lost;
8088 else if (TYPE_P (conv) && !TYPE_P (pattern))
8089 /* Recover from missing typename. */
8090 TREE_VEC_ELT (inner_args, arg_idx)
8091 = make_pack_expansion (conv);
8093 /* We don't know how many args we have yet, just
8094 use the unconverted ones for now. */
8095 new_inner_args = inner_args;
8096 arg_idx = nargs;
8097 break;
8100 else if (require_all_args)
8102 /* There must be a default arg in this case. */
8103 arg = tsubst_template_arg (TREE_PURPOSE (parm), new_args,
8104 complain, in_decl);
8105 /* The position of the first default template argument,
8106 is also the number of non-defaulted arguments in NEW_INNER_ARGS.
8107 Record that. */
8108 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
8109 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args,
8110 arg_idx - pack_adjust);
8112 else
8113 break;
8115 if (arg == error_mark_node)
8117 if (complain & tf_error)
8118 error ("template argument %d is invalid", arg_idx + 1);
8120 else if (!arg)
8121 /* This only occurs if there was an error in the template
8122 parameter list itself (which we would already have
8123 reported) that we are trying to recover from, e.g., a class
8124 template with a parameter list such as
8125 template<typename..., typename>. */
8126 ++lost;
8127 else
8128 arg = convert_template_argument (TREE_VALUE (parm),
8129 arg, new_args, complain,
8130 parm_idx, in_decl);
8132 if (arg == error_mark_node)
8133 lost++;
8134 TREE_VEC_ELT (new_inner_args, arg_idx - pack_adjust) = arg;
8136 cp_unevaluated_operand = saved_unevaluated_operand;
8137 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
8139 if (variadic_p && arg_idx < nargs)
8141 if (complain & tf_error)
8143 error ("wrong number of template arguments "
8144 "(%d, should be %d)", nargs, arg_idx);
8145 if (in_decl)
8146 error ("provided for %q+D", in_decl);
8148 return error_mark_node;
8151 if (lost)
8152 return error_mark_node;
8154 if (CHECKING_P && !NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
8155 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args,
8156 TREE_VEC_LENGTH (new_inner_args));
8158 return new_inner_args;
8161 /* Convert all template arguments to their appropriate types, and
8162 return a vector containing the innermost resulting template
8163 arguments. If any error occurs, return error_mark_node. Error and
8164 warning messages are not issued.
8166 Note that no function argument deduction is performed, and default
8167 arguments are used to fill in unspecified arguments. */
8168 tree
8169 coerce_template_parms (tree parms, tree args, tree in_decl)
8171 return coerce_template_parms (parms, args, in_decl, tf_none, true, true);
8174 /* Convert all template arguments to their appropriate type, and
8175 instantiate default arguments as needed. This returns a vector
8176 containing the innermost resulting template arguments, or
8177 error_mark_node if unsuccessful. */
8178 tree
8179 coerce_template_parms (tree parms, tree args, tree in_decl,
8180 tsubst_flags_t complain)
8182 return coerce_template_parms (parms, args, in_decl, complain, true, true);
8185 /* Like coerce_template_parms. If PARMS represents all template
8186 parameters levels, this function returns a vector of vectors
8187 representing all the resulting argument levels. Note that in this
8188 case, only the innermost arguments are coerced because the
8189 outermost ones are supposed to have been coerced already.
8191 Otherwise, if PARMS represents only (the innermost) vector of
8192 parameters, this function returns a vector containing just the
8193 innermost resulting arguments. */
8195 static tree
8196 coerce_innermost_template_parms (tree parms,
8197 tree args,
8198 tree in_decl,
8199 tsubst_flags_t complain,
8200 bool require_all_args,
8201 bool use_default_args)
8203 int parms_depth = TMPL_PARMS_DEPTH (parms);
8204 int args_depth = TMPL_ARGS_DEPTH (args);
8205 tree coerced_args;
8207 if (parms_depth > 1)
8209 coerced_args = make_tree_vec (parms_depth);
8210 tree level;
8211 int cur_depth;
8213 for (level = parms, cur_depth = parms_depth;
8214 parms_depth > 0 && level != NULL_TREE;
8215 level = TREE_CHAIN (level), --cur_depth)
8217 tree l;
8218 if (cur_depth == args_depth)
8219 l = coerce_template_parms (TREE_VALUE (level),
8220 args, in_decl, complain,
8221 require_all_args,
8222 use_default_args);
8223 else
8224 l = TMPL_ARGS_LEVEL (args, cur_depth);
8226 if (l == error_mark_node)
8227 return error_mark_node;
8229 SET_TMPL_ARGS_LEVEL (coerced_args, cur_depth, l);
8232 else
8233 coerced_args = coerce_template_parms (INNERMOST_TEMPLATE_PARMS (parms),
8234 args, in_decl, complain,
8235 require_all_args,
8236 use_default_args);
8237 return coerced_args;
8240 /* Returns 1 if template args OT and NT are equivalent. */
8243 template_args_equal (tree ot, tree nt, bool partial_order /* = false */)
8245 if (nt == ot)
8246 return 1;
8247 if (nt == NULL_TREE || ot == NULL_TREE)
8248 return false;
8249 if (nt == any_targ_node || ot == any_targ_node)
8250 return true;
8252 if (TREE_CODE (nt) == TREE_VEC)
8253 /* For member templates */
8254 return TREE_CODE (ot) == TREE_VEC && comp_template_args (ot, nt);
8255 else if (PACK_EXPANSION_P (ot))
8256 return (PACK_EXPANSION_P (nt)
8257 && template_args_equal (PACK_EXPANSION_PATTERN (ot),
8258 PACK_EXPANSION_PATTERN (nt))
8259 && template_args_equal (PACK_EXPANSION_EXTRA_ARGS (ot),
8260 PACK_EXPANSION_EXTRA_ARGS (nt)));
8261 else if (ARGUMENT_PACK_P (ot))
8263 int i, len;
8264 tree opack, npack;
8266 if (!ARGUMENT_PACK_P (nt))
8267 return 0;
8269 opack = ARGUMENT_PACK_ARGS (ot);
8270 npack = ARGUMENT_PACK_ARGS (nt);
8271 len = TREE_VEC_LENGTH (opack);
8272 if (TREE_VEC_LENGTH (npack) != len)
8273 return 0;
8274 for (i = 0; i < len; ++i)
8275 if (!template_args_equal (TREE_VEC_ELT (opack, i),
8276 TREE_VEC_ELT (npack, i)))
8277 return 0;
8278 return 1;
8280 else if (ot && TREE_CODE (ot) == ARGUMENT_PACK_SELECT)
8281 gcc_unreachable ();
8282 else if (TYPE_P (nt))
8284 if (!TYPE_P (ot))
8285 return false;
8286 /* Don't treat an alias template specialization with dependent
8287 arguments as equivalent to its underlying type when used as a
8288 template argument; we need them to be distinct so that we
8289 substitute into the specialization arguments at instantiation
8290 time. And aliases can't be equivalent without being ==, so
8291 we don't need to look any deeper.
8293 During partial ordering, however, we need to treat them normally so
8294 that we can order uses of the same alias with different
8295 cv-qualification (79960). */
8296 if (!partial_order
8297 && (TYPE_ALIAS_P (nt) || TYPE_ALIAS_P (ot)))
8298 return false;
8299 else
8300 return same_type_p (ot, nt);
8302 else if (TREE_CODE (ot) == TREE_VEC || TYPE_P (ot))
8303 return 0;
8304 else
8306 /* Try to treat a template non-type argument that has been converted
8307 to the parameter type as equivalent to one that hasn't yet. */
8308 for (enum tree_code code1 = TREE_CODE (ot);
8309 CONVERT_EXPR_CODE_P (code1)
8310 || code1 == NON_LVALUE_EXPR;
8311 code1 = TREE_CODE (ot))
8312 ot = TREE_OPERAND (ot, 0);
8313 for (enum tree_code code2 = TREE_CODE (nt);
8314 CONVERT_EXPR_CODE_P (code2)
8315 || code2 == NON_LVALUE_EXPR;
8316 code2 = TREE_CODE (nt))
8317 nt = TREE_OPERAND (nt, 0);
8319 return cp_tree_equal (ot, nt);
8323 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets of
8324 template arguments. Returns 0 otherwise, and updates OLDARG_PTR and
8325 NEWARG_PTR with the offending arguments if they are non-NULL. */
8328 comp_template_args (tree oldargs, tree newargs,
8329 tree *oldarg_ptr, tree *newarg_ptr,
8330 bool partial_order)
8332 int i;
8334 if (oldargs == newargs)
8335 return 1;
8337 if (!oldargs || !newargs)
8338 return 0;
8340 if (TREE_VEC_LENGTH (oldargs) != TREE_VEC_LENGTH (newargs))
8341 return 0;
8343 for (i = 0; i < TREE_VEC_LENGTH (oldargs); ++i)
8345 tree nt = TREE_VEC_ELT (newargs, i);
8346 tree ot = TREE_VEC_ELT (oldargs, i);
8348 if (! template_args_equal (ot, nt, partial_order))
8350 if (oldarg_ptr != NULL)
8351 *oldarg_ptr = ot;
8352 if (newarg_ptr != NULL)
8353 *newarg_ptr = nt;
8354 return 0;
8357 return 1;
8360 inline bool
8361 comp_template_args_porder (tree oargs, tree nargs)
8363 return comp_template_args (oargs, nargs, NULL, NULL, true);
8366 static void
8367 add_pending_template (tree d)
8369 tree ti = (TYPE_P (d)
8370 ? CLASSTYPE_TEMPLATE_INFO (d)
8371 : DECL_TEMPLATE_INFO (d));
8372 struct pending_template *pt;
8373 int level;
8375 if (TI_PENDING_TEMPLATE_FLAG (ti))
8376 return;
8378 /* We are called both from instantiate_decl, where we've already had a
8379 tinst_level pushed, and instantiate_template, where we haven't.
8380 Compensate. */
8381 level = !current_tinst_level || current_tinst_level->decl != d;
8383 if (level)
8384 push_tinst_level (d);
8386 pt = ggc_alloc<pending_template> ();
8387 pt->next = NULL;
8388 pt->tinst = current_tinst_level;
8389 if (last_pending_template)
8390 last_pending_template->next = pt;
8391 else
8392 pending_templates = pt;
8394 last_pending_template = pt;
8396 TI_PENDING_TEMPLATE_FLAG (ti) = 1;
8398 if (level)
8399 pop_tinst_level ();
8403 /* Return a TEMPLATE_ID_EXPR corresponding to the indicated FNS and
8404 ARGLIST. Valid choices for FNS are given in the cp-tree.def
8405 documentation for TEMPLATE_ID_EXPR. */
8407 tree
8408 lookup_template_function (tree fns, tree arglist)
8410 tree type;
8412 if (fns == error_mark_node || arglist == error_mark_node)
8413 return error_mark_node;
8415 gcc_assert (!arglist || TREE_CODE (arglist) == TREE_VEC);
8417 if (!is_overloaded_fn (fns) && !identifier_p (fns))
8419 error ("%q#D is not a function template", fns);
8420 return error_mark_node;
8423 if (BASELINK_P (fns))
8425 BASELINK_FUNCTIONS (fns) = build2 (TEMPLATE_ID_EXPR,
8426 unknown_type_node,
8427 BASELINK_FUNCTIONS (fns),
8428 arglist);
8429 return fns;
8432 type = TREE_TYPE (fns);
8433 if (TREE_CODE (fns) == OVERLOAD || !type)
8434 type = unknown_type_node;
8436 return build2 (TEMPLATE_ID_EXPR, type, fns, arglist);
8439 /* Within the scope of a template class S<T>, the name S gets bound
8440 (in build_self_reference) to a TYPE_DECL for the class, not a
8441 TEMPLATE_DECL. If DECL is a TYPE_DECL for current_class_type,
8442 or one of its enclosing classes, and that type is a template,
8443 return the associated TEMPLATE_DECL. Otherwise, the original
8444 DECL is returned.
8446 Also handle the case when DECL is a TREE_LIST of ambiguous
8447 injected-class-names from different bases. */
8449 tree
8450 maybe_get_template_decl_from_type_decl (tree decl)
8452 if (decl == NULL_TREE)
8453 return decl;
8455 /* DR 176: A lookup that finds an injected-class-name (10.2
8456 [class.member.lookup]) can result in an ambiguity in certain cases
8457 (for example, if it is found in more than one base class). If all of
8458 the injected-class-names that are found refer to specializations of
8459 the same class template, and if the name is followed by a
8460 template-argument-list, the reference refers to the class template
8461 itself and not a specialization thereof, and is not ambiguous. */
8462 if (TREE_CODE (decl) == TREE_LIST)
8464 tree t, tmpl = NULL_TREE;
8465 for (t = decl; t; t = TREE_CHAIN (t))
8467 tree elt = maybe_get_template_decl_from_type_decl (TREE_VALUE (t));
8468 if (!tmpl)
8469 tmpl = elt;
8470 else if (tmpl != elt)
8471 break;
8473 if (tmpl && t == NULL_TREE)
8474 return tmpl;
8475 else
8476 return decl;
8479 return (decl != NULL_TREE
8480 && DECL_SELF_REFERENCE_P (decl)
8481 && CLASSTYPE_TEMPLATE_INFO (TREE_TYPE (decl)))
8482 ? CLASSTYPE_TI_TEMPLATE (TREE_TYPE (decl)) : decl;
8485 /* Given an IDENTIFIER_NODE (or type TEMPLATE_DECL) and a chain of
8486 parameters, find the desired type.
8488 D1 is the PTYPENAME terminal, and ARGLIST is the list of arguments.
8490 IN_DECL, if non-NULL, is the template declaration we are trying to
8491 instantiate.
8493 If ENTERING_SCOPE is nonzero, we are about to enter the scope of
8494 the class we are looking up.
8496 Issue error and warning messages under control of COMPLAIN.
8498 If the template class is really a local class in a template
8499 function, then the FUNCTION_CONTEXT is the function in which it is
8500 being instantiated.
8502 ??? Note that this function is currently called *twice* for each
8503 template-id: the first time from the parser, while creating the
8504 incomplete type (finish_template_type), and the second type during the
8505 real instantiation (instantiate_template_class). This is surely something
8506 that we want to avoid. It also causes some problems with argument
8507 coercion (see convert_nontype_argument for more information on this). */
8509 static tree
8510 lookup_template_class_1 (tree d1, tree arglist, tree in_decl, tree context,
8511 int entering_scope, tsubst_flags_t complain)
8513 tree templ = NULL_TREE, parmlist;
8514 tree t;
8515 spec_entry **slot;
8516 spec_entry *entry;
8517 spec_entry elt;
8518 hashval_t hash;
8520 if (identifier_p (d1))
8522 tree value = innermost_non_namespace_value (d1);
8523 if (value && DECL_TEMPLATE_TEMPLATE_PARM_P (value))
8524 templ = value;
8525 else
8527 if (context)
8528 push_decl_namespace (context);
8529 templ = lookup_name (d1);
8530 templ = maybe_get_template_decl_from_type_decl (templ);
8531 if (context)
8532 pop_decl_namespace ();
8534 if (templ)
8535 context = DECL_CONTEXT (templ);
8537 else if (TREE_CODE (d1) == TYPE_DECL && MAYBE_CLASS_TYPE_P (TREE_TYPE (d1)))
8539 tree type = TREE_TYPE (d1);
8541 /* If we are declaring a constructor, say A<T>::A<T>, we will get
8542 an implicit typename for the second A. Deal with it. */
8543 if (TREE_CODE (type) == TYPENAME_TYPE && TREE_TYPE (type))
8544 type = TREE_TYPE (type);
8546 if (CLASSTYPE_TEMPLATE_INFO (type))
8548 templ = CLASSTYPE_TI_TEMPLATE (type);
8549 d1 = DECL_NAME (templ);
8552 else if (TREE_CODE (d1) == ENUMERAL_TYPE
8553 || (TYPE_P (d1) && MAYBE_CLASS_TYPE_P (d1)))
8555 templ = TYPE_TI_TEMPLATE (d1);
8556 d1 = DECL_NAME (templ);
8558 else if (DECL_TYPE_TEMPLATE_P (d1))
8560 templ = d1;
8561 d1 = DECL_NAME (templ);
8562 context = DECL_CONTEXT (templ);
8564 else if (DECL_TEMPLATE_TEMPLATE_PARM_P (d1))
8566 templ = d1;
8567 d1 = DECL_NAME (templ);
8570 /* Issue an error message if we didn't find a template. */
8571 if (! templ)
8573 if (complain & tf_error)
8574 error ("%qT is not a template", d1);
8575 return error_mark_node;
8578 if (TREE_CODE (templ) != TEMPLATE_DECL
8579 /* Make sure it's a user visible template, if it was named by
8580 the user. */
8581 || ((complain & tf_user) && !DECL_TEMPLATE_PARM_P (templ)
8582 && !PRIMARY_TEMPLATE_P (templ)))
8584 if (complain & tf_error)
8586 error ("non-template type %qT used as a template", d1);
8587 if (in_decl)
8588 error ("for template declaration %q+D", in_decl);
8590 return error_mark_node;
8593 complain &= ~tf_user;
8595 /* An alias that just changes the name of a template is equivalent to the
8596 other template, so if any of the arguments are pack expansions, strip
8597 the alias to avoid problems with a pack expansion passed to a non-pack
8598 alias template parameter (DR 1430). */
8599 if (pack_expansion_args_count (INNERMOST_TEMPLATE_ARGS (arglist)))
8600 templ = get_underlying_template (templ);
8602 if (DECL_TEMPLATE_TEMPLATE_PARM_P (templ))
8604 tree parm;
8605 tree arglist2 = coerce_template_args_for_ttp (templ, arglist, complain);
8606 if (arglist2 == error_mark_node
8607 || (!uses_template_parms (arglist2)
8608 && check_instantiated_args (templ, arglist2, complain)))
8609 return error_mark_node;
8611 parm = bind_template_template_parm (TREE_TYPE (templ), arglist2);
8612 return parm;
8614 else
8616 tree template_type = TREE_TYPE (templ);
8617 tree gen_tmpl;
8618 tree type_decl;
8619 tree found = NULL_TREE;
8620 int arg_depth;
8621 int parm_depth;
8622 int is_dependent_type;
8623 int use_partial_inst_tmpl = false;
8625 if (template_type == error_mark_node)
8626 /* An error occurred while building the template TEMPL, and a
8627 diagnostic has most certainly been emitted for that
8628 already. Let's propagate that error. */
8629 return error_mark_node;
8631 gen_tmpl = most_general_template (templ);
8632 parmlist = DECL_TEMPLATE_PARMS (gen_tmpl);
8633 parm_depth = TMPL_PARMS_DEPTH (parmlist);
8634 arg_depth = TMPL_ARGS_DEPTH (arglist);
8636 if (arg_depth == 1 && parm_depth > 1)
8638 /* We've been given an incomplete set of template arguments.
8639 For example, given:
8641 template <class T> struct S1 {
8642 template <class U> struct S2 {};
8643 template <class U> struct S2<U*> {};
8646 we will be called with an ARGLIST of `U*', but the
8647 TEMPLATE will be `template <class T> template
8648 <class U> struct S1<T>::S2'. We must fill in the missing
8649 arguments. */
8650 tree ti = TYPE_TEMPLATE_INFO_MAYBE_ALIAS (TREE_TYPE (templ));
8651 arglist = add_outermost_template_args (TI_ARGS (ti), arglist);
8652 arg_depth = TMPL_ARGS_DEPTH (arglist);
8655 /* Now we should have enough arguments. */
8656 gcc_assert (parm_depth == arg_depth);
8658 /* From here on, we're only interested in the most general
8659 template. */
8661 /* Calculate the BOUND_ARGS. These will be the args that are
8662 actually tsubst'd into the definition to create the
8663 instantiation. */
8664 arglist = coerce_innermost_template_parms (parmlist, arglist, gen_tmpl,
8665 complain,
8666 /*require_all_args=*/true,
8667 /*use_default_args=*/true);
8669 if (arglist == error_mark_node)
8670 /* We were unable to bind the arguments. */
8671 return error_mark_node;
8673 /* In the scope of a template class, explicit references to the
8674 template class refer to the type of the template, not any
8675 instantiation of it. For example, in:
8677 template <class T> class C { void f(C<T>); }
8679 the `C<T>' is just the same as `C'. Outside of the
8680 class, however, such a reference is an instantiation. */
8681 if (entering_scope
8682 || !PRIMARY_TEMPLATE_P (gen_tmpl)
8683 || currently_open_class (template_type))
8685 tree tinfo = TYPE_TEMPLATE_INFO (template_type);
8687 if (tinfo && comp_template_args (TI_ARGS (tinfo), arglist))
8688 return template_type;
8691 /* If we already have this specialization, return it. */
8692 elt.tmpl = gen_tmpl;
8693 elt.args = arglist;
8694 elt.spec = NULL_TREE;
8695 hash = spec_hasher::hash (&elt);
8696 entry = type_specializations->find_with_hash (&elt, hash);
8698 if (entry)
8699 return entry->spec;
8701 /* If the the template's constraints are not satisfied,
8702 then we cannot form a valid type.
8704 Note that the check is deferred until after the hash
8705 lookup. This prevents redundant checks on previously
8706 instantiated specializations. */
8707 if (flag_concepts && !constraints_satisfied_p (gen_tmpl, arglist))
8709 if (complain & tf_error)
8711 error ("template constraint failure");
8712 diagnose_constraints (input_location, gen_tmpl, arglist);
8714 return error_mark_node;
8717 is_dependent_type = uses_template_parms (arglist);
8719 /* If the deduced arguments are invalid, then the binding
8720 failed. */
8721 if (!is_dependent_type
8722 && check_instantiated_args (gen_tmpl,
8723 INNERMOST_TEMPLATE_ARGS (arglist),
8724 complain))
8725 return error_mark_node;
8727 if (!is_dependent_type
8728 && !PRIMARY_TEMPLATE_P (gen_tmpl)
8729 && !LAMBDA_TYPE_P (TREE_TYPE (gen_tmpl))
8730 && TREE_CODE (CP_DECL_CONTEXT (gen_tmpl)) == NAMESPACE_DECL)
8732 found = xref_tag_from_type (TREE_TYPE (gen_tmpl),
8733 DECL_NAME (gen_tmpl),
8734 /*tag_scope=*/ts_global);
8735 return found;
8738 context = tsubst (DECL_CONTEXT (gen_tmpl), arglist,
8739 complain, in_decl);
8740 if (context == error_mark_node)
8741 return error_mark_node;
8743 if (!context)
8744 context = global_namespace;
8746 /* Create the type. */
8747 if (DECL_ALIAS_TEMPLATE_P (gen_tmpl))
8749 /* The user referred to a specialization of an alias
8750 template represented by GEN_TMPL.
8752 [temp.alias]/2 says:
8754 When a template-id refers to the specialization of an
8755 alias template, it is equivalent to the associated
8756 type obtained by substitution of its
8757 template-arguments for the template-parameters in the
8758 type-id of the alias template. */
8760 t = tsubst (TREE_TYPE (gen_tmpl), arglist, complain, in_decl);
8761 /* Note that the call above (by indirectly calling
8762 register_specialization in tsubst_decl) registers the
8763 TYPE_DECL representing the specialization of the alias
8764 template. So next time someone substitutes ARGLIST for
8765 the template parms into the alias template (GEN_TMPL),
8766 she'll get that TYPE_DECL back. */
8768 if (t == error_mark_node)
8769 return t;
8771 else if (TREE_CODE (template_type) == ENUMERAL_TYPE)
8773 if (!is_dependent_type)
8775 set_current_access_from_decl (TYPE_NAME (template_type));
8776 t = start_enum (TYPE_IDENTIFIER (template_type), NULL_TREE,
8777 tsubst (ENUM_UNDERLYING_TYPE (template_type),
8778 arglist, complain, in_decl),
8779 tsubst_attributes (TYPE_ATTRIBUTES (template_type),
8780 arglist, complain, in_decl),
8781 SCOPED_ENUM_P (template_type), NULL);
8783 if (t == error_mark_node)
8784 return t;
8786 else
8788 /* We don't want to call start_enum for this type, since
8789 the values for the enumeration constants may involve
8790 template parameters. And, no one should be interested
8791 in the enumeration constants for such a type. */
8792 t = cxx_make_type (ENUMERAL_TYPE);
8793 SET_SCOPED_ENUM_P (t, SCOPED_ENUM_P (template_type));
8795 SET_OPAQUE_ENUM_P (t, OPAQUE_ENUM_P (template_type));
8796 ENUM_FIXED_UNDERLYING_TYPE_P (t)
8797 = ENUM_FIXED_UNDERLYING_TYPE_P (template_type);
8799 else if (CLASS_TYPE_P (template_type))
8801 t = make_class_type (TREE_CODE (template_type));
8802 CLASSTYPE_DECLARED_CLASS (t)
8803 = CLASSTYPE_DECLARED_CLASS (template_type);
8804 SET_CLASSTYPE_IMPLICIT_INSTANTIATION (t);
8806 /* A local class. Make sure the decl gets registered properly. */
8807 if (context == current_function_decl)
8808 pushtag (DECL_NAME (gen_tmpl), t, /*tag_scope=*/ts_current);
8810 if (comp_template_args (CLASSTYPE_TI_ARGS (template_type), arglist))
8811 /* This instantiation is another name for the primary
8812 template type. Set the TYPE_CANONICAL field
8813 appropriately. */
8814 TYPE_CANONICAL (t) = template_type;
8815 else if (any_template_arguments_need_structural_equality_p (arglist))
8816 /* Some of the template arguments require structural
8817 equality testing, so this template class requires
8818 structural equality testing. */
8819 SET_TYPE_STRUCTURAL_EQUALITY (t);
8821 else
8822 gcc_unreachable ();
8824 /* If we called start_enum or pushtag above, this information
8825 will already be set up. */
8826 if (!TYPE_NAME (t))
8828 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
8830 type_decl = create_implicit_typedef (DECL_NAME (gen_tmpl), t);
8831 DECL_CONTEXT (type_decl) = TYPE_CONTEXT (t);
8832 DECL_SOURCE_LOCATION (type_decl)
8833 = DECL_SOURCE_LOCATION (TYPE_STUB_DECL (template_type));
8835 else
8836 type_decl = TYPE_NAME (t);
8838 if (CLASS_TYPE_P (template_type))
8840 TREE_PRIVATE (type_decl)
8841 = TREE_PRIVATE (TYPE_MAIN_DECL (template_type));
8842 TREE_PROTECTED (type_decl)
8843 = TREE_PROTECTED (TYPE_MAIN_DECL (template_type));
8844 if (CLASSTYPE_VISIBILITY_SPECIFIED (template_type))
8846 DECL_VISIBILITY_SPECIFIED (type_decl) = 1;
8847 DECL_VISIBILITY (type_decl) = CLASSTYPE_VISIBILITY (template_type);
8851 if (OVERLOAD_TYPE_P (t)
8852 && !DECL_ALIAS_TEMPLATE_P (gen_tmpl))
8854 static const char *tags[] = {"abi_tag", "may_alias"};
8856 for (unsigned ix = 0; ix != 2; ix++)
8858 tree attributes
8859 = lookup_attribute (tags[ix], TYPE_ATTRIBUTES (template_type));
8861 if (attributes)
8862 TYPE_ATTRIBUTES (t)
8863 = tree_cons (TREE_PURPOSE (attributes),
8864 TREE_VALUE (attributes),
8865 TYPE_ATTRIBUTES (t));
8869 /* Let's consider the explicit specialization of a member
8870 of a class template specialization that is implicitly instantiated,
8871 e.g.:
8872 template<class T>
8873 struct S
8875 template<class U> struct M {}; //#0
8878 template<>
8879 template<>
8880 struct S<int>::M<char> //#1
8882 int i;
8884 [temp.expl.spec]/4 says this is valid.
8886 In this case, when we write:
8887 S<int>::M<char> m;
8889 M is instantiated from the CLASSTYPE_TI_TEMPLATE of #1, not from
8890 the one of #0.
8892 When we encounter #1, we want to store the partial instantiation
8893 of M (template<class T> S<int>::M<T>) in its CLASSTYPE_TI_TEMPLATE.
8895 For all cases other than this "explicit specialization of member of a
8896 class template", we just want to store the most general template into
8897 the CLASSTYPE_TI_TEMPLATE of M.
8899 This case of "explicit specialization of member of a class template"
8900 only happens when:
8901 1/ the enclosing class is an instantiation of, and therefore not
8902 the same as, the context of the most general template, and
8903 2/ we aren't looking at the partial instantiation itself, i.e.
8904 the innermost arguments are not the same as the innermost parms of
8905 the most general template.
8907 So it's only when 1/ and 2/ happens that we want to use the partial
8908 instantiation of the member template in lieu of its most general
8909 template. */
8911 if (PRIMARY_TEMPLATE_P (gen_tmpl)
8912 && TMPL_ARGS_HAVE_MULTIPLE_LEVELS (arglist)
8913 /* the enclosing class must be an instantiation... */
8914 && CLASS_TYPE_P (context)
8915 && !same_type_p (context, DECL_CONTEXT (gen_tmpl)))
8917 TREE_VEC_LENGTH (arglist)--;
8918 ++processing_template_decl;
8919 tree tinfo = TYPE_TEMPLATE_INFO_MAYBE_ALIAS (TREE_TYPE (gen_tmpl));
8920 tree partial_inst_args =
8921 tsubst (INNERMOST_TEMPLATE_ARGS (TI_ARGS (tinfo)),
8922 arglist, complain, NULL_TREE);
8923 --processing_template_decl;
8924 TREE_VEC_LENGTH (arglist)++;
8925 if (partial_inst_args == error_mark_node)
8926 return error_mark_node;
8927 use_partial_inst_tmpl =
8928 /*...and we must not be looking at the partial instantiation
8929 itself. */
8930 !comp_template_args (INNERMOST_TEMPLATE_ARGS (arglist),
8931 partial_inst_args);
8934 if (!use_partial_inst_tmpl)
8935 /* This case is easy; there are no member templates involved. */
8936 found = gen_tmpl;
8937 else
8939 /* This is a full instantiation of a member template. Find
8940 the partial instantiation of which this is an instance. */
8942 /* Temporarily reduce by one the number of levels in the ARGLIST
8943 so as to avoid comparing the last set of arguments. */
8944 TREE_VEC_LENGTH (arglist)--;
8945 found = tsubst (gen_tmpl, arglist, complain, NULL_TREE);
8946 TREE_VEC_LENGTH (arglist)++;
8947 /* FOUND is either a proper class type, or an alias
8948 template specialization. In the later case, it's a
8949 TYPE_DECL, resulting from the substituting of arguments
8950 for parameters in the TYPE_DECL of the alias template
8951 done earlier. So be careful while getting the template
8952 of FOUND. */
8953 found = (TREE_CODE (found) == TEMPLATE_DECL
8954 ? found
8955 : (TREE_CODE (found) == TYPE_DECL
8956 ? DECL_TI_TEMPLATE (found)
8957 : CLASSTYPE_TI_TEMPLATE (found)));
8960 // Build template info for the new specialization.
8961 SET_TYPE_TEMPLATE_INFO (t, build_template_info (found, arglist));
8963 elt.spec = t;
8964 slot = type_specializations->find_slot_with_hash (&elt, hash, INSERT);
8965 entry = ggc_alloc<spec_entry> ();
8966 *entry = elt;
8967 *slot = entry;
8969 /* Note this use of the partial instantiation so we can check it
8970 later in maybe_process_partial_specialization. */
8971 DECL_TEMPLATE_INSTANTIATIONS (found)
8972 = tree_cons (arglist, t,
8973 DECL_TEMPLATE_INSTANTIATIONS (found));
8975 if (TREE_CODE (template_type) == ENUMERAL_TYPE && !is_dependent_type
8976 && !DECL_ALIAS_TEMPLATE_P (gen_tmpl))
8977 /* Now that the type has been registered on the instantiations
8978 list, we set up the enumerators. Because the enumeration
8979 constants may involve the enumeration type itself, we make
8980 sure to register the type first, and then create the
8981 constants. That way, doing tsubst_expr for the enumeration
8982 constants won't result in recursive calls here; we'll find
8983 the instantiation and exit above. */
8984 tsubst_enum (template_type, t, arglist);
8986 if (CLASS_TYPE_P (template_type) && is_dependent_type)
8987 /* If the type makes use of template parameters, the
8988 code that generates debugging information will crash. */
8989 DECL_IGNORED_P (TYPE_MAIN_DECL (t)) = 1;
8991 /* Possibly limit visibility based on template args. */
8992 TREE_PUBLIC (type_decl) = 1;
8993 determine_visibility (type_decl);
8995 inherit_targ_abi_tags (t);
8997 return t;
9001 /* Wrapper for lookup_template_class_1. */
9003 tree
9004 lookup_template_class (tree d1, tree arglist, tree in_decl, tree context,
9005 int entering_scope, tsubst_flags_t complain)
9007 tree ret;
9008 timevar_push (TV_TEMPLATE_INST);
9009 ret = lookup_template_class_1 (d1, arglist, in_decl, context,
9010 entering_scope, complain);
9011 timevar_pop (TV_TEMPLATE_INST);
9012 return ret;
9015 /* Return a TEMPLATE_ID_EXPR for the given variable template and ARGLIST. */
9017 tree
9018 lookup_template_variable (tree templ, tree arglist)
9020 /* The type of the expression is NULL_TREE since the template-id could refer
9021 to an explicit or partial specialization. */
9022 tree type = NULL_TREE;
9023 if (flag_concepts && variable_concept_p (templ))
9024 /* Except that concepts are always bool. */
9025 type = boolean_type_node;
9026 return build2 (TEMPLATE_ID_EXPR, type, templ, arglist);
9029 /* Instantiate a variable declaration from a TEMPLATE_ID_EXPR for use. */
9031 tree
9032 finish_template_variable (tree var, tsubst_flags_t complain)
9034 tree templ = TREE_OPERAND (var, 0);
9035 tree arglist = TREE_OPERAND (var, 1);
9037 /* We never want to return a VAR_DECL for a variable concept, since they
9038 aren't instantiated. In a template, leave the TEMPLATE_ID_EXPR alone. */
9039 bool concept_p = flag_concepts && variable_concept_p (templ);
9040 if (concept_p && processing_template_decl)
9041 return var;
9043 tree tmpl_args = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (templ));
9044 arglist = add_outermost_template_args (tmpl_args, arglist);
9046 templ = most_general_template (templ);
9047 tree parms = DECL_TEMPLATE_PARMS (templ);
9048 arglist = coerce_innermost_template_parms (parms, arglist, templ, complain,
9049 /*req_all*/true,
9050 /*use_default*/true);
9052 if (flag_concepts && !constraints_satisfied_p (templ, arglist))
9054 if (complain & tf_error)
9056 error ("use of invalid variable template %qE", var);
9057 diagnose_constraints (location_of (var), templ, arglist);
9059 return error_mark_node;
9062 /* If a template-id refers to a specialization of a variable
9063 concept, then the expression is true if and only if the
9064 concept's constraints are satisfied by the given template
9065 arguments.
9067 NOTE: This is an extension of Concepts Lite TS that
9068 allows constraints to be used in expressions. */
9069 if (concept_p)
9071 tree decl = DECL_TEMPLATE_RESULT (templ);
9072 return evaluate_variable_concept (decl, arglist);
9075 return instantiate_template (templ, arglist, complain);
9078 /* Construct a TEMPLATE_ID_EXPR for the given variable template TEMPL having
9079 TARGS template args, and instantiate it if it's not dependent. */
9081 tree
9082 lookup_and_finish_template_variable (tree templ, tree targs,
9083 tsubst_flags_t complain)
9085 templ = lookup_template_variable (templ, targs);
9086 if (!any_dependent_template_arguments_p (targs))
9088 templ = finish_template_variable (templ, complain);
9089 mark_used (templ);
9092 return convert_from_reference (templ);
9096 struct pair_fn_data
9098 tree_fn_t fn;
9099 tree_fn_t any_fn;
9100 void *data;
9101 /* True when we should also visit template parameters that occur in
9102 non-deduced contexts. */
9103 bool include_nondeduced_p;
9104 hash_set<tree> *visited;
9107 /* Called from for_each_template_parm via walk_tree. */
9109 static tree
9110 for_each_template_parm_r (tree *tp, int *walk_subtrees, void *d)
9112 tree t = *tp;
9113 struct pair_fn_data *pfd = (struct pair_fn_data *) d;
9114 tree_fn_t fn = pfd->fn;
9115 void *data = pfd->data;
9116 tree result = NULL_TREE;
9118 #define WALK_SUBTREE(NODE) \
9119 do \
9121 result = for_each_template_parm (NODE, fn, data, pfd->visited, \
9122 pfd->include_nondeduced_p, \
9123 pfd->any_fn); \
9124 if (result) goto out; \
9126 while (0)
9128 if (pfd->any_fn && (*pfd->any_fn)(t, data))
9129 return t;
9131 if (TYPE_P (t)
9132 && (pfd->include_nondeduced_p || TREE_CODE (t) != TYPENAME_TYPE))
9133 WALK_SUBTREE (TYPE_CONTEXT (t));
9135 switch (TREE_CODE (t))
9137 case RECORD_TYPE:
9138 if (TYPE_PTRMEMFUNC_P (t))
9139 break;
9140 /* Fall through. */
9142 case UNION_TYPE:
9143 case ENUMERAL_TYPE:
9144 if (!TYPE_TEMPLATE_INFO (t))
9145 *walk_subtrees = 0;
9146 else
9147 WALK_SUBTREE (TYPE_TI_ARGS (t));
9148 break;
9150 case INTEGER_TYPE:
9151 WALK_SUBTREE (TYPE_MIN_VALUE (t));
9152 WALK_SUBTREE (TYPE_MAX_VALUE (t));
9153 break;
9155 case METHOD_TYPE:
9156 /* Since we're not going to walk subtrees, we have to do this
9157 explicitly here. */
9158 WALK_SUBTREE (TYPE_METHOD_BASETYPE (t));
9159 /* Fall through. */
9161 case FUNCTION_TYPE:
9162 /* Check the return type. */
9163 WALK_SUBTREE (TREE_TYPE (t));
9165 /* Check the parameter types. Since default arguments are not
9166 instantiated until they are needed, the TYPE_ARG_TYPES may
9167 contain expressions that involve template parameters. But,
9168 no-one should be looking at them yet. And, once they're
9169 instantiated, they don't contain template parameters, so
9170 there's no point in looking at them then, either. */
9172 tree parm;
9174 for (parm = TYPE_ARG_TYPES (t); parm; parm = TREE_CHAIN (parm))
9175 WALK_SUBTREE (TREE_VALUE (parm));
9177 /* Since we've already handled the TYPE_ARG_TYPES, we don't
9178 want walk_tree walking into them itself. */
9179 *walk_subtrees = 0;
9182 if (flag_noexcept_type)
9184 tree spec = TYPE_RAISES_EXCEPTIONS (t);
9185 if (spec)
9186 WALK_SUBTREE (TREE_PURPOSE (spec));
9188 break;
9190 case TYPEOF_TYPE:
9191 case UNDERLYING_TYPE:
9192 if (pfd->include_nondeduced_p
9193 && for_each_template_parm (TYPE_VALUES_RAW (t), fn, data,
9194 pfd->visited,
9195 pfd->include_nondeduced_p,
9196 pfd->any_fn))
9197 return error_mark_node;
9198 break;
9200 case FUNCTION_DECL:
9201 case VAR_DECL:
9202 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
9203 WALK_SUBTREE (DECL_TI_ARGS (t));
9204 /* Fall through. */
9206 case PARM_DECL:
9207 case CONST_DECL:
9208 if (TREE_CODE (t) == CONST_DECL && DECL_TEMPLATE_PARM_P (t))
9209 WALK_SUBTREE (DECL_INITIAL (t));
9210 if (DECL_CONTEXT (t)
9211 && pfd->include_nondeduced_p)
9212 WALK_SUBTREE (DECL_CONTEXT (t));
9213 break;
9215 case BOUND_TEMPLATE_TEMPLATE_PARM:
9216 /* Record template parameters such as `T' inside `TT<T>'. */
9217 WALK_SUBTREE (TYPE_TI_ARGS (t));
9218 /* Fall through. */
9220 case TEMPLATE_TEMPLATE_PARM:
9221 case TEMPLATE_TYPE_PARM:
9222 case TEMPLATE_PARM_INDEX:
9223 if (fn && (*fn)(t, data))
9224 return t;
9225 else if (!fn)
9226 return t;
9227 break;
9229 case TEMPLATE_DECL:
9230 /* A template template parameter is encountered. */
9231 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
9232 WALK_SUBTREE (TREE_TYPE (t));
9234 /* Already substituted template template parameter */
9235 *walk_subtrees = 0;
9236 break;
9238 case TYPENAME_TYPE:
9239 /* A template-id in a TYPENAME_TYPE might be a deduced context after
9240 partial instantiation. */
9241 WALK_SUBTREE (TYPENAME_TYPE_FULLNAME (t));
9242 break;
9244 case CONSTRUCTOR:
9245 if (TREE_TYPE (t) && TYPE_PTRMEMFUNC_P (TREE_TYPE (t))
9246 && pfd->include_nondeduced_p)
9247 WALK_SUBTREE (TYPE_PTRMEMFUNC_FN_TYPE (TREE_TYPE (t)));
9248 break;
9250 case INDIRECT_REF:
9251 case COMPONENT_REF:
9252 /* If there's no type, then this thing must be some expression
9253 involving template parameters. */
9254 if (!fn && !TREE_TYPE (t))
9255 return error_mark_node;
9256 break;
9258 case MODOP_EXPR:
9259 case CAST_EXPR:
9260 case IMPLICIT_CONV_EXPR:
9261 case REINTERPRET_CAST_EXPR:
9262 case CONST_CAST_EXPR:
9263 case STATIC_CAST_EXPR:
9264 case DYNAMIC_CAST_EXPR:
9265 case ARROW_EXPR:
9266 case DOTSTAR_EXPR:
9267 case TYPEID_EXPR:
9268 case PSEUDO_DTOR_EXPR:
9269 if (!fn)
9270 return error_mark_node;
9271 break;
9273 default:
9274 break;
9277 #undef WALK_SUBTREE
9279 /* We didn't find any template parameters we liked. */
9280 out:
9281 return result;
9284 /* For each TEMPLATE_TYPE_PARM, TEMPLATE_TEMPLATE_PARM,
9285 BOUND_TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX in T,
9286 call FN with the parameter and the DATA.
9287 If FN returns nonzero, the iteration is terminated, and
9288 for_each_template_parm returns 1. Otherwise, the iteration
9289 continues. If FN never returns a nonzero value, the value
9290 returned by for_each_template_parm is 0. If FN is NULL, it is
9291 considered to be the function which always returns 1.
9293 If INCLUDE_NONDEDUCED_P, then this routine will also visit template
9294 parameters that occur in non-deduced contexts. When false, only
9295 visits those template parameters that can be deduced. */
9297 static tree
9298 for_each_template_parm (tree t, tree_fn_t fn, void* data,
9299 hash_set<tree> *visited,
9300 bool include_nondeduced_p,
9301 tree_fn_t any_fn)
9303 struct pair_fn_data pfd;
9304 tree result;
9306 /* Set up. */
9307 pfd.fn = fn;
9308 pfd.any_fn = any_fn;
9309 pfd.data = data;
9310 pfd.include_nondeduced_p = include_nondeduced_p;
9312 /* Walk the tree. (Conceptually, we would like to walk without
9313 duplicates, but for_each_template_parm_r recursively calls
9314 for_each_template_parm, so we would need to reorganize a fair
9315 bit to use walk_tree_without_duplicates, so we keep our own
9316 visited list.) */
9317 if (visited)
9318 pfd.visited = visited;
9319 else
9320 pfd.visited = new hash_set<tree>;
9321 result = cp_walk_tree (&t,
9322 for_each_template_parm_r,
9323 &pfd,
9324 pfd.visited);
9326 /* Clean up. */
9327 if (!visited)
9329 delete pfd.visited;
9330 pfd.visited = 0;
9333 return result;
9336 /* Returns true if T depends on any template parameter. */
9339 uses_template_parms (tree t)
9341 if (t == NULL_TREE)
9342 return false;
9344 bool dependent_p;
9345 int saved_processing_template_decl;
9347 saved_processing_template_decl = processing_template_decl;
9348 if (!saved_processing_template_decl)
9349 processing_template_decl = 1;
9350 if (TYPE_P (t))
9351 dependent_p = dependent_type_p (t);
9352 else if (TREE_CODE (t) == TREE_VEC)
9353 dependent_p = any_dependent_template_arguments_p (t);
9354 else if (TREE_CODE (t) == TREE_LIST)
9355 dependent_p = (uses_template_parms (TREE_VALUE (t))
9356 || uses_template_parms (TREE_CHAIN (t)));
9357 else if (TREE_CODE (t) == TYPE_DECL)
9358 dependent_p = dependent_type_p (TREE_TYPE (t));
9359 else if (DECL_P (t)
9360 || EXPR_P (t)
9361 || TREE_CODE (t) == TEMPLATE_PARM_INDEX
9362 || TREE_CODE (t) == OVERLOAD
9363 || BASELINK_P (t)
9364 || identifier_p (t)
9365 || TREE_CODE (t) == TRAIT_EXPR
9366 || TREE_CODE (t) == CONSTRUCTOR
9367 || CONSTANT_CLASS_P (t))
9368 dependent_p = (type_dependent_expression_p (t)
9369 || value_dependent_expression_p (t));
9370 else
9372 gcc_assert (t == error_mark_node);
9373 dependent_p = false;
9376 processing_template_decl = saved_processing_template_decl;
9378 return dependent_p;
9381 /* Returns true iff current_function_decl is an incompletely instantiated
9382 template. Useful instead of processing_template_decl because the latter
9383 is set to 0 during instantiate_non_dependent_expr. */
9385 bool
9386 in_template_function (void)
9388 tree fn = current_function_decl;
9389 bool ret;
9390 ++processing_template_decl;
9391 ret = (fn && DECL_LANG_SPECIFIC (fn)
9392 && DECL_TEMPLATE_INFO (fn)
9393 && any_dependent_template_arguments_p (DECL_TI_ARGS (fn)));
9394 --processing_template_decl;
9395 return ret;
9398 /* Returns true if T depends on any template parameter with level LEVEL. */
9400 bool
9401 uses_template_parms_level (tree t, int level)
9403 return for_each_template_parm (t, template_parm_this_level_p, &level, NULL,
9404 /*include_nondeduced_p=*/true);
9407 /* Returns true if the signature of DECL depends on any template parameter from
9408 its enclosing class. */
9410 bool
9411 uses_outer_template_parms (tree decl)
9413 int depth = template_class_depth (CP_DECL_CONTEXT (decl));
9414 if (depth == 0)
9415 return false;
9416 if (for_each_template_parm (TREE_TYPE (decl), template_parm_outer_level,
9417 &depth, NULL, /*include_nondeduced_p=*/true))
9418 return true;
9419 if (PRIMARY_TEMPLATE_P (decl)
9420 && for_each_template_parm (INNERMOST_TEMPLATE_PARMS
9421 (DECL_TEMPLATE_PARMS (decl)),
9422 template_parm_outer_level,
9423 &depth, NULL, /*include_nondeduced_p=*/true))
9424 return true;
9425 tree ci = get_constraints (decl);
9426 if (ci)
9427 ci = CI_ASSOCIATED_CONSTRAINTS (ci);
9428 if (ci && for_each_template_parm (ci, template_parm_outer_level,
9429 &depth, NULL, /*nondeduced*/true))
9430 return true;
9431 return false;
9434 /* Returns TRUE iff INST is an instantiation we don't need to do in an
9435 ill-formed translation unit, i.e. a variable or function that isn't
9436 usable in a constant expression. */
9438 static inline bool
9439 neglectable_inst_p (tree d)
9441 return (DECL_P (d)
9442 && !(TREE_CODE (d) == FUNCTION_DECL ? DECL_DECLARED_CONSTEXPR_P (d)
9443 : decl_maybe_constant_var_p (d)));
9446 /* Returns TRUE iff we should refuse to instantiate DECL because it's
9447 neglectable and instantiated from within an erroneous instantiation. */
9449 static bool
9450 limit_bad_template_recursion (tree decl)
9452 struct tinst_level *lev = current_tinst_level;
9453 int errs = errorcount + sorrycount;
9454 if (lev == NULL || errs == 0 || !neglectable_inst_p (decl))
9455 return false;
9457 for (; lev; lev = lev->next)
9458 if (neglectable_inst_p (lev->decl))
9459 break;
9461 return (lev && errs > lev->errors);
9464 static int tinst_depth;
9465 extern int max_tinst_depth;
9466 int depth_reached;
9468 static GTY(()) struct tinst_level *last_error_tinst_level;
9470 /* We're starting to instantiate D; record the template instantiation context
9471 for diagnostics and to restore it later. */
9473 bool
9474 push_tinst_level (tree d)
9476 return push_tinst_level_loc (d, input_location);
9479 /* We're starting to instantiate D; record the template instantiation context
9480 at LOC for diagnostics and to restore it later. */
9482 bool
9483 push_tinst_level_loc (tree d, location_t loc)
9485 struct tinst_level *new_level;
9487 if (tinst_depth >= max_tinst_depth)
9489 /* Tell error.c not to try to instantiate any templates. */
9490 at_eof = 2;
9491 fatal_error (input_location,
9492 "template instantiation depth exceeds maximum of %d"
9493 " (use -ftemplate-depth= to increase the maximum)",
9494 max_tinst_depth);
9495 return false;
9498 /* If the current instantiation caused problems, don't let it instantiate
9499 anything else. Do allow deduction substitution and decls usable in
9500 constant expressions. */
9501 if (limit_bad_template_recursion (d))
9502 return false;
9504 /* When not -quiet, dump template instantiations other than functions, since
9505 announce_function will take care of those. */
9506 if (!quiet_flag
9507 && TREE_CODE (d) != TREE_LIST
9508 && TREE_CODE (d) != FUNCTION_DECL)
9509 fprintf (stderr, " %s", decl_as_string (d, TFF_DECL_SPECIFIERS));
9511 new_level = ggc_alloc<tinst_level> ();
9512 new_level->decl = d;
9513 new_level->locus = loc;
9514 new_level->errors = errorcount+sorrycount;
9515 new_level->in_system_header_p = in_system_header_at (input_location);
9516 new_level->next = current_tinst_level;
9517 current_tinst_level = new_level;
9519 ++tinst_depth;
9520 if (GATHER_STATISTICS && (tinst_depth > depth_reached))
9521 depth_reached = tinst_depth;
9523 return true;
9526 /* We're done instantiating this template; return to the instantiation
9527 context. */
9529 void
9530 pop_tinst_level (void)
9532 /* Restore the filename and line number stashed away when we started
9533 this instantiation. */
9534 input_location = current_tinst_level->locus;
9535 current_tinst_level = current_tinst_level->next;
9536 --tinst_depth;
9539 /* We're instantiating a deferred template; restore the template
9540 instantiation context in which the instantiation was requested, which
9541 is one step out from LEVEL. Return the corresponding DECL or TYPE. */
9543 static tree
9544 reopen_tinst_level (struct tinst_level *level)
9546 struct tinst_level *t;
9548 tinst_depth = 0;
9549 for (t = level; t; t = t->next)
9550 ++tinst_depth;
9552 current_tinst_level = level;
9553 pop_tinst_level ();
9554 if (current_tinst_level)
9555 current_tinst_level->errors = errorcount+sorrycount;
9556 return level->decl;
9559 /* Returns the TINST_LEVEL which gives the original instantiation
9560 context. */
9562 struct tinst_level *
9563 outermost_tinst_level (void)
9565 struct tinst_level *level = current_tinst_level;
9566 if (level)
9567 while (level->next)
9568 level = level->next;
9569 return level;
9572 /* DECL is a friend FUNCTION_DECL or TEMPLATE_DECL. ARGS is the
9573 vector of template arguments, as for tsubst.
9575 Returns an appropriate tsubst'd friend declaration. */
9577 static tree
9578 tsubst_friend_function (tree decl, tree args)
9580 tree new_friend;
9582 if (TREE_CODE (decl) == FUNCTION_DECL
9583 && DECL_TEMPLATE_INSTANTIATION (decl)
9584 && TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
9585 /* This was a friend declared with an explicit template
9586 argument list, e.g.:
9588 friend void f<>(T);
9590 to indicate that f was a template instantiation, not a new
9591 function declaration. Now, we have to figure out what
9592 instantiation of what template. */
9594 tree template_id, arglist, fns;
9595 tree new_args;
9596 tree tmpl;
9597 tree ns = decl_namespace_context (TYPE_MAIN_DECL (current_class_type));
9599 /* Friend functions are looked up in the containing namespace scope.
9600 We must enter that scope, to avoid finding member functions of the
9601 current class with same name. */
9602 push_nested_namespace (ns);
9603 fns = tsubst_expr (DECL_TI_TEMPLATE (decl), args,
9604 tf_warning_or_error, NULL_TREE,
9605 /*integral_constant_expression_p=*/false);
9606 pop_nested_namespace (ns);
9607 arglist = tsubst (DECL_TI_ARGS (decl), args,
9608 tf_warning_or_error, NULL_TREE);
9609 template_id = lookup_template_function (fns, arglist);
9611 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
9612 tmpl = determine_specialization (template_id, new_friend,
9613 &new_args,
9614 /*need_member_template=*/0,
9615 TREE_VEC_LENGTH (args),
9616 tsk_none);
9617 return instantiate_template (tmpl, new_args, tf_error);
9620 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
9622 /* The NEW_FRIEND will look like an instantiation, to the
9623 compiler, but is not an instantiation from the point of view of
9624 the language. For example, we might have had:
9626 template <class T> struct S {
9627 template <class U> friend void f(T, U);
9630 Then, in S<int>, template <class U> void f(int, U) is not an
9631 instantiation of anything. */
9632 if (new_friend == error_mark_node)
9633 return error_mark_node;
9635 DECL_USE_TEMPLATE (new_friend) = 0;
9636 if (TREE_CODE (decl) == TEMPLATE_DECL)
9638 DECL_USE_TEMPLATE (DECL_TEMPLATE_RESULT (new_friend)) = 0;
9639 DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (new_friend))
9640 = DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (decl));
9643 /* The mangled name for the NEW_FRIEND is incorrect. The function
9644 is not a template instantiation and should not be mangled like
9645 one. Therefore, we forget the mangling here; we'll recompute it
9646 later if we need it. */
9647 if (TREE_CODE (new_friend) != TEMPLATE_DECL)
9649 SET_DECL_RTL (new_friend, NULL);
9650 SET_DECL_ASSEMBLER_NAME (new_friend, NULL_TREE);
9653 if (DECL_NAMESPACE_SCOPE_P (new_friend))
9655 tree old_decl;
9656 tree new_friend_template_info;
9657 tree new_friend_result_template_info;
9658 tree ns;
9659 int new_friend_is_defn;
9661 /* We must save some information from NEW_FRIEND before calling
9662 duplicate decls since that function will free NEW_FRIEND if
9663 possible. */
9664 new_friend_template_info = DECL_TEMPLATE_INFO (new_friend);
9665 new_friend_is_defn =
9666 (DECL_INITIAL (DECL_TEMPLATE_RESULT
9667 (template_for_substitution (new_friend)))
9668 != NULL_TREE);
9669 if (TREE_CODE (new_friend) == TEMPLATE_DECL)
9671 /* This declaration is a `primary' template. */
9672 DECL_PRIMARY_TEMPLATE (new_friend) = new_friend;
9674 new_friend_result_template_info
9675 = DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (new_friend));
9677 else
9678 new_friend_result_template_info = NULL_TREE;
9680 /* Inside pushdecl_namespace_level, we will push into the
9681 current namespace. However, the friend function should go
9682 into the namespace of the template. */
9683 ns = decl_namespace_context (new_friend);
9684 push_nested_namespace (ns);
9685 old_decl = pushdecl_namespace_level (new_friend, /*is_friend=*/true);
9686 pop_nested_namespace (ns);
9688 if (old_decl == error_mark_node)
9689 return error_mark_node;
9691 if (old_decl != new_friend)
9693 /* This new friend declaration matched an existing
9694 declaration. For example, given:
9696 template <class T> void f(T);
9697 template <class U> class C {
9698 template <class T> friend void f(T) {}
9701 the friend declaration actually provides the definition
9702 of `f', once C has been instantiated for some type. So,
9703 old_decl will be the out-of-class template declaration,
9704 while new_friend is the in-class definition.
9706 But, if `f' was called before this point, the
9707 instantiation of `f' will have DECL_TI_ARGS corresponding
9708 to `T' but not to `U', references to which might appear
9709 in the definition of `f'. Previously, the most general
9710 template for an instantiation of `f' was the out-of-class
9711 version; now it is the in-class version. Therefore, we
9712 run through all specialization of `f', adding to their
9713 DECL_TI_ARGS appropriately. In particular, they need a
9714 new set of outer arguments, corresponding to the
9715 arguments for this class instantiation.
9717 The same situation can arise with something like this:
9719 friend void f(int);
9720 template <class T> class C {
9721 friend void f(T) {}
9724 when `C<int>' is instantiated. Now, `f(int)' is defined
9725 in the class. */
9727 if (!new_friend_is_defn)
9728 /* On the other hand, if the in-class declaration does
9729 *not* provide a definition, then we don't want to alter
9730 existing definitions. We can just leave everything
9731 alone. */
9733 else
9735 tree new_template = TI_TEMPLATE (new_friend_template_info);
9736 tree new_args = TI_ARGS (new_friend_template_info);
9738 /* Overwrite whatever template info was there before, if
9739 any, with the new template information pertaining to
9740 the declaration. */
9741 DECL_TEMPLATE_INFO (old_decl) = new_friend_template_info;
9743 if (TREE_CODE (old_decl) != TEMPLATE_DECL)
9745 /* We should have called reregister_specialization in
9746 duplicate_decls. */
9747 gcc_assert (retrieve_specialization (new_template,
9748 new_args, 0)
9749 == old_decl);
9751 /* Instantiate it if the global has already been used. */
9752 if (DECL_ODR_USED (old_decl))
9753 instantiate_decl (old_decl, /*defer_ok=*/true,
9754 /*expl_inst_class_mem_p=*/false);
9756 else
9758 tree t;
9760 /* Indicate that the old function template is a partial
9761 instantiation. */
9762 DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (old_decl))
9763 = new_friend_result_template_info;
9765 gcc_assert (new_template
9766 == most_general_template (new_template));
9767 gcc_assert (new_template != old_decl);
9769 /* Reassign any specializations already in the hash table
9770 to the new more general template, and add the
9771 additional template args. */
9772 for (t = DECL_TEMPLATE_INSTANTIATIONS (old_decl);
9773 t != NULL_TREE;
9774 t = TREE_CHAIN (t))
9776 tree spec = TREE_VALUE (t);
9777 spec_entry elt;
9779 elt.tmpl = old_decl;
9780 elt.args = DECL_TI_ARGS (spec);
9781 elt.spec = NULL_TREE;
9783 decl_specializations->remove_elt (&elt);
9785 DECL_TI_ARGS (spec)
9786 = add_outermost_template_args (new_args,
9787 DECL_TI_ARGS (spec));
9789 register_specialization
9790 (spec, new_template, DECL_TI_ARGS (spec), true, 0);
9793 DECL_TEMPLATE_INSTANTIATIONS (old_decl) = NULL_TREE;
9797 /* The information from NEW_FRIEND has been merged into OLD_DECL
9798 by duplicate_decls. */
9799 new_friend = old_decl;
9802 else
9804 tree context = DECL_CONTEXT (new_friend);
9805 bool dependent_p;
9807 /* In the code
9808 template <class T> class C {
9809 template <class U> friend void C1<U>::f (); // case 1
9810 friend void C2<T>::f (); // case 2
9812 we only need to make sure CONTEXT is a complete type for
9813 case 2. To distinguish between the two cases, we note that
9814 CONTEXT of case 1 remains dependent type after tsubst while
9815 this isn't true for case 2. */
9816 ++processing_template_decl;
9817 dependent_p = dependent_type_p (context);
9818 --processing_template_decl;
9820 if (!dependent_p
9821 && !complete_type_or_else (context, NULL_TREE))
9822 return error_mark_node;
9824 if (COMPLETE_TYPE_P (context))
9826 tree fn = new_friend;
9827 /* do_friend adds the TEMPLATE_DECL for any member friend
9828 template even if it isn't a member template, i.e.
9829 template <class T> friend A<T>::f();
9830 Look through it in that case. */
9831 if (TREE_CODE (fn) == TEMPLATE_DECL
9832 && !PRIMARY_TEMPLATE_P (fn))
9833 fn = DECL_TEMPLATE_RESULT (fn);
9834 /* Check to see that the declaration is really present, and,
9835 possibly obtain an improved declaration. */
9836 fn = check_classfn (context, fn, NULL_TREE);
9838 if (fn)
9839 new_friend = fn;
9843 return new_friend;
9846 /* FRIEND_TMPL is a friend TEMPLATE_DECL. ARGS is the vector of
9847 template arguments, as for tsubst.
9849 Returns an appropriate tsubst'd friend type or error_mark_node on
9850 failure. */
9852 static tree
9853 tsubst_friend_class (tree friend_tmpl, tree args)
9855 tree friend_type;
9856 tree tmpl;
9857 tree context;
9859 if (DECL_TEMPLATE_TEMPLATE_PARM_P (friend_tmpl))
9861 tree t = tsubst (TREE_TYPE (friend_tmpl), args, tf_none, NULL_TREE);
9862 return TREE_TYPE (t);
9865 context = CP_DECL_CONTEXT (friend_tmpl);
9867 if (context != global_namespace)
9869 if (TREE_CODE (context) == NAMESPACE_DECL)
9870 push_nested_namespace (context);
9871 else
9872 push_nested_class (tsubst (context, args, tf_none, NULL_TREE));
9875 /* Look for a class template declaration. We look for hidden names
9876 because two friend declarations of the same template are the
9877 same. For example, in:
9879 struct A {
9880 template <typename> friend class F;
9882 template <typename> struct B {
9883 template <typename> friend class F;
9886 both F templates are the same. */
9887 tmpl = lookup_name_real (DECL_NAME (friend_tmpl), 0, 0,
9888 /*block_p=*/true, 0, LOOKUP_HIDDEN);
9890 /* But, if we don't find one, it might be because we're in a
9891 situation like this:
9893 template <class T>
9894 struct S {
9895 template <class U>
9896 friend struct S;
9899 Here, in the scope of (say) S<int>, `S' is bound to a TYPE_DECL
9900 for `S<int>', not the TEMPLATE_DECL. */
9901 if (!tmpl || !DECL_CLASS_TEMPLATE_P (tmpl))
9903 tmpl = lookup_name_prefer_type (DECL_NAME (friend_tmpl), 1);
9904 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
9907 if (tmpl && DECL_CLASS_TEMPLATE_P (tmpl))
9909 /* The friend template has already been declared. Just
9910 check to see that the declarations match, and install any new
9911 default parameters. We must tsubst the default parameters,
9912 of course. We only need the innermost template parameters
9913 because that is all that redeclare_class_template will look
9914 at. */
9915 if (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (friend_tmpl))
9916 > TMPL_ARGS_DEPTH (args))
9918 tree parms;
9919 location_t saved_input_location;
9920 parms = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_tmpl),
9921 args, tf_warning_or_error);
9923 saved_input_location = input_location;
9924 input_location = DECL_SOURCE_LOCATION (friend_tmpl);
9925 tree cons = get_constraints (tmpl);
9926 redeclare_class_template (TREE_TYPE (tmpl), parms, cons);
9927 input_location = saved_input_location;
9931 friend_type = TREE_TYPE (tmpl);
9933 else
9935 /* The friend template has not already been declared. In this
9936 case, the instantiation of the template class will cause the
9937 injection of this template into the global scope. */
9938 tmpl = tsubst (friend_tmpl, args, tf_warning_or_error, NULL_TREE);
9939 if (tmpl == error_mark_node)
9940 return error_mark_node;
9942 /* The new TMPL is not an instantiation of anything, so we
9943 forget its origins. We don't reset CLASSTYPE_TI_TEMPLATE for
9944 the new type because that is supposed to be the corresponding
9945 template decl, i.e., TMPL. */
9946 DECL_USE_TEMPLATE (tmpl) = 0;
9947 DECL_TEMPLATE_INFO (tmpl) = NULL_TREE;
9948 CLASSTYPE_USE_TEMPLATE (TREE_TYPE (tmpl)) = 0;
9949 CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl))
9950 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl)));
9952 /* Inject this template into the global scope. */
9953 friend_type = TREE_TYPE (pushdecl_top_level_maybe_friend (tmpl, true));
9956 if (context != global_namespace)
9958 if (TREE_CODE (context) == NAMESPACE_DECL)
9959 pop_nested_namespace (context);
9960 else
9961 pop_nested_class ();
9964 return friend_type;
9967 /* Returns zero if TYPE cannot be completed later due to circularity.
9968 Otherwise returns one. */
9970 static int
9971 can_complete_type_without_circularity (tree type)
9973 if (type == NULL_TREE || type == error_mark_node)
9974 return 0;
9975 else if (COMPLETE_TYPE_P (type))
9976 return 1;
9977 else if (TREE_CODE (type) == ARRAY_TYPE)
9978 return can_complete_type_without_circularity (TREE_TYPE (type));
9979 else if (CLASS_TYPE_P (type)
9980 && TYPE_BEING_DEFINED (TYPE_MAIN_VARIANT (type)))
9981 return 0;
9982 else
9983 return 1;
9986 static tree tsubst_omp_clauses (tree, enum c_omp_region_type, tree,
9987 tsubst_flags_t, tree);
9989 /* Instantiate a single dependent attribute T (a TREE_LIST), and return either
9990 T or a new TREE_LIST, possibly a chain in the case of a pack expansion. */
9992 static tree
9993 tsubst_attribute (tree t, tree *decl_p, tree args,
9994 tsubst_flags_t complain, tree in_decl)
9996 gcc_assert (ATTR_IS_DEPENDENT (t));
9998 tree val = TREE_VALUE (t);
9999 if (val == NULL_TREE)
10000 /* Nothing to do. */;
10001 else if ((flag_openmp || flag_openmp_simd || flag_cilkplus)
10002 && is_attribute_p ("omp declare simd",
10003 get_attribute_name (t)))
10005 tree clauses = TREE_VALUE (val);
10006 clauses = tsubst_omp_clauses (clauses, C_ORT_OMP_DECLARE_SIMD, args,
10007 complain, in_decl);
10008 c_omp_declare_simd_clauses_to_decls (*decl_p, clauses);
10009 clauses = finish_omp_clauses (clauses, C_ORT_OMP_DECLARE_SIMD);
10010 tree parms = DECL_ARGUMENTS (*decl_p);
10011 clauses
10012 = c_omp_declare_simd_clauses_to_numbers (parms, clauses);
10013 if (clauses)
10014 val = build_tree_list (NULL_TREE, clauses);
10015 else
10016 val = NULL_TREE;
10018 /* If the first attribute argument is an identifier, don't
10019 pass it through tsubst. Attributes like mode, format,
10020 cleanup and several target specific attributes expect it
10021 unmodified. */
10022 else if (attribute_takes_identifier_p (get_attribute_name (t)))
10024 tree chain
10025 = tsubst_expr (TREE_CHAIN (val), args, complain, in_decl,
10026 /*integral_constant_expression_p=*/false);
10027 if (chain != TREE_CHAIN (val))
10028 val = tree_cons (NULL_TREE, TREE_VALUE (val), chain);
10030 else if (PACK_EXPANSION_P (val))
10032 /* An attribute pack expansion. */
10033 tree purp = TREE_PURPOSE (t);
10034 tree pack = tsubst_pack_expansion (val, args, complain, in_decl);
10035 if (pack == error_mark_node)
10036 return error_mark_node;
10037 int len = TREE_VEC_LENGTH (pack);
10038 tree list = NULL_TREE;
10039 tree *q = &list;
10040 for (int i = 0; i < len; ++i)
10042 tree elt = TREE_VEC_ELT (pack, i);
10043 *q = build_tree_list (purp, elt);
10044 q = &TREE_CHAIN (*q);
10046 return list;
10048 else
10049 val = tsubst_expr (val, args, complain, in_decl,
10050 /*integral_constant_expression_p=*/false);
10052 if (val != TREE_VALUE (t))
10053 return build_tree_list (TREE_PURPOSE (t), val);
10054 return t;
10057 /* Instantiate any dependent attributes in ATTRIBUTES, returning either it
10058 unchanged or a new TREE_LIST chain. */
10060 static tree
10061 tsubst_attributes (tree attributes, tree args,
10062 tsubst_flags_t complain, tree in_decl)
10064 tree last_dep = NULL_TREE;
10066 for (tree t = attributes; t; t = TREE_CHAIN (t))
10067 if (ATTR_IS_DEPENDENT (t))
10069 last_dep = t;
10070 attributes = copy_list (attributes);
10071 break;
10074 if (last_dep)
10075 for (tree *p = &attributes; *p; )
10077 tree t = *p;
10078 if (ATTR_IS_DEPENDENT (t))
10080 tree subst = tsubst_attribute (t, NULL, args, complain, in_decl);
10081 if (subst != t)
10083 *p = subst;
10085 p = &TREE_CHAIN (*p);
10086 while (*p);
10087 *p = TREE_CHAIN (t);
10088 continue;
10091 p = &TREE_CHAIN (*p);
10094 return attributes;
10097 /* Apply any attributes which had to be deferred until instantiation
10098 time. DECL_P, ATTRIBUTES and ATTR_FLAGS are as cplus_decl_attributes;
10099 ARGS, COMPLAIN, IN_DECL are as tsubst. */
10101 static void
10102 apply_late_template_attributes (tree *decl_p, tree attributes, int attr_flags,
10103 tree args, tsubst_flags_t complain, tree in_decl)
10105 tree last_dep = NULL_TREE;
10106 tree t;
10107 tree *p;
10109 if (attributes == NULL_TREE)
10110 return;
10112 if (DECL_P (*decl_p))
10114 if (TREE_TYPE (*decl_p) == error_mark_node)
10115 return;
10116 p = &DECL_ATTRIBUTES (*decl_p);
10117 /* DECL_ATTRIBUTES comes from copy_node in tsubst_decl, and is identical
10118 to our attributes parameter. */
10119 gcc_assert (*p == attributes);
10121 else
10123 p = &TYPE_ATTRIBUTES (*decl_p);
10124 /* TYPE_ATTRIBUTES was set up (with abi_tag and may_alias) in
10125 lookup_template_class_1, and should be preserved. */
10126 gcc_assert (*p != attributes);
10127 while (*p)
10128 p = &TREE_CHAIN (*p);
10131 for (t = attributes; t; t = TREE_CHAIN (t))
10132 if (ATTR_IS_DEPENDENT (t))
10134 last_dep = t;
10135 attributes = copy_list (attributes);
10136 break;
10139 *p = attributes;
10140 if (last_dep)
10142 tree late_attrs = NULL_TREE;
10143 tree *q = &late_attrs;
10145 for (; *p; )
10147 t = *p;
10148 if (ATTR_IS_DEPENDENT (t))
10150 *p = TREE_CHAIN (t);
10151 TREE_CHAIN (t) = NULL_TREE;
10152 *q = tsubst_attribute (t, decl_p, args, complain, in_decl);
10154 q = &TREE_CHAIN (*q);
10155 while (*q);
10157 else
10158 p = &TREE_CHAIN (t);
10161 cplus_decl_attributes (decl_p, late_attrs, attr_flags);
10165 /* Perform (or defer) access check for typedefs that were referenced
10166 from within the template TMPL code.
10167 This is a subroutine of instantiate_decl and instantiate_class_template.
10168 TMPL is the template to consider and TARGS is the list of arguments of
10169 that template. */
10171 static void
10172 perform_typedefs_access_check (tree tmpl, tree targs)
10174 location_t saved_location;
10175 unsigned i;
10176 qualified_typedef_usage_t *iter;
10178 if (!tmpl
10179 || (!CLASS_TYPE_P (tmpl)
10180 && TREE_CODE (tmpl) != FUNCTION_DECL))
10181 return;
10183 saved_location = input_location;
10184 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (tmpl), i, iter)
10186 tree type_decl = iter->typedef_decl;
10187 tree type_scope = iter->context;
10189 if (!type_decl || !type_scope || !CLASS_TYPE_P (type_scope))
10190 continue;
10192 if (uses_template_parms (type_decl))
10193 type_decl = tsubst (type_decl, targs, tf_error, NULL_TREE);
10194 if (uses_template_parms (type_scope))
10195 type_scope = tsubst (type_scope, targs, tf_error, NULL_TREE);
10197 /* Make access check error messages point to the location
10198 of the use of the typedef. */
10199 input_location = iter->locus;
10200 perform_or_defer_access_check (TYPE_BINFO (type_scope),
10201 type_decl, type_decl,
10202 tf_warning_or_error);
10204 input_location = saved_location;
10207 static tree
10208 instantiate_class_template_1 (tree type)
10210 tree templ, args, pattern, t, member;
10211 tree typedecl;
10212 tree pbinfo;
10213 tree base_list;
10214 unsigned int saved_maximum_field_alignment;
10215 tree fn_context;
10217 if (type == error_mark_node)
10218 return error_mark_node;
10220 if (COMPLETE_OR_OPEN_TYPE_P (type)
10221 || uses_template_parms (type))
10222 return type;
10224 /* Figure out which template is being instantiated. */
10225 templ = most_general_template (CLASSTYPE_TI_TEMPLATE (type));
10226 gcc_assert (TREE_CODE (templ) == TEMPLATE_DECL);
10228 /* Determine what specialization of the original template to
10229 instantiate. */
10230 t = most_specialized_partial_spec (type, tf_warning_or_error);
10231 if (t == error_mark_node)
10233 TYPE_BEING_DEFINED (type) = 1;
10234 return error_mark_node;
10236 else if (t)
10238 /* This TYPE is actually an instantiation of a partial
10239 specialization. We replace the innermost set of ARGS with
10240 the arguments appropriate for substitution. For example,
10241 given:
10243 template <class T> struct S {};
10244 template <class T> struct S<T*> {};
10246 and supposing that we are instantiating S<int*>, ARGS will
10247 presently be {int*} -- but we need {int}. */
10248 pattern = TREE_TYPE (t);
10249 args = TREE_PURPOSE (t);
10251 else
10253 pattern = TREE_TYPE (templ);
10254 args = CLASSTYPE_TI_ARGS (type);
10257 /* If the template we're instantiating is incomplete, then clearly
10258 there's nothing we can do. */
10259 if (!COMPLETE_TYPE_P (pattern))
10260 return type;
10262 /* If we've recursively instantiated too many templates, stop. */
10263 if (! push_tinst_level (type))
10264 return type;
10266 /* Now we're really doing the instantiation. Mark the type as in
10267 the process of being defined. */
10268 TYPE_BEING_DEFINED (type) = 1;
10270 /* We may be in the middle of deferred access check. Disable
10271 it now. */
10272 push_deferring_access_checks (dk_no_deferred);
10274 int saved_unevaluated_operand = cp_unevaluated_operand;
10275 int saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
10277 fn_context = decl_function_context (TYPE_MAIN_DECL (type));
10278 /* Also avoid push_to_top_level for a lambda in an NSDMI. */
10279 if (!fn_context && LAMBDA_TYPE_P (type) && TYPE_CLASS_SCOPE_P (type))
10280 fn_context = error_mark_node;
10281 if (!fn_context)
10282 push_to_top_level ();
10283 else
10285 cp_unevaluated_operand = 0;
10286 c_inhibit_evaluation_warnings = 0;
10288 /* Use #pragma pack from the template context. */
10289 saved_maximum_field_alignment = maximum_field_alignment;
10290 maximum_field_alignment = TYPE_PRECISION (pattern);
10292 SET_CLASSTYPE_INTERFACE_UNKNOWN (type);
10294 /* Set the input location to the most specialized template definition.
10295 This is needed if tsubsting causes an error. */
10296 typedecl = TYPE_MAIN_DECL (pattern);
10297 input_location = DECL_SOURCE_LOCATION (TYPE_NAME (type)) =
10298 DECL_SOURCE_LOCATION (typedecl);
10300 TYPE_PACKED (type) = TYPE_PACKED (pattern);
10301 SET_TYPE_ALIGN (type, TYPE_ALIGN (pattern));
10302 TYPE_USER_ALIGN (type) = TYPE_USER_ALIGN (pattern);
10303 CLASSTYPE_NON_AGGREGATE (type) = CLASSTYPE_NON_AGGREGATE (pattern);
10304 if (ANON_AGGR_TYPE_P (pattern))
10305 SET_ANON_AGGR_TYPE_P (type);
10306 if (CLASSTYPE_VISIBILITY_SPECIFIED (pattern))
10308 CLASSTYPE_VISIBILITY_SPECIFIED (type) = 1;
10309 CLASSTYPE_VISIBILITY (type) = CLASSTYPE_VISIBILITY (pattern);
10310 /* Adjust visibility for template arguments. */
10311 determine_visibility (TYPE_MAIN_DECL (type));
10313 if (CLASS_TYPE_P (type))
10314 CLASSTYPE_FINAL (type) = CLASSTYPE_FINAL (pattern);
10316 pbinfo = TYPE_BINFO (pattern);
10318 /* We should never instantiate a nested class before its enclosing
10319 class; we need to look up the nested class by name before we can
10320 instantiate it, and that lookup should instantiate the enclosing
10321 class. */
10322 gcc_assert (!DECL_CLASS_SCOPE_P (TYPE_MAIN_DECL (pattern))
10323 || COMPLETE_OR_OPEN_TYPE_P (TYPE_CONTEXT (type)));
10325 base_list = NULL_TREE;
10326 if (BINFO_N_BASE_BINFOS (pbinfo))
10328 tree pbase_binfo;
10329 tree pushed_scope;
10330 int i;
10332 /* We must enter the scope containing the type, as that is where
10333 the accessibility of types named in dependent bases are
10334 looked up from. */
10335 pushed_scope = push_scope (CP_TYPE_CONTEXT (type));
10337 /* Substitute into each of the bases to determine the actual
10338 basetypes. */
10339 for (i = 0; BINFO_BASE_ITERATE (pbinfo, i, pbase_binfo); i++)
10341 tree base;
10342 tree access = BINFO_BASE_ACCESS (pbinfo, i);
10343 tree expanded_bases = NULL_TREE;
10344 int idx, len = 1;
10346 if (PACK_EXPANSION_P (BINFO_TYPE (pbase_binfo)))
10348 expanded_bases =
10349 tsubst_pack_expansion (BINFO_TYPE (pbase_binfo),
10350 args, tf_error, NULL_TREE);
10351 if (expanded_bases == error_mark_node)
10352 continue;
10354 len = TREE_VEC_LENGTH (expanded_bases);
10357 for (idx = 0; idx < len; idx++)
10359 if (expanded_bases)
10360 /* Extract the already-expanded base class. */
10361 base = TREE_VEC_ELT (expanded_bases, idx);
10362 else
10363 /* Substitute to figure out the base class. */
10364 base = tsubst (BINFO_TYPE (pbase_binfo), args, tf_error,
10365 NULL_TREE);
10367 if (base == error_mark_node)
10368 continue;
10370 base_list = tree_cons (access, base, base_list);
10371 if (BINFO_VIRTUAL_P (pbase_binfo))
10372 TREE_TYPE (base_list) = integer_type_node;
10376 /* The list is now in reverse order; correct that. */
10377 base_list = nreverse (base_list);
10379 if (pushed_scope)
10380 pop_scope (pushed_scope);
10382 /* Now call xref_basetypes to set up all the base-class
10383 information. */
10384 xref_basetypes (type, base_list);
10386 apply_late_template_attributes (&type, TYPE_ATTRIBUTES (pattern),
10387 (int) ATTR_FLAG_TYPE_IN_PLACE,
10388 args, tf_error, NULL_TREE);
10389 fixup_attribute_variants (type);
10391 /* Now that our base classes are set up, enter the scope of the
10392 class, so that name lookups into base classes, etc. will work
10393 correctly. This is precisely analogous to what we do in
10394 begin_class_definition when defining an ordinary non-template
10395 class, except we also need to push the enclosing classes. */
10396 push_nested_class (type);
10398 /* Now members are processed in the order of declaration. */
10399 for (member = CLASSTYPE_DECL_LIST (pattern);
10400 member; member = TREE_CHAIN (member))
10402 tree t = TREE_VALUE (member);
10404 if (TREE_PURPOSE (member))
10406 if (TYPE_P (t))
10408 /* Build new CLASSTYPE_NESTED_UTDS. */
10410 tree newtag;
10411 bool class_template_p;
10413 class_template_p = (TREE_CODE (t) != ENUMERAL_TYPE
10414 && TYPE_LANG_SPECIFIC (t)
10415 && CLASSTYPE_IS_TEMPLATE (t));
10416 /* If the member is a class template, then -- even after
10417 substitution -- there may be dependent types in the
10418 template argument list for the class. We increment
10419 PROCESSING_TEMPLATE_DECL so that dependent_type_p, as
10420 that function will assume that no types are dependent
10421 when outside of a template. */
10422 if (class_template_p)
10423 ++processing_template_decl;
10424 newtag = tsubst (t, args, tf_error, NULL_TREE);
10425 if (class_template_p)
10426 --processing_template_decl;
10427 if (newtag == error_mark_node)
10428 continue;
10430 if (TREE_CODE (newtag) != ENUMERAL_TYPE)
10432 tree name = TYPE_IDENTIFIER (t);
10434 if (class_template_p)
10435 /* Unfortunately, lookup_template_class sets
10436 CLASSTYPE_IMPLICIT_INSTANTIATION for a partial
10437 instantiation (i.e., for the type of a member
10438 template class nested within a template class.)
10439 This behavior is required for
10440 maybe_process_partial_specialization to work
10441 correctly, but is not accurate in this case;
10442 the TAG is not an instantiation of anything.
10443 (The corresponding TEMPLATE_DECL is an
10444 instantiation, but the TYPE is not.) */
10445 CLASSTYPE_USE_TEMPLATE (newtag) = 0;
10447 /* Now, we call pushtag to put this NEWTAG into the scope of
10448 TYPE. We first set up the IDENTIFIER_TYPE_VALUE to avoid
10449 pushtag calling push_template_decl. We don't have to do
10450 this for enums because it will already have been done in
10451 tsubst_enum. */
10452 if (name)
10453 SET_IDENTIFIER_TYPE_VALUE (name, newtag);
10454 pushtag (name, newtag, /*tag_scope=*/ts_current);
10457 else if (DECL_DECLARES_FUNCTION_P (t))
10459 /* Build new TYPE_METHODS. */
10460 tree r;
10462 if (TREE_CODE (t) == TEMPLATE_DECL)
10463 ++processing_template_decl;
10464 r = tsubst (t, args, tf_error, NULL_TREE);
10465 if (TREE_CODE (t) == TEMPLATE_DECL)
10466 --processing_template_decl;
10467 set_current_access_from_decl (r);
10468 finish_member_declaration (r);
10469 /* Instantiate members marked with attribute used. */
10470 if (r != error_mark_node && DECL_PRESERVE_P (r))
10471 mark_used (r);
10472 if (TREE_CODE (r) == FUNCTION_DECL
10473 && DECL_OMP_DECLARE_REDUCTION_P (r))
10474 cp_check_omp_declare_reduction (r);
10476 else if (DECL_CLASS_TEMPLATE_P (t)
10477 && LAMBDA_TYPE_P (TREE_TYPE (t)))
10478 /* A closure type for a lambda in a default argument for a
10479 member template. Ignore it; it will be instantiated with
10480 the default argument. */;
10481 else
10483 /* Build new TYPE_FIELDS. */
10484 if (TREE_CODE (t) == STATIC_ASSERT)
10486 tree condition;
10488 ++c_inhibit_evaluation_warnings;
10489 condition =
10490 tsubst_expr (STATIC_ASSERT_CONDITION (t), args,
10491 tf_warning_or_error, NULL_TREE,
10492 /*integral_constant_expression_p=*/true);
10493 --c_inhibit_evaluation_warnings;
10495 finish_static_assert (condition,
10496 STATIC_ASSERT_MESSAGE (t),
10497 STATIC_ASSERT_SOURCE_LOCATION (t),
10498 /*member_p=*/true);
10500 else if (TREE_CODE (t) != CONST_DECL)
10502 tree r;
10503 tree vec = NULL_TREE;
10504 int len = 1;
10506 /* The file and line for this declaration, to
10507 assist in error message reporting. Since we
10508 called push_tinst_level above, we don't need to
10509 restore these. */
10510 input_location = DECL_SOURCE_LOCATION (t);
10512 if (TREE_CODE (t) == TEMPLATE_DECL)
10513 ++processing_template_decl;
10514 r = tsubst (t, args, tf_warning_or_error, NULL_TREE);
10515 if (TREE_CODE (t) == TEMPLATE_DECL)
10516 --processing_template_decl;
10518 if (TREE_CODE (r) == TREE_VEC)
10520 /* A capture pack became multiple fields. */
10521 vec = r;
10522 len = TREE_VEC_LENGTH (vec);
10525 for (int i = 0; i < len; ++i)
10527 if (vec)
10528 r = TREE_VEC_ELT (vec, i);
10529 if (VAR_P (r))
10531 /* In [temp.inst]:
10533 [t]he initialization (and any associated
10534 side-effects) of a static data member does
10535 not occur unless the static data member is
10536 itself used in a way that requires the
10537 definition of the static data member to
10538 exist.
10540 Therefore, we do not substitute into the
10541 initialized for the static data member here. */
10542 finish_static_data_member_decl
10544 /*init=*/NULL_TREE,
10545 /*init_const_expr_p=*/false,
10546 /*asmspec_tree=*/NULL_TREE,
10547 /*flags=*/0);
10548 /* Instantiate members marked with attribute used. */
10549 if (r != error_mark_node && DECL_PRESERVE_P (r))
10550 mark_used (r);
10552 else if (TREE_CODE (r) == FIELD_DECL)
10554 /* Determine whether R has a valid type and can be
10555 completed later. If R is invalid, then its type
10556 is replaced by error_mark_node. */
10557 tree rtype = TREE_TYPE (r);
10558 if (can_complete_type_without_circularity (rtype))
10559 complete_type (rtype);
10561 if (!complete_or_array_type_p (rtype))
10563 /* If R's type couldn't be completed and
10564 it isn't a flexible array member (whose
10565 type is incomplete by definition) give
10566 an error. */
10567 cxx_incomplete_type_error (r, rtype);
10568 TREE_TYPE (r) = error_mark_node;
10572 /* If it is a TYPE_DECL for a class-scoped ENUMERAL_TYPE,
10573 such a thing will already have been added to the field
10574 list by tsubst_enum in finish_member_declaration in the
10575 CLASSTYPE_NESTED_UTDS case above. */
10576 if (!(TREE_CODE (r) == TYPE_DECL
10577 && TREE_CODE (TREE_TYPE (r)) == ENUMERAL_TYPE
10578 && DECL_ARTIFICIAL (r)))
10580 set_current_access_from_decl (r);
10581 finish_member_declaration (r);
10587 else
10589 if (TYPE_P (t) || DECL_CLASS_TEMPLATE_P (t)
10590 || DECL_TEMPLATE_TEMPLATE_PARM_P (t))
10592 /* Build new CLASSTYPE_FRIEND_CLASSES. */
10594 tree friend_type = t;
10595 bool adjust_processing_template_decl = false;
10597 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
10599 /* template <class T> friend class C; */
10600 friend_type = tsubst_friend_class (friend_type, args);
10601 adjust_processing_template_decl = true;
10603 else if (TREE_CODE (friend_type) == UNBOUND_CLASS_TEMPLATE)
10605 /* template <class T> friend class C::D; */
10606 friend_type = tsubst (friend_type, args,
10607 tf_warning_or_error, NULL_TREE);
10608 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
10609 friend_type = TREE_TYPE (friend_type);
10610 adjust_processing_template_decl = true;
10612 else if (TREE_CODE (friend_type) == TYPENAME_TYPE
10613 || TREE_CODE (friend_type) == TEMPLATE_TYPE_PARM)
10615 /* This could be either
10617 friend class T::C;
10619 when dependent_type_p is false or
10621 template <class U> friend class T::C;
10623 otherwise. */
10624 /* Bump processing_template_decl in case this is something like
10625 template <class T> friend struct A<T>::B. */
10626 ++processing_template_decl;
10627 friend_type = tsubst (friend_type, args,
10628 tf_warning_or_error, NULL_TREE);
10629 if (dependent_type_p (friend_type))
10630 adjust_processing_template_decl = true;
10631 --processing_template_decl;
10633 else if (!CLASSTYPE_USE_TEMPLATE (friend_type)
10634 && hidden_name_p (TYPE_NAME (friend_type)))
10636 /* friend class C;
10638 where C hasn't been declared yet. Let's lookup name
10639 from namespace scope directly, bypassing any name that
10640 come from dependent base class. */
10641 tree ns = decl_namespace_context (TYPE_MAIN_DECL (friend_type));
10643 /* The call to xref_tag_from_type does injection for friend
10644 classes. */
10645 push_nested_namespace (ns);
10646 friend_type =
10647 xref_tag_from_type (friend_type, NULL_TREE,
10648 /*tag_scope=*/ts_current);
10649 pop_nested_namespace (ns);
10651 else if (uses_template_parms (friend_type))
10652 /* friend class C<T>; */
10653 friend_type = tsubst (friend_type, args,
10654 tf_warning_or_error, NULL_TREE);
10655 /* Otherwise it's
10657 friend class C;
10659 where C is already declared or
10661 friend class C<int>;
10663 We don't have to do anything in these cases. */
10665 if (adjust_processing_template_decl)
10666 /* Trick make_friend_class into realizing that the friend
10667 we're adding is a template, not an ordinary class. It's
10668 important that we use make_friend_class since it will
10669 perform some error-checking and output cross-reference
10670 information. */
10671 ++processing_template_decl;
10673 if (friend_type != error_mark_node)
10674 make_friend_class (type, friend_type, /*complain=*/false);
10676 if (adjust_processing_template_decl)
10677 --processing_template_decl;
10679 else
10681 /* Build new DECL_FRIENDLIST. */
10682 tree r;
10684 /* The file and line for this declaration, to
10685 assist in error message reporting. Since we
10686 called push_tinst_level above, we don't need to
10687 restore these. */
10688 input_location = DECL_SOURCE_LOCATION (t);
10690 if (TREE_CODE (t) == TEMPLATE_DECL)
10692 ++processing_template_decl;
10693 push_deferring_access_checks (dk_no_check);
10696 r = tsubst_friend_function (t, args);
10697 add_friend (type, r, /*complain=*/false);
10698 if (TREE_CODE (t) == TEMPLATE_DECL)
10700 pop_deferring_access_checks ();
10701 --processing_template_decl;
10707 if (fn_context)
10709 /* Restore these before substituting into the lambda capture
10710 initializers. */
10711 cp_unevaluated_operand = saved_unevaluated_operand;
10712 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
10715 if (tree expr = CLASSTYPE_LAMBDA_EXPR (type))
10717 tree decl = lambda_function (type);
10718 if (decl)
10720 if (cxx_dialect >= cxx1z)
10721 CLASSTYPE_LITERAL_P (type) = true;
10723 if (!DECL_TEMPLATE_INFO (decl)
10724 || DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (decl)) != decl)
10726 /* Set function_depth to avoid garbage collection. */
10727 ++function_depth;
10728 instantiate_decl (decl, /*defer_ok=*/false, false);
10729 --function_depth;
10732 /* We need to instantiate the capture list from the template
10733 after we've instantiated the closure members, but before we
10734 consider adding the conversion op. Also keep any captures
10735 that may have been added during instantiation of the op(). */
10736 tree tmpl_expr = CLASSTYPE_LAMBDA_EXPR (pattern);
10737 tree tmpl_cap
10738 = tsubst_copy_and_build (LAMBDA_EXPR_CAPTURE_LIST (tmpl_expr),
10739 args, tf_warning_or_error, NULL_TREE,
10740 false, false);
10742 LAMBDA_EXPR_CAPTURE_LIST (expr)
10743 = chainon (tmpl_cap, nreverse (LAMBDA_EXPR_CAPTURE_LIST (expr)));
10745 maybe_add_lambda_conv_op (type);
10747 else
10748 gcc_assert (errorcount);
10751 /* Set the file and line number information to whatever is given for
10752 the class itself. This puts error messages involving generated
10753 implicit functions at a predictable point, and the same point
10754 that would be used for non-template classes. */
10755 input_location = DECL_SOURCE_LOCATION (typedecl);
10757 unreverse_member_declarations (type);
10758 finish_struct_1 (type);
10759 TYPE_BEING_DEFINED (type) = 0;
10761 /* We don't instantiate default arguments for member functions. 14.7.1:
10763 The implicit instantiation of a class template specialization causes
10764 the implicit instantiation of the declarations, but not of the
10765 definitions or default arguments, of the class member functions,
10766 member classes, static data members and member templates.... */
10768 /* Some typedefs referenced from within the template code need to be access
10769 checked at template instantiation time, i.e now. These types were
10770 added to the template at parsing time. Let's get those and perform
10771 the access checks then. */
10772 perform_typedefs_access_check (pattern, args);
10773 perform_deferred_access_checks (tf_warning_or_error);
10774 pop_nested_class ();
10775 maximum_field_alignment = saved_maximum_field_alignment;
10776 if (!fn_context)
10777 pop_from_top_level ();
10778 pop_deferring_access_checks ();
10779 pop_tinst_level ();
10781 /* The vtable for a template class can be emitted in any translation
10782 unit in which the class is instantiated. When there is no key
10783 method, however, finish_struct_1 will already have added TYPE to
10784 the keyed_classes list. */
10785 if (TYPE_CONTAINS_VPTR_P (type) && CLASSTYPE_KEY_METHOD (type))
10786 keyed_classes = tree_cons (NULL_TREE, type, keyed_classes);
10788 return type;
10791 /* Wrapper for instantiate_class_template_1. */
10793 tree
10794 instantiate_class_template (tree type)
10796 tree ret;
10797 timevar_push (TV_TEMPLATE_INST);
10798 ret = instantiate_class_template_1 (type);
10799 timevar_pop (TV_TEMPLATE_INST);
10800 return ret;
10803 static tree
10804 tsubst_template_arg (tree t, tree args, tsubst_flags_t complain, tree in_decl)
10806 tree r;
10808 if (!t)
10809 r = t;
10810 else if (TYPE_P (t))
10811 r = tsubst (t, args, complain, in_decl);
10812 else
10814 if (!(complain & tf_warning))
10815 ++c_inhibit_evaluation_warnings;
10816 r = tsubst_expr (t, args, complain, in_decl,
10817 /*integral_constant_expression_p=*/true);
10818 if (!(complain & tf_warning))
10819 --c_inhibit_evaluation_warnings;
10821 return r;
10824 /* Given a function parameter pack TMPL_PARM and some function parameters
10825 instantiated from it at *SPEC_P, return a NONTYPE_ARGUMENT_PACK of them
10826 and set *SPEC_P to point at the next point in the list. */
10828 tree
10829 extract_fnparm_pack (tree tmpl_parm, tree *spec_p)
10831 /* Collect all of the extra "packed" parameters into an
10832 argument pack. */
10833 tree parmvec;
10834 tree parmtypevec;
10835 tree argpack = make_node (NONTYPE_ARGUMENT_PACK);
10836 tree argtypepack = cxx_make_type (TYPE_ARGUMENT_PACK);
10837 tree spec_parm = *spec_p;
10838 int i, len;
10840 for (len = 0; spec_parm; ++len, spec_parm = TREE_CHAIN (spec_parm))
10841 if (tmpl_parm
10842 && !function_parameter_expanded_from_pack_p (spec_parm, tmpl_parm))
10843 break;
10845 /* Fill in PARMVEC and PARMTYPEVEC with all of the parameters. */
10846 parmvec = make_tree_vec (len);
10847 parmtypevec = make_tree_vec (len);
10848 spec_parm = *spec_p;
10849 for (i = 0; i < len; i++, spec_parm = DECL_CHAIN (spec_parm))
10851 TREE_VEC_ELT (parmvec, i) = spec_parm;
10852 TREE_VEC_ELT (parmtypevec, i) = TREE_TYPE (spec_parm);
10855 /* Build the argument packs. */
10856 SET_ARGUMENT_PACK_ARGS (argpack, parmvec);
10857 SET_ARGUMENT_PACK_ARGS (argtypepack, parmtypevec);
10858 TREE_TYPE (argpack) = argtypepack;
10859 *spec_p = spec_parm;
10861 return argpack;
10864 /* Give a chain SPEC_PARM of PARM_DECLs, pack them into a
10865 NONTYPE_ARGUMENT_PACK. */
10867 static tree
10868 make_fnparm_pack (tree spec_parm)
10870 return extract_fnparm_pack (NULL_TREE, &spec_parm);
10873 /* Return 1 if the Ith element of the argument pack ARG_PACK is a
10874 pack expansion with no extra args, 2 if it has extra args, or 0
10875 if it is not a pack expansion. */
10877 static int
10878 argument_pack_element_is_expansion_p (tree arg_pack, int i)
10880 tree vec = ARGUMENT_PACK_ARGS (arg_pack);
10881 if (i >= TREE_VEC_LENGTH (vec))
10882 return 0;
10883 tree elt = TREE_VEC_ELT (vec, i);
10884 if (DECL_P (elt))
10885 /* A decl pack is itself an expansion. */
10886 elt = TREE_TYPE (elt);
10887 if (!PACK_EXPANSION_P (elt))
10888 return 0;
10889 if (PACK_EXPANSION_EXTRA_ARGS (elt))
10890 return 2;
10891 return 1;
10895 /* Creates and return an ARGUMENT_PACK_SELECT tree node. */
10897 static tree
10898 make_argument_pack_select (tree arg_pack, unsigned index)
10900 tree aps = make_node (ARGUMENT_PACK_SELECT);
10902 ARGUMENT_PACK_SELECT_FROM_PACK (aps) = arg_pack;
10903 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
10905 return aps;
10908 /* This is a subroutine of tsubst_pack_expansion.
10910 It returns TRUE if we need to use the PACK_EXPANSION_EXTRA_ARGS
10911 mechanism to store the (non complete list of) arguments of the
10912 substitution and return a non substituted pack expansion, in order
10913 to wait for when we have enough arguments to really perform the
10914 substitution. */
10916 static bool
10917 use_pack_expansion_extra_args_p (tree parm_packs,
10918 int arg_pack_len,
10919 bool has_empty_arg)
10921 /* If one pack has an expansion and another pack has a normal
10922 argument or if one pack has an empty argument and an another
10923 one hasn't then tsubst_pack_expansion cannot perform the
10924 substitution and need to fall back on the
10925 PACK_EXPANSION_EXTRA mechanism. */
10926 if (parm_packs == NULL_TREE)
10927 return false;
10928 else if (has_empty_arg)
10929 return true;
10931 bool has_expansion_arg = false;
10932 for (int i = 0 ; i < arg_pack_len; ++i)
10934 bool has_non_expansion_arg = false;
10935 for (tree parm_pack = parm_packs;
10936 parm_pack;
10937 parm_pack = TREE_CHAIN (parm_pack))
10939 tree arg = TREE_VALUE (parm_pack);
10941 int exp = argument_pack_element_is_expansion_p (arg, i);
10942 if (exp == 2)
10943 /* We can't substitute a pack expansion with extra args into
10944 our pattern. */
10945 return true;
10946 else if (exp)
10947 has_expansion_arg = true;
10948 else
10949 has_non_expansion_arg = true;
10952 if (has_expansion_arg && has_non_expansion_arg)
10953 return true;
10955 return false;
10958 /* [temp.variadic]/6 says that:
10960 The instantiation of a pack expansion [...]
10961 produces a list E1,E2, ..., En, where N is the number of elements
10962 in the pack expansion parameters.
10964 This subroutine of tsubst_pack_expansion produces one of these Ei.
10966 PATTERN is the pattern of the pack expansion. PARM_PACKS is a
10967 TREE_LIST in which each TREE_PURPOSE is a parameter pack of
10968 PATTERN, and each TREE_VALUE is its corresponding argument pack.
10969 INDEX is the index 'i' of the element Ei to produce. ARGS,
10970 COMPLAIN, and IN_DECL are the same parameters as for the
10971 tsubst_pack_expansion function.
10973 The function returns the resulting Ei upon successful completion,
10974 or error_mark_node.
10976 Note that this function possibly modifies the ARGS parameter, so
10977 it's the responsibility of the caller to restore it. */
10979 static tree
10980 gen_elem_of_pack_expansion_instantiation (tree pattern,
10981 tree parm_packs,
10982 unsigned index,
10983 tree args /* This parm gets
10984 modified. */,
10985 tsubst_flags_t complain,
10986 tree in_decl)
10988 tree t;
10989 bool ith_elem_is_expansion = false;
10991 /* For each parameter pack, change the substitution of the parameter
10992 pack to the ith argument in its argument pack, then expand the
10993 pattern. */
10994 for (tree pack = parm_packs; pack; pack = TREE_CHAIN (pack))
10996 tree parm = TREE_PURPOSE (pack);
10997 tree arg_pack = TREE_VALUE (pack);
10998 tree aps; /* instance of ARGUMENT_PACK_SELECT. */
11000 ith_elem_is_expansion |=
11001 argument_pack_element_is_expansion_p (arg_pack, index);
11003 /* Select the Ith argument from the pack. */
11004 if (TREE_CODE (parm) == PARM_DECL
11005 || TREE_CODE (parm) == FIELD_DECL)
11007 if (index == 0)
11009 aps = make_argument_pack_select (arg_pack, index);
11010 if (!mark_used (parm, complain) && !(complain & tf_error))
11011 return error_mark_node;
11012 register_local_specialization (aps, parm);
11014 else
11015 aps = retrieve_local_specialization (parm);
11017 else
11019 int idx, level;
11020 template_parm_level_and_index (parm, &level, &idx);
11022 if (index == 0)
11024 aps = make_argument_pack_select (arg_pack, index);
11025 /* Update the corresponding argument. */
11026 TMPL_ARG (args, level, idx) = aps;
11028 else
11029 /* Re-use the ARGUMENT_PACK_SELECT. */
11030 aps = TMPL_ARG (args, level, idx);
11032 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
11035 /* Substitute into the PATTERN with the (possibly altered)
11036 arguments. */
11037 if (pattern == in_decl)
11038 /* Expanding a fixed parameter pack from
11039 coerce_template_parameter_pack. */
11040 t = tsubst_decl (pattern, args, complain);
11041 else if (pattern == error_mark_node)
11042 t = error_mark_node;
11043 else if (constraint_p (pattern))
11045 if (processing_template_decl)
11046 t = tsubst_constraint (pattern, args, complain, in_decl);
11047 else
11048 t = (constraints_satisfied_p (pattern, args)
11049 ? boolean_true_node : boolean_false_node);
11051 else if (!TYPE_P (pattern))
11052 t = tsubst_expr (pattern, args, complain, in_decl,
11053 /*integral_constant_expression_p=*/false);
11054 else
11055 t = tsubst (pattern, args, complain, in_decl);
11057 /* If the Ith argument pack element is a pack expansion, then
11058 the Ith element resulting from the substituting is going to
11059 be a pack expansion as well. */
11060 if (ith_elem_is_expansion)
11061 t = make_pack_expansion (t);
11063 return t;
11066 /* When the unexpanded parameter pack in a fold expression expands to an empty
11067 sequence, the value of the expression is as follows; the program is
11068 ill-formed if the operator is not listed in this table.
11070 && true
11071 || false
11072 , void() */
11074 tree
11075 expand_empty_fold (tree t, tsubst_flags_t complain)
11077 tree_code code = (tree_code)TREE_INT_CST_LOW (TREE_OPERAND (t, 0));
11078 if (!FOLD_EXPR_MODIFY_P (t))
11079 switch (code)
11081 case TRUTH_ANDIF_EXPR:
11082 return boolean_true_node;
11083 case TRUTH_ORIF_EXPR:
11084 return boolean_false_node;
11085 case COMPOUND_EXPR:
11086 return void_node;
11087 default:
11088 break;
11091 if (complain & tf_error)
11092 error_at (location_of (t),
11093 "fold of empty expansion over %O", code);
11094 return error_mark_node;
11097 /* Given a fold-expression T and a current LEFT and RIGHT operand,
11098 form an expression that combines the two terms using the
11099 operator of T. */
11101 static tree
11102 fold_expression (tree t, tree left, tree right, tsubst_flags_t complain)
11104 tree op = FOLD_EXPR_OP (t);
11105 tree_code code = (tree_code)TREE_INT_CST_LOW (op);
11107 // Handle compound assignment operators.
11108 if (FOLD_EXPR_MODIFY_P (t))
11109 return build_x_modify_expr (input_location, left, code, right, complain);
11111 switch (code)
11113 case COMPOUND_EXPR:
11114 return build_x_compound_expr (input_location, left, right, complain);
11115 case DOTSTAR_EXPR:
11116 return build_m_component_ref (left, right, complain);
11117 default:
11118 return build_x_binary_op (input_location, code,
11119 left, TREE_CODE (left),
11120 right, TREE_CODE (right),
11121 /*overload=*/NULL,
11122 complain);
11126 /* Substitute ARGS into the pack of a fold expression T. */
11128 static inline tree
11129 tsubst_fold_expr_pack (tree t, tree args, tsubst_flags_t complain, tree in_decl)
11131 return tsubst_pack_expansion (FOLD_EXPR_PACK (t), args, complain, in_decl);
11134 /* Substitute ARGS into the pack of a fold expression T. */
11136 static inline tree
11137 tsubst_fold_expr_init (tree t, tree args, tsubst_flags_t complain, tree in_decl)
11139 return tsubst_expr (FOLD_EXPR_INIT (t), args, complain, in_decl, false);
11142 /* Expand a PACK of arguments into a grouped as left fold.
11143 Given a pack containing elements A0, A1, ..., An and an
11144 operator @, this builds the expression:
11146 ((A0 @ A1) @ A2) ... @ An
11148 Note that PACK must not be empty.
11150 The operator is defined by the original fold expression T. */
11152 static tree
11153 expand_left_fold (tree t, tree pack, tsubst_flags_t complain)
11155 tree left = TREE_VEC_ELT (pack, 0);
11156 for (int i = 1; i < TREE_VEC_LENGTH (pack); ++i)
11158 tree right = TREE_VEC_ELT (pack, i);
11159 left = fold_expression (t, left, right, complain);
11161 return left;
11164 /* Substitute into a unary left fold expression. */
11166 static tree
11167 tsubst_unary_left_fold (tree t, tree args, tsubst_flags_t complain,
11168 tree in_decl)
11170 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
11171 if (pack == error_mark_node)
11172 return error_mark_node;
11173 if (PACK_EXPANSION_P (pack))
11175 tree r = copy_node (t);
11176 FOLD_EXPR_PACK (r) = pack;
11177 return r;
11179 if (TREE_VEC_LENGTH (pack) == 0)
11180 return expand_empty_fold (t, complain);
11181 else
11182 return expand_left_fold (t, pack, complain);
11185 /* Substitute into a binary left fold expression.
11187 Do ths by building a single (non-empty) vector of argumnts and
11188 building the expression from those elements. */
11190 static tree
11191 tsubst_binary_left_fold (tree t, tree args, tsubst_flags_t complain,
11192 tree in_decl)
11194 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
11195 if (pack == error_mark_node)
11196 return error_mark_node;
11197 tree init = tsubst_fold_expr_init (t, args, complain, in_decl);
11198 if (init == error_mark_node)
11199 return error_mark_node;
11201 if (PACK_EXPANSION_P (pack))
11203 tree r = copy_node (t);
11204 FOLD_EXPR_PACK (r) = pack;
11205 FOLD_EXPR_INIT (r) = init;
11206 return r;
11209 tree vec = make_tree_vec (TREE_VEC_LENGTH (pack) + 1);
11210 TREE_VEC_ELT (vec, 0) = init;
11211 for (int i = 0; i < TREE_VEC_LENGTH (pack); ++i)
11212 TREE_VEC_ELT (vec, i + 1) = TREE_VEC_ELT (pack, i);
11214 return expand_left_fold (t, vec, complain);
11217 /* Expand a PACK of arguments into a grouped as right fold.
11218 Given a pack containing elementns A0, A1, ..., and an
11219 operator @, this builds the expression:
11221 A0@ ... (An-2 @ (An-1 @ An))
11223 Note that PACK must not be empty.
11225 The operator is defined by the original fold expression T. */
11227 tree
11228 expand_right_fold (tree t, tree pack, tsubst_flags_t complain)
11230 // Build the expression.
11231 int n = TREE_VEC_LENGTH (pack);
11232 tree right = TREE_VEC_ELT (pack, n - 1);
11233 for (--n; n != 0; --n)
11235 tree left = TREE_VEC_ELT (pack, n - 1);
11236 right = fold_expression (t, left, right, complain);
11238 return right;
11241 /* Substitute into a unary right fold expression. */
11243 static tree
11244 tsubst_unary_right_fold (tree t, tree args, tsubst_flags_t complain,
11245 tree in_decl)
11247 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
11248 if (pack == error_mark_node)
11249 return error_mark_node;
11250 if (PACK_EXPANSION_P (pack))
11252 tree r = copy_node (t);
11253 FOLD_EXPR_PACK (r) = pack;
11254 return r;
11256 if (TREE_VEC_LENGTH (pack) == 0)
11257 return expand_empty_fold (t, complain);
11258 else
11259 return expand_right_fold (t, pack, complain);
11262 /* Substitute into a binary right fold expression.
11264 Do ths by building a single (non-empty) vector of arguments and
11265 building the expression from those elements. */
11267 static tree
11268 tsubst_binary_right_fold (tree t, tree args, tsubst_flags_t complain,
11269 tree in_decl)
11271 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
11272 if (pack == error_mark_node)
11273 return error_mark_node;
11274 tree init = tsubst_fold_expr_init (t, args, complain, in_decl);
11275 if (init == error_mark_node)
11276 return error_mark_node;
11278 if (PACK_EXPANSION_P (pack))
11280 tree r = copy_node (t);
11281 FOLD_EXPR_PACK (r) = pack;
11282 FOLD_EXPR_INIT (r) = init;
11283 return r;
11286 int n = TREE_VEC_LENGTH (pack);
11287 tree vec = make_tree_vec (n + 1);
11288 for (int i = 0; i < n; ++i)
11289 TREE_VEC_ELT (vec, i) = TREE_VEC_ELT (pack, i);
11290 TREE_VEC_ELT (vec, n) = init;
11292 return expand_right_fold (t, vec, complain);
11296 /* Substitute ARGS into T, which is an pack expansion
11297 (i.e. TYPE_PACK_EXPANSION or EXPR_PACK_EXPANSION). Returns a
11298 TREE_VEC with the substituted arguments, a PACK_EXPANSION_* node
11299 (if only a partial substitution could be performed) or
11300 ERROR_MARK_NODE if there was an error. */
11301 tree
11302 tsubst_pack_expansion (tree t, tree args, tsubst_flags_t complain,
11303 tree in_decl)
11305 tree pattern;
11306 tree pack, packs = NULL_TREE;
11307 bool unsubstituted_packs = false;
11308 int i, len = -1;
11309 tree result;
11310 hash_map<tree, tree> *saved_local_specializations = NULL;
11311 bool need_local_specializations = false;
11312 int levels;
11314 gcc_assert (PACK_EXPANSION_P (t));
11315 pattern = PACK_EXPANSION_PATTERN (t);
11317 /* Add in any args remembered from an earlier partial instantiation. */
11318 args = add_to_template_args (PACK_EXPANSION_EXTRA_ARGS (t), args);
11320 levels = TMPL_ARGS_DEPTH (args);
11322 /* Determine the argument packs that will instantiate the parameter
11323 packs used in the expansion expression. While we're at it,
11324 compute the number of arguments to be expanded and make sure it
11325 is consistent. */
11326 for (pack = PACK_EXPANSION_PARAMETER_PACKS (t); pack;
11327 pack = TREE_CHAIN (pack))
11329 tree parm_pack = TREE_VALUE (pack);
11330 tree arg_pack = NULL_TREE;
11331 tree orig_arg = NULL_TREE;
11332 int level = 0;
11334 if (TREE_CODE (parm_pack) == BASES)
11336 if (BASES_DIRECT (parm_pack))
11337 return calculate_direct_bases (tsubst_expr (BASES_TYPE (parm_pack),
11338 args, complain, in_decl, false));
11339 else
11340 return calculate_bases (tsubst_expr (BASES_TYPE (parm_pack),
11341 args, complain, in_decl, false));
11343 if (TREE_CODE (parm_pack) == PARM_DECL)
11345 /* We know we have correct local_specializations if this
11346 expansion is at function scope, or if we're dealing with a
11347 local parameter in a requires expression; for the latter,
11348 tsubst_requires_expr set it up appropriately. */
11349 if (PACK_EXPANSION_LOCAL_P (t) || CONSTRAINT_VAR_P (parm_pack))
11350 arg_pack = retrieve_local_specialization (parm_pack);
11351 else
11352 /* We can't rely on local_specializations for a parameter
11353 name used later in a function declaration (such as in a
11354 late-specified return type). Even if it exists, it might
11355 have the wrong value for a recursive call. */
11356 need_local_specializations = true;
11358 if (!arg_pack)
11360 /* This parameter pack was used in an unevaluated context. Just
11361 make a dummy decl, since it's only used for its type. */
11362 arg_pack = tsubst_decl (parm_pack, args, complain);
11363 if (arg_pack && DECL_PACK_P (arg_pack))
11364 /* Partial instantiation of the parm_pack, we can't build
11365 up an argument pack yet. */
11366 arg_pack = NULL_TREE;
11367 else
11368 arg_pack = make_fnparm_pack (arg_pack);
11371 else if (TREE_CODE (parm_pack) == FIELD_DECL)
11372 arg_pack = tsubst_copy (parm_pack, args, complain, in_decl);
11373 else
11375 int idx;
11376 template_parm_level_and_index (parm_pack, &level, &idx);
11378 if (level <= levels)
11379 arg_pack = TMPL_ARG (args, level, idx);
11382 orig_arg = arg_pack;
11383 if (arg_pack && TREE_CODE (arg_pack) == ARGUMENT_PACK_SELECT)
11384 arg_pack = ARGUMENT_PACK_SELECT_FROM_PACK (arg_pack);
11386 if (arg_pack && !ARGUMENT_PACK_P (arg_pack))
11387 /* This can only happen if we forget to expand an argument
11388 pack somewhere else. Just return an error, silently. */
11390 result = make_tree_vec (1);
11391 TREE_VEC_ELT (result, 0) = error_mark_node;
11392 return result;
11395 if (arg_pack)
11397 int my_len =
11398 TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg_pack));
11400 /* Don't bother trying to do a partial substitution with
11401 incomplete packs; we'll try again after deduction. */
11402 if (ARGUMENT_PACK_INCOMPLETE_P (arg_pack))
11403 return t;
11405 if (len < 0)
11406 len = my_len;
11407 else if (len != my_len)
11409 if (!(complain & tf_error))
11410 /* Fail quietly. */;
11411 else if (TREE_CODE (t) == TYPE_PACK_EXPANSION)
11412 error ("mismatched argument pack lengths while expanding "
11413 "%<%T%>",
11414 pattern);
11415 else
11416 error ("mismatched argument pack lengths while expanding "
11417 "%<%E%>",
11418 pattern);
11419 return error_mark_node;
11422 /* Keep track of the parameter packs and their corresponding
11423 argument packs. */
11424 packs = tree_cons (parm_pack, arg_pack, packs);
11425 TREE_TYPE (packs) = orig_arg;
11427 else
11429 /* We can't substitute for this parameter pack. We use a flag as
11430 well as the missing_level counter because function parameter
11431 packs don't have a level. */
11432 gcc_assert (processing_template_decl);
11433 unsubstituted_packs = true;
11437 /* If the expansion is just T..., return the matching argument pack, unless
11438 we need to call convert_from_reference on all the elements. This is an
11439 important optimization; see c++/68422. */
11440 if (!unsubstituted_packs
11441 && TREE_PURPOSE (packs) == pattern)
11443 tree args = ARGUMENT_PACK_ARGS (TREE_VALUE (packs));
11444 /* Types need no adjustment, nor does sizeof..., and if we still have
11445 some pack expansion args we won't do anything yet. */
11446 if (TREE_CODE (t) == TYPE_PACK_EXPANSION
11447 || PACK_EXPANSION_SIZEOF_P (t)
11448 || pack_expansion_args_count (args))
11449 return args;
11450 /* Also optimize expression pack expansions if we can tell that the
11451 elements won't have reference type. */
11452 tree type = TREE_TYPE (pattern);
11453 if (type && TREE_CODE (type) != REFERENCE_TYPE
11454 && !PACK_EXPANSION_P (type)
11455 && !WILDCARD_TYPE_P (type))
11456 return args;
11457 /* Otherwise use the normal path so we get convert_from_reference. */
11460 /* We cannot expand this expansion expression, because we don't have
11461 all of the argument packs we need. */
11462 if (use_pack_expansion_extra_args_p (packs, len, unsubstituted_packs))
11464 /* We got some full packs, but we can't substitute them in until we
11465 have values for all the packs. So remember these until then. */
11467 t = make_pack_expansion (pattern);
11468 PACK_EXPANSION_EXTRA_ARGS (t) = args;
11469 return t;
11471 else if (unsubstituted_packs)
11473 /* There were no real arguments, we're just replacing a parameter
11474 pack with another version of itself. Substitute into the
11475 pattern and return a PACK_EXPANSION_*. The caller will need to
11476 deal with that. */
11477 if (TREE_CODE (t) == EXPR_PACK_EXPANSION)
11478 t = tsubst_expr (pattern, args, complain, in_decl,
11479 /*integral_constant_expression_p=*/false);
11480 else
11481 t = tsubst (pattern, args, complain, in_decl);
11482 t = make_pack_expansion (t);
11483 return t;
11486 gcc_assert (len >= 0);
11488 if (need_local_specializations)
11490 /* We're in a late-specified return type, so create our own local
11491 specializations map; the current map is either NULL or (in the
11492 case of recursive unification) might have bindings that we don't
11493 want to use or alter. */
11494 saved_local_specializations = local_specializations;
11495 local_specializations = new hash_map<tree, tree>;
11498 /* For each argument in each argument pack, substitute into the
11499 pattern. */
11500 result = make_tree_vec (len);
11501 tree elem_args = copy_template_args (args);
11502 for (i = 0; i < len; ++i)
11504 t = gen_elem_of_pack_expansion_instantiation (pattern, packs,
11506 elem_args, complain,
11507 in_decl);
11508 TREE_VEC_ELT (result, i) = t;
11509 if (t == error_mark_node)
11511 result = error_mark_node;
11512 break;
11516 /* Update ARGS to restore the substitution from parameter packs to
11517 their argument packs. */
11518 for (pack = packs; pack; pack = TREE_CHAIN (pack))
11520 tree parm = TREE_PURPOSE (pack);
11522 if (TREE_CODE (parm) == PARM_DECL
11523 || TREE_CODE (parm) == FIELD_DECL)
11524 register_local_specialization (TREE_TYPE (pack), parm);
11525 else
11527 int idx, level;
11529 if (TREE_VALUE (pack) == NULL_TREE)
11530 continue;
11532 template_parm_level_and_index (parm, &level, &idx);
11534 /* Update the corresponding argument. */
11535 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
11536 TREE_VEC_ELT (TREE_VEC_ELT (args, level -1 ), idx) =
11537 TREE_TYPE (pack);
11538 else
11539 TREE_VEC_ELT (args, idx) = TREE_TYPE (pack);
11543 if (need_local_specializations)
11545 delete local_specializations;
11546 local_specializations = saved_local_specializations;
11549 /* If the dependent pack arguments were such that we end up with only a
11550 single pack expansion again, there's no need to keep it in a TREE_VEC. */
11551 if (len == 1 && TREE_CODE (result) == TREE_VEC
11552 && PACK_EXPANSION_P (TREE_VEC_ELT (result, 0)))
11553 return TREE_VEC_ELT (result, 0);
11555 return result;
11558 /* Given PARM_DECL PARM, find the corresponding PARM_DECL in the template
11559 TMPL. We do this using DECL_PARM_INDEX, which should work even with
11560 parameter packs; all parms generated from a function parameter pack will
11561 have the same DECL_PARM_INDEX. */
11563 tree
11564 get_pattern_parm (tree parm, tree tmpl)
11566 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
11567 tree patparm;
11569 if (DECL_ARTIFICIAL (parm))
11571 for (patparm = DECL_ARGUMENTS (pattern);
11572 patparm; patparm = DECL_CHAIN (patparm))
11573 if (DECL_ARTIFICIAL (patparm)
11574 && DECL_NAME (parm) == DECL_NAME (patparm))
11575 break;
11577 else
11579 patparm = FUNCTION_FIRST_USER_PARM (DECL_TEMPLATE_RESULT (tmpl));
11580 patparm = chain_index (DECL_PARM_INDEX (parm)-1, patparm);
11581 gcc_assert (DECL_PARM_INDEX (patparm)
11582 == DECL_PARM_INDEX (parm));
11585 return patparm;
11588 /* Make an argument pack out of the TREE_VEC VEC. */
11590 static tree
11591 make_argument_pack (tree vec)
11593 tree pack;
11594 tree elt = TREE_VEC_ELT (vec, 0);
11595 if (TYPE_P (elt))
11596 pack = cxx_make_type (TYPE_ARGUMENT_PACK);
11597 else
11599 pack = make_node (NONTYPE_ARGUMENT_PACK);
11600 TREE_TYPE (pack) = TREE_TYPE (elt);
11601 TREE_CONSTANT (pack) = 1;
11603 SET_ARGUMENT_PACK_ARGS (pack, vec);
11604 return pack;
11607 /* Return an exact copy of template args T that can be modified
11608 independently. */
11610 static tree
11611 copy_template_args (tree t)
11613 if (t == error_mark_node)
11614 return t;
11616 int len = TREE_VEC_LENGTH (t);
11617 tree new_vec = make_tree_vec (len);
11619 for (int i = 0; i < len; ++i)
11621 tree elt = TREE_VEC_ELT (t, i);
11622 if (elt && TREE_CODE (elt) == TREE_VEC)
11623 elt = copy_template_args (elt);
11624 TREE_VEC_ELT (new_vec, i) = elt;
11627 NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_vec)
11628 = NON_DEFAULT_TEMPLATE_ARGS_COUNT (t);
11630 return new_vec;
11633 /* Substitute ARGS into the vector or list of template arguments T. */
11635 static tree
11636 tsubst_template_args (tree t, tree args, tsubst_flags_t complain, tree in_decl)
11638 tree orig_t = t;
11639 int len, need_new = 0, i, expanded_len_adjust = 0, out;
11640 tree *elts;
11642 if (t == error_mark_node)
11643 return error_mark_node;
11645 len = TREE_VEC_LENGTH (t);
11646 elts = XALLOCAVEC (tree, len);
11648 for (i = 0; i < len; i++)
11650 tree orig_arg = TREE_VEC_ELT (t, i);
11651 tree new_arg;
11653 if (TREE_CODE (orig_arg) == TREE_VEC)
11654 new_arg = tsubst_template_args (orig_arg, args, complain, in_decl);
11655 else if (PACK_EXPANSION_P (orig_arg))
11657 /* Substitute into an expansion expression. */
11658 new_arg = tsubst_pack_expansion (orig_arg, args, complain, in_decl);
11660 if (TREE_CODE (new_arg) == TREE_VEC)
11661 /* Add to the expanded length adjustment the number of
11662 expanded arguments. We subtract one from this
11663 measurement, because the argument pack expression
11664 itself is already counted as 1 in
11665 LEN. EXPANDED_LEN_ADJUST can actually be negative, if
11666 the argument pack is empty. */
11667 expanded_len_adjust += TREE_VEC_LENGTH (new_arg) - 1;
11669 else if (ARGUMENT_PACK_P (orig_arg))
11671 /* Substitute into each of the arguments. */
11672 new_arg = TYPE_P (orig_arg)
11673 ? cxx_make_type (TREE_CODE (orig_arg))
11674 : make_node (TREE_CODE (orig_arg));
11676 SET_ARGUMENT_PACK_ARGS (
11677 new_arg,
11678 tsubst_template_args (ARGUMENT_PACK_ARGS (orig_arg),
11679 args, complain, in_decl));
11681 if (ARGUMENT_PACK_ARGS (new_arg) == error_mark_node)
11682 new_arg = error_mark_node;
11684 if (TREE_CODE (new_arg) == NONTYPE_ARGUMENT_PACK) {
11685 if (type_uses_auto (TREE_TYPE (orig_arg)))
11686 TREE_TYPE (new_arg) = TREE_TYPE (orig_arg);
11687 else
11688 TREE_TYPE (new_arg) = tsubst (TREE_TYPE (orig_arg), args,
11689 complain, in_decl);
11690 TREE_CONSTANT (new_arg) = TREE_CONSTANT (orig_arg);
11692 if (TREE_TYPE (new_arg) == error_mark_node)
11693 new_arg = error_mark_node;
11696 else
11697 new_arg = tsubst_template_arg (orig_arg, args, complain, in_decl);
11699 if (new_arg == error_mark_node)
11700 return error_mark_node;
11702 elts[i] = new_arg;
11703 if (new_arg != orig_arg)
11704 need_new = 1;
11707 if (!need_new)
11708 return t;
11710 /* Make space for the expanded arguments coming from template
11711 argument packs. */
11712 t = make_tree_vec (len + expanded_len_adjust);
11713 /* ORIG_T can contain TREE_VECs. That happens if ORIG_T contains the
11714 arguments for a member template.
11715 In that case each TREE_VEC in ORIG_T represents a level of template
11716 arguments, and ORIG_T won't carry any non defaulted argument count.
11717 It will rather be the nested TREE_VECs that will carry one.
11718 In other words, ORIG_T carries a non defaulted argument count only
11719 if it doesn't contain any nested TREE_VEC. */
11720 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t))
11722 int count = GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t);
11723 count += expanded_len_adjust;
11724 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (t, count);
11726 for (i = 0, out = 0; i < len; i++)
11728 if ((PACK_EXPANSION_P (TREE_VEC_ELT (orig_t, i))
11729 || ARGUMENT_PACK_P (TREE_VEC_ELT (orig_t, i)))
11730 && TREE_CODE (elts[i]) == TREE_VEC)
11732 int idx;
11734 /* Now expand the template argument pack "in place". */
11735 for (idx = 0; idx < TREE_VEC_LENGTH (elts[i]); idx++, out++)
11736 TREE_VEC_ELT (t, out) = TREE_VEC_ELT (elts[i], idx);
11738 else
11740 TREE_VEC_ELT (t, out) = elts[i];
11741 out++;
11745 return t;
11748 /* Substitute ARGS into one level PARMS of template parameters. */
11750 static tree
11751 tsubst_template_parms_level (tree parms, tree args, tsubst_flags_t complain)
11753 if (parms == error_mark_node)
11754 return error_mark_node;
11756 tree new_vec = make_tree_vec (TREE_VEC_LENGTH (parms));
11758 for (int i = 0; i < TREE_VEC_LENGTH (new_vec); ++i)
11760 tree tuple = TREE_VEC_ELT (parms, i);
11762 if (tuple == error_mark_node)
11763 continue;
11765 TREE_VEC_ELT (new_vec, i) =
11766 tsubst_template_parm (tuple, args, complain);
11769 return new_vec;
11772 /* Return the result of substituting ARGS into the template parameters
11773 given by PARMS. If there are m levels of ARGS and m + n levels of
11774 PARMS, then the result will contain n levels of PARMS. For
11775 example, if PARMS is `template <class T> template <class U>
11776 template <T*, U, class V>' and ARGS is {{int}, {double}} then the
11777 result will be `template <int*, double, class V>'. */
11779 static tree
11780 tsubst_template_parms (tree parms, tree args, tsubst_flags_t complain)
11782 tree r = NULL_TREE;
11783 tree* new_parms;
11785 /* When substituting into a template, we must set
11786 PROCESSING_TEMPLATE_DECL as the template parameters may be
11787 dependent if they are based on one-another, and the dependency
11788 predicates are short-circuit outside of templates. */
11789 ++processing_template_decl;
11791 for (new_parms = &r;
11792 parms && TMPL_PARMS_DEPTH (parms) > TMPL_ARGS_DEPTH (args);
11793 new_parms = &(TREE_CHAIN (*new_parms)),
11794 parms = TREE_CHAIN (parms))
11796 tree new_vec = tsubst_template_parms_level (TREE_VALUE (parms),
11797 args, complain);
11798 *new_parms =
11799 tree_cons (size_int (TMPL_PARMS_DEPTH (parms)
11800 - TMPL_ARGS_DEPTH (args)),
11801 new_vec, NULL_TREE);
11804 --processing_template_decl;
11806 return r;
11809 /* Return the result of substituting ARGS into one template parameter
11810 given by T. T Must be a TREE_LIST which TREE_VALUE is the template
11811 parameter and which TREE_PURPOSE is the default argument of the
11812 template parameter. */
11814 static tree
11815 tsubst_template_parm (tree t, tree args, tsubst_flags_t complain)
11817 tree default_value, parm_decl;
11819 if (args == NULL_TREE
11820 || t == NULL_TREE
11821 || t == error_mark_node)
11822 return t;
11824 gcc_assert (TREE_CODE (t) == TREE_LIST);
11826 default_value = TREE_PURPOSE (t);
11827 parm_decl = TREE_VALUE (t);
11829 parm_decl = tsubst (parm_decl, args, complain, NULL_TREE);
11830 if (TREE_CODE (parm_decl) == PARM_DECL
11831 && invalid_nontype_parm_type_p (TREE_TYPE (parm_decl), complain))
11832 parm_decl = error_mark_node;
11833 default_value = tsubst_template_arg (default_value, args,
11834 complain, NULL_TREE);
11836 return build_tree_list (default_value, parm_decl);
11839 /* Substitute the ARGS into the indicated aggregate (or enumeration)
11840 type T. If T is not an aggregate or enumeration type, it is
11841 handled as if by tsubst. IN_DECL is as for tsubst. If
11842 ENTERING_SCOPE is nonzero, T is the context for a template which
11843 we are presently tsubst'ing. Return the substituted value. */
11845 static tree
11846 tsubst_aggr_type (tree t,
11847 tree args,
11848 tsubst_flags_t complain,
11849 tree in_decl,
11850 int entering_scope)
11852 if (t == NULL_TREE)
11853 return NULL_TREE;
11855 switch (TREE_CODE (t))
11857 case RECORD_TYPE:
11858 if (TYPE_PTRMEMFUNC_P (t))
11859 return tsubst (TYPE_PTRMEMFUNC_FN_TYPE (t), args, complain, in_decl);
11861 /* Fall through. */
11862 case ENUMERAL_TYPE:
11863 case UNION_TYPE:
11864 if (TYPE_TEMPLATE_INFO (t) && uses_template_parms (t))
11866 tree argvec;
11867 tree context;
11868 tree r;
11869 int saved_unevaluated_operand;
11870 int saved_inhibit_evaluation_warnings;
11872 /* In "sizeof(X<I>)" we need to evaluate "I". */
11873 saved_unevaluated_operand = cp_unevaluated_operand;
11874 cp_unevaluated_operand = 0;
11875 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
11876 c_inhibit_evaluation_warnings = 0;
11878 /* First, determine the context for the type we are looking
11879 up. */
11880 context = TYPE_CONTEXT (t);
11881 if (context && TYPE_P (context))
11883 context = tsubst_aggr_type (context, args, complain,
11884 in_decl, /*entering_scope=*/1);
11885 /* If context is a nested class inside a class template,
11886 it may still need to be instantiated (c++/33959). */
11887 context = complete_type (context);
11890 /* Then, figure out what arguments are appropriate for the
11891 type we are trying to find. For example, given:
11893 template <class T> struct S;
11894 template <class T, class U> void f(T, U) { S<U> su; }
11896 and supposing that we are instantiating f<int, double>,
11897 then our ARGS will be {int, double}, but, when looking up
11898 S we only want {double}. */
11899 argvec = tsubst_template_args (TYPE_TI_ARGS (t), args,
11900 complain, in_decl);
11901 if (argvec == error_mark_node)
11902 r = error_mark_node;
11903 else
11905 r = lookup_template_class (t, argvec, in_decl, context,
11906 entering_scope, complain);
11907 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
11910 cp_unevaluated_operand = saved_unevaluated_operand;
11911 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
11913 return r;
11915 else
11916 /* This is not a template type, so there's nothing to do. */
11917 return t;
11919 default:
11920 return tsubst (t, args, complain, in_decl);
11924 /* Substitute into the default argument ARG (a default argument for
11925 FN), which has the indicated TYPE. */
11927 tree
11928 tsubst_default_argument (tree fn, tree type, tree arg, tsubst_flags_t complain)
11930 tree saved_class_ptr = NULL_TREE;
11931 tree saved_class_ref = NULL_TREE;
11932 int errs = errorcount + sorrycount;
11934 /* This can happen in invalid code. */
11935 if (TREE_CODE (arg) == DEFAULT_ARG)
11936 return arg;
11938 /* This default argument came from a template. Instantiate the
11939 default argument here, not in tsubst. In the case of
11940 something like:
11942 template <class T>
11943 struct S {
11944 static T t();
11945 void f(T = t());
11948 we must be careful to do name lookup in the scope of S<T>,
11949 rather than in the current class. */
11950 push_access_scope (fn);
11951 /* The "this" pointer is not valid in a default argument. */
11952 if (cfun)
11954 saved_class_ptr = current_class_ptr;
11955 cp_function_chain->x_current_class_ptr = NULL_TREE;
11956 saved_class_ref = current_class_ref;
11957 cp_function_chain->x_current_class_ref = NULL_TREE;
11960 push_deferring_access_checks(dk_no_deferred);
11961 /* The default argument expression may cause implicitly defined
11962 member functions to be synthesized, which will result in garbage
11963 collection. We must treat this situation as if we were within
11964 the body of function so as to avoid collecting live data on the
11965 stack. */
11966 ++function_depth;
11967 arg = tsubst_expr (arg, DECL_TI_ARGS (fn),
11968 complain, NULL_TREE,
11969 /*integral_constant_expression_p=*/false);
11970 --function_depth;
11971 pop_deferring_access_checks();
11973 /* Restore the "this" pointer. */
11974 if (cfun)
11976 cp_function_chain->x_current_class_ptr = saved_class_ptr;
11977 cp_function_chain->x_current_class_ref = saved_class_ref;
11980 if (errorcount+sorrycount > errs
11981 && (complain & tf_warning_or_error))
11982 inform (input_location,
11983 " when instantiating default argument for call to %D", fn);
11985 /* Make sure the default argument is reasonable. */
11986 arg = check_default_argument (type, arg, complain);
11988 pop_access_scope (fn);
11990 return arg;
11993 /* Substitute into all the default arguments for FN. */
11995 static void
11996 tsubst_default_arguments (tree fn, tsubst_flags_t complain)
11998 tree arg;
11999 tree tmpl_args;
12001 tmpl_args = DECL_TI_ARGS (fn);
12003 /* If this function is not yet instantiated, we certainly don't need
12004 its default arguments. */
12005 if (uses_template_parms (tmpl_args))
12006 return;
12007 /* Don't do this again for clones. */
12008 if (DECL_CLONED_FUNCTION_P (fn))
12009 return;
12011 for (arg = TYPE_ARG_TYPES (TREE_TYPE (fn));
12012 arg;
12013 arg = TREE_CHAIN (arg))
12014 if (TREE_PURPOSE (arg))
12015 TREE_PURPOSE (arg) = tsubst_default_argument (fn,
12016 TREE_VALUE (arg),
12017 TREE_PURPOSE (arg),
12018 complain);
12021 /* Substitute the ARGS into the T, which is a _DECL. Return the
12022 result of the substitution. Issue error and warning messages under
12023 control of COMPLAIN. */
12025 static tree
12026 tsubst_decl (tree t, tree args, tsubst_flags_t complain)
12028 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
12029 location_t saved_loc;
12030 tree r = NULL_TREE;
12031 tree in_decl = t;
12032 hashval_t hash = 0;
12034 /* Set the filename and linenumber to improve error-reporting. */
12035 saved_loc = input_location;
12036 input_location = DECL_SOURCE_LOCATION (t);
12038 switch (TREE_CODE (t))
12040 case TEMPLATE_DECL:
12042 /* We can get here when processing a member function template,
12043 member class template, or template template parameter. */
12044 tree decl = DECL_TEMPLATE_RESULT (t);
12045 tree spec;
12046 tree tmpl_args;
12047 tree full_args;
12049 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
12051 /* Template template parameter is treated here. */
12052 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12053 if (new_type == error_mark_node)
12054 r = error_mark_node;
12055 /* If we get a real template back, return it. This can happen in
12056 the context of most_specialized_partial_spec. */
12057 else if (TREE_CODE (new_type) == TEMPLATE_DECL)
12058 r = new_type;
12059 else
12060 /* The new TEMPLATE_DECL was built in
12061 reduce_template_parm_level. */
12062 r = TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (new_type);
12063 break;
12066 /* We might already have an instance of this template.
12067 The ARGS are for the surrounding class type, so the
12068 full args contain the tsubst'd args for the context,
12069 plus the innermost args from the template decl. */
12070 tmpl_args = DECL_CLASS_TEMPLATE_P (t)
12071 ? CLASSTYPE_TI_ARGS (TREE_TYPE (t))
12072 : DECL_TI_ARGS (DECL_TEMPLATE_RESULT (t));
12073 /* Because this is a template, the arguments will still be
12074 dependent, even after substitution. If
12075 PROCESSING_TEMPLATE_DECL is not set, the dependency
12076 predicates will short-circuit. */
12077 ++processing_template_decl;
12078 full_args = tsubst_template_args (tmpl_args, args,
12079 complain, in_decl);
12080 --processing_template_decl;
12081 if (full_args == error_mark_node)
12082 RETURN (error_mark_node);
12084 /* If this is a default template template argument,
12085 tsubst might not have changed anything. */
12086 if (full_args == tmpl_args)
12087 RETURN (t);
12089 hash = hash_tmpl_and_args (t, full_args);
12090 spec = retrieve_specialization (t, full_args, hash);
12091 if (spec != NULL_TREE)
12093 r = spec;
12094 break;
12097 /* Make a new template decl. It will be similar to the
12098 original, but will record the current template arguments.
12099 We also create a new function declaration, which is just
12100 like the old one, but points to this new template, rather
12101 than the old one. */
12102 r = copy_decl (t);
12103 gcc_assert (DECL_LANG_SPECIFIC (r) != 0);
12104 DECL_CHAIN (r) = NULL_TREE;
12106 // Build new template info linking to the original template decl.
12107 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
12109 if (TREE_CODE (decl) == TYPE_DECL
12110 && !TYPE_DECL_ALIAS_P (decl))
12112 tree new_type;
12113 ++processing_template_decl;
12114 new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12115 --processing_template_decl;
12116 if (new_type == error_mark_node)
12117 RETURN (error_mark_node);
12119 TREE_TYPE (r) = new_type;
12120 /* For a partial specialization, we need to keep pointing to
12121 the primary template. */
12122 if (!DECL_TEMPLATE_SPECIALIZATION (t))
12123 CLASSTYPE_TI_TEMPLATE (new_type) = r;
12124 DECL_TEMPLATE_RESULT (r) = TYPE_MAIN_DECL (new_type);
12125 DECL_TI_ARGS (r) = CLASSTYPE_TI_ARGS (new_type);
12126 DECL_CONTEXT (r) = TYPE_CONTEXT (new_type);
12128 else
12130 tree new_decl;
12131 ++processing_template_decl;
12132 new_decl = tsubst (decl, args, complain, in_decl);
12133 --processing_template_decl;
12134 if (new_decl == error_mark_node)
12135 RETURN (error_mark_node);
12137 DECL_TEMPLATE_RESULT (r) = new_decl;
12138 DECL_TI_TEMPLATE (new_decl) = r;
12139 TREE_TYPE (r) = TREE_TYPE (new_decl);
12140 DECL_TI_ARGS (r) = DECL_TI_ARGS (new_decl);
12141 DECL_CONTEXT (r) = DECL_CONTEXT (new_decl);
12144 SET_DECL_IMPLICIT_INSTANTIATION (r);
12145 DECL_TEMPLATE_INSTANTIATIONS (r) = NULL_TREE;
12146 DECL_TEMPLATE_SPECIALIZATIONS (r) = NULL_TREE;
12148 /* The template parameters for this new template are all the
12149 template parameters for the old template, except the
12150 outermost level of parameters. */
12151 DECL_TEMPLATE_PARMS (r)
12152 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
12153 complain);
12155 if (PRIMARY_TEMPLATE_P (t))
12156 DECL_PRIMARY_TEMPLATE (r) = r;
12158 if (TREE_CODE (decl) != TYPE_DECL && !VAR_P (decl))
12159 /* Record this non-type partial instantiation. */
12160 register_specialization (r, t,
12161 DECL_TI_ARGS (DECL_TEMPLATE_RESULT (r)),
12162 false, hash);
12164 break;
12166 case FUNCTION_DECL:
12168 tree ctx;
12169 tree argvec = NULL_TREE;
12170 tree *friends;
12171 tree gen_tmpl;
12172 tree type;
12173 int member;
12174 int args_depth;
12175 int parms_depth;
12177 /* Nobody should be tsubst'ing into non-template functions. */
12178 gcc_assert (DECL_TEMPLATE_INFO (t) != NULL_TREE);
12180 if (TREE_CODE (DECL_TI_TEMPLATE (t)) == TEMPLATE_DECL)
12182 tree spec;
12184 /* If T is not dependent, just return it. */
12185 if (!uses_template_parms (DECL_TI_ARGS (t)))
12186 RETURN (t);
12188 /* Calculate the most general template of which R is a
12189 specialization, and the complete set of arguments used to
12190 specialize R. */
12191 gen_tmpl = most_general_template (DECL_TI_TEMPLATE (t));
12192 argvec = tsubst_template_args (DECL_TI_ARGS
12193 (DECL_TEMPLATE_RESULT
12194 (DECL_TI_TEMPLATE (t))),
12195 args, complain, in_decl);
12196 if (argvec == error_mark_node)
12197 RETURN (error_mark_node);
12199 /* Check to see if we already have this specialization. */
12200 hash = hash_tmpl_and_args (gen_tmpl, argvec);
12201 spec = retrieve_specialization (gen_tmpl, argvec, hash);
12203 if (spec)
12205 r = spec;
12206 break;
12209 /* We can see more levels of arguments than parameters if
12210 there was a specialization of a member template, like
12211 this:
12213 template <class T> struct S { template <class U> void f(); }
12214 template <> template <class U> void S<int>::f(U);
12216 Here, we'll be substituting into the specialization,
12217 because that's where we can find the code we actually
12218 want to generate, but we'll have enough arguments for
12219 the most general template.
12221 We also deal with the peculiar case:
12223 template <class T> struct S {
12224 template <class U> friend void f();
12226 template <class U> void f() {}
12227 template S<int>;
12228 template void f<double>();
12230 Here, the ARGS for the instantiation of will be {int,
12231 double}. But, we only need as many ARGS as there are
12232 levels of template parameters in CODE_PATTERN. We are
12233 careful not to get fooled into reducing the ARGS in
12234 situations like:
12236 template <class T> struct S { template <class U> void f(U); }
12237 template <class T> template <> void S<T>::f(int) {}
12239 which we can spot because the pattern will be a
12240 specialization in this case. */
12241 args_depth = TMPL_ARGS_DEPTH (args);
12242 parms_depth =
12243 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (t)));
12244 if (args_depth > parms_depth
12245 && !DECL_TEMPLATE_SPECIALIZATION (t))
12246 args = get_innermost_template_args (args, parms_depth);
12248 else
12250 /* This special case arises when we have something like this:
12252 template <class T> struct S {
12253 friend void f<int>(int, double);
12256 Here, the DECL_TI_TEMPLATE for the friend declaration
12257 will be an IDENTIFIER_NODE. We are being called from
12258 tsubst_friend_function, and we want only to create a
12259 new decl (R) with appropriate types so that we can call
12260 determine_specialization. */
12261 gen_tmpl = NULL_TREE;
12264 if (DECL_CLASS_SCOPE_P (t))
12266 if (DECL_NAME (t) == constructor_name (DECL_CONTEXT (t)))
12267 member = 2;
12268 else
12269 member = 1;
12270 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args,
12271 complain, t, /*entering_scope=*/1);
12273 else
12275 member = 0;
12276 ctx = DECL_CONTEXT (t);
12278 type = tsubst (TREE_TYPE (t), args, complain|tf_fndecl_type, in_decl);
12279 if (type == error_mark_node)
12280 RETURN (error_mark_node);
12282 /* If we hit excessive deduction depth, the type is bogus even if
12283 it isn't error_mark_node, so don't build a decl. */
12284 if (excessive_deduction_depth)
12285 RETURN (error_mark_node);
12287 /* We do NOT check for matching decls pushed separately at this
12288 point, as they may not represent instantiations of this
12289 template, and in any case are considered separate under the
12290 discrete model. */
12291 r = copy_decl (t);
12292 DECL_USE_TEMPLATE (r) = 0;
12293 TREE_TYPE (r) = type;
12294 /* Clear out the mangled name and RTL for the instantiation. */
12295 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
12296 SET_DECL_RTL (r, NULL);
12297 /* Leave DECL_INITIAL set on deleted instantiations. */
12298 if (!DECL_DELETED_FN (r))
12299 DECL_INITIAL (r) = NULL_TREE;
12300 DECL_CONTEXT (r) = ctx;
12302 /* OpenMP UDRs have the only argument a reference to the declared
12303 type. We want to diagnose if the declared type is a reference,
12304 which is invalid, but as references to references are usually
12305 quietly merged, diagnose it here. */
12306 if (DECL_OMP_DECLARE_REDUCTION_P (t))
12308 tree argtype
12309 = TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (t))));
12310 argtype = tsubst (argtype, args, complain, in_decl);
12311 if (TREE_CODE (argtype) == REFERENCE_TYPE)
12312 error_at (DECL_SOURCE_LOCATION (t),
12313 "reference type %qT in "
12314 "%<#pragma omp declare reduction%>", argtype);
12315 if (strchr (IDENTIFIER_POINTER (DECL_NAME (t)), '~') == NULL)
12316 DECL_NAME (r) = omp_reduction_id (ERROR_MARK, DECL_NAME (t),
12317 argtype);
12320 if (member && DECL_CONV_FN_P (r))
12321 /* Type-conversion operator. Reconstruct the name, in
12322 case it's the name of one of the template's parameters. */
12323 DECL_NAME (r) = mangle_conv_op_name_for_type (TREE_TYPE (type));
12325 DECL_ARGUMENTS (r) = tsubst (DECL_ARGUMENTS (t), args,
12326 complain, t);
12327 DECL_RESULT (r) = NULL_TREE;
12329 TREE_STATIC (r) = 0;
12330 TREE_PUBLIC (r) = TREE_PUBLIC (t);
12331 DECL_EXTERNAL (r) = 1;
12332 /* If this is an instantiation of a function with internal
12333 linkage, we already know what object file linkage will be
12334 assigned to the instantiation. */
12335 DECL_INTERFACE_KNOWN (r) = !TREE_PUBLIC (r);
12336 DECL_DEFER_OUTPUT (r) = 0;
12337 DECL_CHAIN (r) = NULL_TREE;
12338 DECL_PENDING_INLINE_INFO (r) = 0;
12339 DECL_PENDING_INLINE_P (r) = 0;
12340 DECL_SAVED_TREE (r) = NULL_TREE;
12341 DECL_STRUCT_FUNCTION (r) = NULL;
12342 TREE_USED (r) = 0;
12343 /* We'll re-clone as appropriate in instantiate_template. */
12344 DECL_CLONED_FUNCTION (r) = NULL_TREE;
12346 /* If we aren't complaining now, return on error before we register
12347 the specialization so that we'll complain eventually. */
12348 if ((complain & tf_error) == 0
12349 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
12350 && !grok_op_properties (r, /*complain=*/false))
12351 RETURN (error_mark_node);
12353 /* When instantiating a constrained member, substitute
12354 into the constraints to create a new constraint. */
12355 if (tree ci = get_constraints (t))
12356 if (member)
12358 ci = tsubst_constraint_info (ci, argvec, complain, NULL_TREE);
12359 set_constraints (r, ci);
12362 /* Set up the DECL_TEMPLATE_INFO for R. There's no need to do
12363 this in the special friend case mentioned above where
12364 GEN_TMPL is NULL. */
12365 if (gen_tmpl)
12367 DECL_TEMPLATE_INFO (r)
12368 = build_template_info (gen_tmpl, argvec);
12369 SET_DECL_IMPLICIT_INSTANTIATION (r);
12371 tree new_r
12372 = register_specialization (r, gen_tmpl, argvec, false, hash);
12373 if (new_r != r)
12374 /* We instantiated this while substituting into
12375 the type earlier (template/friend54.C). */
12376 RETURN (new_r);
12378 /* We're not supposed to instantiate default arguments
12379 until they are called, for a template. But, for a
12380 declaration like:
12382 template <class T> void f ()
12383 { extern void g(int i = T()); }
12385 we should do the substitution when the template is
12386 instantiated. We handle the member function case in
12387 instantiate_class_template since the default arguments
12388 might refer to other members of the class. */
12389 if (!member
12390 && !PRIMARY_TEMPLATE_P (gen_tmpl)
12391 && !uses_template_parms (argvec))
12392 tsubst_default_arguments (r, complain);
12394 else
12395 DECL_TEMPLATE_INFO (r) = NULL_TREE;
12397 /* Copy the list of befriending classes. */
12398 for (friends = &DECL_BEFRIENDING_CLASSES (r);
12399 *friends;
12400 friends = &TREE_CHAIN (*friends))
12402 *friends = copy_node (*friends);
12403 TREE_VALUE (*friends) = tsubst (TREE_VALUE (*friends),
12404 args, complain,
12405 in_decl);
12408 if (DECL_CONSTRUCTOR_P (r) || DECL_DESTRUCTOR_P (r))
12410 maybe_retrofit_in_chrg (r);
12411 if (DECL_CONSTRUCTOR_P (r))
12412 grok_ctor_properties (ctx, r);
12413 /* If this is an instantiation of a member template, clone it.
12414 If it isn't, that'll be handled by
12415 clone_constructors_and_destructors. */
12416 if (PRIMARY_TEMPLATE_P (gen_tmpl))
12417 clone_function_decl (r, /*update_method_vec_p=*/0);
12419 else if ((complain & tf_error) != 0
12420 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
12421 && !grok_op_properties (r, /*complain=*/true))
12422 RETURN (error_mark_node);
12424 if (DECL_FRIEND_P (t) && DECL_FRIEND_CONTEXT (t))
12425 SET_DECL_FRIEND_CONTEXT (r,
12426 tsubst (DECL_FRIEND_CONTEXT (t),
12427 args, complain, in_decl));
12429 /* Possibly limit visibility based on template args. */
12430 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
12431 if (DECL_VISIBILITY_SPECIFIED (t))
12433 DECL_VISIBILITY_SPECIFIED (r) = 0;
12434 DECL_ATTRIBUTES (r)
12435 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
12437 determine_visibility (r);
12438 if (DECL_DEFAULTED_OUTSIDE_CLASS_P (r)
12439 && !processing_template_decl)
12440 defaulted_late_check (r);
12442 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
12443 args, complain, in_decl);
12445 break;
12447 case PARM_DECL:
12449 tree type = NULL_TREE;
12450 int i, len = 1;
12451 tree expanded_types = NULL_TREE;
12452 tree prev_r = NULL_TREE;
12453 tree first_r = NULL_TREE;
12455 if (DECL_PACK_P (t))
12457 /* If there is a local specialization that isn't a
12458 parameter pack, it means that we're doing a "simple"
12459 substitution from inside tsubst_pack_expansion. Just
12460 return the local specialization (which will be a single
12461 parm). */
12462 tree spec = retrieve_local_specialization (t);
12463 if (spec
12464 && TREE_CODE (spec) == PARM_DECL
12465 && TREE_CODE (TREE_TYPE (spec)) != TYPE_PACK_EXPANSION)
12466 RETURN (spec);
12468 /* Expand the TYPE_PACK_EXPANSION that provides the types for
12469 the parameters in this function parameter pack. */
12470 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
12471 complain, in_decl);
12472 if (TREE_CODE (expanded_types) == TREE_VEC)
12474 len = TREE_VEC_LENGTH (expanded_types);
12476 /* Zero-length parameter packs are boring. Just substitute
12477 into the chain. */
12478 if (len == 0)
12479 RETURN (tsubst (TREE_CHAIN (t), args, complain,
12480 TREE_CHAIN (t)));
12482 else
12484 /* All we did was update the type. Make a note of that. */
12485 type = expanded_types;
12486 expanded_types = NULL_TREE;
12490 /* Loop through all of the parameters we'll build. When T is
12491 a function parameter pack, LEN is the number of expanded
12492 types in EXPANDED_TYPES; otherwise, LEN is 1. */
12493 r = NULL_TREE;
12494 for (i = 0; i < len; ++i)
12496 prev_r = r;
12497 r = copy_node (t);
12498 if (DECL_TEMPLATE_PARM_P (t))
12499 SET_DECL_TEMPLATE_PARM_P (r);
12501 if (expanded_types)
12502 /* We're on the Ith parameter of the function parameter
12503 pack. */
12505 /* Get the Ith type. */
12506 type = TREE_VEC_ELT (expanded_types, i);
12508 /* Rename the parameter to include the index. */
12509 DECL_NAME (r)
12510 = make_ith_pack_parameter_name (DECL_NAME (r), i);
12512 else if (!type)
12513 /* We're dealing with a normal parameter. */
12514 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12516 type = type_decays_to (type);
12517 TREE_TYPE (r) = type;
12518 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
12520 if (DECL_INITIAL (r))
12522 if (TREE_CODE (DECL_INITIAL (r)) != TEMPLATE_PARM_INDEX)
12523 DECL_INITIAL (r) = TREE_TYPE (r);
12524 else
12525 DECL_INITIAL (r) = tsubst (DECL_INITIAL (r), args,
12526 complain, in_decl);
12529 DECL_CONTEXT (r) = NULL_TREE;
12531 if (!DECL_TEMPLATE_PARM_P (r))
12532 DECL_ARG_TYPE (r) = type_passed_as (type);
12534 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
12535 args, complain, in_decl);
12537 /* Keep track of the first new parameter we
12538 generate. That's what will be returned to the
12539 caller. */
12540 if (!first_r)
12541 first_r = r;
12543 /* Build a proper chain of parameters when substituting
12544 into a function parameter pack. */
12545 if (prev_r)
12546 DECL_CHAIN (prev_r) = r;
12549 /* If cp_unevaluated_operand is set, we're just looking for a
12550 single dummy parameter, so don't keep going. */
12551 if (DECL_CHAIN (t) && !cp_unevaluated_operand)
12552 DECL_CHAIN (r) = tsubst (DECL_CHAIN (t), args,
12553 complain, DECL_CHAIN (t));
12555 /* FIRST_R contains the start of the chain we've built. */
12556 r = first_r;
12558 break;
12560 case FIELD_DECL:
12562 tree type = NULL_TREE;
12563 tree vec = NULL_TREE;
12564 tree expanded_types = NULL_TREE;
12565 int len = 1;
12567 if (PACK_EXPANSION_P (TREE_TYPE (t)))
12569 /* This field is a lambda capture pack. Return a TREE_VEC of
12570 the expanded fields to instantiate_class_template_1 and
12571 store them in the specializations hash table as a
12572 NONTYPE_ARGUMENT_PACK so that tsubst_copy can find them. */
12573 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
12574 complain, in_decl);
12575 if (TREE_CODE (expanded_types) == TREE_VEC)
12577 len = TREE_VEC_LENGTH (expanded_types);
12578 vec = make_tree_vec (len);
12580 else
12582 /* All we did was update the type. Make a note of that. */
12583 type = expanded_types;
12584 expanded_types = NULL_TREE;
12588 for (int i = 0; i < len; ++i)
12590 r = copy_decl (t);
12591 if (expanded_types)
12593 type = TREE_VEC_ELT (expanded_types, i);
12594 DECL_NAME (r)
12595 = make_ith_pack_parameter_name (DECL_NAME (r), i);
12597 else if (!type)
12598 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12600 if (type == error_mark_node)
12601 RETURN (error_mark_node);
12602 TREE_TYPE (r) = type;
12603 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
12605 if (DECL_C_BIT_FIELD (r))
12606 /* For bit-fields, DECL_INITIAL gives the number of bits. For
12607 non-bit-fields DECL_INITIAL is a non-static data member
12608 initializer, which gets deferred instantiation. */
12609 DECL_INITIAL (r)
12610 = tsubst_expr (DECL_INITIAL (t), args,
12611 complain, in_decl,
12612 /*integral_constant_expression_p=*/true);
12613 else if (DECL_INITIAL (t))
12615 /* Set up DECL_TEMPLATE_INFO so that we can get at the
12616 NSDMI in perform_member_init. Still set DECL_INITIAL
12617 so that we know there is one. */
12618 DECL_INITIAL (r) = void_node;
12619 gcc_assert (DECL_LANG_SPECIFIC (r) == NULL);
12620 retrofit_lang_decl (r);
12621 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
12623 /* We don't have to set DECL_CONTEXT here; it is set by
12624 finish_member_declaration. */
12625 DECL_CHAIN (r) = NULL_TREE;
12627 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
12628 args, complain, in_decl);
12630 if (vec)
12631 TREE_VEC_ELT (vec, i) = r;
12634 if (vec)
12636 r = vec;
12637 tree pack = make_node (NONTYPE_ARGUMENT_PACK);
12638 tree tpack = cxx_make_type (TYPE_ARGUMENT_PACK);
12639 SET_ARGUMENT_PACK_ARGS (pack, vec);
12640 SET_ARGUMENT_PACK_ARGS (tpack, expanded_types);
12641 TREE_TYPE (pack) = tpack;
12642 register_specialization (pack, t, args, false, 0);
12645 break;
12647 case USING_DECL:
12648 /* We reach here only for member using decls. We also need to check
12649 uses_template_parms because DECL_DEPENDENT_P is not set for a
12650 using-declaration that designates a member of the current
12651 instantiation (c++/53549). */
12652 if (DECL_DEPENDENT_P (t)
12653 || uses_template_parms (USING_DECL_SCOPE (t)))
12655 tree scope = USING_DECL_SCOPE (t);
12656 tree name = tsubst_copy (DECL_NAME (t), args, complain, in_decl);
12657 if (PACK_EXPANSION_P (scope))
12659 tree vec = tsubst_pack_expansion (scope, args, complain, in_decl);
12660 int len = TREE_VEC_LENGTH (vec);
12661 r = make_tree_vec (len);
12662 for (int i = 0; i < len; ++i)
12664 tree escope = TREE_VEC_ELT (vec, i);
12665 tree elt = do_class_using_decl (escope, name);
12666 if (!elt)
12668 r = error_mark_node;
12669 break;
12671 else
12673 TREE_PROTECTED (elt) = TREE_PROTECTED (t);
12674 TREE_PRIVATE (elt) = TREE_PRIVATE (t);
12676 TREE_VEC_ELT (r, i) = elt;
12679 else
12681 tree inst_scope = tsubst_copy (USING_DECL_SCOPE (t), args,
12682 complain, in_decl);
12683 r = do_class_using_decl (inst_scope, name);
12684 if (!r)
12685 r = error_mark_node;
12686 else
12688 TREE_PROTECTED (r) = TREE_PROTECTED (t);
12689 TREE_PRIVATE (r) = TREE_PRIVATE (t);
12693 else
12695 r = copy_node (t);
12696 DECL_CHAIN (r) = NULL_TREE;
12698 break;
12700 case TYPE_DECL:
12701 case VAR_DECL:
12703 tree argvec = NULL_TREE;
12704 tree gen_tmpl = NULL_TREE;
12705 tree spec;
12706 tree tmpl = NULL_TREE;
12707 tree ctx;
12708 tree type = NULL_TREE;
12709 bool local_p;
12711 if (TREE_TYPE (t) == error_mark_node)
12712 RETURN (error_mark_node);
12714 if (TREE_CODE (t) == TYPE_DECL
12715 && t == TYPE_MAIN_DECL (TREE_TYPE (t)))
12717 /* If this is the canonical decl, we don't have to
12718 mess with instantiations, and often we can't (for
12719 typename, template type parms and such). Note that
12720 TYPE_NAME is not correct for the above test if
12721 we've copied the type for a typedef. */
12722 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12723 if (type == error_mark_node)
12724 RETURN (error_mark_node);
12725 r = TYPE_NAME (type);
12726 break;
12729 /* Check to see if we already have the specialization we
12730 need. */
12731 spec = NULL_TREE;
12732 if (DECL_CLASS_SCOPE_P (t) || DECL_NAMESPACE_SCOPE_P (t))
12734 /* T is a static data member or namespace-scope entity.
12735 We have to substitute into namespace-scope variables
12736 (not just variable templates) because of cases like:
12738 template <class T> void f() { extern T t; }
12740 where the entity referenced is not known until
12741 instantiation time. */
12742 local_p = false;
12743 ctx = DECL_CONTEXT (t);
12744 if (DECL_CLASS_SCOPE_P (t))
12746 ctx = tsubst_aggr_type (ctx, args,
12747 complain,
12748 in_decl, /*entering_scope=*/1);
12749 /* If CTX is unchanged, then T is in fact the
12750 specialization we want. That situation occurs when
12751 referencing a static data member within in its own
12752 class. We can use pointer equality, rather than
12753 same_type_p, because DECL_CONTEXT is always
12754 canonical... */
12755 if (ctx == DECL_CONTEXT (t)
12756 /* ... unless T is a member template; in which
12757 case our caller can be willing to create a
12758 specialization of that template represented
12759 by T. */
12760 && !(DECL_TI_TEMPLATE (t)
12761 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (t))))
12762 spec = t;
12765 if (!spec)
12767 tmpl = DECL_TI_TEMPLATE (t);
12768 gen_tmpl = most_general_template (tmpl);
12769 argvec = tsubst (DECL_TI_ARGS (t), args, complain, in_decl);
12770 if (argvec != error_mark_node)
12771 argvec = (coerce_innermost_template_parms
12772 (DECL_TEMPLATE_PARMS (gen_tmpl),
12773 argvec, t, complain,
12774 /*all*/true, /*defarg*/true));
12775 if (argvec == error_mark_node)
12776 RETURN (error_mark_node);
12777 hash = hash_tmpl_and_args (gen_tmpl, argvec);
12778 spec = retrieve_specialization (gen_tmpl, argvec, hash);
12781 else
12783 /* A local variable. */
12784 local_p = true;
12785 /* Subsequent calls to pushdecl will fill this in. */
12786 ctx = NULL_TREE;
12787 /* Unless this is a reference to a static variable from an
12788 enclosing function, in which case we need to fill it in now. */
12789 if (TREE_STATIC (t))
12791 tree fn = tsubst (DECL_CONTEXT (t), args, complain, in_decl);
12792 if (fn != current_function_decl)
12793 ctx = fn;
12795 spec = retrieve_local_specialization (t);
12797 /* If we already have the specialization we need, there is
12798 nothing more to do. */
12799 if (spec)
12801 r = spec;
12802 break;
12805 /* Create a new node for the specialization we need. */
12806 r = copy_decl (t);
12807 if (type == NULL_TREE)
12809 if (is_typedef_decl (t))
12810 type = DECL_ORIGINAL_TYPE (t);
12811 else
12812 type = TREE_TYPE (t);
12813 if (VAR_P (t)
12814 && VAR_HAD_UNKNOWN_BOUND (t)
12815 && type != error_mark_node)
12816 type = strip_array_domain (type);
12817 type = tsubst (type, args, complain, in_decl);
12819 if (VAR_P (r))
12821 /* Even if the original location is out of scope, the
12822 newly substituted one is not. */
12823 DECL_DEAD_FOR_LOCAL (r) = 0;
12824 DECL_INITIALIZED_P (r) = 0;
12825 DECL_TEMPLATE_INSTANTIATED (r) = 0;
12826 if (type == error_mark_node)
12827 RETURN (error_mark_node);
12828 if (TREE_CODE (type) == FUNCTION_TYPE)
12830 /* It may seem that this case cannot occur, since:
12832 typedef void f();
12833 void g() { f x; }
12835 declares a function, not a variable. However:
12837 typedef void f();
12838 template <typename T> void g() { T t; }
12839 template void g<f>();
12841 is an attempt to declare a variable with function
12842 type. */
12843 error ("variable %qD has function type",
12844 /* R is not yet sufficiently initialized, so we
12845 just use its name. */
12846 DECL_NAME (r));
12847 RETURN (error_mark_node);
12849 type = complete_type (type);
12850 /* Wait until cp_finish_decl to set this again, to handle
12851 circular dependency (template/instantiate6.C). */
12852 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r) = 0;
12853 type = check_var_type (DECL_NAME (r), type);
12855 if (DECL_HAS_VALUE_EXPR_P (t))
12857 tree ve = DECL_VALUE_EXPR (t);
12858 ve = tsubst_expr (ve, args, complain, in_decl,
12859 /*constant_expression_p=*/false);
12860 if (REFERENCE_REF_P (ve))
12862 gcc_assert (TREE_CODE (type) == REFERENCE_TYPE);
12863 ve = TREE_OPERAND (ve, 0);
12865 SET_DECL_VALUE_EXPR (r, ve);
12867 if (CP_DECL_THREAD_LOCAL_P (r)
12868 && !processing_template_decl)
12869 set_decl_tls_model (r, decl_default_tls_model (r));
12871 else if (DECL_SELF_REFERENCE_P (t))
12872 SET_DECL_SELF_REFERENCE_P (r);
12873 TREE_TYPE (r) = type;
12874 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
12875 DECL_CONTEXT (r) = ctx;
12876 /* Clear out the mangled name and RTL for the instantiation. */
12877 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
12878 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
12879 SET_DECL_RTL (r, NULL);
12880 /* The initializer must not be expanded until it is required;
12881 see [temp.inst]. */
12882 DECL_INITIAL (r) = NULL_TREE;
12883 if (VAR_P (r))
12884 SET_DECL_MODE (r, VOIDmode);
12885 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
12886 SET_DECL_RTL (r, NULL);
12887 DECL_SIZE (r) = DECL_SIZE_UNIT (r) = 0;
12888 if (VAR_P (r))
12890 /* Possibly limit visibility based on template args. */
12891 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
12892 if (DECL_VISIBILITY_SPECIFIED (t))
12894 DECL_VISIBILITY_SPECIFIED (r) = 0;
12895 DECL_ATTRIBUTES (r)
12896 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
12898 determine_visibility (r);
12901 if (!local_p)
12903 /* A static data member declaration is always marked
12904 external when it is declared in-class, even if an
12905 initializer is present. We mimic the non-template
12906 processing here. */
12907 DECL_EXTERNAL (r) = 1;
12908 if (DECL_NAMESPACE_SCOPE_P (t))
12909 DECL_NOT_REALLY_EXTERN (r) = 1;
12911 DECL_TEMPLATE_INFO (r) = build_template_info (tmpl, argvec);
12912 SET_DECL_IMPLICIT_INSTANTIATION (r);
12913 register_specialization (r, gen_tmpl, argvec, false, hash);
12915 else
12917 if (DECL_LANG_SPECIFIC (r))
12918 DECL_TEMPLATE_INFO (r) = NULL_TREE;
12919 if (!cp_unevaluated_operand)
12920 register_local_specialization (r, t);
12923 DECL_CHAIN (r) = NULL_TREE;
12925 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r),
12926 /*flags=*/0,
12927 args, complain, in_decl);
12929 /* Preserve a typedef that names a type. */
12930 if (is_typedef_decl (r) && type != error_mark_node)
12932 DECL_ORIGINAL_TYPE (r) = NULL_TREE;
12933 set_underlying_type (r);
12934 if (TYPE_DECL_ALIAS_P (r))
12935 /* An alias template specialization can be dependent
12936 even if its underlying type is not. */
12937 TYPE_DEPENDENT_P_VALID (TREE_TYPE (r)) = false;
12940 layout_decl (r, 0);
12942 break;
12944 default:
12945 gcc_unreachable ();
12947 #undef RETURN
12949 out:
12950 /* Restore the file and line information. */
12951 input_location = saved_loc;
12953 return r;
12956 /* Substitute into the ARG_TYPES of a function type.
12957 If END is a TREE_CHAIN, leave it and any following types
12958 un-substituted. */
12960 static tree
12961 tsubst_arg_types (tree arg_types,
12962 tree args,
12963 tree end,
12964 tsubst_flags_t complain,
12965 tree in_decl)
12967 tree remaining_arg_types;
12968 tree type = NULL_TREE;
12969 int i = 1;
12970 tree expanded_args = NULL_TREE;
12971 tree default_arg;
12973 if (!arg_types || arg_types == void_list_node || arg_types == end)
12974 return arg_types;
12976 remaining_arg_types = tsubst_arg_types (TREE_CHAIN (arg_types),
12977 args, end, complain, in_decl);
12978 if (remaining_arg_types == error_mark_node)
12979 return error_mark_node;
12981 if (PACK_EXPANSION_P (TREE_VALUE (arg_types)))
12983 /* For a pack expansion, perform substitution on the
12984 entire expression. Later on, we'll handle the arguments
12985 one-by-one. */
12986 expanded_args = tsubst_pack_expansion (TREE_VALUE (arg_types),
12987 args, complain, in_decl);
12989 if (TREE_CODE (expanded_args) == TREE_VEC)
12990 /* So that we'll spin through the parameters, one by one. */
12991 i = TREE_VEC_LENGTH (expanded_args);
12992 else
12994 /* We only partially substituted into the parameter
12995 pack. Our type is TYPE_PACK_EXPANSION. */
12996 type = expanded_args;
12997 expanded_args = NULL_TREE;
13001 while (i > 0) {
13002 --i;
13004 if (expanded_args)
13005 type = TREE_VEC_ELT (expanded_args, i);
13006 else if (!type)
13007 type = tsubst (TREE_VALUE (arg_types), args, complain, in_decl);
13009 if (type == error_mark_node)
13010 return error_mark_node;
13011 if (VOID_TYPE_P (type))
13013 if (complain & tf_error)
13015 error ("invalid parameter type %qT", type);
13016 if (in_decl)
13017 error ("in declaration %q+D", in_decl);
13019 return error_mark_node;
13021 /* DR 657. */
13022 if (abstract_virtuals_error_sfinae (ACU_PARM, type, complain))
13023 return error_mark_node;
13025 /* Do array-to-pointer, function-to-pointer conversion, and ignore
13026 top-level qualifiers as required. */
13027 type = cv_unqualified (type_decays_to (type));
13029 /* We do not substitute into default arguments here. The standard
13030 mandates that they be instantiated only when needed, which is
13031 done in build_over_call. */
13032 default_arg = TREE_PURPOSE (arg_types);
13034 if (default_arg && TREE_CODE (default_arg) == DEFAULT_ARG)
13036 /* We've instantiated a template before its default arguments
13037 have been parsed. This can happen for a nested template
13038 class, and is not an error unless we require the default
13039 argument in a call of this function. */
13040 remaining_arg_types =
13041 tree_cons (default_arg, type, remaining_arg_types);
13042 vec_safe_push (DEFARG_INSTANTIATIONS(default_arg), remaining_arg_types);
13044 else
13045 remaining_arg_types =
13046 hash_tree_cons (default_arg, type, remaining_arg_types);
13049 return remaining_arg_types;
13052 /* Substitute into a FUNCTION_TYPE or METHOD_TYPE. This routine does
13053 *not* handle the exception-specification for FNTYPE, because the
13054 initial substitution of explicitly provided template parameters
13055 during argument deduction forbids substitution into the
13056 exception-specification:
13058 [temp.deduct]
13060 All references in the function type of the function template to the
13061 corresponding template parameters are replaced by the specified tem-
13062 plate argument values. If a substitution in a template parameter or
13063 in the function type of the function template results in an invalid
13064 type, type deduction fails. [Note: The equivalent substitution in
13065 exception specifications is done only when the function is instanti-
13066 ated, at which point a program is ill-formed if the substitution
13067 results in an invalid type.] */
13069 static tree
13070 tsubst_function_type (tree t,
13071 tree args,
13072 tsubst_flags_t complain,
13073 tree in_decl)
13075 tree return_type;
13076 tree arg_types = NULL_TREE;
13077 tree fntype;
13079 /* The TYPE_CONTEXT is not used for function/method types. */
13080 gcc_assert (TYPE_CONTEXT (t) == NULL_TREE);
13082 /* DR 1227: Mixing immediate and non-immediate contexts in deduction
13083 failure. */
13084 bool late_return_type_p = TYPE_HAS_LATE_RETURN_TYPE (t);
13086 if (late_return_type_p)
13088 /* Substitute the argument types. */
13089 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, NULL_TREE,
13090 complain, in_decl);
13091 if (arg_types == error_mark_node)
13092 return error_mark_node;
13094 tree save_ccp = current_class_ptr;
13095 tree save_ccr = current_class_ref;
13096 tree this_type = (TREE_CODE (t) == METHOD_TYPE
13097 ? TREE_TYPE (TREE_VALUE (arg_types)) : NULL_TREE);
13098 bool do_inject = this_type && CLASS_TYPE_P (this_type);
13099 if (do_inject)
13101 /* DR 1207: 'this' is in scope in the trailing return type. */
13102 inject_this_parameter (this_type, cp_type_quals (this_type));
13105 /* Substitute the return type. */
13106 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13108 if (do_inject)
13110 current_class_ptr = save_ccp;
13111 current_class_ref = save_ccr;
13114 else
13115 /* Substitute the return type. */
13116 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13118 if (return_type == error_mark_node)
13119 return error_mark_node;
13120 /* DR 486 clarifies that creation of a function type with an
13121 invalid return type is a deduction failure. */
13122 if (TREE_CODE (return_type) == ARRAY_TYPE
13123 || TREE_CODE (return_type) == FUNCTION_TYPE)
13125 if (complain & tf_error)
13127 if (TREE_CODE (return_type) == ARRAY_TYPE)
13128 error ("function returning an array");
13129 else
13130 error ("function returning a function");
13132 return error_mark_node;
13134 /* And DR 657. */
13135 if (abstract_virtuals_error_sfinae (ACU_RETURN, return_type, complain))
13136 return error_mark_node;
13138 if (!late_return_type_p)
13140 /* Substitute the argument types. */
13141 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, NULL_TREE,
13142 complain, in_decl);
13143 if (arg_types == error_mark_node)
13144 return error_mark_node;
13147 /* Construct a new type node and return it. */
13148 if (TREE_CODE (t) == FUNCTION_TYPE)
13150 fntype = build_function_type (return_type, arg_types);
13151 fntype = apply_memfn_quals (fntype,
13152 type_memfn_quals (t),
13153 type_memfn_rqual (t));
13155 else
13157 tree r = TREE_TYPE (TREE_VALUE (arg_types));
13158 /* Don't pick up extra function qualifiers from the basetype. */
13159 r = cp_build_qualified_type_real (r, type_memfn_quals (t), complain);
13160 if (! MAYBE_CLASS_TYPE_P (r))
13162 /* [temp.deduct]
13164 Type deduction may fail for any of the following
13165 reasons:
13167 -- Attempting to create "pointer to member of T" when T
13168 is not a class type. */
13169 if (complain & tf_error)
13170 error ("creating pointer to member function of non-class type %qT",
13172 return error_mark_node;
13175 fntype = build_method_type_directly (r, return_type,
13176 TREE_CHAIN (arg_types));
13177 fntype = build_ref_qualified_type (fntype, type_memfn_rqual (t));
13179 fntype = cp_build_type_attribute_variant (fntype, TYPE_ATTRIBUTES (t));
13181 if (late_return_type_p)
13182 TYPE_HAS_LATE_RETURN_TYPE (fntype) = 1;
13184 return fntype;
13187 /* FNTYPE is a FUNCTION_TYPE or METHOD_TYPE. Substitute the template
13188 ARGS into that specification, and return the substituted
13189 specification. If there is no specification, return NULL_TREE. */
13191 static tree
13192 tsubst_exception_specification (tree fntype,
13193 tree args,
13194 tsubst_flags_t complain,
13195 tree in_decl,
13196 bool defer_ok)
13198 tree specs;
13199 tree new_specs;
13201 specs = TYPE_RAISES_EXCEPTIONS (fntype);
13202 new_specs = NULL_TREE;
13203 if (specs && TREE_PURPOSE (specs))
13205 /* A noexcept-specifier. */
13206 tree expr = TREE_PURPOSE (specs);
13207 if (TREE_CODE (expr) == INTEGER_CST)
13208 new_specs = expr;
13209 else if (defer_ok)
13211 /* Defer instantiation of noexcept-specifiers to avoid
13212 excessive instantiations (c++/49107). */
13213 new_specs = make_node (DEFERRED_NOEXCEPT);
13214 if (DEFERRED_NOEXCEPT_SPEC_P (specs))
13216 /* We already partially instantiated this member template,
13217 so combine the new args with the old. */
13218 DEFERRED_NOEXCEPT_PATTERN (new_specs)
13219 = DEFERRED_NOEXCEPT_PATTERN (expr);
13220 DEFERRED_NOEXCEPT_ARGS (new_specs)
13221 = add_to_template_args (DEFERRED_NOEXCEPT_ARGS (expr), args);
13223 else
13225 DEFERRED_NOEXCEPT_PATTERN (new_specs) = expr;
13226 DEFERRED_NOEXCEPT_ARGS (new_specs) = args;
13229 else
13230 new_specs = tsubst_copy_and_build
13231 (expr, args, complain, in_decl, /*function_p=*/false,
13232 /*integral_constant_expression_p=*/true);
13233 new_specs = build_noexcept_spec (new_specs, complain);
13235 else if (specs)
13237 if (! TREE_VALUE (specs))
13238 new_specs = specs;
13239 else
13240 while (specs)
13242 tree spec;
13243 int i, len = 1;
13244 tree expanded_specs = NULL_TREE;
13246 if (PACK_EXPANSION_P (TREE_VALUE (specs)))
13248 /* Expand the pack expansion type. */
13249 expanded_specs = tsubst_pack_expansion (TREE_VALUE (specs),
13250 args, complain,
13251 in_decl);
13253 if (expanded_specs == error_mark_node)
13254 return error_mark_node;
13255 else if (TREE_CODE (expanded_specs) == TREE_VEC)
13256 len = TREE_VEC_LENGTH (expanded_specs);
13257 else
13259 /* We're substituting into a member template, so
13260 we got a TYPE_PACK_EXPANSION back. Add that
13261 expansion and move on. */
13262 gcc_assert (TREE_CODE (expanded_specs)
13263 == TYPE_PACK_EXPANSION);
13264 new_specs = add_exception_specifier (new_specs,
13265 expanded_specs,
13266 complain);
13267 specs = TREE_CHAIN (specs);
13268 continue;
13272 for (i = 0; i < len; ++i)
13274 if (expanded_specs)
13275 spec = TREE_VEC_ELT (expanded_specs, i);
13276 else
13277 spec = tsubst (TREE_VALUE (specs), args, complain, in_decl);
13278 if (spec == error_mark_node)
13279 return spec;
13280 new_specs = add_exception_specifier (new_specs, spec,
13281 complain);
13284 specs = TREE_CHAIN (specs);
13287 return new_specs;
13290 /* Take the tree structure T and replace template parameters used
13291 therein with the argument vector ARGS. IN_DECL is an associated
13292 decl for diagnostics. If an error occurs, returns ERROR_MARK_NODE.
13293 Issue error and warning messages under control of COMPLAIN. Note
13294 that we must be relatively non-tolerant of extensions here, in
13295 order to preserve conformance; if we allow substitutions that
13296 should not be allowed, we may allow argument deductions that should
13297 not succeed, and therefore report ambiguous overload situations
13298 where there are none. In theory, we could allow the substitution,
13299 but indicate that it should have failed, and allow our caller to
13300 make sure that the right thing happens, but we don't try to do this
13301 yet.
13303 This function is used for dealing with types, decls and the like;
13304 for expressions, use tsubst_expr or tsubst_copy. */
13306 tree
13307 tsubst (tree t, tree args, tsubst_flags_t complain, tree in_decl)
13309 enum tree_code code;
13310 tree type, r = NULL_TREE;
13312 if (t == NULL_TREE || t == error_mark_node
13313 || t == integer_type_node
13314 || t == void_type_node
13315 || t == char_type_node
13316 || t == unknown_type_node
13317 || TREE_CODE (t) == NAMESPACE_DECL
13318 || TREE_CODE (t) == TRANSLATION_UNIT_DECL)
13319 return t;
13321 if (DECL_P (t))
13322 return tsubst_decl (t, args, complain);
13324 if (args == NULL_TREE)
13325 return t;
13327 code = TREE_CODE (t);
13329 if (code == IDENTIFIER_NODE)
13330 type = IDENTIFIER_TYPE_VALUE (t);
13331 else
13332 type = TREE_TYPE (t);
13334 gcc_assert (type != unknown_type_node);
13336 /* Reuse typedefs. We need to do this to handle dependent attributes,
13337 such as attribute aligned. */
13338 if (TYPE_P (t)
13339 && typedef_variant_p (t))
13341 tree decl = TYPE_NAME (t);
13343 if (alias_template_specialization_p (t))
13345 /* DECL represents an alias template and we want to
13346 instantiate it. */
13347 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
13348 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
13349 r = instantiate_alias_template (tmpl, gen_args, complain);
13351 else if (DECL_CLASS_SCOPE_P (decl)
13352 && CLASSTYPE_TEMPLATE_INFO (DECL_CONTEXT (decl))
13353 && uses_template_parms (DECL_CONTEXT (decl)))
13355 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
13356 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
13357 r = retrieve_specialization (tmpl, gen_args, 0);
13359 else if (DECL_FUNCTION_SCOPE_P (decl)
13360 && DECL_TEMPLATE_INFO (DECL_CONTEXT (decl))
13361 && uses_template_parms (DECL_TI_ARGS (DECL_CONTEXT (decl))))
13362 r = retrieve_local_specialization (decl);
13363 else
13364 /* The typedef is from a non-template context. */
13365 return t;
13367 if (r)
13369 r = TREE_TYPE (r);
13370 r = cp_build_qualified_type_real
13371 (r, cp_type_quals (t) | cp_type_quals (r),
13372 complain | tf_ignore_bad_quals);
13373 return r;
13375 else
13377 /* We don't have an instantiation yet, so drop the typedef. */
13378 int quals = cp_type_quals (t);
13379 t = DECL_ORIGINAL_TYPE (decl);
13380 t = cp_build_qualified_type_real (t, quals,
13381 complain | tf_ignore_bad_quals);
13385 bool fndecl_type = (complain & tf_fndecl_type);
13386 complain &= ~tf_fndecl_type;
13388 if (type
13389 && code != TYPENAME_TYPE
13390 && code != TEMPLATE_TYPE_PARM
13391 && code != TEMPLATE_PARM_INDEX
13392 && code != IDENTIFIER_NODE
13393 && code != FUNCTION_TYPE
13394 && code != METHOD_TYPE)
13395 type = tsubst (type, args, complain, in_decl);
13396 if (type == error_mark_node)
13397 return error_mark_node;
13399 switch (code)
13401 case RECORD_TYPE:
13402 case UNION_TYPE:
13403 case ENUMERAL_TYPE:
13404 return tsubst_aggr_type (t, args, complain, in_decl,
13405 /*entering_scope=*/0);
13407 case ERROR_MARK:
13408 case IDENTIFIER_NODE:
13409 case VOID_TYPE:
13410 case REAL_TYPE:
13411 case COMPLEX_TYPE:
13412 case VECTOR_TYPE:
13413 case BOOLEAN_TYPE:
13414 case NULLPTR_TYPE:
13415 case LANG_TYPE:
13416 return t;
13418 case INTEGER_TYPE:
13419 if (t == integer_type_node)
13420 return t;
13422 if (TREE_CODE (TYPE_MIN_VALUE (t)) == INTEGER_CST
13423 && TREE_CODE (TYPE_MAX_VALUE (t)) == INTEGER_CST)
13424 return t;
13427 tree max, omax = TREE_OPERAND (TYPE_MAX_VALUE (t), 0);
13429 max = tsubst_expr (omax, args, complain, in_decl,
13430 /*integral_constant_expression_p=*/false);
13432 /* Fix up type of the magic NOP_EXPR with TREE_SIDE_EFFECTS if
13433 needed. */
13434 if (TREE_CODE (max) == NOP_EXPR
13435 && TREE_SIDE_EFFECTS (omax)
13436 && !TREE_TYPE (max))
13437 TREE_TYPE (max) = TREE_TYPE (TREE_OPERAND (max, 0));
13439 /* If we're in a partial instantiation, preserve the magic NOP_EXPR
13440 with TREE_SIDE_EFFECTS that indicates this is not an integral
13441 constant expression. */
13442 if (processing_template_decl
13443 && TREE_SIDE_EFFECTS (omax) && TREE_CODE (omax) == NOP_EXPR)
13445 gcc_assert (TREE_CODE (max) == NOP_EXPR);
13446 TREE_SIDE_EFFECTS (max) = 1;
13449 return compute_array_index_type (NULL_TREE, max, complain);
13452 case TEMPLATE_TYPE_PARM:
13453 case TEMPLATE_TEMPLATE_PARM:
13454 case BOUND_TEMPLATE_TEMPLATE_PARM:
13455 case TEMPLATE_PARM_INDEX:
13457 int idx;
13458 int level;
13459 int levels;
13460 tree arg = NULL_TREE;
13462 /* Early in template argument deduction substitution, we don't
13463 want to reduce the level of 'auto', or it will be confused
13464 with a normal template parm in subsequent deduction. */
13465 if (is_auto (t) && (complain & tf_partial))
13466 return t;
13468 r = NULL_TREE;
13470 gcc_assert (TREE_VEC_LENGTH (args) > 0);
13471 template_parm_level_and_index (t, &level, &idx);
13473 levels = TMPL_ARGS_DEPTH (args);
13474 if (level <= levels
13475 && TREE_VEC_LENGTH (TMPL_ARGS_LEVEL (args, level)) > 0)
13477 arg = TMPL_ARG (args, level, idx);
13479 if (arg && TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
13481 /* See through ARGUMENT_PACK_SELECT arguments. */
13482 arg = ARGUMENT_PACK_SELECT_ARG (arg);
13483 /* If the selected argument is an expansion E, that most
13484 likely means we were called from
13485 gen_elem_of_pack_expansion_instantiation during the
13486 substituting of pack an argument pack (which Ith
13487 element is a pack expansion, where I is
13488 ARGUMENT_PACK_SELECT_INDEX) into a pack expansion.
13489 In this case, the Ith element resulting from this
13490 substituting is going to be a pack expansion, which
13491 pattern is the pattern of E. Let's return the
13492 pattern of E, and
13493 gen_elem_of_pack_expansion_instantiation will
13494 build the resulting pack expansion from it. */
13495 if (PACK_EXPANSION_P (arg))
13497 /* Make sure we aren't throwing away arg info. */
13498 gcc_assert (!PACK_EXPANSION_EXTRA_ARGS (arg));
13499 arg = PACK_EXPANSION_PATTERN (arg);
13504 if (arg == error_mark_node)
13505 return error_mark_node;
13506 else if (arg != NULL_TREE)
13508 if (ARGUMENT_PACK_P (arg))
13509 /* If ARG is an argument pack, we don't actually want to
13510 perform a substitution here, because substitutions
13511 for argument packs are only done
13512 element-by-element. We can get to this point when
13513 substituting the type of a non-type template
13514 parameter pack, when that type actually contains
13515 template parameter packs from an outer template, e.g.,
13517 template<typename... Types> struct A {
13518 template<Types... Values> struct B { };
13519 }; */
13520 return t;
13522 if (code == TEMPLATE_TYPE_PARM)
13524 int quals;
13525 gcc_assert (TYPE_P (arg));
13527 quals = cp_type_quals (arg) | cp_type_quals (t);
13529 return cp_build_qualified_type_real
13530 (arg, quals, complain | tf_ignore_bad_quals);
13532 else if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
13534 /* We are processing a type constructed from a
13535 template template parameter. */
13536 tree argvec = tsubst (TYPE_TI_ARGS (t),
13537 args, complain, in_decl);
13538 if (argvec == error_mark_node)
13539 return error_mark_node;
13541 gcc_assert (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
13542 || TREE_CODE (arg) == TEMPLATE_DECL
13543 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
13545 if (TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE)
13546 /* Consider this code:
13548 template <template <class> class Template>
13549 struct Internal {
13550 template <class Arg> using Bind = Template<Arg>;
13553 template <template <class> class Template, class Arg>
13554 using Instantiate = Template<Arg>; //#0
13556 template <template <class> class Template,
13557 class Argument>
13558 using Bind =
13559 Instantiate<Internal<Template>::template Bind,
13560 Argument>; //#1
13562 When #1 is parsed, the
13563 BOUND_TEMPLATE_TEMPLATE_PARM representing the
13564 parameter `Template' in #0 matches the
13565 UNBOUND_CLASS_TEMPLATE representing the argument
13566 `Internal<Template>::template Bind'; We then want
13567 to assemble the type `Bind<Argument>' that can't
13568 be fully created right now, because
13569 `Internal<Template>' not being complete, the Bind
13570 template cannot be looked up in that context. So
13571 we need to "store" `Bind<Argument>' for later
13572 when the context of Bind becomes complete. Let's
13573 store that in a TYPENAME_TYPE. */
13574 return make_typename_type (TYPE_CONTEXT (arg),
13575 build_nt (TEMPLATE_ID_EXPR,
13576 TYPE_IDENTIFIER (arg),
13577 argvec),
13578 typename_type,
13579 complain);
13581 /* We can get a TEMPLATE_TEMPLATE_PARM here when we
13582 are resolving nested-types in the signature of a
13583 member function templates. Otherwise ARG is a
13584 TEMPLATE_DECL and is the real template to be
13585 instantiated. */
13586 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
13587 arg = TYPE_NAME (arg);
13589 r = lookup_template_class (arg,
13590 argvec, in_decl,
13591 DECL_CONTEXT (arg),
13592 /*entering_scope=*/0,
13593 complain);
13594 return cp_build_qualified_type_real
13595 (r, cp_type_quals (t) | cp_type_quals (r), complain);
13597 else if (code == TEMPLATE_TEMPLATE_PARM)
13598 return arg;
13599 else
13600 /* TEMPLATE_PARM_INDEX. */
13601 return convert_from_reference (unshare_expr (arg));
13604 if (level == 1)
13605 /* This can happen during the attempted tsubst'ing in
13606 unify. This means that we don't yet have any information
13607 about the template parameter in question. */
13608 return t;
13610 /* If we get here, we must have been looking at a parm for a
13611 more deeply nested template. Make a new version of this
13612 template parameter, but with a lower level. */
13613 switch (code)
13615 case TEMPLATE_TYPE_PARM:
13616 case TEMPLATE_TEMPLATE_PARM:
13617 case BOUND_TEMPLATE_TEMPLATE_PARM:
13618 if (cp_type_quals (t))
13620 r = tsubst (TYPE_MAIN_VARIANT (t), args, complain, in_decl);
13621 r = cp_build_qualified_type_real
13622 (r, cp_type_quals (t),
13623 complain | (code == TEMPLATE_TYPE_PARM
13624 ? tf_ignore_bad_quals : 0));
13626 else if (TREE_CODE (t) == TEMPLATE_TYPE_PARM
13627 && PLACEHOLDER_TYPE_CONSTRAINTS (t)
13628 && (r = (TEMPLATE_PARM_DESCENDANTS
13629 (TEMPLATE_TYPE_PARM_INDEX (t))))
13630 && (r = TREE_TYPE (r))
13631 && !PLACEHOLDER_TYPE_CONSTRAINTS (r))
13632 /* Break infinite recursion when substituting the constraints
13633 of a constrained placeholder. */;
13634 else
13636 r = copy_type (t);
13637 TEMPLATE_TYPE_PARM_INDEX (r)
13638 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (t),
13639 r, levels, args, complain);
13640 TYPE_STUB_DECL (r) = TYPE_NAME (r) = TEMPLATE_TYPE_DECL (r);
13641 TYPE_MAIN_VARIANT (r) = r;
13642 TYPE_POINTER_TO (r) = NULL_TREE;
13643 TYPE_REFERENCE_TO (r) = NULL_TREE;
13645 if (TREE_CODE (t) == TEMPLATE_TYPE_PARM)
13647 /* Propagate constraints on placeholders. */
13648 if (tree constr = PLACEHOLDER_TYPE_CONSTRAINTS (t))
13649 PLACEHOLDER_TYPE_CONSTRAINTS (r)
13650 = tsubst_constraint (constr, args, complain, in_decl);
13651 else if (tree pl = CLASS_PLACEHOLDER_TEMPLATE (t))
13653 if (DECL_TEMPLATE_TEMPLATE_PARM_P (pl))
13654 pl = tsubst (pl, args, complain, in_decl);
13655 CLASS_PLACEHOLDER_TEMPLATE (r) = pl;
13659 if (TREE_CODE (r) == TEMPLATE_TEMPLATE_PARM)
13660 /* We have reduced the level of the template
13661 template parameter, but not the levels of its
13662 template parameters, so canonical_type_parameter
13663 will not be able to find the canonical template
13664 template parameter for this level. Thus, we
13665 require structural equality checking to compare
13666 TEMPLATE_TEMPLATE_PARMs. */
13667 SET_TYPE_STRUCTURAL_EQUALITY (r);
13668 else if (TYPE_STRUCTURAL_EQUALITY_P (t))
13669 SET_TYPE_STRUCTURAL_EQUALITY (r);
13670 else
13671 TYPE_CANONICAL (r) = canonical_type_parameter (r);
13673 if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
13675 tree tinfo = TYPE_TEMPLATE_INFO (t);
13676 /* We might need to substitute into the types of non-type
13677 template parameters. */
13678 tree tmpl = tsubst (TI_TEMPLATE (tinfo), args,
13679 complain, in_decl);
13680 if (tmpl == error_mark_node)
13681 return error_mark_node;
13682 tree argvec = tsubst (TI_ARGS (tinfo), args,
13683 complain, in_decl);
13684 if (argvec == error_mark_node)
13685 return error_mark_node;
13687 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (r)
13688 = build_template_info (tmpl, argvec);
13691 break;
13693 case TEMPLATE_PARM_INDEX:
13694 /* OK, now substitute the type of the non-type parameter. We
13695 couldn't do it earlier because it might be an auto parameter,
13696 and we wouldn't need to if we had an argument. */
13697 type = tsubst (type, args, complain, in_decl);
13698 r = reduce_template_parm_level (t, type, levels, args, complain);
13699 break;
13701 default:
13702 gcc_unreachable ();
13705 return r;
13708 case TREE_LIST:
13710 tree purpose, value, chain;
13712 if (t == void_list_node)
13713 return t;
13715 purpose = TREE_PURPOSE (t);
13716 if (purpose)
13718 purpose = tsubst (purpose, args, complain, in_decl);
13719 if (purpose == error_mark_node)
13720 return error_mark_node;
13722 value = TREE_VALUE (t);
13723 if (value)
13725 value = tsubst (value, args, complain, in_decl);
13726 if (value == error_mark_node)
13727 return error_mark_node;
13729 chain = TREE_CHAIN (t);
13730 if (chain && chain != void_type_node)
13732 chain = tsubst (chain, args, complain, in_decl);
13733 if (chain == error_mark_node)
13734 return error_mark_node;
13736 if (purpose == TREE_PURPOSE (t)
13737 && value == TREE_VALUE (t)
13738 && chain == TREE_CHAIN (t))
13739 return t;
13740 return hash_tree_cons (purpose, value, chain);
13743 case TREE_BINFO:
13744 /* We should never be tsubsting a binfo. */
13745 gcc_unreachable ();
13747 case TREE_VEC:
13748 /* A vector of template arguments. */
13749 gcc_assert (!type);
13750 return tsubst_template_args (t, args, complain, in_decl);
13752 case POINTER_TYPE:
13753 case REFERENCE_TYPE:
13755 if (type == TREE_TYPE (t) && TREE_CODE (type) != METHOD_TYPE)
13756 return t;
13758 /* [temp.deduct]
13760 Type deduction may fail for any of the following
13761 reasons:
13763 -- Attempting to create a pointer to reference type.
13764 -- Attempting to create a reference to a reference type or
13765 a reference to void.
13767 Core issue 106 says that creating a reference to a reference
13768 during instantiation is no longer a cause for failure. We
13769 only enforce this check in strict C++98 mode. */
13770 if ((TREE_CODE (type) == REFERENCE_TYPE
13771 && (((cxx_dialect == cxx98) && flag_iso) || code != REFERENCE_TYPE))
13772 || (code == REFERENCE_TYPE && VOID_TYPE_P (type)))
13774 static location_t last_loc;
13776 /* We keep track of the last time we issued this error
13777 message to avoid spewing a ton of messages during a
13778 single bad template instantiation. */
13779 if (complain & tf_error
13780 && last_loc != input_location)
13782 if (VOID_TYPE_P (type))
13783 error ("forming reference to void");
13784 else if (code == POINTER_TYPE)
13785 error ("forming pointer to reference type %qT", type);
13786 else
13787 error ("forming reference to reference type %qT", type);
13788 last_loc = input_location;
13791 return error_mark_node;
13793 else if (TREE_CODE (type) == FUNCTION_TYPE
13794 && (type_memfn_quals (type) != TYPE_UNQUALIFIED
13795 || type_memfn_rqual (type) != REF_QUAL_NONE))
13797 if (complain & tf_error)
13799 if (code == POINTER_TYPE)
13800 error ("forming pointer to qualified function type %qT",
13801 type);
13802 else
13803 error ("forming reference to qualified function type %qT",
13804 type);
13806 return error_mark_node;
13808 else if (code == POINTER_TYPE)
13810 r = build_pointer_type (type);
13811 if (TREE_CODE (type) == METHOD_TYPE)
13812 r = build_ptrmemfunc_type (r);
13814 else if (TREE_CODE (type) == REFERENCE_TYPE)
13815 /* In C++0x, during template argument substitution, when there is an
13816 attempt to create a reference to a reference type, reference
13817 collapsing is applied as described in [14.3.1/4 temp.arg.type]:
13819 "If a template-argument for a template-parameter T names a type
13820 that is a reference to a type A, an attempt to create the type
13821 'lvalue reference to cv T' creates the type 'lvalue reference to
13822 A,' while an attempt to create the type type rvalue reference to
13823 cv T' creates the type T"
13825 r = cp_build_reference_type
13826 (TREE_TYPE (type),
13827 TYPE_REF_IS_RVALUE (t) && TYPE_REF_IS_RVALUE (type));
13828 else
13829 r = cp_build_reference_type (type, TYPE_REF_IS_RVALUE (t));
13830 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
13832 if (r != error_mark_node)
13833 /* Will this ever be needed for TYPE_..._TO values? */
13834 layout_type (r);
13836 return r;
13838 case OFFSET_TYPE:
13840 r = tsubst (TYPE_OFFSET_BASETYPE (t), args, complain, in_decl);
13841 if (r == error_mark_node || !MAYBE_CLASS_TYPE_P (r))
13843 /* [temp.deduct]
13845 Type deduction may fail for any of the following
13846 reasons:
13848 -- Attempting to create "pointer to member of T" when T
13849 is not a class type. */
13850 if (complain & tf_error)
13851 error ("creating pointer to member of non-class type %qT", r);
13852 return error_mark_node;
13854 if (TREE_CODE (type) == REFERENCE_TYPE)
13856 if (complain & tf_error)
13857 error ("creating pointer to member reference type %qT", type);
13858 return error_mark_node;
13860 if (VOID_TYPE_P (type))
13862 if (complain & tf_error)
13863 error ("creating pointer to member of type void");
13864 return error_mark_node;
13866 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
13867 if (TREE_CODE (type) == FUNCTION_TYPE)
13869 /* The type of the implicit object parameter gets its
13870 cv-qualifiers from the FUNCTION_TYPE. */
13871 tree memptr;
13872 tree method_type
13873 = build_memfn_type (type, r, type_memfn_quals (type),
13874 type_memfn_rqual (type));
13875 memptr = build_ptrmemfunc_type (build_pointer_type (method_type));
13876 return cp_build_qualified_type_real (memptr, cp_type_quals (t),
13877 complain);
13879 else
13880 return cp_build_qualified_type_real (build_ptrmem_type (r, type),
13881 cp_type_quals (t),
13882 complain);
13884 case FUNCTION_TYPE:
13885 case METHOD_TYPE:
13887 tree fntype;
13888 tree specs;
13889 fntype = tsubst_function_type (t, args, complain, in_decl);
13890 if (fntype == error_mark_node)
13891 return error_mark_node;
13893 /* Substitute the exception specification. */
13894 specs = tsubst_exception_specification (t, args, complain, in_decl,
13895 /*defer_ok*/fndecl_type);
13896 if (specs == error_mark_node)
13897 return error_mark_node;
13898 if (specs)
13899 fntype = build_exception_variant (fntype, specs);
13900 return fntype;
13902 case ARRAY_TYPE:
13904 tree domain = tsubst (TYPE_DOMAIN (t), args, complain, in_decl);
13905 if (domain == error_mark_node)
13906 return error_mark_node;
13908 /* As an optimization, we avoid regenerating the array type if
13909 it will obviously be the same as T. */
13910 if (type == TREE_TYPE (t) && domain == TYPE_DOMAIN (t))
13911 return t;
13913 /* These checks should match the ones in create_array_type_for_decl.
13915 [temp.deduct]
13917 The deduction may fail for any of the following reasons:
13919 -- Attempting to create an array with an element type that
13920 is void, a function type, or a reference type, or [DR337]
13921 an abstract class type. */
13922 if (VOID_TYPE_P (type)
13923 || TREE_CODE (type) == FUNCTION_TYPE
13924 || (TREE_CODE (type) == ARRAY_TYPE
13925 && TYPE_DOMAIN (type) == NULL_TREE)
13926 || TREE_CODE (type) == REFERENCE_TYPE)
13928 if (complain & tf_error)
13929 error ("creating array of %qT", type);
13930 return error_mark_node;
13933 if (abstract_virtuals_error_sfinae (ACU_ARRAY, type, complain))
13934 return error_mark_node;
13936 r = build_cplus_array_type (type, domain);
13938 if (TYPE_USER_ALIGN (t))
13940 SET_TYPE_ALIGN (r, TYPE_ALIGN (t));
13941 TYPE_USER_ALIGN (r) = 1;
13944 return r;
13947 case TYPENAME_TYPE:
13949 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
13950 in_decl, /*entering_scope=*/1);
13951 if (ctx == error_mark_node)
13952 return error_mark_node;
13954 tree f = tsubst_copy (TYPENAME_TYPE_FULLNAME (t), args,
13955 complain, in_decl);
13956 if (f == error_mark_node)
13957 return error_mark_node;
13959 if (!MAYBE_CLASS_TYPE_P (ctx))
13961 if (complain & tf_error)
13962 error ("%qT is not a class, struct, or union type", ctx);
13963 return error_mark_node;
13965 else if (!uses_template_parms (ctx) && !TYPE_BEING_DEFINED (ctx))
13967 /* Normally, make_typename_type does not require that the CTX
13968 have complete type in order to allow things like:
13970 template <class T> struct S { typename S<T>::X Y; };
13972 But, such constructs have already been resolved by this
13973 point, so here CTX really should have complete type, unless
13974 it's a partial instantiation. */
13975 ctx = complete_type (ctx);
13976 if (!COMPLETE_TYPE_P (ctx))
13978 if (complain & tf_error)
13979 cxx_incomplete_type_error (NULL_TREE, ctx);
13980 return error_mark_node;
13984 f = make_typename_type (ctx, f, typename_type,
13985 complain | tf_keep_type_decl);
13986 if (f == error_mark_node)
13987 return f;
13988 if (TREE_CODE (f) == TYPE_DECL)
13990 complain |= tf_ignore_bad_quals;
13991 f = TREE_TYPE (f);
13994 if (TREE_CODE (f) != TYPENAME_TYPE)
13996 if (TYPENAME_IS_ENUM_P (t) && TREE_CODE (f) != ENUMERAL_TYPE)
13998 if (complain & tf_error)
13999 error ("%qT resolves to %qT, which is not an enumeration type",
14000 t, f);
14001 else
14002 return error_mark_node;
14004 else if (TYPENAME_IS_CLASS_P (t) && !CLASS_TYPE_P (f))
14006 if (complain & tf_error)
14007 error ("%qT resolves to %qT, which is is not a class type",
14008 t, f);
14009 else
14010 return error_mark_node;
14014 return cp_build_qualified_type_real
14015 (f, cp_type_quals (f) | cp_type_quals (t), complain);
14018 case UNBOUND_CLASS_TEMPLATE:
14020 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
14021 in_decl, /*entering_scope=*/1);
14022 tree name = TYPE_IDENTIFIER (t);
14023 tree parm_list = DECL_TEMPLATE_PARMS (TYPE_NAME (t));
14025 if (ctx == error_mark_node || name == error_mark_node)
14026 return error_mark_node;
14028 if (parm_list)
14029 parm_list = tsubst_template_parms (parm_list, args, complain);
14030 return make_unbound_class_template (ctx, name, parm_list, complain);
14033 case TYPEOF_TYPE:
14035 tree type;
14037 ++cp_unevaluated_operand;
14038 ++c_inhibit_evaluation_warnings;
14040 type = tsubst_expr (TYPEOF_TYPE_EXPR (t), args,
14041 complain, in_decl,
14042 /*integral_constant_expression_p=*/false);
14044 --cp_unevaluated_operand;
14045 --c_inhibit_evaluation_warnings;
14047 type = finish_typeof (type);
14048 return cp_build_qualified_type_real (type,
14049 cp_type_quals (t)
14050 | cp_type_quals (type),
14051 complain);
14054 case DECLTYPE_TYPE:
14056 tree type;
14058 ++cp_unevaluated_operand;
14059 ++c_inhibit_evaluation_warnings;
14061 type = tsubst_copy_and_build (DECLTYPE_TYPE_EXPR (t), args,
14062 complain|tf_decltype, in_decl,
14063 /*function_p*/false,
14064 /*integral_constant_expression*/false);
14066 if (DECLTYPE_FOR_INIT_CAPTURE (t))
14068 if (type == NULL_TREE)
14070 if (complain & tf_error)
14071 error ("empty initializer in lambda init-capture");
14072 type = error_mark_node;
14074 else if (TREE_CODE (type) == TREE_LIST)
14075 type = build_x_compound_expr_from_list (type, ELK_INIT, complain);
14078 --cp_unevaluated_operand;
14079 --c_inhibit_evaluation_warnings;
14081 if (DECLTYPE_FOR_LAMBDA_CAPTURE (t))
14082 type = lambda_capture_field_type (type,
14083 DECLTYPE_FOR_INIT_CAPTURE (t),
14084 DECLTYPE_FOR_REF_CAPTURE (t));
14085 else if (DECLTYPE_FOR_LAMBDA_PROXY (t))
14086 type = lambda_proxy_type (type);
14087 else
14089 bool id = DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t);
14090 if (id && TREE_CODE (DECLTYPE_TYPE_EXPR (t)) == BIT_NOT_EXPR
14091 && EXPR_P (type))
14092 /* In a template ~id could be either a complement expression
14093 or an unqualified-id naming a destructor; if instantiating
14094 it produces an expression, it's not an id-expression or
14095 member access. */
14096 id = false;
14097 type = finish_decltype_type (type, id, complain);
14099 return cp_build_qualified_type_real (type,
14100 cp_type_quals (t)
14101 | cp_type_quals (type),
14102 complain | tf_ignore_bad_quals);
14105 case UNDERLYING_TYPE:
14107 tree type = tsubst (UNDERLYING_TYPE_TYPE (t), args,
14108 complain, in_decl);
14109 return finish_underlying_type (type);
14112 case TYPE_ARGUMENT_PACK:
14113 case NONTYPE_ARGUMENT_PACK:
14115 tree r;
14117 if (code == NONTYPE_ARGUMENT_PACK)
14119 r = make_node (code);
14120 /* Set the already-substituted type. */
14121 TREE_TYPE (r) = type;
14123 else
14124 r = cxx_make_type (code);
14126 tree pack_args = ARGUMENT_PACK_ARGS (t);
14127 pack_args = tsubst_template_args (pack_args, args, complain, in_decl);
14128 SET_ARGUMENT_PACK_ARGS (r, pack_args);
14130 return r;
14133 case VOID_CST:
14134 case INTEGER_CST:
14135 case REAL_CST:
14136 case STRING_CST:
14137 case PLUS_EXPR:
14138 case MINUS_EXPR:
14139 case NEGATE_EXPR:
14140 case NOP_EXPR:
14141 case INDIRECT_REF:
14142 case ADDR_EXPR:
14143 case CALL_EXPR:
14144 case ARRAY_REF:
14145 case SCOPE_REF:
14146 /* We should use one of the expression tsubsts for these codes. */
14147 gcc_unreachable ();
14149 default:
14150 sorry ("use of %qs in template", get_tree_code_name (code));
14151 return error_mark_node;
14155 /* Like tsubst_expr for a BASELINK. OBJECT_TYPE, if non-NULL, is the
14156 type of the expression on the left-hand side of the "." or "->"
14157 operator. */
14159 static tree
14160 tsubst_baselink (tree baselink, tree object_type,
14161 tree args, tsubst_flags_t complain, tree in_decl)
14163 tree name;
14164 tree qualifying_scope;
14165 tree fns;
14166 tree optype;
14167 tree template_args = 0;
14168 bool template_id_p = false;
14169 bool qualified = BASELINK_QUALIFIED_P (baselink);
14171 /* A baselink indicates a function from a base class. Both the
14172 BASELINK_ACCESS_BINFO and the base class referenced may
14173 indicate bases of the template class, rather than the
14174 instantiated class. In addition, lookups that were not
14175 ambiguous before may be ambiguous now. Therefore, we perform
14176 the lookup again. */
14177 qualifying_scope = BINFO_TYPE (BASELINK_ACCESS_BINFO (baselink));
14178 qualifying_scope = tsubst (qualifying_scope, args,
14179 complain, in_decl);
14180 fns = BASELINK_FUNCTIONS (baselink);
14181 optype = tsubst (BASELINK_OPTYPE (baselink), args, complain, in_decl);
14182 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
14184 template_id_p = true;
14185 template_args = TREE_OPERAND (fns, 1);
14186 fns = TREE_OPERAND (fns, 0);
14187 if (template_args)
14188 template_args = tsubst_template_args (template_args, args,
14189 complain, in_decl);
14191 name = DECL_NAME (get_first_fn (fns));
14192 if (IDENTIFIER_TYPENAME_P (name))
14193 name = mangle_conv_op_name_for_type (optype);
14194 baselink = lookup_fnfields (qualifying_scope, name, /*protect=*/1);
14195 if (!baselink)
14197 if (constructor_name_p (name, qualifying_scope))
14199 if (complain & tf_error)
14200 error ("cannot call constructor %<%T::%D%> directly",
14201 qualifying_scope, name);
14203 return error_mark_node;
14206 /* If lookup found a single function, mark it as used at this
14207 point. (If it lookup found multiple functions the one selected
14208 later by overload resolution will be marked as used at that
14209 point.) */
14210 if (BASELINK_P (baselink))
14211 fns = BASELINK_FUNCTIONS (baselink);
14212 if (!template_id_p && !really_overloaded_fn (fns)
14213 && !mark_used (OVL_CURRENT (fns), complain) && !(complain & tf_error))
14214 return error_mark_node;
14216 /* Add back the template arguments, if present. */
14217 if (BASELINK_P (baselink) && template_id_p)
14218 BASELINK_FUNCTIONS (baselink)
14219 = build2 (TEMPLATE_ID_EXPR,
14220 unknown_type_node,
14221 BASELINK_FUNCTIONS (baselink),
14222 template_args);
14223 /* Update the conversion operator type. */
14224 if (BASELINK_P (baselink))
14225 BASELINK_OPTYPE (baselink) = optype;
14227 if (!object_type)
14228 object_type = current_class_type;
14230 if (qualified || name == complete_dtor_identifier)
14232 baselink = adjust_result_of_qualified_name_lookup (baselink,
14233 qualifying_scope,
14234 object_type);
14235 if (!qualified)
14236 /* We need to call adjust_result_of_qualified_name_lookup in case the
14237 destructor names a base class, but we unset BASELINK_QUALIFIED_P
14238 so that we still get virtual function binding. */
14239 BASELINK_QUALIFIED_P (baselink) = false;
14241 return baselink;
14244 /* Like tsubst_expr for a SCOPE_REF, given by QUALIFIED_ID. DONE is
14245 true if the qualified-id will be a postfix-expression in-and-of
14246 itself; false if more of the postfix-expression follows the
14247 QUALIFIED_ID. ADDRESS_P is true if the qualified-id is the operand
14248 of "&". */
14250 static tree
14251 tsubst_qualified_id (tree qualified_id, tree args,
14252 tsubst_flags_t complain, tree in_decl,
14253 bool done, bool address_p)
14255 tree expr;
14256 tree scope;
14257 tree name;
14258 bool is_template;
14259 tree template_args;
14260 location_t loc = UNKNOWN_LOCATION;
14262 gcc_assert (TREE_CODE (qualified_id) == SCOPE_REF);
14264 /* Figure out what name to look up. */
14265 name = TREE_OPERAND (qualified_id, 1);
14266 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
14268 is_template = true;
14269 loc = EXPR_LOCATION (name);
14270 template_args = TREE_OPERAND (name, 1);
14271 if (template_args)
14272 template_args = tsubst_template_args (template_args, args,
14273 complain, in_decl);
14274 if (template_args == error_mark_node)
14275 return error_mark_node;
14276 name = TREE_OPERAND (name, 0);
14278 else
14280 is_template = false;
14281 template_args = NULL_TREE;
14284 /* Substitute into the qualifying scope. When there are no ARGS, we
14285 are just trying to simplify a non-dependent expression. In that
14286 case the qualifying scope may be dependent, and, in any case,
14287 substituting will not help. */
14288 scope = TREE_OPERAND (qualified_id, 0);
14289 if (args)
14291 scope = tsubst (scope, args, complain, in_decl);
14292 expr = tsubst_copy (name, args, complain, in_decl);
14294 else
14295 expr = name;
14297 if (dependent_scope_p (scope))
14299 if (is_template)
14300 expr = build_min_nt_loc (loc, TEMPLATE_ID_EXPR, expr, template_args);
14301 tree r = build_qualified_name (NULL_TREE, scope, expr,
14302 QUALIFIED_NAME_IS_TEMPLATE (qualified_id));
14303 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (qualified_id);
14304 return r;
14307 if (!BASELINK_P (name) && !DECL_P (expr))
14309 if (TREE_CODE (expr) == BIT_NOT_EXPR)
14311 /* A BIT_NOT_EXPR is used to represent a destructor. */
14312 if (!check_dtor_name (scope, TREE_OPERAND (expr, 0)))
14314 error ("qualifying type %qT does not match destructor name ~%qT",
14315 scope, TREE_OPERAND (expr, 0));
14316 expr = error_mark_node;
14318 else
14319 expr = lookup_qualified_name (scope, complete_dtor_identifier,
14320 /*is_type_p=*/0, false);
14322 else
14323 expr = lookup_qualified_name (scope, expr, /*is_type_p=*/0, false);
14324 if (TREE_CODE (TREE_CODE (expr) == TEMPLATE_DECL
14325 ? DECL_TEMPLATE_RESULT (expr) : expr) == TYPE_DECL)
14327 if (complain & tf_error)
14329 error ("dependent-name %qE is parsed as a non-type, but "
14330 "instantiation yields a type", qualified_id);
14331 inform (input_location, "say %<typename %E%> if a type is meant", qualified_id);
14333 return error_mark_node;
14337 if (DECL_P (expr))
14339 check_accessibility_of_qualified_id (expr, /*object_type=*/NULL_TREE,
14340 scope);
14341 /* Remember that there was a reference to this entity. */
14342 if (!mark_used (expr, complain) && !(complain & tf_error))
14343 return error_mark_node;
14346 if (expr == error_mark_node || TREE_CODE (expr) == TREE_LIST)
14348 if (complain & tf_error)
14349 qualified_name_lookup_error (scope,
14350 TREE_OPERAND (qualified_id, 1),
14351 expr, input_location);
14352 return error_mark_node;
14355 if (is_template)
14357 if (variable_template_p (expr))
14358 expr = lookup_and_finish_template_variable (expr, template_args,
14359 complain);
14360 else
14361 expr = lookup_template_function (expr, template_args);
14364 if (expr == error_mark_node && complain & tf_error)
14365 qualified_name_lookup_error (scope, TREE_OPERAND (qualified_id, 1),
14366 expr, input_location);
14367 else if (TYPE_P (scope))
14369 expr = (adjust_result_of_qualified_name_lookup
14370 (expr, scope, current_nonlambda_class_type ()));
14371 expr = (finish_qualified_id_expr
14372 (scope, expr, done, address_p && PTRMEM_OK_P (qualified_id),
14373 QUALIFIED_NAME_IS_TEMPLATE (qualified_id),
14374 /*template_arg_p=*/false, complain));
14377 /* Expressions do not generally have reference type. */
14378 if (TREE_CODE (expr) != SCOPE_REF
14379 /* However, if we're about to form a pointer-to-member, we just
14380 want the referenced member referenced. */
14381 && TREE_CODE (expr) != OFFSET_REF)
14382 expr = convert_from_reference (expr);
14384 if (REF_PARENTHESIZED_P (qualified_id))
14385 expr = force_paren_expr (expr);
14387 return expr;
14390 /* tsubst the initializer for a VAR_DECL. INIT is the unsubstituted
14391 initializer, DECL is the substituted VAR_DECL. Other arguments are as
14392 for tsubst. */
14394 static tree
14395 tsubst_init (tree init, tree decl, tree args,
14396 tsubst_flags_t complain, tree in_decl)
14398 if (!init)
14399 return NULL_TREE;
14401 init = tsubst_expr (init, args, complain, in_decl, false);
14403 if (!init && TREE_TYPE (decl) != error_mark_node)
14405 /* If we had an initializer but it
14406 instantiated to nothing,
14407 value-initialize the object. This will
14408 only occur when the initializer was a
14409 pack expansion where the parameter packs
14410 used in that expansion were of length
14411 zero. */
14412 init = build_value_init (TREE_TYPE (decl),
14413 complain);
14414 if (TREE_CODE (init) == AGGR_INIT_EXPR)
14415 init = get_target_expr_sfinae (init, complain);
14416 if (TREE_CODE (init) == TARGET_EXPR)
14417 TARGET_EXPR_DIRECT_INIT_P (init) = true;
14420 return init;
14423 /* Like tsubst, but deals with expressions. This function just replaces
14424 template parms; to finish processing the resultant expression, use
14425 tsubst_copy_and_build or tsubst_expr. */
14427 static tree
14428 tsubst_copy (tree t, tree args, tsubst_flags_t complain, tree in_decl)
14430 enum tree_code code;
14431 tree r;
14433 if (t == NULL_TREE || t == error_mark_node || args == NULL_TREE)
14434 return t;
14436 code = TREE_CODE (t);
14438 switch (code)
14440 case PARM_DECL:
14441 r = retrieve_local_specialization (t);
14443 if (r == NULL_TREE)
14445 /* We get here for a use of 'this' in an NSDMI as part of a
14446 constructor call or as part of an aggregate initialization. */
14447 if (DECL_NAME (t) == this_identifier
14448 && ((current_function_decl
14449 && DECL_CONSTRUCTOR_P (current_function_decl))
14450 || (current_class_ref
14451 && TREE_CODE (current_class_ref) == PLACEHOLDER_EXPR)))
14452 return current_class_ptr;
14454 /* This can happen for a parameter name used later in a function
14455 declaration (such as in a late-specified return type). Just
14456 make a dummy decl, since it's only used for its type. */
14457 gcc_assert (cp_unevaluated_operand != 0);
14458 r = tsubst_decl (t, args, complain);
14459 /* Give it the template pattern as its context; its true context
14460 hasn't been instantiated yet and this is good enough for
14461 mangling. */
14462 DECL_CONTEXT (r) = DECL_CONTEXT (t);
14465 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
14466 r = ARGUMENT_PACK_SELECT_ARG (r);
14467 if (!mark_used (r, complain) && !(complain & tf_error))
14468 return error_mark_node;
14469 return r;
14471 case CONST_DECL:
14473 tree enum_type;
14474 tree v;
14476 if (DECL_TEMPLATE_PARM_P (t))
14477 return tsubst_copy (DECL_INITIAL (t), args, complain, in_decl);
14478 /* There is no need to substitute into namespace-scope
14479 enumerators. */
14480 if (DECL_NAMESPACE_SCOPE_P (t))
14481 return t;
14482 /* If ARGS is NULL, then T is known to be non-dependent. */
14483 if (args == NULL_TREE)
14484 return scalar_constant_value (t);
14486 /* Unfortunately, we cannot just call lookup_name here.
14487 Consider:
14489 template <int I> int f() {
14490 enum E { a = I };
14491 struct S { void g() { E e = a; } };
14494 When we instantiate f<7>::S::g(), say, lookup_name is not
14495 clever enough to find f<7>::a. */
14496 enum_type
14497 = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
14498 /*entering_scope=*/0);
14500 for (v = TYPE_VALUES (enum_type);
14501 v != NULL_TREE;
14502 v = TREE_CHAIN (v))
14503 if (TREE_PURPOSE (v) == DECL_NAME (t))
14504 return TREE_VALUE (v);
14506 /* We didn't find the name. That should never happen; if
14507 name-lookup found it during preliminary parsing, we
14508 should find it again here during instantiation. */
14509 gcc_unreachable ();
14511 return t;
14513 case FIELD_DECL:
14514 if (PACK_EXPANSION_P (TREE_TYPE (t)))
14516 /* Check for a local specialization set up by
14517 tsubst_pack_expansion. */
14518 if (tree r = retrieve_local_specialization (t))
14520 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
14521 r = ARGUMENT_PACK_SELECT_ARG (r);
14522 return r;
14525 /* When retrieving a capture pack from a generic lambda, remove the
14526 lambda call op's own template argument list from ARGS. Only the
14527 template arguments active for the closure type should be used to
14528 retrieve the pack specialization. */
14529 if (LAMBDA_FUNCTION_P (current_function_decl)
14530 && (template_class_depth (DECL_CONTEXT (t))
14531 != TMPL_ARGS_DEPTH (args)))
14532 args = strip_innermost_template_args (args, 1);
14534 /* Otherwise return the full NONTYPE_ARGUMENT_PACK that
14535 tsubst_decl put in the hash table. */
14536 return retrieve_specialization (t, args, 0);
14539 if (DECL_CONTEXT (t))
14541 tree ctx;
14543 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
14544 /*entering_scope=*/1);
14545 if (ctx != DECL_CONTEXT (t))
14547 tree r = lookup_field (ctx, DECL_NAME (t), 0, false);
14548 if (!r)
14550 if (complain & tf_error)
14551 error ("using invalid field %qD", t);
14552 return error_mark_node;
14554 return r;
14558 return t;
14560 case VAR_DECL:
14561 case FUNCTION_DECL:
14562 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
14563 r = tsubst (t, args, complain, in_decl);
14564 else if (local_variable_p (t)
14565 && uses_template_parms (DECL_CONTEXT (t)))
14567 r = retrieve_local_specialization (t);
14568 if (r == NULL_TREE)
14570 /* First try name lookup to find the instantiation. */
14571 r = lookup_name (DECL_NAME (t));
14572 if (r && !is_capture_proxy (r))
14574 /* Make sure that the one we found is the one we want. */
14575 tree ctx = DECL_CONTEXT (t);
14576 if (DECL_LANG_SPECIFIC (ctx) && DECL_TEMPLATE_INFO (ctx))
14577 ctx = tsubst (ctx, args, complain, in_decl);
14578 if (ctx != DECL_CONTEXT (r))
14579 r = NULL_TREE;
14582 if (r)
14583 /* OK */;
14584 else
14586 /* This can happen for a variable used in a
14587 late-specified return type of a local lambda, or for a
14588 local static or constant. Building a new VAR_DECL
14589 should be OK in all those cases. */
14590 r = tsubst_decl (t, args, complain);
14591 if (local_specializations)
14592 /* Avoid infinite recursion (79640). */
14593 register_local_specialization (r, t);
14594 if (decl_maybe_constant_var_p (r))
14596 /* We can't call cp_finish_decl, so handle the
14597 initializer by hand. */
14598 tree init = tsubst_init (DECL_INITIAL (t), r, args,
14599 complain, in_decl);
14600 if (!processing_template_decl)
14601 init = maybe_constant_init (init);
14602 if (processing_template_decl
14603 ? potential_constant_expression (init)
14604 : reduced_constant_expression_p (init))
14605 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r)
14606 = TREE_CONSTANT (r) = true;
14607 DECL_INITIAL (r) = init;
14609 gcc_assert (cp_unevaluated_operand || TREE_STATIC (r)
14610 || decl_constant_var_p (r)
14611 || errorcount || sorrycount);
14612 if (!processing_template_decl
14613 && !TREE_STATIC (r))
14614 r = process_outer_var_ref (r, complain);
14616 /* Remember this for subsequent uses. */
14617 if (local_specializations)
14618 register_local_specialization (r, t);
14621 else
14622 r = t;
14623 if (!mark_used (r, complain))
14624 return error_mark_node;
14625 return r;
14627 case NAMESPACE_DECL:
14628 return t;
14630 case OVERLOAD:
14631 /* An OVERLOAD will always be a non-dependent overload set; an
14632 overload set from function scope will just be represented with an
14633 IDENTIFIER_NODE, and from class scope with a BASELINK. */
14634 gcc_assert (!uses_template_parms (t));
14635 return t;
14637 case BASELINK:
14638 return tsubst_baselink (t, current_nonlambda_class_type (),
14639 args, complain, in_decl);
14641 case TEMPLATE_DECL:
14642 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
14643 return tsubst (TREE_TYPE (DECL_TEMPLATE_RESULT (t)),
14644 args, complain, in_decl);
14645 else if (DECL_FUNCTION_TEMPLATE_P (t) && DECL_MEMBER_TEMPLATE_P (t))
14646 return tsubst (t, args, complain, in_decl);
14647 else if (DECL_CLASS_SCOPE_P (t)
14648 && uses_template_parms (DECL_CONTEXT (t)))
14650 /* Template template argument like the following example need
14651 special treatment:
14653 template <template <class> class TT> struct C {};
14654 template <class T> struct D {
14655 template <class U> struct E {};
14656 C<E> c; // #1
14658 D<int> d; // #2
14660 We are processing the template argument `E' in #1 for
14661 the template instantiation #2. Originally, `E' is a
14662 TEMPLATE_DECL with `D<T>' as its DECL_CONTEXT. Now we
14663 have to substitute this with one having context `D<int>'. */
14665 tree context = tsubst (DECL_CONTEXT (t), args, complain, in_decl);
14666 if (dependent_scope_p (context))
14668 /* When rewriting a constructor into a deduction guide, a
14669 non-dependent name can become dependent, so memtmpl<args>
14670 becomes context::template memtmpl<args>. */
14671 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14672 return build_qualified_name (type, context, DECL_NAME (t),
14673 /*template*/true);
14675 return lookup_field (context, DECL_NAME(t), 0, false);
14677 else
14678 /* Ordinary template template argument. */
14679 return t;
14681 case CAST_EXPR:
14682 case REINTERPRET_CAST_EXPR:
14683 case CONST_CAST_EXPR:
14684 case STATIC_CAST_EXPR:
14685 case DYNAMIC_CAST_EXPR:
14686 case IMPLICIT_CONV_EXPR:
14687 case CONVERT_EXPR:
14688 case NOP_EXPR:
14690 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14691 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14692 return build1 (code, type, op0);
14695 case SIZEOF_EXPR:
14696 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0))
14697 || ARGUMENT_PACK_P (TREE_OPERAND (t, 0)))
14699 tree expanded, op = TREE_OPERAND (t, 0);
14700 int len = 0;
14702 if (SIZEOF_EXPR_TYPE_P (t))
14703 op = TREE_TYPE (op);
14705 ++cp_unevaluated_operand;
14706 ++c_inhibit_evaluation_warnings;
14707 /* We only want to compute the number of arguments. */
14708 if (PACK_EXPANSION_P (op))
14709 expanded = tsubst_pack_expansion (op, args, complain, in_decl);
14710 else
14711 expanded = tsubst_template_args (ARGUMENT_PACK_ARGS (op),
14712 args, complain, in_decl);
14713 --cp_unevaluated_operand;
14714 --c_inhibit_evaluation_warnings;
14716 if (TREE_CODE (expanded) == TREE_VEC)
14718 len = TREE_VEC_LENGTH (expanded);
14719 /* Set TREE_USED for the benefit of -Wunused. */
14720 for (int i = 0; i < len; i++)
14721 if (DECL_P (TREE_VEC_ELT (expanded, i)))
14722 TREE_USED (TREE_VEC_ELT (expanded, i)) = true;
14725 if (expanded == error_mark_node)
14726 return error_mark_node;
14727 else if (PACK_EXPANSION_P (expanded)
14728 || (TREE_CODE (expanded) == TREE_VEC
14729 && pack_expansion_args_count (expanded)))
14732 if (PACK_EXPANSION_P (expanded))
14733 /* OK. */;
14734 else if (TREE_VEC_LENGTH (expanded) == 1)
14735 expanded = TREE_VEC_ELT (expanded, 0);
14736 else
14737 expanded = make_argument_pack (expanded);
14739 if (TYPE_P (expanded))
14740 return cxx_sizeof_or_alignof_type (expanded, SIZEOF_EXPR,
14741 complain & tf_error);
14742 else
14743 return cxx_sizeof_or_alignof_expr (expanded, SIZEOF_EXPR,
14744 complain & tf_error);
14746 else
14747 return build_int_cst (size_type_node, len);
14749 if (SIZEOF_EXPR_TYPE_P (t))
14751 r = tsubst (TREE_TYPE (TREE_OPERAND (t, 0)),
14752 args, complain, in_decl);
14753 r = build1 (NOP_EXPR, r, error_mark_node);
14754 r = build1 (SIZEOF_EXPR,
14755 tsubst (TREE_TYPE (t), args, complain, in_decl), r);
14756 SIZEOF_EXPR_TYPE_P (r) = 1;
14757 return r;
14759 /* Fall through */
14761 case INDIRECT_REF:
14762 case NEGATE_EXPR:
14763 case TRUTH_NOT_EXPR:
14764 case BIT_NOT_EXPR:
14765 case ADDR_EXPR:
14766 case UNARY_PLUS_EXPR: /* Unary + */
14767 case ALIGNOF_EXPR:
14768 case AT_ENCODE_EXPR:
14769 case ARROW_EXPR:
14770 case THROW_EXPR:
14771 case TYPEID_EXPR:
14772 case REALPART_EXPR:
14773 case IMAGPART_EXPR:
14774 case PAREN_EXPR:
14776 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14777 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14778 return build1 (code, type, op0);
14781 case COMPONENT_REF:
14783 tree object;
14784 tree name;
14786 object = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14787 name = TREE_OPERAND (t, 1);
14788 if (TREE_CODE (name) == BIT_NOT_EXPR)
14790 name = tsubst_copy (TREE_OPERAND (name, 0), args,
14791 complain, in_decl);
14792 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
14794 else if (TREE_CODE (name) == SCOPE_REF
14795 && TREE_CODE (TREE_OPERAND (name, 1)) == BIT_NOT_EXPR)
14797 tree base = tsubst_copy (TREE_OPERAND (name, 0), args,
14798 complain, in_decl);
14799 name = TREE_OPERAND (name, 1);
14800 name = tsubst_copy (TREE_OPERAND (name, 0), args,
14801 complain, in_decl);
14802 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
14803 name = build_qualified_name (/*type=*/NULL_TREE,
14804 base, name,
14805 /*template_p=*/false);
14807 else if (BASELINK_P (name))
14808 name = tsubst_baselink (name,
14809 non_reference (TREE_TYPE (object)),
14810 args, complain,
14811 in_decl);
14812 else
14813 name = tsubst_copy (name, args, complain, in_decl);
14814 return build_nt (COMPONENT_REF, object, name, NULL_TREE);
14817 case PLUS_EXPR:
14818 case MINUS_EXPR:
14819 case MULT_EXPR:
14820 case TRUNC_DIV_EXPR:
14821 case CEIL_DIV_EXPR:
14822 case FLOOR_DIV_EXPR:
14823 case ROUND_DIV_EXPR:
14824 case EXACT_DIV_EXPR:
14825 case BIT_AND_EXPR:
14826 case BIT_IOR_EXPR:
14827 case BIT_XOR_EXPR:
14828 case TRUNC_MOD_EXPR:
14829 case FLOOR_MOD_EXPR:
14830 case TRUTH_ANDIF_EXPR:
14831 case TRUTH_ORIF_EXPR:
14832 case TRUTH_AND_EXPR:
14833 case TRUTH_OR_EXPR:
14834 case RSHIFT_EXPR:
14835 case LSHIFT_EXPR:
14836 case RROTATE_EXPR:
14837 case LROTATE_EXPR:
14838 case EQ_EXPR:
14839 case NE_EXPR:
14840 case MAX_EXPR:
14841 case MIN_EXPR:
14842 case LE_EXPR:
14843 case GE_EXPR:
14844 case LT_EXPR:
14845 case GT_EXPR:
14846 case COMPOUND_EXPR:
14847 case DOTSTAR_EXPR:
14848 case MEMBER_REF:
14849 case PREDECREMENT_EXPR:
14850 case PREINCREMENT_EXPR:
14851 case POSTDECREMENT_EXPR:
14852 case POSTINCREMENT_EXPR:
14854 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14855 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14856 return build_nt (code, op0, op1);
14859 case SCOPE_REF:
14861 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14862 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14863 return build_qualified_name (/*type=*/NULL_TREE, op0, op1,
14864 QUALIFIED_NAME_IS_TEMPLATE (t));
14867 case ARRAY_REF:
14869 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14870 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14871 return build_nt (ARRAY_REF, op0, op1, NULL_TREE, NULL_TREE);
14874 case CALL_EXPR:
14876 int n = VL_EXP_OPERAND_LENGTH (t);
14877 tree result = build_vl_exp (CALL_EXPR, n);
14878 int i;
14879 for (i = 0; i < n; i++)
14880 TREE_OPERAND (t, i) = tsubst_copy (TREE_OPERAND (t, i), args,
14881 complain, in_decl);
14882 return result;
14885 case COND_EXPR:
14886 case MODOP_EXPR:
14887 case PSEUDO_DTOR_EXPR:
14888 case VEC_PERM_EXPR:
14890 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14891 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14892 tree op2 = tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl);
14893 r = build_nt (code, op0, op1, op2);
14894 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
14895 return r;
14898 case NEW_EXPR:
14900 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14901 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14902 tree op2 = tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl);
14903 r = build_nt (code, op0, op1, op2);
14904 NEW_EXPR_USE_GLOBAL (r) = NEW_EXPR_USE_GLOBAL (t);
14905 return r;
14908 case DELETE_EXPR:
14910 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14911 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14912 r = build_nt (code, op0, op1);
14913 DELETE_EXPR_USE_GLOBAL (r) = DELETE_EXPR_USE_GLOBAL (t);
14914 DELETE_EXPR_USE_VEC (r) = DELETE_EXPR_USE_VEC (t);
14915 return r;
14918 case TEMPLATE_ID_EXPR:
14920 /* Substituted template arguments */
14921 tree fn = TREE_OPERAND (t, 0);
14922 tree targs = TREE_OPERAND (t, 1);
14924 fn = tsubst_copy (fn, args, complain, in_decl);
14925 if (targs)
14926 targs = tsubst_template_args (targs, args, complain, in_decl);
14928 return lookup_template_function (fn, targs);
14931 case TREE_LIST:
14933 tree purpose, value, chain;
14935 if (t == void_list_node)
14936 return t;
14938 purpose = TREE_PURPOSE (t);
14939 if (purpose)
14940 purpose = tsubst_copy (purpose, args, complain, in_decl);
14941 value = TREE_VALUE (t);
14942 if (value)
14943 value = tsubst_copy (value, args, complain, in_decl);
14944 chain = TREE_CHAIN (t);
14945 if (chain && chain != void_type_node)
14946 chain = tsubst_copy (chain, args, complain, in_decl);
14947 if (purpose == TREE_PURPOSE (t)
14948 && value == TREE_VALUE (t)
14949 && chain == TREE_CHAIN (t))
14950 return t;
14951 return tree_cons (purpose, value, chain);
14954 case RECORD_TYPE:
14955 case UNION_TYPE:
14956 case ENUMERAL_TYPE:
14957 case INTEGER_TYPE:
14958 case TEMPLATE_TYPE_PARM:
14959 case TEMPLATE_TEMPLATE_PARM:
14960 case BOUND_TEMPLATE_TEMPLATE_PARM:
14961 case TEMPLATE_PARM_INDEX:
14962 case POINTER_TYPE:
14963 case REFERENCE_TYPE:
14964 case OFFSET_TYPE:
14965 case FUNCTION_TYPE:
14966 case METHOD_TYPE:
14967 case ARRAY_TYPE:
14968 case TYPENAME_TYPE:
14969 case UNBOUND_CLASS_TEMPLATE:
14970 case TYPEOF_TYPE:
14971 case DECLTYPE_TYPE:
14972 case TYPE_DECL:
14973 return tsubst (t, args, complain, in_decl);
14975 case USING_DECL:
14976 t = DECL_NAME (t);
14977 /* Fall through. */
14978 case IDENTIFIER_NODE:
14979 if (IDENTIFIER_TYPENAME_P (t))
14981 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14982 return mangle_conv_op_name_for_type (new_type);
14984 else
14985 return t;
14987 case CONSTRUCTOR:
14988 /* This is handled by tsubst_copy_and_build. */
14989 gcc_unreachable ();
14991 case VA_ARG_EXPR:
14993 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14994 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14995 return build_x_va_arg (EXPR_LOCATION (t), op0, type);
14998 case CLEANUP_POINT_EXPR:
14999 /* We shouldn't have built any of these during initial template
15000 generation. Instead, they should be built during instantiation
15001 in response to the saved STMT_IS_FULL_EXPR_P setting. */
15002 gcc_unreachable ();
15004 case OFFSET_REF:
15006 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15007 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
15008 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
15009 r = build2 (code, type, op0, op1);
15010 PTRMEM_OK_P (r) = PTRMEM_OK_P (t);
15011 if (!mark_used (TREE_OPERAND (r, 1), complain)
15012 && !(complain & tf_error))
15013 return error_mark_node;
15014 return r;
15017 case EXPR_PACK_EXPANSION:
15018 error ("invalid use of pack expansion expression");
15019 return error_mark_node;
15021 case NONTYPE_ARGUMENT_PACK:
15022 error ("use %<...%> to expand argument pack");
15023 return error_mark_node;
15025 case VOID_CST:
15026 gcc_checking_assert (t == void_node && VOID_TYPE_P (TREE_TYPE (t)));
15027 return t;
15029 case INTEGER_CST:
15030 case REAL_CST:
15031 case STRING_CST:
15032 case COMPLEX_CST:
15034 /* Instantiate any typedefs in the type. */
15035 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15036 r = fold_convert (type, t);
15037 gcc_assert (TREE_CODE (r) == code);
15038 return r;
15041 case PTRMEM_CST:
15042 /* These can sometimes show up in a partial instantiation, but never
15043 involve template parms. */
15044 gcc_assert (!uses_template_parms (t));
15045 return t;
15047 case UNARY_LEFT_FOLD_EXPR:
15048 return tsubst_unary_left_fold (t, args, complain, in_decl);
15049 case UNARY_RIGHT_FOLD_EXPR:
15050 return tsubst_unary_right_fold (t, args, complain, in_decl);
15051 case BINARY_LEFT_FOLD_EXPR:
15052 return tsubst_binary_left_fold (t, args, complain, in_decl);
15053 case BINARY_RIGHT_FOLD_EXPR:
15054 return tsubst_binary_right_fold (t, args, complain, in_decl);
15056 default:
15057 /* We shouldn't get here, but keep going if !flag_checking. */
15058 if (flag_checking)
15059 gcc_unreachable ();
15060 return t;
15064 /* Helper function for tsubst_omp_clauses, used for instantiation of
15065 OMP_CLAUSE_DECL of clauses. */
15067 static tree
15068 tsubst_omp_clause_decl (tree decl, tree args, tsubst_flags_t complain,
15069 tree in_decl)
15071 if (decl == NULL_TREE)
15072 return NULL_TREE;
15074 /* Handle an OpenMP array section represented as a TREE_LIST (or
15075 OMP_CLAUSE_DEPEND_KIND). An OMP_CLAUSE_DEPEND (with a depend
15076 kind of OMP_CLAUSE_DEPEND_SINK) can also be represented as a
15077 TREE_LIST. We can handle it exactly the same as an array section
15078 (purpose, value, and a chain), even though the nomenclature
15079 (low_bound, length, etc) is different. */
15080 if (TREE_CODE (decl) == TREE_LIST)
15082 tree low_bound
15083 = tsubst_expr (TREE_PURPOSE (decl), args, complain, in_decl,
15084 /*integral_constant_expression_p=*/false);
15085 tree length = tsubst_expr (TREE_VALUE (decl), args, complain, in_decl,
15086 /*integral_constant_expression_p=*/false);
15087 tree chain = tsubst_omp_clause_decl (TREE_CHAIN (decl), args, complain,
15088 in_decl);
15089 if (TREE_PURPOSE (decl) == low_bound
15090 && TREE_VALUE (decl) == length
15091 && TREE_CHAIN (decl) == chain)
15092 return decl;
15093 tree ret = tree_cons (low_bound, length, chain);
15094 OMP_CLAUSE_DEPEND_SINK_NEGATIVE (ret)
15095 = OMP_CLAUSE_DEPEND_SINK_NEGATIVE (decl);
15096 return ret;
15098 tree ret = tsubst_expr (decl, args, complain, in_decl,
15099 /*integral_constant_expression_p=*/false);
15100 /* Undo convert_from_reference tsubst_expr could have called. */
15101 if (decl
15102 && REFERENCE_REF_P (ret)
15103 && !REFERENCE_REF_P (decl))
15104 ret = TREE_OPERAND (ret, 0);
15105 return ret;
15108 /* Like tsubst_copy, but specifically for OpenMP clauses. */
15110 static tree
15111 tsubst_omp_clauses (tree clauses, enum c_omp_region_type ort,
15112 tree args, tsubst_flags_t complain, tree in_decl)
15114 tree new_clauses = NULL_TREE, nc, oc;
15115 tree linear_no_step = NULL_TREE;
15117 for (oc = clauses; oc ; oc = OMP_CLAUSE_CHAIN (oc))
15119 nc = copy_node (oc);
15120 OMP_CLAUSE_CHAIN (nc) = new_clauses;
15121 new_clauses = nc;
15123 switch (OMP_CLAUSE_CODE (nc))
15125 case OMP_CLAUSE_LASTPRIVATE:
15126 if (OMP_CLAUSE_LASTPRIVATE_STMT (oc))
15128 OMP_CLAUSE_LASTPRIVATE_STMT (nc) = push_stmt_list ();
15129 tsubst_expr (OMP_CLAUSE_LASTPRIVATE_STMT (oc), args, complain,
15130 in_decl, /*integral_constant_expression_p=*/false);
15131 OMP_CLAUSE_LASTPRIVATE_STMT (nc)
15132 = pop_stmt_list (OMP_CLAUSE_LASTPRIVATE_STMT (nc));
15134 /* FALLTHRU */
15135 case OMP_CLAUSE_PRIVATE:
15136 case OMP_CLAUSE_SHARED:
15137 case OMP_CLAUSE_FIRSTPRIVATE:
15138 case OMP_CLAUSE_COPYIN:
15139 case OMP_CLAUSE_COPYPRIVATE:
15140 case OMP_CLAUSE_UNIFORM:
15141 case OMP_CLAUSE_DEPEND:
15142 case OMP_CLAUSE_FROM:
15143 case OMP_CLAUSE_TO:
15144 case OMP_CLAUSE_MAP:
15145 case OMP_CLAUSE_USE_DEVICE_PTR:
15146 case OMP_CLAUSE_IS_DEVICE_PTR:
15147 OMP_CLAUSE_DECL (nc)
15148 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
15149 in_decl);
15150 break;
15151 case OMP_CLAUSE_TILE:
15152 case OMP_CLAUSE_IF:
15153 case OMP_CLAUSE_NUM_THREADS:
15154 case OMP_CLAUSE_SCHEDULE:
15155 case OMP_CLAUSE_COLLAPSE:
15156 case OMP_CLAUSE_FINAL:
15157 case OMP_CLAUSE_DEVICE:
15158 case OMP_CLAUSE_DIST_SCHEDULE:
15159 case OMP_CLAUSE_NUM_TEAMS:
15160 case OMP_CLAUSE_THREAD_LIMIT:
15161 case OMP_CLAUSE_SAFELEN:
15162 case OMP_CLAUSE_SIMDLEN:
15163 case OMP_CLAUSE_NUM_TASKS:
15164 case OMP_CLAUSE_GRAINSIZE:
15165 case OMP_CLAUSE_PRIORITY:
15166 case OMP_CLAUSE_ORDERED:
15167 case OMP_CLAUSE_HINT:
15168 case OMP_CLAUSE_NUM_GANGS:
15169 case OMP_CLAUSE_NUM_WORKERS:
15170 case OMP_CLAUSE_VECTOR_LENGTH:
15171 case OMP_CLAUSE_WORKER:
15172 case OMP_CLAUSE_VECTOR:
15173 case OMP_CLAUSE_ASYNC:
15174 case OMP_CLAUSE_WAIT:
15175 OMP_CLAUSE_OPERAND (nc, 0)
15176 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 0), args, complain,
15177 in_decl, /*integral_constant_expression_p=*/false);
15178 break;
15179 case OMP_CLAUSE_REDUCTION:
15180 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (oc))
15182 tree placeholder = OMP_CLAUSE_REDUCTION_PLACEHOLDER (oc);
15183 if (TREE_CODE (placeholder) == SCOPE_REF)
15185 tree scope = tsubst (TREE_OPERAND (placeholder, 0), args,
15186 complain, in_decl);
15187 OMP_CLAUSE_REDUCTION_PLACEHOLDER (nc)
15188 = build_qualified_name (NULL_TREE, scope,
15189 TREE_OPERAND (placeholder, 1),
15190 false);
15192 else
15193 gcc_assert (identifier_p (placeholder));
15195 OMP_CLAUSE_DECL (nc)
15196 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
15197 in_decl);
15198 break;
15199 case OMP_CLAUSE_GANG:
15200 case OMP_CLAUSE_ALIGNED:
15201 OMP_CLAUSE_DECL (nc)
15202 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
15203 in_decl);
15204 OMP_CLAUSE_OPERAND (nc, 1)
15205 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 1), args, complain,
15206 in_decl, /*integral_constant_expression_p=*/false);
15207 break;
15208 case OMP_CLAUSE_LINEAR:
15209 OMP_CLAUSE_DECL (nc)
15210 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
15211 in_decl);
15212 if (OMP_CLAUSE_LINEAR_STEP (oc) == NULL_TREE)
15214 gcc_assert (!linear_no_step);
15215 linear_no_step = nc;
15217 else if (OMP_CLAUSE_LINEAR_VARIABLE_STRIDE (oc))
15218 OMP_CLAUSE_LINEAR_STEP (nc)
15219 = tsubst_omp_clause_decl (OMP_CLAUSE_LINEAR_STEP (oc), args,
15220 complain, in_decl);
15221 else
15222 OMP_CLAUSE_LINEAR_STEP (nc)
15223 = tsubst_expr (OMP_CLAUSE_LINEAR_STEP (oc), args, complain,
15224 in_decl,
15225 /*integral_constant_expression_p=*/false);
15226 break;
15227 case OMP_CLAUSE_NOWAIT:
15228 case OMP_CLAUSE_DEFAULT:
15229 case OMP_CLAUSE_UNTIED:
15230 case OMP_CLAUSE_MERGEABLE:
15231 case OMP_CLAUSE_INBRANCH:
15232 case OMP_CLAUSE_NOTINBRANCH:
15233 case OMP_CLAUSE_PROC_BIND:
15234 case OMP_CLAUSE_FOR:
15235 case OMP_CLAUSE_PARALLEL:
15236 case OMP_CLAUSE_SECTIONS:
15237 case OMP_CLAUSE_TASKGROUP:
15238 case OMP_CLAUSE_NOGROUP:
15239 case OMP_CLAUSE_THREADS:
15240 case OMP_CLAUSE_SIMD:
15241 case OMP_CLAUSE_DEFAULTMAP:
15242 case OMP_CLAUSE_INDEPENDENT:
15243 case OMP_CLAUSE_AUTO:
15244 case OMP_CLAUSE_SEQ:
15245 break;
15246 default:
15247 gcc_unreachable ();
15249 if ((ort & C_ORT_OMP_DECLARE_SIMD) == C_ORT_OMP)
15250 switch (OMP_CLAUSE_CODE (nc))
15252 case OMP_CLAUSE_SHARED:
15253 case OMP_CLAUSE_PRIVATE:
15254 case OMP_CLAUSE_FIRSTPRIVATE:
15255 case OMP_CLAUSE_LASTPRIVATE:
15256 case OMP_CLAUSE_COPYPRIVATE:
15257 case OMP_CLAUSE_LINEAR:
15258 case OMP_CLAUSE_REDUCTION:
15259 case OMP_CLAUSE_USE_DEVICE_PTR:
15260 case OMP_CLAUSE_IS_DEVICE_PTR:
15261 /* tsubst_expr on SCOPE_REF results in returning
15262 finish_non_static_data_member result. Undo that here. */
15263 if (TREE_CODE (OMP_CLAUSE_DECL (oc)) == SCOPE_REF
15264 && (TREE_CODE (TREE_OPERAND (OMP_CLAUSE_DECL (oc), 1))
15265 == IDENTIFIER_NODE))
15267 tree t = OMP_CLAUSE_DECL (nc);
15268 tree v = t;
15269 while (v)
15270 switch (TREE_CODE (v))
15272 case COMPONENT_REF:
15273 case MEM_REF:
15274 case INDIRECT_REF:
15275 CASE_CONVERT:
15276 case POINTER_PLUS_EXPR:
15277 v = TREE_OPERAND (v, 0);
15278 continue;
15279 case PARM_DECL:
15280 if (DECL_CONTEXT (v) == current_function_decl
15281 && DECL_ARTIFICIAL (v)
15282 && DECL_NAME (v) == this_identifier)
15283 OMP_CLAUSE_DECL (nc) = TREE_OPERAND (t, 1);
15284 /* FALLTHRU */
15285 default:
15286 v = NULL_TREE;
15287 break;
15290 else if (VAR_P (OMP_CLAUSE_DECL (oc))
15291 && DECL_HAS_VALUE_EXPR_P (OMP_CLAUSE_DECL (oc))
15292 && DECL_ARTIFICIAL (OMP_CLAUSE_DECL (oc))
15293 && DECL_LANG_SPECIFIC (OMP_CLAUSE_DECL (oc))
15294 && DECL_OMP_PRIVATIZED_MEMBER (OMP_CLAUSE_DECL (oc)))
15296 tree decl = OMP_CLAUSE_DECL (nc);
15297 if (VAR_P (decl))
15299 if (!DECL_LANG_SPECIFIC (decl))
15300 retrofit_lang_decl (decl);
15301 DECL_OMP_PRIVATIZED_MEMBER (decl) = 1;
15304 break;
15305 default:
15306 break;
15310 new_clauses = nreverse (new_clauses);
15311 if (ort != C_ORT_OMP_DECLARE_SIMD)
15313 new_clauses = finish_omp_clauses (new_clauses, ort);
15314 if (linear_no_step)
15315 for (nc = new_clauses; nc; nc = OMP_CLAUSE_CHAIN (nc))
15316 if (nc == linear_no_step)
15318 OMP_CLAUSE_LINEAR_STEP (nc) = NULL_TREE;
15319 break;
15322 return new_clauses;
15325 /* Like tsubst_copy_and_build, but unshare TREE_LIST nodes. */
15327 static tree
15328 tsubst_copy_asm_operands (tree t, tree args, tsubst_flags_t complain,
15329 tree in_decl)
15331 #define RECUR(t) tsubst_copy_asm_operands (t, args, complain, in_decl)
15333 tree purpose, value, chain;
15335 if (t == NULL)
15336 return t;
15338 if (TREE_CODE (t) != TREE_LIST)
15339 return tsubst_copy_and_build (t, args, complain, in_decl,
15340 /*function_p=*/false,
15341 /*integral_constant_expression_p=*/false);
15343 if (t == void_list_node)
15344 return t;
15346 purpose = TREE_PURPOSE (t);
15347 if (purpose)
15348 purpose = RECUR (purpose);
15349 value = TREE_VALUE (t);
15350 if (value)
15352 if (TREE_CODE (value) != LABEL_DECL)
15353 value = RECUR (value);
15354 else
15356 value = lookup_label (DECL_NAME (value));
15357 gcc_assert (TREE_CODE (value) == LABEL_DECL);
15358 TREE_USED (value) = 1;
15361 chain = TREE_CHAIN (t);
15362 if (chain && chain != void_type_node)
15363 chain = RECUR (chain);
15364 return tree_cons (purpose, value, chain);
15365 #undef RECUR
15368 /* Used to temporarily communicate the list of #pragma omp parallel
15369 clauses to #pragma omp for instantiation if they are combined
15370 together. */
15372 static tree *omp_parallel_combined_clauses;
15374 /* Substitute one OMP_FOR iterator. */
15376 static void
15377 tsubst_omp_for_iterator (tree t, int i, tree declv, tree orig_declv,
15378 tree initv, tree condv, tree incrv, tree *clauses,
15379 tree args, tsubst_flags_t complain, tree in_decl,
15380 bool integral_constant_expression_p)
15382 #define RECUR(NODE) \
15383 tsubst_expr ((NODE), args, complain, in_decl, \
15384 integral_constant_expression_p)
15385 tree decl, init, cond, incr;
15387 init = TREE_VEC_ELT (OMP_FOR_INIT (t), i);
15388 gcc_assert (TREE_CODE (init) == MODIFY_EXPR);
15390 if (orig_declv && OMP_FOR_ORIG_DECLS (t))
15392 tree o = TREE_VEC_ELT (OMP_FOR_ORIG_DECLS (t), i);
15393 TREE_VEC_ELT (orig_declv, i) = RECUR (o);
15396 decl = TREE_OPERAND (init, 0);
15397 init = TREE_OPERAND (init, 1);
15398 tree decl_expr = NULL_TREE;
15399 if (init && TREE_CODE (init) == DECL_EXPR)
15401 /* We need to jump through some hoops to handle declarations in the
15402 init-statement, since we might need to handle auto deduction,
15403 but we need to keep control of initialization. */
15404 decl_expr = init;
15405 init = DECL_INITIAL (DECL_EXPR_DECL (init));
15406 decl = tsubst_decl (decl, args, complain);
15408 else
15410 if (TREE_CODE (decl) == SCOPE_REF)
15412 decl = RECUR (decl);
15413 if (TREE_CODE (decl) == COMPONENT_REF)
15415 tree v = decl;
15416 while (v)
15417 switch (TREE_CODE (v))
15419 case COMPONENT_REF:
15420 case MEM_REF:
15421 case INDIRECT_REF:
15422 CASE_CONVERT:
15423 case POINTER_PLUS_EXPR:
15424 v = TREE_OPERAND (v, 0);
15425 continue;
15426 case PARM_DECL:
15427 if (DECL_CONTEXT (v) == current_function_decl
15428 && DECL_ARTIFICIAL (v)
15429 && DECL_NAME (v) == this_identifier)
15431 decl = TREE_OPERAND (decl, 1);
15432 decl = omp_privatize_field (decl, false);
15434 /* FALLTHRU */
15435 default:
15436 v = NULL_TREE;
15437 break;
15441 else
15442 decl = RECUR (decl);
15444 init = RECUR (init);
15446 tree auto_node = type_uses_auto (TREE_TYPE (decl));
15447 if (auto_node && init)
15448 TREE_TYPE (decl)
15449 = do_auto_deduction (TREE_TYPE (decl), init, auto_node);
15451 gcc_assert (!type_dependent_expression_p (decl));
15453 if (!CLASS_TYPE_P (TREE_TYPE (decl)))
15455 if (decl_expr)
15457 /* Declare the variable, but don't let that initialize it. */
15458 tree init_sav = DECL_INITIAL (DECL_EXPR_DECL (decl_expr));
15459 DECL_INITIAL (DECL_EXPR_DECL (decl_expr)) = NULL_TREE;
15460 RECUR (decl_expr);
15461 DECL_INITIAL (DECL_EXPR_DECL (decl_expr)) = init_sav;
15464 cond = RECUR (TREE_VEC_ELT (OMP_FOR_COND (t), i));
15465 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
15466 if (TREE_CODE (incr) == MODIFY_EXPR)
15468 tree lhs = RECUR (TREE_OPERAND (incr, 0));
15469 tree rhs = RECUR (TREE_OPERAND (incr, 1));
15470 incr = build_x_modify_expr (EXPR_LOCATION (incr), lhs,
15471 NOP_EXPR, rhs, complain);
15473 else
15474 incr = RECUR (incr);
15475 TREE_VEC_ELT (declv, i) = decl;
15476 TREE_VEC_ELT (initv, i) = init;
15477 TREE_VEC_ELT (condv, i) = cond;
15478 TREE_VEC_ELT (incrv, i) = incr;
15479 return;
15482 if (decl_expr)
15484 /* Declare and initialize the variable. */
15485 RECUR (decl_expr);
15486 init = NULL_TREE;
15488 else if (init)
15490 tree *pc;
15491 int j;
15492 for (j = (omp_parallel_combined_clauses == NULL ? 1 : 0); j < 2; j++)
15494 for (pc = j ? clauses : omp_parallel_combined_clauses; *pc; )
15496 if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_PRIVATE
15497 && OMP_CLAUSE_DECL (*pc) == decl)
15498 break;
15499 else if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_LASTPRIVATE
15500 && OMP_CLAUSE_DECL (*pc) == decl)
15502 if (j)
15503 break;
15504 /* Move lastprivate (decl) clause to OMP_FOR_CLAUSES. */
15505 tree c = *pc;
15506 *pc = OMP_CLAUSE_CHAIN (c);
15507 OMP_CLAUSE_CHAIN (c) = *clauses;
15508 *clauses = c;
15510 else if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_FIRSTPRIVATE
15511 && OMP_CLAUSE_DECL (*pc) == decl)
15513 error ("iteration variable %qD should not be firstprivate",
15514 decl);
15515 *pc = OMP_CLAUSE_CHAIN (*pc);
15517 else if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_REDUCTION
15518 && OMP_CLAUSE_DECL (*pc) == decl)
15520 error ("iteration variable %qD should not be reduction",
15521 decl);
15522 *pc = OMP_CLAUSE_CHAIN (*pc);
15524 else
15525 pc = &OMP_CLAUSE_CHAIN (*pc);
15527 if (*pc)
15528 break;
15530 if (*pc == NULL_TREE)
15532 tree c = build_omp_clause (input_location, OMP_CLAUSE_PRIVATE);
15533 OMP_CLAUSE_DECL (c) = decl;
15534 c = finish_omp_clauses (c, C_ORT_OMP);
15535 if (c)
15537 OMP_CLAUSE_CHAIN (c) = *clauses;
15538 *clauses = c;
15542 cond = TREE_VEC_ELT (OMP_FOR_COND (t), i);
15543 if (COMPARISON_CLASS_P (cond))
15545 tree op0 = RECUR (TREE_OPERAND (cond, 0));
15546 tree op1 = RECUR (TREE_OPERAND (cond, 1));
15547 cond = build2 (TREE_CODE (cond), boolean_type_node, op0, op1);
15549 else
15550 cond = RECUR (cond);
15551 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
15552 switch (TREE_CODE (incr))
15554 case PREINCREMENT_EXPR:
15555 case PREDECREMENT_EXPR:
15556 case POSTINCREMENT_EXPR:
15557 case POSTDECREMENT_EXPR:
15558 incr = build2 (TREE_CODE (incr), TREE_TYPE (decl),
15559 RECUR (TREE_OPERAND (incr, 0)), NULL_TREE);
15560 break;
15561 case MODIFY_EXPR:
15562 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
15563 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
15565 tree rhs = TREE_OPERAND (incr, 1);
15566 tree lhs = RECUR (TREE_OPERAND (incr, 0));
15567 tree rhs0 = RECUR (TREE_OPERAND (rhs, 0));
15568 tree rhs1 = RECUR (TREE_OPERAND (rhs, 1));
15569 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
15570 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
15571 rhs0, rhs1));
15573 else
15574 incr = RECUR (incr);
15575 break;
15576 case MODOP_EXPR:
15577 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
15578 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
15580 tree lhs = RECUR (TREE_OPERAND (incr, 0));
15581 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
15582 build2 (TREE_CODE (TREE_OPERAND (incr, 1)),
15583 TREE_TYPE (decl), lhs,
15584 RECUR (TREE_OPERAND (incr, 2))));
15586 else if (TREE_CODE (TREE_OPERAND (incr, 1)) == NOP_EXPR
15587 && (TREE_CODE (TREE_OPERAND (incr, 2)) == PLUS_EXPR
15588 || (TREE_CODE (TREE_OPERAND (incr, 2)) == MINUS_EXPR)))
15590 tree rhs = TREE_OPERAND (incr, 2);
15591 tree lhs = RECUR (TREE_OPERAND (incr, 0));
15592 tree rhs0 = RECUR (TREE_OPERAND (rhs, 0));
15593 tree rhs1 = RECUR (TREE_OPERAND (rhs, 1));
15594 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
15595 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
15596 rhs0, rhs1));
15598 else
15599 incr = RECUR (incr);
15600 break;
15601 default:
15602 incr = RECUR (incr);
15603 break;
15606 TREE_VEC_ELT (declv, i) = decl;
15607 TREE_VEC_ELT (initv, i) = init;
15608 TREE_VEC_ELT (condv, i) = cond;
15609 TREE_VEC_ELT (incrv, i) = incr;
15610 #undef RECUR
15613 /* Helper function of tsubst_expr, find OMP_TEAMS inside
15614 of OMP_TARGET's body. */
15616 static tree
15617 tsubst_find_omp_teams (tree *tp, int *walk_subtrees, void *)
15619 *walk_subtrees = 0;
15620 switch (TREE_CODE (*tp))
15622 case OMP_TEAMS:
15623 return *tp;
15624 case BIND_EXPR:
15625 case STATEMENT_LIST:
15626 *walk_subtrees = 1;
15627 break;
15628 default:
15629 break;
15631 return NULL_TREE;
15634 /* Helper function for tsubst_expr. For decomposition declaration
15635 artificial base DECL, which is tsubsted PATTERN_DECL, tsubst
15636 also the corresponding decls representing the identifiers
15637 of the decomposition declaration. Return DECL if successful
15638 or error_mark_node otherwise, set *FIRST to the first decl
15639 in the list chained through DECL_CHAIN and *CNT to the number
15640 of such decls. */
15642 static tree
15643 tsubst_decomp_names (tree decl, tree pattern_decl, tree args,
15644 tsubst_flags_t complain, tree in_decl, tree *first,
15645 unsigned int *cnt)
15647 tree decl2, decl3, prev = decl;
15648 *cnt = 0;
15649 gcc_assert (DECL_NAME (decl) == NULL_TREE);
15650 for (decl2 = DECL_CHAIN (pattern_decl);
15651 decl2
15652 && VAR_P (decl2)
15653 && DECL_DECOMPOSITION_P (decl2)
15654 && DECL_NAME (decl2);
15655 decl2 = DECL_CHAIN (decl2))
15657 if (TREE_TYPE (decl2) == error_mark_node && *cnt == 0)
15659 gcc_assert (errorcount);
15660 return error_mark_node;
15662 (*cnt)++;
15663 gcc_assert (DECL_HAS_VALUE_EXPR_P (decl2));
15664 tree v = DECL_VALUE_EXPR (decl2);
15665 DECL_HAS_VALUE_EXPR_P (decl2) = 0;
15666 SET_DECL_VALUE_EXPR (decl2, NULL_TREE);
15667 decl3 = tsubst (decl2, args, complain, in_decl);
15668 SET_DECL_VALUE_EXPR (decl2, v);
15669 DECL_HAS_VALUE_EXPR_P (decl2) = 1;
15670 if (VAR_P (decl3))
15671 DECL_TEMPLATE_INSTANTIATED (decl3) = 1;
15672 maybe_push_decl (decl3);
15673 if (error_operand_p (decl3))
15674 decl = error_mark_node;
15675 else if (decl != error_mark_node
15676 && DECL_CHAIN (decl3) != prev)
15678 gcc_assert (errorcount);
15679 decl = error_mark_node;
15681 else
15682 prev = decl3;
15684 *first = prev;
15685 return decl;
15688 /* Like tsubst_copy for expressions, etc. but also does semantic
15689 processing. */
15691 tree
15692 tsubst_expr (tree t, tree args, tsubst_flags_t complain, tree in_decl,
15693 bool integral_constant_expression_p)
15695 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
15696 #define RECUR(NODE) \
15697 tsubst_expr ((NODE), args, complain, in_decl, \
15698 integral_constant_expression_p)
15700 tree stmt, tmp;
15701 tree r;
15702 location_t loc;
15704 if (t == NULL_TREE || t == error_mark_node)
15705 return t;
15707 loc = input_location;
15708 if (EXPR_HAS_LOCATION (t))
15709 input_location = EXPR_LOCATION (t);
15710 if (STATEMENT_CODE_P (TREE_CODE (t)))
15711 current_stmt_tree ()->stmts_are_full_exprs_p = STMT_IS_FULL_EXPR_P (t);
15713 switch (TREE_CODE (t))
15715 case STATEMENT_LIST:
15717 tree_stmt_iterator i;
15718 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
15719 RECUR (tsi_stmt (i));
15720 break;
15723 case CTOR_INITIALIZER:
15724 finish_mem_initializers (tsubst_initializer_list
15725 (TREE_OPERAND (t, 0), args));
15726 break;
15728 case RETURN_EXPR:
15729 finish_return_stmt (RECUR (TREE_OPERAND (t, 0)));
15730 break;
15732 case EXPR_STMT:
15733 tmp = RECUR (EXPR_STMT_EXPR (t));
15734 if (EXPR_STMT_STMT_EXPR_RESULT (t))
15735 finish_stmt_expr_expr (tmp, cur_stmt_expr);
15736 else
15737 finish_expr_stmt (tmp);
15738 break;
15740 case USING_STMT:
15741 do_using_directive (USING_STMT_NAMESPACE (t));
15742 break;
15744 case DECL_EXPR:
15746 tree decl, pattern_decl;
15747 tree init;
15749 pattern_decl = decl = DECL_EXPR_DECL (t);
15750 if (TREE_CODE (decl) == LABEL_DECL)
15751 finish_label_decl (DECL_NAME (decl));
15752 else if (TREE_CODE (decl) == USING_DECL)
15754 tree scope = USING_DECL_SCOPE (decl);
15755 tree name = DECL_NAME (decl);
15757 scope = tsubst (scope, args, complain, in_decl);
15758 decl = lookup_qualified_name (scope, name,
15759 /*is_type_p=*/false,
15760 /*complain=*/false);
15761 if (decl == error_mark_node || TREE_CODE (decl) == TREE_LIST)
15762 qualified_name_lookup_error (scope, name, decl, input_location);
15763 else
15764 do_local_using_decl (decl, scope, name);
15766 else if (DECL_PACK_P (decl))
15768 /* Don't build up decls for a variadic capture proxy, we'll
15769 instantiate the elements directly as needed. */
15770 break;
15772 else
15774 init = DECL_INITIAL (decl);
15775 decl = tsubst (decl, args, complain, in_decl);
15776 if (decl != error_mark_node)
15778 /* By marking the declaration as instantiated, we avoid
15779 trying to instantiate it. Since instantiate_decl can't
15780 handle local variables, and since we've already done
15781 all that needs to be done, that's the right thing to
15782 do. */
15783 if (VAR_P (decl))
15784 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
15785 if (VAR_P (decl)
15786 && ANON_AGGR_TYPE_P (TREE_TYPE (decl)))
15787 /* Anonymous aggregates are a special case. */
15788 finish_anon_union (decl);
15789 else if (is_capture_proxy (DECL_EXPR_DECL (t)))
15791 DECL_CONTEXT (decl) = current_function_decl;
15792 if (DECL_NAME (decl) == this_identifier)
15794 tree lam = DECL_CONTEXT (current_function_decl);
15795 lam = CLASSTYPE_LAMBDA_EXPR (lam);
15796 LAMBDA_EXPR_THIS_CAPTURE (lam) = decl;
15798 insert_capture_proxy (decl);
15800 else if (DECL_IMPLICIT_TYPEDEF_P (t))
15801 /* We already did a pushtag. */;
15802 else if (TREE_CODE (decl) == FUNCTION_DECL
15803 && DECL_OMP_DECLARE_REDUCTION_P (decl)
15804 && DECL_FUNCTION_SCOPE_P (pattern_decl))
15806 DECL_CONTEXT (decl) = NULL_TREE;
15807 pushdecl (decl);
15808 DECL_CONTEXT (decl) = current_function_decl;
15809 cp_check_omp_declare_reduction (decl);
15811 else
15813 int const_init = false;
15814 maybe_push_decl (decl);
15815 if (VAR_P (decl)
15816 && DECL_PRETTY_FUNCTION_P (decl))
15818 /* For __PRETTY_FUNCTION__ we have to adjust the
15819 initializer. */
15820 const char *const name
15821 = cxx_printable_name (current_function_decl, 2);
15822 init = cp_fname_init (name, &TREE_TYPE (decl));
15824 else
15825 init = tsubst_init (init, decl, args, complain, in_decl);
15827 if (VAR_P (decl))
15828 const_init = (DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P
15829 (pattern_decl));
15830 cp_finish_decl (decl, init, const_init, NULL_TREE, 0);
15831 if (VAR_P (decl)
15832 && DECL_DECOMPOSITION_P (decl)
15833 && TREE_TYPE (pattern_decl) != error_mark_node)
15835 unsigned int cnt;
15836 tree first;
15837 decl = tsubst_decomp_names (decl, pattern_decl, args,
15838 complain, in_decl, &first,
15839 &cnt);
15840 if (decl != error_mark_node)
15841 cp_finish_decomp (decl, first, cnt);
15847 break;
15850 case FOR_STMT:
15851 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
15852 RECUR (FOR_INIT_STMT (t));
15853 finish_init_stmt (stmt);
15854 tmp = RECUR (FOR_COND (t));
15855 finish_for_cond (tmp, stmt, false);
15856 tmp = RECUR (FOR_EXPR (t));
15857 finish_for_expr (tmp, stmt);
15858 RECUR (FOR_BODY (t));
15859 finish_for_stmt (stmt);
15860 break;
15862 case RANGE_FOR_STMT:
15864 tree decl, expr;
15865 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
15866 decl = RANGE_FOR_DECL (t);
15867 decl = tsubst (decl, args, complain, in_decl);
15868 maybe_push_decl (decl);
15869 expr = RECUR (RANGE_FOR_EXPR (t));
15870 if (VAR_P (decl) && DECL_DECOMPOSITION_P (decl))
15872 unsigned int cnt;
15873 tree first;
15874 decl = tsubst_decomp_names (decl, RANGE_FOR_DECL (t), args,
15875 complain, in_decl, &first, &cnt);
15876 stmt = cp_convert_range_for (stmt, decl, expr, first, cnt,
15877 RANGE_FOR_IVDEP (t));
15879 else
15880 stmt = cp_convert_range_for (stmt, decl, expr, NULL_TREE, 0,
15881 RANGE_FOR_IVDEP (t));
15882 RECUR (RANGE_FOR_BODY (t));
15883 finish_for_stmt (stmt);
15885 break;
15887 case WHILE_STMT:
15888 stmt = begin_while_stmt ();
15889 tmp = RECUR (WHILE_COND (t));
15890 finish_while_stmt_cond (tmp, stmt, false);
15891 RECUR (WHILE_BODY (t));
15892 finish_while_stmt (stmt);
15893 break;
15895 case DO_STMT:
15896 stmt = begin_do_stmt ();
15897 RECUR (DO_BODY (t));
15898 finish_do_body (stmt);
15899 tmp = RECUR (DO_COND (t));
15900 finish_do_stmt (tmp, stmt, false);
15901 break;
15903 case IF_STMT:
15904 stmt = begin_if_stmt ();
15905 IF_STMT_CONSTEXPR_P (stmt) = IF_STMT_CONSTEXPR_P (t);
15906 tmp = RECUR (IF_COND (t));
15907 tmp = finish_if_stmt_cond (tmp, stmt);
15908 if (IF_STMT_CONSTEXPR_P (t) && integer_zerop (tmp))
15909 /* Don't instantiate the THEN_CLAUSE. */;
15910 else
15912 bool inhibit = integer_zerop (fold_non_dependent_expr (tmp));
15913 if (inhibit)
15914 ++c_inhibit_evaluation_warnings;
15915 RECUR (THEN_CLAUSE (t));
15916 if (inhibit)
15917 --c_inhibit_evaluation_warnings;
15919 finish_then_clause (stmt);
15921 if (IF_STMT_CONSTEXPR_P (t) && integer_nonzerop (tmp))
15922 /* Don't instantiate the ELSE_CLAUSE. */;
15923 else if (ELSE_CLAUSE (t))
15925 bool inhibit = integer_nonzerop (fold_non_dependent_expr (tmp));
15926 begin_else_clause (stmt);
15927 if (inhibit)
15928 ++c_inhibit_evaluation_warnings;
15929 RECUR (ELSE_CLAUSE (t));
15930 if (inhibit)
15931 --c_inhibit_evaluation_warnings;
15932 finish_else_clause (stmt);
15935 finish_if_stmt (stmt);
15936 break;
15938 case BIND_EXPR:
15939 if (BIND_EXPR_BODY_BLOCK (t))
15940 stmt = begin_function_body ();
15941 else
15942 stmt = begin_compound_stmt (BIND_EXPR_TRY_BLOCK (t)
15943 ? BCS_TRY_BLOCK : 0);
15945 RECUR (BIND_EXPR_BODY (t));
15947 if (BIND_EXPR_BODY_BLOCK (t))
15948 finish_function_body (stmt);
15949 else
15950 finish_compound_stmt (stmt);
15951 break;
15953 case BREAK_STMT:
15954 finish_break_stmt ();
15955 break;
15957 case CONTINUE_STMT:
15958 finish_continue_stmt ();
15959 break;
15961 case SWITCH_STMT:
15962 stmt = begin_switch_stmt ();
15963 tmp = RECUR (SWITCH_STMT_COND (t));
15964 finish_switch_cond (tmp, stmt);
15965 RECUR (SWITCH_STMT_BODY (t));
15966 finish_switch_stmt (stmt);
15967 break;
15969 case CASE_LABEL_EXPR:
15971 tree low = RECUR (CASE_LOW (t));
15972 tree high = RECUR (CASE_HIGH (t));
15973 tree l = finish_case_label (EXPR_LOCATION (t), low, high);
15974 if (l && TREE_CODE (l) == CASE_LABEL_EXPR)
15975 FALLTHROUGH_LABEL_P (CASE_LABEL (l))
15976 = FALLTHROUGH_LABEL_P (CASE_LABEL (t));
15978 break;
15980 case LABEL_EXPR:
15982 tree decl = LABEL_EXPR_LABEL (t);
15983 tree label;
15985 label = finish_label_stmt (DECL_NAME (decl));
15986 if (TREE_CODE (label) == LABEL_DECL)
15987 FALLTHROUGH_LABEL_P (label) = FALLTHROUGH_LABEL_P (decl);
15988 if (DECL_ATTRIBUTES (decl) != NULL_TREE)
15989 cplus_decl_attributes (&label, DECL_ATTRIBUTES (decl), 0);
15991 break;
15993 case GOTO_EXPR:
15994 tmp = GOTO_DESTINATION (t);
15995 if (TREE_CODE (tmp) != LABEL_DECL)
15996 /* Computed goto's must be tsubst'd into. On the other hand,
15997 non-computed gotos must not be; the identifier in question
15998 will have no binding. */
15999 tmp = RECUR (tmp);
16000 else
16001 tmp = DECL_NAME (tmp);
16002 finish_goto_stmt (tmp);
16003 break;
16005 case ASM_EXPR:
16007 tree string = RECUR (ASM_STRING (t));
16008 tree outputs = tsubst_copy_asm_operands (ASM_OUTPUTS (t), args,
16009 complain, in_decl);
16010 tree inputs = tsubst_copy_asm_operands (ASM_INPUTS (t), args,
16011 complain, in_decl);
16012 tree clobbers = tsubst_copy_asm_operands (ASM_CLOBBERS (t), args,
16013 complain, in_decl);
16014 tree labels = tsubst_copy_asm_operands (ASM_LABELS (t), args,
16015 complain, in_decl);
16016 tmp = finish_asm_stmt (ASM_VOLATILE_P (t), string, outputs, inputs,
16017 clobbers, labels);
16018 tree asm_expr = tmp;
16019 if (TREE_CODE (asm_expr) == CLEANUP_POINT_EXPR)
16020 asm_expr = TREE_OPERAND (asm_expr, 0);
16021 ASM_INPUT_P (asm_expr) = ASM_INPUT_P (t);
16023 break;
16025 case TRY_BLOCK:
16026 if (CLEANUP_P (t))
16028 stmt = begin_try_block ();
16029 RECUR (TRY_STMTS (t));
16030 finish_cleanup_try_block (stmt);
16031 finish_cleanup (RECUR (TRY_HANDLERS (t)), stmt);
16033 else
16035 tree compound_stmt = NULL_TREE;
16037 if (FN_TRY_BLOCK_P (t))
16038 stmt = begin_function_try_block (&compound_stmt);
16039 else
16040 stmt = begin_try_block ();
16042 RECUR (TRY_STMTS (t));
16044 if (FN_TRY_BLOCK_P (t))
16045 finish_function_try_block (stmt);
16046 else
16047 finish_try_block (stmt);
16049 RECUR (TRY_HANDLERS (t));
16050 if (FN_TRY_BLOCK_P (t))
16051 finish_function_handler_sequence (stmt, compound_stmt);
16052 else
16053 finish_handler_sequence (stmt);
16055 break;
16057 case HANDLER:
16059 tree decl = HANDLER_PARMS (t);
16061 if (decl)
16063 decl = tsubst (decl, args, complain, in_decl);
16064 /* Prevent instantiate_decl from trying to instantiate
16065 this variable. We've already done all that needs to be
16066 done. */
16067 if (decl != error_mark_node)
16068 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
16070 stmt = begin_handler ();
16071 finish_handler_parms (decl, stmt);
16072 RECUR (HANDLER_BODY (t));
16073 finish_handler (stmt);
16075 break;
16077 case TAG_DEFN:
16078 tmp = tsubst (TREE_TYPE (t), args, complain, NULL_TREE);
16079 if (CLASS_TYPE_P (tmp))
16081 /* Local classes are not independent templates; they are
16082 instantiated along with their containing function. And this
16083 way we don't have to deal with pushing out of one local class
16084 to instantiate a member of another local class. */
16085 tree fn;
16086 /* Closures are handled by the LAMBDA_EXPR. */
16087 gcc_assert (!LAMBDA_TYPE_P (TREE_TYPE (t)));
16088 complete_type (tmp);
16089 for (fn = TYPE_METHODS (tmp); fn; fn = DECL_CHAIN (fn))
16090 if (!DECL_ARTIFICIAL (fn))
16091 instantiate_decl (fn, /*defer_ok=*/false,
16092 /*expl_inst_class=*/false);
16094 break;
16096 case STATIC_ASSERT:
16098 tree condition;
16100 ++c_inhibit_evaluation_warnings;
16101 condition =
16102 tsubst_expr (STATIC_ASSERT_CONDITION (t),
16103 args,
16104 complain, in_decl,
16105 /*integral_constant_expression_p=*/true);
16106 --c_inhibit_evaluation_warnings;
16108 finish_static_assert (condition,
16109 STATIC_ASSERT_MESSAGE (t),
16110 STATIC_ASSERT_SOURCE_LOCATION (t),
16111 /*member_p=*/false);
16113 break;
16115 case OACC_KERNELS:
16116 case OACC_PARALLEL:
16117 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), C_ORT_ACC, args, complain,
16118 in_decl);
16119 stmt = begin_omp_parallel ();
16120 RECUR (OMP_BODY (t));
16121 finish_omp_construct (TREE_CODE (t), stmt, tmp);
16122 break;
16124 case OMP_PARALLEL:
16125 r = push_omp_privatization_clauses (OMP_PARALLEL_COMBINED (t));
16126 tmp = tsubst_omp_clauses (OMP_PARALLEL_CLAUSES (t), C_ORT_OMP, args,
16127 complain, in_decl);
16128 if (OMP_PARALLEL_COMBINED (t))
16129 omp_parallel_combined_clauses = &tmp;
16130 stmt = begin_omp_parallel ();
16131 RECUR (OMP_PARALLEL_BODY (t));
16132 gcc_assert (omp_parallel_combined_clauses == NULL);
16133 OMP_PARALLEL_COMBINED (finish_omp_parallel (tmp, stmt))
16134 = OMP_PARALLEL_COMBINED (t);
16135 pop_omp_privatization_clauses (r);
16136 break;
16138 case OMP_TASK:
16139 r = push_omp_privatization_clauses (false);
16140 tmp = tsubst_omp_clauses (OMP_TASK_CLAUSES (t), C_ORT_OMP, args,
16141 complain, in_decl);
16142 stmt = begin_omp_task ();
16143 RECUR (OMP_TASK_BODY (t));
16144 finish_omp_task (tmp, stmt);
16145 pop_omp_privatization_clauses (r);
16146 break;
16148 case OMP_FOR:
16149 case OMP_SIMD:
16150 case CILK_SIMD:
16151 case CILK_FOR:
16152 case OMP_DISTRIBUTE:
16153 case OMP_TASKLOOP:
16154 case OACC_LOOP:
16156 tree clauses, body, pre_body;
16157 tree declv = NULL_TREE, initv = NULL_TREE, condv = NULL_TREE;
16158 tree orig_declv = NULL_TREE;
16159 tree incrv = NULL_TREE;
16160 enum c_omp_region_type ort = C_ORT_OMP;
16161 int i;
16163 if (TREE_CODE (t) == CILK_SIMD || TREE_CODE (t) == CILK_FOR)
16164 ort = C_ORT_CILK;
16165 else if (TREE_CODE (t) == OACC_LOOP)
16166 ort = C_ORT_ACC;
16168 r = push_omp_privatization_clauses (OMP_FOR_INIT (t) == NULL_TREE);
16169 clauses = tsubst_omp_clauses (OMP_FOR_CLAUSES (t), ort, args, complain,
16170 in_decl);
16171 if (OMP_FOR_INIT (t) != NULL_TREE)
16173 declv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
16174 if (OMP_FOR_ORIG_DECLS (t))
16175 orig_declv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
16176 initv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
16177 condv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
16178 incrv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
16181 stmt = begin_omp_structured_block ();
16183 pre_body = push_stmt_list ();
16184 RECUR (OMP_FOR_PRE_BODY (t));
16185 pre_body = pop_stmt_list (pre_body);
16187 if (OMP_FOR_INIT (t) != NULL_TREE)
16188 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (t)); i++)
16189 tsubst_omp_for_iterator (t, i, declv, orig_declv, initv, condv,
16190 incrv, &clauses, args, complain, in_decl,
16191 integral_constant_expression_p);
16192 omp_parallel_combined_clauses = NULL;
16194 body = push_stmt_list ();
16195 RECUR (OMP_FOR_BODY (t));
16196 body = pop_stmt_list (body);
16198 if (OMP_FOR_INIT (t) != NULL_TREE)
16199 t = finish_omp_for (EXPR_LOCATION (t), TREE_CODE (t), declv,
16200 orig_declv, initv, condv, incrv, body, pre_body,
16201 NULL, clauses);
16202 else
16204 t = make_node (TREE_CODE (t));
16205 TREE_TYPE (t) = void_type_node;
16206 OMP_FOR_BODY (t) = body;
16207 OMP_FOR_PRE_BODY (t) = pre_body;
16208 OMP_FOR_CLAUSES (t) = clauses;
16209 SET_EXPR_LOCATION (t, EXPR_LOCATION (t));
16210 add_stmt (t);
16213 add_stmt (finish_omp_structured_block (stmt));
16214 pop_omp_privatization_clauses (r);
16216 break;
16218 case OMP_SECTIONS:
16219 omp_parallel_combined_clauses = NULL;
16220 /* FALLTHRU */
16221 case OMP_SINGLE:
16222 case OMP_TEAMS:
16223 case OMP_CRITICAL:
16224 r = push_omp_privatization_clauses (TREE_CODE (t) == OMP_TEAMS
16225 && OMP_TEAMS_COMBINED (t));
16226 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), C_ORT_OMP, args, complain,
16227 in_decl);
16228 stmt = push_stmt_list ();
16229 RECUR (OMP_BODY (t));
16230 stmt = pop_stmt_list (stmt);
16232 t = copy_node (t);
16233 OMP_BODY (t) = stmt;
16234 OMP_CLAUSES (t) = tmp;
16235 add_stmt (t);
16236 pop_omp_privatization_clauses (r);
16237 break;
16239 case OACC_DATA:
16240 case OMP_TARGET_DATA:
16241 case OMP_TARGET:
16242 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), (TREE_CODE (t) == OACC_DATA)
16243 ? C_ORT_ACC : C_ORT_OMP, args, complain,
16244 in_decl);
16245 keep_next_level (true);
16246 stmt = begin_omp_structured_block ();
16248 RECUR (OMP_BODY (t));
16249 stmt = finish_omp_structured_block (stmt);
16251 t = copy_node (t);
16252 OMP_BODY (t) = stmt;
16253 OMP_CLAUSES (t) = tmp;
16254 if (TREE_CODE (t) == OMP_TARGET && OMP_TARGET_COMBINED (t))
16256 tree teams = cp_walk_tree (&stmt, tsubst_find_omp_teams, NULL, NULL);
16257 if (teams)
16259 /* For combined target teams, ensure the num_teams and
16260 thread_limit clause expressions are evaluated on the host,
16261 before entering the target construct. */
16262 tree c;
16263 for (c = OMP_TEAMS_CLAUSES (teams);
16264 c; c = OMP_CLAUSE_CHAIN (c))
16265 if ((OMP_CLAUSE_CODE (c) == OMP_CLAUSE_NUM_TEAMS
16266 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_THREAD_LIMIT)
16267 && TREE_CODE (OMP_CLAUSE_OPERAND (c, 0)) != INTEGER_CST)
16269 tree expr = OMP_CLAUSE_OPERAND (c, 0);
16270 expr = force_target_expr (TREE_TYPE (expr), expr, tf_none);
16271 if (expr == error_mark_node)
16272 continue;
16273 tmp = TARGET_EXPR_SLOT (expr);
16274 add_stmt (expr);
16275 OMP_CLAUSE_OPERAND (c, 0) = expr;
16276 tree tc = build_omp_clause (OMP_CLAUSE_LOCATION (c),
16277 OMP_CLAUSE_FIRSTPRIVATE);
16278 OMP_CLAUSE_DECL (tc) = tmp;
16279 OMP_CLAUSE_CHAIN (tc) = OMP_TARGET_CLAUSES (t);
16280 OMP_TARGET_CLAUSES (t) = tc;
16284 add_stmt (t);
16285 break;
16287 case OACC_DECLARE:
16288 t = copy_node (t);
16289 tmp = tsubst_omp_clauses (OACC_DECLARE_CLAUSES (t), C_ORT_ACC, args,
16290 complain, in_decl);
16291 OACC_DECLARE_CLAUSES (t) = tmp;
16292 add_stmt (t);
16293 break;
16295 case OMP_TARGET_UPDATE:
16296 case OMP_TARGET_ENTER_DATA:
16297 case OMP_TARGET_EXIT_DATA:
16298 tmp = tsubst_omp_clauses (OMP_STANDALONE_CLAUSES (t), C_ORT_OMP, args,
16299 complain, in_decl);
16300 t = copy_node (t);
16301 OMP_STANDALONE_CLAUSES (t) = tmp;
16302 add_stmt (t);
16303 break;
16305 case OACC_ENTER_DATA:
16306 case OACC_EXIT_DATA:
16307 case OACC_UPDATE:
16308 tmp = tsubst_omp_clauses (OMP_STANDALONE_CLAUSES (t), C_ORT_ACC, args,
16309 complain, in_decl);
16310 t = copy_node (t);
16311 OMP_STANDALONE_CLAUSES (t) = tmp;
16312 add_stmt (t);
16313 break;
16315 case OMP_ORDERED:
16316 tmp = tsubst_omp_clauses (OMP_ORDERED_CLAUSES (t), C_ORT_OMP, args,
16317 complain, in_decl);
16318 stmt = push_stmt_list ();
16319 RECUR (OMP_BODY (t));
16320 stmt = pop_stmt_list (stmt);
16322 t = copy_node (t);
16323 OMP_BODY (t) = stmt;
16324 OMP_ORDERED_CLAUSES (t) = tmp;
16325 add_stmt (t);
16326 break;
16328 case OMP_SECTION:
16329 case OMP_MASTER:
16330 case OMP_TASKGROUP:
16331 stmt = push_stmt_list ();
16332 RECUR (OMP_BODY (t));
16333 stmt = pop_stmt_list (stmt);
16335 t = copy_node (t);
16336 OMP_BODY (t) = stmt;
16337 add_stmt (t);
16338 break;
16340 case OMP_ATOMIC:
16341 gcc_assert (OMP_ATOMIC_DEPENDENT_P (t));
16342 if (TREE_CODE (TREE_OPERAND (t, 1)) != MODIFY_EXPR)
16344 tree op1 = TREE_OPERAND (t, 1);
16345 tree rhs1 = NULL_TREE;
16346 tree lhs, rhs;
16347 if (TREE_CODE (op1) == COMPOUND_EXPR)
16349 rhs1 = RECUR (TREE_OPERAND (op1, 0));
16350 op1 = TREE_OPERAND (op1, 1);
16352 lhs = RECUR (TREE_OPERAND (op1, 0));
16353 rhs = RECUR (TREE_OPERAND (op1, 1));
16354 finish_omp_atomic (OMP_ATOMIC, TREE_CODE (op1), lhs, rhs,
16355 NULL_TREE, NULL_TREE, rhs1,
16356 OMP_ATOMIC_SEQ_CST (t));
16358 else
16360 tree op1 = TREE_OPERAND (t, 1);
16361 tree v = NULL_TREE, lhs, rhs = NULL_TREE, lhs1 = NULL_TREE;
16362 tree rhs1 = NULL_TREE;
16363 enum tree_code code = TREE_CODE (TREE_OPERAND (op1, 1));
16364 enum tree_code opcode = NOP_EXPR;
16365 if (code == OMP_ATOMIC_READ)
16367 v = RECUR (TREE_OPERAND (op1, 0));
16368 lhs = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
16370 else if (code == OMP_ATOMIC_CAPTURE_OLD
16371 || code == OMP_ATOMIC_CAPTURE_NEW)
16373 tree op11 = TREE_OPERAND (TREE_OPERAND (op1, 1), 1);
16374 v = RECUR (TREE_OPERAND (op1, 0));
16375 lhs1 = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
16376 if (TREE_CODE (op11) == COMPOUND_EXPR)
16378 rhs1 = RECUR (TREE_OPERAND (op11, 0));
16379 op11 = TREE_OPERAND (op11, 1);
16381 lhs = RECUR (TREE_OPERAND (op11, 0));
16382 rhs = RECUR (TREE_OPERAND (op11, 1));
16383 opcode = TREE_CODE (op11);
16384 if (opcode == MODIFY_EXPR)
16385 opcode = NOP_EXPR;
16387 else
16389 code = OMP_ATOMIC;
16390 lhs = RECUR (TREE_OPERAND (op1, 0));
16391 rhs = RECUR (TREE_OPERAND (op1, 1));
16393 finish_omp_atomic (code, opcode, lhs, rhs, v, lhs1, rhs1,
16394 OMP_ATOMIC_SEQ_CST (t));
16396 break;
16398 case TRANSACTION_EXPR:
16400 int flags = 0;
16401 flags |= (TRANSACTION_EXPR_OUTER (t) ? TM_STMT_ATTR_OUTER : 0);
16402 flags |= (TRANSACTION_EXPR_RELAXED (t) ? TM_STMT_ATTR_RELAXED : 0);
16404 if (TRANSACTION_EXPR_IS_STMT (t))
16406 tree body = TRANSACTION_EXPR_BODY (t);
16407 tree noex = NULL_TREE;
16408 if (TREE_CODE (body) == MUST_NOT_THROW_EXPR)
16410 noex = MUST_NOT_THROW_COND (body);
16411 if (noex == NULL_TREE)
16412 noex = boolean_true_node;
16413 body = TREE_OPERAND (body, 0);
16415 stmt = begin_transaction_stmt (input_location, NULL, flags);
16416 RECUR (body);
16417 finish_transaction_stmt (stmt, NULL, flags, RECUR (noex));
16419 else
16421 stmt = build_transaction_expr (EXPR_LOCATION (t),
16422 RECUR (TRANSACTION_EXPR_BODY (t)),
16423 flags, NULL_TREE);
16424 RETURN (stmt);
16427 break;
16429 case MUST_NOT_THROW_EXPR:
16431 tree op0 = RECUR (TREE_OPERAND (t, 0));
16432 tree cond = RECUR (MUST_NOT_THROW_COND (t));
16433 RETURN (build_must_not_throw_expr (op0, cond));
16436 case EXPR_PACK_EXPANSION:
16437 error ("invalid use of pack expansion expression");
16438 RETURN (error_mark_node);
16440 case NONTYPE_ARGUMENT_PACK:
16441 error ("use %<...%> to expand argument pack");
16442 RETURN (error_mark_node);
16444 case CILK_SPAWN_STMT:
16445 cfun->calls_cilk_spawn = 1;
16446 RETURN (build_cilk_spawn (EXPR_LOCATION (t), RECUR (CILK_SPAWN_FN (t))));
16448 case CILK_SYNC_STMT:
16449 RETURN (build_cilk_sync ());
16451 case COMPOUND_EXPR:
16452 tmp = RECUR (TREE_OPERAND (t, 0));
16453 if (tmp == NULL_TREE)
16454 /* If the first operand was a statement, we're done with it. */
16455 RETURN (RECUR (TREE_OPERAND (t, 1)));
16456 RETURN (build_x_compound_expr (EXPR_LOCATION (t), tmp,
16457 RECUR (TREE_OPERAND (t, 1)),
16458 complain));
16460 case ANNOTATE_EXPR:
16461 tmp = RECUR (TREE_OPERAND (t, 0));
16462 RETURN (build2_loc (EXPR_LOCATION (t), ANNOTATE_EXPR,
16463 TREE_TYPE (tmp), tmp, RECUR (TREE_OPERAND (t, 1))));
16465 default:
16466 gcc_assert (!STATEMENT_CODE_P (TREE_CODE (t)));
16468 RETURN (tsubst_copy_and_build (t, args, complain, in_decl,
16469 /*function_p=*/false,
16470 integral_constant_expression_p));
16473 RETURN (NULL_TREE);
16474 out:
16475 input_location = loc;
16476 return r;
16477 #undef RECUR
16478 #undef RETURN
16481 /* Instantiate the special body of the artificial DECL_OMP_DECLARE_REDUCTION
16482 function. For description of the body see comment above
16483 cp_parser_omp_declare_reduction_exprs. */
16485 static void
16486 tsubst_omp_udr (tree t, tree args, tsubst_flags_t complain, tree in_decl)
16488 if (t == NULL_TREE || t == error_mark_node)
16489 return;
16491 gcc_assert (TREE_CODE (t) == STATEMENT_LIST);
16493 tree_stmt_iterator tsi;
16494 int i;
16495 tree stmts[7];
16496 memset (stmts, 0, sizeof stmts);
16497 for (i = 0, tsi = tsi_start (t);
16498 i < 7 && !tsi_end_p (tsi);
16499 i++, tsi_next (&tsi))
16500 stmts[i] = tsi_stmt (tsi);
16501 gcc_assert (tsi_end_p (tsi));
16503 if (i >= 3)
16505 gcc_assert (TREE_CODE (stmts[0]) == DECL_EXPR
16506 && TREE_CODE (stmts[1]) == DECL_EXPR);
16507 tree omp_out = tsubst (DECL_EXPR_DECL (stmts[0]),
16508 args, complain, in_decl);
16509 tree omp_in = tsubst (DECL_EXPR_DECL (stmts[1]),
16510 args, complain, in_decl);
16511 DECL_CONTEXT (omp_out) = current_function_decl;
16512 DECL_CONTEXT (omp_in) = current_function_decl;
16513 keep_next_level (true);
16514 tree block = begin_omp_structured_block ();
16515 tsubst_expr (stmts[2], args, complain, in_decl, false);
16516 block = finish_omp_structured_block (block);
16517 block = maybe_cleanup_point_expr_void (block);
16518 add_decl_expr (omp_out);
16519 if (TREE_NO_WARNING (DECL_EXPR_DECL (stmts[0])))
16520 TREE_NO_WARNING (omp_out) = 1;
16521 add_decl_expr (omp_in);
16522 finish_expr_stmt (block);
16524 if (i >= 6)
16526 gcc_assert (TREE_CODE (stmts[3]) == DECL_EXPR
16527 && TREE_CODE (stmts[4]) == DECL_EXPR);
16528 tree omp_priv = tsubst (DECL_EXPR_DECL (stmts[3]),
16529 args, complain, in_decl);
16530 tree omp_orig = tsubst (DECL_EXPR_DECL (stmts[4]),
16531 args, complain, in_decl);
16532 DECL_CONTEXT (omp_priv) = current_function_decl;
16533 DECL_CONTEXT (omp_orig) = current_function_decl;
16534 keep_next_level (true);
16535 tree block = begin_omp_structured_block ();
16536 tsubst_expr (stmts[5], args, complain, in_decl, false);
16537 block = finish_omp_structured_block (block);
16538 block = maybe_cleanup_point_expr_void (block);
16539 cp_walk_tree (&block, cp_remove_omp_priv_cleanup_stmt, omp_priv, NULL);
16540 add_decl_expr (omp_priv);
16541 add_decl_expr (omp_orig);
16542 finish_expr_stmt (block);
16543 if (i == 7)
16544 add_decl_expr (omp_orig);
16548 /* T is a postfix-expression that is not being used in a function
16549 call. Return the substituted version of T. */
16551 static tree
16552 tsubst_non_call_postfix_expression (tree t, tree args,
16553 tsubst_flags_t complain,
16554 tree in_decl)
16556 if (TREE_CODE (t) == SCOPE_REF)
16557 t = tsubst_qualified_id (t, args, complain, in_decl,
16558 /*done=*/false, /*address_p=*/false);
16559 else
16560 t = tsubst_copy_and_build (t, args, complain, in_decl,
16561 /*function_p=*/false,
16562 /*integral_constant_expression_p=*/false);
16564 return t;
16567 /* Like tsubst but deals with expressions and performs semantic
16568 analysis. FUNCTION_P is true if T is the "F" in "F (ARGS)". */
16570 tree
16571 tsubst_copy_and_build (tree t,
16572 tree args,
16573 tsubst_flags_t complain,
16574 tree in_decl,
16575 bool function_p,
16576 bool integral_constant_expression_p)
16578 #define RETURN(EXP) do { retval = (EXP); goto out; } while(0)
16579 #define RECUR(NODE) \
16580 tsubst_copy_and_build (NODE, args, complain, in_decl, \
16581 /*function_p=*/false, \
16582 integral_constant_expression_p)
16584 tree retval, op1;
16585 location_t loc;
16587 if (t == NULL_TREE || t == error_mark_node)
16588 return t;
16590 loc = input_location;
16591 if (EXPR_HAS_LOCATION (t))
16592 input_location = EXPR_LOCATION (t);
16594 /* N3276 decltype magic only applies to calls at the top level or on the
16595 right side of a comma. */
16596 tsubst_flags_t decltype_flag = (complain & tf_decltype);
16597 complain &= ~tf_decltype;
16599 switch (TREE_CODE (t))
16601 case USING_DECL:
16602 t = DECL_NAME (t);
16603 /* Fall through. */
16604 case IDENTIFIER_NODE:
16606 tree decl;
16607 cp_id_kind idk;
16608 bool non_integral_constant_expression_p;
16609 const char *error_msg;
16611 if (IDENTIFIER_TYPENAME_P (t))
16613 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16614 t = mangle_conv_op_name_for_type (new_type);
16617 /* Look up the name. */
16618 decl = lookup_name (t);
16620 /* By convention, expressions use ERROR_MARK_NODE to indicate
16621 failure, not NULL_TREE. */
16622 if (decl == NULL_TREE)
16623 decl = error_mark_node;
16625 decl = finish_id_expression (t, decl, NULL_TREE,
16626 &idk,
16627 integral_constant_expression_p,
16628 /*allow_non_integral_constant_expression_p=*/(cxx_dialect >= cxx11),
16629 &non_integral_constant_expression_p,
16630 /*template_p=*/false,
16631 /*done=*/true,
16632 /*address_p=*/false,
16633 /*template_arg_p=*/false,
16634 &error_msg,
16635 input_location);
16636 if (error_msg)
16637 error (error_msg);
16638 if (!function_p && identifier_p (decl))
16640 if (complain & tf_error)
16641 unqualified_name_lookup_error (decl);
16642 decl = error_mark_node;
16644 RETURN (decl);
16647 case TEMPLATE_ID_EXPR:
16649 tree object;
16650 tree templ = RECUR (TREE_OPERAND (t, 0));
16651 tree targs = TREE_OPERAND (t, 1);
16653 if (targs)
16654 targs = tsubst_template_args (targs, args, complain, in_decl);
16655 if (targs == error_mark_node)
16656 return error_mark_node;
16658 if (TREE_CODE (templ) == SCOPE_REF)
16660 tree name = TREE_OPERAND (templ, 1);
16661 tree tid = lookup_template_function (name, targs);
16662 TREE_OPERAND (templ, 1) = tid;
16663 return templ;
16666 if (variable_template_p (templ))
16667 RETURN (lookup_and_finish_template_variable (templ, targs, complain));
16669 if (TREE_CODE (templ) == COMPONENT_REF)
16671 object = TREE_OPERAND (templ, 0);
16672 templ = TREE_OPERAND (templ, 1);
16674 else
16675 object = NULL_TREE;
16676 templ = lookup_template_function (templ, targs);
16678 if (object)
16679 RETURN (build3 (COMPONENT_REF, TREE_TYPE (templ),
16680 object, templ, NULL_TREE));
16681 else
16682 RETURN (baselink_for_fns (templ));
16685 case INDIRECT_REF:
16687 tree r = RECUR (TREE_OPERAND (t, 0));
16689 if (REFERENCE_REF_P (t))
16691 /* A type conversion to reference type will be enclosed in
16692 such an indirect ref, but the substitution of the cast
16693 will have also added such an indirect ref. */
16694 if (TREE_CODE (TREE_TYPE (r)) == REFERENCE_TYPE)
16695 r = convert_from_reference (r);
16697 else
16698 r = build_x_indirect_ref (input_location, r, RO_UNARY_STAR,
16699 complain|decltype_flag);
16701 if (TREE_CODE (r) == INDIRECT_REF)
16702 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
16704 RETURN (r);
16707 case NOP_EXPR:
16709 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16710 tree op0 = RECUR (TREE_OPERAND (t, 0));
16711 RETURN (build_nop (type, op0));
16714 case IMPLICIT_CONV_EXPR:
16716 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16717 tree expr = RECUR (TREE_OPERAND (t, 0));
16718 int flags = LOOKUP_IMPLICIT;
16719 if (IMPLICIT_CONV_EXPR_DIRECT_INIT (t))
16720 flags = LOOKUP_NORMAL;
16721 RETURN (perform_implicit_conversion_flags (type, expr, complain,
16722 flags));
16725 case CONVERT_EXPR:
16727 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16728 tree op0 = RECUR (TREE_OPERAND (t, 0));
16729 RETURN (build1 (CONVERT_EXPR, type, op0));
16732 case CAST_EXPR:
16733 case REINTERPRET_CAST_EXPR:
16734 case CONST_CAST_EXPR:
16735 case DYNAMIC_CAST_EXPR:
16736 case STATIC_CAST_EXPR:
16738 tree type;
16739 tree op, r = NULL_TREE;
16741 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16742 if (integral_constant_expression_p
16743 && !cast_valid_in_integral_constant_expression_p (type))
16745 if (complain & tf_error)
16746 error ("a cast to a type other than an integral or "
16747 "enumeration type cannot appear in a constant-expression");
16748 RETURN (error_mark_node);
16751 op = RECUR (TREE_OPERAND (t, 0));
16753 warning_sentinel s(warn_useless_cast);
16754 switch (TREE_CODE (t))
16756 case CAST_EXPR:
16757 r = build_functional_cast (type, op, complain);
16758 break;
16759 case REINTERPRET_CAST_EXPR:
16760 r = build_reinterpret_cast (type, op, complain);
16761 break;
16762 case CONST_CAST_EXPR:
16763 r = build_const_cast (type, op, complain);
16764 break;
16765 case DYNAMIC_CAST_EXPR:
16766 r = build_dynamic_cast (type, op, complain);
16767 break;
16768 case STATIC_CAST_EXPR:
16769 r = build_static_cast (type, op, complain);
16770 break;
16771 default:
16772 gcc_unreachable ();
16775 RETURN (r);
16778 case POSTDECREMENT_EXPR:
16779 case POSTINCREMENT_EXPR:
16780 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
16781 args, complain, in_decl);
16782 RETURN (build_x_unary_op (input_location, TREE_CODE (t), op1,
16783 complain|decltype_flag));
16785 case PREDECREMENT_EXPR:
16786 case PREINCREMENT_EXPR:
16787 case NEGATE_EXPR:
16788 case BIT_NOT_EXPR:
16789 case ABS_EXPR:
16790 case TRUTH_NOT_EXPR:
16791 case UNARY_PLUS_EXPR: /* Unary + */
16792 case REALPART_EXPR:
16793 case IMAGPART_EXPR:
16794 RETURN (build_x_unary_op (input_location, TREE_CODE (t),
16795 RECUR (TREE_OPERAND (t, 0)),
16796 complain|decltype_flag));
16798 case FIX_TRUNC_EXPR:
16799 RETURN (cp_build_unary_op (FIX_TRUNC_EXPR, RECUR (TREE_OPERAND (t, 0)),
16800 false, complain));
16802 case ADDR_EXPR:
16803 op1 = TREE_OPERAND (t, 0);
16804 if (TREE_CODE (op1) == LABEL_DECL)
16805 RETURN (finish_label_address_expr (DECL_NAME (op1),
16806 EXPR_LOCATION (op1)));
16807 if (TREE_CODE (op1) == SCOPE_REF)
16808 op1 = tsubst_qualified_id (op1, args, complain, in_decl,
16809 /*done=*/true, /*address_p=*/true);
16810 else
16811 op1 = tsubst_non_call_postfix_expression (op1, args, complain,
16812 in_decl);
16813 RETURN (build_x_unary_op (input_location, ADDR_EXPR, op1,
16814 complain|decltype_flag));
16816 case PLUS_EXPR:
16817 case MINUS_EXPR:
16818 case MULT_EXPR:
16819 case TRUNC_DIV_EXPR:
16820 case CEIL_DIV_EXPR:
16821 case FLOOR_DIV_EXPR:
16822 case ROUND_DIV_EXPR:
16823 case EXACT_DIV_EXPR:
16824 case BIT_AND_EXPR:
16825 case BIT_IOR_EXPR:
16826 case BIT_XOR_EXPR:
16827 case TRUNC_MOD_EXPR:
16828 case FLOOR_MOD_EXPR:
16829 case TRUTH_ANDIF_EXPR:
16830 case TRUTH_ORIF_EXPR:
16831 case TRUTH_AND_EXPR:
16832 case TRUTH_OR_EXPR:
16833 case RSHIFT_EXPR:
16834 case LSHIFT_EXPR:
16835 case RROTATE_EXPR:
16836 case LROTATE_EXPR:
16837 case EQ_EXPR:
16838 case NE_EXPR:
16839 case MAX_EXPR:
16840 case MIN_EXPR:
16841 case LE_EXPR:
16842 case GE_EXPR:
16843 case LT_EXPR:
16844 case GT_EXPR:
16845 case MEMBER_REF:
16846 case DOTSTAR_EXPR:
16848 warning_sentinel s1(warn_type_limits);
16849 warning_sentinel s2(warn_div_by_zero);
16850 warning_sentinel s3(warn_logical_op);
16851 warning_sentinel s4(warn_tautological_compare);
16852 tree op0 = RECUR (TREE_OPERAND (t, 0));
16853 tree op1 = RECUR (TREE_OPERAND (t, 1));
16854 tree r = build_x_binary_op
16855 (input_location, TREE_CODE (t),
16856 op0,
16857 (TREE_NO_WARNING (TREE_OPERAND (t, 0))
16858 ? ERROR_MARK
16859 : TREE_CODE (TREE_OPERAND (t, 0))),
16860 op1,
16861 (TREE_NO_WARNING (TREE_OPERAND (t, 1))
16862 ? ERROR_MARK
16863 : TREE_CODE (TREE_OPERAND (t, 1))),
16864 /*overload=*/NULL,
16865 complain|decltype_flag);
16866 if (EXPR_P (r) && TREE_NO_WARNING (t))
16867 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
16869 RETURN (r);
16872 case POINTER_PLUS_EXPR:
16874 tree op0 = RECUR (TREE_OPERAND (t, 0));
16875 tree op1 = RECUR (TREE_OPERAND (t, 1));
16876 return fold_build_pointer_plus (op0, op1);
16879 case SCOPE_REF:
16880 RETURN (tsubst_qualified_id (t, args, complain, in_decl, /*done=*/true,
16881 /*address_p=*/false));
16882 case ARRAY_REF:
16883 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
16884 args, complain, in_decl);
16885 RETURN (build_x_array_ref (EXPR_LOCATION (t), op1,
16886 RECUR (TREE_OPERAND (t, 1)),
16887 complain|decltype_flag));
16889 case ARRAY_NOTATION_REF:
16891 tree start_index, length, stride;
16892 op1 = tsubst_non_call_postfix_expression (ARRAY_NOTATION_ARRAY (t),
16893 args, complain, in_decl);
16894 start_index = RECUR (ARRAY_NOTATION_START (t));
16895 length = RECUR (ARRAY_NOTATION_LENGTH (t));
16896 stride = RECUR (ARRAY_NOTATION_STRIDE (t));
16897 RETURN (build_array_notation_ref (EXPR_LOCATION (t), op1, start_index,
16898 length, stride, TREE_TYPE (op1)));
16900 case SIZEOF_EXPR:
16901 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0))
16902 || ARGUMENT_PACK_P (TREE_OPERAND (t, 0)))
16903 RETURN (tsubst_copy (t, args, complain, in_decl));
16904 /* Fall through */
16906 case ALIGNOF_EXPR:
16908 tree r;
16910 op1 = TREE_OPERAND (t, 0);
16911 if (TREE_CODE (t) == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (t))
16912 op1 = TREE_TYPE (op1);
16913 if (!args)
16915 /* When there are no ARGS, we are trying to evaluate a
16916 non-dependent expression from the parser. Trying to do
16917 the substitutions may not work. */
16918 if (!TYPE_P (op1))
16919 op1 = TREE_TYPE (op1);
16921 else
16923 ++cp_unevaluated_operand;
16924 ++c_inhibit_evaluation_warnings;
16925 if (TYPE_P (op1))
16926 op1 = tsubst (op1, args, complain, in_decl);
16927 else
16928 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
16929 /*function_p=*/false,
16930 /*integral_constant_expression_p=*/
16931 false);
16932 --cp_unevaluated_operand;
16933 --c_inhibit_evaluation_warnings;
16935 if (TYPE_P (op1))
16936 r = cxx_sizeof_or_alignof_type (op1, TREE_CODE (t),
16937 complain & tf_error);
16938 else
16939 r = cxx_sizeof_or_alignof_expr (op1, TREE_CODE (t),
16940 complain & tf_error);
16941 if (TREE_CODE (t) == SIZEOF_EXPR && r != error_mark_node)
16943 if (TREE_CODE (r) != SIZEOF_EXPR || TYPE_P (op1))
16945 if (!processing_template_decl && TYPE_P (op1))
16947 r = build_min (SIZEOF_EXPR, size_type_node,
16948 build1 (NOP_EXPR, op1, error_mark_node));
16949 SIZEOF_EXPR_TYPE_P (r) = 1;
16951 else
16952 r = build_min (SIZEOF_EXPR, size_type_node, op1);
16953 TREE_SIDE_EFFECTS (r) = 0;
16954 TREE_READONLY (r) = 1;
16956 SET_EXPR_LOCATION (r, EXPR_LOCATION (t));
16958 RETURN (r);
16961 case AT_ENCODE_EXPR:
16963 op1 = TREE_OPERAND (t, 0);
16964 ++cp_unevaluated_operand;
16965 ++c_inhibit_evaluation_warnings;
16966 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
16967 /*function_p=*/false,
16968 /*integral_constant_expression_p=*/false);
16969 --cp_unevaluated_operand;
16970 --c_inhibit_evaluation_warnings;
16971 RETURN (objc_build_encode_expr (op1));
16974 case NOEXCEPT_EXPR:
16975 op1 = TREE_OPERAND (t, 0);
16976 ++cp_unevaluated_operand;
16977 ++c_inhibit_evaluation_warnings;
16978 ++cp_noexcept_operand;
16979 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
16980 /*function_p=*/false,
16981 /*integral_constant_expression_p=*/false);
16982 --cp_unevaluated_operand;
16983 --c_inhibit_evaluation_warnings;
16984 --cp_noexcept_operand;
16985 RETURN (finish_noexcept_expr (op1, complain));
16987 case MODOP_EXPR:
16989 warning_sentinel s(warn_div_by_zero);
16990 tree lhs = RECUR (TREE_OPERAND (t, 0));
16991 tree rhs = RECUR (TREE_OPERAND (t, 2));
16992 tree r = build_x_modify_expr
16993 (EXPR_LOCATION (t), lhs, TREE_CODE (TREE_OPERAND (t, 1)), rhs,
16994 complain|decltype_flag);
16995 /* TREE_NO_WARNING must be set if either the expression was
16996 parenthesized or it uses an operator such as >>= rather
16997 than plain assignment. In the former case, it was already
16998 set and must be copied. In the latter case,
16999 build_x_modify_expr sets it and it must not be reset
17000 here. */
17001 if (TREE_NO_WARNING (t))
17002 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
17004 RETURN (r);
17007 case ARROW_EXPR:
17008 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
17009 args, complain, in_decl);
17010 /* Remember that there was a reference to this entity. */
17011 if (DECL_P (op1)
17012 && !mark_used (op1, complain) && !(complain & tf_error))
17013 RETURN (error_mark_node);
17014 RETURN (build_x_arrow (input_location, op1, complain));
17016 case NEW_EXPR:
17018 tree placement = RECUR (TREE_OPERAND (t, 0));
17019 tree init = RECUR (TREE_OPERAND (t, 3));
17020 vec<tree, va_gc> *placement_vec;
17021 vec<tree, va_gc> *init_vec;
17022 tree ret;
17024 if (placement == NULL_TREE)
17025 placement_vec = NULL;
17026 else
17028 placement_vec = make_tree_vector ();
17029 for (; placement != NULL_TREE; placement = TREE_CHAIN (placement))
17030 vec_safe_push (placement_vec, TREE_VALUE (placement));
17033 /* If there was an initializer in the original tree, but it
17034 instantiated to an empty list, then we should pass a
17035 non-NULL empty vector to tell build_new that it was an
17036 empty initializer() rather than no initializer. This can
17037 only happen when the initializer is a pack expansion whose
17038 parameter packs are of length zero. */
17039 if (init == NULL_TREE && TREE_OPERAND (t, 3) == NULL_TREE)
17040 init_vec = NULL;
17041 else
17043 init_vec = make_tree_vector ();
17044 if (init == void_node)
17045 gcc_assert (init_vec != NULL);
17046 else
17048 for (; init != NULL_TREE; init = TREE_CHAIN (init))
17049 vec_safe_push (init_vec, TREE_VALUE (init));
17053 tree op1 = tsubst (TREE_OPERAND (t, 1), args, complain, in_decl);
17054 tree op2 = RECUR (TREE_OPERAND (t, 2));
17055 ret = build_new (&placement_vec, op1, op2, &init_vec,
17056 NEW_EXPR_USE_GLOBAL (t),
17057 complain);
17059 if (placement_vec != NULL)
17060 release_tree_vector (placement_vec);
17061 if (init_vec != NULL)
17062 release_tree_vector (init_vec);
17064 RETURN (ret);
17067 case DELETE_EXPR:
17069 tree op0 = RECUR (TREE_OPERAND (t, 0));
17070 tree op1 = RECUR (TREE_OPERAND (t, 1));
17071 RETURN (delete_sanity (op0, op1,
17072 DELETE_EXPR_USE_VEC (t),
17073 DELETE_EXPR_USE_GLOBAL (t),
17074 complain));
17077 case COMPOUND_EXPR:
17079 tree op0 = tsubst_copy_and_build (TREE_OPERAND (t, 0), args,
17080 complain & ~tf_decltype, in_decl,
17081 /*function_p=*/false,
17082 integral_constant_expression_p);
17083 RETURN (build_x_compound_expr (EXPR_LOCATION (t),
17084 op0,
17085 RECUR (TREE_OPERAND (t, 1)),
17086 complain|decltype_flag));
17089 case CALL_EXPR:
17091 tree function;
17092 vec<tree, va_gc> *call_args;
17093 unsigned int nargs, i;
17094 bool qualified_p;
17095 bool koenig_p;
17096 tree ret;
17098 function = CALL_EXPR_FN (t);
17099 /* Internal function with no arguments. */
17100 if (function == NULL_TREE && call_expr_nargs (t) == 0)
17101 RETURN (t);
17103 /* When we parsed the expression, we determined whether or
17104 not Koenig lookup should be performed. */
17105 koenig_p = KOENIG_LOOKUP_P (t);
17106 if (function == NULL_TREE)
17108 koenig_p = false;
17109 qualified_p = false;
17111 else if (TREE_CODE (function) == SCOPE_REF)
17113 qualified_p = true;
17114 function = tsubst_qualified_id (function, args, complain, in_decl,
17115 /*done=*/false,
17116 /*address_p=*/false);
17118 else if (koenig_p && identifier_p (function))
17120 /* Do nothing; calling tsubst_copy_and_build on an identifier
17121 would incorrectly perform unqualified lookup again.
17123 Note that we can also have an IDENTIFIER_NODE if the earlier
17124 unqualified lookup found a member function; in that case
17125 koenig_p will be false and we do want to do the lookup
17126 again to find the instantiated member function.
17128 FIXME but doing that causes c++/15272, so we need to stop
17129 using IDENTIFIER_NODE in that situation. */
17130 qualified_p = false;
17132 else
17134 if (TREE_CODE (function) == COMPONENT_REF)
17136 tree op = TREE_OPERAND (function, 1);
17138 qualified_p = (TREE_CODE (op) == SCOPE_REF
17139 || (BASELINK_P (op)
17140 && BASELINK_QUALIFIED_P (op)));
17142 else
17143 qualified_p = false;
17145 if (TREE_CODE (function) == ADDR_EXPR
17146 && TREE_CODE (TREE_OPERAND (function, 0)) == FUNCTION_DECL)
17147 /* Avoid error about taking the address of a constructor. */
17148 function = TREE_OPERAND (function, 0);
17150 function = tsubst_copy_and_build (function, args, complain,
17151 in_decl,
17152 !qualified_p,
17153 integral_constant_expression_p);
17155 if (BASELINK_P (function))
17156 qualified_p = true;
17159 nargs = call_expr_nargs (t);
17160 call_args = make_tree_vector ();
17161 for (i = 0; i < nargs; ++i)
17163 tree arg = CALL_EXPR_ARG (t, i);
17165 if (!PACK_EXPANSION_P (arg))
17166 vec_safe_push (call_args, RECUR (CALL_EXPR_ARG (t, i)));
17167 else
17169 /* Expand the pack expansion and push each entry onto
17170 CALL_ARGS. */
17171 arg = tsubst_pack_expansion (arg, args, complain, in_decl);
17172 if (TREE_CODE (arg) == TREE_VEC)
17174 unsigned int len, j;
17176 len = TREE_VEC_LENGTH (arg);
17177 for (j = 0; j < len; ++j)
17179 tree value = TREE_VEC_ELT (arg, j);
17180 if (value != NULL_TREE)
17181 value = convert_from_reference (value);
17182 vec_safe_push (call_args, value);
17185 else
17187 /* A partial substitution. Add one entry. */
17188 vec_safe_push (call_args, arg);
17193 /* We do not perform argument-dependent lookup if normal
17194 lookup finds a non-function, in accordance with the
17195 expected resolution of DR 218. */
17196 if (koenig_p
17197 && ((is_overloaded_fn (function)
17198 /* If lookup found a member function, the Koenig lookup is
17199 not appropriate, even if an unqualified-name was used
17200 to denote the function. */
17201 && !DECL_FUNCTION_MEMBER_P (get_first_fn (function)))
17202 || identifier_p (function))
17203 /* Only do this when substitution turns a dependent call
17204 into a non-dependent call. */
17205 && type_dependent_expression_p_push (t)
17206 && !any_type_dependent_arguments_p (call_args))
17207 function = perform_koenig_lookup (function, call_args, tf_none);
17209 if (function != NULL_TREE
17210 && identifier_p (function)
17211 && !any_type_dependent_arguments_p (call_args))
17213 if (koenig_p && (complain & tf_warning_or_error))
17215 /* For backwards compatibility and good diagnostics, try
17216 the unqualified lookup again if we aren't in SFINAE
17217 context. */
17218 tree unq = (tsubst_copy_and_build
17219 (function, args, complain, in_decl, true,
17220 integral_constant_expression_p));
17221 if (unq == error_mark_node)
17223 release_tree_vector (call_args);
17224 RETURN (error_mark_node);
17227 if (unq != function)
17229 /* In a lambda fn, we have to be careful to not
17230 introduce new this captures. Legacy code can't
17231 be using lambdas anyway, so it's ok to be
17232 stricter. */
17233 bool in_lambda = (current_class_type
17234 && LAMBDA_TYPE_P (current_class_type));
17235 char const *const msg
17236 = G_("%qD was not declared in this scope, "
17237 "and no declarations were found by "
17238 "argument-dependent lookup at the point "
17239 "of instantiation");
17241 bool diag = true;
17242 if (in_lambda)
17243 error_at (EXPR_LOC_OR_LOC (t, input_location),
17244 msg, function);
17245 else
17246 diag = permerror (EXPR_LOC_OR_LOC (t, input_location),
17247 msg, function);
17248 if (diag)
17250 tree fn = unq;
17251 if (INDIRECT_REF_P (fn))
17252 fn = TREE_OPERAND (fn, 0);
17253 if (TREE_CODE (fn) == COMPONENT_REF)
17254 fn = TREE_OPERAND (fn, 1);
17255 if (is_overloaded_fn (fn))
17256 fn = get_first_fn (fn);
17258 if (!DECL_P (fn))
17259 /* Can't say anything more. */;
17260 else if (DECL_CLASS_SCOPE_P (fn))
17262 location_t loc = EXPR_LOC_OR_LOC (t,
17263 input_location);
17264 inform (loc,
17265 "declarations in dependent base %qT are "
17266 "not found by unqualified lookup",
17267 DECL_CLASS_CONTEXT (fn));
17268 if (current_class_ptr)
17269 inform (loc,
17270 "use %<this->%D%> instead", function);
17271 else
17272 inform (loc,
17273 "use %<%T::%D%> instead",
17274 current_class_name, function);
17276 else
17277 inform (DECL_SOURCE_LOCATION (fn),
17278 "%qD declared here, later in the "
17279 "translation unit", fn);
17280 if (in_lambda)
17282 release_tree_vector (call_args);
17283 RETURN (error_mark_node);
17287 function = unq;
17290 if (identifier_p (function))
17292 if (complain & tf_error)
17293 unqualified_name_lookup_error (function);
17294 release_tree_vector (call_args);
17295 RETURN (error_mark_node);
17299 /* Remember that there was a reference to this entity. */
17300 if (function != NULL_TREE
17301 && DECL_P (function)
17302 && !mark_used (function, complain) && !(complain & tf_error))
17304 release_tree_vector (call_args);
17305 RETURN (error_mark_node);
17308 /* Put back tf_decltype for the actual call. */
17309 complain |= decltype_flag;
17311 if (function == NULL_TREE)
17312 switch (CALL_EXPR_IFN (t))
17314 case IFN_LAUNDER:
17315 gcc_assert (nargs == 1);
17316 if (vec_safe_length (call_args) != 1)
17318 error_at (EXPR_LOC_OR_LOC (t, input_location),
17319 "wrong number of arguments to "
17320 "%<__builtin_launder%>");
17321 ret = error_mark_node;
17323 else
17324 ret = finish_builtin_launder (EXPR_LOC_OR_LOC (t,
17325 input_location),
17326 (*call_args)[0], complain);
17327 break;
17329 default:
17330 /* Unsupported internal function with arguments. */
17331 gcc_unreachable ();
17333 else if (TREE_CODE (function) == OFFSET_REF)
17334 ret = build_offset_ref_call_from_tree (function, &call_args,
17335 complain);
17336 else if (TREE_CODE (function) == COMPONENT_REF)
17338 tree instance = TREE_OPERAND (function, 0);
17339 tree fn = TREE_OPERAND (function, 1);
17341 if (processing_template_decl
17342 && (type_dependent_expression_p (instance)
17343 || (!BASELINK_P (fn)
17344 && TREE_CODE (fn) != FIELD_DECL)
17345 || type_dependent_expression_p (fn)
17346 || any_type_dependent_arguments_p (call_args)))
17347 ret = build_nt_call_vec (function, call_args);
17348 else if (!BASELINK_P (fn))
17349 ret = finish_call_expr (function, &call_args,
17350 /*disallow_virtual=*/false,
17351 /*koenig_p=*/false,
17352 complain);
17353 else
17354 ret = (build_new_method_call
17355 (instance, fn,
17356 &call_args, NULL_TREE,
17357 qualified_p ? LOOKUP_NONVIRTUAL : LOOKUP_NORMAL,
17358 /*fn_p=*/NULL,
17359 complain));
17361 else
17362 ret = finish_call_expr (function, &call_args,
17363 /*disallow_virtual=*/qualified_p,
17364 koenig_p,
17365 complain);
17367 release_tree_vector (call_args);
17369 if (ret != error_mark_node)
17371 bool op = CALL_EXPR_OPERATOR_SYNTAX (t);
17372 bool ord = CALL_EXPR_ORDERED_ARGS (t);
17373 bool rev = CALL_EXPR_REVERSE_ARGS (t);
17374 bool thk = CALL_FROM_THUNK_P (t);
17375 if (op || ord || rev || thk)
17377 function = extract_call_expr (ret);
17378 CALL_EXPR_OPERATOR_SYNTAX (function) = op;
17379 CALL_EXPR_ORDERED_ARGS (function) = ord;
17380 CALL_EXPR_REVERSE_ARGS (function) = rev;
17381 if (thk)
17383 CALL_FROM_THUNK_P (function) = true;
17384 /* The thunk location is not interesting. */
17385 SET_EXPR_LOCATION (function, UNKNOWN_LOCATION);
17390 RETURN (ret);
17393 case COND_EXPR:
17395 tree cond = RECUR (TREE_OPERAND (t, 0));
17396 tree folded_cond = fold_non_dependent_expr (cond);
17397 tree exp1, exp2;
17399 if (TREE_CODE (folded_cond) == INTEGER_CST)
17401 if (integer_zerop (folded_cond))
17403 ++c_inhibit_evaluation_warnings;
17404 exp1 = RECUR (TREE_OPERAND (t, 1));
17405 --c_inhibit_evaluation_warnings;
17406 exp2 = RECUR (TREE_OPERAND (t, 2));
17408 else
17410 exp1 = RECUR (TREE_OPERAND (t, 1));
17411 ++c_inhibit_evaluation_warnings;
17412 exp2 = RECUR (TREE_OPERAND (t, 2));
17413 --c_inhibit_evaluation_warnings;
17415 cond = folded_cond;
17417 else
17419 exp1 = RECUR (TREE_OPERAND (t, 1));
17420 exp2 = RECUR (TREE_OPERAND (t, 2));
17423 RETURN (build_x_conditional_expr (EXPR_LOCATION (t),
17424 cond, exp1, exp2, complain));
17427 case PSEUDO_DTOR_EXPR:
17429 tree op0 = RECUR (TREE_OPERAND (t, 0));
17430 tree op1 = RECUR (TREE_OPERAND (t, 1));
17431 tree op2 = tsubst (TREE_OPERAND (t, 2), args, complain, in_decl);
17432 RETURN (finish_pseudo_destructor_expr (op0, op1, op2,
17433 input_location));
17436 case TREE_LIST:
17438 tree purpose, value, chain;
17440 if (t == void_list_node)
17441 RETURN (t);
17443 if ((TREE_PURPOSE (t) && PACK_EXPANSION_P (TREE_PURPOSE (t)))
17444 || (TREE_VALUE (t) && PACK_EXPANSION_P (TREE_VALUE (t))))
17446 /* We have pack expansions, so expand those and
17447 create a new list out of it. */
17448 tree purposevec = NULL_TREE;
17449 tree valuevec = NULL_TREE;
17450 tree chain;
17451 int i, len = -1;
17453 /* Expand the argument expressions. */
17454 if (TREE_PURPOSE (t))
17455 purposevec = tsubst_pack_expansion (TREE_PURPOSE (t), args,
17456 complain, in_decl);
17457 if (TREE_VALUE (t))
17458 valuevec = tsubst_pack_expansion (TREE_VALUE (t), args,
17459 complain, in_decl);
17461 /* Build the rest of the list. */
17462 chain = TREE_CHAIN (t);
17463 if (chain && chain != void_type_node)
17464 chain = RECUR (chain);
17466 /* Determine the number of arguments. */
17467 if (purposevec && TREE_CODE (purposevec) == TREE_VEC)
17469 len = TREE_VEC_LENGTH (purposevec);
17470 gcc_assert (!valuevec || len == TREE_VEC_LENGTH (valuevec));
17472 else if (TREE_CODE (valuevec) == TREE_VEC)
17473 len = TREE_VEC_LENGTH (valuevec);
17474 else
17476 /* Since we only performed a partial substitution into
17477 the argument pack, we only RETURN (a single list
17478 node. */
17479 if (purposevec == TREE_PURPOSE (t)
17480 && valuevec == TREE_VALUE (t)
17481 && chain == TREE_CHAIN (t))
17482 RETURN (t);
17484 RETURN (tree_cons (purposevec, valuevec, chain));
17487 /* Convert the argument vectors into a TREE_LIST */
17488 i = len;
17489 while (i > 0)
17491 /* Grab the Ith values. */
17492 i--;
17493 purpose = purposevec ? TREE_VEC_ELT (purposevec, i)
17494 : NULL_TREE;
17495 value
17496 = valuevec ? convert_from_reference (TREE_VEC_ELT (valuevec, i))
17497 : NULL_TREE;
17499 /* Build the list (backwards). */
17500 chain = tree_cons (purpose, value, chain);
17503 RETURN (chain);
17506 purpose = TREE_PURPOSE (t);
17507 if (purpose)
17508 purpose = RECUR (purpose);
17509 value = TREE_VALUE (t);
17510 if (value)
17511 value = RECUR (value);
17512 chain = TREE_CHAIN (t);
17513 if (chain && chain != void_type_node)
17514 chain = RECUR (chain);
17515 if (purpose == TREE_PURPOSE (t)
17516 && value == TREE_VALUE (t)
17517 && chain == TREE_CHAIN (t))
17518 RETURN (t);
17519 RETURN (tree_cons (purpose, value, chain));
17522 case COMPONENT_REF:
17524 tree object;
17525 tree object_type;
17526 tree member;
17527 tree r;
17529 object = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
17530 args, complain, in_decl);
17531 /* Remember that there was a reference to this entity. */
17532 if (DECL_P (object)
17533 && !mark_used (object, complain) && !(complain & tf_error))
17534 RETURN (error_mark_node);
17535 object_type = TREE_TYPE (object);
17537 member = TREE_OPERAND (t, 1);
17538 if (BASELINK_P (member))
17539 member = tsubst_baselink (member,
17540 non_reference (TREE_TYPE (object)),
17541 args, complain, in_decl);
17542 else
17543 member = tsubst_copy (member, args, complain, in_decl);
17544 if (member == error_mark_node)
17545 RETURN (error_mark_node);
17547 if (TREE_CODE (member) == FIELD_DECL)
17549 r = finish_non_static_data_member (member, object, NULL_TREE);
17550 if (TREE_CODE (r) == COMPONENT_REF)
17551 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
17552 RETURN (r);
17554 else if (type_dependent_expression_p (object))
17555 /* We can't do much here. */;
17556 else if (!CLASS_TYPE_P (object_type))
17558 if (scalarish_type_p (object_type))
17560 tree s = NULL_TREE;
17561 tree dtor = member;
17563 if (TREE_CODE (dtor) == SCOPE_REF)
17565 s = TREE_OPERAND (dtor, 0);
17566 dtor = TREE_OPERAND (dtor, 1);
17568 if (TREE_CODE (dtor) == BIT_NOT_EXPR)
17570 dtor = TREE_OPERAND (dtor, 0);
17571 if (TYPE_P (dtor))
17572 RETURN (finish_pseudo_destructor_expr
17573 (object, s, dtor, input_location));
17577 else if (TREE_CODE (member) == SCOPE_REF
17578 && TREE_CODE (TREE_OPERAND (member, 1)) == TEMPLATE_ID_EXPR)
17580 /* Lookup the template functions now that we know what the
17581 scope is. */
17582 tree scope = TREE_OPERAND (member, 0);
17583 tree tmpl = TREE_OPERAND (TREE_OPERAND (member, 1), 0);
17584 tree args = TREE_OPERAND (TREE_OPERAND (member, 1), 1);
17585 member = lookup_qualified_name (scope, tmpl,
17586 /*is_type_p=*/false,
17587 /*complain=*/false);
17588 if (BASELINK_P (member))
17590 BASELINK_FUNCTIONS (member)
17591 = build_nt (TEMPLATE_ID_EXPR, BASELINK_FUNCTIONS (member),
17592 args);
17593 member = (adjust_result_of_qualified_name_lookup
17594 (member, BINFO_TYPE (BASELINK_BINFO (member)),
17595 object_type));
17597 else
17599 qualified_name_lookup_error (scope, tmpl, member,
17600 input_location);
17601 RETURN (error_mark_node);
17604 else if (TREE_CODE (member) == SCOPE_REF
17605 && !CLASS_TYPE_P (TREE_OPERAND (member, 0))
17606 && TREE_CODE (TREE_OPERAND (member, 0)) != NAMESPACE_DECL)
17608 if (complain & tf_error)
17610 if (TYPE_P (TREE_OPERAND (member, 0)))
17611 error ("%qT is not a class or namespace",
17612 TREE_OPERAND (member, 0));
17613 else
17614 error ("%qD is not a class or namespace",
17615 TREE_OPERAND (member, 0));
17617 RETURN (error_mark_node);
17620 r = finish_class_member_access_expr (object, member,
17621 /*template_p=*/false,
17622 complain);
17623 if (TREE_CODE (r) == COMPONENT_REF)
17624 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
17625 RETURN (r);
17628 case THROW_EXPR:
17629 RETURN (build_throw
17630 (RECUR (TREE_OPERAND (t, 0))));
17632 case CONSTRUCTOR:
17634 vec<constructor_elt, va_gc> *n;
17635 constructor_elt *ce;
17636 unsigned HOST_WIDE_INT idx;
17637 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
17638 bool process_index_p;
17639 int newlen;
17640 bool need_copy_p = false;
17641 tree r;
17643 if (type == error_mark_node)
17644 RETURN (error_mark_node);
17646 /* digest_init will do the wrong thing if we let it. */
17647 if (type && TYPE_PTRMEMFUNC_P (type))
17648 RETURN (t);
17650 /* We do not want to process the index of aggregate
17651 initializers as they are identifier nodes which will be
17652 looked up by digest_init. */
17653 process_index_p = !(type && MAYBE_CLASS_TYPE_P (type));
17655 n = vec_safe_copy (CONSTRUCTOR_ELTS (t));
17656 newlen = vec_safe_length (n);
17657 FOR_EACH_VEC_SAFE_ELT (n, idx, ce)
17659 if (ce->index && process_index_p
17660 /* An identifier index is looked up in the type
17661 being initialized, not the current scope. */
17662 && TREE_CODE (ce->index) != IDENTIFIER_NODE)
17663 ce->index = RECUR (ce->index);
17665 if (PACK_EXPANSION_P (ce->value))
17667 /* Substitute into the pack expansion. */
17668 ce->value = tsubst_pack_expansion (ce->value, args, complain,
17669 in_decl);
17671 if (ce->value == error_mark_node
17672 || PACK_EXPANSION_P (ce->value))
17674 else if (TREE_VEC_LENGTH (ce->value) == 1)
17675 /* Just move the argument into place. */
17676 ce->value = TREE_VEC_ELT (ce->value, 0);
17677 else
17679 /* Update the length of the final CONSTRUCTOR
17680 arguments vector, and note that we will need to
17681 copy.*/
17682 newlen = newlen + TREE_VEC_LENGTH (ce->value) - 1;
17683 need_copy_p = true;
17686 else
17687 ce->value = RECUR (ce->value);
17690 if (need_copy_p)
17692 vec<constructor_elt, va_gc> *old_n = n;
17694 vec_alloc (n, newlen);
17695 FOR_EACH_VEC_ELT (*old_n, idx, ce)
17697 if (TREE_CODE (ce->value) == TREE_VEC)
17699 int i, len = TREE_VEC_LENGTH (ce->value);
17700 for (i = 0; i < len; ++i)
17701 CONSTRUCTOR_APPEND_ELT (n, 0,
17702 TREE_VEC_ELT (ce->value, i));
17704 else
17705 CONSTRUCTOR_APPEND_ELT (n, 0, ce->value);
17709 r = build_constructor (init_list_type_node, n);
17710 CONSTRUCTOR_IS_DIRECT_INIT (r) = CONSTRUCTOR_IS_DIRECT_INIT (t);
17712 if (TREE_HAS_CONSTRUCTOR (t))
17713 RETURN (finish_compound_literal (type, r, complain));
17715 TREE_TYPE (r) = type;
17716 RETURN (r);
17719 case TYPEID_EXPR:
17721 tree operand_0 = TREE_OPERAND (t, 0);
17722 if (TYPE_P (operand_0))
17724 operand_0 = tsubst (operand_0, args, complain, in_decl);
17725 RETURN (get_typeid (operand_0, complain));
17727 else
17729 operand_0 = RECUR (operand_0);
17730 RETURN (build_typeid (operand_0, complain));
17734 case VAR_DECL:
17735 if (!args)
17736 RETURN (t);
17737 else if (DECL_PACK_P (t))
17739 /* We don't build decls for an instantiation of a
17740 variadic capture proxy, we instantiate the elements
17741 when needed. */
17742 gcc_assert (DECL_HAS_VALUE_EXPR_P (t));
17743 return RECUR (DECL_VALUE_EXPR (t));
17745 /* Fall through */
17747 case PARM_DECL:
17749 tree r = tsubst_copy (t, args, complain, in_decl);
17750 /* ??? We're doing a subset of finish_id_expression here. */
17751 if (VAR_P (r)
17752 && !processing_template_decl
17753 && !cp_unevaluated_operand
17754 && (TREE_STATIC (r) || DECL_EXTERNAL (r))
17755 && CP_DECL_THREAD_LOCAL_P (r))
17757 if (tree wrap = get_tls_wrapper_fn (r))
17758 /* Replace an evaluated use of the thread_local variable with
17759 a call to its wrapper. */
17760 r = build_cxx_call (wrap, 0, NULL, tf_warning_or_error);
17762 else if (outer_automatic_var_p (r))
17764 r = process_outer_var_ref (r, complain);
17765 if (is_capture_proxy (r))
17766 register_local_specialization (r, t);
17769 if (TREE_CODE (TREE_TYPE (t)) != REFERENCE_TYPE)
17770 /* If the original type was a reference, we'll be wrapped in
17771 the appropriate INDIRECT_REF. */
17772 r = convert_from_reference (r);
17773 RETURN (r);
17776 case VA_ARG_EXPR:
17778 tree op0 = RECUR (TREE_OPERAND (t, 0));
17779 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
17780 RETURN (build_x_va_arg (EXPR_LOCATION (t), op0, type));
17783 case OFFSETOF_EXPR:
17785 tree object_ptr
17786 = tsubst_copy_and_build (TREE_OPERAND (t, 1), args, complain,
17787 in_decl, /*function_p=*/false,
17788 /*integral_constant_expression_p=*/false);
17789 RETURN (finish_offsetof (object_ptr,
17790 RECUR (TREE_OPERAND (t, 0)),
17791 EXPR_LOCATION (t)));
17794 case ADDRESSOF_EXPR:
17795 RETURN (cp_build_addressof (EXPR_LOCATION (t),
17796 RECUR (TREE_OPERAND (t, 0)), complain));
17798 case TRAIT_EXPR:
17800 tree type1 = tsubst (TRAIT_EXPR_TYPE1 (t), args,
17801 complain, in_decl);
17803 tree type2 = TRAIT_EXPR_TYPE2 (t);
17804 if (type2 && TREE_CODE (type2) == TREE_LIST)
17805 type2 = RECUR (type2);
17806 else if (type2)
17807 type2 = tsubst (type2, args, complain, in_decl);
17809 RETURN (finish_trait_expr (TRAIT_EXPR_KIND (t), type1, type2));
17812 case STMT_EXPR:
17814 tree old_stmt_expr = cur_stmt_expr;
17815 tree stmt_expr = begin_stmt_expr ();
17817 cur_stmt_expr = stmt_expr;
17818 tsubst_expr (STMT_EXPR_STMT (t), args, complain, in_decl,
17819 integral_constant_expression_p);
17820 stmt_expr = finish_stmt_expr (stmt_expr, false);
17821 cur_stmt_expr = old_stmt_expr;
17823 /* If the resulting list of expression statement is empty,
17824 fold it further into void_node. */
17825 if (empty_expr_stmt_p (stmt_expr))
17826 stmt_expr = void_node;
17828 RETURN (stmt_expr);
17831 case LAMBDA_EXPR:
17833 tree r = build_lambda_expr ();
17835 tree type = tsubst (LAMBDA_EXPR_CLOSURE (t), args, complain, NULL_TREE);
17836 LAMBDA_EXPR_CLOSURE (r) = type;
17837 CLASSTYPE_LAMBDA_EXPR (type) = r;
17839 LAMBDA_EXPR_LOCATION (r)
17840 = LAMBDA_EXPR_LOCATION (t);
17841 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (r)
17842 = LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (t);
17843 LAMBDA_EXPR_MUTABLE_P (r) = LAMBDA_EXPR_MUTABLE_P (t);
17844 LAMBDA_EXPR_DISCRIMINATOR (r)
17845 = (LAMBDA_EXPR_DISCRIMINATOR (t));
17846 tree scope = LAMBDA_EXPR_EXTRA_SCOPE (t);
17847 if (!scope)
17848 /* No substitution needed. */;
17849 else if (VAR_OR_FUNCTION_DECL_P (scope))
17850 /* For a function or variable scope, we want to use tsubst so that we
17851 don't complain about referring to an auto before deduction. */
17852 scope = tsubst (scope, args, complain, in_decl);
17853 else if (TREE_CODE (scope) == PARM_DECL)
17855 /* Look up the parameter we want directly, as tsubst_copy
17856 doesn't do what we need. */
17857 tree fn = tsubst (DECL_CONTEXT (scope), args, complain, in_decl);
17858 tree parm = FUNCTION_FIRST_USER_PARM (fn);
17859 while (DECL_PARM_INDEX (parm) != DECL_PARM_INDEX (scope))
17860 parm = DECL_CHAIN (parm);
17861 scope = parm;
17862 /* FIXME Work around the parm not having DECL_CONTEXT set. */
17863 if (DECL_CONTEXT (scope) == NULL_TREE)
17864 DECL_CONTEXT (scope) = fn;
17866 else if (TREE_CODE (scope) == FIELD_DECL)
17867 /* For a field, use tsubst_copy so that we look up the existing field
17868 rather than build a new one. */
17869 scope = RECUR (scope);
17870 else
17871 gcc_unreachable ();
17872 LAMBDA_EXPR_EXTRA_SCOPE (r) = scope;
17874 gcc_assert (LAMBDA_EXPR_THIS_CAPTURE (t) == NULL_TREE
17875 && LAMBDA_EXPR_PENDING_PROXIES (t) == NULL);
17877 /* Do this again now that LAMBDA_EXPR_EXTRA_SCOPE is set. */
17878 determine_visibility (TYPE_NAME (type));
17879 /* Now that we know visibility, instantiate the type so we have a
17880 declaration of the op() for later calls to lambda_function. */
17881 complete_type (type);
17883 if (tree fn = lambda_function (type))
17884 LAMBDA_EXPR_RETURN_TYPE (r) = TREE_TYPE (TREE_TYPE (fn));
17886 LAMBDA_EXPR_THIS_CAPTURE (r) = NULL_TREE;
17888 insert_pending_capture_proxies ();
17890 RETURN (build_lambda_object (r));
17893 case TARGET_EXPR:
17894 /* We can get here for a constant initializer of non-dependent type.
17895 FIXME stop folding in cp_parser_initializer_clause. */
17897 tree r = get_target_expr_sfinae (RECUR (TARGET_EXPR_INITIAL (t)),
17898 complain);
17899 RETURN (r);
17902 case TRANSACTION_EXPR:
17903 RETURN (tsubst_expr(t, args, complain, in_decl,
17904 integral_constant_expression_p));
17906 case PAREN_EXPR:
17907 RETURN (finish_parenthesized_expr (RECUR (TREE_OPERAND (t, 0))));
17909 case VEC_PERM_EXPR:
17911 tree op0 = RECUR (TREE_OPERAND (t, 0));
17912 tree op1 = RECUR (TREE_OPERAND (t, 1));
17913 tree op2 = RECUR (TREE_OPERAND (t, 2));
17914 RETURN (build_x_vec_perm_expr (input_location, op0, op1, op2,
17915 complain));
17918 case REQUIRES_EXPR:
17919 RETURN (tsubst_requires_expr (t, args, complain, in_decl));
17921 default:
17922 /* Handle Objective-C++ constructs, if appropriate. */
17924 tree subst
17925 = objcp_tsubst_copy_and_build (t, args, complain,
17926 in_decl, /*function_p=*/false);
17927 if (subst)
17928 RETURN (subst);
17930 RETURN (tsubst_copy (t, args, complain, in_decl));
17933 #undef RECUR
17934 #undef RETURN
17935 out:
17936 input_location = loc;
17937 return retval;
17940 /* Verify that the instantiated ARGS are valid. For type arguments,
17941 make sure that the type's linkage is ok. For non-type arguments,
17942 make sure they are constants if they are integral or enumerations.
17943 Emit an error under control of COMPLAIN, and return TRUE on error. */
17945 static bool
17946 check_instantiated_arg (tree tmpl, tree t, tsubst_flags_t complain)
17948 if (dependent_template_arg_p (t))
17949 return false;
17950 if (ARGUMENT_PACK_P (t))
17952 tree vec = ARGUMENT_PACK_ARGS (t);
17953 int len = TREE_VEC_LENGTH (vec);
17954 bool result = false;
17955 int i;
17957 for (i = 0; i < len; ++i)
17958 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (vec, i), complain))
17959 result = true;
17960 return result;
17962 else if (TYPE_P (t))
17964 /* [basic.link]: A name with no linkage (notably, the name
17965 of a class or enumeration declared in a local scope)
17966 shall not be used to declare an entity with linkage.
17967 This implies that names with no linkage cannot be used as
17968 template arguments
17970 DR 757 relaxes this restriction for C++0x. */
17971 tree nt = (cxx_dialect > cxx98 ? NULL_TREE
17972 : no_linkage_check (t, /*relaxed_p=*/false));
17974 if (nt)
17976 /* DR 488 makes use of a type with no linkage cause
17977 type deduction to fail. */
17978 if (complain & tf_error)
17980 if (TYPE_UNNAMED_P (nt))
17981 error ("%qT is/uses unnamed type", t);
17982 else
17983 error ("template argument for %qD uses local type %qT",
17984 tmpl, t);
17986 return true;
17988 /* In order to avoid all sorts of complications, we do not
17989 allow variably-modified types as template arguments. */
17990 else if (variably_modified_type_p (t, NULL_TREE))
17992 if (complain & tf_error)
17993 error ("%qT is a variably modified type", t);
17994 return true;
17997 /* Class template and alias template arguments should be OK. */
17998 else if (DECL_TYPE_TEMPLATE_P (t))
18000 /* A non-type argument of integral or enumerated type must be a
18001 constant. */
18002 else if (TREE_TYPE (t)
18003 && INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (t))
18004 && !REFERENCE_REF_P (t)
18005 && !TREE_CONSTANT (t))
18007 if (complain & tf_error)
18008 error ("integral expression %qE is not constant", t);
18009 return true;
18011 return false;
18014 static bool
18015 check_instantiated_args (tree tmpl, tree args, tsubst_flags_t complain)
18017 int ix, len = DECL_NTPARMS (tmpl);
18018 bool result = false;
18020 for (ix = 0; ix != len; ix++)
18022 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (args, ix), complain))
18023 result = true;
18025 if (result && (complain & tf_error))
18026 error (" trying to instantiate %qD", tmpl);
18027 return result;
18030 /* We're out of SFINAE context now, so generate diagnostics for the access
18031 errors we saw earlier when instantiating D from TMPL and ARGS. */
18033 static void
18034 recheck_decl_substitution (tree d, tree tmpl, tree args)
18036 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
18037 tree type = TREE_TYPE (pattern);
18038 location_t loc = input_location;
18040 push_access_scope (d);
18041 push_deferring_access_checks (dk_no_deferred);
18042 input_location = DECL_SOURCE_LOCATION (pattern);
18043 tsubst (type, args, tf_warning_or_error, d);
18044 input_location = loc;
18045 pop_deferring_access_checks ();
18046 pop_access_scope (d);
18049 /* Instantiate the indicated variable, function, or alias template TMPL with
18050 the template arguments in TARG_PTR. */
18052 static tree
18053 instantiate_template_1 (tree tmpl, tree orig_args, tsubst_flags_t complain)
18055 tree targ_ptr = orig_args;
18056 tree fndecl;
18057 tree gen_tmpl;
18058 tree spec;
18059 bool access_ok = true;
18061 if (tmpl == error_mark_node)
18062 return error_mark_node;
18064 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
18066 /* If this function is a clone, handle it specially. */
18067 if (DECL_CLONED_FUNCTION_P (tmpl))
18069 tree spec;
18070 tree clone;
18072 /* Use DECL_ABSTRACT_ORIGIN because only FUNCTION_DECLs have
18073 DECL_CLONED_FUNCTION. */
18074 spec = instantiate_template (DECL_ABSTRACT_ORIGIN (tmpl),
18075 targ_ptr, complain);
18076 if (spec == error_mark_node)
18077 return error_mark_node;
18079 /* Look for the clone. */
18080 FOR_EACH_CLONE (clone, spec)
18081 if (DECL_NAME (clone) == DECL_NAME (tmpl))
18082 return clone;
18083 /* We should always have found the clone by now. */
18084 gcc_unreachable ();
18085 return NULL_TREE;
18088 if (targ_ptr == error_mark_node)
18089 return error_mark_node;
18091 /* Check to see if we already have this specialization. */
18092 gen_tmpl = most_general_template (tmpl);
18093 if (TMPL_ARGS_DEPTH (targ_ptr)
18094 < TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (gen_tmpl)))
18095 /* targ_ptr only has the innermost template args, so add the outer ones
18096 from tmpl, which could be either a partial instantiation or gen_tmpl (in
18097 the case of a non-dependent call within a template definition). */
18098 targ_ptr = (add_outermost_template_args
18099 (DECL_TI_ARGS (DECL_TEMPLATE_RESULT (tmpl)),
18100 targ_ptr));
18102 /* It would be nice to avoid hashing here and then again in tsubst_decl,
18103 but it doesn't seem to be on the hot path. */
18104 spec = retrieve_specialization (gen_tmpl, targ_ptr, 0);
18106 gcc_assert (tmpl == gen_tmpl
18107 || ((fndecl = retrieve_specialization (tmpl, orig_args, 0))
18108 == spec)
18109 || fndecl == NULL_TREE);
18111 if (spec != NULL_TREE)
18113 if (FNDECL_HAS_ACCESS_ERRORS (spec))
18115 if (complain & tf_error)
18116 recheck_decl_substitution (spec, gen_tmpl, targ_ptr);
18117 return error_mark_node;
18119 return spec;
18122 if (check_instantiated_args (gen_tmpl, INNERMOST_TEMPLATE_ARGS (targ_ptr),
18123 complain))
18124 return error_mark_node;
18126 /* We are building a FUNCTION_DECL, during which the access of its
18127 parameters and return types have to be checked. However this
18128 FUNCTION_DECL which is the desired context for access checking
18129 is not built yet. We solve this chicken-and-egg problem by
18130 deferring all checks until we have the FUNCTION_DECL. */
18131 push_deferring_access_checks (dk_deferred);
18133 /* Instantiation of the function happens in the context of the function
18134 template, not the context of the overload resolution we're doing. */
18135 push_to_top_level ();
18136 /* If there are dependent arguments, e.g. because we're doing partial
18137 ordering, make sure processing_template_decl stays set. */
18138 if (uses_template_parms (targ_ptr))
18139 ++processing_template_decl;
18140 if (DECL_CLASS_SCOPE_P (gen_tmpl))
18142 tree ctx = tsubst_aggr_type (DECL_CONTEXT (gen_tmpl), targ_ptr,
18143 complain, gen_tmpl, true);
18144 push_nested_class (ctx);
18147 tree pattern = DECL_TEMPLATE_RESULT (gen_tmpl);
18149 fndecl = NULL_TREE;
18150 if (VAR_P (pattern))
18152 /* We need to determine if we're using a partial or explicit
18153 specialization now, because the type of the variable could be
18154 different. */
18155 tree tid = lookup_template_variable (gen_tmpl, targ_ptr);
18156 tree elt = most_specialized_partial_spec (tid, complain);
18157 if (elt == error_mark_node)
18158 pattern = error_mark_node;
18159 else if (elt)
18161 tree partial_tmpl = TREE_VALUE (elt);
18162 tree partial_args = TREE_PURPOSE (elt);
18163 tree partial_pat = DECL_TEMPLATE_RESULT (partial_tmpl);
18164 fndecl = tsubst (partial_pat, partial_args, complain, gen_tmpl);
18168 /* Substitute template parameters to obtain the specialization. */
18169 if (fndecl == NULL_TREE)
18170 fndecl = tsubst (pattern, targ_ptr, complain, gen_tmpl);
18171 if (DECL_CLASS_SCOPE_P (gen_tmpl))
18172 pop_nested_class ();
18173 pop_from_top_level ();
18175 if (fndecl == error_mark_node)
18177 pop_deferring_access_checks ();
18178 return error_mark_node;
18181 /* The DECL_TI_TEMPLATE should always be the immediate parent
18182 template, not the most general template. */
18183 DECL_TI_TEMPLATE (fndecl) = tmpl;
18184 DECL_TI_ARGS (fndecl) = targ_ptr;
18186 /* Now we know the specialization, compute access previously
18187 deferred. Do no access control for inheriting constructors,
18188 as we already checked access for the inherited constructor. */
18189 if (!(flag_new_inheriting_ctors
18190 && DECL_INHERITED_CTOR (fndecl)))
18192 push_access_scope (fndecl);
18193 if (!perform_deferred_access_checks (complain))
18194 access_ok = false;
18195 pop_access_scope (fndecl);
18197 pop_deferring_access_checks ();
18199 /* If we've just instantiated the main entry point for a function,
18200 instantiate all the alternate entry points as well. We do this
18201 by cloning the instantiation of the main entry point, not by
18202 instantiating the template clones. */
18203 if (DECL_CHAIN (gen_tmpl) && DECL_CLONED_FUNCTION_P (DECL_CHAIN (gen_tmpl)))
18204 clone_function_decl (fndecl, /*update_method_vec_p=*/0);
18206 if (!access_ok)
18208 if (!(complain & tf_error))
18210 /* Remember to reinstantiate when we're out of SFINAE so the user
18211 can see the errors. */
18212 FNDECL_HAS_ACCESS_ERRORS (fndecl) = true;
18214 return error_mark_node;
18216 return fndecl;
18219 /* Wrapper for instantiate_template_1. */
18221 tree
18222 instantiate_template (tree tmpl, tree orig_args, tsubst_flags_t complain)
18224 tree ret;
18225 timevar_push (TV_TEMPLATE_INST);
18226 ret = instantiate_template_1 (tmpl, orig_args, complain);
18227 timevar_pop (TV_TEMPLATE_INST);
18228 return ret;
18231 /* Instantiate the alias template TMPL with ARGS. Also push a template
18232 instantiation level, which instantiate_template doesn't do because
18233 functions and variables have sufficient context established by the
18234 callers. */
18236 static tree
18237 instantiate_alias_template (tree tmpl, tree args, tsubst_flags_t complain)
18239 struct pending_template *old_last_pend = last_pending_template;
18240 struct tinst_level *old_error_tinst = last_error_tinst_level;
18241 if (tmpl == error_mark_node || args == error_mark_node)
18242 return error_mark_node;
18243 tree tinst = build_tree_list (tmpl, args);
18244 if (!push_tinst_level (tinst))
18246 ggc_free (tinst);
18247 return error_mark_node;
18250 args =
18251 coerce_innermost_template_parms (DECL_TEMPLATE_PARMS (tmpl),
18252 args, tmpl, complain,
18253 /*require_all_args=*/true,
18254 /*use_default_args=*/true);
18256 tree r = instantiate_template (tmpl, args, complain);
18257 pop_tinst_level ();
18258 /* We can't free this if a pending_template entry or last_error_tinst_level
18259 is pointing at it. */
18260 if (last_pending_template == old_last_pend
18261 && last_error_tinst_level == old_error_tinst)
18262 ggc_free (tinst);
18264 return r;
18267 /* PARM is a template parameter pack for FN. Returns true iff
18268 PARM is used in a deducible way in the argument list of FN. */
18270 static bool
18271 pack_deducible_p (tree parm, tree fn)
18273 tree t = FUNCTION_FIRST_USER_PARMTYPE (fn);
18274 for (; t; t = TREE_CHAIN (t))
18276 tree type = TREE_VALUE (t);
18277 tree packs;
18278 if (!PACK_EXPANSION_P (type))
18279 continue;
18280 for (packs = PACK_EXPANSION_PARAMETER_PACKS (type);
18281 packs; packs = TREE_CHAIN (packs))
18282 if (template_args_equal (TREE_VALUE (packs), parm))
18284 /* The template parameter pack is used in a function parameter
18285 pack. If this is the end of the parameter list, the
18286 template parameter pack is deducible. */
18287 if (TREE_CHAIN (t) == void_list_node)
18288 return true;
18289 else
18290 /* Otherwise, not. Well, it could be deduced from
18291 a non-pack parameter, but doing so would end up with
18292 a deduction mismatch, so don't bother. */
18293 return false;
18296 /* The template parameter pack isn't used in any function parameter
18297 packs, but it might be used deeper, e.g. tuple<Args...>. */
18298 return true;
18301 /* The FN is a TEMPLATE_DECL for a function. ARGS is an array with
18302 NARGS elements of the arguments that are being used when calling
18303 it. TARGS is a vector into which the deduced template arguments
18304 are placed.
18306 Returns either a FUNCTION_DECL for the matching specialization of FN or
18307 NULL_TREE if no suitable specialization can be found. If EXPLAIN_P is
18308 true, diagnostics will be printed to explain why it failed.
18310 If FN is a conversion operator, or we are trying to produce a specific
18311 specialization, RETURN_TYPE is the return type desired.
18313 The EXPLICIT_TARGS are explicit template arguments provided via a
18314 template-id.
18316 The parameter STRICT is one of:
18318 DEDUCE_CALL:
18319 We are deducing arguments for a function call, as in
18320 [temp.deduct.call]. If RETURN_TYPE is non-null, we are
18321 deducing arguments for a call to the result of a conversion
18322 function template, as in [over.call.object].
18324 DEDUCE_CONV:
18325 We are deducing arguments for a conversion function, as in
18326 [temp.deduct.conv].
18328 DEDUCE_EXACT:
18329 We are deducing arguments when doing an explicit instantiation
18330 as in [temp.explicit], when determining an explicit specialization
18331 as in [temp.expl.spec], or when taking the address of a function
18332 template, as in [temp.deduct.funcaddr]. */
18334 tree
18335 fn_type_unification (tree fn,
18336 tree explicit_targs,
18337 tree targs,
18338 const tree *args,
18339 unsigned int nargs,
18340 tree return_type,
18341 unification_kind_t strict,
18342 int flags,
18343 bool explain_p,
18344 bool decltype_p)
18346 tree parms;
18347 tree fntype;
18348 tree decl = NULL_TREE;
18349 tsubst_flags_t complain = (explain_p ? tf_warning_or_error : tf_none);
18350 bool ok;
18351 static int deduction_depth;
18352 struct pending_template *old_last_pend = last_pending_template;
18353 struct tinst_level *old_error_tinst = last_error_tinst_level;
18355 tree orig_fn = fn;
18356 if (flag_new_inheriting_ctors)
18357 fn = strip_inheriting_ctors (fn);
18359 tree tparms = DECL_INNERMOST_TEMPLATE_PARMS (fn);
18360 tree tinst;
18361 tree r = error_mark_node;
18363 tree full_targs = targs;
18364 if (TMPL_ARGS_DEPTH (targs)
18365 < TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (fn)))
18366 full_targs = (add_outermost_template_args
18367 (DECL_TI_ARGS (DECL_TEMPLATE_RESULT (fn)),
18368 targs));
18370 if (decltype_p)
18371 complain |= tf_decltype;
18373 /* In C++0x, it's possible to have a function template whose type depends
18374 on itself recursively. This is most obvious with decltype, but can also
18375 occur with enumeration scope (c++/48969). So we need to catch infinite
18376 recursion and reject the substitution at deduction time; this function
18377 will return error_mark_node for any repeated substitution.
18379 This also catches excessive recursion such as when f<N> depends on
18380 f<N-1> across all integers, and returns error_mark_node for all the
18381 substitutions back up to the initial one.
18383 This is, of course, not reentrant. */
18384 if (excessive_deduction_depth)
18385 return error_mark_node;
18386 tinst = build_tree_list (fn, NULL_TREE);
18387 ++deduction_depth;
18389 gcc_assert (TREE_CODE (fn) == TEMPLATE_DECL);
18391 fntype = TREE_TYPE (fn);
18392 if (explicit_targs)
18394 /* [temp.deduct]
18396 The specified template arguments must match the template
18397 parameters in kind (i.e., type, nontype, template), and there
18398 must not be more arguments than there are parameters;
18399 otherwise type deduction fails.
18401 Nontype arguments must match the types of the corresponding
18402 nontype template parameters, or must be convertible to the
18403 types of the corresponding nontype parameters as specified in
18404 _temp.arg.nontype_, otherwise type deduction fails.
18406 All references in the function type of the function template
18407 to the corresponding template parameters are replaced by the
18408 specified template argument values. If a substitution in a
18409 template parameter or in the function type of the function
18410 template results in an invalid type, type deduction fails. */
18411 int i, len = TREE_VEC_LENGTH (tparms);
18412 location_t loc = input_location;
18413 bool incomplete = false;
18415 if (explicit_targs == error_mark_node)
18416 goto fail;
18418 if (TMPL_ARGS_DEPTH (explicit_targs)
18419 < TMPL_ARGS_DEPTH (full_targs))
18420 explicit_targs = add_outermost_template_args (full_targs,
18421 explicit_targs);
18423 /* Adjust any explicit template arguments before entering the
18424 substitution context. */
18425 explicit_targs
18426 = (coerce_template_parms (tparms, explicit_targs, NULL_TREE,
18427 complain,
18428 /*require_all_args=*/false,
18429 /*use_default_args=*/false));
18430 if (explicit_targs == error_mark_node)
18431 goto fail;
18433 /* Substitute the explicit args into the function type. This is
18434 necessary so that, for instance, explicitly declared function
18435 arguments can match null pointed constants. If we were given
18436 an incomplete set of explicit args, we must not do semantic
18437 processing during substitution as we could create partial
18438 instantiations. */
18439 for (i = 0; i < len; i++)
18441 tree parm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
18442 bool parameter_pack = false;
18443 tree targ = TREE_VEC_ELT (explicit_targs, i);
18445 /* Dig out the actual parm. */
18446 if (TREE_CODE (parm) == TYPE_DECL
18447 || TREE_CODE (parm) == TEMPLATE_DECL)
18449 parm = TREE_TYPE (parm);
18450 parameter_pack = TEMPLATE_TYPE_PARAMETER_PACK (parm);
18452 else if (TREE_CODE (parm) == PARM_DECL)
18454 parm = DECL_INITIAL (parm);
18455 parameter_pack = TEMPLATE_PARM_PARAMETER_PACK (parm);
18458 if (!parameter_pack && targ == NULL_TREE)
18459 /* No explicit argument for this template parameter. */
18460 incomplete = true;
18462 if (parameter_pack && pack_deducible_p (parm, fn))
18464 /* Mark the argument pack as "incomplete". We could
18465 still deduce more arguments during unification.
18466 We remove this mark in type_unification_real. */
18467 if (targ)
18469 ARGUMENT_PACK_INCOMPLETE_P(targ) = 1;
18470 ARGUMENT_PACK_EXPLICIT_ARGS (targ)
18471 = ARGUMENT_PACK_ARGS (targ);
18474 /* We have some incomplete argument packs. */
18475 incomplete = true;
18479 TREE_VALUE (tinst) = explicit_targs;
18480 if (!push_tinst_level (tinst))
18482 excessive_deduction_depth = true;
18483 goto fail;
18485 processing_template_decl += incomplete;
18486 input_location = DECL_SOURCE_LOCATION (fn);
18487 /* Ignore any access checks; we'll see them again in
18488 instantiate_template and they might have the wrong
18489 access path at this point. */
18490 push_deferring_access_checks (dk_deferred);
18491 fntype = tsubst (TREE_TYPE (fn), explicit_targs,
18492 complain | tf_partial | tf_fndecl_type, NULL_TREE);
18493 pop_deferring_access_checks ();
18494 input_location = loc;
18495 processing_template_decl -= incomplete;
18496 pop_tinst_level ();
18498 if (fntype == error_mark_node)
18499 goto fail;
18501 /* Place the explicitly specified arguments in TARGS. */
18502 explicit_targs = INNERMOST_TEMPLATE_ARGS (explicit_targs);
18503 for (i = NUM_TMPL_ARGS (explicit_targs); i--;)
18504 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (explicit_targs, i);
18507 /* Never do unification on the 'this' parameter. */
18508 parms = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (fntype));
18510 if (return_type && strict == DEDUCE_CALL)
18512 /* We're deducing for a call to the result of a template conversion
18513 function. The parms we really want are in return_type. */
18514 if (POINTER_TYPE_P (return_type))
18515 return_type = TREE_TYPE (return_type);
18516 parms = TYPE_ARG_TYPES (return_type);
18518 else if (return_type)
18520 tree *new_args;
18522 parms = tree_cons (NULL_TREE, TREE_TYPE (fntype), parms);
18523 new_args = XALLOCAVEC (tree, nargs + 1);
18524 new_args[0] = return_type;
18525 memcpy (new_args + 1, args, nargs * sizeof (tree));
18526 args = new_args;
18527 ++nargs;
18530 /* We allow incomplete unification without an error message here
18531 because the standard doesn't seem to explicitly prohibit it. Our
18532 callers must be ready to deal with unification failures in any
18533 event. */
18535 TREE_VALUE (tinst) = targs;
18536 /* If we aren't explaining yet, push tinst context so we can see where
18537 any errors (e.g. from class instantiations triggered by instantiation
18538 of default template arguments) come from. If we are explaining, this
18539 context is redundant. */
18540 if (!explain_p && !push_tinst_level (tinst))
18542 excessive_deduction_depth = true;
18543 goto fail;
18546 /* type_unification_real will pass back any access checks from default
18547 template argument substitution. */
18548 vec<deferred_access_check, va_gc> *checks;
18549 checks = NULL;
18551 ok = !type_unification_real (DECL_INNERMOST_TEMPLATE_PARMS (fn),
18552 full_targs, parms, args, nargs, /*subr=*/0,
18553 strict, flags, &checks, explain_p);
18554 if (!explain_p)
18555 pop_tinst_level ();
18556 if (!ok)
18557 goto fail;
18559 /* Now that we have bindings for all of the template arguments,
18560 ensure that the arguments deduced for the template template
18561 parameters have compatible template parameter lists. We cannot
18562 check this property before we have deduced all template
18563 arguments, because the template parameter types of a template
18564 template parameter might depend on prior template parameters
18565 deduced after the template template parameter. The following
18566 ill-formed example illustrates this issue:
18568 template<typename T, template<T> class C> void f(C<5>, T);
18570 template<int N> struct X {};
18572 void g() {
18573 f(X<5>(), 5l); // error: template argument deduction fails
18576 The template parameter list of 'C' depends on the template type
18577 parameter 'T', but 'C' is deduced to 'X' before 'T' is deduced to
18578 'long'. Thus, we can't check that 'C' cannot bind to 'X' at the
18579 time that we deduce 'C'. */
18580 if (!template_template_parm_bindings_ok_p
18581 (DECL_INNERMOST_TEMPLATE_PARMS (fn), targs))
18583 unify_inconsistent_template_template_parameters (explain_p);
18584 goto fail;
18587 /* All is well so far. Now, check:
18589 [temp.deduct]
18591 When all template arguments have been deduced, all uses of
18592 template parameters in nondeduced contexts are replaced with
18593 the corresponding deduced argument values. If the
18594 substitution results in an invalid type, as described above,
18595 type deduction fails. */
18596 TREE_VALUE (tinst) = targs;
18597 if (!push_tinst_level (tinst))
18599 excessive_deduction_depth = true;
18600 goto fail;
18603 /* Also collect access checks from the instantiation. */
18604 reopen_deferring_access_checks (checks);
18606 decl = instantiate_template (fn, targs, complain);
18608 checks = get_deferred_access_checks ();
18609 pop_deferring_access_checks ();
18611 pop_tinst_level ();
18613 if (decl == error_mark_node)
18614 goto fail;
18616 /* Now perform any access checks encountered during substitution. */
18617 push_access_scope (decl);
18618 ok = perform_access_checks (checks, complain);
18619 pop_access_scope (decl);
18620 if (!ok)
18621 goto fail;
18623 /* If we're looking for an exact match, check that what we got
18624 is indeed an exact match. It might not be if some template
18625 parameters are used in non-deduced contexts. But don't check
18626 for an exact match if we have dependent template arguments;
18627 in that case we're doing partial ordering, and we already know
18628 that we have two candidates that will provide the actual type. */
18629 if (strict == DEDUCE_EXACT && !any_dependent_template_arguments_p (targs))
18631 tree substed = TREE_TYPE (decl);
18632 unsigned int i;
18634 tree sarg
18635 = skip_artificial_parms_for (decl, TYPE_ARG_TYPES (substed));
18636 if (return_type)
18637 sarg = tree_cons (NULL_TREE, TREE_TYPE (substed), sarg);
18638 for (i = 0; i < nargs && sarg; ++i, sarg = TREE_CHAIN (sarg))
18639 if (!same_type_p (args[i], TREE_VALUE (sarg)))
18641 unify_type_mismatch (explain_p, args[i],
18642 TREE_VALUE (sarg));
18643 goto fail;
18647 /* After doing deduction with the inherited constructor, actually return an
18648 instantiation of the inheriting constructor. */
18649 if (orig_fn != fn)
18650 decl = instantiate_template (orig_fn, targs, complain);
18652 r = decl;
18654 fail:
18655 --deduction_depth;
18656 if (excessive_deduction_depth)
18658 if (deduction_depth == 0)
18659 /* Reset once we're all the way out. */
18660 excessive_deduction_depth = false;
18663 /* We can't free this if a pending_template entry or last_error_tinst_level
18664 is pointing at it. */
18665 if (last_pending_template == old_last_pend
18666 && last_error_tinst_level == old_error_tinst)
18667 ggc_free (tinst);
18669 return r;
18672 /* Adjust types before performing type deduction, as described in
18673 [temp.deduct.call] and [temp.deduct.conv]. The rules in these two
18674 sections are symmetric. PARM is the type of a function parameter
18675 or the return type of the conversion function. ARG is the type of
18676 the argument passed to the call, or the type of the value
18677 initialized with the result of the conversion function.
18678 ARG_EXPR is the original argument expression, which may be null. */
18680 static int
18681 maybe_adjust_types_for_deduction (unification_kind_t strict,
18682 tree* parm,
18683 tree* arg,
18684 tree arg_expr)
18686 int result = 0;
18688 switch (strict)
18690 case DEDUCE_CALL:
18691 break;
18693 case DEDUCE_CONV:
18694 /* Swap PARM and ARG throughout the remainder of this
18695 function; the handling is precisely symmetric since PARM
18696 will initialize ARG rather than vice versa. */
18697 std::swap (parm, arg);
18698 break;
18700 case DEDUCE_EXACT:
18701 /* Core issue #873: Do the DR606 thing (see below) for these cases,
18702 too, but here handle it by stripping the reference from PARM
18703 rather than by adding it to ARG. */
18704 if (TREE_CODE (*parm) == REFERENCE_TYPE
18705 && TYPE_REF_IS_RVALUE (*parm)
18706 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
18707 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
18708 && TREE_CODE (*arg) == REFERENCE_TYPE
18709 && !TYPE_REF_IS_RVALUE (*arg))
18710 *parm = TREE_TYPE (*parm);
18711 /* Nothing else to do in this case. */
18712 return 0;
18714 default:
18715 gcc_unreachable ();
18718 if (TREE_CODE (*parm) != REFERENCE_TYPE)
18720 /* [temp.deduct.call]
18722 If P is not a reference type:
18724 --If A is an array type, the pointer type produced by the
18725 array-to-pointer standard conversion (_conv.array_) is
18726 used in place of A for type deduction; otherwise,
18728 --If A is a function type, the pointer type produced by
18729 the function-to-pointer standard conversion
18730 (_conv.func_) is used in place of A for type deduction;
18731 otherwise,
18733 --If A is a cv-qualified type, the top level
18734 cv-qualifiers of A's type are ignored for type
18735 deduction. */
18736 if (TREE_CODE (*arg) == ARRAY_TYPE)
18737 *arg = build_pointer_type (TREE_TYPE (*arg));
18738 else if (TREE_CODE (*arg) == FUNCTION_TYPE)
18739 *arg = build_pointer_type (*arg);
18740 else
18741 *arg = TYPE_MAIN_VARIANT (*arg);
18744 /* [14.8.2.1/3 temp.deduct.call], "A forwarding reference is an rvalue
18745 reference to a cv-unqualified template parameter that does not represent a
18746 template parameter of a class template (during class template argument
18747 deduction (13.3.1.8)). If P is a forwarding reference and the argument is
18748 an lvalue, the type "lvalue reference to A" is used in place of A for type
18749 deduction. */
18750 if (TREE_CODE (*parm) == REFERENCE_TYPE
18751 && TYPE_REF_IS_RVALUE (*parm)
18752 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
18753 && !TEMPLATE_TYPE_PARM_FOR_CLASS (TREE_TYPE (*parm))
18754 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
18755 && (arg_expr ? lvalue_p (arg_expr)
18756 /* try_one_overload doesn't provide an arg_expr, but
18757 functions are always lvalues. */
18758 : TREE_CODE (*arg) == FUNCTION_TYPE))
18759 *arg = build_reference_type (*arg);
18761 /* [temp.deduct.call]
18763 If P is a cv-qualified type, the top level cv-qualifiers
18764 of P's type are ignored for type deduction. If P is a
18765 reference type, the type referred to by P is used for
18766 type deduction. */
18767 *parm = TYPE_MAIN_VARIANT (*parm);
18768 if (TREE_CODE (*parm) == REFERENCE_TYPE)
18770 *parm = TREE_TYPE (*parm);
18771 result |= UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
18774 /* DR 322. For conversion deduction, remove a reference type on parm
18775 too (which has been swapped into ARG). */
18776 if (strict == DEDUCE_CONV && TREE_CODE (*arg) == REFERENCE_TYPE)
18777 *arg = TREE_TYPE (*arg);
18779 return result;
18782 /* Subroutine of unify_one_argument. PARM is a function parameter of a
18783 template which does contain any deducible template parameters; check if
18784 ARG is a suitable match for it. STRICT, FLAGS and EXPLAIN_P are as in
18785 unify_one_argument. */
18787 static int
18788 check_non_deducible_conversion (tree parm, tree arg, int strict,
18789 int flags, bool explain_p)
18791 tree type;
18793 if (!TYPE_P (arg))
18794 type = TREE_TYPE (arg);
18795 else
18796 type = arg;
18798 if (same_type_p (parm, type))
18799 return unify_success (explain_p);
18801 if (strict == DEDUCE_CONV)
18803 if (can_convert_arg (type, parm, NULL_TREE, flags,
18804 explain_p ? tf_warning_or_error : tf_none))
18805 return unify_success (explain_p);
18807 else if (strict != DEDUCE_EXACT)
18809 if (can_convert_arg (parm, type,
18810 TYPE_P (arg) ? NULL_TREE : arg,
18811 flags, explain_p ? tf_warning_or_error : tf_none))
18812 return unify_success (explain_p);
18815 if (strict == DEDUCE_EXACT)
18816 return unify_type_mismatch (explain_p, parm, arg);
18817 else
18818 return unify_arg_conversion (explain_p, parm, type, arg);
18821 static bool uses_deducible_template_parms (tree type);
18823 /* Returns true iff the expression EXPR is one from which a template
18824 argument can be deduced. In other words, if it's an undecorated
18825 use of a template non-type parameter. */
18827 static bool
18828 deducible_expression (tree expr)
18830 /* Strip implicit conversions. */
18831 while (CONVERT_EXPR_P (expr))
18832 expr = TREE_OPERAND (expr, 0);
18833 return (TREE_CODE (expr) == TEMPLATE_PARM_INDEX);
18836 /* Returns true iff the array domain DOMAIN uses a template parameter in a
18837 deducible way; that is, if it has a max value of <PARM> - 1. */
18839 static bool
18840 deducible_array_bound (tree domain)
18842 if (domain == NULL_TREE)
18843 return false;
18845 tree max = TYPE_MAX_VALUE (domain);
18846 if (TREE_CODE (max) != MINUS_EXPR)
18847 return false;
18849 return deducible_expression (TREE_OPERAND (max, 0));
18852 /* Returns true iff the template arguments ARGS use a template parameter
18853 in a deducible way. */
18855 static bool
18856 deducible_template_args (tree args)
18858 for (int i = 0; i < TREE_VEC_LENGTH (args); ++i)
18860 bool deducible;
18861 tree elt = TREE_VEC_ELT (args, i);
18862 if (ARGUMENT_PACK_P (elt))
18863 deducible = deducible_template_args (ARGUMENT_PACK_ARGS (elt));
18864 else
18866 if (PACK_EXPANSION_P (elt))
18867 elt = PACK_EXPANSION_PATTERN (elt);
18868 if (TREE_CODE (elt) == TEMPLATE_TEMPLATE_PARM)
18869 deducible = true;
18870 else if (TYPE_P (elt))
18871 deducible = uses_deducible_template_parms (elt);
18872 else
18873 deducible = deducible_expression (elt);
18875 if (deducible)
18876 return true;
18878 return false;
18881 /* Returns true iff TYPE contains any deducible references to template
18882 parameters, as per 14.8.2.5. */
18884 static bool
18885 uses_deducible_template_parms (tree type)
18887 if (PACK_EXPANSION_P (type))
18888 type = PACK_EXPANSION_PATTERN (type);
18890 /* T
18891 cv-list T
18892 TT<T>
18893 TT<i>
18894 TT<> */
18895 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
18896 || TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
18897 return true;
18899 /* T*
18901 T&& */
18902 if (POINTER_TYPE_P (type))
18903 return uses_deducible_template_parms (TREE_TYPE (type));
18905 /* T[integer-constant ]
18906 type [i] */
18907 if (TREE_CODE (type) == ARRAY_TYPE)
18908 return (uses_deducible_template_parms (TREE_TYPE (type))
18909 || deducible_array_bound (TYPE_DOMAIN (type)));
18911 /* T type ::*
18912 type T::*
18913 T T::*
18914 T (type ::*)()
18915 type (T::*)()
18916 type (type ::*)(T)
18917 type (T::*)(T)
18918 T (type ::*)(T)
18919 T (T::*)()
18920 T (T::*)(T) */
18921 if (TYPE_PTRMEM_P (type))
18922 return (uses_deducible_template_parms (TYPE_PTRMEM_CLASS_TYPE (type))
18923 || (uses_deducible_template_parms
18924 (TYPE_PTRMEM_POINTED_TO_TYPE (type))));
18926 /* template-name <T> (where template-name refers to a class template)
18927 template-name <i> (where template-name refers to a class template) */
18928 if (CLASS_TYPE_P (type)
18929 && CLASSTYPE_TEMPLATE_INFO (type)
18930 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type)))
18931 return deducible_template_args (INNERMOST_TEMPLATE_ARGS
18932 (CLASSTYPE_TI_ARGS (type)));
18934 /* type (T)
18936 T(T) */
18937 if (TREE_CODE (type) == FUNCTION_TYPE
18938 || TREE_CODE (type) == METHOD_TYPE)
18940 if (uses_deducible_template_parms (TREE_TYPE (type)))
18941 return true;
18942 tree parm = TYPE_ARG_TYPES (type);
18943 if (TREE_CODE (type) == METHOD_TYPE)
18944 parm = TREE_CHAIN (parm);
18945 for (; parm; parm = TREE_CHAIN (parm))
18946 if (uses_deducible_template_parms (TREE_VALUE (parm)))
18947 return true;
18950 return false;
18953 /* Subroutine of type_unification_real and unify_pack_expansion to
18954 handle unification of a single P/A pair. Parameters are as
18955 for those functions. */
18957 static int
18958 unify_one_argument (tree tparms, tree targs, tree parm, tree arg,
18959 int subr, unification_kind_t strict,
18960 bool explain_p)
18962 tree arg_expr = NULL_TREE;
18963 int arg_strict;
18965 if (arg == error_mark_node || parm == error_mark_node)
18966 return unify_invalid (explain_p);
18967 if (arg == unknown_type_node)
18968 /* We can't deduce anything from this, but we might get all the
18969 template args from other function args. */
18970 return unify_success (explain_p);
18972 /* Implicit conversions (Clause 4) will be performed on a function
18973 argument to convert it to the type of the corresponding function
18974 parameter if the parameter type contains no template-parameters that
18975 participate in template argument deduction. */
18976 if (strict != DEDUCE_EXACT
18977 && TYPE_P (parm) && !uses_deducible_template_parms (parm))
18978 /* For function parameters with no deducible template parameters,
18979 just return. We'll check non-dependent conversions later. */
18980 return unify_success (explain_p);
18982 switch (strict)
18984 case DEDUCE_CALL:
18985 arg_strict = (UNIFY_ALLOW_OUTER_LEVEL
18986 | UNIFY_ALLOW_MORE_CV_QUAL
18987 | UNIFY_ALLOW_DERIVED);
18988 break;
18990 case DEDUCE_CONV:
18991 arg_strict = UNIFY_ALLOW_LESS_CV_QUAL;
18992 break;
18994 case DEDUCE_EXACT:
18995 arg_strict = UNIFY_ALLOW_NONE;
18996 break;
18998 default:
18999 gcc_unreachable ();
19002 /* We only do these transformations if this is the top-level
19003 parameter_type_list in a call or declaration matching; in other
19004 situations (nested function declarators, template argument lists) we
19005 won't be comparing a type to an expression, and we don't do any type
19006 adjustments. */
19007 if (!subr)
19009 if (!TYPE_P (arg))
19011 gcc_assert (TREE_TYPE (arg) != NULL_TREE);
19012 if (type_unknown_p (arg))
19014 /* [temp.deduct.type] A template-argument can be
19015 deduced from a pointer to function or pointer
19016 to member function argument if the set of
19017 overloaded functions does not contain function
19018 templates and at most one of a set of
19019 overloaded functions provides a unique
19020 match. */
19022 if (resolve_overloaded_unification
19023 (tparms, targs, parm, arg, strict,
19024 arg_strict, explain_p))
19025 return unify_success (explain_p);
19026 return unify_overload_resolution_failure (explain_p, arg);
19029 arg_expr = arg;
19030 arg = unlowered_expr_type (arg);
19031 if (arg == error_mark_node)
19032 return unify_invalid (explain_p);
19035 arg_strict |=
19036 maybe_adjust_types_for_deduction (strict, &parm, &arg, arg_expr);
19038 else
19039 if ((TYPE_P (parm) || TREE_CODE (parm) == TEMPLATE_DECL)
19040 != (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL))
19041 return unify_template_argument_mismatch (explain_p, parm, arg);
19043 /* For deduction from an init-list we need the actual list. */
19044 if (arg_expr && BRACE_ENCLOSED_INITIALIZER_P (arg_expr))
19045 arg = arg_expr;
19046 return unify (tparms, targs, parm, arg, arg_strict, explain_p);
19049 /* for_each_template_parm callback that always returns 0. */
19051 static int
19052 zero_r (tree, void *)
19054 return 0;
19057 /* for_each_template_parm any_fn callback to handle deduction of a template
19058 type argument from the type of an array bound. */
19060 static int
19061 array_deduction_r (tree t, void *data)
19063 tree_pair_p d = (tree_pair_p)data;
19064 tree &tparms = d->purpose;
19065 tree &targs = d->value;
19067 if (TREE_CODE (t) == ARRAY_TYPE)
19068 if (tree dom = TYPE_DOMAIN (t))
19069 if (tree max = TYPE_MAX_VALUE (dom))
19071 if (TREE_CODE (max) == MINUS_EXPR)
19072 max = TREE_OPERAND (max, 0);
19073 if (TREE_CODE (max) == TEMPLATE_PARM_INDEX)
19074 unify (tparms, targs, TREE_TYPE (max), size_type_node,
19075 UNIFY_ALLOW_NONE, /*explain*/false);
19078 /* Keep walking. */
19079 return 0;
19082 /* Try to deduce any not-yet-deduced template type arguments from the type of
19083 an array bound. This is handled separately from unify because 14.8.2.5 says
19084 "The type of a type parameter is only deduced from an array bound if it is
19085 not otherwise deduced." */
19087 static void
19088 try_array_deduction (tree tparms, tree targs, tree parm)
19090 tree_pair_s data = { tparms, targs };
19091 hash_set<tree> visited;
19092 for_each_template_parm (parm, zero_r, &data, &visited,
19093 /*nondeduced*/false, array_deduction_r);
19096 /* Most parms like fn_type_unification.
19098 If SUBR is 1, we're being called recursively (to unify the
19099 arguments of a function or method parameter of a function
19100 template).
19102 CHECKS is a pointer to a vector of access checks encountered while
19103 substituting default template arguments. */
19105 static int
19106 type_unification_real (tree tparms,
19107 tree full_targs,
19108 tree xparms,
19109 const tree *xargs,
19110 unsigned int xnargs,
19111 int subr,
19112 unification_kind_t strict,
19113 int flags,
19114 vec<deferred_access_check, va_gc> **checks,
19115 bool explain_p)
19117 tree parm, arg;
19118 int i;
19119 int ntparms = TREE_VEC_LENGTH (tparms);
19120 int saw_undeduced = 0;
19121 tree parms;
19122 const tree *args;
19123 unsigned int nargs;
19124 unsigned int ia;
19126 gcc_assert (TREE_CODE (tparms) == TREE_VEC);
19127 gcc_assert (xparms == NULL_TREE || TREE_CODE (xparms) == TREE_LIST);
19128 gcc_assert (ntparms > 0);
19130 tree targs = INNERMOST_TEMPLATE_ARGS (full_targs);
19132 /* Reset the number of non-defaulted template arguments contained
19133 in TARGS. */
19134 NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs) = NULL_TREE;
19136 again:
19137 parms = xparms;
19138 args = xargs;
19139 nargs = xnargs;
19141 ia = 0;
19142 while (parms && parms != void_list_node
19143 && ia < nargs)
19145 parm = TREE_VALUE (parms);
19147 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION
19148 && (!TREE_CHAIN (parms) || TREE_CHAIN (parms) == void_list_node))
19149 /* For a function parameter pack that occurs at the end of the
19150 parameter-declaration-list, the type A of each remaining
19151 argument of the call is compared with the type P of the
19152 declarator-id of the function parameter pack. */
19153 break;
19155 parms = TREE_CHAIN (parms);
19157 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION)
19158 /* For a function parameter pack that does not occur at the
19159 end of the parameter-declaration-list, the type of the
19160 parameter pack is a non-deduced context. */
19161 continue;
19163 arg = args[ia];
19164 ++ia;
19166 if (unify_one_argument (tparms, full_targs, parm, arg, subr, strict,
19167 explain_p))
19168 return 1;
19171 if (parms
19172 && parms != void_list_node
19173 && TREE_CODE (TREE_VALUE (parms)) == TYPE_PACK_EXPANSION)
19175 /* Unify the remaining arguments with the pack expansion type. */
19176 tree argvec;
19177 tree parmvec = make_tree_vec (1);
19179 /* Allocate a TREE_VEC and copy in all of the arguments */
19180 argvec = make_tree_vec (nargs - ia);
19181 for (i = 0; ia < nargs; ++ia, ++i)
19182 TREE_VEC_ELT (argvec, i) = args[ia];
19184 /* Copy the parameter into parmvec. */
19185 TREE_VEC_ELT (parmvec, 0) = TREE_VALUE (parms);
19186 if (unify_pack_expansion (tparms, full_targs, parmvec, argvec, strict,
19187 /*subr=*/subr, explain_p))
19188 return 1;
19190 /* Advance to the end of the list of parameters. */
19191 parms = TREE_CHAIN (parms);
19194 /* Fail if we've reached the end of the parm list, and more args
19195 are present, and the parm list isn't variadic. */
19196 if (ia < nargs && parms == void_list_node)
19197 return unify_too_many_arguments (explain_p, nargs, ia);
19198 /* Fail if parms are left and they don't have default values and
19199 they aren't all deduced as empty packs (c++/57397). This is
19200 consistent with sufficient_parms_p. */
19201 if (parms && parms != void_list_node
19202 && TREE_PURPOSE (parms) == NULL_TREE)
19204 unsigned int count = nargs;
19205 tree p = parms;
19206 bool type_pack_p;
19209 type_pack_p = TREE_CODE (TREE_VALUE (p)) == TYPE_PACK_EXPANSION;
19210 if (!type_pack_p)
19211 count++;
19212 p = TREE_CHAIN (p);
19214 while (p && p != void_list_node);
19215 if (count != nargs)
19216 return unify_too_few_arguments (explain_p, ia, count,
19217 type_pack_p);
19220 if (!subr)
19222 tsubst_flags_t complain = (explain_p
19223 ? tf_warning_or_error
19224 : tf_none);
19225 bool tried_array_deduction = (cxx_dialect < cxx1z);
19227 for (i = 0; i < ntparms; i++)
19229 tree targ = TREE_VEC_ELT (targs, i);
19230 tree tparm = TREE_VEC_ELT (tparms, i);
19232 /* Clear the "incomplete" flags on all argument packs now so that
19233 substituting them into later default arguments works. */
19234 if (targ && ARGUMENT_PACK_P (targ))
19236 ARGUMENT_PACK_INCOMPLETE_P (targ) = 0;
19237 ARGUMENT_PACK_EXPLICIT_ARGS (targ) = NULL_TREE;
19240 if (targ || tparm == error_mark_node)
19241 continue;
19242 tparm = TREE_VALUE (tparm);
19244 if (TREE_CODE (tparm) == TYPE_DECL
19245 && !tried_array_deduction)
19247 try_array_deduction (tparms, targs, xparms);
19248 tried_array_deduction = true;
19249 if (TREE_VEC_ELT (targs, i))
19250 continue;
19253 /* If this is an undeduced nontype parameter that depends on
19254 a type parameter, try another pass; its type may have been
19255 deduced from a later argument than the one from which
19256 this parameter can be deduced. */
19257 if (TREE_CODE (tparm) == PARM_DECL
19258 && uses_template_parms (TREE_TYPE (tparm))
19259 && saw_undeduced < 2)
19261 saw_undeduced = 1;
19262 continue;
19265 /* Core issue #226 (C++0x) [temp.deduct]:
19267 If a template argument has not been deduced, its
19268 default template argument, if any, is used.
19270 When we are in C++98 mode, TREE_PURPOSE will either
19271 be NULL_TREE or ERROR_MARK_NODE, so we do not need
19272 to explicitly check cxx_dialect here. */
19273 if (TREE_PURPOSE (TREE_VEC_ELT (tparms, i)))
19274 /* OK, there is a default argument. Wait until after the
19275 conversion check to do substitution. */
19276 continue;
19278 /* If the type parameter is a parameter pack, then it will
19279 be deduced to an empty parameter pack. */
19280 if (template_parameter_pack_p (tparm))
19282 tree arg;
19284 if (TREE_CODE (tparm) == TEMPLATE_PARM_INDEX)
19286 arg = make_node (NONTYPE_ARGUMENT_PACK);
19287 TREE_TYPE (arg) = TREE_TYPE (TEMPLATE_PARM_DECL (tparm));
19288 TREE_CONSTANT (arg) = 1;
19290 else
19291 arg = cxx_make_type (TYPE_ARGUMENT_PACK);
19293 SET_ARGUMENT_PACK_ARGS (arg, make_tree_vec (0));
19295 TREE_VEC_ELT (targs, i) = arg;
19296 continue;
19299 return unify_parameter_deduction_failure (explain_p, tparm);
19302 /* DR 1391: All parameters have args, now check non-dependent parms for
19303 convertibility. */
19304 if (saw_undeduced < 2)
19305 for (ia = 0, parms = xparms, args = xargs, nargs = xnargs;
19306 parms && parms != void_list_node && ia < nargs; )
19308 parm = TREE_VALUE (parms);
19310 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION
19311 && (!TREE_CHAIN (parms)
19312 || TREE_CHAIN (parms) == void_list_node))
19313 /* For a function parameter pack that occurs at the end of the
19314 parameter-declaration-list, the type A of each remaining
19315 argument of the call is compared with the type P of the
19316 declarator-id of the function parameter pack. */
19317 break;
19319 parms = TREE_CHAIN (parms);
19321 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION)
19322 /* For a function parameter pack that does not occur at the
19323 end of the parameter-declaration-list, the type of the
19324 parameter pack is a non-deduced context. */
19325 continue;
19327 arg = args[ia];
19328 ++ia;
19330 if (uses_template_parms (parm))
19331 continue;
19332 if (check_non_deducible_conversion (parm, arg, strict, flags,
19333 explain_p))
19334 return 1;
19337 /* Now substitute into the default template arguments. */
19338 for (i = 0; i < ntparms; i++)
19340 tree targ = TREE_VEC_ELT (targs, i);
19341 tree tparm = TREE_VEC_ELT (tparms, i);
19343 if (targ || tparm == error_mark_node)
19344 continue;
19345 tree parm = TREE_VALUE (tparm);
19347 if (TREE_CODE (parm) == PARM_DECL
19348 && uses_template_parms (TREE_TYPE (parm))
19349 && saw_undeduced < 2)
19350 continue;
19352 tree arg = TREE_PURPOSE (tparm);
19353 reopen_deferring_access_checks (*checks);
19354 location_t save_loc = input_location;
19355 if (DECL_P (parm))
19356 input_location = DECL_SOURCE_LOCATION (parm);
19357 arg = tsubst_template_arg (arg, full_targs, complain, NULL_TREE);
19358 if (!uses_template_parms (arg))
19359 arg = convert_template_argument (parm, arg, full_targs, complain,
19360 i, NULL_TREE);
19361 else if (saw_undeduced < 2)
19362 arg = NULL_TREE;
19363 else
19364 arg = error_mark_node;
19365 input_location = save_loc;
19366 *checks = get_deferred_access_checks ();
19367 pop_deferring_access_checks ();
19368 if (arg == error_mark_node)
19369 return 1;
19370 else if (arg)
19372 TREE_VEC_ELT (targs, i) = arg;
19373 /* The position of the first default template argument,
19374 is also the number of non-defaulted arguments in TARGS.
19375 Record that. */
19376 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
19377 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, i);
19381 if (saw_undeduced++ == 1)
19382 goto again;
19385 if (CHECKING_P && !NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
19386 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, TREE_VEC_LENGTH (targs));
19388 return unify_success (explain_p);
19391 /* Subroutine of type_unification_real. Args are like the variables
19392 at the call site. ARG is an overloaded function (or template-id);
19393 we try deducing template args from each of the overloads, and if
19394 only one succeeds, we go with that. Modifies TARGS and returns
19395 true on success. */
19397 static bool
19398 resolve_overloaded_unification (tree tparms,
19399 tree targs,
19400 tree parm,
19401 tree arg,
19402 unification_kind_t strict,
19403 int sub_strict,
19404 bool explain_p)
19406 tree tempargs = copy_node (targs);
19407 int good = 0;
19408 tree goodfn = NULL_TREE;
19409 bool addr_p;
19411 if (TREE_CODE (arg) == ADDR_EXPR)
19413 arg = TREE_OPERAND (arg, 0);
19414 addr_p = true;
19416 else
19417 addr_p = false;
19419 if (TREE_CODE (arg) == COMPONENT_REF)
19420 /* Handle `&x' where `x' is some static or non-static member
19421 function name. */
19422 arg = TREE_OPERAND (arg, 1);
19424 if (TREE_CODE (arg) == OFFSET_REF)
19425 arg = TREE_OPERAND (arg, 1);
19427 /* Strip baselink information. */
19428 if (BASELINK_P (arg))
19429 arg = BASELINK_FUNCTIONS (arg);
19431 if (TREE_CODE (arg) == TEMPLATE_ID_EXPR)
19433 /* If we got some explicit template args, we need to plug them into
19434 the affected templates before we try to unify, in case the
19435 explicit args will completely resolve the templates in question. */
19437 int ok = 0;
19438 tree expl_subargs = TREE_OPERAND (arg, 1);
19439 arg = TREE_OPERAND (arg, 0);
19441 for (; arg; arg = OVL_NEXT (arg))
19443 tree fn = OVL_CURRENT (arg);
19444 tree subargs, elem;
19446 if (TREE_CODE (fn) != TEMPLATE_DECL)
19447 continue;
19449 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
19450 expl_subargs, NULL_TREE, tf_none,
19451 /*require_all_args=*/true,
19452 /*use_default_args=*/true);
19453 if (subargs != error_mark_node
19454 && !any_dependent_template_arguments_p (subargs))
19456 elem = TREE_TYPE (instantiate_template (fn, subargs, tf_none));
19457 if (try_one_overload (tparms, targs, tempargs, parm,
19458 elem, strict, sub_strict, addr_p, explain_p)
19459 && (!goodfn || !same_type_p (goodfn, elem)))
19461 goodfn = elem;
19462 ++good;
19465 else if (subargs)
19466 ++ok;
19468 /* If no templates (or more than one) are fully resolved by the
19469 explicit arguments, this template-id is a non-deduced context; it
19470 could still be OK if we deduce all template arguments for the
19471 enclosing call through other arguments. */
19472 if (good != 1)
19473 good = ok;
19475 else if (TREE_CODE (arg) != OVERLOAD
19476 && TREE_CODE (arg) != FUNCTION_DECL)
19477 /* If ARG is, for example, "(0, &f)" then its type will be unknown
19478 -- but the deduction does not succeed because the expression is
19479 not just the function on its own. */
19480 return false;
19481 else
19482 for (; arg; arg = OVL_NEXT (arg))
19483 if (try_one_overload (tparms, targs, tempargs, parm,
19484 TREE_TYPE (OVL_CURRENT (arg)),
19485 strict, sub_strict, addr_p, explain_p)
19486 && (!goodfn || !decls_match (goodfn, OVL_CURRENT (arg))))
19488 goodfn = OVL_CURRENT (arg);
19489 ++good;
19492 /* [temp.deduct.type] A template-argument can be deduced from a pointer
19493 to function or pointer to member function argument if the set of
19494 overloaded functions does not contain function templates and at most
19495 one of a set of overloaded functions provides a unique match.
19497 So if we found multiple possibilities, we return success but don't
19498 deduce anything. */
19500 if (good == 1)
19502 int i = TREE_VEC_LENGTH (targs);
19503 for (; i--; )
19504 if (TREE_VEC_ELT (tempargs, i))
19506 tree old = TREE_VEC_ELT (targs, i);
19507 tree new_ = TREE_VEC_ELT (tempargs, i);
19508 if (new_ && old && ARGUMENT_PACK_P (old)
19509 && ARGUMENT_PACK_EXPLICIT_ARGS (old))
19510 /* Don't forget explicit template arguments in a pack. */
19511 ARGUMENT_PACK_EXPLICIT_ARGS (new_)
19512 = ARGUMENT_PACK_EXPLICIT_ARGS (old);
19513 TREE_VEC_ELT (targs, i) = new_;
19516 if (good)
19517 return true;
19519 return false;
19522 /* Core DR 115: In contexts where deduction is done and fails, or in
19523 contexts where deduction is not done, if a template argument list is
19524 specified and it, along with any default template arguments, identifies
19525 a single function template specialization, then the template-id is an
19526 lvalue for the function template specialization. */
19528 tree
19529 resolve_nondeduced_context (tree orig_expr, tsubst_flags_t complain)
19531 tree expr, offset, baselink;
19532 bool addr;
19534 if (!type_unknown_p (orig_expr))
19535 return orig_expr;
19537 expr = orig_expr;
19538 addr = false;
19539 offset = NULL_TREE;
19540 baselink = NULL_TREE;
19542 if (TREE_CODE (expr) == ADDR_EXPR)
19544 expr = TREE_OPERAND (expr, 0);
19545 addr = true;
19547 if (TREE_CODE (expr) == OFFSET_REF)
19549 offset = expr;
19550 expr = TREE_OPERAND (expr, 1);
19552 if (BASELINK_P (expr))
19554 baselink = expr;
19555 expr = BASELINK_FUNCTIONS (expr);
19558 if (TREE_CODE (expr) == TEMPLATE_ID_EXPR)
19560 int good = 0;
19561 tree goodfn = NULL_TREE;
19563 /* If we got some explicit template args, we need to plug them into
19564 the affected templates before we try to unify, in case the
19565 explicit args will completely resolve the templates in question. */
19567 tree expl_subargs = TREE_OPERAND (expr, 1);
19568 tree arg = TREE_OPERAND (expr, 0);
19569 tree badfn = NULL_TREE;
19570 tree badargs = NULL_TREE;
19572 for (; arg; arg = OVL_NEXT (arg))
19574 tree fn = OVL_CURRENT (arg);
19575 tree subargs, elem;
19577 if (TREE_CODE (fn) != TEMPLATE_DECL)
19578 continue;
19580 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
19581 expl_subargs, NULL_TREE, tf_none,
19582 /*require_all_args=*/true,
19583 /*use_default_args=*/true);
19584 if (subargs != error_mark_node
19585 && !any_dependent_template_arguments_p (subargs))
19587 elem = instantiate_template (fn, subargs, tf_none);
19588 if (elem == error_mark_node)
19590 badfn = fn;
19591 badargs = subargs;
19593 else if (elem && (!goodfn || !decls_match (goodfn, elem)))
19595 goodfn = elem;
19596 ++good;
19600 if (good == 1)
19602 mark_used (goodfn);
19603 expr = goodfn;
19604 if (baselink)
19605 expr = build_baselink (BASELINK_BINFO (baselink),
19606 BASELINK_ACCESS_BINFO (baselink),
19607 expr, BASELINK_OPTYPE (baselink));
19608 if (offset)
19610 tree base
19611 = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (offset, 0)));
19612 expr = build_offset_ref (base, expr, addr, complain);
19614 if (addr)
19615 expr = cp_build_addr_expr (expr, complain);
19616 return expr;
19618 else if (good == 0 && badargs && (complain & tf_error))
19619 /* There were no good options and at least one bad one, so let the
19620 user know what the problem is. */
19621 instantiate_template (badfn, badargs, complain);
19623 return orig_expr;
19626 /* Subroutine of resolve_overloaded_unification; does deduction for a single
19627 overload. Fills TARGS with any deduced arguments, or error_mark_node if
19628 different overloads deduce different arguments for a given parm.
19629 ADDR_P is true if the expression for which deduction is being
19630 performed was of the form "& fn" rather than simply "fn".
19632 Returns 1 on success. */
19634 static int
19635 try_one_overload (tree tparms,
19636 tree orig_targs,
19637 tree targs,
19638 tree parm,
19639 tree arg,
19640 unification_kind_t strict,
19641 int sub_strict,
19642 bool addr_p,
19643 bool explain_p)
19645 int nargs;
19646 tree tempargs;
19647 int i;
19649 if (arg == error_mark_node)
19650 return 0;
19652 /* [temp.deduct.type] A template-argument can be deduced from a pointer
19653 to function or pointer to member function argument if the set of
19654 overloaded functions does not contain function templates and at most
19655 one of a set of overloaded functions provides a unique match.
19657 So if this is a template, just return success. */
19659 if (uses_template_parms (arg))
19660 return 1;
19662 if (TREE_CODE (arg) == METHOD_TYPE)
19663 arg = build_ptrmemfunc_type (build_pointer_type (arg));
19664 else if (addr_p)
19665 arg = build_pointer_type (arg);
19667 sub_strict |= maybe_adjust_types_for_deduction (strict, &parm, &arg, NULL);
19669 /* We don't copy orig_targs for this because if we have already deduced
19670 some template args from previous args, unify would complain when we
19671 try to deduce a template parameter for the same argument, even though
19672 there isn't really a conflict. */
19673 nargs = TREE_VEC_LENGTH (targs);
19674 tempargs = make_tree_vec (nargs);
19676 if (unify (tparms, tempargs, parm, arg, sub_strict, explain_p))
19677 return 0;
19679 /* First make sure we didn't deduce anything that conflicts with
19680 explicitly specified args. */
19681 for (i = nargs; i--; )
19683 tree elt = TREE_VEC_ELT (tempargs, i);
19684 tree oldelt = TREE_VEC_ELT (orig_targs, i);
19686 if (!elt)
19687 /*NOP*/;
19688 else if (uses_template_parms (elt))
19689 /* Since we're unifying against ourselves, we will fill in
19690 template args used in the function parm list with our own
19691 template parms. Discard them. */
19692 TREE_VEC_ELT (tempargs, i) = NULL_TREE;
19693 else if (oldelt && ARGUMENT_PACK_P (oldelt))
19695 /* Check that the argument at each index of the deduced argument pack
19696 is equivalent to the corresponding explicitly specified argument.
19697 We may have deduced more arguments than were explicitly specified,
19698 and that's OK. */
19700 /* We used to assert ARGUMENT_PACK_INCOMPLETE_P (oldelt) here, but
19701 that's wrong if we deduce the same argument pack from multiple
19702 function arguments: it's only incomplete the first time. */
19704 tree explicit_pack = ARGUMENT_PACK_ARGS (oldelt);
19705 tree deduced_pack = ARGUMENT_PACK_ARGS (elt);
19707 if (TREE_VEC_LENGTH (deduced_pack)
19708 < TREE_VEC_LENGTH (explicit_pack))
19709 return 0;
19711 for (int j = 0; j < TREE_VEC_LENGTH (explicit_pack); j++)
19712 if (!template_args_equal (TREE_VEC_ELT (explicit_pack, j),
19713 TREE_VEC_ELT (deduced_pack, j)))
19714 return 0;
19716 else if (oldelt && !template_args_equal (oldelt, elt))
19717 return 0;
19720 for (i = nargs; i--; )
19722 tree elt = TREE_VEC_ELT (tempargs, i);
19724 if (elt)
19725 TREE_VEC_ELT (targs, i) = elt;
19728 return 1;
19731 /* PARM is a template class (perhaps with unbound template
19732 parameters). ARG is a fully instantiated type. If ARG can be
19733 bound to PARM, return ARG, otherwise return NULL_TREE. TPARMS and
19734 TARGS are as for unify. */
19736 static tree
19737 try_class_unification (tree tparms, tree targs, tree parm, tree arg,
19738 bool explain_p)
19740 tree copy_of_targs;
19742 if (!CLASSTYPE_SPECIALIZATION_OF_PRIMARY_TEMPLATE_P (arg))
19743 return NULL_TREE;
19744 else if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
19745 /* Matches anything. */;
19746 else if (most_general_template (CLASSTYPE_TI_TEMPLATE (arg))
19747 != most_general_template (CLASSTYPE_TI_TEMPLATE (parm)))
19748 return NULL_TREE;
19750 /* We need to make a new template argument vector for the call to
19751 unify. If we used TARGS, we'd clutter it up with the result of
19752 the attempted unification, even if this class didn't work out.
19753 We also don't want to commit ourselves to all the unifications
19754 we've already done, since unification is supposed to be done on
19755 an argument-by-argument basis. In other words, consider the
19756 following pathological case:
19758 template <int I, int J, int K>
19759 struct S {};
19761 template <int I, int J>
19762 struct S<I, J, 2> : public S<I, I, I>, S<J, J, J> {};
19764 template <int I, int J, int K>
19765 void f(S<I, J, K>, S<I, I, I>);
19767 void g() {
19768 S<0, 0, 0> s0;
19769 S<0, 1, 2> s2;
19771 f(s0, s2);
19774 Now, by the time we consider the unification involving `s2', we
19775 already know that we must have `f<0, 0, 0>'. But, even though
19776 `S<0, 1, 2>' is derived from `S<0, 0, 0>', the code is invalid
19777 because there are two ways to unify base classes of S<0, 1, 2>
19778 with S<I, I, I>. If we kept the already deduced knowledge, we
19779 would reject the possibility I=1. */
19780 copy_of_targs = make_tree_vec (TREE_VEC_LENGTH (targs));
19782 if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
19784 if (unify_bound_ttp_args (tparms, copy_of_targs, parm, arg, explain_p))
19785 return NULL_TREE;
19786 return arg;
19789 /* If unification failed, we're done. */
19790 if (unify (tparms, copy_of_targs, CLASSTYPE_TI_ARGS (parm),
19791 CLASSTYPE_TI_ARGS (arg), UNIFY_ALLOW_NONE, explain_p))
19792 return NULL_TREE;
19794 return arg;
19797 /* Given a template type PARM and a class type ARG, find the unique
19798 base type in ARG that is an instance of PARM. We do not examine
19799 ARG itself; only its base-classes. If there is not exactly one
19800 appropriate base class, return NULL_TREE. PARM may be the type of
19801 a partial specialization, as well as a plain template type. Used
19802 by unify. */
19804 static enum template_base_result
19805 get_template_base (tree tparms, tree targs, tree parm, tree arg,
19806 bool explain_p, tree *result)
19808 tree rval = NULL_TREE;
19809 tree binfo;
19811 gcc_assert (RECORD_OR_UNION_CODE_P (TREE_CODE (arg)));
19813 binfo = TYPE_BINFO (complete_type (arg));
19814 if (!binfo)
19816 /* The type could not be completed. */
19817 *result = NULL_TREE;
19818 return tbr_incomplete_type;
19821 /* Walk in inheritance graph order. The search order is not
19822 important, and this avoids multiple walks of virtual bases. */
19823 for (binfo = TREE_CHAIN (binfo); binfo; binfo = TREE_CHAIN (binfo))
19825 tree r = try_class_unification (tparms, targs, parm,
19826 BINFO_TYPE (binfo), explain_p);
19828 if (r)
19830 /* If there is more than one satisfactory baseclass, then:
19832 [temp.deduct.call]
19834 If they yield more than one possible deduced A, the type
19835 deduction fails.
19837 applies. */
19838 if (rval && !same_type_p (r, rval))
19840 *result = NULL_TREE;
19841 return tbr_ambiguous_baseclass;
19844 rval = r;
19848 *result = rval;
19849 return tbr_success;
19852 /* Returns the level of DECL, which declares a template parameter. */
19854 static int
19855 template_decl_level (tree decl)
19857 switch (TREE_CODE (decl))
19859 case TYPE_DECL:
19860 case TEMPLATE_DECL:
19861 return TEMPLATE_TYPE_LEVEL (TREE_TYPE (decl));
19863 case PARM_DECL:
19864 return TEMPLATE_PARM_LEVEL (DECL_INITIAL (decl));
19866 default:
19867 gcc_unreachable ();
19869 return 0;
19872 /* Decide whether ARG can be unified with PARM, considering only the
19873 cv-qualifiers of each type, given STRICT as documented for unify.
19874 Returns nonzero iff the unification is OK on that basis. */
19876 static int
19877 check_cv_quals_for_unify (int strict, tree arg, tree parm)
19879 int arg_quals = cp_type_quals (arg);
19880 int parm_quals = cp_type_quals (parm);
19882 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
19883 && !(strict & UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
19885 /* Although a CVR qualifier is ignored when being applied to a
19886 substituted template parameter ([8.3.2]/1 for example), that
19887 does not allow us to unify "const T" with "int&" because both
19888 types are not of the form "cv-list T" [14.8.2.5 temp.deduct.type].
19889 It is ok when we're allowing additional CV qualifiers
19890 at the outer level [14.8.2.1]/3,1st bullet. */
19891 if ((TREE_CODE (arg) == REFERENCE_TYPE
19892 || TREE_CODE (arg) == FUNCTION_TYPE
19893 || TREE_CODE (arg) == METHOD_TYPE)
19894 && (parm_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE)))
19895 return 0;
19897 if ((!POINTER_TYPE_P (arg) && TREE_CODE (arg) != TEMPLATE_TYPE_PARM)
19898 && (parm_quals & TYPE_QUAL_RESTRICT))
19899 return 0;
19902 if (!(strict & (UNIFY_ALLOW_MORE_CV_QUAL | UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
19903 && (arg_quals & parm_quals) != parm_quals)
19904 return 0;
19906 if (!(strict & (UNIFY_ALLOW_LESS_CV_QUAL | UNIFY_ALLOW_OUTER_LESS_CV_QUAL))
19907 && (parm_quals & arg_quals) != arg_quals)
19908 return 0;
19910 return 1;
19913 /* Determines the LEVEL and INDEX for the template parameter PARM. */
19914 void
19915 template_parm_level_and_index (tree parm, int* level, int* index)
19917 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
19918 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
19919 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
19921 *index = TEMPLATE_TYPE_IDX (parm);
19922 *level = TEMPLATE_TYPE_LEVEL (parm);
19924 else
19926 *index = TEMPLATE_PARM_IDX (parm);
19927 *level = TEMPLATE_PARM_LEVEL (parm);
19931 #define RECUR_AND_CHECK_FAILURE(TP, TA, P, A, S, EP) \
19932 do { \
19933 if (unify (TP, TA, P, A, S, EP)) \
19934 return 1; \
19935 } while (0)
19937 /* Unifies the remaining arguments in PACKED_ARGS with the pack
19938 expansion at the end of PACKED_PARMS. Returns 0 if the type
19939 deduction succeeds, 1 otherwise. STRICT is the same as in
19940 fn_type_unification. CALL_ARGS_P is true iff PACKED_ARGS is actually a
19941 function call argument list. We'll need to adjust the arguments to make them
19942 types. SUBR tells us if this is from a recursive call to
19943 type_unification_real, or for comparing two template argument
19944 lists. */
19946 static int
19947 unify_pack_expansion (tree tparms, tree targs, tree packed_parms,
19948 tree packed_args, unification_kind_t strict,
19949 bool subr, bool explain_p)
19951 tree parm
19952 = TREE_VEC_ELT (packed_parms, TREE_VEC_LENGTH (packed_parms) - 1);
19953 tree pattern = PACK_EXPANSION_PATTERN (parm);
19954 tree pack, packs = NULL_TREE;
19955 int i, start = TREE_VEC_LENGTH (packed_parms) - 1;
19957 packed_args = expand_template_argument_pack (packed_args);
19959 int len = TREE_VEC_LENGTH (packed_args);
19961 /* Determine the parameter packs we will be deducing from the
19962 pattern, and record their current deductions. */
19963 for (pack = PACK_EXPANSION_PARAMETER_PACKS (parm);
19964 pack; pack = TREE_CHAIN (pack))
19966 tree parm_pack = TREE_VALUE (pack);
19967 int idx, level;
19969 /* Determine the index and level of this parameter pack. */
19970 template_parm_level_and_index (parm_pack, &level, &idx);
19972 /* Keep track of the parameter packs and their corresponding
19973 argument packs. */
19974 packs = tree_cons (parm_pack, TMPL_ARG (targs, level, idx), packs);
19975 TREE_TYPE (packs) = make_tree_vec (len - start);
19978 /* Loop through all of the arguments that have not yet been
19979 unified and unify each with the pattern. */
19980 for (i = start; i < len; i++)
19982 tree parm;
19983 bool any_explicit = false;
19984 tree arg = TREE_VEC_ELT (packed_args, i);
19986 /* For each parameter pack, set its TMPL_ARG to either NULL_TREE
19987 or the element of its argument pack at the current index if
19988 this argument was explicitly specified. */
19989 for (pack = packs; pack; pack = TREE_CHAIN (pack))
19991 int idx, level;
19992 tree arg, pargs;
19993 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
19995 arg = NULL_TREE;
19996 if (TREE_VALUE (pack)
19997 && (pargs = ARGUMENT_PACK_EXPLICIT_ARGS (TREE_VALUE (pack)))
19998 && (i - start < TREE_VEC_LENGTH (pargs)))
20000 any_explicit = true;
20001 arg = TREE_VEC_ELT (pargs, i - start);
20003 TMPL_ARG (targs, level, idx) = arg;
20006 /* If we had explicit template arguments, substitute them into the
20007 pattern before deduction. */
20008 if (any_explicit)
20010 /* Some arguments might still be unspecified or dependent. */
20011 bool dependent;
20012 ++processing_template_decl;
20013 dependent = any_dependent_template_arguments_p (targs);
20014 if (!dependent)
20015 --processing_template_decl;
20016 parm = tsubst (pattern, targs,
20017 explain_p ? tf_warning_or_error : tf_none,
20018 NULL_TREE);
20019 if (dependent)
20020 --processing_template_decl;
20021 if (parm == error_mark_node)
20022 return 1;
20024 else
20025 parm = pattern;
20027 /* Unify the pattern with the current argument. */
20028 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
20029 explain_p))
20030 return 1;
20032 /* For each parameter pack, collect the deduced value. */
20033 for (pack = packs; pack; pack = TREE_CHAIN (pack))
20035 int idx, level;
20036 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
20038 TREE_VEC_ELT (TREE_TYPE (pack), i - start) =
20039 TMPL_ARG (targs, level, idx);
20043 /* Verify that the results of unification with the parameter packs
20044 produce results consistent with what we've seen before, and make
20045 the deduced argument packs available. */
20046 for (pack = packs; pack; pack = TREE_CHAIN (pack))
20048 tree old_pack = TREE_VALUE (pack);
20049 tree new_args = TREE_TYPE (pack);
20050 int i, len = TREE_VEC_LENGTH (new_args);
20051 int idx, level;
20052 bool nondeduced_p = false;
20054 /* By default keep the original deduced argument pack.
20055 If necessary, more specific code is going to update the
20056 resulting deduced argument later down in this function. */
20057 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
20058 TMPL_ARG (targs, level, idx) = old_pack;
20060 /* If NEW_ARGS contains any NULL_TREE entries, we didn't
20061 actually deduce anything. */
20062 for (i = 0; i < len && !nondeduced_p; ++i)
20063 if (TREE_VEC_ELT (new_args, i) == NULL_TREE)
20064 nondeduced_p = true;
20065 if (nondeduced_p)
20066 continue;
20068 if (old_pack && ARGUMENT_PACK_INCOMPLETE_P (old_pack))
20070 /* If we had fewer function args than explicit template args,
20071 just use the explicits. */
20072 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
20073 int explicit_len = TREE_VEC_LENGTH (explicit_args);
20074 if (len < explicit_len)
20075 new_args = explicit_args;
20078 if (!old_pack)
20080 tree result;
20081 /* Build the deduced *_ARGUMENT_PACK. */
20082 if (TREE_CODE (TREE_PURPOSE (pack)) == TEMPLATE_PARM_INDEX)
20084 result = make_node (NONTYPE_ARGUMENT_PACK);
20085 TREE_TYPE (result) =
20086 TREE_TYPE (TEMPLATE_PARM_DECL (TREE_PURPOSE (pack)));
20087 TREE_CONSTANT (result) = 1;
20089 else
20090 result = cxx_make_type (TYPE_ARGUMENT_PACK);
20092 SET_ARGUMENT_PACK_ARGS (result, new_args);
20094 /* Note the deduced argument packs for this parameter
20095 pack. */
20096 TMPL_ARG (targs, level, idx) = result;
20098 else if (ARGUMENT_PACK_INCOMPLETE_P (old_pack)
20099 && (ARGUMENT_PACK_ARGS (old_pack)
20100 == ARGUMENT_PACK_EXPLICIT_ARGS (old_pack)))
20102 /* We only had the explicitly-provided arguments before, but
20103 now we have a complete set of arguments. */
20104 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
20106 SET_ARGUMENT_PACK_ARGS (old_pack, new_args);
20107 ARGUMENT_PACK_INCOMPLETE_P (old_pack) = 1;
20108 ARGUMENT_PACK_EXPLICIT_ARGS (old_pack) = explicit_args;
20110 else
20112 tree bad_old_arg = NULL_TREE, bad_new_arg = NULL_TREE;
20113 tree old_args = ARGUMENT_PACK_ARGS (old_pack);
20115 if (!comp_template_args (old_args, new_args,
20116 &bad_old_arg, &bad_new_arg))
20117 /* Inconsistent unification of this parameter pack. */
20118 return unify_parameter_pack_inconsistent (explain_p,
20119 bad_old_arg,
20120 bad_new_arg);
20124 return unify_success (explain_p);
20127 /* Handle unification of the domain of an array. PARM_DOM and ARG_DOM are
20128 INTEGER_TYPEs representing the TYPE_DOMAIN of ARRAY_TYPEs. The other
20129 parameters and return value are as for unify. */
20131 static int
20132 unify_array_domain (tree tparms, tree targs,
20133 tree parm_dom, tree arg_dom,
20134 bool explain_p)
20136 tree parm_max;
20137 tree arg_max;
20138 bool parm_cst;
20139 bool arg_cst;
20141 /* Our representation of array types uses "N - 1" as the
20142 TYPE_MAX_VALUE for an array with "N" elements, if "N" is
20143 not an integer constant. We cannot unify arbitrarily
20144 complex expressions, so we eliminate the MINUS_EXPRs
20145 here. */
20146 parm_max = TYPE_MAX_VALUE (parm_dom);
20147 parm_cst = TREE_CODE (parm_max) == INTEGER_CST;
20148 if (!parm_cst)
20150 gcc_assert (TREE_CODE (parm_max) == MINUS_EXPR);
20151 parm_max = TREE_OPERAND (parm_max, 0);
20153 arg_max = TYPE_MAX_VALUE (arg_dom);
20154 arg_cst = TREE_CODE (arg_max) == INTEGER_CST;
20155 if (!arg_cst)
20157 /* The ARG_MAX may not be a simple MINUS_EXPR, if we are
20158 trying to unify the type of a variable with the type
20159 of a template parameter. For example:
20161 template <unsigned int N>
20162 void f (char (&) [N]);
20163 int g();
20164 void h(int i) {
20165 char a[g(i)];
20166 f(a);
20169 Here, the type of the ARG will be "int [g(i)]", and
20170 may be a SAVE_EXPR, etc. */
20171 if (TREE_CODE (arg_max) != MINUS_EXPR)
20172 return unify_vla_arg (explain_p, arg_dom);
20173 arg_max = TREE_OPERAND (arg_max, 0);
20176 /* If only one of the bounds used a MINUS_EXPR, compensate
20177 by adding one to the other bound. */
20178 if (parm_cst && !arg_cst)
20179 parm_max = fold_build2_loc (input_location, PLUS_EXPR,
20180 integer_type_node,
20181 parm_max,
20182 integer_one_node);
20183 else if (arg_cst && !parm_cst)
20184 arg_max = fold_build2_loc (input_location, PLUS_EXPR,
20185 integer_type_node,
20186 arg_max,
20187 integer_one_node);
20189 return unify (tparms, targs, parm_max, arg_max,
20190 UNIFY_ALLOW_INTEGER, explain_p);
20193 /* Returns whether T, a P or A in unify, is a type, template or expression. */
20195 enum pa_kind_t { pa_type, pa_tmpl, pa_expr };
20197 static pa_kind_t
20198 pa_kind (tree t)
20200 if (PACK_EXPANSION_P (t))
20201 t = PACK_EXPANSION_PATTERN (t);
20202 if (TREE_CODE (t) == TEMPLATE_TEMPLATE_PARM
20203 || TREE_CODE (t) == UNBOUND_CLASS_TEMPLATE
20204 || DECL_TYPE_TEMPLATE_P (t))
20205 return pa_tmpl;
20206 else if (TYPE_P (t))
20207 return pa_type;
20208 else
20209 return pa_expr;
20212 /* Deduce the value of template parameters. TPARMS is the (innermost)
20213 set of template parameters to a template. TARGS is the bindings
20214 for those template parameters, as determined thus far; TARGS may
20215 include template arguments for outer levels of template parameters
20216 as well. PARM is a parameter to a template function, or a
20217 subcomponent of that parameter; ARG is the corresponding argument.
20218 This function attempts to match PARM with ARG in a manner
20219 consistent with the existing assignments in TARGS. If more values
20220 are deduced, then TARGS is updated.
20222 Returns 0 if the type deduction succeeds, 1 otherwise. The
20223 parameter STRICT is a bitwise or of the following flags:
20225 UNIFY_ALLOW_NONE:
20226 Require an exact match between PARM and ARG.
20227 UNIFY_ALLOW_MORE_CV_QUAL:
20228 Allow the deduced ARG to be more cv-qualified (by qualification
20229 conversion) than ARG.
20230 UNIFY_ALLOW_LESS_CV_QUAL:
20231 Allow the deduced ARG to be less cv-qualified than ARG.
20232 UNIFY_ALLOW_DERIVED:
20233 Allow the deduced ARG to be a template base class of ARG,
20234 or a pointer to a template base class of the type pointed to by
20235 ARG.
20236 UNIFY_ALLOW_INTEGER:
20237 Allow any integral type to be deduced. See the TEMPLATE_PARM_INDEX
20238 case for more information.
20239 UNIFY_ALLOW_OUTER_LEVEL:
20240 This is the outermost level of a deduction. Used to determine validity
20241 of qualification conversions. A valid qualification conversion must
20242 have const qualified pointers leading up to the inner type which
20243 requires additional CV quals, except at the outer level, where const
20244 is not required [conv.qual]. It would be normal to set this flag in
20245 addition to setting UNIFY_ALLOW_MORE_CV_QUAL.
20246 UNIFY_ALLOW_OUTER_MORE_CV_QUAL:
20247 This is the outermost level of a deduction, and PARM can be more CV
20248 qualified at this point.
20249 UNIFY_ALLOW_OUTER_LESS_CV_QUAL:
20250 This is the outermost level of a deduction, and PARM can be less CV
20251 qualified at this point. */
20253 static int
20254 unify (tree tparms, tree targs, tree parm, tree arg, int strict,
20255 bool explain_p)
20257 int idx;
20258 tree targ;
20259 tree tparm;
20260 int strict_in = strict;
20261 tsubst_flags_t complain = (explain_p
20262 ? tf_warning_or_error
20263 : tf_none);
20265 /* I don't think this will do the right thing with respect to types.
20266 But the only case I've seen it in so far has been array bounds, where
20267 signedness is the only information lost, and I think that will be
20268 okay. */
20269 while (CONVERT_EXPR_P (parm))
20270 parm = TREE_OPERAND (parm, 0);
20272 if (arg == error_mark_node)
20273 return unify_invalid (explain_p);
20274 if (arg == unknown_type_node
20275 || arg == init_list_type_node)
20276 /* We can't deduce anything from this, but we might get all the
20277 template args from other function args. */
20278 return unify_success (explain_p);
20280 if (parm == any_targ_node || arg == any_targ_node)
20281 return unify_success (explain_p);
20283 /* If PARM uses template parameters, then we can't bail out here,
20284 even if ARG == PARM, since we won't record unifications for the
20285 template parameters. We might need them if we're trying to
20286 figure out which of two things is more specialized. */
20287 if (arg == parm && !uses_template_parms (parm))
20288 return unify_success (explain_p);
20290 /* Handle init lists early, so the rest of the function can assume
20291 we're dealing with a type. */
20292 if (BRACE_ENCLOSED_INITIALIZER_P (arg))
20294 tree elt, elttype;
20295 unsigned i;
20296 tree orig_parm = parm;
20298 /* Replace T with std::initializer_list<T> for deduction. */
20299 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
20300 && flag_deduce_init_list)
20301 parm = listify (parm);
20303 if (!is_std_init_list (parm)
20304 && TREE_CODE (parm) != ARRAY_TYPE)
20305 /* We can only deduce from an initializer list argument if the
20306 parameter is std::initializer_list or an array; otherwise this
20307 is a non-deduced context. */
20308 return unify_success (explain_p);
20310 if (TREE_CODE (parm) == ARRAY_TYPE)
20311 elttype = TREE_TYPE (parm);
20312 else
20314 elttype = TREE_VEC_ELT (CLASSTYPE_TI_ARGS (parm), 0);
20315 /* Deduction is defined in terms of a single type, so just punt
20316 on the (bizarre) std::initializer_list<T...>. */
20317 if (PACK_EXPANSION_P (elttype))
20318 return unify_success (explain_p);
20321 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (arg), i, elt)
20323 int elt_strict = strict;
20325 if (elt == error_mark_node)
20326 return unify_invalid (explain_p);
20328 if (!BRACE_ENCLOSED_INITIALIZER_P (elt))
20330 tree type = TREE_TYPE (elt);
20331 if (type == error_mark_node)
20332 return unify_invalid (explain_p);
20333 /* It should only be possible to get here for a call. */
20334 gcc_assert (elt_strict & UNIFY_ALLOW_OUTER_LEVEL);
20335 elt_strict |= maybe_adjust_types_for_deduction
20336 (DEDUCE_CALL, &elttype, &type, elt);
20337 elt = type;
20340 RECUR_AND_CHECK_FAILURE (tparms, targs, elttype, elt, elt_strict,
20341 explain_p);
20344 if (TREE_CODE (parm) == ARRAY_TYPE
20345 && deducible_array_bound (TYPE_DOMAIN (parm)))
20347 /* Also deduce from the length of the initializer list. */
20348 tree max = size_int (CONSTRUCTOR_NELTS (arg));
20349 tree idx = compute_array_index_type (NULL_TREE, max, tf_none);
20350 if (idx == error_mark_node)
20351 return unify_invalid (explain_p);
20352 return unify_array_domain (tparms, targs, TYPE_DOMAIN (parm),
20353 idx, explain_p);
20356 /* If the std::initializer_list<T> deduction worked, replace the
20357 deduced A with std::initializer_list<A>. */
20358 if (orig_parm != parm)
20360 idx = TEMPLATE_TYPE_IDX (orig_parm);
20361 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
20362 targ = listify (targ);
20363 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = targ;
20365 return unify_success (explain_p);
20368 /* If parm and arg aren't the same kind of thing (template, type, or
20369 expression), fail early. */
20370 if (pa_kind (parm) != pa_kind (arg))
20371 return unify_invalid (explain_p);
20373 /* Immediately reject some pairs that won't unify because of
20374 cv-qualification mismatches. */
20375 if (TREE_CODE (arg) == TREE_CODE (parm)
20376 && TYPE_P (arg)
20377 /* It is the elements of the array which hold the cv quals of an array
20378 type, and the elements might be template type parms. We'll check
20379 when we recurse. */
20380 && TREE_CODE (arg) != ARRAY_TYPE
20381 /* We check the cv-qualifiers when unifying with template type
20382 parameters below. We want to allow ARG `const T' to unify with
20383 PARM `T' for example, when computing which of two templates
20384 is more specialized, for example. */
20385 && TREE_CODE (arg) != TEMPLATE_TYPE_PARM
20386 && !check_cv_quals_for_unify (strict_in, arg, parm))
20387 return unify_cv_qual_mismatch (explain_p, parm, arg);
20389 if (!(strict & UNIFY_ALLOW_OUTER_LEVEL)
20390 && TYPE_P (parm) && !CP_TYPE_CONST_P (parm))
20391 strict &= ~UNIFY_ALLOW_MORE_CV_QUAL;
20392 strict &= ~UNIFY_ALLOW_OUTER_LEVEL;
20393 strict &= ~UNIFY_ALLOW_DERIVED;
20394 strict &= ~UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
20395 strict &= ~UNIFY_ALLOW_OUTER_LESS_CV_QUAL;
20397 switch (TREE_CODE (parm))
20399 case TYPENAME_TYPE:
20400 case SCOPE_REF:
20401 case UNBOUND_CLASS_TEMPLATE:
20402 /* In a type which contains a nested-name-specifier, template
20403 argument values cannot be deduced for template parameters used
20404 within the nested-name-specifier. */
20405 return unify_success (explain_p);
20407 case TEMPLATE_TYPE_PARM:
20408 case TEMPLATE_TEMPLATE_PARM:
20409 case BOUND_TEMPLATE_TEMPLATE_PARM:
20410 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
20411 if (error_operand_p (tparm))
20412 return unify_invalid (explain_p);
20414 if (TEMPLATE_TYPE_LEVEL (parm)
20415 != template_decl_level (tparm))
20416 /* The PARM is not one we're trying to unify. Just check
20417 to see if it matches ARG. */
20419 if (TREE_CODE (arg) == TREE_CODE (parm)
20420 && (is_auto (parm) ? is_auto (arg)
20421 : same_type_p (parm, arg)))
20422 return unify_success (explain_p);
20423 else
20424 return unify_type_mismatch (explain_p, parm, arg);
20426 idx = TEMPLATE_TYPE_IDX (parm);
20427 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
20428 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, idx));
20429 if (error_operand_p (tparm))
20430 return unify_invalid (explain_p);
20432 /* Check for mixed types and values. */
20433 if ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
20434 && TREE_CODE (tparm) != TYPE_DECL)
20435 || (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
20436 && TREE_CODE (tparm) != TEMPLATE_DECL))
20437 gcc_unreachable ();
20439 if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
20441 if ((strict_in & UNIFY_ALLOW_DERIVED)
20442 && CLASS_TYPE_P (arg))
20444 /* First try to match ARG directly. */
20445 tree t = try_class_unification (tparms, targs, parm, arg,
20446 explain_p);
20447 if (!t)
20449 /* Otherwise, look for a suitable base of ARG, as below. */
20450 enum template_base_result r;
20451 r = get_template_base (tparms, targs, parm, arg,
20452 explain_p, &t);
20453 if (!t)
20454 return unify_no_common_base (explain_p, r, parm, arg);
20455 arg = t;
20458 /* ARG must be constructed from a template class or a template
20459 template parameter. */
20460 else if (TREE_CODE (arg) != BOUND_TEMPLATE_TEMPLATE_PARM
20461 && !CLASSTYPE_SPECIALIZATION_OF_PRIMARY_TEMPLATE_P (arg))
20462 return unify_template_deduction_failure (explain_p, parm, arg);
20464 /* Deduce arguments T, i from TT<T> or TT<i>. */
20465 if (unify_bound_ttp_args (tparms, targs, parm, arg, explain_p))
20466 return 1;
20468 arg = TYPE_TI_TEMPLATE (arg);
20470 /* Fall through to deduce template name. */
20473 if (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
20474 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
20476 /* Deduce template name TT from TT, TT<>, TT<T> and TT<i>. */
20478 /* Simple cases: Value already set, does match or doesn't. */
20479 if (targ != NULL_TREE && template_args_equal (targ, arg))
20480 return unify_success (explain_p);
20481 else if (targ)
20482 return unify_inconsistency (explain_p, parm, targ, arg);
20484 else
20486 /* If PARM is `const T' and ARG is only `int', we don't have
20487 a match unless we are allowing additional qualification.
20488 If ARG is `const int' and PARM is just `T' that's OK;
20489 that binds `const int' to `T'. */
20490 if (!check_cv_quals_for_unify (strict_in | UNIFY_ALLOW_LESS_CV_QUAL,
20491 arg, parm))
20492 return unify_cv_qual_mismatch (explain_p, parm, arg);
20494 /* Consider the case where ARG is `const volatile int' and
20495 PARM is `const T'. Then, T should be `volatile int'. */
20496 arg = cp_build_qualified_type_real
20497 (arg, cp_type_quals (arg) & ~cp_type_quals (parm), tf_none);
20498 if (arg == error_mark_node)
20499 return unify_invalid (explain_p);
20501 /* Simple cases: Value already set, does match or doesn't. */
20502 if (targ != NULL_TREE && same_type_p (targ, arg))
20503 return unify_success (explain_p);
20504 else if (targ)
20505 return unify_inconsistency (explain_p, parm, targ, arg);
20507 /* Make sure that ARG is not a variable-sized array. (Note
20508 that were talking about variable-sized arrays (like
20509 `int[n]'), rather than arrays of unknown size (like
20510 `int[]').) We'll get very confused by such a type since
20511 the bound of the array is not constant, and therefore
20512 not mangleable. Besides, such types are not allowed in
20513 ISO C++, so we can do as we please here. We do allow
20514 them for 'auto' deduction, since that isn't ABI-exposed. */
20515 if (!is_auto (parm) && variably_modified_type_p (arg, NULL_TREE))
20516 return unify_vla_arg (explain_p, arg);
20518 /* Strip typedefs as in convert_template_argument. */
20519 arg = canonicalize_type_argument (arg, tf_none);
20522 /* If ARG is a parameter pack or an expansion, we cannot unify
20523 against it unless PARM is also a parameter pack. */
20524 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
20525 && !template_parameter_pack_p (parm))
20526 return unify_parameter_pack_mismatch (explain_p, parm, arg);
20528 /* If the argument deduction results is a METHOD_TYPE,
20529 then there is a problem.
20530 METHOD_TYPE doesn't map to any real C++ type the result of
20531 the deduction can not be of that type. */
20532 if (TREE_CODE (arg) == METHOD_TYPE)
20533 return unify_method_type_error (explain_p, arg);
20535 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
20536 return unify_success (explain_p);
20538 case TEMPLATE_PARM_INDEX:
20539 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
20540 if (error_operand_p (tparm))
20541 return unify_invalid (explain_p);
20543 if (TEMPLATE_PARM_LEVEL (parm)
20544 != template_decl_level (tparm))
20546 /* The PARM is not one we're trying to unify. Just check
20547 to see if it matches ARG. */
20548 int result = !(TREE_CODE (arg) == TREE_CODE (parm)
20549 && cp_tree_equal (parm, arg));
20550 if (result)
20551 unify_expression_unequal (explain_p, parm, arg);
20552 return result;
20555 idx = TEMPLATE_PARM_IDX (parm);
20556 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
20558 if (targ)
20560 int x = !cp_tree_equal (targ, arg);
20561 if (x)
20562 unify_inconsistency (explain_p, parm, targ, arg);
20563 return x;
20566 if (cxx_dialect >= cxx1z
20567 /* We deduce from array bounds in try_array_deduction. */
20568 && !(strict & UNIFY_ALLOW_INTEGER)
20569 && uses_template_parms (TREE_TYPE (parm))
20570 && !type_uses_auto (TREE_TYPE (parm)))
20572 tree atype = TREE_TYPE (arg);
20573 RECUR_AND_CHECK_FAILURE (tparms, targs,
20574 TREE_TYPE (parm), atype,
20575 UNIFY_ALLOW_NONE, explain_p);
20578 /* [temp.deduct.type] If, in the declaration of a function template
20579 with a non-type template-parameter, the non-type
20580 template-parameter is used in an expression in the function
20581 parameter-list and, if the corresponding template-argument is
20582 deduced, the template-argument type shall match the type of the
20583 template-parameter exactly, except that a template-argument
20584 deduced from an array bound may be of any integral type.
20585 The non-type parameter might use already deduced type parameters. */
20586 tparm = tsubst (TREE_TYPE (parm), targs, 0, NULL_TREE);
20587 if (tree a = type_uses_auto (tparm))
20589 tparm = do_auto_deduction (tparm, arg, a, complain, adc_unify);
20590 if (tparm == error_mark_node)
20591 return 1;
20594 if (!TREE_TYPE (arg))
20595 /* Template-parameter dependent expression. Just accept it for now.
20596 It will later be processed in convert_template_argument. */
20598 else if (same_type_p (TREE_TYPE (arg), tparm))
20599 /* OK */;
20600 else if ((strict & UNIFY_ALLOW_INTEGER)
20601 && CP_INTEGRAL_TYPE_P (tparm))
20602 /* Convert the ARG to the type of PARM; the deduced non-type
20603 template argument must exactly match the types of the
20604 corresponding parameter. */
20605 arg = fold (build_nop (tparm, arg));
20606 else if (uses_template_parms (tparm))
20607 /* We haven't deduced the type of this parameter yet. Try again
20608 later. */
20609 return unify_success (explain_p);
20610 else
20611 return unify_type_mismatch (explain_p, tparm, TREE_TYPE (arg));
20613 /* If ARG is a parameter pack or an expansion, we cannot unify
20614 against it unless PARM is also a parameter pack. */
20615 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
20616 && !TEMPLATE_PARM_PARAMETER_PACK (parm))
20617 return unify_parameter_pack_mismatch (explain_p, parm, arg);
20620 bool removed_attr = false;
20621 arg = strip_typedefs_expr (arg, &removed_attr);
20623 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
20624 return unify_success (explain_p);
20626 case PTRMEM_CST:
20628 /* A pointer-to-member constant can be unified only with
20629 another constant. */
20630 if (TREE_CODE (arg) != PTRMEM_CST)
20631 return unify_ptrmem_cst_mismatch (explain_p, parm, arg);
20633 /* Just unify the class member. It would be useless (and possibly
20634 wrong, depending on the strict flags) to unify also
20635 PTRMEM_CST_CLASS, because we want to be sure that both parm and
20636 arg refer to the same variable, even if through different
20637 classes. For instance:
20639 struct A { int x; };
20640 struct B : A { };
20642 Unification of &A::x and &B::x must succeed. */
20643 return unify (tparms, targs, PTRMEM_CST_MEMBER (parm),
20644 PTRMEM_CST_MEMBER (arg), strict, explain_p);
20647 case POINTER_TYPE:
20649 if (!TYPE_PTR_P (arg))
20650 return unify_type_mismatch (explain_p, parm, arg);
20652 /* [temp.deduct.call]
20654 A can be another pointer or pointer to member type that can
20655 be converted to the deduced A via a qualification
20656 conversion (_conv.qual_).
20658 We pass down STRICT here rather than UNIFY_ALLOW_NONE.
20659 This will allow for additional cv-qualification of the
20660 pointed-to types if appropriate. */
20662 if (TREE_CODE (TREE_TYPE (arg)) == RECORD_TYPE)
20663 /* The derived-to-base conversion only persists through one
20664 level of pointers. */
20665 strict |= (strict_in & UNIFY_ALLOW_DERIVED);
20667 return unify (tparms, targs, TREE_TYPE (parm),
20668 TREE_TYPE (arg), strict, explain_p);
20671 case REFERENCE_TYPE:
20672 if (TREE_CODE (arg) != REFERENCE_TYPE)
20673 return unify_type_mismatch (explain_p, parm, arg);
20674 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
20675 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
20677 case ARRAY_TYPE:
20678 if (TREE_CODE (arg) != ARRAY_TYPE)
20679 return unify_type_mismatch (explain_p, parm, arg);
20680 if ((TYPE_DOMAIN (parm) == NULL_TREE)
20681 != (TYPE_DOMAIN (arg) == NULL_TREE))
20682 return unify_type_mismatch (explain_p, parm, arg);
20683 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
20684 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
20685 if (TYPE_DOMAIN (parm) != NULL_TREE)
20686 return unify_array_domain (tparms, targs, TYPE_DOMAIN (parm),
20687 TYPE_DOMAIN (arg), explain_p);
20688 return unify_success (explain_p);
20690 case REAL_TYPE:
20691 case COMPLEX_TYPE:
20692 case VECTOR_TYPE:
20693 case INTEGER_TYPE:
20694 case BOOLEAN_TYPE:
20695 case ENUMERAL_TYPE:
20696 case VOID_TYPE:
20697 case NULLPTR_TYPE:
20698 if (TREE_CODE (arg) != TREE_CODE (parm))
20699 return unify_type_mismatch (explain_p, parm, arg);
20701 /* We have already checked cv-qualification at the top of the
20702 function. */
20703 if (!same_type_ignoring_top_level_qualifiers_p (arg, parm))
20704 return unify_type_mismatch (explain_p, parm, arg);
20706 /* As far as unification is concerned, this wins. Later checks
20707 will invalidate it if necessary. */
20708 return unify_success (explain_p);
20710 /* Types INTEGER_CST and MINUS_EXPR can come from array bounds. */
20711 /* Type INTEGER_CST can come from ordinary constant template args. */
20712 case INTEGER_CST:
20713 while (CONVERT_EXPR_P (arg))
20714 arg = TREE_OPERAND (arg, 0);
20716 if (TREE_CODE (arg) != INTEGER_CST)
20717 return unify_template_argument_mismatch (explain_p, parm, arg);
20718 return (tree_int_cst_equal (parm, arg)
20719 ? unify_success (explain_p)
20720 : unify_template_argument_mismatch (explain_p, parm, arg));
20722 case TREE_VEC:
20724 int i, len, argslen;
20725 int parm_variadic_p = 0;
20727 if (TREE_CODE (arg) != TREE_VEC)
20728 return unify_template_argument_mismatch (explain_p, parm, arg);
20730 len = TREE_VEC_LENGTH (parm);
20731 argslen = TREE_VEC_LENGTH (arg);
20733 /* Check for pack expansions in the parameters. */
20734 for (i = 0; i < len; ++i)
20736 if (PACK_EXPANSION_P (TREE_VEC_ELT (parm, i)))
20738 if (i == len - 1)
20739 /* We can unify against something with a trailing
20740 parameter pack. */
20741 parm_variadic_p = 1;
20742 else
20743 /* [temp.deduct.type]/9: If the template argument list of
20744 P contains a pack expansion that is not the last
20745 template argument, the entire template argument list
20746 is a non-deduced context. */
20747 return unify_success (explain_p);
20751 /* If we don't have enough arguments to satisfy the parameters
20752 (not counting the pack expression at the end), or we have
20753 too many arguments for a parameter list that doesn't end in
20754 a pack expression, we can't unify. */
20755 if (parm_variadic_p
20756 ? argslen < len - parm_variadic_p
20757 : argslen != len)
20758 return unify_arity (explain_p, TREE_VEC_LENGTH (arg), len);
20760 /* Unify all of the parameters that precede the (optional)
20761 pack expression. */
20762 for (i = 0; i < len - parm_variadic_p; ++i)
20764 RECUR_AND_CHECK_FAILURE (tparms, targs,
20765 TREE_VEC_ELT (parm, i),
20766 TREE_VEC_ELT (arg, i),
20767 UNIFY_ALLOW_NONE, explain_p);
20769 if (parm_variadic_p)
20770 return unify_pack_expansion (tparms, targs, parm, arg,
20771 DEDUCE_EXACT,
20772 /*subr=*/true, explain_p);
20773 return unify_success (explain_p);
20776 case RECORD_TYPE:
20777 case UNION_TYPE:
20778 if (TREE_CODE (arg) != TREE_CODE (parm))
20779 return unify_type_mismatch (explain_p, parm, arg);
20781 if (TYPE_PTRMEMFUNC_P (parm))
20783 if (!TYPE_PTRMEMFUNC_P (arg))
20784 return unify_type_mismatch (explain_p, parm, arg);
20786 return unify (tparms, targs,
20787 TYPE_PTRMEMFUNC_FN_TYPE (parm),
20788 TYPE_PTRMEMFUNC_FN_TYPE (arg),
20789 strict, explain_p);
20791 else if (TYPE_PTRMEMFUNC_P (arg))
20792 return unify_type_mismatch (explain_p, parm, arg);
20794 if (CLASSTYPE_TEMPLATE_INFO (parm))
20796 tree t = NULL_TREE;
20798 if (strict_in & UNIFY_ALLOW_DERIVED)
20800 /* First, we try to unify the PARM and ARG directly. */
20801 t = try_class_unification (tparms, targs,
20802 parm, arg, explain_p);
20804 if (!t)
20806 /* Fallback to the special case allowed in
20807 [temp.deduct.call]:
20809 If P is a class, and P has the form
20810 template-id, then A can be a derived class of
20811 the deduced A. Likewise, if P is a pointer to
20812 a class of the form template-id, A can be a
20813 pointer to a derived class pointed to by the
20814 deduced A. */
20815 enum template_base_result r;
20816 r = get_template_base (tparms, targs, parm, arg,
20817 explain_p, &t);
20819 if (!t)
20821 /* Don't give the derived diagnostic if we're
20822 already dealing with the same template. */
20823 bool same_template
20824 = (CLASSTYPE_TEMPLATE_INFO (arg)
20825 && (CLASSTYPE_TI_TEMPLATE (parm)
20826 == CLASSTYPE_TI_TEMPLATE (arg)));
20827 return unify_no_common_base (explain_p && !same_template,
20828 r, parm, arg);
20832 else if (CLASSTYPE_TEMPLATE_INFO (arg)
20833 && (CLASSTYPE_TI_TEMPLATE (parm)
20834 == CLASSTYPE_TI_TEMPLATE (arg)))
20835 /* Perhaps PARM is something like S<U> and ARG is S<int>.
20836 Then, we should unify `int' and `U'. */
20837 t = arg;
20838 else
20839 /* There's no chance of unification succeeding. */
20840 return unify_type_mismatch (explain_p, parm, arg);
20842 return unify (tparms, targs, CLASSTYPE_TI_ARGS (parm),
20843 CLASSTYPE_TI_ARGS (t), UNIFY_ALLOW_NONE, explain_p);
20845 else if (!same_type_ignoring_top_level_qualifiers_p (parm, arg))
20846 return unify_type_mismatch (explain_p, parm, arg);
20847 return unify_success (explain_p);
20849 case METHOD_TYPE:
20850 case FUNCTION_TYPE:
20852 unsigned int nargs;
20853 tree *args;
20854 tree a;
20855 unsigned int i;
20857 if (TREE_CODE (arg) != TREE_CODE (parm))
20858 return unify_type_mismatch (explain_p, parm, arg);
20860 /* CV qualifications for methods can never be deduced, they must
20861 match exactly. We need to check them explicitly here,
20862 because type_unification_real treats them as any other
20863 cv-qualified parameter. */
20864 if (TREE_CODE (parm) == METHOD_TYPE
20865 && (!check_cv_quals_for_unify
20866 (UNIFY_ALLOW_NONE,
20867 class_of_this_parm (arg),
20868 class_of_this_parm (parm))))
20869 return unify_cv_qual_mismatch (explain_p, parm, arg);
20870 if (TREE_CODE (arg) == FUNCTION_TYPE
20871 && type_memfn_quals (parm) != type_memfn_quals (arg))
20872 return unify_cv_qual_mismatch (explain_p, parm, arg);
20873 if (type_memfn_rqual (parm) != type_memfn_rqual (arg))
20874 return unify_type_mismatch (explain_p, parm, arg);
20876 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm),
20877 TREE_TYPE (arg), UNIFY_ALLOW_NONE, explain_p);
20879 nargs = list_length (TYPE_ARG_TYPES (arg));
20880 args = XALLOCAVEC (tree, nargs);
20881 for (a = TYPE_ARG_TYPES (arg), i = 0;
20882 a != NULL_TREE && a != void_list_node;
20883 a = TREE_CHAIN (a), ++i)
20884 args[i] = TREE_VALUE (a);
20885 nargs = i;
20887 if (type_unification_real (tparms, targs, TYPE_ARG_TYPES (parm),
20888 args, nargs, 1, DEDUCE_EXACT,
20889 LOOKUP_NORMAL, NULL, explain_p))
20890 return 1;
20892 if (flag_noexcept_type)
20894 tree pspec = TYPE_RAISES_EXCEPTIONS (parm);
20895 tree aspec = canonical_eh_spec (TYPE_RAISES_EXCEPTIONS (arg));
20896 if (pspec == NULL_TREE) pspec = noexcept_false_spec;
20897 if (aspec == NULL_TREE) aspec = noexcept_false_spec;
20898 if (TREE_PURPOSE (pspec) && TREE_PURPOSE (aspec)
20899 && uses_template_parms (TREE_PURPOSE (pspec)))
20900 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_PURPOSE (pspec),
20901 TREE_PURPOSE (aspec),
20902 UNIFY_ALLOW_NONE, explain_p);
20903 else if (nothrow_spec_p (pspec) && !nothrow_spec_p (aspec))
20904 return unify_type_mismatch (explain_p, parm, arg);
20907 return 0;
20910 case OFFSET_TYPE:
20911 /* Unify a pointer to member with a pointer to member function, which
20912 deduces the type of the member as a function type. */
20913 if (TYPE_PTRMEMFUNC_P (arg))
20915 /* Check top-level cv qualifiers */
20916 if (!check_cv_quals_for_unify (UNIFY_ALLOW_NONE, arg, parm))
20917 return unify_cv_qual_mismatch (explain_p, parm, arg);
20919 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
20920 TYPE_PTRMEMFUNC_OBJECT_TYPE (arg),
20921 UNIFY_ALLOW_NONE, explain_p);
20923 /* Determine the type of the function we are unifying against. */
20924 tree fntype = static_fn_type (arg);
20926 return unify (tparms, targs, TREE_TYPE (parm), fntype, strict, explain_p);
20929 if (TREE_CODE (arg) != OFFSET_TYPE)
20930 return unify_type_mismatch (explain_p, parm, arg);
20931 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
20932 TYPE_OFFSET_BASETYPE (arg),
20933 UNIFY_ALLOW_NONE, explain_p);
20934 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
20935 strict, explain_p);
20937 case CONST_DECL:
20938 if (DECL_TEMPLATE_PARM_P (parm))
20939 return unify (tparms, targs, DECL_INITIAL (parm), arg, strict, explain_p);
20940 if (arg != scalar_constant_value (parm))
20941 return unify_template_argument_mismatch (explain_p, parm, arg);
20942 return unify_success (explain_p);
20944 case FIELD_DECL:
20945 case TEMPLATE_DECL:
20946 /* Matched cases are handled by the ARG == PARM test above. */
20947 return unify_template_argument_mismatch (explain_p, parm, arg);
20949 case VAR_DECL:
20950 /* We might get a variable as a non-type template argument in parm if the
20951 corresponding parameter is type-dependent. Make any necessary
20952 adjustments based on whether arg is a reference. */
20953 if (CONSTANT_CLASS_P (arg))
20954 parm = fold_non_dependent_expr (parm);
20955 else if (REFERENCE_REF_P (arg))
20957 tree sub = TREE_OPERAND (arg, 0);
20958 STRIP_NOPS (sub);
20959 if (TREE_CODE (sub) == ADDR_EXPR)
20960 arg = TREE_OPERAND (sub, 0);
20962 /* Now use the normal expression code to check whether they match. */
20963 goto expr;
20965 case TYPE_ARGUMENT_PACK:
20966 case NONTYPE_ARGUMENT_PACK:
20967 return unify (tparms, targs, ARGUMENT_PACK_ARGS (parm),
20968 ARGUMENT_PACK_ARGS (arg), strict, explain_p);
20970 case TYPEOF_TYPE:
20971 case DECLTYPE_TYPE:
20972 case UNDERLYING_TYPE:
20973 /* Cannot deduce anything from TYPEOF_TYPE, DECLTYPE_TYPE,
20974 or UNDERLYING_TYPE nodes. */
20975 return unify_success (explain_p);
20977 case ERROR_MARK:
20978 /* Unification fails if we hit an error node. */
20979 return unify_invalid (explain_p);
20981 case INDIRECT_REF:
20982 if (REFERENCE_REF_P (parm))
20984 bool pexp = PACK_EXPANSION_P (arg);
20985 if (pexp)
20986 arg = PACK_EXPANSION_PATTERN (arg);
20987 if (REFERENCE_REF_P (arg))
20988 arg = TREE_OPERAND (arg, 0);
20989 if (pexp)
20990 arg = make_pack_expansion (arg);
20991 return unify (tparms, targs, TREE_OPERAND (parm, 0), arg,
20992 strict, explain_p);
20994 /* FALLTHRU */
20996 default:
20997 /* An unresolved overload is a nondeduced context. */
20998 if (is_overloaded_fn (parm) || type_unknown_p (parm))
20999 return unify_success (explain_p);
21000 gcc_assert (EXPR_P (parm) || TREE_CODE (parm) == TRAIT_EXPR);
21001 expr:
21002 /* We must be looking at an expression. This can happen with
21003 something like:
21005 template <int I>
21006 void foo(S<I>, S<I + 2>);
21008 This is a "nondeduced context":
21010 [deduct.type]
21012 The nondeduced contexts are:
21014 --A type that is a template-id in which one or more of
21015 the template-arguments is an expression that references
21016 a template-parameter.
21018 In these cases, we assume deduction succeeded, but don't
21019 actually infer any unifications. */
21021 if (!uses_template_parms (parm)
21022 && !template_args_equal (parm, arg))
21023 return unify_expression_unequal (explain_p, parm, arg);
21024 else
21025 return unify_success (explain_p);
21028 #undef RECUR_AND_CHECK_FAILURE
21030 /* Note that DECL can be defined in this translation unit, if
21031 required. */
21033 static void
21034 mark_definable (tree decl)
21036 tree clone;
21037 DECL_NOT_REALLY_EXTERN (decl) = 1;
21038 FOR_EACH_CLONE (clone, decl)
21039 DECL_NOT_REALLY_EXTERN (clone) = 1;
21042 /* Called if RESULT is explicitly instantiated, or is a member of an
21043 explicitly instantiated class. */
21045 void
21046 mark_decl_instantiated (tree result, int extern_p)
21048 SET_DECL_EXPLICIT_INSTANTIATION (result);
21050 /* If this entity has already been written out, it's too late to
21051 make any modifications. */
21052 if (TREE_ASM_WRITTEN (result))
21053 return;
21055 /* For anonymous namespace we don't need to do anything. */
21056 if (decl_anon_ns_mem_p (result))
21058 gcc_assert (!TREE_PUBLIC (result));
21059 return;
21062 if (TREE_CODE (result) != FUNCTION_DECL)
21063 /* The TREE_PUBLIC flag for function declarations will have been
21064 set correctly by tsubst. */
21065 TREE_PUBLIC (result) = 1;
21067 /* This might have been set by an earlier implicit instantiation. */
21068 DECL_COMDAT (result) = 0;
21070 if (extern_p)
21071 DECL_NOT_REALLY_EXTERN (result) = 0;
21072 else
21074 mark_definable (result);
21075 mark_needed (result);
21076 /* Always make artificials weak. */
21077 if (DECL_ARTIFICIAL (result) && flag_weak)
21078 comdat_linkage (result);
21079 /* For WIN32 we also want to put explicit instantiations in
21080 linkonce sections. */
21081 else if (TREE_PUBLIC (result))
21082 maybe_make_one_only (result);
21085 /* If EXTERN_P, then this function will not be emitted -- unless
21086 followed by an explicit instantiation, at which point its linkage
21087 will be adjusted. If !EXTERN_P, then this function will be
21088 emitted here. In neither circumstance do we want
21089 import_export_decl to adjust the linkage. */
21090 DECL_INTERFACE_KNOWN (result) = 1;
21093 /* Subroutine of more_specialized_fn: check whether TARGS is missing any
21094 important template arguments. If any are missing, we check whether
21095 they're important by using error_mark_node for substituting into any
21096 args that were used for partial ordering (the ones between ARGS and END)
21097 and seeing if it bubbles up. */
21099 static bool
21100 check_undeduced_parms (tree targs, tree args, tree end)
21102 bool found = false;
21103 int i;
21104 for (i = TREE_VEC_LENGTH (targs) - 1; i >= 0; --i)
21105 if (TREE_VEC_ELT (targs, i) == NULL_TREE)
21107 found = true;
21108 TREE_VEC_ELT (targs, i) = error_mark_node;
21110 if (found)
21112 tree substed = tsubst_arg_types (args, targs, end, tf_none, NULL_TREE);
21113 if (substed == error_mark_node)
21114 return true;
21116 return false;
21119 /* Given two function templates PAT1 and PAT2, return:
21121 1 if PAT1 is more specialized than PAT2 as described in [temp.func.order].
21122 -1 if PAT2 is more specialized than PAT1.
21123 0 if neither is more specialized.
21125 LEN indicates the number of parameters we should consider
21126 (defaulted parameters should not be considered).
21128 The 1998 std underspecified function template partial ordering, and
21129 DR214 addresses the issue. We take pairs of arguments, one from
21130 each of the templates, and deduce them against each other. One of
21131 the templates will be more specialized if all the *other*
21132 template's arguments deduce against its arguments and at least one
21133 of its arguments *does* *not* deduce against the other template's
21134 corresponding argument. Deduction is done as for class templates.
21135 The arguments used in deduction have reference and top level cv
21136 qualifiers removed. Iff both arguments were originally reference
21137 types *and* deduction succeeds in both directions, an lvalue reference
21138 wins against an rvalue reference and otherwise the template
21139 with the more cv-qualified argument wins for that pairing (if
21140 neither is more cv-qualified, they both are equal). Unlike regular
21141 deduction, after all the arguments have been deduced in this way,
21142 we do *not* verify the deduced template argument values can be
21143 substituted into non-deduced contexts.
21145 The logic can be a bit confusing here, because we look at deduce1 and
21146 targs1 to see if pat2 is at least as specialized, and vice versa; if we
21147 can find template arguments for pat1 to make arg1 look like arg2, that
21148 means that arg2 is at least as specialized as arg1. */
21151 more_specialized_fn (tree pat1, tree pat2, int len)
21153 tree decl1 = DECL_TEMPLATE_RESULT (pat1);
21154 tree decl2 = DECL_TEMPLATE_RESULT (pat2);
21155 tree targs1 = make_tree_vec (DECL_NTPARMS (pat1));
21156 tree targs2 = make_tree_vec (DECL_NTPARMS (pat2));
21157 tree tparms1 = DECL_INNERMOST_TEMPLATE_PARMS (pat1);
21158 tree tparms2 = DECL_INNERMOST_TEMPLATE_PARMS (pat2);
21159 tree args1 = TYPE_ARG_TYPES (TREE_TYPE (decl1));
21160 tree args2 = TYPE_ARG_TYPES (TREE_TYPE (decl2));
21161 tree origs1, origs2;
21162 bool lose1 = false;
21163 bool lose2 = false;
21165 /* Remove the this parameter from non-static member functions. If
21166 one is a non-static member function and the other is not a static
21167 member function, remove the first parameter from that function
21168 also. This situation occurs for operator functions where we
21169 locate both a member function (with this pointer) and non-member
21170 operator (with explicit first operand). */
21171 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl1))
21173 len--; /* LEN is the number of significant arguments for DECL1 */
21174 args1 = TREE_CHAIN (args1);
21175 if (!DECL_STATIC_FUNCTION_P (decl2))
21176 args2 = TREE_CHAIN (args2);
21178 else if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl2))
21180 args2 = TREE_CHAIN (args2);
21181 if (!DECL_STATIC_FUNCTION_P (decl1))
21183 len--;
21184 args1 = TREE_CHAIN (args1);
21188 /* If only one is a conversion operator, they are unordered. */
21189 if (DECL_CONV_FN_P (decl1) != DECL_CONV_FN_P (decl2))
21190 return 0;
21192 /* Consider the return type for a conversion function */
21193 if (DECL_CONV_FN_P (decl1))
21195 args1 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl1)), args1);
21196 args2 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl2)), args2);
21197 len++;
21200 processing_template_decl++;
21202 origs1 = args1;
21203 origs2 = args2;
21205 while (len--
21206 /* Stop when an ellipsis is seen. */
21207 && args1 != NULL_TREE && args2 != NULL_TREE)
21209 tree arg1 = TREE_VALUE (args1);
21210 tree arg2 = TREE_VALUE (args2);
21211 int deduce1, deduce2;
21212 int quals1 = -1;
21213 int quals2 = -1;
21214 int ref1 = 0;
21215 int ref2 = 0;
21217 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
21218 && TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
21220 /* When both arguments are pack expansions, we need only
21221 unify the patterns themselves. */
21222 arg1 = PACK_EXPANSION_PATTERN (arg1);
21223 arg2 = PACK_EXPANSION_PATTERN (arg2);
21225 /* This is the last comparison we need to do. */
21226 len = 0;
21229 if (TREE_CODE (arg1) == REFERENCE_TYPE)
21231 ref1 = TYPE_REF_IS_RVALUE (arg1) + 1;
21232 arg1 = TREE_TYPE (arg1);
21233 quals1 = cp_type_quals (arg1);
21236 if (TREE_CODE (arg2) == REFERENCE_TYPE)
21238 ref2 = TYPE_REF_IS_RVALUE (arg2) + 1;
21239 arg2 = TREE_TYPE (arg2);
21240 quals2 = cp_type_quals (arg2);
21243 arg1 = TYPE_MAIN_VARIANT (arg1);
21244 arg2 = TYPE_MAIN_VARIANT (arg2);
21246 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION)
21248 int i, len2 = remaining_arguments (args2);
21249 tree parmvec = make_tree_vec (1);
21250 tree argvec = make_tree_vec (len2);
21251 tree ta = args2;
21253 /* Setup the parameter vector, which contains only ARG1. */
21254 TREE_VEC_ELT (parmvec, 0) = arg1;
21256 /* Setup the argument vector, which contains the remaining
21257 arguments. */
21258 for (i = 0; i < len2; i++, ta = TREE_CHAIN (ta))
21259 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
21261 deduce1 = (unify_pack_expansion (tparms1, targs1, parmvec,
21262 argvec, DEDUCE_EXACT,
21263 /*subr=*/true, /*explain_p=*/false)
21264 == 0);
21266 /* We cannot deduce in the other direction, because ARG1 is
21267 a pack expansion but ARG2 is not. */
21268 deduce2 = 0;
21270 else if (TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
21272 int i, len1 = remaining_arguments (args1);
21273 tree parmvec = make_tree_vec (1);
21274 tree argvec = make_tree_vec (len1);
21275 tree ta = args1;
21277 /* Setup the parameter vector, which contains only ARG1. */
21278 TREE_VEC_ELT (parmvec, 0) = arg2;
21280 /* Setup the argument vector, which contains the remaining
21281 arguments. */
21282 for (i = 0; i < len1; i++, ta = TREE_CHAIN (ta))
21283 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
21285 deduce2 = (unify_pack_expansion (tparms2, targs2, parmvec,
21286 argvec, DEDUCE_EXACT,
21287 /*subr=*/true, /*explain_p=*/false)
21288 == 0);
21290 /* We cannot deduce in the other direction, because ARG2 is
21291 a pack expansion but ARG1 is not.*/
21292 deduce1 = 0;
21295 else
21297 /* The normal case, where neither argument is a pack
21298 expansion. */
21299 deduce1 = (unify (tparms1, targs1, arg1, arg2,
21300 UNIFY_ALLOW_NONE, /*explain_p=*/false)
21301 == 0);
21302 deduce2 = (unify (tparms2, targs2, arg2, arg1,
21303 UNIFY_ALLOW_NONE, /*explain_p=*/false)
21304 == 0);
21307 /* If we couldn't deduce arguments for tparms1 to make arg1 match
21308 arg2, then arg2 is not as specialized as arg1. */
21309 if (!deduce1)
21310 lose2 = true;
21311 if (!deduce2)
21312 lose1 = true;
21314 /* "If, for a given type, deduction succeeds in both directions
21315 (i.e., the types are identical after the transformations above)
21316 and both P and A were reference types (before being replaced with
21317 the type referred to above):
21318 - if the type from the argument template was an lvalue reference and
21319 the type from the parameter template was not, the argument type is
21320 considered to be more specialized than the other; otherwise,
21321 - if the type from the argument template is more cv-qualified
21322 than the type from the parameter template (as described above),
21323 the argument type is considered to be more specialized than the other;
21324 otherwise,
21325 - neither type is more specialized than the other." */
21327 if (deduce1 && deduce2)
21329 if (ref1 && ref2 && ref1 != ref2)
21331 if (ref1 > ref2)
21332 lose1 = true;
21333 else
21334 lose2 = true;
21336 else if (quals1 != quals2 && quals1 >= 0 && quals2 >= 0)
21338 if ((quals1 & quals2) == quals2)
21339 lose2 = true;
21340 if ((quals1 & quals2) == quals1)
21341 lose1 = true;
21345 if (lose1 && lose2)
21346 /* We've failed to deduce something in either direction.
21347 These must be unordered. */
21348 break;
21350 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
21351 || TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
21352 /* We have already processed all of the arguments in our
21353 handing of the pack expansion type. */
21354 len = 0;
21356 args1 = TREE_CHAIN (args1);
21357 args2 = TREE_CHAIN (args2);
21360 /* "In most cases, all template parameters must have values in order for
21361 deduction to succeed, but for partial ordering purposes a template
21362 parameter may remain without a value provided it is not used in the
21363 types being used for partial ordering."
21365 Thus, if we are missing any of the targs1 we need to substitute into
21366 origs1, then pat2 is not as specialized as pat1. This can happen when
21367 there is a nondeduced context. */
21368 if (!lose2 && check_undeduced_parms (targs1, origs1, args1))
21369 lose2 = true;
21370 if (!lose1 && check_undeduced_parms (targs2, origs2, args2))
21371 lose1 = true;
21373 processing_template_decl--;
21375 /* If both deductions succeed, the partial ordering selects the more
21376 constrained template. */
21377 if (!lose1 && !lose2)
21379 tree c1 = get_constraints (DECL_TEMPLATE_RESULT (pat1));
21380 tree c2 = get_constraints (DECL_TEMPLATE_RESULT (pat2));
21381 lose1 = !subsumes_constraints (c1, c2);
21382 lose2 = !subsumes_constraints (c2, c1);
21385 /* All things being equal, if the next argument is a pack expansion
21386 for one function but not for the other, prefer the
21387 non-variadic function. FIXME this is bogus; see c++/41958. */
21388 if (lose1 == lose2
21389 && args1 && TREE_VALUE (args1)
21390 && args2 && TREE_VALUE (args2))
21392 lose1 = TREE_CODE (TREE_VALUE (args1)) == TYPE_PACK_EXPANSION;
21393 lose2 = TREE_CODE (TREE_VALUE (args2)) == TYPE_PACK_EXPANSION;
21396 if (lose1 == lose2)
21397 return 0;
21398 else if (!lose1)
21399 return 1;
21400 else
21401 return -1;
21404 /* Determine which of two partial specializations of TMPL is more
21405 specialized.
21407 PAT1 is a TREE_LIST whose TREE_VALUE is the TEMPLATE_DECL corresponding
21408 to the first partial specialization. The TREE_PURPOSE is the
21409 innermost set of template parameters for the partial
21410 specialization. PAT2 is similar, but for the second template.
21412 Return 1 if the first partial specialization is more specialized;
21413 -1 if the second is more specialized; 0 if neither is more
21414 specialized.
21416 See [temp.class.order] for information about determining which of
21417 two templates is more specialized. */
21419 static int
21420 more_specialized_partial_spec (tree tmpl, tree pat1, tree pat2)
21422 tree targs;
21423 int winner = 0;
21424 bool any_deductions = false;
21426 tree tmpl1 = TREE_VALUE (pat1);
21427 tree tmpl2 = TREE_VALUE (pat2);
21428 tree specargs1 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl1)));
21429 tree specargs2 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl2)));
21431 /* Just like what happens for functions, if we are ordering between
21432 different template specializations, we may encounter dependent
21433 types in the arguments, and we need our dependency check functions
21434 to behave correctly. */
21435 ++processing_template_decl;
21436 targs = get_partial_spec_bindings (tmpl, tmpl1, specargs2);
21437 if (targs)
21439 --winner;
21440 any_deductions = true;
21443 targs = get_partial_spec_bindings (tmpl, tmpl2, specargs1);
21444 if (targs)
21446 ++winner;
21447 any_deductions = true;
21449 --processing_template_decl;
21451 /* If both deductions succeed, the partial ordering selects the more
21452 constrained template. */
21453 if (!winner && any_deductions)
21454 return more_constrained (tmpl1, tmpl2);
21456 /* In the case of a tie where at least one of the templates
21457 has a parameter pack at the end, the template with the most
21458 non-packed parameters wins. */
21459 if (winner == 0
21460 && any_deductions
21461 && (template_args_variadic_p (TREE_PURPOSE (pat1))
21462 || template_args_variadic_p (TREE_PURPOSE (pat2))))
21464 tree args1 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat1));
21465 tree args2 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat2));
21466 int len1 = TREE_VEC_LENGTH (args1);
21467 int len2 = TREE_VEC_LENGTH (args2);
21469 /* We don't count the pack expansion at the end. */
21470 if (template_args_variadic_p (TREE_PURPOSE (pat1)))
21471 --len1;
21472 if (template_args_variadic_p (TREE_PURPOSE (pat2)))
21473 --len2;
21475 if (len1 > len2)
21476 return 1;
21477 else if (len1 < len2)
21478 return -1;
21481 return winner;
21484 /* Return the template arguments that will produce the function signature
21485 DECL from the function template FN, with the explicit template
21486 arguments EXPLICIT_ARGS. If CHECK_RETTYPE is true, the return type must
21487 also match. Return NULL_TREE if no satisfactory arguments could be
21488 found. */
21490 static tree
21491 get_bindings (tree fn, tree decl, tree explicit_args, bool check_rettype)
21493 int ntparms = DECL_NTPARMS (fn);
21494 tree targs = make_tree_vec (ntparms);
21495 tree decl_type = TREE_TYPE (decl);
21496 tree decl_arg_types;
21497 tree *args;
21498 unsigned int nargs, ix;
21499 tree arg;
21501 gcc_assert (decl != DECL_TEMPLATE_RESULT (fn));
21503 /* Never do unification on the 'this' parameter. */
21504 decl_arg_types = skip_artificial_parms_for (decl,
21505 TYPE_ARG_TYPES (decl_type));
21507 nargs = list_length (decl_arg_types);
21508 args = XALLOCAVEC (tree, nargs);
21509 for (arg = decl_arg_types, ix = 0;
21510 arg != NULL_TREE && arg != void_list_node;
21511 arg = TREE_CHAIN (arg), ++ix)
21512 args[ix] = TREE_VALUE (arg);
21514 if (fn_type_unification (fn, explicit_args, targs,
21515 args, ix,
21516 (check_rettype || DECL_CONV_FN_P (fn)
21517 ? TREE_TYPE (decl_type) : NULL_TREE),
21518 DEDUCE_EXACT, LOOKUP_NORMAL, /*explain_p=*/false,
21519 /*decltype*/false)
21520 == error_mark_node)
21521 return NULL_TREE;
21523 return targs;
21526 /* Return the innermost template arguments that, when applied to a partial
21527 specialization SPEC_TMPL of TMPL, yield the ARGS.
21529 For example, suppose we have:
21531 template <class T, class U> struct S {};
21532 template <class T> struct S<T*, int> {};
21534 Then, suppose we want to get `S<double*, int>'. SPEC_TMPL will be the
21535 partial specialization and the ARGS will be {double*, int}. The resulting
21536 vector will be {double}, indicating that `T' is bound to `double'. */
21538 static tree
21539 get_partial_spec_bindings (tree tmpl, tree spec_tmpl, tree args)
21541 tree tparms = DECL_INNERMOST_TEMPLATE_PARMS (spec_tmpl);
21542 tree spec_args
21543 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (spec_tmpl)));
21544 int i, ntparms = TREE_VEC_LENGTH (tparms);
21545 tree deduced_args;
21546 tree innermost_deduced_args;
21548 innermost_deduced_args = make_tree_vec (ntparms);
21549 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
21551 deduced_args = copy_node (args);
21552 SET_TMPL_ARGS_LEVEL (deduced_args,
21553 TMPL_ARGS_DEPTH (deduced_args),
21554 innermost_deduced_args);
21556 else
21557 deduced_args = innermost_deduced_args;
21559 bool tried_array_deduction = (cxx_dialect < cxx1z);
21560 again:
21561 if (unify (tparms, deduced_args,
21562 INNERMOST_TEMPLATE_ARGS (spec_args),
21563 INNERMOST_TEMPLATE_ARGS (args),
21564 UNIFY_ALLOW_NONE, /*explain_p=*/false))
21565 return NULL_TREE;
21567 for (i = 0; i < ntparms; ++i)
21568 if (! TREE_VEC_ELT (innermost_deduced_args, i))
21570 if (!tried_array_deduction)
21572 try_array_deduction (tparms, innermost_deduced_args,
21573 INNERMOST_TEMPLATE_ARGS (spec_args));
21574 tried_array_deduction = true;
21575 if (TREE_VEC_ELT (innermost_deduced_args, i))
21576 goto again;
21578 return NULL_TREE;
21581 tree tinst = build_tree_list (spec_tmpl, deduced_args);
21582 if (!push_tinst_level (tinst))
21584 excessive_deduction_depth = true;
21585 return NULL_TREE;
21588 /* Verify that nondeduced template arguments agree with the type
21589 obtained from argument deduction.
21591 For example:
21593 struct A { typedef int X; };
21594 template <class T, class U> struct C {};
21595 template <class T> struct C<T, typename T::X> {};
21597 Then with the instantiation `C<A, int>', we can deduce that
21598 `T' is `A' but unify () does not check whether `typename T::X'
21599 is `int'. */
21600 spec_args = tsubst (spec_args, deduced_args, tf_none, NULL_TREE);
21601 spec_args = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
21602 spec_args, tmpl,
21603 tf_none, false, false);
21605 pop_tinst_level ();
21607 if (spec_args == error_mark_node
21608 /* We only need to check the innermost arguments; the other
21609 arguments will always agree. */
21610 || !comp_template_args_porder (INNERMOST_TEMPLATE_ARGS (spec_args),
21611 INNERMOST_TEMPLATE_ARGS (args)))
21612 return NULL_TREE;
21614 /* Now that we have bindings for all of the template arguments,
21615 ensure that the arguments deduced for the template template
21616 parameters have compatible template parameter lists. See the use
21617 of template_template_parm_bindings_ok_p in fn_type_unification
21618 for more information. */
21619 if (!template_template_parm_bindings_ok_p (tparms, deduced_args))
21620 return NULL_TREE;
21622 return deduced_args;
21625 // Compare two function templates T1 and T2 by deducing bindings
21626 // from one against the other. If both deductions succeed, compare
21627 // constraints to see which is more constrained.
21628 static int
21629 more_specialized_inst (tree t1, tree t2)
21631 int fate = 0;
21632 int count = 0;
21634 if (get_bindings (t1, DECL_TEMPLATE_RESULT (t2), NULL_TREE, true))
21636 --fate;
21637 ++count;
21640 if (get_bindings (t2, DECL_TEMPLATE_RESULT (t1), NULL_TREE, true))
21642 ++fate;
21643 ++count;
21646 // If both deductions succeed, then one may be more constrained.
21647 if (count == 2 && fate == 0)
21648 fate = more_constrained (t1, t2);
21650 return fate;
21653 /* TEMPLATES is a TREE_LIST. Each TREE_VALUE is a TEMPLATE_DECL.
21654 Return the TREE_LIST node with the most specialized template, if
21655 any. If there is no most specialized template, the error_mark_node
21656 is returned.
21658 Note that this function does not look at, or modify, the
21659 TREE_PURPOSE or TREE_TYPE of any of the nodes. Since the node
21660 returned is one of the elements of INSTANTIATIONS, callers may
21661 store information in the TREE_PURPOSE or TREE_TYPE of the nodes,
21662 and retrieve it from the value returned. */
21664 tree
21665 most_specialized_instantiation (tree templates)
21667 tree fn, champ;
21669 ++processing_template_decl;
21671 champ = templates;
21672 for (fn = TREE_CHAIN (templates); fn; fn = TREE_CHAIN (fn))
21674 int fate = more_specialized_inst (TREE_VALUE (champ), TREE_VALUE (fn));
21675 if (fate == -1)
21676 champ = fn;
21677 else if (!fate)
21679 /* Equally specialized, move to next function. If there
21680 is no next function, nothing's most specialized. */
21681 fn = TREE_CHAIN (fn);
21682 champ = fn;
21683 if (!fn)
21684 break;
21688 if (champ)
21689 /* Now verify that champ is better than everything earlier in the
21690 instantiation list. */
21691 for (fn = templates; fn != champ; fn = TREE_CHAIN (fn)) {
21692 if (more_specialized_inst (TREE_VALUE (champ), TREE_VALUE (fn)) != 1)
21694 champ = NULL_TREE;
21695 break;
21699 processing_template_decl--;
21701 if (!champ)
21702 return error_mark_node;
21704 return champ;
21707 /* If DECL is a specialization of some template, return the most
21708 general such template. Otherwise, returns NULL_TREE.
21710 For example, given:
21712 template <class T> struct S { template <class U> void f(U); };
21714 if TMPL is `template <class U> void S<int>::f(U)' this will return
21715 the full template. This function will not trace past partial
21716 specializations, however. For example, given in addition:
21718 template <class T> struct S<T*> { template <class U> void f(U); };
21720 if TMPL is `template <class U> void S<int*>::f(U)' this will return
21721 `template <class T> template <class U> S<T*>::f(U)'. */
21723 tree
21724 most_general_template (tree decl)
21726 if (TREE_CODE (decl) != TEMPLATE_DECL)
21728 if (tree tinfo = get_template_info (decl))
21729 decl = TI_TEMPLATE (tinfo);
21730 /* The TI_TEMPLATE can be an IDENTIFIER_NODE for a
21731 template friend, or a FIELD_DECL for a capture pack. */
21732 if (TREE_CODE (decl) != TEMPLATE_DECL)
21733 return NULL_TREE;
21736 /* Look for more and more general templates. */
21737 while (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl))
21739 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE in some cases.
21740 (See cp-tree.h for details.) */
21741 if (TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
21742 break;
21744 if (CLASS_TYPE_P (TREE_TYPE (decl))
21745 && !TYPE_DECL_ALIAS_P (TYPE_NAME (TREE_TYPE (decl)))
21746 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
21747 break;
21749 /* Stop if we run into an explicitly specialized class template. */
21750 if (!DECL_NAMESPACE_SCOPE_P (decl)
21751 && DECL_CONTEXT (decl)
21752 && CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (decl)))
21753 break;
21755 decl = DECL_TI_TEMPLATE (decl);
21758 return decl;
21761 /* Return the most specialized of the template partial specializations
21762 which can produce TARGET, a specialization of some class or variable
21763 template. The value returned is actually a TREE_LIST; the TREE_VALUE is
21764 a TEMPLATE_DECL node corresponding to the partial specialization, while
21765 the TREE_PURPOSE is the set of template arguments that must be
21766 substituted into the template pattern in order to generate TARGET.
21768 If the choice of partial specialization is ambiguous, a diagnostic
21769 is issued, and the error_mark_node is returned. If there are no
21770 partial specializations matching TARGET, then NULL_TREE is
21771 returned, indicating that the primary template should be used. */
21773 static tree
21774 most_specialized_partial_spec (tree target, tsubst_flags_t complain)
21776 tree list = NULL_TREE;
21777 tree t;
21778 tree champ;
21779 int fate;
21780 bool ambiguous_p;
21781 tree outer_args = NULL_TREE;
21782 tree tmpl, args;
21784 if (TYPE_P (target))
21786 tree tinfo = CLASSTYPE_TEMPLATE_INFO (target);
21787 tmpl = TI_TEMPLATE (tinfo);
21788 args = TI_ARGS (tinfo);
21790 else if (TREE_CODE (target) == TEMPLATE_ID_EXPR)
21792 tmpl = TREE_OPERAND (target, 0);
21793 args = TREE_OPERAND (target, 1);
21795 else if (VAR_P (target))
21797 tree tinfo = DECL_TEMPLATE_INFO (target);
21798 tmpl = TI_TEMPLATE (tinfo);
21799 args = TI_ARGS (tinfo);
21801 else
21802 gcc_unreachable ();
21804 tree main_tmpl = most_general_template (tmpl);
21806 /* For determining which partial specialization to use, only the
21807 innermost args are interesting. */
21808 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
21810 outer_args = strip_innermost_template_args (args, 1);
21811 args = INNERMOST_TEMPLATE_ARGS (args);
21814 for (t = DECL_TEMPLATE_SPECIALIZATIONS (main_tmpl); t; t = TREE_CHAIN (t))
21816 tree spec_args;
21817 tree spec_tmpl = TREE_VALUE (t);
21819 if (outer_args)
21821 /* Substitute in the template args from the enclosing class. */
21822 ++processing_template_decl;
21823 spec_tmpl = tsubst (spec_tmpl, outer_args, tf_none, NULL_TREE);
21824 --processing_template_decl;
21827 if (spec_tmpl == error_mark_node)
21828 return error_mark_node;
21830 spec_args = get_partial_spec_bindings (tmpl, spec_tmpl, args);
21831 if (spec_args)
21833 if (outer_args)
21834 spec_args = add_to_template_args (outer_args, spec_args);
21836 /* Keep the candidate only if the constraints are satisfied,
21837 or if we're not compiling with concepts. */
21838 if (!flag_concepts
21839 || constraints_satisfied_p (spec_tmpl, spec_args))
21841 list = tree_cons (spec_args, TREE_VALUE (t), list);
21842 TREE_TYPE (list) = TREE_TYPE (t);
21847 if (! list)
21848 return NULL_TREE;
21850 ambiguous_p = false;
21851 t = list;
21852 champ = t;
21853 t = TREE_CHAIN (t);
21854 for (; t; t = TREE_CHAIN (t))
21856 fate = more_specialized_partial_spec (tmpl, champ, t);
21857 if (fate == 1)
21859 else
21861 if (fate == 0)
21863 t = TREE_CHAIN (t);
21864 if (! t)
21866 ambiguous_p = true;
21867 break;
21870 champ = t;
21874 if (!ambiguous_p)
21875 for (t = list; t && t != champ; t = TREE_CHAIN (t))
21877 fate = more_specialized_partial_spec (tmpl, champ, t);
21878 if (fate != 1)
21880 ambiguous_p = true;
21881 break;
21885 if (ambiguous_p)
21887 const char *str;
21888 char *spaces = NULL;
21889 if (!(complain & tf_error))
21890 return error_mark_node;
21891 if (TYPE_P (target))
21892 error ("ambiguous template instantiation for %q#T", target);
21893 else
21894 error ("ambiguous template instantiation for %q#D", target);
21895 str = ngettext ("candidate is:", "candidates are:", list_length (list));
21896 for (t = list; t; t = TREE_CHAIN (t))
21898 tree subst = build_tree_list (TREE_VALUE (t), TREE_PURPOSE (t));
21899 inform (DECL_SOURCE_LOCATION (TREE_VALUE (t)),
21900 "%s %#S", spaces ? spaces : str, subst);
21901 spaces = spaces ? spaces : get_spaces (str);
21903 free (spaces);
21904 return error_mark_node;
21907 return champ;
21910 /* Explicitly instantiate DECL. */
21912 void
21913 do_decl_instantiation (tree decl, tree storage)
21915 tree result = NULL_TREE;
21916 int extern_p = 0;
21918 if (!decl || decl == error_mark_node)
21919 /* An error occurred, for which grokdeclarator has already issued
21920 an appropriate message. */
21921 return;
21922 else if (! DECL_LANG_SPECIFIC (decl))
21924 error ("explicit instantiation of non-template %q#D", decl);
21925 return;
21928 bool var_templ = (DECL_TEMPLATE_INFO (decl)
21929 && variable_template_p (DECL_TI_TEMPLATE (decl)));
21931 if (VAR_P (decl) && !var_templ)
21933 /* There is an asymmetry here in the way VAR_DECLs and
21934 FUNCTION_DECLs are handled by grokdeclarator. In the case of
21935 the latter, the DECL we get back will be marked as a
21936 template instantiation, and the appropriate
21937 DECL_TEMPLATE_INFO will be set up. This does not happen for
21938 VAR_DECLs so we do the lookup here. Probably, grokdeclarator
21939 should handle VAR_DECLs as it currently handles
21940 FUNCTION_DECLs. */
21941 if (!DECL_CLASS_SCOPE_P (decl))
21943 error ("%qD is not a static data member of a class template", decl);
21944 return;
21946 result = lookup_field (DECL_CONTEXT (decl), DECL_NAME (decl), 0, false);
21947 if (!result || !VAR_P (result))
21949 error ("no matching template for %qD found", decl);
21950 return;
21952 if (!same_type_p (TREE_TYPE (result), TREE_TYPE (decl)))
21954 error ("type %qT for explicit instantiation %qD does not match "
21955 "declared type %qT", TREE_TYPE (result), decl,
21956 TREE_TYPE (decl));
21957 return;
21960 else if (TREE_CODE (decl) != FUNCTION_DECL && !var_templ)
21962 error ("explicit instantiation of %q#D", decl);
21963 return;
21965 else
21966 result = decl;
21968 /* Check for various error cases. Note that if the explicit
21969 instantiation is valid the RESULT will currently be marked as an
21970 *implicit* instantiation; DECL_EXPLICIT_INSTANTIATION is not set
21971 until we get here. */
21973 if (DECL_TEMPLATE_SPECIALIZATION (result))
21975 /* DR 259 [temp.spec].
21977 Both an explicit instantiation and a declaration of an explicit
21978 specialization shall not appear in a program unless the explicit
21979 instantiation follows a declaration of the explicit specialization.
21981 For a given set of template parameters, if an explicit
21982 instantiation of a template appears after a declaration of an
21983 explicit specialization for that template, the explicit
21984 instantiation has no effect. */
21985 return;
21987 else if (DECL_EXPLICIT_INSTANTIATION (result))
21989 /* [temp.spec]
21991 No program shall explicitly instantiate any template more
21992 than once.
21994 We check DECL_NOT_REALLY_EXTERN so as not to complain when
21995 the first instantiation was `extern' and the second is not,
21996 and EXTERN_P for the opposite case. */
21997 if (DECL_NOT_REALLY_EXTERN (result) && !extern_p)
21998 permerror (input_location, "duplicate explicit instantiation of %q#D", result);
21999 /* If an "extern" explicit instantiation follows an ordinary
22000 explicit instantiation, the template is instantiated. */
22001 if (extern_p)
22002 return;
22004 else if (!DECL_IMPLICIT_INSTANTIATION (result))
22006 error ("no matching template for %qD found", result);
22007 return;
22009 else if (!DECL_TEMPLATE_INFO (result))
22011 permerror (input_location, "explicit instantiation of non-template %q#D", result);
22012 return;
22015 if (storage == NULL_TREE)
22017 else if (storage == ridpointers[(int) RID_EXTERN])
22019 if (!in_system_header_at (input_location) && (cxx_dialect == cxx98))
22020 pedwarn (input_location, OPT_Wpedantic,
22021 "ISO C++ 1998 forbids the use of %<extern%> on explicit "
22022 "instantiations");
22023 extern_p = 1;
22025 else
22026 error ("storage class %qD applied to template instantiation", storage);
22028 check_explicit_instantiation_namespace (result);
22029 mark_decl_instantiated (result, extern_p);
22030 if (! extern_p)
22031 instantiate_decl (result, /*defer_ok=*/true,
22032 /*expl_inst_class_mem_p=*/false);
22035 static void
22036 mark_class_instantiated (tree t, int extern_p)
22038 SET_CLASSTYPE_EXPLICIT_INSTANTIATION (t);
22039 SET_CLASSTYPE_INTERFACE_KNOWN (t);
22040 CLASSTYPE_INTERFACE_ONLY (t) = extern_p;
22041 TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (t)) = extern_p;
22042 if (! extern_p)
22044 CLASSTYPE_DEBUG_REQUESTED (t) = 1;
22045 rest_of_type_compilation (t, 1);
22049 /* Called from do_type_instantiation through binding_table_foreach to
22050 do recursive instantiation for the type bound in ENTRY. */
22051 static void
22052 bt_instantiate_type_proc (binding_entry entry, void *data)
22054 tree storage = *(tree *) data;
22056 if (MAYBE_CLASS_TYPE_P (entry->type)
22057 && !uses_template_parms (CLASSTYPE_TI_ARGS (entry->type)))
22058 do_type_instantiation (TYPE_MAIN_DECL (entry->type), storage, 0);
22061 /* Called from do_type_instantiation to instantiate a member
22062 (a member function or a static member variable) of an
22063 explicitly instantiated class template. */
22064 static void
22065 instantiate_class_member (tree decl, int extern_p)
22067 mark_decl_instantiated (decl, extern_p);
22068 if (! extern_p)
22069 instantiate_decl (decl, /*defer_ok=*/true,
22070 /*expl_inst_class_mem_p=*/true);
22073 /* Perform an explicit instantiation of template class T. STORAGE, if
22074 non-null, is the RID for extern, inline or static. COMPLAIN is
22075 nonzero if this is called from the parser, zero if called recursively,
22076 since the standard is unclear (as detailed below). */
22078 void
22079 do_type_instantiation (tree t, tree storage, tsubst_flags_t complain)
22081 int extern_p = 0;
22082 int nomem_p = 0;
22083 int static_p = 0;
22084 int previous_instantiation_extern_p = 0;
22086 if (TREE_CODE (t) == TYPE_DECL)
22087 t = TREE_TYPE (t);
22089 if (! CLASS_TYPE_P (t) || ! CLASSTYPE_TEMPLATE_INFO (t))
22091 tree tmpl =
22092 (TYPE_TEMPLATE_INFO (t)) ? TYPE_TI_TEMPLATE (t) : NULL;
22093 if (tmpl)
22094 error ("explicit instantiation of non-class template %qD", tmpl);
22095 else
22096 error ("explicit instantiation of non-template type %qT", t);
22097 return;
22100 complete_type (t);
22102 if (!COMPLETE_TYPE_P (t))
22104 if (complain & tf_error)
22105 error ("explicit instantiation of %q#T before definition of template",
22107 return;
22110 if (storage != NULL_TREE)
22112 if (!in_system_header_at (input_location))
22114 if (storage == ridpointers[(int) RID_EXTERN])
22116 if (cxx_dialect == cxx98)
22117 pedwarn (input_location, OPT_Wpedantic,
22118 "ISO C++ 1998 forbids the use of %<extern%> on "
22119 "explicit instantiations");
22121 else
22122 pedwarn (input_location, OPT_Wpedantic,
22123 "ISO C++ forbids the use of %qE"
22124 " on explicit instantiations", storage);
22127 if (storage == ridpointers[(int) RID_INLINE])
22128 nomem_p = 1;
22129 else if (storage == ridpointers[(int) RID_EXTERN])
22130 extern_p = 1;
22131 else if (storage == ridpointers[(int) RID_STATIC])
22132 static_p = 1;
22133 else
22135 error ("storage class %qD applied to template instantiation",
22136 storage);
22137 extern_p = 0;
22141 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (t))
22143 /* DR 259 [temp.spec].
22145 Both an explicit instantiation and a declaration of an explicit
22146 specialization shall not appear in a program unless the explicit
22147 instantiation follows a declaration of the explicit specialization.
22149 For a given set of template parameters, if an explicit
22150 instantiation of a template appears after a declaration of an
22151 explicit specialization for that template, the explicit
22152 instantiation has no effect. */
22153 return;
22155 else if (CLASSTYPE_EXPLICIT_INSTANTIATION (t))
22157 /* [temp.spec]
22159 No program shall explicitly instantiate any template more
22160 than once.
22162 If PREVIOUS_INSTANTIATION_EXTERN_P, then the first explicit
22163 instantiation was `extern'. If EXTERN_P then the second is.
22164 These cases are OK. */
22165 previous_instantiation_extern_p = CLASSTYPE_INTERFACE_ONLY (t);
22167 if (!previous_instantiation_extern_p && !extern_p
22168 && (complain & tf_error))
22169 permerror (input_location, "duplicate explicit instantiation of %q#T", t);
22171 /* If we've already instantiated the template, just return now. */
22172 if (!CLASSTYPE_INTERFACE_ONLY (t))
22173 return;
22176 check_explicit_instantiation_namespace (TYPE_NAME (t));
22177 mark_class_instantiated (t, extern_p);
22179 if (nomem_p)
22180 return;
22183 tree tmp;
22185 /* In contrast to implicit instantiation, where only the
22186 declarations, and not the definitions, of members are
22187 instantiated, we have here:
22189 [temp.explicit]
22191 The explicit instantiation of a class template specialization
22192 implies the instantiation of all of its members not
22193 previously explicitly specialized in the translation unit
22194 containing the explicit instantiation.
22196 Of course, we can't instantiate member template classes, since
22197 we don't have any arguments for them. Note that the standard
22198 is unclear on whether the instantiation of the members are
22199 *explicit* instantiations or not. However, the most natural
22200 interpretation is that it should be an explicit instantiation. */
22202 if (! static_p)
22203 for (tmp = TYPE_METHODS (t); tmp; tmp = DECL_CHAIN (tmp))
22204 if (TREE_CODE (tmp) == FUNCTION_DECL
22205 && DECL_TEMPLATE_INSTANTIATION (tmp)
22206 && user_provided_p (tmp))
22207 instantiate_class_member (tmp, extern_p);
22209 for (tmp = TYPE_FIELDS (t); tmp; tmp = DECL_CHAIN (tmp))
22210 if (VAR_P (tmp) && DECL_TEMPLATE_INSTANTIATION (tmp))
22211 instantiate_class_member (tmp, extern_p);
22213 if (CLASSTYPE_NESTED_UTDS (t))
22214 binding_table_foreach (CLASSTYPE_NESTED_UTDS (t),
22215 bt_instantiate_type_proc, &storage);
22219 /* Given a function DECL, which is a specialization of TMPL, modify
22220 DECL to be a re-instantiation of TMPL with the same template
22221 arguments. TMPL should be the template into which tsubst'ing
22222 should occur for DECL, not the most general template.
22224 One reason for doing this is a scenario like this:
22226 template <class T>
22227 void f(const T&, int i);
22229 void g() { f(3, 7); }
22231 template <class T>
22232 void f(const T& t, const int i) { }
22234 Note that when the template is first instantiated, with
22235 instantiate_template, the resulting DECL will have no name for the
22236 first parameter, and the wrong type for the second. So, when we go
22237 to instantiate the DECL, we regenerate it. */
22239 static void
22240 regenerate_decl_from_template (tree decl, tree tmpl, tree args)
22242 /* The arguments used to instantiate DECL, from the most general
22243 template. */
22244 tree code_pattern;
22246 code_pattern = DECL_TEMPLATE_RESULT (tmpl);
22248 /* Make sure that we can see identifiers, and compute access
22249 correctly. */
22250 push_access_scope (decl);
22252 if (TREE_CODE (decl) == FUNCTION_DECL)
22254 tree decl_parm;
22255 tree pattern_parm;
22256 tree specs;
22257 int args_depth;
22258 int parms_depth;
22260 args_depth = TMPL_ARGS_DEPTH (args);
22261 parms_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
22262 if (args_depth > parms_depth)
22263 args = get_innermost_template_args (args, parms_depth);
22265 specs = tsubst_exception_specification (TREE_TYPE (code_pattern),
22266 args, tf_error, NULL_TREE,
22267 /*defer_ok*/false);
22268 if (specs && specs != error_mark_node)
22269 TREE_TYPE (decl) = build_exception_variant (TREE_TYPE (decl),
22270 specs);
22272 /* Merge parameter declarations. */
22273 decl_parm = skip_artificial_parms_for (decl,
22274 DECL_ARGUMENTS (decl));
22275 pattern_parm
22276 = skip_artificial_parms_for (code_pattern,
22277 DECL_ARGUMENTS (code_pattern));
22278 while (decl_parm && !DECL_PACK_P (pattern_parm))
22280 tree parm_type;
22281 tree attributes;
22283 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
22284 DECL_NAME (decl_parm) = DECL_NAME (pattern_parm);
22285 parm_type = tsubst (TREE_TYPE (pattern_parm), args, tf_error,
22286 NULL_TREE);
22287 parm_type = type_decays_to (parm_type);
22288 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
22289 TREE_TYPE (decl_parm) = parm_type;
22290 attributes = DECL_ATTRIBUTES (pattern_parm);
22291 if (DECL_ATTRIBUTES (decl_parm) != attributes)
22293 DECL_ATTRIBUTES (decl_parm) = attributes;
22294 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
22296 decl_parm = DECL_CHAIN (decl_parm);
22297 pattern_parm = DECL_CHAIN (pattern_parm);
22299 /* Merge any parameters that match with the function parameter
22300 pack. */
22301 if (pattern_parm && DECL_PACK_P (pattern_parm))
22303 int i, len;
22304 tree expanded_types;
22305 /* Expand the TYPE_PACK_EXPANSION that provides the types for
22306 the parameters in this function parameter pack. */
22307 expanded_types = tsubst_pack_expansion (TREE_TYPE (pattern_parm),
22308 args, tf_error, NULL_TREE);
22309 len = TREE_VEC_LENGTH (expanded_types);
22310 for (i = 0; i < len; i++)
22312 tree parm_type;
22313 tree attributes;
22315 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
22316 /* Rename the parameter to include the index. */
22317 DECL_NAME (decl_parm) =
22318 make_ith_pack_parameter_name (DECL_NAME (pattern_parm), i);
22319 parm_type = TREE_VEC_ELT (expanded_types, i);
22320 parm_type = type_decays_to (parm_type);
22321 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
22322 TREE_TYPE (decl_parm) = parm_type;
22323 attributes = DECL_ATTRIBUTES (pattern_parm);
22324 if (DECL_ATTRIBUTES (decl_parm) != attributes)
22326 DECL_ATTRIBUTES (decl_parm) = attributes;
22327 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
22329 decl_parm = DECL_CHAIN (decl_parm);
22332 /* Merge additional specifiers from the CODE_PATTERN. */
22333 if (DECL_DECLARED_INLINE_P (code_pattern)
22334 && !DECL_DECLARED_INLINE_P (decl))
22335 DECL_DECLARED_INLINE_P (decl) = 1;
22337 else if (VAR_P (decl))
22339 DECL_INITIAL (decl) =
22340 tsubst_expr (DECL_INITIAL (code_pattern), args,
22341 tf_error, DECL_TI_TEMPLATE (decl),
22342 /*integral_constant_expression_p=*/false);
22343 if (VAR_HAD_UNKNOWN_BOUND (decl))
22344 TREE_TYPE (decl) = tsubst (TREE_TYPE (code_pattern), args,
22345 tf_error, DECL_TI_TEMPLATE (decl));
22347 else
22348 gcc_unreachable ();
22350 pop_access_scope (decl);
22353 /* Return the TEMPLATE_DECL into which DECL_TI_ARGS(DECL) should be
22354 substituted to get DECL. */
22356 tree
22357 template_for_substitution (tree decl)
22359 tree tmpl = DECL_TI_TEMPLATE (decl);
22361 /* Set TMPL to the template whose DECL_TEMPLATE_RESULT is the pattern
22362 for the instantiation. This is not always the most general
22363 template. Consider, for example:
22365 template <class T>
22366 struct S { template <class U> void f();
22367 template <> void f<int>(); };
22369 and an instantiation of S<double>::f<int>. We want TD to be the
22370 specialization S<T>::f<int>, not the more general S<T>::f<U>. */
22371 while (/* An instantiation cannot have a definition, so we need a
22372 more general template. */
22373 DECL_TEMPLATE_INSTANTIATION (tmpl)
22374 /* We must also deal with friend templates. Given:
22376 template <class T> struct S {
22377 template <class U> friend void f() {};
22380 S<int>::f<U> say, is not an instantiation of S<T>::f<U>,
22381 so far as the language is concerned, but that's still
22382 where we get the pattern for the instantiation from. On
22383 other hand, if the definition comes outside the class, say:
22385 template <class T> struct S {
22386 template <class U> friend void f();
22388 template <class U> friend void f() {}
22390 we don't need to look any further. That's what the check for
22391 DECL_INITIAL is for. */
22392 || (TREE_CODE (decl) == FUNCTION_DECL
22393 && DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (tmpl)
22394 && !DECL_INITIAL (DECL_TEMPLATE_RESULT (tmpl))))
22396 /* The present template, TD, should not be a definition. If it
22397 were a definition, we should be using it! Note that we
22398 cannot restructure the loop to just keep going until we find
22399 a template with a definition, since that might go too far if
22400 a specialization was declared, but not defined. */
22402 /* Fetch the more general template. */
22403 tmpl = DECL_TI_TEMPLATE (tmpl);
22406 return tmpl;
22409 /* Returns true if we need to instantiate this template instance even if we
22410 know we aren't going to emit it. */
22412 bool
22413 always_instantiate_p (tree decl)
22415 /* We always instantiate inline functions so that we can inline them. An
22416 explicit instantiation declaration prohibits implicit instantiation of
22417 non-inline functions. With high levels of optimization, we would
22418 normally inline non-inline functions -- but we're not allowed to do
22419 that for "extern template" functions. Therefore, we check
22420 DECL_DECLARED_INLINE_P, rather than possibly_inlined_p. */
22421 return ((TREE_CODE (decl) == FUNCTION_DECL
22422 && (DECL_DECLARED_INLINE_P (decl)
22423 || type_uses_auto (TREE_TYPE (TREE_TYPE (decl)))))
22424 /* And we need to instantiate static data members so that
22425 their initializers are available in integral constant
22426 expressions. */
22427 || (VAR_P (decl)
22428 && decl_maybe_constant_var_p (decl)));
22431 /* If FN has a noexcept-specifier that hasn't been instantiated yet,
22432 instantiate it now, modifying TREE_TYPE (fn). */
22434 void
22435 maybe_instantiate_noexcept (tree fn)
22437 tree fntype, spec, noex, clone;
22439 /* Don't instantiate a noexcept-specification from template context. */
22440 if (processing_template_decl)
22441 return;
22443 if (DECL_CLONED_FUNCTION_P (fn))
22444 fn = DECL_CLONED_FUNCTION (fn);
22445 fntype = TREE_TYPE (fn);
22446 spec = TYPE_RAISES_EXCEPTIONS (fntype);
22448 if (!spec || !TREE_PURPOSE (spec))
22449 return;
22451 noex = TREE_PURPOSE (spec);
22453 if (TREE_CODE (noex) == DEFERRED_NOEXCEPT)
22455 if (DEFERRED_NOEXCEPT_PATTERN (noex) == NULL_TREE)
22456 spec = get_defaulted_eh_spec (fn);
22457 else if (push_tinst_level (fn))
22459 push_access_scope (fn);
22460 push_deferring_access_checks (dk_no_deferred);
22461 input_location = DECL_SOURCE_LOCATION (fn);
22462 noex = tsubst_copy_and_build (DEFERRED_NOEXCEPT_PATTERN (noex),
22463 DEFERRED_NOEXCEPT_ARGS (noex),
22464 tf_warning_or_error, fn,
22465 /*function_p=*/false,
22466 /*integral_constant_expression_p=*/true);
22467 pop_deferring_access_checks ();
22468 pop_access_scope (fn);
22469 pop_tinst_level ();
22470 spec = build_noexcept_spec (noex, tf_warning_or_error);
22471 if (spec == error_mark_node)
22472 spec = noexcept_false_spec;
22474 else
22475 spec = noexcept_false_spec;
22477 TREE_TYPE (fn) = build_exception_variant (fntype, spec);
22480 FOR_EACH_CLONE (clone, fn)
22482 if (TREE_TYPE (clone) == fntype)
22483 TREE_TYPE (clone) = TREE_TYPE (fn);
22484 else
22485 TREE_TYPE (clone) = build_exception_variant (TREE_TYPE (clone), spec);
22489 /* Produce the definition of D, a _DECL generated from a template. If
22490 DEFER_OK is true, then we don't have to actually do the
22491 instantiation now; we just have to do it sometime. Normally it is
22492 an error if this is an explicit instantiation but D is undefined.
22493 EXPL_INST_CLASS_MEM_P is true iff D is a member of an explicitly
22494 instantiated class template. */
22496 tree
22497 instantiate_decl (tree d, bool defer_ok, bool expl_inst_class_mem_p)
22499 tree tmpl = DECL_TI_TEMPLATE (d);
22500 tree gen_args;
22501 tree args;
22502 tree td;
22503 tree code_pattern;
22504 tree spec;
22505 tree gen_tmpl;
22506 bool pattern_defined;
22507 location_t saved_loc = input_location;
22508 int saved_unevaluated_operand = cp_unevaluated_operand;
22509 int saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
22510 bool external_p;
22511 bool deleted_p;
22513 /* This function should only be used to instantiate templates for
22514 functions and static member variables. */
22515 gcc_assert (VAR_OR_FUNCTION_DECL_P (d));
22517 /* A concept is never instantiated. */
22518 gcc_assert (!DECL_DECLARED_CONCEPT_P (d));
22520 /* Variables are never deferred; if instantiation is required, they
22521 are instantiated right away. That allows for better code in the
22522 case that an expression refers to the value of the variable --
22523 if the variable has a constant value the referring expression can
22524 take advantage of that fact. */
22525 if (VAR_P (d))
22526 defer_ok = false;
22528 /* Don't instantiate cloned functions. Instead, instantiate the
22529 functions they cloned. */
22530 if (TREE_CODE (d) == FUNCTION_DECL && DECL_CLONED_FUNCTION_P (d))
22531 d = DECL_CLONED_FUNCTION (d);
22533 if (DECL_TEMPLATE_INSTANTIATED (d)
22534 || (TREE_CODE (d) == FUNCTION_DECL
22535 && DECL_DEFAULTED_FN (d) && DECL_INITIAL (d))
22536 || DECL_TEMPLATE_SPECIALIZATION (d))
22537 /* D has already been instantiated or explicitly specialized, so
22538 there's nothing for us to do here.
22540 It might seem reasonable to check whether or not D is an explicit
22541 instantiation, and, if so, stop here. But when an explicit
22542 instantiation is deferred until the end of the compilation,
22543 DECL_EXPLICIT_INSTANTIATION is set, even though we still need to do
22544 the instantiation. */
22545 return d;
22547 /* Check to see whether we know that this template will be
22548 instantiated in some other file, as with "extern template"
22549 extension. */
22550 external_p = (DECL_INTERFACE_KNOWN (d) && DECL_REALLY_EXTERN (d));
22552 /* In general, we do not instantiate such templates. */
22553 if (external_p && !always_instantiate_p (d))
22554 return d;
22556 gen_tmpl = most_general_template (tmpl);
22557 gen_args = DECL_TI_ARGS (d);
22559 if (tmpl != gen_tmpl)
22560 /* We should already have the extra args. */
22561 gcc_assert (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (gen_tmpl))
22562 == TMPL_ARGS_DEPTH (gen_args));
22563 /* And what's in the hash table should match D. */
22564 gcc_assert ((spec = retrieve_specialization (gen_tmpl, gen_args, 0)) == d
22565 || spec == NULL_TREE);
22567 /* This needs to happen before any tsubsting. */
22568 if (! push_tinst_level (d))
22569 return d;
22571 timevar_push (TV_TEMPLATE_INST);
22573 /* Set TD to the template whose DECL_TEMPLATE_RESULT is the pattern
22574 for the instantiation. */
22575 td = template_for_substitution (d);
22576 args = gen_args;
22578 if (VAR_P (d))
22580 /* Look up an explicit specialization, if any. */
22581 tree tid = lookup_template_variable (gen_tmpl, gen_args);
22582 tree elt = most_specialized_partial_spec (tid, tf_warning_or_error);
22583 if (elt && elt != error_mark_node)
22585 td = TREE_VALUE (elt);
22586 args = TREE_PURPOSE (elt);
22590 code_pattern = DECL_TEMPLATE_RESULT (td);
22592 /* We should never be trying to instantiate a member of a class
22593 template or partial specialization. */
22594 gcc_assert (d != code_pattern);
22596 if ((DECL_NAMESPACE_SCOPE_P (d) && !DECL_INITIALIZED_IN_CLASS_P (d))
22597 || DECL_TEMPLATE_SPECIALIZATION (td))
22598 /* In the case of a friend template whose definition is provided
22599 outside the class, we may have too many arguments. Drop the
22600 ones we don't need. The same is true for specializations. */
22601 args = get_innermost_template_args
22602 (args, TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (td)));
22604 if (TREE_CODE (d) == FUNCTION_DECL)
22606 deleted_p = DECL_DELETED_FN (code_pattern);
22607 pattern_defined = ((DECL_SAVED_TREE (code_pattern) != NULL_TREE
22608 && DECL_INITIAL (code_pattern) != error_mark_node)
22609 || DECL_DEFAULTED_OUTSIDE_CLASS_P (code_pattern)
22610 || deleted_p);
22612 else
22614 deleted_p = false;
22615 if (DECL_CLASS_SCOPE_P (code_pattern))
22616 pattern_defined = (! DECL_IN_AGGR_P (code_pattern)
22617 || DECL_INLINE_VAR_P (code_pattern));
22618 else
22619 pattern_defined = ! DECL_EXTERNAL (code_pattern);
22622 /* We may be in the middle of deferred access check. Disable it now. */
22623 push_deferring_access_checks (dk_no_deferred);
22625 /* Unless an explicit instantiation directive has already determined
22626 the linkage of D, remember that a definition is available for
22627 this entity. */
22628 if (pattern_defined
22629 && !DECL_INTERFACE_KNOWN (d)
22630 && !DECL_NOT_REALLY_EXTERN (d))
22631 mark_definable (d);
22633 DECL_SOURCE_LOCATION (td) = DECL_SOURCE_LOCATION (code_pattern);
22634 DECL_SOURCE_LOCATION (d) = DECL_SOURCE_LOCATION (code_pattern);
22635 input_location = DECL_SOURCE_LOCATION (d);
22637 /* If D is a member of an explicitly instantiated class template,
22638 and no definition is available, treat it like an implicit
22639 instantiation. */
22640 if (!pattern_defined && expl_inst_class_mem_p
22641 && DECL_EXPLICIT_INSTANTIATION (d))
22643 /* Leave linkage flags alone on instantiations with anonymous
22644 visibility. */
22645 if (TREE_PUBLIC (d))
22647 DECL_NOT_REALLY_EXTERN (d) = 0;
22648 DECL_INTERFACE_KNOWN (d) = 0;
22650 SET_DECL_IMPLICIT_INSTANTIATION (d);
22653 /* Defer all other templates, unless we have been explicitly
22654 forbidden from doing so. */
22655 if (/* If there is no definition, we cannot instantiate the
22656 template. */
22657 ! pattern_defined
22658 /* If it's OK to postpone instantiation, do so. */
22659 || defer_ok
22660 /* If this is a static data member that will be defined
22661 elsewhere, we don't want to instantiate the entire data
22662 member, but we do want to instantiate the initializer so that
22663 we can substitute that elsewhere. */
22664 || (external_p && VAR_P (d))
22665 /* Handle here a deleted function too, avoid generating
22666 its body (c++/61080). */
22667 || deleted_p)
22669 /* The definition of the static data member is now required so
22670 we must substitute the initializer. */
22671 if (VAR_P (d)
22672 && !DECL_INITIAL (d)
22673 && DECL_INITIAL (code_pattern))
22675 tree ns;
22676 tree init;
22677 bool const_init = false;
22678 bool enter_context = DECL_CLASS_SCOPE_P (d);
22680 ns = decl_namespace_context (d);
22681 push_nested_namespace (ns);
22682 if (enter_context)
22683 push_nested_class (DECL_CONTEXT (d));
22684 init = tsubst_expr (DECL_INITIAL (code_pattern),
22685 args,
22686 tf_warning_or_error, NULL_TREE,
22687 /*integral_constant_expression_p=*/false);
22688 /* If instantiating the initializer involved instantiating this
22689 again, don't call cp_finish_decl twice. */
22690 if (!DECL_INITIAL (d))
22692 /* Make sure the initializer is still constant, in case of
22693 circular dependency (template/instantiate6.C). */
22694 const_init
22695 = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
22696 cp_finish_decl (d, init, /*init_const_expr_p=*/const_init,
22697 /*asmspec_tree=*/NULL_TREE,
22698 LOOKUP_ONLYCONVERTING);
22700 if (enter_context)
22701 pop_nested_class ();
22702 pop_nested_namespace (ns);
22705 /* We restore the source position here because it's used by
22706 add_pending_template. */
22707 input_location = saved_loc;
22709 if (at_eof && !pattern_defined
22710 && DECL_EXPLICIT_INSTANTIATION (d)
22711 && DECL_NOT_REALLY_EXTERN (d))
22712 /* [temp.explicit]
22714 The definition of a non-exported function template, a
22715 non-exported member function template, or a non-exported
22716 member function or static data member of a class template
22717 shall be present in every translation unit in which it is
22718 explicitly instantiated. */
22719 permerror (input_location, "explicit instantiation of %qD "
22720 "but no definition available", d);
22722 /* If we're in unevaluated context, we just wanted to get the
22723 constant value; this isn't an odr use, so don't queue
22724 a full instantiation. */
22725 if (cp_unevaluated_operand != 0)
22726 goto out;
22727 /* ??? Historically, we have instantiated inline functions, even
22728 when marked as "extern template". */
22729 if (!(external_p && VAR_P (d)))
22730 add_pending_template (d);
22731 goto out;
22733 /* Tell the repository that D is available in this translation unit
22734 -- and see if it is supposed to be instantiated here. */
22735 if (TREE_PUBLIC (d) && !DECL_REALLY_EXTERN (d) && !repo_emit_p (d))
22737 /* In a PCH file, despite the fact that the repository hasn't
22738 requested instantiation in the PCH it is still possible that
22739 an instantiation will be required in a file that includes the
22740 PCH. */
22741 if (pch_file)
22742 add_pending_template (d);
22743 /* Instantiate inline functions so that the inliner can do its
22744 job, even though we'll not be emitting a copy of this
22745 function. */
22746 if (!(TREE_CODE (d) == FUNCTION_DECL && possibly_inlined_p (d)))
22747 goto out;
22750 bool push_to_top, nested;
22751 tree fn_context;
22752 fn_context = decl_function_context (d);
22753 nested = current_function_decl != NULL_TREE;
22754 push_to_top = !(nested && fn_context == current_function_decl);
22756 vec<tree> omp_privatization_save;
22757 if (nested)
22758 save_omp_privatization_clauses (omp_privatization_save);
22760 if (push_to_top)
22761 push_to_top_level ();
22762 else
22764 push_function_context ();
22765 cp_unevaluated_operand = 0;
22766 c_inhibit_evaluation_warnings = 0;
22769 /* Mark D as instantiated so that recursive calls to
22770 instantiate_decl do not try to instantiate it again. */
22771 DECL_TEMPLATE_INSTANTIATED (d) = 1;
22773 /* Regenerate the declaration in case the template has been modified
22774 by a subsequent redeclaration. */
22775 regenerate_decl_from_template (d, td, args);
22777 /* We already set the file and line above. Reset them now in case
22778 they changed as a result of calling regenerate_decl_from_template. */
22779 input_location = DECL_SOURCE_LOCATION (d);
22781 if (VAR_P (d))
22783 tree init;
22784 bool const_init = false;
22786 /* Clear out DECL_RTL; whatever was there before may not be right
22787 since we've reset the type of the declaration. */
22788 SET_DECL_RTL (d, NULL);
22789 DECL_IN_AGGR_P (d) = 0;
22791 /* The initializer is placed in DECL_INITIAL by
22792 regenerate_decl_from_template so we don't need to
22793 push/pop_access_scope again here. Pull it out so that
22794 cp_finish_decl can process it. */
22795 init = DECL_INITIAL (d);
22796 DECL_INITIAL (d) = NULL_TREE;
22797 DECL_INITIALIZED_P (d) = 0;
22799 /* Clear DECL_EXTERNAL so that cp_finish_decl will process the
22800 initializer. That function will defer actual emission until
22801 we have a chance to determine linkage. */
22802 DECL_EXTERNAL (d) = 0;
22804 /* Enter the scope of D so that access-checking works correctly. */
22805 bool enter_context = DECL_CLASS_SCOPE_P (d);
22806 if (enter_context)
22807 push_nested_class (DECL_CONTEXT (d));
22809 const_init = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
22810 cp_finish_decl (d, init, const_init, NULL_TREE, 0);
22812 if (enter_context)
22813 pop_nested_class ();
22815 if (variable_template_p (gen_tmpl))
22816 note_variable_template_instantiation (d);
22818 else if (TREE_CODE (d) == FUNCTION_DECL && DECL_DEFAULTED_FN (code_pattern))
22819 synthesize_method (d);
22820 else if (TREE_CODE (d) == FUNCTION_DECL)
22822 hash_map<tree, tree> *saved_local_specializations;
22823 tree tmpl_parm;
22824 tree spec_parm;
22825 tree block = NULL_TREE;
22826 tree lambda_ctx = NULL_TREE;
22828 /* Save away the current list, in case we are instantiating one
22829 template from within the body of another. */
22830 saved_local_specializations = local_specializations;
22832 /* Set up the list of local specializations. */
22833 local_specializations = new hash_map<tree, tree>;
22835 /* Set up context. */
22836 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern)
22837 && TREE_CODE (DECL_CONTEXT (code_pattern)) == FUNCTION_DECL)
22838 block = push_stmt_list ();
22839 else
22841 if (push_to_top && LAMBDA_FUNCTION_P (d))
22843 /* When instantiating a lambda's templated function
22844 operator, we need to push the non-lambda class scope
22845 of the lambda itself so that the nested function
22846 stack is sufficiently correct to deal with this
22847 capture. */
22848 lambda_ctx = DECL_CONTEXT (d);
22850 lambda_ctx = decl_type_context (TYPE_NAME (lambda_ctx));
22851 while (lambda_ctx && LAMBDA_TYPE_P (lambda_ctx));
22852 if (lambda_ctx)
22853 push_nested_class (lambda_ctx);
22855 start_preparsed_function (d, NULL_TREE, SF_PRE_PARSED);
22858 /* Some typedefs referenced from within the template code need to be
22859 access checked at template instantiation time, i.e now. These
22860 types were added to the template at parsing time. Let's get those
22861 and perform the access checks then. */
22862 perform_typedefs_access_check (DECL_TEMPLATE_RESULT (td),
22863 args);
22865 /* Create substitution entries for the parameters. */
22866 tmpl_parm = DECL_ARGUMENTS (code_pattern);
22867 spec_parm = DECL_ARGUMENTS (d);
22868 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (d))
22870 register_local_specialization (spec_parm, tmpl_parm);
22871 spec_parm = skip_artificial_parms_for (d, spec_parm);
22872 tmpl_parm = skip_artificial_parms_for (code_pattern, tmpl_parm);
22874 for (; tmpl_parm; tmpl_parm = DECL_CHAIN (tmpl_parm))
22876 if (!DECL_PACK_P (tmpl_parm))
22878 register_local_specialization (spec_parm, tmpl_parm);
22879 spec_parm = DECL_CHAIN (spec_parm);
22881 else
22883 /* Register the (value) argument pack as a specialization of
22884 TMPL_PARM, then move on. */
22885 tree argpack = extract_fnparm_pack (tmpl_parm, &spec_parm);
22886 register_local_specialization (argpack, tmpl_parm);
22889 gcc_assert (!spec_parm);
22891 /* Substitute into the body of the function. */
22892 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern))
22893 tsubst_omp_udr (DECL_SAVED_TREE (code_pattern), args,
22894 tf_warning_or_error, tmpl);
22895 else
22897 tsubst_expr (DECL_SAVED_TREE (code_pattern), args,
22898 tf_warning_or_error, tmpl,
22899 /*integral_constant_expression_p=*/false);
22901 /* Set the current input_location to the end of the function
22902 so that finish_function knows where we are. */
22903 input_location
22904 = DECL_STRUCT_FUNCTION (code_pattern)->function_end_locus;
22906 /* Remember if we saw an infinite loop in the template. */
22907 current_function_infinite_loop
22908 = DECL_STRUCT_FUNCTION (code_pattern)->language->infinite_loop;
22911 /* We don't need the local specializations any more. */
22912 delete local_specializations;
22913 local_specializations = saved_local_specializations;
22915 /* Finish the function. */
22916 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern)
22917 && TREE_CODE (DECL_CONTEXT (code_pattern)) == FUNCTION_DECL)
22918 DECL_SAVED_TREE (d) = pop_stmt_list (block);
22919 else
22921 d = finish_function (0);
22922 expand_or_defer_fn (d);
22924 if (lambda_ctx)
22925 pop_nested_class ();
22927 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern))
22928 cp_check_omp_declare_reduction (d);
22931 /* We're not deferring instantiation any more. */
22932 TI_PENDING_TEMPLATE_FLAG (DECL_TEMPLATE_INFO (d)) = 0;
22934 if (push_to_top)
22935 pop_from_top_level ();
22936 else
22937 pop_function_context ();
22939 if (nested)
22940 restore_omp_privatization_clauses (omp_privatization_save);
22942 out:
22943 pop_deferring_access_checks ();
22944 timevar_pop (TV_TEMPLATE_INST);
22945 pop_tinst_level ();
22946 input_location = saved_loc;
22947 cp_unevaluated_operand = saved_unevaluated_operand;
22948 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
22950 return d;
22953 /* Run through the list of templates that we wish we could
22954 instantiate, and instantiate any we can. RETRIES is the
22955 number of times we retry pending template instantiation. */
22957 void
22958 instantiate_pending_templates (int retries)
22960 int reconsider;
22961 location_t saved_loc = input_location;
22963 /* Instantiating templates may trigger vtable generation. This in turn
22964 may require further template instantiations. We place a limit here
22965 to avoid infinite loop. */
22966 if (pending_templates && retries >= max_tinst_depth)
22968 tree decl = pending_templates->tinst->decl;
22970 fatal_error (input_location,
22971 "template instantiation depth exceeds maximum of %d"
22972 " instantiating %q+D, possibly from virtual table generation"
22973 " (use -ftemplate-depth= to increase the maximum)",
22974 max_tinst_depth, decl);
22975 if (TREE_CODE (decl) == FUNCTION_DECL)
22976 /* Pretend that we defined it. */
22977 DECL_INITIAL (decl) = error_mark_node;
22978 return;
22983 struct pending_template **t = &pending_templates;
22984 struct pending_template *last = NULL;
22985 reconsider = 0;
22986 while (*t)
22988 tree instantiation = reopen_tinst_level ((*t)->tinst);
22989 bool complete = false;
22991 if (TYPE_P (instantiation))
22993 tree fn;
22995 if (!COMPLETE_TYPE_P (instantiation))
22997 instantiate_class_template (instantiation);
22998 if (CLASSTYPE_TEMPLATE_INSTANTIATION (instantiation))
22999 for (fn = TYPE_METHODS (instantiation);
23001 fn = TREE_CHAIN (fn))
23002 if (! DECL_ARTIFICIAL (fn))
23003 instantiate_decl (fn,
23004 /*defer_ok=*/false,
23005 /*expl_inst_class_mem_p=*/false);
23006 if (COMPLETE_TYPE_P (instantiation))
23007 reconsider = 1;
23010 complete = COMPLETE_TYPE_P (instantiation);
23012 else
23014 if (!DECL_TEMPLATE_SPECIALIZATION (instantiation)
23015 && !DECL_TEMPLATE_INSTANTIATED (instantiation))
23017 instantiation
23018 = instantiate_decl (instantiation,
23019 /*defer_ok=*/false,
23020 /*expl_inst_class_mem_p=*/false);
23021 if (DECL_TEMPLATE_INSTANTIATED (instantiation))
23022 reconsider = 1;
23025 complete = (DECL_TEMPLATE_SPECIALIZATION (instantiation)
23026 || DECL_TEMPLATE_INSTANTIATED (instantiation));
23029 if (complete)
23030 /* If INSTANTIATION has been instantiated, then we don't
23031 need to consider it again in the future. */
23032 *t = (*t)->next;
23033 else
23035 last = *t;
23036 t = &(*t)->next;
23038 tinst_depth = 0;
23039 current_tinst_level = NULL;
23041 last_pending_template = last;
23043 while (reconsider);
23045 input_location = saved_loc;
23048 /* Substitute ARGVEC into T, which is a list of initializers for
23049 either base class or a non-static data member. The TREE_PURPOSEs
23050 are DECLs, and the TREE_VALUEs are the initializer values. Used by
23051 instantiate_decl. */
23053 static tree
23054 tsubst_initializer_list (tree t, tree argvec)
23056 tree inits = NULL_TREE;
23058 for (; t; t = TREE_CHAIN (t))
23060 tree decl;
23061 tree init;
23062 tree expanded_bases = NULL_TREE;
23063 tree expanded_arguments = NULL_TREE;
23064 int i, len = 1;
23066 if (TREE_CODE (TREE_PURPOSE (t)) == TYPE_PACK_EXPANSION)
23068 tree expr;
23069 tree arg;
23071 /* Expand the base class expansion type into separate base
23072 classes. */
23073 expanded_bases = tsubst_pack_expansion (TREE_PURPOSE (t), argvec,
23074 tf_warning_or_error,
23075 NULL_TREE);
23076 if (expanded_bases == error_mark_node)
23077 continue;
23079 /* We'll be building separate TREE_LISTs of arguments for
23080 each base. */
23081 len = TREE_VEC_LENGTH (expanded_bases);
23082 expanded_arguments = make_tree_vec (len);
23083 for (i = 0; i < len; i++)
23084 TREE_VEC_ELT (expanded_arguments, i) = NULL_TREE;
23086 /* Build a dummy EXPR_PACK_EXPANSION that will be used to
23087 expand each argument in the TREE_VALUE of t. */
23088 expr = make_node (EXPR_PACK_EXPANSION);
23089 PACK_EXPANSION_LOCAL_P (expr) = true;
23090 PACK_EXPANSION_PARAMETER_PACKS (expr) =
23091 PACK_EXPANSION_PARAMETER_PACKS (TREE_PURPOSE (t));
23093 if (TREE_VALUE (t) == void_type_node)
23094 /* VOID_TYPE_NODE is used to indicate
23095 value-initialization. */
23097 for (i = 0; i < len; i++)
23098 TREE_VEC_ELT (expanded_arguments, i) = void_type_node;
23100 else
23102 /* Substitute parameter packs into each argument in the
23103 TREE_LIST. */
23104 in_base_initializer = 1;
23105 for (arg = TREE_VALUE (t); arg; arg = TREE_CHAIN (arg))
23107 tree expanded_exprs;
23109 /* Expand the argument. */
23110 SET_PACK_EXPANSION_PATTERN (expr, TREE_VALUE (arg));
23111 expanded_exprs
23112 = tsubst_pack_expansion (expr, argvec,
23113 tf_warning_or_error,
23114 NULL_TREE);
23115 if (expanded_exprs == error_mark_node)
23116 continue;
23118 /* Prepend each of the expanded expressions to the
23119 corresponding TREE_LIST in EXPANDED_ARGUMENTS. */
23120 for (i = 0; i < len; i++)
23122 TREE_VEC_ELT (expanded_arguments, i) =
23123 tree_cons (NULL_TREE,
23124 TREE_VEC_ELT (expanded_exprs, i),
23125 TREE_VEC_ELT (expanded_arguments, i));
23128 in_base_initializer = 0;
23130 /* Reverse all of the TREE_LISTs in EXPANDED_ARGUMENTS,
23131 since we built them backwards. */
23132 for (i = 0; i < len; i++)
23134 TREE_VEC_ELT (expanded_arguments, i) =
23135 nreverse (TREE_VEC_ELT (expanded_arguments, i));
23140 for (i = 0; i < len; ++i)
23142 if (expanded_bases)
23144 decl = TREE_VEC_ELT (expanded_bases, i);
23145 decl = expand_member_init (decl);
23146 init = TREE_VEC_ELT (expanded_arguments, i);
23148 else
23150 tree tmp;
23151 decl = tsubst_copy (TREE_PURPOSE (t), argvec,
23152 tf_warning_or_error, NULL_TREE);
23154 decl = expand_member_init (decl);
23155 if (decl && !DECL_P (decl))
23156 in_base_initializer = 1;
23158 init = TREE_VALUE (t);
23159 tmp = init;
23160 if (init != void_type_node)
23161 init = tsubst_expr (init, argvec,
23162 tf_warning_or_error, NULL_TREE,
23163 /*integral_constant_expression_p=*/false);
23164 if (init == NULL_TREE && tmp != NULL_TREE)
23165 /* If we had an initializer but it instantiated to nothing,
23166 value-initialize the object. This will only occur when
23167 the initializer was a pack expansion where the parameter
23168 packs used in that expansion were of length zero. */
23169 init = void_type_node;
23170 in_base_initializer = 0;
23173 if (decl)
23175 init = build_tree_list (decl, init);
23176 TREE_CHAIN (init) = inits;
23177 inits = init;
23181 return inits;
23184 /* Set CURRENT_ACCESS_SPECIFIER based on the protection of DECL. */
23186 static void
23187 set_current_access_from_decl (tree decl)
23189 if (TREE_PRIVATE (decl))
23190 current_access_specifier = access_private_node;
23191 else if (TREE_PROTECTED (decl))
23192 current_access_specifier = access_protected_node;
23193 else
23194 current_access_specifier = access_public_node;
23197 /* Instantiate an enumerated type. TAG is the template type, NEWTAG
23198 is the instantiation (which should have been created with
23199 start_enum) and ARGS are the template arguments to use. */
23201 static void
23202 tsubst_enum (tree tag, tree newtag, tree args)
23204 tree e;
23206 if (SCOPED_ENUM_P (newtag))
23207 begin_scope (sk_scoped_enum, newtag);
23209 for (e = TYPE_VALUES (tag); e; e = TREE_CHAIN (e))
23211 tree value;
23212 tree decl;
23214 decl = TREE_VALUE (e);
23215 /* Note that in a template enum, the TREE_VALUE is the
23216 CONST_DECL, not the corresponding INTEGER_CST. */
23217 value = tsubst_expr (DECL_INITIAL (decl),
23218 args, tf_warning_or_error, NULL_TREE,
23219 /*integral_constant_expression_p=*/true);
23221 /* Give this enumeration constant the correct access. */
23222 set_current_access_from_decl (decl);
23224 /* Actually build the enumerator itself. Here we're assuming that
23225 enumerators can't have dependent attributes. */
23226 build_enumerator (DECL_NAME (decl), value, newtag,
23227 DECL_ATTRIBUTES (decl), DECL_SOURCE_LOCATION (decl));
23230 if (SCOPED_ENUM_P (newtag))
23231 finish_scope ();
23233 finish_enum_value_list (newtag);
23234 finish_enum (newtag);
23236 DECL_SOURCE_LOCATION (TYPE_NAME (newtag))
23237 = DECL_SOURCE_LOCATION (TYPE_NAME (tag));
23240 /* DECL is a FUNCTION_DECL that is a template specialization. Return
23241 its type -- but without substituting the innermost set of template
23242 arguments. So, innermost set of template parameters will appear in
23243 the type. */
23245 tree
23246 get_mostly_instantiated_function_type (tree decl)
23248 /* For a function, DECL_TI_TEMPLATE is partially instantiated. */
23249 return TREE_TYPE (DECL_TI_TEMPLATE (decl));
23252 /* Return truthvalue if we're processing a template different from
23253 the last one involved in diagnostics. */
23254 bool
23255 problematic_instantiation_changed (void)
23257 return current_tinst_level != last_error_tinst_level;
23260 /* Remember current template involved in diagnostics. */
23261 void
23262 record_last_problematic_instantiation (void)
23264 last_error_tinst_level = current_tinst_level;
23267 struct tinst_level *
23268 current_instantiation (void)
23270 return current_tinst_level;
23273 /* Return TRUE if current_function_decl is being instantiated, false
23274 otherwise. */
23276 bool
23277 instantiating_current_function_p (void)
23279 return (current_instantiation ()
23280 && current_instantiation ()->decl == current_function_decl);
23283 /* [temp.param] Check that template non-type parm TYPE is of an allowable
23284 type. Return zero for ok, nonzero for disallowed. Issue error and
23285 warning messages under control of COMPLAIN. */
23287 static int
23288 invalid_nontype_parm_type_p (tree type, tsubst_flags_t complain)
23290 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
23291 return 0;
23292 else if (POINTER_TYPE_P (type))
23293 return 0;
23294 else if (TYPE_PTRMEM_P (type))
23295 return 0;
23296 else if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
23297 return 0;
23298 else if (TREE_CODE (type) == TYPENAME_TYPE)
23299 return 0;
23300 else if (TREE_CODE (type) == DECLTYPE_TYPE)
23301 return 0;
23302 else if (TREE_CODE (type) == NULLPTR_TYPE)
23303 return 0;
23304 /* A bound template template parm could later be instantiated to have a valid
23305 nontype parm type via an alias template. */
23306 else if (cxx_dialect >= cxx11
23307 && TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
23308 return 0;
23310 if (complain & tf_error)
23312 if (type == error_mark_node)
23313 inform (input_location, "invalid template non-type parameter");
23314 else
23315 error ("%q#T is not a valid type for a template non-type parameter",
23316 type);
23318 return 1;
23321 /* Returns TRUE if TYPE is dependent, in the sense of [temp.dep.type].
23322 Assumes that TYPE really is a type, and not the ERROR_MARK_NODE.*/
23324 static bool
23325 dependent_type_p_r (tree type)
23327 tree scope;
23329 /* [temp.dep.type]
23331 A type is dependent if it is:
23333 -- a template parameter. Template template parameters are types
23334 for us (since TYPE_P holds true for them) so we handle
23335 them here. */
23336 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
23337 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM)
23338 return true;
23339 /* -- a qualified-id with a nested-name-specifier which contains a
23340 class-name that names a dependent type or whose unqualified-id
23341 names a dependent type. */
23342 if (TREE_CODE (type) == TYPENAME_TYPE)
23343 return true;
23345 /* An alias template specialization can be dependent even if the
23346 resulting type is not. */
23347 if (dependent_alias_template_spec_p (type))
23348 return true;
23350 /* -- a cv-qualified type where the cv-unqualified type is
23351 dependent.
23352 No code is necessary for this bullet; the code below handles
23353 cv-qualified types, and we don't want to strip aliases with
23354 TYPE_MAIN_VARIANT because of DR 1558. */
23355 /* -- a compound type constructed from any dependent type. */
23356 if (TYPE_PTRMEM_P (type))
23357 return (dependent_type_p (TYPE_PTRMEM_CLASS_TYPE (type))
23358 || dependent_type_p (TYPE_PTRMEM_POINTED_TO_TYPE
23359 (type)));
23360 else if (TYPE_PTR_P (type)
23361 || TREE_CODE (type) == REFERENCE_TYPE)
23362 return dependent_type_p (TREE_TYPE (type));
23363 else if (TREE_CODE (type) == FUNCTION_TYPE
23364 || TREE_CODE (type) == METHOD_TYPE)
23366 tree arg_type;
23368 if (dependent_type_p (TREE_TYPE (type)))
23369 return true;
23370 for (arg_type = TYPE_ARG_TYPES (type);
23371 arg_type;
23372 arg_type = TREE_CHAIN (arg_type))
23373 if (dependent_type_p (TREE_VALUE (arg_type)))
23374 return true;
23375 return false;
23377 /* -- an array type constructed from any dependent type or whose
23378 size is specified by a constant expression that is
23379 value-dependent.
23381 We checked for type- and value-dependence of the bounds in
23382 compute_array_index_type, so TYPE_DEPENDENT_P is already set. */
23383 if (TREE_CODE (type) == ARRAY_TYPE)
23385 if (TYPE_DOMAIN (type)
23386 && dependent_type_p (TYPE_DOMAIN (type)))
23387 return true;
23388 return dependent_type_p (TREE_TYPE (type));
23391 /* -- a template-id in which either the template name is a template
23392 parameter ... */
23393 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
23394 return true;
23395 /* ... or any of the template arguments is a dependent type or
23396 an expression that is type-dependent or value-dependent. */
23397 else if (CLASS_TYPE_P (type) && CLASSTYPE_TEMPLATE_INFO (type)
23398 && (any_dependent_template_arguments_p
23399 (INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type)))))
23400 return true;
23402 /* All TYPEOF_TYPEs, DECLTYPE_TYPEs, and UNDERLYING_TYPEs are
23403 dependent; if the argument of the `typeof' expression is not
23404 type-dependent, then it should already been have resolved. */
23405 if (TREE_CODE (type) == TYPEOF_TYPE
23406 || TREE_CODE (type) == DECLTYPE_TYPE
23407 || TREE_CODE (type) == UNDERLYING_TYPE)
23408 return true;
23410 /* A template argument pack is dependent if any of its packed
23411 arguments are. */
23412 if (TREE_CODE (type) == TYPE_ARGUMENT_PACK)
23414 tree args = ARGUMENT_PACK_ARGS (type);
23415 int i, len = TREE_VEC_LENGTH (args);
23416 for (i = 0; i < len; ++i)
23417 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
23418 return true;
23421 /* All TYPE_PACK_EXPANSIONs are dependent, because parameter packs must
23422 be template parameters. */
23423 if (TREE_CODE (type) == TYPE_PACK_EXPANSION)
23424 return true;
23426 if (any_dependent_type_attributes_p (TYPE_ATTRIBUTES (type)))
23427 return true;
23429 /* The standard does not specifically mention types that are local
23430 to template functions or local classes, but they should be
23431 considered dependent too. For example:
23433 template <int I> void f() {
23434 enum E { a = I };
23435 S<sizeof (E)> s;
23438 The size of `E' cannot be known until the value of `I' has been
23439 determined. Therefore, `E' must be considered dependent. */
23440 scope = TYPE_CONTEXT (type);
23441 if (scope && TYPE_P (scope))
23442 return dependent_type_p (scope);
23443 /* Don't use type_dependent_expression_p here, as it can lead
23444 to infinite recursion trying to determine whether a lambda
23445 nested in a lambda is dependent (c++/47687). */
23446 else if (scope && TREE_CODE (scope) == FUNCTION_DECL
23447 && DECL_LANG_SPECIFIC (scope)
23448 && DECL_TEMPLATE_INFO (scope)
23449 && (any_dependent_template_arguments_p
23450 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (scope)))))
23451 return true;
23453 /* Other types are non-dependent. */
23454 return false;
23457 /* Returns TRUE if TYPE is dependent, in the sense of
23458 [temp.dep.type]. Note that a NULL type is considered dependent. */
23460 bool
23461 dependent_type_p (tree type)
23463 /* If there are no template parameters in scope, then there can't be
23464 any dependent types. */
23465 if (!processing_template_decl)
23467 /* If we are not processing a template, then nobody should be
23468 providing us with a dependent type. */
23469 gcc_assert (type);
23470 gcc_assert (TREE_CODE (type) != TEMPLATE_TYPE_PARM || is_auto (type));
23471 return false;
23474 /* If the type is NULL, we have not computed a type for the entity
23475 in question; in that case, the type is dependent. */
23476 if (!type)
23477 return true;
23479 /* Erroneous types can be considered non-dependent. */
23480 if (type == error_mark_node)
23481 return false;
23483 /* If we have not already computed the appropriate value for TYPE,
23484 do so now. */
23485 if (!TYPE_DEPENDENT_P_VALID (type))
23487 TYPE_DEPENDENT_P (type) = dependent_type_p_r (type);
23488 TYPE_DEPENDENT_P_VALID (type) = 1;
23491 return TYPE_DEPENDENT_P (type);
23494 /* Returns TRUE if SCOPE is a dependent scope, in which we can't do any
23495 lookup. In other words, a dependent type that is not the current
23496 instantiation. */
23498 bool
23499 dependent_scope_p (tree scope)
23501 return (scope && TYPE_P (scope) && dependent_type_p (scope)
23502 && !currently_open_class (scope));
23505 /* T is a SCOPE_REF; return whether we need to consider it
23506 instantiation-dependent so that we can check access at instantiation
23507 time even though we know which member it resolves to. */
23509 static bool
23510 instantiation_dependent_scope_ref_p (tree t)
23512 if (DECL_P (TREE_OPERAND (t, 1))
23513 && CLASS_TYPE_P (TREE_OPERAND (t, 0))
23514 && accessible_in_template_p (TREE_OPERAND (t, 0),
23515 TREE_OPERAND (t, 1)))
23516 return false;
23517 else
23518 return true;
23521 /* Returns TRUE if the EXPRESSION is value-dependent, in the sense of
23522 [temp.dep.constexpr]. EXPRESSION is already known to be a constant
23523 expression. */
23525 /* Note that this predicate is not appropriate for general expressions;
23526 only constant expressions (that satisfy potential_constant_expression)
23527 can be tested for value dependence. */
23529 bool
23530 value_dependent_expression_p (tree expression)
23532 if (!processing_template_decl || expression == NULL_TREE)
23533 return false;
23535 /* A name declared with a dependent type. */
23536 if (DECL_P (expression) && type_dependent_expression_p (expression))
23537 return true;
23539 switch (TREE_CODE (expression))
23541 case BASELINK:
23542 /* A dependent member function of the current instantiation. */
23543 return dependent_type_p (BINFO_TYPE (BASELINK_BINFO (expression)));
23545 case FUNCTION_DECL:
23546 /* A dependent member function of the current instantiation. */
23547 if (DECL_CLASS_SCOPE_P (expression)
23548 && dependent_type_p (DECL_CONTEXT (expression)))
23549 return true;
23550 break;
23552 case IDENTIFIER_NODE:
23553 /* A name that has not been looked up -- must be dependent. */
23554 return true;
23556 case TEMPLATE_PARM_INDEX:
23557 /* A non-type template parm. */
23558 return true;
23560 case CONST_DECL:
23561 /* A non-type template parm. */
23562 if (DECL_TEMPLATE_PARM_P (expression))
23563 return true;
23564 return value_dependent_expression_p (DECL_INITIAL (expression));
23566 case VAR_DECL:
23567 /* A constant with literal type and is initialized
23568 with an expression that is value-dependent.
23570 Note that a non-dependent parenthesized initializer will have
23571 already been replaced with its constant value, so if we see
23572 a TREE_LIST it must be dependent. */
23573 if (DECL_INITIAL (expression)
23574 && decl_constant_var_p (expression)
23575 && (TREE_CODE (DECL_INITIAL (expression)) == TREE_LIST
23576 /* cp_finish_decl doesn't fold reference initializers. */
23577 || TREE_CODE (TREE_TYPE (expression)) == REFERENCE_TYPE
23578 || type_dependent_expression_p (DECL_INITIAL (expression))
23579 || value_dependent_expression_p (DECL_INITIAL (expression))))
23580 return true;
23581 if (DECL_HAS_VALUE_EXPR_P (expression))
23583 tree value_expr = DECL_VALUE_EXPR (expression);
23584 if (type_dependent_expression_p (value_expr))
23585 return true;
23587 return false;
23589 case DYNAMIC_CAST_EXPR:
23590 case STATIC_CAST_EXPR:
23591 case CONST_CAST_EXPR:
23592 case REINTERPRET_CAST_EXPR:
23593 case CAST_EXPR:
23594 /* These expressions are value-dependent if the type to which
23595 the cast occurs is dependent or the expression being casted
23596 is value-dependent. */
23598 tree type = TREE_TYPE (expression);
23600 if (dependent_type_p (type))
23601 return true;
23603 /* A functional cast has a list of operands. */
23604 expression = TREE_OPERAND (expression, 0);
23605 if (!expression)
23607 /* If there are no operands, it must be an expression such
23608 as "int()". This should not happen for aggregate types
23609 because it would form non-constant expressions. */
23610 gcc_assert (cxx_dialect >= cxx11
23611 || INTEGRAL_OR_ENUMERATION_TYPE_P (type));
23613 return false;
23616 if (TREE_CODE (expression) == TREE_LIST)
23617 return any_value_dependent_elements_p (expression);
23619 return value_dependent_expression_p (expression);
23622 case SIZEOF_EXPR:
23623 if (SIZEOF_EXPR_TYPE_P (expression))
23624 return dependent_type_p (TREE_TYPE (TREE_OPERAND (expression, 0)));
23625 /* FALLTHRU */
23626 case ALIGNOF_EXPR:
23627 case TYPEID_EXPR:
23628 /* A `sizeof' expression is value-dependent if the operand is
23629 type-dependent or is a pack expansion. */
23630 expression = TREE_OPERAND (expression, 0);
23631 if (PACK_EXPANSION_P (expression))
23632 return true;
23633 else if (TYPE_P (expression))
23634 return dependent_type_p (expression);
23635 return instantiation_dependent_uneval_expression_p (expression);
23637 case AT_ENCODE_EXPR:
23638 /* An 'encode' expression is value-dependent if the operand is
23639 type-dependent. */
23640 expression = TREE_OPERAND (expression, 0);
23641 return dependent_type_p (expression);
23643 case NOEXCEPT_EXPR:
23644 expression = TREE_OPERAND (expression, 0);
23645 return instantiation_dependent_uneval_expression_p (expression);
23647 case SCOPE_REF:
23648 /* All instantiation-dependent expressions should also be considered
23649 value-dependent. */
23650 return instantiation_dependent_scope_ref_p (expression);
23652 case COMPONENT_REF:
23653 return (value_dependent_expression_p (TREE_OPERAND (expression, 0))
23654 || value_dependent_expression_p (TREE_OPERAND (expression, 1)));
23656 case NONTYPE_ARGUMENT_PACK:
23657 /* A NONTYPE_ARGUMENT_PACK is value-dependent if any packed argument
23658 is value-dependent. */
23660 tree values = ARGUMENT_PACK_ARGS (expression);
23661 int i, len = TREE_VEC_LENGTH (values);
23663 for (i = 0; i < len; ++i)
23664 if (value_dependent_expression_p (TREE_VEC_ELT (values, i)))
23665 return true;
23667 return false;
23670 case TRAIT_EXPR:
23672 tree type2 = TRAIT_EXPR_TYPE2 (expression);
23673 return (dependent_type_p (TRAIT_EXPR_TYPE1 (expression))
23674 || (type2 ? dependent_type_p (type2) : false));
23677 case MODOP_EXPR:
23678 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
23679 || (value_dependent_expression_p (TREE_OPERAND (expression, 2))));
23681 case ARRAY_REF:
23682 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
23683 || (value_dependent_expression_p (TREE_OPERAND (expression, 1))));
23685 case ADDR_EXPR:
23687 tree op = TREE_OPERAND (expression, 0);
23688 return (value_dependent_expression_p (op)
23689 || has_value_dependent_address (op));
23692 case REQUIRES_EXPR:
23693 /* Treat all requires-expressions as value-dependent so
23694 we don't try to fold them. */
23695 return true;
23697 case TYPE_REQ:
23698 return dependent_type_p (TREE_OPERAND (expression, 0));
23700 case CALL_EXPR:
23702 if (value_dependent_expression_p (CALL_EXPR_FN (expression)))
23703 return true;
23704 tree fn = get_callee_fndecl (expression);
23705 int i, nargs;
23706 nargs = call_expr_nargs (expression);
23707 for (i = 0; i < nargs; ++i)
23709 tree op = CALL_EXPR_ARG (expression, i);
23710 /* In a call to a constexpr member function, look through the
23711 implicit ADDR_EXPR on the object argument so that it doesn't
23712 cause the call to be considered value-dependent. We also
23713 look through it in potential_constant_expression. */
23714 if (i == 0 && fn && DECL_DECLARED_CONSTEXPR_P (fn)
23715 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
23716 && TREE_CODE (op) == ADDR_EXPR)
23717 op = TREE_OPERAND (op, 0);
23718 if (value_dependent_expression_p (op))
23719 return true;
23721 return false;
23724 case TEMPLATE_ID_EXPR:
23725 /* If a TEMPLATE_ID_EXPR involves a dependent name, it will be
23726 type-dependent. */
23727 return type_dependent_expression_p (expression)
23728 || variable_concept_p (TREE_OPERAND (expression, 0));
23730 case CONSTRUCTOR:
23732 unsigned ix;
23733 tree val;
23734 if (dependent_type_p (TREE_TYPE (expression)))
23735 return true;
23736 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), ix, val)
23737 if (value_dependent_expression_p (val))
23738 return true;
23739 return false;
23742 case STMT_EXPR:
23743 /* Treat a GNU statement expression as dependent to avoid crashing
23744 under instantiate_non_dependent_expr; it can't be constant. */
23745 return true;
23747 default:
23748 /* A constant expression is value-dependent if any subexpression is
23749 value-dependent. */
23750 switch (TREE_CODE_CLASS (TREE_CODE (expression)))
23752 case tcc_reference:
23753 case tcc_unary:
23754 case tcc_comparison:
23755 case tcc_binary:
23756 case tcc_expression:
23757 case tcc_vl_exp:
23759 int i, len = cp_tree_operand_length (expression);
23761 for (i = 0; i < len; i++)
23763 tree t = TREE_OPERAND (expression, i);
23765 /* In some cases, some of the operands may be missing.l
23766 (For example, in the case of PREDECREMENT_EXPR, the
23767 amount to increment by may be missing.) That doesn't
23768 make the expression dependent. */
23769 if (t && value_dependent_expression_p (t))
23770 return true;
23773 break;
23774 default:
23775 break;
23777 break;
23780 /* The expression is not value-dependent. */
23781 return false;
23784 /* Returns TRUE if the EXPRESSION is type-dependent, in the sense of
23785 [temp.dep.expr]. Note that an expression with no type is
23786 considered dependent. Other parts of the compiler arrange for an
23787 expression with type-dependent subexpressions to have no type, so
23788 this function doesn't have to be fully recursive. */
23790 bool
23791 type_dependent_expression_p (tree expression)
23793 if (!processing_template_decl)
23794 return false;
23796 if (expression == NULL_TREE || expression == error_mark_node)
23797 return false;
23799 /* An unresolved name is always dependent. */
23800 if (identifier_p (expression)
23801 || TREE_CODE (expression) == USING_DECL
23802 || TREE_CODE (expression) == WILDCARD_DECL)
23803 return true;
23805 /* A fold expression is type-dependent. */
23806 if (TREE_CODE (expression) == UNARY_LEFT_FOLD_EXPR
23807 || TREE_CODE (expression) == UNARY_RIGHT_FOLD_EXPR
23808 || TREE_CODE (expression) == BINARY_LEFT_FOLD_EXPR
23809 || TREE_CODE (expression) == BINARY_RIGHT_FOLD_EXPR)
23810 return true;
23812 /* Some expression forms are never type-dependent. */
23813 if (TREE_CODE (expression) == PSEUDO_DTOR_EXPR
23814 || TREE_CODE (expression) == SIZEOF_EXPR
23815 || TREE_CODE (expression) == ALIGNOF_EXPR
23816 || TREE_CODE (expression) == AT_ENCODE_EXPR
23817 || TREE_CODE (expression) == NOEXCEPT_EXPR
23818 || TREE_CODE (expression) == TRAIT_EXPR
23819 || TREE_CODE (expression) == TYPEID_EXPR
23820 || TREE_CODE (expression) == DELETE_EXPR
23821 || TREE_CODE (expression) == VEC_DELETE_EXPR
23822 || TREE_CODE (expression) == THROW_EXPR
23823 || TREE_CODE (expression) == REQUIRES_EXPR)
23824 return false;
23826 /* The types of these expressions depends only on the type to which
23827 the cast occurs. */
23828 if (TREE_CODE (expression) == DYNAMIC_CAST_EXPR
23829 || TREE_CODE (expression) == STATIC_CAST_EXPR
23830 || TREE_CODE (expression) == CONST_CAST_EXPR
23831 || TREE_CODE (expression) == REINTERPRET_CAST_EXPR
23832 || TREE_CODE (expression) == IMPLICIT_CONV_EXPR
23833 || TREE_CODE (expression) == CAST_EXPR)
23834 return dependent_type_p (TREE_TYPE (expression));
23836 /* The types of these expressions depends only on the type created
23837 by the expression. */
23838 if (TREE_CODE (expression) == NEW_EXPR
23839 || TREE_CODE (expression) == VEC_NEW_EXPR)
23841 /* For NEW_EXPR tree nodes created inside a template, either
23842 the object type itself or a TREE_LIST may appear as the
23843 operand 1. */
23844 tree type = TREE_OPERAND (expression, 1);
23845 if (TREE_CODE (type) == TREE_LIST)
23846 /* This is an array type. We need to check array dimensions
23847 as well. */
23848 return dependent_type_p (TREE_VALUE (TREE_PURPOSE (type)))
23849 || value_dependent_expression_p
23850 (TREE_OPERAND (TREE_VALUE (type), 1));
23851 else
23852 return dependent_type_p (type);
23855 if (TREE_CODE (expression) == SCOPE_REF)
23857 tree scope = TREE_OPERAND (expression, 0);
23858 tree name = TREE_OPERAND (expression, 1);
23860 /* 14.6.2.2 [temp.dep.expr]: An id-expression is type-dependent if it
23861 contains an identifier associated by name lookup with one or more
23862 declarations declared with a dependent type, or...a
23863 nested-name-specifier or qualified-id that names a member of an
23864 unknown specialization. */
23865 return (type_dependent_expression_p (name)
23866 || dependent_scope_p (scope));
23869 if (TREE_CODE (expression) == TEMPLATE_DECL
23870 && !DECL_TEMPLATE_TEMPLATE_PARM_P (expression))
23871 return uses_outer_template_parms (expression);
23873 if (TREE_CODE (expression) == STMT_EXPR)
23874 expression = stmt_expr_value_expr (expression);
23876 if (BRACE_ENCLOSED_INITIALIZER_P (expression))
23878 tree elt;
23879 unsigned i;
23881 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), i, elt)
23883 if (type_dependent_expression_p (elt))
23884 return true;
23886 return false;
23889 /* A static data member of the current instantiation with incomplete
23890 array type is type-dependent, as the definition and specializations
23891 can have different bounds. */
23892 if (VAR_P (expression)
23893 && DECL_CLASS_SCOPE_P (expression)
23894 && dependent_type_p (DECL_CONTEXT (expression))
23895 && VAR_HAD_UNKNOWN_BOUND (expression))
23896 return true;
23898 /* An array of unknown bound depending on a variadic parameter, eg:
23900 template<typename... Args>
23901 void foo (Args... args)
23903 int arr[] = { args... };
23906 template<int... vals>
23907 void bar ()
23909 int arr[] = { vals... };
23912 If the array has no length and has an initializer, it must be that
23913 we couldn't determine its length in cp_complete_array_type because
23914 it is dependent. */
23915 if (VAR_P (expression)
23916 && TREE_TYPE (expression) != NULL_TREE
23917 && TREE_CODE (TREE_TYPE (expression)) == ARRAY_TYPE
23918 && !TYPE_DOMAIN (TREE_TYPE (expression))
23919 && DECL_INITIAL (expression))
23920 return true;
23922 /* A function or variable template-id is type-dependent if it has any
23923 dependent template arguments. Note that we only consider the innermost
23924 template arguments here, since those are the ones that come from the
23925 template-id; the template arguments for the enclosing class do not make it
23926 type-dependent, they only make a member function value-dependent. */
23927 if (VAR_OR_FUNCTION_DECL_P (expression)
23928 && DECL_LANG_SPECIFIC (expression)
23929 && DECL_TEMPLATE_INFO (expression)
23930 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (expression))
23931 && (any_dependent_template_arguments_p
23932 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (expression)))))
23933 return true;
23935 /* Always dependent, on the number of arguments if nothing else. */
23936 if (TREE_CODE (expression) == EXPR_PACK_EXPANSION)
23937 return true;
23939 if (TREE_TYPE (expression) == unknown_type_node)
23941 if (TREE_CODE (expression) == ADDR_EXPR)
23942 return type_dependent_expression_p (TREE_OPERAND (expression, 0));
23943 if (TREE_CODE (expression) == COMPONENT_REF
23944 || TREE_CODE (expression) == OFFSET_REF)
23946 if (type_dependent_expression_p (TREE_OPERAND (expression, 0)))
23947 return true;
23948 expression = TREE_OPERAND (expression, 1);
23949 if (identifier_p (expression))
23950 return false;
23952 /* SCOPE_REF with non-null TREE_TYPE is always non-dependent. */
23953 if (TREE_CODE (expression) == SCOPE_REF)
23954 return false;
23956 if (BASELINK_P (expression))
23958 if (BASELINK_OPTYPE (expression)
23959 && dependent_type_p (BASELINK_OPTYPE (expression)))
23960 return true;
23961 expression = BASELINK_FUNCTIONS (expression);
23964 if (TREE_CODE (expression) == TEMPLATE_ID_EXPR)
23966 if (any_dependent_template_arguments_p
23967 (TREE_OPERAND (expression, 1)))
23968 return true;
23969 expression = TREE_OPERAND (expression, 0);
23970 if (identifier_p (expression))
23971 return true;
23974 gcc_assert (TREE_CODE (expression) == OVERLOAD
23975 || TREE_CODE (expression) == FUNCTION_DECL);
23977 while (expression)
23979 if (type_dependent_expression_p (OVL_CURRENT (expression)))
23980 return true;
23981 expression = OVL_NEXT (expression);
23983 return false;
23986 gcc_assert (TREE_CODE (expression) != TYPE_DECL);
23988 /* Dependent type attributes might not have made it from the decl to
23989 the type yet. */
23990 if (DECL_P (expression)
23991 && any_dependent_type_attributes_p (DECL_ATTRIBUTES (expression)))
23992 return true;
23994 return (dependent_type_p (TREE_TYPE (expression)));
23997 /* [temp.dep.expr]/5: A class member access expression (5.2.5) is
23998 type-dependent if the expression refers to a member of the current
23999 instantiation and the type of the referenced member is dependent, or the
24000 class member access expression refers to a member of an unknown
24001 specialization.
24003 This function returns true if the OBJECT in such a class member access
24004 expression is of an unknown specialization. */
24006 bool
24007 type_dependent_object_expression_p (tree object)
24009 /* An IDENTIFIER_NODE can sometimes have a TREE_TYPE, but it's still
24010 dependent. */
24011 if (TREE_CODE (object) == IDENTIFIER_NODE)
24012 return true;
24013 tree scope = TREE_TYPE (object);
24014 return (!scope || dependent_scope_p (scope));
24017 /* walk_tree callback function for instantiation_dependent_expression_p,
24018 below. Returns non-zero if a dependent subexpression is found. */
24020 static tree
24021 instantiation_dependent_r (tree *tp, int *walk_subtrees,
24022 void * /*data*/)
24024 if (TYPE_P (*tp))
24026 /* We don't have to worry about decltype currently because decltype
24027 of an instantiation-dependent expr is a dependent type. This
24028 might change depending on the resolution of DR 1172. */
24029 *walk_subtrees = false;
24030 return NULL_TREE;
24032 enum tree_code code = TREE_CODE (*tp);
24033 switch (code)
24035 /* Don't treat an argument list as dependent just because it has no
24036 TREE_TYPE. */
24037 case TREE_LIST:
24038 case TREE_VEC:
24039 return NULL_TREE;
24041 case TEMPLATE_PARM_INDEX:
24042 return *tp;
24044 /* Handle expressions with type operands. */
24045 case SIZEOF_EXPR:
24046 case ALIGNOF_EXPR:
24047 case TYPEID_EXPR:
24048 case AT_ENCODE_EXPR:
24050 tree op = TREE_OPERAND (*tp, 0);
24051 if (code == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (*tp))
24052 op = TREE_TYPE (op);
24053 if (TYPE_P (op))
24055 if (dependent_type_p (op))
24056 return *tp;
24057 else
24059 *walk_subtrees = false;
24060 return NULL_TREE;
24063 break;
24066 case COMPONENT_REF:
24067 if (identifier_p (TREE_OPERAND (*tp, 1)))
24068 /* In a template, finish_class_member_access_expr creates a
24069 COMPONENT_REF with an IDENTIFIER_NODE for op1 even if it isn't
24070 type-dependent, so that we can check access control at
24071 instantiation time (PR 42277). See also Core issue 1273. */
24072 return *tp;
24073 break;
24075 case SCOPE_REF:
24076 if (instantiation_dependent_scope_ref_p (*tp))
24077 return *tp;
24078 else
24079 break;
24081 /* Treat statement-expressions as dependent. */
24082 case BIND_EXPR:
24083 return *tp;
24085 /* Treat requires-expressions as dependent. */
24086 case REQUIRES_EXPR:
24087 return *tp;
24089 case CALL_EXPR:
24090 /* Treat calls to function concepts as dependent. */
24091 if (function_concept_check_p (*tp))
24092 return *tp;
24093 break;
24095 case TEMPLATE_ID_EXPR:
24096 /* And variable concepts. */
24097 if (variable_concept_p (TREE_OPERAND (*tp, 0)))
24098 return *tp;
24099 break;
24101 default:
24102 break;
24105 if (type_dependent_expression_p (*tp))
24106 return *tp;
24107 else
24108 return NULL_TREE;
24111 /* Returns TRUE if the EXPRESSION is instantiation-dependent, in the
24112 sense defined by the ABI:
24114 "An expression is instantiation-dependent if it is type-dependent
24115 or value-dependent, or it has a subexpression that is type-dependent
24116 or value-dependent."
24118 Except don't actually check value-dependence for unevaluated expressions,
24119 because in sizeof(i) we don't care about the value of i. Checking
24120 type-dependence will in turn check value-dependence of array bounds/template
24121 arguments as needed. */
24123 bool
24124 instantiation_dependent_uneval_expression_p (tree expression)
24126 tree result;
24128 if (!processing_template_decl)
24129 return false;
24131 if (expression == error_mark_node)
24132 return false;
24134 result = cp_walk_tree_without_duplicates (&expression,
24135 instantiation_dependent_r, NULL);
24136 return result != NULL_TREE;
24139 /* As above, but also check value-dependence of the expression as a whole. */
24141 bool
24142 instantiation_dependent_expression_p (tree expression)
24144 return (instantiation_dependent_uneval_expression_p (expression)
24145 || value_dependent_expression_p (expression));
24148 /* Like type_dependent_expression_p, but it also works while not processing
24149 a template definition, i.e. during substitution or mangling. */
24151 bool
24152 type_dependent_expression_p_push (tree expr)
24154 bool b;
24155 ++processing_template_decl;
24156 b = type_dependent_expression_p (expr);
24157 --processing_template_decl;
24158 return b;
24161 /* Returns TRUE if ARGS contains a type-dependent expression. */
24163 bool
24164 any_type_dependent_arguments_p (const vec<tree, va_gc> *args)
24166 unsigned int i;
24167 tree arg;
24169 FOR_EACH_VEC_SAFE_ELT (args, i, arg)
24171 if (type_dependent_expression_p (arg))
24172 return true;
24174 return false;
24177 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
24178 expressions) contains any type-dependent expressions. */
24180 bool
24181 any_type_dependent_elements_p (const_tree list)
24183 for (; list; list = TREE_CHAIN (list))
24184 if (type_dependent_expression_p (TREE_VALUE (list)))
24185 return true;
24187 return false;
24190 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
24191 expressions) contains any value-dependent expressions. */
24193 bool
24194 any_value_dependent_elements_p (const_tree list)
24196 for (; list; list = TREE_CHAIN (list))
24197 if (value_dependent_expression_p (TREE_VALUE (list)))
24198 return true;
24200 return false;
24203 /* Returns TRUE if the ARG (a template argument) is dependent. */
24205 bool
24206 dependent_template_arg_p (tree arg)
24208 if (!processing_template_decl)
24209 return false;
24211 /* Assume a template argument that was wrongly written by the user
24212 is dependent. This is consistent with what
24213 any_dependent_template_arguments_p [that calls this function]
24214 does. */
24215 if (!arg || arg == error_mark_node)
24216 return true;
24218 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
24219 arg = ARGUMENT_PACK_SELECT_ARG (arg);
24221 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
24222 return true;
24223 if (TREE_CODE (arg) == TEMPLATE_DECL)
24225 if (DECL_TEMPLATE_PARM_P (arg))
24226 return true;
24227 /* A member template of a dependent class is not necessarily
24228 type-dependent, but it is a dependent template argument because it
24229 will be a member of an unknown specialization to that template. */
24230 tree scope = CP_DECL_CONTEXT (arg);
24231 return TYPE_P (scope) && dependent_type_p (scope);
24233 else if (ARGUMENT_PACK_P (arg))
24235 tree args = ARGUMENT_PACK_ARGS (arg);
24236 int i, len = TREE_VEC_LENGTH (args);
24237 for (i = 0; i < len; ++i)
24239 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
24240 return true;
24243 return false;
24245 else if (TYPE_P (arg))
24246 return dependent_type_p (arg);
24247 else
24248 return (type_dependent_expression_p (arg)
24249 || value_dependent_expression_p (arg));
24252 /* Returns true if ARGS (a collection of template arguments) contains
24253 any types that require structural equality testing. */
24255 bool
24256 any_template_arguments_need_structural_equality_p (tree args)
24258 int i;
24259 int j;
24261 if (!args)
24262 return false;
24263 if (args == error_mark_node)
24264 return true;
24266 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
24268 tree level = TMPL_ARGS_LEVEL (args, i + 1);
24269 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
24271 tree arg = TREE_VEC_ELT (level, j);
24272 tree packed_args = NULL_TREE;
24273 int k, len = 1;
24275 if (ARGUMENT_PACK_P (arg))
24277 /* Look inside the argument pack. */
24278 packed_args = ARGUMENT_PACK_ARGS (arg);
24279 len = TREE_VEC_LENGTH (packed_args);
24282 for (k = 0; k < len; ++k)
24284 if (packed_args)
24285 arg = TREE_VEC_ELT (packed_args, k);
24287 if (error_operand_p (arg))
24288 return true;
24289 else if (TREE_CODE (arg) == TEMPLATE_DECL)
24290 continue;
24291 else if (TYPE_P (arg) && TYPE_STRUCTURAL_EQUALITY_P (arg))
24292 return true;
24293 else if (!TYPE_P (arg) && TREE_TYPE (arg)
24294 && TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (arg)))
24295 return true;
24300 return false;
24303 /* Returns true if ARGS (a collection of template arguments) contains
24304 any dependent arguments. */
24306 bool
24307 any_dependent_template_arguments_p (const_tree args)
24309 int i;
24310 int j;
24312 if (!args)
24313 return false;
24314 if (args == error_mark_node)
24315 return true;
24317 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
24319 const_tree level = TMPL_ARGS_LEVEL (args, i + 1);
24320 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
24321 if (dependent_template_arg_p (TREE_VEC_ELT (level, j)))
24322 return true;
24325 return false;
24328 /* Returns TRUE if the template TMPL is type-dependent. */
24330 bool
24331 dependent_template_p (tree tmpl)
24333 if (TREE_CODE (tmpl) == OVERLOAD)
24335 while (tmpl)
24337 if (dependent_template_p (OVL_CURRENT (tmpl)))
24338 return true;
24339 tmpl = OVL_NEXT (tmpl);
24341 return false;
24344 /* Template template parameters are dependent. */
24345 if (DECL_TEMPLATE_TEMPLATE_PARM_P (tmpl)
24346 || TREE_CODE (tmpl) == TEMPLATE_TEMPLATE_PARM)
24347 return true;
24348 /* So are names that have not been looked up. */
24349 if (TREE_CODE (tmpl) == SCOPE_REF || identifier_p (tmpl))
24350 return true;
24351 return false;
24354 /* Returns TRUE if the specialization TMPL<ARGS> is dependent. */
24356 bool
24357 dependent_template_id_p (tree tmpl, tree args)
24359 return (dependent_template_p (tmpl)
24360 || any_dependent_template_arguments_p (args));
24363 /* Returns TRUE if OMP_FOR with DECLV, INITV, CONDV and INCRV vectors
24364 are dependent. */
24366 bool
24367 dependent_omp_for_p (tree declv, tree initv, tree condv, tree incrv)
24369 int i;
24371 if (!processing_template_decl)
24372 return false;
24374 for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
24376 tree decl = TREE_VEC_ELT (declv, i);
24377 tree init = TREE_VEC_ELT (initv, i);
24378 tree cond = TREE_VEC_ELT (condv, i);
24379 tree incr = TREE_VEC_ELT (incrv, i);
24381 if (type_dependent_expression_p (decl)
24382 || TREE_CODE (decl) == SCOPE_REF)
24383 return true;
24385 if (init && type_dependent_expression_p (init))
24386 return true;
24388 if (type_dependent_expression_p (cond))
24389 return true;
24391 if (COMPARISON_CLASS_P (cond)
24392 && (type_dependent_expression_p (TREE_OPERAND (cond, 0))
24393 || type_dependent_expression_p (TREE_OPERAND (cond, 1))))
24394 return true;
24396 if (TREE_CODE (incr) == MODOP_EXPR)
24398 if (type_dependent_expression_p (TREE_OPERAND (incr, 0))
24399 || type_dependent_expression_p (TREE_OPERAND (incr, 2)))
24400 return true;
24402 else if (type_dependent_expression_p (incr))
24403 return true;
24404 else if (TREE_CODE (incr) == MODIFY_EXPR)
24406 if (type_dependent_expression_p (TREE_OPERAND (incr, 0)))
24407 return true;
24408 else if (BINARY_CLASS_P (TREE_OPERAND (incr, 1)))
24410 tree t = TREE_OPERAND (incr, 1);
24411 if (type_dependent_expression_p (TREE_OPERAND (t, 0))
24412 || type_dependent_expression_p (TREE_OPERAND (t, 1)))
24413 return true;
24418 return false;
24421 /* TYPE is a TYPENAME_TYPE. Returns the ordinary TYPE to which the
24422 TYPENAME_TYPE corresponds. Returns the original TYPENAME_TYPE if
24423 no such TYPE can be found. Note that this function peers inside
24424 uninstantiated templates and therefore should be used only in
24425 extremely limited situations. ONLY_CURRENT_P restricts this
24426 peering to the currently open classes hierarchy (which is required
24427 when comparing types). */
24429 tree
24430 resolve_typename_type (tree type, bool only_current_p)
24432 tree scope;
24433 tree name;
24434 tree decl;
24435 int quals;
24436 tree pushed_scope;
24437 tree result;
24439 gcc_assert (TREE_CODE (type) == TYPENAME_TYPE);
24441 scope = TYPE_CONTEXT (type);
24442 /* Usually the non-qualified identifier of a TYPENAME_TYPE is
24443 TYPE_IDENTIFIER (type). But when 'type' is a typedef variant of
24444 a TYPENAME_TYPE node, then TYPE_NAME (type) is set to the TYPE_DECL representing
24445 the typedef. In that case TYPE_IDENTIFIER (type) is not the non-qualified
24446 identifier of the TYPENAME_TYPE anymore.
24447 So by getting the TYPE_IDENTIFIER of the _main declaration_ of the
24448 TYPENAME_TYPE instead, we avoid messing up with a possible
24449 typedef variant case. */
24450 name = TYPE_IDENTIFIER (TYPE_MAIN_VARIANT (type));
24452 /* If the SCOPE is itself a TYPENAME_TYPE, then we need to resolve
24453 it first before we can figure out what NAME refers to. */
24454 if (TREE_CODE (scope) == TYPENAME_TYPE)
24456 if (TYPENAME_IS_RESOLVING_P (scope))
24457 /* Given a class template A with a dependent base with nested type C,
24458 typedef typename A::C::C C will land us here, as trying to resolve
24459 the initial A::C leads to the local C typedef, which leads back to
24460 A::C::C. So we break the recursion now. */
24461 return type;
24462 else
24463 scope = resolve_typename_type (scope, only_current_p);
24465 /* If we don't know what SCOPE refers to, then we cannot resolve the
24466 TYPENAME_TYPE. */
24467 if (!CLASS_TYPE_P (scope))
24468 return type;
24469 /* If this is a typedef, we don't want to look inside (c++/11987). */
24470 if (typedef_variant_p (type))
24471 return type;
24472 /* If SCOPE isn't the template itself, it will not have a valid
24473 TYPE_FIELDS list. */
24474 if (same_type_p (scope, CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope)))
24475 /* scope is either the template itself or a compatible instantiation
24476 like X<T>, so look up the name in the original template. */
24477 scope = CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope);
24478 /* We shouldn't have built a TYPENAME_TYPE with a non-dependent scope. */
24479 gcc_checking_assert (uses_template_parms (scope));
24480 /* If scope has no fields, it can't be a current instantiation. Check this
24481 before currently_open_class to avoid infinite recursion (71515). */
24482 if (!TYPE_FIELDS (scope))
24483 return type;
24484 /* If the SCOPE is not the current instantiation, there's no reason
24485 to look inside it. */
24486 if (only_current_p && !currently_open_class (scope))
24487 return type;
24488 /* Enter the SCOPE so that name lookup will be resolved as if we
24489 were in the class definition. In particular, SCOPE will no
24490 longer be considered a dependent type. */
24491 pushed_scope = push_scope (scope);
24492 /* Look up the declaration. */
24493 decl = lookup_member (scope, name, /*protect=*/0, /*want_type=*/true,
24494 tf_warning_or_error);
24496 result = NULL_TREE;
24498 /* For a TYPENAME_TYPE like "typename X::template Y<T>", we want to
24499 find a TEMPLATE_DECL. Otherwise, we want to find a TYPE_DECL. */
24500 if (!decl)
24501 /*nop*/;
24502 else if (identifier_p (TYPENAME_TYPE_FULLNAME (type))
24503 && TREE_CODE (decl) == TYPE_DECL)
24505 result = TREE_TYPE (decl);
24506 if (result == error_mark_node)
24507 result = NULL_TREE;
24509 else if (TREE_CODE (TYPENAME_TYPE_FULLNAME (type)) == TEMPLATE_ID_EXPR
24510 && DECL_CLASS_TEMPLATE_P (decl))
24512 tree tmpl;
24513 tree args;
24514 /* Obtain the template and the arguments. */
24515 tmpl = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 0);
24516 args = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 1);
24517 /* Instantiate the template. */
24518 result = lookup_template_class (tmpl, args, NULL_TREE, NULL_TREE,
24519 /*entering_scope=*/0,
24520 tf_error | tf_user);
24521 if (result == error_mark_node)
24522 result = NULL_TREE;
24525 /* Leave the SCOPE. */
24526 if (pushed_scope)
24527 pop_scope (pushed_scope);
24529 /* If we failed to resolve it, return the original typename. */
24530 if (!result)
24531 return type;
24533 /* If lookup found a typename type, resolve that too. */
24534 if (TREE_CODE (result) == TYPENAME_TYPE && !TYPENAME_IS_RESOLVING_P (result))
24536 /* Ill-formed programs can cause infinite recursion here, so we
24537 must catch that. */
24538 TYPENAME_IS_RESOLVING_P (result) = 1;
24539 result = resolve_typename_type (result, only_current_p);
24540 TYPENAME_IS_RESOLVING_P (result) = 0;
24543 /* Qualify the resulting type. */
24544 quals = cp_type_quals (type);
24545 if (quals)
24546 result = cp_build_qualified_type (result, cp_type_quals (result) | quals);
24548 return result;
24551 /* EXPR is an expression which is not type-dependent. Return a proxy
24552 for EXPR that can be used to compute the types of larger
24553 expressions containing EXPR. */
24555 tree
24556 build_non_dependent_expr (tree expr)
24558 tree inner_expr;
24560 /* When checking, try to get a constant value for all non-dependent
24561 expressions in order to expose bugs in *_dependent_expression_p
24562 and constexpr. This can affect code generation, see PR70704, so
24563 only do this for -fchecking=2. */
24564 if (flag_checking > 1
24565 && cxx_dialect >= cxx11
24566 /* Don't do this during nsdmi parsing as it can lead to
24567 unexpected recursive instantiations. */
24568 && !parsing_nsdmi ()
24569 /* Don't do this during concept expansion either and for
24570 the same reason. */
24571 && !expanding_concept ())
24572 fold_non_dependent_expr (expr);
24574 /* Preserve OVERLOADs; the functions must be available to resolve
24575 types. */
24576 inner_expr = expr;
24577 if (TREE_CODE (inner_expr) == STMT_EXPR)
24578 inner_expr = stmt_expr_value_expr (inner_expr);
24579 if (TREE_CODE (inner_expr) == ADDR_EXPR)
24580 inner_expr = TREE_OPERAND (inner_expr, 0);
24581 if (TREE_CODE (inner_expr) == COMPONENT_REF)
24582 inner_expr = TREE_OPERAND (inner_expr, 1);
24583 if (is_overloaded_fn (inner_expr)
24584 || TREE_CODE (inner_expr) == OFFSET_REF)
24585 return expr;
24586 /* There is no need to return a proxy for a variable. */
24587 if (VAR_P (expr))
24588 return expr;
24589 /* Preserve string constants; conversions from string constants to
24590 "char *" are allowed, even though normally a "const char *"
24591 cannot be used to initialize a "char *". */
24592 if (TREE_CODE (expr) == STRING_CST)
24593 return expr;
24594 /* Preserve void and arithmetic constants, as an optimization -- there is no
24595 reason to create a new node. */
24596 if (TREE_CODE (expr) == VOID_CST
24597 || TREE_CODE (expr) == INTEGER_CST
24598 || TREE_CODE (expr) == REAL_CST)
24599 return expr;
24600 /* Preserve THROW_EXPRs -- all throw-expressions have type "void".
24601 There is at least one place where we want to know that a
24602 particular expression is a throw-expression: when checking a ?:
24603 expression, there are special rules if the second or third
24604 argument is a throw-expression. */
24605 if (TREE_CODE (expr) == THROW_EXPR)
24606 return expr;
24608 /* Don't wrap an initializer list, we need to be able to look inside. */
24609 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
24610 return expr;
24612 /* Don't wrap a dummy object, we need to be able to test for it. */
24613 if (is_dummy_object (expr))
24614 return expr;
24616 if (TREE_CODE (expr) == COND_EXPR)
24617 return build3 (COND_EXPR,
24618 TREE_TYPE (expr),
24619 TREE_OPERAND (expr, 0),
24620 (TREE_OPERAND (expr, 1)
24621 ? build_non_dependent_expr (TREE_OPERAND (expr, 1))
24622 : build_non_dependent_expr (TREE_OPERAND (expr, 0))),
24623 build_non_dependent_expr (TREE_OPERAND (expr, 2)));
24624 if (TREE_CODE (expr) == COMPOUND_EXPR
24625 && !COMPOUND_EXPR_OVERLOADED (expr))
24626 return build2 (COMPOUND_EXPR,
24627 TREE_TYPE (expr),
24628 TREE_OPERAND (expr, 0),
24629 build_non_dependent_expr (TREE_OPERAND (expr, 1)));
24631 /* If the type is unknown, it can't really be non-dependent */
24632 gcc_assert (TREE_TYPE (expr) != unknown_type_node);
24634 /* Otherwise, build a NON_DEPENDENT_EXPR. */
24635 return build1 (NON_DEPENDENT_EXPR, TREE_TYPE (expr), expr);
24638 /* ARGS is a vector of expressions as arguments to a function call.
24639 Replace the arguments with equivalent non-dependent expressions.
24640 This modifies ARGS in place. */
24642 void
24643 make_args_non_dependent (vec<tree, va_gc> *args)
24645 unsigned int ix;
24646 tree arg;
24648 FOR_EACH_VEC_SAFE_ELT (args, ix, arg)
24650 tree newarg = build_non_dependent_expr (arg);
24651 if (newarg != arg)
24652 (*args)[ix] = newarg;
24656 /* Returns a type which represents 'auto' or 'decltype(auto)'. We use a
24657 TEMPLATE_TYPE_PARM with a level one deeper than the actual template
24658 parms. If set_canonical is true, we set TYPE_CANONICAL on it. */
24660 static tree
24661 make_auto_1 (tree name, bool set_canonical)
24663 tree au = cxx_make_type (TEMPLATE_TYPE_PARM);
24664 TYPE_NAME (au) = build_decl (input_location,
24665 TYPE_DECL, name, au);
24666 TYPE_STUB_DECL (au) = TYPE_NAME (au);
24667 TEMPLATE_TYPE_PARM_INDEX (au) = build_template_parm_index
24668 (0, processing_template_decl + 1, processing_template_decl + 1,
24669 TYPE_NAME (au), NULL_TREE);
24670 if (set_canonical)
24671 TYPE_CANONICAL (au) = canonical_type_parameter (au);
24672 DECL_ARTIFICIAL (TYPE_NAME (au)) = 1;
24673 SET_DECL_TEMPLATE_PARM_P (TYPE_NAME (au));
24675 return au;
24678 tree
24679 make_decltype_auto (void)
24681 return make_auto_1 (decltype_auto_identifier, true);
24684 tree
24685 make_auto (void)
24687 return make_auto_1 (auto_identifier, true);
24690 /* Return a C++17 deduction placeholder for class template TMPL. */
24692 tree
24693 make_template_placeholder (tree tmpl)
24695 tree t = make_auto_1 (DECL_NAME (tmpl), true);
24696 CLASS_PLACEHOLDER_TEMPLATE (t) = tmpl;
24697 return t;
24700 /* Make a "constrained auto" type-specifier. This is an
24701 auto type with constraints that must be associated after
24702 deduction. The constraint is formed from the given
24703 CONC and its optional sequence of arguments, which are
24704 non-null if written as partial-concept-id. */
24706 tree
24707 make_constrained_auto (tree con, tree args)
24709 tree type = make_auto_1 (auto_identifier, false);
24711 /* Build the constraint. */
24712 tree tmpl = DECL_TI_TEMPLATE (con);
24713 tree expr;
24714 if (VAR_P (con))
24715 expr = build_concept_check (tmpl, type, args);
24716 else
24717 expr = build_concept_check (build_overload (tmpl, NULL_TREE), type, args);
24719 tree constr = normalize_expression (expr);
24720 PLACEHOLDER_TYPE_CONSTRAINTS (type) = constr;
24722 /* Our canonical type depends on the constraint. */
24723 TYPE_CANONICAL (type) = canonical_type_parameter (type);
24725 /* Attach the constraint to the type declaration. */
24726 tree decl = TYPE_NAME (type);
24727 return decl;
24730 /* Given type ARG, return std::initializer_list<ARG>. */
24732 static tree
24733 listify (tree arg)
24735 tree std_init_list = namespace_binding
24736 (get_identifier ("initializer_list"), std_node);
24737 tree argvec;
24738 if (!std_init_list || !DECL_CLASS_TEMPLATE_P (std_init_list))
24740 error ("deducing from brace-enclosed initializer list requires "
24741 "#include <initializer_list>");
24742 return error_mark_node;
24744 argvec = make_tree_vec (1);
24745 TREE_VEC_ELT (argvec, 0) = arg;
24746 return lookup_template_class (std_init_list, argvec, NULL_TREE,
24747 NULL_TREE, 0, tf_warning_or_error);
24750 /* Replace auto in TYPE with std::initializer_list<auto>. */
24752 static tree
24753 listify_autos (tree type, tree auto_node)
24755 tree init_auto = listify (auto_node);
24756 tree argvec = make_tree_vec (1);
24757 TREE_VEC_ELT (argvec, 0) = init_auto;
24758 if (processing_template_decl)
24759 argvec = add_to_template_args (current_template_args (), argvec);
24760 return tsubst (type, argvec, tf_warning_or_error, NULL_TREE);
24763 /* Hash traits for hashing possibly constrained 'auto'
24764 TEMPLATE_TYPE_PARMs for use by do_auto_deduction. */
24766 struct auto_hash : default_hash_traits<tree>
24768 static inline hashval_t hash (tree);
24769 static inline bool equal (tree, tree);
24772 /* Hash the 'auto' T. */
24774 inline hashval_t
24775 auto_hash::hash (tree t)
24777 if (tree c = PLACEHOLDER_TYPE_CONSTRAINTS (t))
24778 /* Matching constrained-type-specifiers denote the same template
24779 parameter, so hash the constraint. */
24780 return hash_placeholder_constraint (c);
24781 else
24782 /* But unconstrained autos are all separate, so just hash the pointer. */
24783 return iterative_hash_object (t, 0);
24786 /* Compare two 'auto's. */
24788 inline bool
24789 auto_hash::equal (tree t1, tree t2)
24791 if (t1 == t2)
24792 return true;
24794 tree c1 = PLACEHOLDER_TYPE_CONSTRAINTS (t1);
24795 tree c2 = PLACEHOLDER_TYPE_CONSTRAINTS (t2);
24797 /* Two unconstrained autos are distinct. */
24798 if (!c1 || !c2)
24799 return false;
24801 return equivalent_placeholder_constraints (c1, c2);
24804 /* for_each_template_parm callback for extract_autos: if t is a (possibly
24805 constrained) auto, add it to the vector. */
24807 static int
24808 extract_autos_r (tree t, void *data)
24810 hash_table<auto_hash> &hash = *(hash_table<auto_hash>*)data;
24811 if (is_auto_or_concept (t))
24813 /* All the autos were built with index 0; fix that up now. */
24814 tree *p = hash.find_slot (t, INSERT);
24815 unsigned idx;
24816 if (*p)
24817 /* If this is a repeated constrained-type-specifier, use the index we
24818 chose before. */
24819 idx = TEMPLATE_PARM_IDX (TEMPLATE_TYPE_PARM_INDEX (*p));
24820 else
24822 /* Otherwise this is new, so use the current count. */
24823 *p = t;
24824 idx = hash.elements () - 1;
24826 TEMPLATE_PARM_IDX (TEMPLATE_TYPE_PARM_INDEX (t)) = idx;
24829 /* Always keep walking. */
24830 return 0;
24833 /* Return a TREE_VEC of the 'auto's used in type under the Concepts TS, which
24834 says they can appear anywhere in the type. */
24836 static tree
24837 extract_autos (tree type)
24839 hash_set<tree> visited;
24840 hash_table<auto_hash> hash (2);
24842 for_each_template_parm (type, extract_autos_r, &hash, &visited, true);
24844 tree tree_vec = make_tree_vec (hash.elements());
24845 for (hash_table<auto_hash>::iterator iter = hash.begin();
24846 iter != hash.end(); ++iter)
24848 tree elt = *iter;
24849 unsigned i = TEMPLATE_PARM_IDX (TEMPLATE_TYPE_PARM_INDEX (elt));
24850 TREE_VEC_ELT (tree_vec, i)
24851 = build_tree_list (NULL_TREE, TYPE_NAME (elt));
24854 return tree_vec;
24857 /* The stem for deduction guide names. */
24858 const char *const dguide_base = "__dguide_";
24860 /* Return the name for a deduction guide for class template TMPL. */
24862 tree
24863 dguide_name (tree tmpl)
24865 tree type = (TYPE_P (tmpl) ? tmpl : TREE_TYPE (tmpl));
24866 tree tname = TYPE_IDENTIFIER (type);
24867 char *buf = (char *) alloca (1 + strlen (dguide_base)
24868 + IDENTIFIER_LENGTH (tname));
24869 memcpy (buf, dguide_base, strlen (dguide_base));
24870 memcpy (buf + strlen (dguide_base), IDENTIFIER_POINTER (tname),
24871 IDENTIFIER_LENGTH (tname) + 1);
24872 tree dname = get_identifier (buf);
24873 TREE_TYPE (dname) = type;
24874 return dname;
24877 /* True if NAME is the name of a deduction guide. */
24879 bool
24880 dguide_name_p (tree name)
24882 return (TREE_TYPE (name)
24883 && !strncmp (IDENTIFIER_POINTER (name), dguide_base,
24884 strlen (dguide_base)));
24887 /* True if FN is a deduction guide. */
24889 bool
24890 deduction_guide_p (const_tree fn)
24892 if (DECL_P (fn))
24893 if (tree name = DECL_NAME (fn))
24894 return dguide_name_p (name);
24895 return false;
24898 /* True if FN is the copy deduction guide, i.e. A(A)->A. */
24900 bool
24901 copy_guide_p (const_tree fn)
24903 gcc_assert (deduction_guide_p (fn));
24904 if (!DECL_ARTIFICIAL (fn))
24905 return false;
24906 tree parms = FUNCTION_FIRST_USER_PARMTYPE (DECL_TI_TEMPLATE (fn));
24907 return (TREE_CHAIN (parms) == void_list_node
24908 && same_type_p (TREE_VALUE (parms), TREE_TYPE (DECL_NAME (fn))));
24911 /* True if FN is a guide generated from a constructor template. */
24913 bool
24914 template_guide_p (const_tree fn)
24916 gcc_assert (deduction_guide_p (fn));
24917 if (!DECL_ARTIFICIAL (fn))
24918 return false;
24919 if (tree ctor = DECL_ABSTRACT_ORIGIN (fn))
24921 tree tmpl = DECL_TI_TEMPLATE (ctor);
24922 return PRIMARY_TEMPLATE_P (tmpl);
24924 return false;
24927 /* OLDDECL is a _DECL for a template parameter. Return a similar parameter at
24928 LEVEL:INDEX, using tsubst_args and complain for substitution into non-type
24929 template parameter types. Note that the handling of template template
24930 parameters relies on current_template_parms being set appropriately for the
24931 new template. */
24933 static tree
24934 rewrite_template_parm (tree olddecl, unsigned index, unsigned level,
24935 tree tsubst_args, tsubst_flags_t complain)
24937 tree oldidx = get_template_parm_index (olddecl);
24939 tree newtype;
24940 if (TREE_CODE (olddecl) == TYPE_DECL
24941 || TREE_CODE (olddecl) == TEMPLATE_DECL)
24943 tree oldtype = TREE_TYPE (olddecl);
24944 newtype = cxx_make_type (TREE_CODE (oldtype));
24945 TYPE_MAIN_VARIANT (newtype) = newtype;
24946 if (TREE_CODE (oldtype) == TEMPLATE_TYPE_PARM)
24947 TEMPLATE_TYPE_PARM_FOR_CLASS (newtype)
24948 = TEMPLATE_TYPE_PARM_FOR_CLASS (oldtype);
24950 else
24951 newtype = tsubst (TREE_TYPE (olddecl), tsubst_args,
24952 complain, NULL_TREE);
24954 tree newdecl
24955 = build_decl (DECL_SOURCE_LOCATION (olddecl), TREE_CODE (olddecl),
24956 DECL_NAME (olddecl), newtype);
24957 SET_DECL_TEMPLATE_PARM_P (newdecl);
24959 tree newidx;
24960 if (TREE_CODE (olddecl) == TYPE_DECL
24961 || TREE_CODE (olddecl) == TEMPLATE_DECL)
24963 newidx = TEMPLATE_TYPE_PARM_INDEX (newtype)
24964 = build_template_parm_index (index, level, level,
24965 newdecl, newtype);
24966 TEMPLATE_PARM_PARAMETER_PACK (newidx)
24967 = TEMPLATE_PARM_PARAMETER_PACK (oldidx);
24968 TYPE_STUB_DECL (newtype) = TYPE_NAME (newtype) = newdecl;
24969 TYPE_CANONICAL (newtype) = canonical_type_parameter (newtype);
24971 if (TREE_CODE (olddecl) == TEMPLATE_DECL)
24973 DECL_TEMPLATE_RESULT (newdecl)
24974 = build_decl (DECL_SOURCE_LOCATION (olddecl), TYPE_DECL,
24975 DECL_NAME (olddecl), newtype);
24976 DECL_ARTIFICIAL (DECL_TEMPLATE_RESULT (newdecl)) = true;
24977 // First create a copy (ttargs) of tsubst_args with an
24978 // additional level for the template template parameter's own
24979 // template parameters (ttparms).
24980 tree ttparms = (INNERMOST_TEMPLATE_PARMS
24981 (DECL_TEMPLATE_PARMS (olddecl)));
24982 const int depth = TMPL_ARGS_DEPTH (tsubst_args);
24983 tree ttargs = make_tree_vec (depth + 1);
24984 for (int i = 0; i < depth; ++i)
24985 TREE_VEC_ELT (ttargs, i) = TREE_VEC_ELT (tsubst_args, i);
24986 TREE_VEC_ELT (ttargs, depth)
24987 = template_parms_level_to_args (ttparms);
24988 // Substitute ttargs into ttparms to fix references to
24989 // other template parameters.
24990 ttparms = tsubst_template_parms_level (ttparms, ttargs,
24991 complain);
24992 // Now substitute again with args based on tparms, to reduce
24993 // the level of the ttparms.
24994 ttargs = current_template_args ();
24995 ttparms = tsubst_template_parms_level (ttparms, ttargs,
24996 complain);
24997 // Finally, tack the adjusted parms onto tparms.
24998 ttparms = tree_cons (size_int (depth), ttparms,
24999 current_template_parms);
25000 DECL_TEMPLATE_PARMS (newdecl) = ttparms;
25003 else
25005 tree oldconst = TEMPLATE_PARM_DECL (oldidx);
25006 tree newconst
25007 = build_decl (DECL_SOURCE_LOCATION (oldconst),
25008 TREE_CODE (oldconst),
25009 DECL_NAME (oldconst), newtype);
25010 TREE_CONSTANT (newconst) = TREE_CONSTANT (newdecl)
25011 = TREE_READONLY (newconst) = TREE_READONLY (newdecl) = true;
25012 SET_DECL_TEMPLATE_PARM_P (newconst);
25013 newidx = build_template_parm_index (index, level, level,
25014 newconst, newtype);
25015 TEMPLATE_PARM_PARAMETER_PACK (newidx)
25016 = TEMPLATE_PARM_PARAMETER_PACK (oldidx);
25017 DECL_INITIAL (newdecl) = DECL_INITIAL (newconst) = newidx;
25020 return newdecl;
25023 /* Returns a C++17 class deduction guide template based on the constructor
25024 CTOR. As a special case, CTOR can be a RECORD_TYPE for an implicit default
25025 guide, or REFERENCE_TYPE for an implicit copy/move guide. */
25027 static tree
25028 build_deduction_guide (tree ctor, tree outer_args, tsubst_flags_t complain)
25030 tree type, tparms, targs, fparms, fargs, ci;
25031 bool memtmpl = false;
25032 bool explicit_p;
25033 location_t loc;
25035 if (TYPE_P (ctor))
25037 type = ctor;
25038 bool copy_p = TREE_CODE (type) == REFERENCE_TYPE;
25039 if (copy_p)
25041 type = TREE_TYPE (type);
25042 fparms = tree_cons (NULL_TREE, type, void_list_node);
25044 else
25045 fparms = void_list_node;
25047 tree ctmpl = CLASSTYPE_TI_TEMPLATE (type);
25048 tparms = DECL_TEMPLATE_PARMS (ctmpl);
25049 targs = CLASSTYPE_TI_ARGS (type);
25050 ci = NULL_TREE;
25051 fargs = NULL_TREE;
25052 loc = DECL_SOURCE_LOCATION (ctmpl);
25053 explicit_p = false;
25055 else
25057 if (outer_args)
25058 ctor = tsubst (ctor, outer_args, complain, ctor);
25059 type = DECL_CONTEXT (ctor);
25060 tree fn_tmpl;
25061 if (TREE_CODE (ctor) == TEMPLATE_DECL)
25063 fn_tmpl = ctor;
25064 ctor = DECL_TEMPLATE_RESULT (fn_tmpl);
25066 else
25067 fn_tmpl = DECL_TI_TEMPLATE (ctor);
25069 tparms = DECL_TEMPLATE_PARMS (fn_tmpl);
25070 /* If type is a member class template, DECL_TI_ARGS (ctor) will have
25071 fully specialized args for the enclosing class. Strip those off, as
25072 the deduction guide won't have those template parameters. */
25073 targs = get_innermost_template_args (DECL_TI_ARGS (ctor),
25074 TMPL_PARMS_DEPTH (tparms));
25075 /* Discard the 'this' parameter. */
25076 fparms = FUNCTION_ARG_CHAIN (ctor);
25077 fargs = TREE_CHAIN (DECL_ARGUMENTS (ctor));
25078 ci = get_constraints (ctor);
25079 loc = DECL_SOURCE_LOCATION (ctor);
25080 explicit_p = DECL_NONCONVERTING_P (ctor);
25082 if (PRIMARY_TEMPLATE_P (fn_tmpl))
25084 memtmpl = true;
25086 /* For a member template constructor, we need to flatten the two
25087 template parameter lists into one, and then adjust the function
25088 signature accordingly. This gets...complicated. */
25089 ++processing_template_decl;
25090 tree save_parms = current_template_parms;
25092 /* For a member template we should have two levels of parms/args, one
25093 for the class and one for the constructor. We stripped
25094 specialized args for further enclosing classes above. */
25095 const int depth = 2;
25096 gcc_assert (TMPL_ARGS_DEPTH (targs) == depth);
25098 /* Template args for translating references to the two-level template
25099 parameters into references to the one-level template parameters we
25100 are creating. */
25101 tree tsubst_args = copy_node (targs);
25102 TMPL_ARGS_LEVEL (tsubst_args, depth)
25103 = copy_node (TMPL_ARGS_LEVEL (tsubst_args, depth));
25105 /* Template parms for the constructor template. */
25106 tree ftparms = TREE_VALUE (tparms);
25107 unsigned flen = TREE_VEC_LENGTH (ftparms);
25108 /* Template parms for the class template. */
25109 tparms = TREE_CHAIN (tparms);
25110 tree ctparms = TREE_VALUE (tparms);
25111 unsigned clen = TREE_VEC_LENGTH (ctparms);
25112 /* Template parms for the deduction guide start as a copy of the
25113 template parms for the class. We set current_template_parms for
25114 lookup_template_class_1. */
25115 current_template_parms = tparms = copy_node (tparms);
25116 tree new_vec = TREE_VALUE (tparms) = make_tree_vec (flen + clen);
25117 for (unsigned i = 0; i < clen; ++i)
25118 TREE_VEC_ELT (new_vec, i) = TREE_VEC_ELT (ctparms, i);
25120 /* Now we need to rewrite the constructor parms to append them to the
25121 class parms. */
25122 for (unsigned i = 0; i < flen; ++i)
25124 unsigned index = i + clen;
25125 unsigned level = 1;
25126 tree oldelt = TREE_VEC_ELT (ftparms, i);
25127 tree olddecl = TREE_VALUE (oldelt);
25128 tree newdecl = rewrite_template_parm (olddecl, index, level,
25129 tsubst_args, complain);
25130 tree newdef = tsubst_template_arg (TREE_PURPOSE (oldelt),
25131 tsubst_args, complain, ctor);
25132 tree list = build_tree_list (newdef, newdecl);
25133 TEMPLATE_PARM_CONSTRAINTS (list)
25134 = tsubst_constraint_info (TEMPLATE_PARM_CONSTRAINTS (oldelt),
25135 tsubst_args, complain, ctor);
25136 TREE_VEC_ELT (new_vec, index) = list;
25137 TMPL_ARG (tsubst_args, depth, i) = template_parm_to_arg (list);
25140 /* Now we have a final set of template parms to substitute into the
25141 function signature. */
25142 targs = template_parms_to_args (tparms);
25143 fparms = tsubst_arg_types (fparms, tsubst_args, NULL_TREE,
25144 complain, ctor);
25145 fargs = tsubst (fargs, tsubst_args, complain, ctor);
25146 if (ci)
25147 ci = tsubst_constraint_info (ci, tsubst_args, complain, ctor);
25149 current_template_parms = save_parms;
25150 --processing_template_decl;
25154 if (!memtmpl)
25156 /* Copy the parms so we can set DECL_PRIMARY_TEMPLATE. */
25157 tparms = copy_node (tparms);
25158 INNERMOST_TEMPLATE_PARMS (tparms)
25159 = copy_node (INNERMOST_TEMPLATE_PARMS (tparms));
25162 tree fntype = build_function_type (type, fparms);
25163 tree ded_fn = build_lang_decl_loc (loc,
25164 FUNCTION_DECL,
25165 dguide_name (type), fntype);
25166 DECL_ARGUMENTS (ded_fn) = fargs;
25167 DECL_ARTIFICIAL (ded_fn) = true;
25168 DECL_NONCONVERTING_P (ded_fn) = explicit_p;
25169 tree ded_tmpl = build_template_decl (ded_fn, tparms, /*member*/false);
25170 DECL_ARTIFICIAL (ded_tmpl) = true;
25171 DECL_TEMPLATE_RESULT (ded_tmpl) = ded_fn;
25172 TREE_TYPE (ded_tmpl) = TREE_TYPE (ded_fn);
25173 DECL_TEMPLATE_INFO (ded_fn) = build_template_info (ded_tmpl, targs);
25174 DECL_PRIMARY_TEMPLATE (ded_tmpl) = ded_tmpl;
25175 if (DECL_P (ctor))
25176 DECL_ABSTRACT_ORIGIN (ded_fn) = ctor;
25177 if (ci)
25178 set_constraints (ded_tmpl, ci);
25180 return ded_tmpl;
25183 /* Deduce template arguments for the class template placeholder PTYPE for
25184 template TMPL based on the initializer INIT, and return the resulting
25185 type. */
25187 static tree
25188 do_class_deduction (tree ptype, tree tmpl, tree init, int flags,
25189 tsubst_flags_t complain)
25191 if (!DECL_CLASS_TEMPLATE_P (tmpl))
25193 /* We should have handled this in the caller. */
25194 if (DECL_TEMPLATE_TEMPLATE_PARM_P (tmpl))
25195 return ptype;
25196 if (complain & tf_error)
25197 error ("non-class template %qT used without template arguments", tmpl);
25198 return error_mark_node;
25201 tree type = TREE_TYPE (tmpl);
25203 vec<tree,va_gc> *args;
25204 if (init == NULL_TREE
25205 || TREE_CODE (init) == TREE_LIST)
25206 args = make_tree_vector_from_list (init);
25207 else if (BRACE_ENCLOSED_INITIALIZER_P (init)
25208 && !TYPE_HAS_LIST_CTOR (type)
25209 && !is_std_init_list (type))
25210 args = make_tree_vector_from_ctor (init);
25211 else
25212 args = make_tree_vector_single (init);
25214 tree dname = dguide_name (tmpl);
25215 tree cands = lookup_qualified_name (CP_DECL_CONTEXT (tmpl), dname,
25216 /*type*/false, /*complain*/false,
25217 /*hidden*/false);
25218 if (cands == error_mark_node)
25219 cands = NULL_TREE;
25221 tree outer_args = NULL_TREE;
25222 if (DECL_CLASS_SCOPE_P (tmpl)
25223 && CLASSTYPE_TEMPLATE_INFO (DECL_CONTEXT (tmpl)))
25225 outer_args = CLASSTYPE_TI_ARGS (DECL_CONTEXT (tmpl));
25226 type = TREE_TYPE (most_general_template (tmpl));
25229 bool saw_ctor = false;
25230 if (CLASSTYPE_METHOD_VEC (type))
25231 // FIXME cache artificial deduction guides
25232 for (tree fns = CLASSTYPE_CONSTRUCTORS (type); fns; fns = OVL_NEXT (fns))
25234 tree fn = OVL_CURRENT (fns);
25235 tree guide = build_deduction_guide (fn, outer_args, complain);
25236 cands = ovl_cons (guide, cands);
25238 saw_ctor = true;
25241 if (!saw_ctor && args->length() == 0)
25243 tree guide = build_deduction_guide (type, outer_args, complain);
25244 cands = ovl_cons (guide, cands);
25246 if (args->length() == 1)
25248 tree guide = build_deduction_guide (build_reference_type (type),
25249 outer_args, complain);
25250 cands = ovl_cons (guide, cands);
25253 /* Prune explicit deduction guides in copy-initialization context. */
25254 tree old_cands = cands;
25255 if (flags & LOOKUP_ONLYCONVERTING)
25257 tree t = cands;
25258 for (; t; t = OVL_NEXT (t))
25259 if (DECL_NONCONVERTING_P (STRIP_TEMPLATE (OVL_CURRENT (t))))
25260 break;
25261 if (t)
25263 tree pruned = NULL_TREE;
25264 for (t = cands; t; t = OVL_NEXT (t))
25266 tree f = OVL_CURRENT (t);
25267 if (!DECL_NONCONVERTING_P (STRIP_TEMPLATE (f)))
25268 pruned = build_overload (f, pruned);
25270 cands = pruned;
25271 if (cands == NULL_TREE)
25273 error ("cannot deduce template arguments for copy-initialization"
25274 " of %qT, as it has no non-explicit deduction guides or "
25275 "user-declared constructors", type);
25276 return error_mark_node;
25281 ++cp_unevaluated_operand;
25282 tree t = build_new_function_call (cands, &args, /*koenig*/false,
25283 tf_decltype);
25285 if (t == error_mark_node && (complain & tf_warning_or_error))
25287 error ("class template argument deduction failed:");
25288 t = build_new_function_call (cands, &args, /*koenig*/false,
25289 complain | tf_decltype);
25290 if (old_cands != cands)
25291 inform (input_location, "explicit deduction guides not considered "
25292 "for copy-initialization");
25295 --cp_unevaluated_operand;
25296 release_tree_vector (args);
25298 return TREE_TYPE (t);
25301 /* Replace occurrences of 'auto' in TYPE with the appropriate type deduced
25302 from INIT. AUTO_NODE is the TEMPLATE_TYPE_PARM used for 'auto' in TYPE. */
25304 tree
25305 do_auto_deduction (tree type, tree init, tree auto_node)
25307 return do_auto_deduction (type, init, auto_node,
25308 tf_warning_or_error,
25309 adc_unspecified);
25312 /* Replace occurrences of 'auto' in TYPE with the appropriate type deduced
25313 from INIT. AUTO_NODE is the TEMPLATE_TYPE_PARM used for 'auto' in TYPE.
25314 The CONTEXT determines the context in which auto deduction is performed
25315 and is used to control error diagnostics. FLAGS are the LOOKUP_* flags.
25316 OUTER_TARGS are used during template argument deduction
25317 (context == adc_unify) to properly substitute the result, and is ignored
25318 in other contexts.
25320 For partial-concept-ids, extra args may be appended to the list of deduced
25321 template arguments prior to determining constraint satisfaction. */
25323 tree
25324 do_auto_deduction (tree type, tree init, tree auto_node,
25325 tsubst_flags_t complain, auto_deduction_context context,
25326 tree outer_targs, int flags)
25328 tree targs;
25330 if (init == error_mark_node)
25331 return error_mark_node;
25333 if (init && type_dependent_expression_p (init)
25334 && context != adc_unify)
25335 /* Defining a subset of type-dependent expressions that we can deduce
25336 from ahead of time isn't worth the trouble. */
25337 return type;
25339 if (tree tmpl = CLASS_PLACEHOLDER_TEMPLATE (auto_node))
25340 /* C++17 class template argument deduction. */
25341 return do_class_deduction (type, tmpl, init, flags, complain);
25343 if (TREE_TYPE (init) == NULL_TREE)
25344 /* Nothing we can do with this, even in deduction context. */
25345 return type;
25347 /* [dcl.spec.auto]: Obtain P from T by replacing the occurrences of auto
25348 with either a new invented type template parameter U or, if the
25349 initializer is a braced-init-list (8.5.4), with
25350 std::initializer_list<U>. */
25351 if (BRACE_ENCLOSED_INITIALIZER_P (init))
25353 if (!DIRECT_LIST_INIT_P (init))
25354 type = listify_autos (type, auto_node);
25355 else if (CONSTRUCTOR_NELTS (init) == 1)
25356 init = CONSTRUCTOR_ELT (init, 0)->value;
25357 else
25359 if (complain & tf_warning_or_error)
25361 if (permerror (input_location, "direct-list-initialization of "
25362 "%<auto%> requires exactly one element"))
25363 inform (input_location,
25364 "for deduction to %<std::initializer_list%>, use copy-"
25365 "list-initialization (i.e. add %<=%> before the %<{%>)");
25367 type = listify_autos (type, auto_node);
25371 if (type == error_mark_node)
25372 return error_mark_node;
25374 init = resolve_nondeduced_context (init, complain);
25376 if (context == adc_decomp_type
25377 && auto_node == type
25378 && init != error_mark_node
25379 && TREE_CODE (TREE_TYPE (init)) == ARRAY_TYPE)
25380 /* [dcl.decomp]/1 - if decomposition declaration has no ref-qualifiers
25381 and initializer has array type, deduce cv-qualified array type. */
25382 return cp_build_qualified_type_real (TREE_TYPE (init), TYPE_QUALS (type),
25383 complain);
25384 else if (AUTO_IS_DECLTYPE (auto_node))
25386 bool id = (DECL_P (init)
25387 || ((TREE_CODE (init) == COMPONENT_REF
25388 || TREE_CODE (init) == SCOPE_REF)
25389 && !REF_PARENTHESIZED_P (init)));
25390 targs = make_tree_vec (1);
25391 TREE_VEC_ELT (targs, 0)
25392 = finish_decltype_type (init, id, tf_warning_or_error);
25393 if (type != auto_node)
25395 if (complain & tf_error)
25396 error ("%qT as type rather than plain %<decltype(auto)%>", type);
25397 return error_mark_node;
25400 else
25402 tree parms = build_tree_list (NULL_TREE, type);
25403 tree tparms;
25405 if (flag_concepts)
25406 tparms = extract_autos (type);
25407 else
25409 tparms = make_tree_vec (1);
25410 TREE_VEC_ELT (tparms, 0)
25411 = build_tree_list (NULL_TREE, TYPE_NAME (auto_node));
25414 targs = make_tree_vec (TREE_VEC_LENGTH (tparms));
25415 int val = type_unification_real (tparms, targs, parms, &init, 1, 0,
25416 DEDUCE_CALL, LOOKUP_NORMAL,
25417 NULL, /*explain_p=*/false);
25418 if (val > 0)
25420 if (processing_template_decl)
25421 /* Try again at instantiation time. */
25422 return type;
25423 if (type && type != error_mark_node
25424 && (complain & tf_error))
25425 /* If type is error_mark_node a diagnostic must have been
25426 emitted by now. Also, having a mention to '<type error>'
25427 in the diagnostic is not really useful to the user. */
25429 if (cfun && auto_node == current_function_auto_return_pattern
25430 && LAMBDA_FUNCTION_P (current_function_decl))
25431 error ("unable to deduce lambda return type from %qE", init);
25432 else
25433 error ("unable to deduce %qT from %qE", type, init);
25434 type_unification_real (tparms, targs, parms, &init, 1, 0,
25435 DEDUCE_CALL, LOOKUP_NORMAL,
25436 NULL, /*explain_p=*/true);
25438 return error_mark_node;
25442 /* Check any placeholder constraints against the deduced type. */
25443 if (flag_concepts && !processing_template_decl)
25444 if (tree constr = PLACEHOLDER_TYPE_CONSTRAINTS (auto_node))
25446 /* Use the deduced type to check the associated constraints. If we
25447 have a partial-concept-id, rebuild the argument list so that
25448 we check using the extra arguments. */
25449 gcc_assert (TREE_CODE (constr) == CHECK_CONSTR);
25450 tree cargs = CHECK_CONSTR_ARGS (constr);
25451 if (TREE_VEC_LENGTH (cargs) > 1)
25453 cargs = copy_node (cargs);
25454 TREE_VEC_ELT (cargs, 0) = TREE_VEC_ELT (targs, 0);
25456 else
25457 cargs = targs;
25458 if (!constraints_satisfied_p (constr, cargs))
25460 if (complain & tf_warning_or_error)
25462 switch (context)
25464 case adc_unspecified:
25465 case adc_unify:
25466 error("placeholder constraints not satisfied");
25467 break;
25468 case adc_variable_type:
25469 case adc_decomp_type:
25470 error ("deduced initializer does not satisfy "
25471 "placeholder constraints");
25472 break;
25473 case adc_return_type:
25474 error ("deduced return type does not satisfy "
25475 "placeholder constraints");
25476 break;
25477 case adc_requirement:
25478 error ("deduced expression type does not satisfy "
25479 "placeholder constraints");
25480 break;
25482 diagnose_constraints (input_location, constr, targs);
25484 return error_mark_node;
25488 if (processing_template_decl && context != adc_unify)
25489 outer_targs = current_template_args ();
25490 targs = add_to_template_args (outer_targs, targs);
25491 return tsubst (type, targs, complain, NULL_TREE);
25494 /* Substitutes LATE_RETURN_TYPE for 'auto' in TYPE and returns the
25495 result. */
25497 tree
25498 splice_late_return_type (tree type, tree late_return_type)
25500 if (is_auto (type))
25502 if (late_return_type)
25503 return late_return_type;
25505 tree idx = get_template_parm_index (type);
25506 if (TEMPLATE_PARM_LEVEL (idx) <= processing_template_decl)
25507 /* In an abbreviated function template we didn't know we were dealing
25508 with a function template when we saw the auto return type, so update
25509 it to have the correct level. */
25510 return make_auto_1 (TYPE_IDENTIFIER (type), true);
25512 return type;
25515 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto' or
25516 'decltype(auto)' or a deduced class template. */
25518 bool
25519 is_auto (const_tree type)
25521 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
25522 && (TYPE_IDENTIFIER (type) == auto_identifier
25523 || TYPE_IDENTIFIER (type) == decltype_auto_identifier
25524 || CLASS_PLACEHOLDER_TEMPLATE (type)))
25525 return true;
25526 else
25527 return false;
25530 /* for_each_template_parm callback for type_uses_auto. */
25533 is_auto_r (tree tp, void */*data*/)
25535 return is_auto_or_concept (tp);
25538 /* Returns the TEMPLATE_TYPE_PARM in TYPE representing `auto' iff TYPE contains
25539 a use of `auto'. Returns NULL_TREE otherwise. */
25541 tree
25542 type_uses_auto (tree type)
25544 if (type == NULL_TREE)
25545 return NULL_TREE;
25546 else if (flag_concepts)
25548 /* The Concepts TS allows multiple autos in one type-specifier; just
25549 return the first one we find, do_auto_deduction will collect all of
25550 them. */
25551 if (uses_template_parms (type))
25552 return for_each_template_parm (type, is_auto_r, /*data*/NULL,
25553 /*visited*/NULL, /*nondeduced*/true);
25554 else
25555 return NULL_TREE;
25557 else
25558 return find_type_usage (type, is_auto);
25561 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto',
25562 'decltype(auto)' or a concept. */
25564 bool
25565 is_auto_or_concept (const_tree type)
25567 return is_auto (type); // or concept
25570 /* Returns the TEMPLATE_TYPE_PARM in TYPE representing a generic type (`auto' or
25571 a concept identifier) iff TYPE contains a use of a generic type. Returns
25572 NULL_TREE otherwise. */
25574 tree
25575 type_uses_auto_or_concept (tree type)
25577 return find_type_usage (type, is_auto_or_concept);
25581 /* For a given template T, return the vector of typedefs referenced
25582 in T for which access check is needed at T instantiation time.
25583 T is either a FUNCTION_DECL or a RECORD_TYPE.
25584 Those typedefs were added to T by the function
25585 append_type_to_template_for_access_check. */
25587 vec<qualified_typedef_usage_t, va_gc> *
25588 get_types_needing_access_check (tree t)
25590 tree ti;
25591 vec<qualified_typedef_usage_t, va_gc> *result = NULL;
25593 if (!t || t == error_mark_node)
25594 return NULL;
25596 if (!(ti = get_template_info (t)))
25597 return NULL;
25599 if (CLASS_TYPE_P (t)
25600 || TREE_CODE (t) == FUNCTION_DECL)
25602 if (!TI_TEMPLATE (ti))
25603 return NULL;
25605 result = TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti);
25608 return result;
25611 /* Append the typedef TYPE_DECL used in template T to a list of typedefs
25612 tied to T. That list of typedefs will be access checked at
25613 T instantiation time.
25614 T is either a FUNCTION_DECL or a RECORD_TYPE.
25615 TYPE_DECL is a TYPE_DECL node representing a typedef.
25616 SCOPE is the scope through which TYPE_DECL is accessed.
25617 LOCATION is the location of the usage point of TYPE_DECL.
25619 This function is a subroutine of
25620 append_type_to_template_for_access_check. */
25622 static void
25623 append_type_to_template_for_access_check_1 (tree t,
25624 tree type_decl,
25625 tree scope,
25626 location_t location)
25628 qualified_typedef_usage_t typedef_usage;
25629 tree ti;
25631 if (!t || t == error_mark_node)
25632 return;
25634 gcc_assert ((TREE_CODE (t) == FUNCTION_DECL
25635 || CLASS_TYPE_P (t))
25636 && type_decl
25637 && TREE_CODE (type_decl) == TYPE_DECL
25638 && scope);
25640 if (!(ti = get_template_info (t)))
25641 return;
25643 gcc_assert (TI_TEMPLATE (ti));
25645 typedef_usage.typedef_decl = type_decl;
25646 typedef_usage.context = scope;
25647 typedef_usage.locus = location;
25649 vec_safe_push (TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti), typedef_usage);
25652 /* Append TYPE_DECL to the template TEMPL.
25653 TEMPL is either a class type, a FUNCTION_DECL or a a TEMPLATE_DECL.
25654 At TEMPL instanciation time, TYPE_DECL will be checked to see
25655 if it can be accessed through SCOPE.
25656 LOCATION is the location of the usage point of TYPE_DECL.
25658 e.g. consider the following code snippet:
25660 class C
25662 typedef int myint;
25665 template<class U> struct S
25667 C::myint mi; // <-- usage point of the typedef C::myint
25670 S<char> s;
25672 At S<char> instantiation time, we need to check the access of C::myint
25673 In other words, we need to check the access of the myint typedef through
25674 the C scope. For that purpose, this function will add the myint typedef
25675 and the scope C through which its being accessed to a list of typedefs
25676 tied to the template S. That list will be walked at template instantiation
25677 time and access check performed on each typedefs it contains.
25678 Note that this particular code snippet should yield an error because
25679 myint is private to C. */
25681 void
25682 append_type_to_template_for_access_check (tree templ,
25683 tree type_decl,
25684 tree scope,
25685 location_t location)
25687 qualified_typedef_usage_t *iter;
25688 unsigned i;
25690 gcc_assert (type_decl && (TREE_CODE (type_decl) == TYPE_DECL));
25692 /* Make sure we don't append the type to the template twice. */
25693 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (templ), i, iter)
25694 if (iter->typedef_decl == type_decl && scope == iter->context)
25695 return;
25697 append_type_to_template_for_access_check_1 (templ, type_decl,
25698 scope, location);
25701 /* Convert the generic type parameters in PARM that match the types given in the
25702 range [START_IDX, END_IDX) from the current_template_parms into generic type
25703 packs. */
25705 tree
25706 convert_generic_types_to_packs (tree parm, int start_idx, int end_idx)
25708 tree current = current_template_parms;
25709 int depth = TMPL_PARMS_DEPTH (current);
25710 current = INNERMOST_TEMPLATE_PARMS (current);
25711 tree replacement = make_tree_vec (TREE_VEC_LENGTH (current));
25713 for (int i = 0; i < start_idx; ++i)
25714 TREE_VEC_ELT (replacement, i)
25715 = TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (current, i)));
25717 for (int i = start_idx; i < end_idx; ++i)
25719 /* Create a distinct parameter pack type from the current parm and add it
25720 to the replacement args to tsubst below into the generic function
25721 parameter. */
25723 tree o = TREE_TYPE (TREE_VALUE
25724 (TREE_VEC_ELT (current, i)));
25725 tree t = copy_type (o);
25726 TEMPLATE_TYPE_PARM_INDEX (t)
25727 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (o),
25728 o, 0, 0, tf_none);
25729 TREE_TYPE (TEMPLATE_TYPE_DECL (t)) = t;
25730 TYPE_STUB_DECL (t) = TYPE_NAME (t) = TEMPLATE_TYPE_DECL (t);
25731 TYPE_MAIN_VARIANT (t) = t;
25732 TEMPLATE_TYPE_PARAMETER_PACK (t) = true;
25733 TYPE_CANONICAL (t) = canonical_type_parameter (t);
25734 TREE_VEC_ELT (replacement, i) = t;
25735 TREE_VALUE (TREE_VEC_ELT (current, i)) = TREE_CHAIN (t);
25738 for (int i = end_idx, e = TREE_VEC_LENGTH (current); i < e; ++i)
25739 TREE_VEC_ELT (replacement, i)
25740 = TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (current, i)));
25742 /* If there are more levels then build up the replacement with the outer
25743 template parms. */
25744 if (depth > 1)
25745 replacement = add_to_template_args (template_parms_to_args
25746 (TREE_CHAIN (current_template_parms)),
25747 replacement);
25749 return tsubst (parm, replacement, tf_none, NULL_TREE);
25752 /* Entries in the decl_constraint hash table. */
25753 struct GTY((for_user)) constr_entry
25755 tree decl;
25756 tree ci;
25759 /* Hashing function and equality for constraint entries. */
25760 struct constr_hasher : ggc_ptr_hash<constr_entry>
25762 static hashval_t hash (constr_entry *e)
25764 return (hashval_t)DECL_UID (e->decl);
25767 static bool equal (constr_entry *e1, constr_entry *e2)
25769 return e1->decl == e2->decl;
25773 /* A mapping from declarations to constraint information. Note that
25774 both templates and their underlying declarations are mapped to the
25775 same constraint information.
25777 FIXME: This is defined in pt.c because garbage collection
25778 code is not being generated for constraint.cc. */
25780 static GTY (()) hash_table<constr_hasher> *decl_constraints;
25782 /* Returns the template constraints of declaration T. If T is not
25783 constrained, return NULL_TREE. Note that T must be non-null. */
25785 tree
25786 get_constraints (tree t)
25788 if (!flag_concepts)
25789 return NULL_TREE;
25791 gcc_assert (DECL_P (t));
25792 if (TREE_CODE (t) == TEMPLATE_DECL)
25793 t = DECL_TEMPLATE_RESULT (t);
25794 constr_entry elt = { t, NULL_TREE };
25795 constr_entry* found = decl_constraints->find (&elt);
25796 if (found)
25797 return found->ci;
25798 else
25799 return NULL_TREE;
25802 /* Associate the given constraint information CI with the declaration
25803 T. If T is a template, then the constraints are associated with
25804 its underlying declaration. Don't build associations if CI is
25805 NULL_TREE. */
25807 void
25808 set_constraints (tree t, tree ci)
25810 if (!ci)
25811 return;
25812 gcc_assert (t && flag_concepts);
25813 if (TREE_CODE (t) == TEMPLATE_DECL)
25814 t = DECL_TEMPLATE_RESULT (t);
25815 gcc_assert (!get_constraints (t));
25816 constr_entry elt = {t, ci};
25817 constr_entry** slot = decl_constraints->find_slot (&elt, INSERT);
25818 constr_entry* entry = ggc_alloc<constr_entry> ();
25819 *entry = elt;
25820 *slot = entry;
25823 /* Remove the associated constraints of the declaration T. */
25825 void
25826 remove_constraints (tree t)
25828 gcc_assert (DECL_P (t));
25829 if (TREE_CODE (t) == TEMPLATE_DECL)
25830 t = DECL_TEMPLATE_RESULT (t);
25832 constr_entry elt = {t, NULL_TREE};
25833 constr_entry** slot = decl_constraints->find_slot (&elt, NO_INSERT);
25834 if (slot)
25835 decl_constraints->clear_slot (slot);
25838 /* Memoized satisfaction results for declarations. This
25839 maps the pair (constraint_info, arguments) to the result computed
25840 by constraints_satisfied_p. */
25842 struct GTY((for_user)) constraint_sat_entry
25844 tree ci;
25845 tree args;
25846 tree result;
25849 /* Hashing function and equality for constraint entries. */
25851 struct constraint_sat_hasher : ggc_ptr_hash<constraint_sat_entry>
25853 static hashval_t hash (constraint_sat_entry *e)
25855 hashval_t val = iterative_hash_object(e->ci, 0);
25856 return iterative_hash_template_arg (e->args, val);
25859 static bool equal (constraint_sat_entry *e1, constraint_sat_entry *e2)
25861 return e1->ci == e2->ci && comp_template_args (e1->args, e2->args);
25865 /* Memoized satisfaction results for concept checks. */
25867 struct GTY((for_user)) concept_spec_entry
25869 tree tmpl;
25870 tree args;
25871 tree result;
25874 /* Hashing function and equality for constraint entries. */
25876 struct concept_spec_hasher : ggc_ptr_hash<concept_spec_entry>
25878 static hashval_t hash (concept_spec_entry *e)
25880 return hash_tmpl_and_args (e->tmpl, e->args);
25883 static bool equal (concept_spec_entry *e1, concept_spec_entry *e2)
25885 ++comparing_specializations;
25886 bool eq = e1->tmpl == e2->tmpl && comp_template_args (e1->args, e2->args);
25887 --comparing_specializations;
25888 return eq;
25892 static GTY (()) hash_table<constraint_sat_hasher> *constraint_memos;
25893 static GTY (()) hash_table<concept_spec_hasher> *concept_memos;
25895 /* Search for a memoized satisfaction result. Returns one of the
25896 truth value nodes if previously memoized, or NULL_TREE otherwise. */
25898 tree
25899 lookup_constraint_satisfaction (tree ci, tree args)
25901 constraint_sat_entry elt = { ci, args, NULL_TREE };
25902 constraint_sat_entry* found = constraint_memos->find (&elt);
25903 if (found)
25904 return found->result;
25905 else
25906 return NULL_TREE;
25909 /* Memoize the result of a satisfication test. Returns the saved result. */
25911 tree
25912 memoize_constraint_satisfaction (tree ci, tree args, tree result)
25914 constraint_sat_entry elt = {ci, args, result};
25915 constraint_sat_entry** slot = constraint_memos->find_slot (&elt, INSERT);
25916 constraint_sat_entry* entry = ggc_alloc<constraint_sat_entry> ();
25917 *entry = elt;
25918 *slot = entry;
25919 return result;
25922 /* Search for a memoized satisfaction result for a concept. */
25924 tree
25925 lookup_concept_satisfaction (tree tmpl, tree args)
25927 concept_spec_entry elt = { tmpl, args, NULL_TREE };
25928 concept_spec_entry* found = concept_memos->find (&elt);
25929 if (found)
25930 return found->result;
25931 else
25932 return NULL_TREE;
25935 /* Memoize the result of a concept check. Returns the saved result. */
25937 tree
25938 memoize_concept_satisfaction (tree tmpl, tree args, tree result)
25940 concept_spec_entry elt = {tmpl, args, result};
25941 concept_spec_entry** slot = concept_memos->find_slot (&elt, INSERT);
25942 concept_spec_entry* entry = ggc_alloc<concept_spec_entry> ();
25943 *entry = elt;
25944 *slot = entry;
25945 return result;
25948 static GTY (()) hash_table<concept_spec_hasher> *concept_expansions;
25950 /* Returns a prior concept specialization. This returns the substituted
25951 and normalized constraints defined by the concept. */
25953 tree
25954 get_concept_expansion (tree tmpl, tree args)
25956 concept_spec_entry elt = { tmpl, args, NULL_TREE };
25957 concept_spec_entry* found = concept_expansions->find (&elt);
25958 if (found)
25959 return found->result;
25960 else
25961 return NULL_TREE;
25964 /* Save a concept expansion for later. */
25966 tree
25967 save_concept_expansion (tree tmpl, tree args, tree def)
25969 concept_spec_entry elt = {tmpl, args, def};
25970 concept_spec_entry** slot = concept_expansions->find_slot (&elt, INSERT);
25971 concept_spec_entry* entry = ggc_alloc<concept_spec_entry> ();
25972 *entry = elt;
25973 *slot = entry;
25974 return def;
25977 static hashval_t
25978 hash_subsumption_args (tree t1, tree t2)
25980 gcc_assert (TREE_CODE (t1) == CHECK_CONSTR);
25981 gcc_assert (TREE_CODE (t2) == CHECK_CONSTR);
25982 int val = 0;
25983 val = iterative_hash_object (CHECK_CONSTR_CONCEPT (t1), val);
25984 val = iterative_hash_template_arg (CHECK_CONSTR_ARGS (t1), val);
25985 val = iterative_hash_object (CHECK_CONSTR_CONCEPT (t2), val);
25986 val = iterative_hash_template_arg (CHECK_CONSTR_ARGS (t2), val);
25987 return val;
25990 /* Compare the constraints of two subsumption entries. The LEFT1 and
25991 LEFT2 arguments comprise the first subsumption pair and the RIGHT1
25992 and RIGHT2 arguments comprise the second. These are all CHECK_CONSTRs. */
25994 static bool
25995 comp_subsumption_args (tree left1, tree left2, tree right1, tree right2)
25997 if (CHECK_CONSTR_CONCEPT (left1) == CHECK_CONSTR_CONCEPT (right1))
25998 if (CHECK_CONSTR_CONCEPT (left2) == CHECK_CONSTR_CONCEPT (right2))
25999 if (comp_template_args (CHECK_CONSTR_ARGS (left1),
26000 CHECK_CONSTR_ARGS (right1)))
26001 return comp_template_args (CHECK_CONSTR_ARGS (left2),
26002 CHECK_CONSTR_ARGS (right2));
26003 return false;
26006 /* Key/value pair for learning and memoizing subsumption results. This
26007 associates a pair of check constraints (including arguments) with
26008 a boolean value indicating the result. */
26010 struct GTY((for_user)) subsumption_entry
26012 tree t1;
26013 tree t2;
26014 bool result;
26017 /* Hashing function and equality for constraint entries. */
26019 struct subsumption_hasher : ggc_ptr_hash<subsumption_entry>
26021 static hashval_t hash (subsumption_entry *e)
26023 return hash_subsumption_args (e->t1, e->t2);
26026 static bool equal (subsumption_entry *e1, subsumption_entry *e2)
26028 ++comparing_specializations;
26029 bool eq = comp_subsumption_args(e1->t1, e1->t2, e2->t1, e2->t2);
26030 --comparing_specializations;
26031 return eq;
26035 static GTY (()) hash_table<subsumption_hasher> *subsumption_table;
26037 /* Search for a previously cached subsumption result. */
26039 bool*
26040 lookup_subsumption_result (tree t1, tree t2)
26042 subsumption_entry elt = { t1, t2, false };
26043 subsumption_entry* found = subsumption_table->find (&elt);
26044 if (found)
26045 return &found->result;
26046 else
26047 return 0;
26050 /* Save a subsumption result. */
26052 bool
26053 save_subsumption_result (tree t1, tree t2, bool result)
26055 subsumption_entry elt = {t1, t2, result};
26056 subsumption_entry** slot = subsumption_table->find_slot (&elt, INSERT);
26057 subsumption_entry* entry = ggc_alloc<subsumption_entry> ();
26058 *entry = elt;
26059 *slot = entry;
26060 return result;
26063 /* Set up the hash table for constraint association. */
26065 void
26066 init_constraint_processing (void)
26068 if (!flag_concepts)
26069 return;
26071 decl_constraints = hash_table<constr_hasher>::create_ggc(37);
26072 constraint_memos = hash_table<constraint_sat_hasher>::create_ggc(37);
26073 concept_memos = hash_table<concept_spec_hasher>::create_ggc(37);
26074 concept_expansions = hash_table<concept_spec_hasher>::create_ggc(37);
26075 subsumption_table = hash_table<subsumption_hasher>::create_ggc(37);
26078 /* Set up the hash tables for template instantiations. */
26080 void
26081 init_template_processing (void)
26083 decl_specializations = hash_table<spec_hasher>::create_ggc (37);
26084 type_specializations = hash_table<spec_hasher>::create_ggc (37);
26087 /* Print stats about the template hash tables for -fstats. */
26089 void
26090 print_template_statistics (void)
26092 fprintf (stderr, "decl_specializations: size %ld, %ld elements, "
26093 "%f collisions\n", (long) decl_specializations->size (),
26094 (long) decl_specializations->elements (),
26095 decl_specializations->collisions ());
26096 fprintf (stderr, "type_specializations: size %ld, %ld elements, "
26097 "%f collisions\n", (long) type_specializations->size (),
26098 (long) type_specializations->elements (),
26099 type_specializations->collisions ());
26102 #include "gt-cp-pt.h"