PR c/7652
[official-gcc.git] / gcc / cp / pt.c
blob5d4f5efc79d5af272722d0376cbec1da5a484b84
1 /* Handle parameterized types (templates) for GNU -*- C++ -*-.
2 Copyright (C) 1992-2016 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);
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);
218 /* Make the current scope suitable for access checking when we are
219 processing T. T can be FUNCTION_DECL for instantiated function
220 template, VAR_DECL for static member variable, or TYPE_DECL for
221 alias template (needed by instantiate_decl). */
223 static void
224 push_access_scope (tree t)
226 gcc_assert (VAR_OR_FUNCTION_DECL_P (t)
227 || TREE_CODE (t) == TYPE_DECL);
229 if (DECL_FRIEND_CONTEXT (t))
230 push_nested_class (DECL_FRIEND_CONTEXT (t));
231 else if (DECL_CLASS_SCOPE_P (t))
232 push_nested_class (DECL_CONTEXT (t));
233 else
234 push_to_top_level ();
236 if (TREE_CODE (t) == FUNCTION_DECL)
238 saved_access_scope = tree_cons
239 (NULL_TREE, current_function_decl, saved_access_scope);
240 current_function_decl = t;
244 /* Restore the scope set up by push_access_scope. T is the node we
245 are processing. */
247 static void
248 pop_access_scope (tree t)
250 if (TREE_CODE (t) == FUNCTION_DECL)
252 current_function_decl = TREE_VALUE (saved_access_scope);
253 saved_access_scope = TREE_CHAIN (saved_access_scope);
256 if (DECL_FRIEND_CONTEXT (t) || DECL_CLASS_SCOPE_P (t))
257 pop_nested_class ();
258 else
259 pop_from_top_level ();
262 /* Do any processing required when DECL (a member template
263 declaration) is finished. Returns the TEMPLATE_DECL corresponding
264 to DECL, unless it is a specialization, in which case the DECL
265 itself is returned. */
267 tree
268 finish_member_template_decl (tree decl)
270 if (decl == error_mark_node)
271 return error_mark_node;
273 gcc_assert (DECL_P (decl));
275 if (TREE_CODE (decl) == TYPE_DECL)
277 tree type;
279 type = TREE_TYPE (decl);
280 if (type == error_mark_node)
281 return error_mark_node;
282 if (MAYBE_CLASS_TYPE_P (type)
283 && CLASSTYPE_TEMPLATE_INFO (type)
284 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
286 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
287 check_member_template (tmpl);
288 return tmpl;
290 return NULL_TREE;
292 else if (TREE_CODE (decl) == FIELD_DECL)
293 error ("data member %qD cannot be a member template", decl);
294 else if (DECL_TEMPLATE_INFO (decl))
296 if (!DECL_TEMPLATE_SPECIALIZATION (decl))
298 check_member_template (DECL_TI_TEMPLATE (decl));
299 return DECL_TI_TEMPLATE (decl);
301 else
302 return decl;
304 else
305 error ("invalid member template declaration %qD", decl);
307 return error_mark_node;
310 /* Create a template info node. */
312 tree
313 build_template_info (tree template_decl, tree template_args)
315 tree result = make_node (TEMPLATE_INFO);
316 TI_TEMPLATE (result) = template_decl;
317 TI_ARGS (result) = template_args;
318 return result;
321 /* Return the template info node corresponding to T, whatever T is. */
323 tree
324 get_template_info (const_tree t)
326 tree tinfo = NULL_TREE;
328 if (!t || t == error_mark_node)
329 return NULL;
331 if (TREE_CODE (t) == NAMESPACE_DECL
332 || TREE_CODE (t) == PARM_DECL)
333 return NULL;
335 if (DECL_P (t) && DECL_LANG_SPECIFIC (t))
336 tinfo = DECL_TEMPLATE_INFO (t);
338 if (!tinfo && DECL_IMPLICIT_TYPEDEF_P (t))
339 t = TREE_TYPE (t);
341 if (OVERLOAD_TYPE_P (t))
342 tinfo = TYPE_TEMPLATE_INFO (t);
343 else if (TREE_CODE (t) == BOUND_TEMPLATE_TEMPLATE_PARM)
344 tinfo = TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (t);
346 return tinfo;
349 /* Returns the template nesting level of the indicated class TYPE.
351 For example, in:
352 template <class T>
353 struct A
355 template <class U>
356 struct B {};
359 A<T>::B<U> has depth two, while A<T> has depth one.
360 Both A<T>::B<int> and A<int>::B<U> have depth one, if
361 they are instantiations, not specializations.
363 This function is guaranteed to return 0 if passed NULL_TREE so
364 that, for example, `template_class_depth (current_class_type)' is
365 always safe. */
368 template_class_depth (tree type)
370 int depth;
372 for (depth = 0; type && TREE_CODE (type) != NAMESPACE_DECL; )
374 tree tinfo = get_template_info (type);
376 if (tinfo && PRIMARY_TEMPLATE_P (TI_TEMPLATE (tinfo))
377 && uses_template_parms (INNERMOST_TEMPLATE_ARGS (TI_ARGS (tinfo))))
378 ++depth;
380 if (DECL_P (type))
381 type = CP_DECL_CONTEXT (type);
382 else if (LAMBDA_TYPE_P (type))
383 type = LAMBDA_TYPE_EXTRA_SCOPE (type);
384 else
385 type = CP_TYPE_CONTEXT (type);
388 return depth;
391 /* Subroutine of maybe_begin_member_template_processing.
392 Returns true if processing DECL needs us to push template parms. */
394 static bool
395 inline_needs_template_parms (tree decl, bool nsdmi)
397 if (!decl || (!nsdmi && ! DECL_TEMPLATE_INFO (decl)))
398 return false;
400 return (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (most_general_template (decl)))
401 > (processing_template_decl + DECL_TEMPLATE_SPECIALIZATION (decl)));
404 /* Subroutine of maybe_begin_member_template_processing.
405 Push the template parms in PARMS, starting from LEVELS steps into the
406 chain, and ending at the beginning, since template parms are listed
407 innermost first. */
409 static void
410 push_inline_template_parms_recursive (tree parmlist, int levels)
412 tree parms = TREE_VALUE (parmlist);
413 int i;
415 if (levels > 1)
416 push_inline_template_parms_recursive (TREE_CHAIN (parmlist), levels - 1);
418 ++processing_template_decl;
419 current_template_parms
420 = tree_cons (size_int (processing_template_decl),
421 parms, current_template_parms);
422 TEMPLATE_PARMS_FOR_INLINE (current_template_parms) = 1;
424 begin_scope (TREE_VEC_LENGTH (parms) ? sk_template_parms : sk_template_spec,
425 NULL);
426 for (i = 0; i < TREE_VEC_LENGTH (parms); ++i)
428 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
430 if (error_operand_p (parm))
431 continue;
433 gcc_assert (DECL_P (parm));
435 switch (TREE_CODE (parm))
437 case TYPE_DECL:
438 case TEMPLATE_DECL:
439 pushdecl (parm);
440 break;
442 case PARM_DECL:
443 /* Push the CONST_DECL. */
444 pushdecl (TEMPLATE_PARM_DECL (DECL_INITIAL (parm)));
445 break;
447 default:
448 gcc_unreachable ();
453 /* Restore the template parameter context for a member template, a
454 friend template defined in a class definition, or a non-template
455 member of template class. */
457 void
458 maybe_begin_member_template_processing (tree decl)
460 tree parms;
461 int levels = 0;
462 bool nsdmi = TREE_CODE (decl) == FIELD_DECL;
464 if (nsdmi)
466 tree ctx = DECL_CONTEXT (decl);
467 decl = (CLASSTYPE_TEMPLATE_INFO (ctx)
468 /* Disregard full specializations (c++/60999). */
469 && uses_template_parms (ctx)
470 ? CLASSTYPE_TI_TEMPLATE (ctx) : NULL_TREE);
473 if (inline_needs_template_parms (decl, nsdmi))
475 parms = DECL_TEMPLATE_PARMS (most_general_template (decl));
476 levels = TMPL_PARMS_DEPTH (parms) - processing_template_decl;
478 if (DECL_TEMPLATE_SPECIALIZATION (decl))
480 --levels;
481 parms = TREE_CHAIN (parms);
484 push_inline_template_parms_recursive (parms, levels);
487 /* Remember how many levels of template parameters we pushed so that
488 we can pop them later. */
489 inline_parm_levels.safe_push (levels);
492 /* Undo the effects of maybe_begin_member_template_processing. */
494 void
495 maybe_end_member_template_processing (void)
497 int i;
498 int last;
500 if (inline_parm_levels.length () == 0)
501 return;
503 last = inline_parm_levels.pop ();
504 for (i = 0; i < last; ++i)
506 --processing_template_decl;
507 current_template_parms = TREE_CHAIN (current_template_parms);
508 poplevel (0, 0, 0);
512 /* Return a new template argument vector which contains all of ARGS,
513 but has as its innermost set of arguments the EXTRA_ARGS. */
515 static tree
516 add_to_template_args (tree args, tree extra_args)
518 tree new_args;
519 int extra_depth;
520 int i;
521 int j;
523 if (args == NULL_TREE || extra_args == error_mark_node)
524 return extra_args;
526 extra_depth = TMPL_ARGS_DEPTH (extra_args);
527 new_args = make_tree_vec (TMPL_ARGS_DEPTH (args) + extra_depth);
529 for (i = 1; i <= TMPL_ARGS_DEPTH (args); ++i)
530 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (args, i));
532 for (j = 1; j <= extra_depth; ++j, ++i)
533 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (extra_args, j));
535 return new_args;
538 /* Like add_to_template_args, but only the outermost ARGS are added to
539 the EXTRA_ARGS. In particular, all but TMPL_ARGS_DEPTH
540 (EXTRA_ARGS) levels are added. This function is used to combine
541 the template arguments from a partial instantiation with the
542 template arguments used to attain the full instantiation from the
543 partial instantiation. */
545 static tree
546 add_outermost_template_args (tree args, tree extra_args)
548 tree new_args;
550 /* If there are more levels of EXTRA_ARGS than there are ARGS,
551 something very fishy is going on. */
552 gcc_assert (TMPL_ARGS_DEPTH (args) >= TMPL_ARGS_DEPTH (extra_args));
554 /* If *all* the new arguments will be the EXTRA_ARGS, just return
555 them. */
556 if (TMPL_ARGS_DEPTH (args) == TMPL_ARGS_DEPTH (extra_args))
557 return extra_args;
559 /* For the moment, we make ARGS look like it contains fewer levels. */
560 TREE_VEC_LENGTH (args) -= TMPL_ARGS_DEPTH (extra_args);
562 new_args = add_to_template_args (args, extra_args);
564 /* Now, we restore ARGS to its full dimensions. */
565 TREE_VEC_LENGTH (args) += TMPL_ARGS_DEPTH (extra_args);
567 return new_args;
570 /* Return the N levels of innermost template arguments from the ARGS. */
572 tree
573 get_innermost_template_args (tree args, int n)
575 tree new_args;
576 int extra_levels;
577 int i;
579 gcc_assert (n >= 0);
581 /* If N is 1, just return the innermost set of template arguments. */
582 if (n == 1)
583 return TMPL_ARGS_LEVEL (args, TMPL_ARGS_DEPTH (args));
585 /* If we're not removing anything, just return the arguments we were
586 given. */
587 extra_levels = TMPL_ARGS_DEPTH (args) - n;
588 gcc_assert (extra_levels >= 0);
589 if (extra_levels == 0)
590 return args;
592 /* Make a new set of arguments, not containing the outer arguments. */
593 new_args = make_tree_vec (n);
594 for (i = 1; i <= n; ++i)
595 SET_TMPL_ARGS_LEVEL (new_args, i,
596 TMPL_ARGS_LEVEL (args, i + extra_levels));
598 return new_args;
601 /* The inverse of get_innermost_template_args: Return all but the innermost
602 EXTRA_LEVELS levels of template arguments from the ARGS. */
604 static tree
605 strip_innermost_template_args (tree args, int extra_levels)
607 tree new_args;
608 int n = TMPL_ARGS_DEPTH (args) - extra_levels;
609 int i;
611 gcc_assert (n >= 0);
613 /* If N is 1, just return the outermost set of template arguments. */
614 if (n == 1)
615 return TMPL_ARGS_LEVEL (args, 1);
617 /* If we're not removing anything, just return the arguments we were
618 given. */
619 gcc_assert (extra_levels >= 0);
620 if (extra_levels == 0)
621 return args;
623 /* Make a new set of arguments, not containing the inner arguments. */
624 new_args = make_tree_vec (n);
625 for (i = 1; i <= n; ++i)
626 SET_TMPL_ARGS_LEVEL (new_args, i,
627 TMPL_ARGS_LEVEL (args, i));
629 return new_args;
632 /* We've got a template header coming up; push to a new level for storing
633 the parms. */
635 void
636 begin_template_parm_list (void)
638 /* We use a non-tag-transparent scope here, which causes pushtag to
639 put tags in this scope, rather than in the enclosing class or
640 namespace scope. This is the right thing, since we want
641 TEMPLATE_DECLS, and not TYPE_DECLS for template classes. For a
642 global template class, push_template_decl handles putting the
643 TEMPLATE_DECL into top-level scope. For a nested template class,
644 e.g.:
646 template <class T> struct S1 {
647 template <class T> struct S2 {};
650 pushtag contains special code to call pushdecl_with_scope on the
651 TEMPLATE_DECL for S2. */
652 begin_scope (sk_template_parms, NULL);
653 ++processing_template_decl;
654 ++processing_template_parmlist;
655 note_template_header (0);
657 /* Add a dummy parameter level while we process the parameter list. */
658 current_template_parms
659 = tree_cons (size_int (processing_template_decl),
660 make_tree_vec (0),
661 current_template_parms);
664 /* This routine is called when a specialization is declared. If it is
665 invalid to declare a specialization here, an error is reported and
666 false is returned, otherwise this routine will return true. */
668 static bool
669 check_specialization_scope (void)
671 tree scope = current_scope ();
673 /* [temp.expl.spec]
675 An explicit specialization shall be declared in the namespace of
676 which the template is a member, or, for member templates, in the
677 namespace of which the enclosing class or enclosing class
678 template is a member. An explicit specialization of a member
679 function, member class or static data member of a class template
680 shall be declared in the namespace of which the class template
681 is a member. */
682 if (scope && TREE_CODE (scope) != NAMESPACE_DECL)
684 error ("explicit specialization in non-namespace scope %qD", scope);
685 return false;
688 /* [temp.expl.spec]
690 In an explicit specialization declaration for a member of a class
691 template or a member template that appears in namespace scope,
692 the member template and some of its enclosing class templates may
693 remain unspecialized, except that the declaration shall not
694 explicitly specialize a class member template if its enclosing
695 class templates are not explicitly specialized as well. */
696 if (current_template_parms)
698 error ("enclosing class templates are not explicitly specialized");
699 return false;
702 return true;
705 /* We've just seen template <>. */
707 bool
708 begin_specialization (void)
710 begin_scope (sk_template_spec, NULL);
711 note_template_header (1);
712 return check_specialization_scope ();
715 /* Called at then end of processing a declaration preceded by
716 template<>. */
718 void
719 end_specialization (void)
721 finish_scope ();
722 reset_specialization ();
725 /* Any template <>'s that we have seen thus far are not referring to a
726 function specialization. */
728 void
729 reset_specialization (void)
731 processing_specialization = 0;
732 template_header_count = 0;
735 /* We've just seen a template header. If SPECIALIZATION is nonzero,
736 it was of the form template <>. */
738 static void
739 note_template_header (int specialization)
741 processing_specialization = specialization;
742 template_header_count++;
745 /* We're beginning an explicit instantiation. */
747 void
748 begin_explicit_instantiation (void)
750 gcc_assert (!processing_explicit_instantiation);
751 processing_explicit_instantiation = true;
755 void
756 end_explicit_instantiation (void)
758 gcc_assert (processing_explicit_instantiation);
759 processing_explicit_instantiation = false;
762 /* An explicit specialization or partial specialization of TMPL is being
763 declared. Check that the namespace in which the specialization is
764 occurring is permissible. Returns false iff it is invalid to
765 specialize TMPL in the current namespace. */
767 static bool
768 check_specialization_namespace (tree tmpl)
770 tree tpl_ns = decl_namespace_context (tmpl);
772 /* [tmpl.expl.spec]
774 An explicit specialization shall be declared in the namespace of
775 which the template is a member, or, for member templates, in the
776 namespace of which the enclosing class or enclosing class
777 template is a member. An explicit specialization of a member
778 function, member class or static data member of a class template
779 shall be declared in the namespace of which the class template is
780 a member. */
781 if (current_scope() != DECL_CONTEXT (tmpl)
782 && !at_namespace_scope_p ())
784 error ("specialization of %qD must appear at namespace scope", tmpl);
785 return false;
787 if (is_associated_namespace (current_namespace, tpl_ns))
788 /* Same or super-using namespace. */
789 return true;
790 else
792 permerror (input_location,
793 "specialization of %qD in different namespace", tmpl);
794 permerror (DECL_SOURCE_LOCATION (tmpl),
795 " from definition of %q#D", tmpl);
796 return false;
800 /* SPEC is an explicit instantiation. Check that it is valid to
801 perform this explicit instantiation in the current namespace. */
803 static void
804 check_explicit_instantiation_namespace (tree spec)
806 tree ns;
808 /* DR 275: An explicit instantiation shall appear in an enclosing
809 namespace of its template. */
810 ns = decl_namespace_context (spec);
811 if (!is_ancestor (current_namespace, ns))
812 permerror (input_location, "explicit instantiation of %qD in namespace %qD "
813 "(which does not enclose namespace %qD)",
814 spec, current_namespace, ns);
817 // Returns the type of a template specialization only if that
818 // specialization needs to be defined. Otherwise (e.g., if the type has
819 // already been defined), the function returns NULL_TREE.
820 static tree
821 maybe_new_partial_specialization (tree type)
823 // An implicit instantiation of an incomplete type implies
824 // the definition of a new class template.
826 // template<typename T>
827 // struct S;
829 // template<typename T>
830 // struct S<T*>;
832 // Here, S<T*> is an implicit instantiation of S whose type
833 // is incomplete.
834 if (CLASSTYPE_IMPLICIT_INSTANTIATION (type) && !COMPLETE_TYPE_P (type))
835 return type;
837 // It can also be the case that TYPE is a completed specialization.
838 // Continuing the previous example, suppose we also declare:
840 // template<typename T>
841 // requires Integral<T>
842 // struct S<T*>;
844 // Here, S<T*> refers to the specialization S<T*> defined
845 // above. However, we need to differentiate definitions because
846 // we intend to define a new partial specialization. In this case,
847 // we rely on the fact that the constraints are different for
848 // this declaration than that above.
850 // Note that we also get here for injected class names and
851 // late-parsed template definitions. We must ensure that we
852 // do not create new type declarations for those cases.
853 if (flag_concepts && CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
855 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
856 tree args = CLASSTYPE_TI_ARGS (type);
858 // If there are no template parameters, this cannot be a new
859 // partial template specializtion?
860 if (!current_template_parms)
861 return NULL_TREE;
863 // The injected-class-name is not a new partial specialization.
864 if (DECL_SELF_REFERENCE_P (TYPE_NAME (type)))
865 return NULL_TREE;
867 // If the constraints are not the same as those of the primary
868 // then, we can probably create a new specialization.
869 tree type_constr = current_template_constraints ();
871 if (type == TREE_TYPE (tmpl))
873 tree main_constr = get_constraints (tmpl);
874 if (equivalent_constraints (type_constr, main_constr))
875 return NULL_TREE;
878 // Also, if there's a pre-existing specialization with matching
879 // constraints, then this also isn't new.
880 tree specs = DECL_TEMPLATE_SPECIALIZATIONS (tmpl);
881 while (specs)
883 tree spec_tmpl = TREE_VALUE (specs);
884 tree spec_args = TREE_PURPOSE (specs);
885 tree spec_constr = get_constraints (spec_tmpl);
886 if (comp_template_args (args, spec_args)
887 && equivalent_constraints (type_constr, spec_constr))
888 return NULL_TREE;
889 specs = TREE_CHAIN (specs);
892 // Create a new type node (and corresponding type decl)
893 // for the newly declared specialization.
894 tree t = make_class_type (TREE_CODE (type));
895 CLASSTYPE_DECLARED_CLASS (t) = CLASSTYPE_DECLARED_CLASS (type);
896 TYPE_FOR_JAVA (t) = TYPE_FOR_JAVA (type);
897 SET_TYPE_TEMPLATE_INFO (t, build_template_info (tmpl, args));
899 /* We only need a separate type node for storing the definition of this
900 partial specialization; uses of S<T*> are unconstrained, so all are
901 equivalent. So keep TYPE_CANONICAL the same. */
902 TYPE_CANONICAL (t) = TYPE_CANONICAL (type);
904 // Build the corresponding type decl.
905 tree d = create_implicit_typedef (DECL_NAME (tmpl), t);
906 DECL_CONTEXT (d) = TYPE_CONTEXT (t);
907 DECL_SOURCE_LOCATION (d) = input_location;
909 return t;
912 return NULL_TREE;
915 /* The TYPE is being declared. If it is a template type, that means it
916 is a partial specialization. Do appropriate error-checking. */
918 tree
919 maybe_process_partial_specialization (tree type)
921 tree context;
923 if (type == error_mark_node)
924 return error_mark_node;
926 /* A lambda that appears in specialization context is not itself a
927 specialization. */
928 if (CLASS_TYPE_P (type) && CLASSTYPE_LAMBDA_EXPR (type))
929 return type;
931 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
933 error ("name of class shadows template template parameter %qD",
934 TYPE_NAME (type));
935 return error_mark_node;
938 context = TYPE_CONTEXT (type);
940 if (TYPE_ALIAS_P (type))
942 if (TYPE_TEMPLATE_INFO (type)
943 && DECL_ALIAS_TEMPLATE_P (TYPE_TI_TEMPLATE (type)))
944 error ("specialization of alias template %qD",
945 TYPE_TI_TEMPLATE (type));
946 else
947 error ("explicit specialization of non-template %qT", type);
948 return error_mark_node;
950 else if (CLASS_TYPE_P (type) && CLASSTYPE_USE_TEMPLATE (type))
952 /* This is for ordinary explicit specialization and partial
953 specialization of a template class such as:
955 template <> class C<int>;
959 template <class T> class C<T*>;
961 Make sure that `C<int>' and `C<T*>' are implicit instantiations. */
963 if (tree t = maybe_new_partial_specialization (type))
965 if (!check_specialization_namespace (CLASSTYPE_TI_TEMPLATE (t))
966 && !at_namespace_scope_p ())
967 return error_mark_node;
968 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (t);
969 DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (t)) = input_location;
970 if (processing_template_decl)
972 tree decl = push_template_decl (TYPE_MAIN_DECL (t));
973 if (decl == error_mark_node)
974 return error_mark_node;
975 return TREE_TYPE (decl);
978 else if (CLASSTYPE_TEMPLATE_INSTANTIATION (type))
979 error ("specialization of %qT after instantiation", type);
980 else if (errorcount && !processing_specialization
981 && CLASSTYPE_TEMPLATE_SPECIALIZATION (type)
982 && !uses_template_parms (CLASSTYPE_TI_ARGS (type)))
983 /* Trying to define a specialization either without a template<> header
984 or in an inappropriate place. We've already given an error, so just
985 bail now so we don't actually define the specialization. */
986 return error_mark_node;
988 else if (CLASS_TYPE_P (type)
989 && !CLASSTYPE_USE_TEMPLATE (type)
990 && CLASSTYPE_TEMPLATE_INFO (type)
991 && context && CLASS_TYPE_P (context)
992 && CLASSTYPE_TEMPLATE_INFO (context))
994 /* This is for an explicit specialization of member class
995 template according to [temp.expl.spec/18]:
997 template <> template <class U> class C<int>::D;
999 The context `C<int>' must be an implicit instantiation.
1000 Otherwise this is just a member class template declared
1001 earlier like:
1003 template <> class C<int> { template <class U> class D; };
1004 template <> template <class U> class C<int>::D;
1006 In the first case, `C<int>::D' is a specialization of `C<T>::D'
1007 while in the second case, `C<int>::D' is a primary template
1008 and `C<T>::D' may not exist. */
1010 if (CLASSTYPE_IMPLICIT_INSTANTIATION (context)
1011 && !COMPLETE_TYPE_P (type))
1013 tree t;
1014 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
1016 if (current_namespace
1017 != decl_namespace_context (tmpl))
1019 permerror (input_location,
1020 "specializing %q#T in different namespace", type);
1021 permerror (DECL_SOURCE_LOCATION (tmpl),
1022 " from definition of %q#D", tmpl);
1025 /* Check for invalid specialization after instantiation:
1027 template <> template <> class C<int>::D<int>;
1028 template <> template <class U> class C<int>::D; */
1030 for (t = DECL_TEMPLATE_INSTANTIATIONS (tmpl);
1031 t; t = TREE_CHAIN (t))
1033 tree inst = TREE_VALUE (t);
1034 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (inst)
1035 || !COMPLETE_OR_OPEN_TYPE_P (inst))
1037 /* We already have a full specialization of this partial
1038 instantiation, or a full specialization has been
1039 looked up but not instantiated. Reassign it to the
1040 new member specialization template. */
1041 spec_entry elt;
1042 spec_entry *entry;
1044 elt.tmpl = most_general_template (tmpl);
1045 elt.args = CLASSTYPE_TI_ARGS (inst);
1046 elt.spec = inst;
1048 type_specializations->remove_elt (&elt);
1050 elt.tmpl = tmpl;
1051 elt.args = INNERMOST_TEMPLATE_ARGS (elt.args);
1053 spec_entry **slot
1054 = type_specializations->find_slot (&elt, INSERT);
1055 entry = ggc_alloc<spec_entry> ();
1056 *entry = elt;
1057 *slot = entry;
1059 else
1060 /* But if we've had an implicit instantiation, that's a
1061 problem ([temp.expl.spec]/6). */
1062 error ("specialization %qT after instantiation %qT",
1063 type, inst);
1066 /* Mark TYPE as a specialization. And as a result, we only
1067 have one level of template argument for the innermost
1068 class template. */
1069 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
1070 DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)) = input_location;
1071 CLASSTYPE_TI_ARGS (type)
1072 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type));
1075 else if (processing_specialization)
1077 /* Someday C++0x may allow for enum template specialization. */
1078 if (cxx_dialect > cxx98 && TREE_CODE (type) == ENUMERAL_TYPE
1079 && CLASS_TYPE_P (context) && CLASSTYPE_USE_TEMPLATE (context))
1080 pedwarn (input_location, OPT_Wpedantic, "template specialization "
1081 "of %qD not allowed by ISO C++", type);
1082 else
1084 error ("explicit specialization of non-template %qT", type);
1085 return error_mark_node;
1089 return type;
1092 /* Returns nonzero if we can optimize the retrieval of specializations
1093 for TMPL, a TEMPLATE_DECL. In particular, for such a template, we
1094 do not use DECL_TEMPLATE_SPECIALIZATIONS at all. */
1096 static inline bool
1097 optimize_specialization_lookup_p (tree tmpl)
1099 return (DECL_FUNCTION_TEMPLATE_P (tmpl)
1100 && DECL_CLASS_SCOPE_P (tmpl)
1101 /* DECL_CLASS_SCOPE_P holds of T::f even if T is a template
1102 parameter. */
1103 && CLASS_TYPE_P (DECL_CONTEXT (tmpl))
1104 /* The optimized lookup depends on the fact that the
1105 template arguments for the member function template apply
1106 purely to the containing class, which is not true if the
1107 containing class is an explicit or partial
1108 specialization. */
1109 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (tmpl))
1110 && !DECL_MEMBER_TEMPLATE_P (tmpl)
1111 && !DECL_CONV_FN_P (tmpl)
1112 /* It is possible to have a template that is not a member
1113 template and is not a member of a template class:
1115 template <typename T>
1116 struct S { friend A::f(); };
1118 Here, the friend function is a template, but the context does
1119 not have template information. The optimized lookup relies
1120 on having ARGS be the template arguments for both the class
1121 and the function template. */
1122 && !DECL_FRIEND_P (DECL_TEMPLATE_RESULT (tmpl)));
1125 /* Make sure ARGS doesn't use any inappropriate typedefs; we should have
1126 gone through coerce_template_parms by now. */
1128 static void
1129 verify_unstripped_args (tree args)
1131 ++processing_template_decl;
1132 if (!any_dependent_template_arguments_p (args))
1134 tree inner = INNERMOST_TEMPLATE_ARGS (args);
1135 for (int i = 0; i < TREE_VEC_LENGTH (inner); ++i)
1137 tree arg = TREE_VEC_ELT (inner, i);
1138 if (TREE_CODE (arg) == TEMPLATE_DECL)
1139 /* OK */;
1140 else if (TYPE_P (arg))
1141 gcc_assert (strip_typedefs (arg, NULL) == arg);
1142 else if (strip_typedefs (TREE_TYPE (arg), NULL) != TREE_TYPE (arg))
1143 /* Allow typedefs on the type of a non-type argument, since a
1144 parameter can have them. */;
1145 else
1146 gcc_assert (strip_typedefs_expr (arg, NULL) == arg);
1149 --processing_template_decl;
1152 /* Retrieve the specialization (in the sense of [temp.spec] - a
1153 specialization is either an instantiation or an explicit
1154 specialization) of TMPL for the given template ARGS. If there is
1155 no such specialization, return NULL_TREE. The ARGS are a vector of
1156 arguments, or a vector of vectors of arguments, in the case of
1157 templates with more than one level of parameters.
1159 If TMPL is a type template and CLASS_SPECIALIZATIONS_P is true,
1160 then we search for a partial specialization matching ARGS. This
1161 parameter is ignored if TMPL is not a class template.
1163 We can also look up a FIELD_DECL, if it is a lambda capture pack; the
1164 result is a NONTYPE_ARGUMENT_PACK. */
1166 static tree
1167 retrieve_specialization (tree tmpl, tree args, hashval_t hash)
1169 if (tmpl == NULL_TREE)
1170 return NULL_TREE;
1172 if (args == error_mark_node)
1173 return NULL_TREE;
1175 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL
1176 || TREE_CODE (tmpl) == FIELD_DECL);
1178 /* There should be as many levels of arguments as there are
1179 levels of parameters. */
1180 gcc_assert (TMPL_ARGS_DEPTH (args)
1181 == (TREE_CODE (tmpl) == TEMPLATE_DECL
1182 ? TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl))
1183 : template_class_depth (DECL_CONTEXT (tmpl))));
1185 if (flag_checking)
1186 verify_unstripped_args (args);
1188 if (optimize_specialization_lookup_p (tmpl))
1190 tree class_template;
1191 tree class_specialization;
1192 vec<tree, va_gc> *methods;
1193 tree fns;
1194 int idx;
1196 /* The template arguments actually apply to the containing
1197 class. Find the class specialization with those
1198 arguments. */
1199 class_template = CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (tmpl));
1200 class_specialization
1201 = retrieve_specialization (class_template, args, 0);
1202 if (!class_specialization)
1203 return NULL_TREE;
1204 /* Now, find the appropriate entry in the CLASSTYPE_METHOD_VEC
1205 for the specialization. */
1206 idx = class_method_index_for_fn (class_specialization, tmpl);
1207 if (idx == -1)
1208 return NULL_TREE;
1209 /* Iterate through the methods with the indicated name, looking
1210 for the one that has an instance of TMPL. */
1211 methods = CLASSTYPE_METHOD_VEC (class_specialization);
1212 for (fns = (*methods)[idx]; fns; fns = OVL_NEXT (fns))
1214 tree fn = OVL_CURRENT (fns);
1215 if (DECL_TEMPLATE_INFO (fn) && DECL_TI_TEMPLATE (fn) == tmpl
1216 /* using-declarations can add base methods to the method vec,
1217 and we don't want those here. */
1218 && DECL_CONTEXT (fn) == class_specialization)
1219 return fn;
1221 return NULL_TREE;
1223 else
1225 spec_entry *found;
1226 spec_entry elt;
1227 hash_table<spec_hasher> *specializations;
1229 elt.tmpl = tmpl;
1230 elt.args = args;
1231 elt.spec = NULL_TREE;
1233 if (DECL_CLASS_TEMPLATE_P (tmpl))
1234 specializations = type_specializations;
1235 else
1236 specializations = decl_specializations;
1238 if (hash == 0)
1239 hash = spec_hasher::hash (&elt);
1240 found = specializations->find_with_hash (&elt, hash);
1241 if (found)
1242 return found->spec;
1245 return NULL_TREE;
1248 /* Like retrieve_specialization, but for local declarations. */
1250 tree
1251 retrieve_local_specialization (tree tmpl)
1253 if (local_specializations == NULL)
1254 return NULL_TREE;
1256 tree *slot = local_specializations->get (tmpl);
1257 return slot ? *slot : NULL_TREE;
1260 /* Returns nonzero iff DECL is a specialization of TMPL. */
1263 is_specialization_of (tree decl, tree tmpl)
1265 tree t;
1267 if (TREE_CODE (decl) == FUNCTION_DECL)
1269 for (t = decl;
1270 t != NULL_TREE;
1271 t = DECL_TEMPLATE_INFO (t) ? DECL_TI_TEMPLATE (t) : NULL_TREE)
1272 if (t == tmpl)
1273 return 1;
1275 else
1277 gcc_assert (TREE_CODE (decl) == TYPE_DECL);
1279 for (t = TREE_TYPE (decl);
1280 t != NULL_TREE;
1281 t = CLASSTYPE_USE_TEMPLATE (t)
1282 ? TREE_TYPE (CLASSTYPE_TI_TEMPLATE (t)) : NULL_TREE)
1283 if (same_type_ignoring_top_level_qualifiers_p (t, TREE_TYPE (tmpl)))
1284 return 1;
1287 return 0;
1290 /* Returns nonzero iff DECL is a specialization of friend declaration
1291 FRIEND_DECL according to [temp.friend]. */
1293 bool
1294 is_specialization_of_friend (tree decl, tree friend_decl)
1296 bool need_template = true;
1297 int template_depth;
1299 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL
1300 || TREE_CODE (decl) == TYPE_DECL);
1302 /* For [temp.friend/6] when FRIEND_DECL is an ordinary member function
1303 of a template class, we want to check if DECL is a specialization
1304 if this. */
1305 if (TREE_CODE (friend_decl) == FUNCTION_DECL
1306 && DECL_TEMPLATE_INFO (friend_decl)
1307 && !DECL_USE_TEMPLATE (friend_decl))
1309 /* We want a TEMPLATE_DECL for `is_specialization_of'. */
1310 friend_decl = DECL_TI_TEMPLATE (friend_decl);
1311 need_template = false;
1313 else if (TREE_CODE (friend_decl) == TEMPLATE_DECL
1314 && !PRIMARY_TEMPLATE_P (friend_decl))
1315 need_template = false;
1317 /* There is nothing to do if this is not a template friend. */
1318 if (TREE_CODE (friend_decl) != TEMPLATE_DECL)
1319 return false;
1321 if (is_specialization_of (decl, friend_decl))
1322 return true;
1324 /* [temp.friend/6]
1325 A member of a class template may be declared to be a friend of a
1326 non-template class. In this case, the corresponding member of
1327 every specialization of the class template is a friend of the
1328 class granting friendship.
1330 For example, given a template friend declaration
1332 template <class T> friend void A<T>::f();
1334 the member function below is considered a friend
1336 template <> struct A<int> {
1337 void f();
1340 For this type of template friend, TEMPLATE_DEPTH below will be
1341 nonzero. To determine if DECL is a friend of FRIEND, we first
1342 check if the enclosing class is a specialization of another. */
1344 template_depth = template_class_depth (CP_DECL_CONTEXT (friend_decl));
1345 if (template_depth
1346 && DECL_CLASS_SCOPE_P (decl)
1347 && is_specialization_of (TYPE_NAME (DECL_CONTEXT (decl)),
1348 CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (friend_decl))))
1350 /* Next, we check the members themselves. In order to handle
1351 a few tricky cases, such as when FRIEND_DECL's are
1353 template <class T> friend void A<T>::g(T t);
1354 template <class T> template <T t> friend void A<T>::h();
1356 and DECL's are
1358 void A<int>::g(int);
1359 template <int> void A<int>::h();
1361 we need to figure out ARGS, the template arguments from
1362 the context of DECL. This is required for template substitution
1363 of `T' in the function parameter of `g' and template parameter
1364 of `h' in the above examples. Here ARGS corresponds to `int'. */
1366 tree context = DECL_CONTEXT (decl);
1367 tree args = NULL_TREE;
1368 int current_depth = 0;
1370 while (current_depth < template_depth)
1372 if (CLASSTYPE_TEMPLATE_INFO (context))
1374 if (current_depth == 0)
1375 args = TYPE_TI_ARGS (context);
1376 else
1377 args = add_to_template_args (TYPE_TI_ARGS (context), args);
1378 current_depth++;
1380 context = TYPE_CONTEXT (context);
1383 if (TREE_CODE (decl) == FUNCTION_DECL)
1385 bool is_template;
1386 tree friend_type;
1387 tree decl_type;
1388 tree friend_args_type;
1389 tree decl_args_type;
1391 /* Make sure that both DECL and FRIEND_DECL are templates or
1392 non-templates. */
1393 is_template = DECL_TEMPLATE_INFO (decl)
1394 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl));
1395 if (need_template ^ is_template)
1396 return false;
1397 else if (is_template)
1399 /* If both are templates, check template parameter list. */
1400 tree friend_parms
1401 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_decl),
1402 args, tf_none);
1403 if (!comp_template_parms
1404 (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (decl)),
1405 friend_parms))
1406 return false;
1408 decl_type = TREE_TYPE (DECL_TI_TEMPLATE (decl));
1410 else
1411 decl_type = TREE_TYPE (decl);
1413 friend_type = tsubst_function_type (TREE_TYPE (friend_decl), args,
1414 tf_none, NULL_TREE);
1415 if (friend_type == error_mark_node)
1416 return false;
1418 /* Check if return types match. */
1419 if (!same_type_p (TREE_TYPE (decl_type), TREE_TYPE (friend_type)))
1420 return false;
1422 /* Check if function parameter types match, ignoring the
1423 `this' parameter. */
1424 friend_args_type = TYPE_ARG_TYPES (friend_type);
1425 decl_args_type = TYPE_ARG_TYPES (decl_type);
1426 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (friend_decl))
1427 friend_args_type = TREE_CHAIN (friend_args_type);
1428 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1429 decl_args_type = TREE_CHAIN (decl_args_type);
1431 return compparms (decl_args_type, friend_args_type);
1433 else
1435 /* DECL is a TYPE_DECL */
1436 bool is_template;
1437 tree decl_type = TREE_TYPE (decl);
1439 /* Make sure that both DECL and FRIEND_DECL are templates or
1440 non-templates. */
1441 is_template
1442 = CLASSTYPE_TEMPLATE_INFO (decl_type)
1443 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (decl_type));
1445 if (need_template ^ is_template)
1446 return false;
1447 else if (is_template)
1449 tree friend_parms;
1450 /* If both are templates, check the name of the two
1451 TEMPLATE_DECL's first because is_friend didn't. */
1452 if (DECL_NAME (CLASSTYPE_TI_TEMPLATE (decl_type))
1453 != DECL_NAME (friend_decl))
1454 return false;
1456 /* Now check template parameter list. */
1457 friend_parms
1458 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_decl),
1459 args, tf_none);
1460 return comp_template_parms
1461 (DECL_TEMPLATE_PARMS (CLASSTYPE_TI_TEMPLATE (decl_type)),
1462 friend_parms);
1464 else
1465 return (DECL_NAME (decl)
1466 == DECL_NAME (friend_decl));
1469 return false;
1472 /* Register the specialization SPEC as a specialization of TMPL with
1473 the indicated ARGS. IS_FRIEND indicates whether the specialization
1474 is actually just a friend declaration. Returns SPEC, or an
1475 equivalent prior declaration, if available.
1477 We also store instantiations of field packs in the hash table, even
1478 though they are not themselves templates, to make lookup easier. */
1480 static tree
1481 register_specialization (tree spec, tree tmpl, tree args, bool is_friend,
1482 hashval_t hash)
1484 tree fn;
1485 spec_entry **slot = NULL;
1486 spec_entry elt;
1488 gcc_assert ((TREE_CODE (tmpl) == TEMPLATE_DECL && DECL_P (spec))
1489 || (TREE_CODE (tmpl) == FIELD_DECL
1490 && TREE_CODE (spec) == NONTYPE_ARGUMENT_PACK));
1492 if (TREE_CODE (spec) == FUNCTION_DECL
1493 && uses_template_parms (DECL_TI_ARGS (spec)))
1494 /* This is the FUNCTION_DECL for a partial instantiation. Don't
1495 register it; we want the corresponding TEMPLATE_DECL instead.
1496 We use `uses_template_parms (DECL_TI_ARGS (spec))' rather than
1497 the more obvious `uses_template_parms (spec)' to avoid problems
1498 with default function arguments. In particular, given
1499 something like this:
1501 template <class T> void f(T t1, T t = T())
1503 the default argument expression is not substituted for in an
1504 instantiation unless and until it is actually needed. */
1505 return spec;
1507 if (optimize_specialization_lookup_p (tmpl))
1508 /* We don't put these specializations in the hash table, but we might
1509 want to give an error about a mismatch. */
1510 fn = retrieve_specialization (tmpl, args, 0);
1511 else
1513 elt.tmpl = tmpl;
1514 elt.args = args;
1515 elt.spec = spec;
1517 if (hash == 0)
1518 hash = spec_hasher::hash (&elt);
1520 slot =
1521 decl_specializations->find_slot_with_hash (&elt, hash, INSERT);
1522 if (*slot)
1523 fn = ((spec_entry *) *slot)->spec;
1524 else
1525 fn = NULL_TREE;
1528 /* We can sometimes try to re-register a specialization that we've
1529 already got. In particular, regenerate_decl_from_template calls
1530 duplicate_decls which will update the specialization list. But,
1531 we'll still get called again here anyhow. It's more convenient
1532 to simply allow this than to try to prevent it. */
1533 if (fn == spec)
1534 return spec;
1535 else if (fn && DECL_TEMPLATE_SPECIALIZATION (spec))
1537 if (DECL_TEMPLATE_INSTANTIATION (fn))
1539 if (DECL_ODR_USED (fn)
1540 || DECL_EXPLICIT_INSTANTIATION (fn))
1542 error ("specialization of %qD after instantiation",
1543 fn);
1544 return error_mark_node;
1546 else
1548 tree clone;
1549 /* This situation should occur only if the first
1550 specialization is an implicit instantiation, the
1551 second is an explicit specialization, and the
1552 implicit instantiation has not yet been used. That
1553 situation can occur if we have implicitly
1554 instantiated a member function and then specialized
1555 it later.
1557 We can also wind up here if a friend declaration that
1558 looked like an instantiation turns out to be a
1559 specialization:
1561 template <class T> void foo(T);
1562 class S { friend void foo<>(int) };
1563 template <> void foo(int);
1565 We transform the existing DECL in place so that any
1566 pointers to it become pointers to the updated
1567 declaration.
1569 If there was a definition for the template, but not
1570 for the specialization, we want this to look as if
1571 there were no definition, and vice versa. */
1572 DECL_INITIAL (fn) = NULL_TREE;
1573 duplicate_decls (spec, fn, is_friend);
1574 /* The call to duplicate_decls will have applied
1575 [temp.expl.spec]:
1577 An explicit specialization of a function template
1578 is inline only if it is explicitly declared to be,
1579 and independently of whether its function template
1582 to the primary function; now copy the inline bits to
1583 the various clones. */
1584 FOR_EACH_CLONE (clone, fn)
1586 DECL_DECLARED_INLINE_P (clone)
1587 = DECL_DECLARED_INLINE_P (fn);
1588 DECL_SOURCE_LOCATION (clone)
1589 = DECL_SOURCE_LOCATION (fn);
1590 DECL_DELETED_FN (clone)
1591 = DECL_DELETED_FN (fn);
1593 check_specialization_namespace (tmpl);
1595 return fn;
1598 else if (DECL_TEMPLATE_SPECIALIZATION (fn))
1600 if (!duplicate_decls (spec, fn, is_friend) && DECL_INITIAL (spec))
1601 /* Dup decl failed, but this is a new definition. Set the
1602 line number so any errors match this new
1603 definition. */
1604 DECL_SOURCE_LOCATION (fn) = DECL_SOURCE_LOCATION (spec);
1606 return fn;
1609 else if (fn)
1610 return duplicate_decls (spec, fn, is_friend);
1612 /* A specialization must be declared in the same namespace as the
1613 template it is specializing. */
1614 if (DECL_P (spec) && DECL_TEMPLATE_SPECIALIZATION (spec)
1615 && !check_specialization_namespace (tmpl))
1616 DECL_CONTEXT (spec) = DECL_CONTEXT (tmpl);
1618 if (slot != NULL /* !optimize_specialization_lookup_p (tmpl) */)
1620 spec_entry *entry = ggc_alloc<spec_entry> ();
1621 gcc_assert (tmpl && args && spec);
1622 *entry = elt;
1623 *slot = entry;
1624 if ((TREE_CODE (spec) == FUNCTION_DECL && DECL_NAMESPACE_SCOPE_P (spec)
1625 && PRIMARY_TEMPLATE_P (tmpl)
1626 && DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (tmpl)) == NULL_TREE)
1627 || variable_template_p (tmpl))
1628 /* If TMPL is a forward declaration of a template function, keep a list
1629 of all specializations in case we need to reassign them to a friend
1630 template later in tsubst_friend_function.
1632 Also keep a list of all variable template instantiations so that
1633 process_partial_specialization can check whether a later partial
1634 specialization would have used it. */
1635 DECL_TEMPLATE_INSTANTIATIONS (tmpl)
1636 = tree_cons (args, spec, DECL_TEMPLATE_INSTANTIATIONS (tmpl));
1639 return spec;
1642 /* Returns true iff two spec_entry nodes are equivalent. */
1644 int comparing_specializations;
1646 bool
1647 spec_hasher::equal (spec_entry *e1, spec_entry *e2)
1649 int equal;
1651 ++comparing_specializations;
1652 equal = (e1->tmpl == e2->tmpl
1653 && comp_template_args (e1->args, e2->args));
1654 if (equal && flag_concepts
1655 /* tmpl could be a FIELD_DECL for a capture pack. */
1656 && TREE_CODE (e1->tmpl) == TEMPLATE_DECL
1657 && VAR_P (DECL_TEMPLATE_RESULT (e1->tmpl))
1658 && uses_template_parms (e1->args))
1660 /* Partial specializations of a variable template can be distinguished by
1661 constraints. */
1662 tree c1 = e1->spec ? get_constraints (e1->spec) : NULL_TREE;
1663 tree c2 = e2->spec ? get_constraints (e2->spec) : NULL_TREE;
1664 equal = equivalent_constraints (c1, c2);
1666 --comparing_specializations;
1668 return equal;
1671 /* Returns a hash for a template TMPL and template arguments ARGS. */
1673 static hashval_t
1674 hash_tmpl_and_args (tree tmpl, tree args)
1676 hashval_t val = iterative_hash_object (DECL_UID (tmpl), 0);
1677 return iterative_hash_template_arg (args, val);
1680 /* Returns a hash for a spec_entry node based on the TMPL and ARGS members,
1681 ignoring SPEC. */
1683 hashval_t
1684 spec_hasher::hash (spec_entry *e)
1686 return hash_tmpl_and_args (e->tmpl, e->args);
1689 /* Recursively calculate a hash value for a template argument ARG, for use
1690 in the hash tables of template specializations. */
1692 hashval_t
1693 iterative_hash_template_arg (tree arg, hashval_t val)
1695 unsigned HOST_WIDE_INT i;
1696 enum tree_code code;
1697 char tclass;
1699 if (arg == NULL_TREE)
1700 return iterative_hash_object (arg, val);
1702 if (!TYPE_P (arg))
1703 STRIP_NOPS (arg);
1705 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
1706 gcc_unreachable ();
1708 code = TREE_CODE (arg);
1709 tclass = TREE_CODE_CLASS (code);
1711 val = iterative_hash_object (code, val);
1713 switch (code)
1715 case ERROR_MARK:
1716 return val;
1718 case IDENTIFIER_NODE:
1719 return iterative_hash_object (IDENTIFIER_HASH_VALUE (arg), val);
1721 case TREE_VEC:
1723 int i, len = TREE_VEC_LENGTH (arg);
1724 for (i = 0; i < len; ++i)
1725 val = iterative_hash_template_arg (TREE_VEC_ELT (arg, i), val);
1726 return val;
1729 case TYPE_PACK_EXPANSION:
1730 case EXPR_PACK_EXPANSION:
1731 val = iterative_hash_template_arg (PACK_EXPANSION_PATTERN (arg), val);
1732 return iterative_hash_template_arg (PACK_EXPANSION_EXTRA_ARGS (arg), val);
1734 case TYPE_ARGUMENT_PACK:
1735 case NONTYPE_ARGUMENT_PACK:
1736 return iterative_hash_template_arg (ARGUMENT_PACK_ARGS (arg), val);
1738 case TREE_LIST:
1739 for (; arg; arg = TREE_CHAIN (arg))
1740 val = iterative_hash_template_arg (TREE_VALUE (arg), val);
1741 return val;
1743 case OVERLOAD:
1744 for (; arg; arg = OVL_NEXT (arg))
1745 val = iterative_hash_template_arg (OVL_CURRENT (arg), val);
1746 return val;
1748 case CONSTRUCTOR:
1750 tree field, value;
1751 iterative_hash_template_arg (TREE_TYPE (arg), val);
1752 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (arg), i, field, value)
1754 val = iterative_hash_template_arg (field, val);
1755 val = iterative_hash_template_arg (value, val);
1757 return val;
1760 case PARM_DECL:
1761 if (!DECL_ARTIFICIAL (arg))
1763 val = iterative_hash_object (DECL_PARM_INDEX (arg), val);
1764 val = iterative_hash_object (DECL_PARM_LEVEL (arg), val);
1766 return iterative_hash_template_arg (TREE_TYPE (arg), val);
1768 case TARGET_EXPR:
1769 return iterative_hash_template_arg (TARGET_EXPR_INITIAL (arg), val);
1771 case PTRMEM_CST:
1772 val = iterative_hash_template_arg (PTRMEM_CST_CLASS (arg), val);
1773 return iterative_hash_template_arg (PTRMEM_CST_MEMBER (arg), val);
1775 case TEMPLATE_PARM_INDEX:
1776 val = iterative_hash_template_arg
1777 (TREE_TYPE (TEMPLATE_PARM_DECL (arg)), val);
1778 val = iterative_hash_object (TEMPLATE_PARM_LEVEL (arg), val);
1779 return iterative_hash_object (TEMPLATE_PARM_IDX (arg), val);
1781 case TRAIT_EXPR:
1782 val = iterative_hash_object (TRAIT_EXPR_KIND (arg), val);
1783 val = iterative_hash_template_arg (TRAIT_EXPR_TYPE1 (arg), val);
1784 return iterative_hash_template_arg (TRAIT_EXPR_TYPE2 (arg), val);
1786 case BASELINK:
1787 val = iterative_hash_template_arg (BINFO_TYPE (BASELINK_BINFO (arg)),
1788 val);
1789 return iterative_hash_template_arg (DECL_NAME (get_first_fn (arg)),
1790 val);
1792 case MODOP_EXPR:
1793 val = iterative_hash_template_arg (TREE_OPERAND (arg, 0), val);
1794 code = TREE_CODE (TREE_OPERAND (arg, 1));
1795 val = iterative_hash_object (code, val);
1796 return iterative_hash_template_arg (TREE_OPERAND (arg, 2), val);
1798 case LAMBDA_EXPR:
1799 /* A lambda can't appear in a template arg, but don't crash on
1800 erroneous input. */
1801 gcc_assert (seen_error ());
1802 return val;
1804 case CAST_EXPR:
1805 case IMPLICIT_CONV_EXPR:
1806 case STATIC_CAST_EXPR:
1807 case REINTERPRET_CAST_EXPR:
1808 case CONST_CAST_EXPR:
1809 case DYNAMIC_CAST_EXPR:
1810 case NEW_EXPR:
1811 val = iterative_hash_template_arg (TREE_TYPE (arg), val);
1812 /* Now hash operands as usual. */
1813 break;
1815 default:
1816 break;
1819 switch (tclass)
1821 case tcc_type:
1822 if (alias_template_specialization_p (arg))
1824 // We want an alias specialization that survived strip_typedefs
1825 // to hash differently from its TYPE_CANONICAL, to avoid hash
1826 // collisions that compare as different in template_args_equal.
1827 // These could be dependent specializations that strip_typedefs
1828 // left alone, or untouched specializations because
1829 // coerce_template_parms returns the unconverted template
1830 // arguments if it sees incomplete argument packs.
1831 tree ti = TYPE_TEMPLATE_INFO (arg);
1832 return hash_tmpl_and_args (TI_TEMPLATE (ti), TI_ARGS (ti));
1834 if (TYPE_CANONICAL (arg))
1835 return iterative_hash_object (TYPE_HASH (TYPE_CANONICAL (arg)),
1836 val);
1837 else if (TREE_CODE (arg) == DECLTYPE_TYPE)
1838 return iterative_hash_template_arg (DECLTYPE_TYPE_EXPR (arg), val);
1839 /* Otherwise just compare the types during lookup. */
1840 return val;
1842 case tcc_declaration:
1843 case tcc_constant:
1844 return iterative_hash_expr (arg, val);
1846 default:
1847 gcc_assert (IS_EXPR_CODE_CLASS (tclass));
1849 unsigned n = cp_tree_operand_length (arg);
1850 for (i = 0; i < n; ++i)
1851 val = iterative_hash_template_arg (TREE_OPERAND (arg, i), val);
1852 return val;
1855 gcc_unreachable ();
1856 return 0;
1859 /* Unregister the specialization SPEC as a specialization of TMPL.
1860 Replace it with NEW_SPEC, if NEW_SPEC is non-NULL. Returns true
1861 if the SPEC was listed as a specialization of TMPL.
1863 Note that SPEC has been ggc_freed, so we can't look inside it. */
1865 bool
1866 reregister_specialization (tree spec, tree tinfo, tree new_spec)
1868 spec_entry *entry;
1869 spec_entry elt;
1871 elt.tmpl = most_general_template (TI_TEMPLATE (tinfo));
1872 elt.args = TI_ARGS (tinfo);
1873 elt.spec = NULL_TREE;
1875 entry = decl_specializations->find (&elt);
1876 if (entry != NULL)
1878 gcc_assert (entry->spec == spec || entry->spec == new_spec);
1879 gcc_assert (new_spec != NULL_TREE);
1880 entry->spec = new_spec;
1881 return 1;
1884 return 0;
1887 /* Like register_specialization, but for local declarations. We are
1888 registering SPEC, an instantiation of TMPL. */
1890 void
1891 register_local_specialization (tree spec, tree tmpl)
1893 local_specializations->put (tmpl, spec);
1896 /* TYPE is a class type. Returns true if TYPE is an explicitly
1897 specialized class. */
1899 bool
1900 explicit_class_specialization_p (tree type)
1902 if (!CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
1903 return false;
1904 return !uses_template_parms (CLASSTYPE_TI_ARGS (type));
1907 /* Print the list of functions at FNS, going through all the overloads
1908 for each element of the list. Alternatively, FNS can not be a
1909 TREE_LIST, in which case it will be printed together with all the
1910 overloads.
1912 MORE and *STR should respectively be FALSE and NULL when the function
1913 is called from the outside. They are used internally on recursive
1914 calls. print_candidates manages the two parameters and leaves NULL
1915 in *STR when it ends. */
1917 static void
1918 print_candidates_1 (tree fns, bool more, const char **str)
1920 tree fn, fn2;
1921 char *spaces = NULL;
1923 for (fn = fns; fn; fn = OVL_NEXT (fn))
1924 if (TREE_CODE (fn) == TREE_LIST)
1926 for (fn2 = fn; fn2 != NULL_TREE; fn2 = TREE_CHAIN (fn2))
1927 print_candidates_1 (TREE_VALUE (fn2),
1928 TREE_CHAIN (fn2) || more, str);
1930 else
1932 tree cand = OVL_CURRENT (fn);
1933 if (!*str)
1935 /* Pick the prefix string. */
1936 if (!more && !OVL_NEXT (fns))
1938 inform (DECL_SOURCE_LOCATION (cand),
1939 "candidate is: %#D", cand);
1940 continue;
1943 *str = _("candidates are:");
1944 spaces = get_spaces (*str);
1946 inform (DECL_SOURCE_LOCATION (cand), "%s %#D", *str, cand);
1947 *str = spaces ? spaces : *str;
1950 if (!more)
1952 free (spaces);
1953 *str = NULL;
1957 /* Print the list of candidate FNS in an error message. FNS can also
1958 be a TREE_LIST of non-functions in the case of an ambiguous lookup. */
1960 void
1961 print_candidates (tree fns)
1963 const char *str = NULL;
1964 print_candidates_1 (fns, false, &str);
1965 gcc_assert (str == NULL);
1968 /* Get a (possibly) constrained template declaration for the
1969 purpose of ordering candidates. */
1970 static tree
1971 get_template_for_ordering (tree list)
1973 gcc_assert (TREE_CODE (list) == TREE_LIST);
1974 tree f = TREE_VALUE (list);
1975 if (tree ti = DECL_TEMPLATE_INFO (f))
1976 return TI_TEMPLATE (ti);
1977 return f;
1980 /* Among candidates having the same signature, return the
1981 most constrained or NULL_TREE if there is no best candidate.
1982 If the signatures of candidates vary (e.g., template
1983 specialization vs. member function), then there can be no
1984 most constrained.
1986 Note that we don't compare constraints on the functions
1987 themselves, but rather those of their templates. */
1988 static tree
1989 most_constrained_function (tree candidates)
1991 // Try to find the best candidate in a first pass.
1992 tree champ = candidates;
1993 for (tree c = TREE_CHAIN (champ); c; c = TREE_CHAIN (c))
1995 int winner = more_constrained (get_template_for_ordering (champ),
1996 get_template_for_ordering (c));
1997 if (winner == -1)
1998 champ = c; // The candidate is more constrained
1999 else if (winner == 0)
2000 return NULL_TREE; // Neither is more constrained
2003 // Verify that the champ is better than previous candidates.
2004 for (tree c = candidates; c != champ; c = TREE_CHAIN (c)) {
2005 if (!more_constrained (get_template_for_ordering (champ),
2006 get_template_for_ordering (c)))
2007 return NULL_TREE;
2010 return champ;
2014 /* Returns the template (one of the functions given by TEMPLATE_ID)
2015 which can be specialized to match the indicated DECL with the
2016 explicit template args given in TEMPLATE_ID. The DECL may be
2017 NULL_TREE if none is available. In that case, the functions in
2018 TEMPLATE_ID are non-members.
2020 If NEED_MEMBER_TEMPLATE is nonzero the function is known to be a
2021 specialization of a member template.
2023 The TEMPLATE_COUNT is the number of references to qualifying
2024 template classes that appeared in the name of the function. See
2025 check_explicit_specialization for a more accurate description.
2027 TSK indicates what kind of template declaration (if any) is being
2028 declared. TSK_TEMPLATE indicates that the declaration given by
2029 DECL, though a FUNCTION_DECL, has template parameters, and is
2030 therefore a template function.
2032 The template args (those explicitly specified and those deduced)
2033 are output in a newly created vector *TARGS_OUT.
2035 If it is impossible to determine the result, an error message is
2036 issued. The error_mark_node is returned to indicate failure. */
2038 static tree
2039 determine_specialization (tree template_id,
2040 tree decl,
2041 tree* targs_out,
2042 int need_member_template,
2043 int template_count,
2044 tmpl_spec_kind tsk)
2046 tree fns;
2047 tree targs;
2048 tree explicit_targs;
2049 tree candidates = NULL_TREE;
2051 /* A TREE_LIST of templates of which DECL may be a specialization.
2052 The TREE_VALUE of each node is a TEMPLATE_DECL. The
2053 corresponding TREE_PURPOSE is the set of template arguments that,
2054 when used to instantiate the template, would produce a function
2055 with the signature of DECL. */
2056 tree templates = NULL_TREE;
2057 int header_count;
2058 cp_binding_level *b;
2060 *targs_out = NULL_TREE;
2062 if (template_id == error_mark_node || decl == error_mark_node)
2063 return error_mark_node;
2065 /* We shouldn't be specializing a member template of an
2066 unspecialized class template; we already gave an error in
2067 check_specialization_scope, now avoid crashing. */
2068 if (template_count && DECL_CLASS_SCOPE_P (decl)
2069 && template_class_depth (DECL_CONTEXT (decl)) > 0)
2071 gcc_assert (errorcount);
2072 return error_mark_node;
2075 fns = TREE_OPERAND (template_id, 0);
2076 explicit_targs = TREE_OPERAND (template_id, 1);
2078 if (fns == error_mark_node)
2079 return error_mark_node;
2081 /* Check for baselinks. */
2082 if (BASELINK_P (fns))
2083 fns = BASELINK_FUNCTIONS (fns);
2085 if (TREE_CODE (decl) == FUNCTION_DECL && !is_overloaded_fn (fns))
2087 error ("%qD is not a function template", fns);
2088 return error_mark_node;
2090 else if (VAR_P (decl) && !variable_template_p (fns))
2092 error ("%qD is not a variable template", fns);
2093 return error_mark_node;
2096 /* Count the number of template headers specified for this
2097 specialization. */
2098 header_count = 0;
2099 for (b = current_binding_level;
2100 b->kind == sk_template_parms;
2101 b = b->level_chain)
2102 ++header_count;
2104 tree orig_fns = fns;
2106 if (variable_template_p (fns))
2108 tree parms = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (fns));
2109 targs = coerce_template_parms (parms, explicit_targs, fns,
2110 tf_warning_or_error,
2111 /*req_all*/true, /*use_defarg*/true);
2112 if (targs != error_mark_node)
2113 templates = tree_cons (targs, fns, templates);
2115 else for (; fns; fns = OVL_NEXT (fns))
2117 tree fn = OVL_CURRENT (fns);
2119 if (TREE_CODE (fn) == TEMPLATE_DECL)
2121 tree decl_arg_types;
2122 tree fn_arg_types;
2123 tree insttype;
2125 /* In case of explicit specialization, we need to check if
2126 the number of template headers appearing in the specialization
2127 is correct. This is usually done in check_explicit_specialization,
2128 but the check done there cannot be exhaustive when specializing
2129 member functions. Consider the following code:
2131 template <> void A<int>::f(int);
2132 template <> template <> void A<int>::f(int);
2134 Assuming that A<int> is not itself an explicit specialization
2135 already, the first line specializes "f" which is a non-template
2136 member function, whilst the second line specializes "f" which
2137 is a template member function. So both lines are syntactically
2138 correct, and check_explicit_specialization does not reject
2139 them.
2141 Here, we can do better, as we are matching the specialization
2142 against the declarations. We count the number of template
2143 headers, and we check if they match TEMPLATE_COUNT + 1
2144 (TEMPLATE_COUNT is the number of qualifying template classes,
2145 plus there must be another header for the member template
2146 itself).
2148 Notice that if header_count is zero, this is not a
2149 specialization but rather a template instantiation, so there
2150 is no check we can perform here. */
2151 if (header_count && header_count != template_count + 1)
2152 continue;
2154 /* Check that the number of template arguments at the
2155 innermost level for DECL is the same as for FN. */
2156 if (current_binding_level->kind == sk_template_parms
2157 && !current_binding_level->explicit_spec_p
2158 && (TREE_VEC_LENGTH (DECL_INNERMOST_TEMPLATE_PARMS (fn))
2159 != TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS
2160 (current_template_parms))))
2161 continue;
2163 /* DECL might be a specialization of FN. */
2164 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
2165 fn_arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn));
2167 /* For a non-static member function, we need to make sure
2168 that the const qualification is the same. Since
2169 get_bindings does not try to merge the "this" parameter,
2170 we must do the comparison explicitly. */
2171 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
2172 && !same_type_p (TREE_VALUE (fn_arg_types),
2173 TREE_VALUE (decl_arg_types)))
2174 continue;
2176 /* Skip the "this" parameter and, for constructors of
2177 classes with virtual bases, the VTT parameter. A
2178 full specialization of a constructor will have a VTT
2179 parameter, but a template never will. */
2180 decl_arg_types
2181 = skip_artificial_parms_for (decl, decl_arg_types);
2182 fn_arg_types
2183 = skip_artificial_parms_for (fn, fn_arg_types);
2185 /* Function templates cannot be specializations; there are
2186 no partial specializations of functions. Therefore, if
2187 the type of DECL does not match FN, there is no
2188 match.
2190 Note that it should never be the case that we have both
2191 candidates added here, and for regular member functions
2192 below. */
2193 if (tsk == tsk_template)
2195 if (compparms (fn_arg_types, decl_arg_types))
2196 candidates = tree_cons (NULL_TREE, fn, candidates);
2197 continue;
2200 /* See whether this function might be a specialization of this
2201 template. Suppress access control because we might be trying
2202 to make this specialization a friend, and we have already done
2203 access control for the declaration of the specialization. */
2204 push_deferring_access_checks (dk_no_check);
2205 targs = get_bindings (fn, decl, explicit_targs, /*check_ret=*/true);
2206 pop_deferring_access_checks ();
2208 if (!targs)
2209 /* We cannot deduce template arguments that when used to
2210 specialize TMPL will produce DECL. */
2211 continue;
2213 /* Remove, from the set of candidates, all those functions
2214 whose constraints are not satisfied. */
2215 if (flag_concepts && !constraints_satisfied_p (fn, targs))
2216 continue;
2218 // Then, try to form the new function type.
2219 insttype = tsubst (TREE_TYPE (fn), targs, tf_none, NULL_TREE);
2220 if (insttype == error_mark_node)
2221 continue;
2222 fn_arg_types
2223 = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (insttype));
2224 if (!compparms (fn_arg_types, decl_arg_types))
2225 continue;
2227 /* Save this template, and the arguments deduced. */
2228 templates = tree_cons (targs, fn, templates);
2230 else if (need_member_template)
2231 /* FN is an ordinary member function, and we need a
2232 specialization of a member template. */
2234 else if (TREE_CODE (fn) != FUNCTION_DECL)
2235 /* We can get IDENTIFIER_NODEs here in certain erroneous
2236 cases. */
2238 else if (!DECL_FUNCTION_MEMBER_P (fn))
2239 /* This is just an ordinary non-member function. Nothing can
2240 be a specialization of that. */
2242 else if (DECL_ARTIFICIAL (fn))
2243 /* Cannot specialize functions that are created implicitly. */
2245 else
2247 tree decl_arg_types;
2249 /* This is an ordinary member function. However, since
2250 we're here, we can assume its enclosing class is a
2251 template class. For example,
2253 template <typename T> struct S { void f(); };
2254 template <> void S<int>::f() {}
2256 Here, S<int>::f is a non-template, but S<int> is a
2257 template class. If FN has the same type as DECL, we
2258 might be in business. */
2260 if (!DECL_TEMPLATE_INFO (fn))
2261 /* Its enclosing class is an explicit specialization
2262 of a template class. This is not a candidate. */
2263 continue;
2265 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
2266 TREE_TYPE (TREE_TYPE (fn))))
2267 /* The return types differ. */
2268 continue;
2270 /* Adjust the type of DECL in case FN is a static member. */
2271 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
2272 if (DECL_STATIC_FUNCTION_P (fn)
2273 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2274 decl_arg_types = TREE_CHAIN (decl_arg_types);
2276 if (!compparms (TYPE_ARG_TYPES (TREE_TYPE (fn)),
2277 decl_arg_types))
2278 continue;
2280 // If the deduced arguments do not satisfy the constraints,
2281 // this is not a candidate.
2282 if (flag_concepts && !constraints_satisfied_p (fn))
2283 continue;
2285 // Add the candidate.
2286 candidates = tree_cons (NULL_TREE, fn, candidates);
2290 if (templates && TREE_CHAIN (templates))
2292 /* We have:
2294 [temp.expl.spec]
2296 It is possible for a specialization with a given function
2297 signature to be instantiated from more than one function
2298 template. In such cases, explicit specification of the
2299 template arguments must be used to uniquely identify the
2300 function template specialization being specialized.
2302 Note that here, there's no suggestion that we're supposed to
2303 determine which of the candidate templates is most
2304 specialized. However, we, also have:
2306 [temp.func.order]
2308 Partial ordering of overloaded function template
2309 declarations is used in the following contexts to select
2310 the function template to which a function template
2311 specialization refers:
2313 -- when an explicit specialization refers to a function
2314 template.
2316 So, we do use the partial ordering rules, at least for now.
2317 This extension can only serve to make invalid programs valid,
2318 so it's safe. And, there is strong anecdotal evidence that
2319 the committee intended the partial ordering rules to apply;
2320 the EDG front end has that behavior, and John Spicer claims
2321 that the committee simply forgot to delete the wording in
2322 [temp.expl.spec]. */
2323 tree tmpl = most_specialized_instantiation (templates);
2324 if (tmpl != error_mark_node)
2326 templates = tmpl;
2327 TREE_CHAIN (templates) = NULL_TREE;
2331 // Concepts allows multiple declarations of member functions
2332 // with the same signature. Like above, we need to rely on
2333 // on the partial ordering of those candidates to determine which
2334 // is the best.
2335 if (flag_concepts && candidates && TREE_CHAIN (candidates))
2337 if (tree cand = most_constrained_function (candidates))
2339 candidates = cand;
2340 TREE_CHAIN (cand) = NULL_TREE;
2344 if (templates == NULL_TREE && candidates == NULL_TREE)
2346 error ("template-id %qD for %q+D does not match any template "
2347 "declaration", template_id, decl);
2348 if (header_count && header_count != template_count + 1)
2349 inform (input_location, "saw %d %<template<>%>, need %d for "
2350 "specializing a member function template",
2351 header_count, template_count + 1);
2352 else
2353 print_candidates (orig_fns);
2354 return error_mark_node;
2356 else if ((templates && TREE_CHAIN (templates))
2357 || (candidates && TREE_CHAIN (candidates))
2358 || (templates && candidates))
2360 error ("ambiguous template specialization %qD for %q+D",
2361 template_id, decl);
2362 candidates = chainon (candidates, templates);
2363 print_candidates (candidates);
2364 return error_mark_node;
2367 /* We have one, and exactly one, match. */
2368 if (candidates)
2370 tree fn = TREE_VALUE (candidates);
2371 *targs_out = copy_node (DECL_TI_ARGS (fn));
2373 // Propagate the candidate's constraints to the declaration.
2374 set_constraints (decl, get_constraints (fn));
2376 /* DECL is a re-declaration or partial instantiation of a template
2377 function. */
2378 if (TREE_CODE (fn) == TEMPLATE_DECL)
2379 return fn;
2380 /* It was a specialization of an ordinary member function in a
2381 template class. */
2382 return DECL_TI_TEMPLATE (fn);
2385 /* It was a specialization of a template. */
2386 targs = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (TREE_VALUE (templates)));
2387 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (targs))
2389 *targs_out = copy_node (targs);
2390 SET_TMPL_ARGS_LEVEL (*targs_out,
2391 TMPL_ARGS_DEPTH (*targs_out),
2392 TREE_PURPOSE (templates));
2394 else
2395 *targs_out = TREE_PURPOSE (templates);
2396 return TREE_VALUE (templates);
2399 /* Returns a chain of parameter types, exactly like the SPEC_TYPES,
2400 but with the default argument values filled in from those in the
2401 TMPL_TYPES. */
2403 static tree
2404 copy_default_args_to_explicit_spec_1 (tree spec_types,
2405 tree tmpl_types)
2407 tree new_spec_types;
2409 if (!spec_types)
2410 return NULL_TREE;
2412 if (spec_types == void_list_node)
2413 return void_list_node;
2415 /* Substitute into the rest of the list. */
2416 new_spec_types =
2417 copy_default_args_to_explicit_spec_1 (TREE_CHAIN (spec_types),
2418 TREE_CHAIN (tmpl_types));
2420 /* Add the default argument for this parameter. */
2421 return hash_tree_cons (TREE_PURPOSE (tmpl_types),
2422 TREE_VALUE (spec_types),
2423 new_spec_types);
2426 /* DECL is an explicit specialization. Replicate default arguments
2427 from the template it specializes. (That way, code like:
2429 template <class T> void f(T = 3);
2430 template <> void f(double);
2431 void g () { f (); }
2433 works, as required.) An alternative approach would be to look up
2434 the correct default arguments at the call-site, but this approach
2435 is consistent with how implicit instantiations are handled. */
2437 static void
2438 copy_default_args_to_explicit_spec (tree decl)
2440 tree tmpl;
2441 tree spec_types;
2442 tree tmpl_types;
2443 tree new_spec_types;
2444 tree old_type;
2445 tree new_type;
2446 tree t;
2447 tree object_type = NULL_TREE;
2448 tree in_charge = NULL_TREE;
2449 tree vtt = NULL_TREE;
2451 /* See if there's anything we need to do. */
2452 tmpl = DECL_TI_TEMPLATE (decl);
2453 tmpl_types = TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (tmpl)));
2454 for (t = tmpl_types; t; t = TREE_CHAIN (t))
2455 if (TREE_PURPOSE (t))
2456 break;
2457 if (!t)
2458 return;
2460 old_type = TREE_TYPE (decl);
2461 spec_types = TYPE_ARG_TYPES (old_type);
2463 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2465 /* Remove the this pointer, but remember the object's type for
2466 CV quals. */
2467 object_type = TREE_TYPE (TREE_VALUE (spec_types));
2468 spec_types = TREE_CHAIN (spec_types);
2469 tmpl_types = TREE_CHAIN (tmpl_types);
2471 if (DECL_HAS_IN_CHARGE_PARM_P (decl))
2473 /* DECL may contain more parameters than TMPL due to the extra
2474 in-charge parameter in constructors and destructors. */
2475 in_charge = spec_types;
2476 spec_types = TREE_CHAIN (spec_types);
2478 if (DECL_HAS_VTT_PARM_P (decl))
2480 vtt = spec_types;
2481 spec_types = TREE_CHAIN (spec_types);
2485 /* Compute the merged default arguments. */
2486 new_spec_types =
2487 copy_default_args_to_explicit_spec_1 (spec_types, tmpl_types);
2489 /* Compute the new FUNCTION_TYPE. */
2490 if (object_type)
2492 if (vtt)
2493 new_spec_types = hash_tree_cons (TREE_PURPOSE (vtt),
2494 TREE_VALUE (vtt),
2495 new_spec_types);
2497 if (in_charge)
2498 /* Put the in-charge parameter back. */
2499 new_spec_types = hash_tree_cons (TREE_PURPOSE (in_charge),
2500 TREE_VALUE (in_charge),
2501 new_spec_types);
2503 new_type = build_method_type_directly (object_type,
2504 TREE_TYPE (old_type),
2505 new_spec_types);
2507 else
2508 new_type = build_function_type (TREE_TYPE (old_type),
2509 new_spec_types);
2510 new_type = cp_build_type_attribute_variant (new_type,
2511 TYPE_ATTRIBUTES (old_type));
2512 new_type = build_exception_variant (new_type,
2513 TYPE_RAISES_EXCEPTIONS (old_type));
2515 if (TYPE_HAS_LATE_RETURN_TYPE (old_type))
2516 TYPE_HAS_LATE_RETURN_TYPE (new_type) = 1;
2518 TREE_TYPE (decl) = new_type;
2521 /* Return the number of template headers we expect to see for a definition
2522 or specialization of CTYPE or one of its non-template members. */
2525 num_template_headers_for_class (tree ctype)
2527 int num_templates = 0;
2529 while (ctype && CLASS_TYPE_P (ctype))
2531 /* You're supposed to have one `template <...>' for every
2532 template class, but you don't need one for a full
2533 specialization. For example:
2535 template <class T> struct S{};
2536 template <> struct S<int> { void f(); };
2537 void S<int>::f () {}
2539 is correct; there shouldn't be a `template <>' for the
2540 definition of `S<int>::f'. */
2541 if (!CLASSTYPE_TEMPLATE_INFO (ctype))
2542 /* If CTYPE does not have template information of any
2543 kind, then it is not a template, nor is it nested
2544 within a template. */
2545 break;
2546 if (explicit_class_specialization_p (ctype))
2547 break;
2548 if (PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (ctype)))
2549 ++num_templates;
2551 ctype = TYPE_CONTEXT (ctype);
2554 return num_templates;
2557 /* Do a simple sanity check on the template headers that precede the
2558 variable declaration DECL. */
2560 void
2561 check_template_variable (tree decl)
2563 tree ctx = CP_DECL_CONTEXT (decl);
2564 int wanted = num_template_headers_for_class (ctx);
2565 if (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl)
2566 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl)))
2568 if (cxx_dialect < cxx14)
2569 pedwarn (DECL_SOURCE_LOCATION (decl), 0,
2570 "variable templates only available with "
2571 "-std=c++14 or -std=gnu++14");
2573 // Namespace-scope variable templates should have a template header.
2574 ++wanted;
2576 if (template_header_count > wanted)
2578 bool warned = pedwarn (DECL_SOURCE_LOCATION (decl), 0,
2579 "too many template headers for %D (should be %d)",
2580 decl, wanted);
2581 if (warned && CLASS_TYPE_P (ctx)
2582 && CLASSTYPE_TEMPLATE_SPECIALIZATION (ctx))
2583 inform (DECL_SOURCE_LOCATION (decl),
2584 "members of an explicitly specialized class are defined "
2585 "without a template header");
2589 /* Check to see if the function just declared, as indicated in
2590 DECLARATOR, and in DECL, is a specialization of a function
2591 template. We may also discover that the declaration is an explicit
2592 instantiation at this point.
2594 Returns DECL, or an equivalent declaration that should be used
2595 instead if all goes well. Issues an error message if something is
2596 amiss. Returns error_mark_node if the error is not easily
2597 recoverable.
2599 FLAGS is a bitmask consisting of the following flags:
2601 2: The function has a definition.
2602 4: The function is a friend.
2604 The TEMPLATE_COUNT is the number of references to qualifying
2605 template classes that appeared in the name of the function. For
2606 example, in
2608 template <class T> struct S { void f(); };
2609 void S<int>::f();
2611 the TEMPLATE_COUNT would be 1. However, explicitly specialized
2612 classes are not counted in the TEMPLATE_COUNT, so that in
2614 template <class T> struct S {};
2615 template <> struct S<int> { void f(); }
2616 template <> void S<int>::f();
2618 the TEMPLATE_COUNT would be 0. (Note that this declaration is
2619 invalid; there should be no template <>.)
2621 If the function is a specialization, it is marked as such via
2622 DECL_TEMPLATE_SPECIALIZATION. Furthermore, its DECL_TEMPLATE_INFO
2623 is set up correctly, and it is added to the list of specializations
2624 for that template. */
2626 tree
2627 check_explicit_specialization (tree declarator,
2628 tree decl,
2629 int template_count,
2630 int flags)
2632 int have_def = flags & 2;
2633 int is_friend = flags & 4;
2634 bool is_concept = flags & 8;
2635 int specialization = 0;
2636 int explicit_instantiation = 0;
2637 int member_specialization = 0;
2638 tree ctype = DECL_CLASS_CONTEXT (decl);
2639 tree dname = DECL_NAME (decl);
2640 tmpl_spec_kind tsk;
2642 if (is_friend)
2644 if (!processing_specialization)
2645 tsk = tsk_none;
2646 else
2647 tsk = tsk_excessive_parms;
2649 else
2650 tsk = current_tmpl_spec_kind (template_count);
2652 switch (tsk)
2654 case tsk_none:
2655 if (processing_specialization && !VAR_P (decl))
2657 specialization = 1;
2658 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2660 else if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2662 if (is_friend)
2663 /* This could be something like:
2665 template <class T> void f(T);
2666 class S { friend void f<>(int); } */
2667 specialization = 1;
2668 else
2670 /* This case handles bogus declarations like template <>
2671 template <class T> void f<int>(); */
2673 error ("template-id %qD in declaration of primary template",
2674 declarator);
2675 return decl;
2678 break;
2680 case tsk_invalid_member_spec:
2681 /* The error has already been reported in
2682 check_specialization_scope. */
2683 return error_mark_node;
2685 case tsk_invalid_expl_inst:
2686 error ("template parameter list used in explicit instantiation");
2688 /* Fall through. */
2690 case tsk_expl_inst:
2691 if (have_def)
2692 error ("definition provided for explicit instantiation");
2694 explicit_instantiation = 1;
2695 break;
2697 case tsk_excessive_parms:
2698 case tsk_insufficient_parms:
2699 if (tsk == tsk_excessive_parms)
2700 error ("too many template parameter lists in declaration of %qD",
2701 decl);
2702 else if (template_header_count)
2703 error("too few template parameter lists in declaration of %qD", decl);
2704 else
2705 error("explicit specialization of %qD must be introduced by "
2706 "%<template <>%>", decl);
2708 /* Fall through. */
2709 case tsk_expl_spec:
2710 if (is_concept)
2711 error ("explicit specialization declared %<concept%>");
2713 if (VAR_P (decl) && TREE_CODE (declarator) != TEMPLATE_ID_EXPR)
2714 /* In cases like template<> constexpr bool v = true;
2715 We'll give an error in check_template_variable. */
2716 break;
2718 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2719 if (ctype)
2720 member_specialization = 1;
2721 else
2722 specialization = 1;
2723 break;
2725 case tsk_template:
2726 if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2728 /* This case handles bogus declarations like template <>
2729 template <class T> void f<int>(); */
2731 if (!uses_template_parms (declarator))
2732 error ("template-id %qD in declaration of primary template",
2733 declarator);
2734 else if (variable_template_p (TREE_OPERAND (declarator, 0)))
2736 /* Partial specialization of variable template. */
2737 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2738 specialization = 1;
2739 goto ok;
2741 else if (cxx_dialect < cxx14)
2742 error ("non-type partial specialization %qD "
2743 "is not allowed", declarator);
2744 else
2745 error ("non-class, non-variable partial specialization %qD "
2746 "is not allowed", declarator);
2747 return decl;
2748 ok:;
2751 if (ctype && CLASSTYPE_TEMPLATE_INSTANTIATION (ctype))
2752 /* This is a specialization of a member template, without
2753 specialization the containing class. Something like:
2755 template <class T> struct S {
2756 template <class U> void f (U);
2758 template <> template <class U> void S<int>::f(U) {}
2760 That's a specialization -- but of the entire template. */
2761 specialization = 1;
2762 break;
2764 default:
2765 gcc_unreachable ();
2768 if ((specialization || member_specialization)
2769 /* This doesn't apply to variable templates. */
2770 && (TREE_CODE (TREE_TYPE (decl)) == FUNCTION_TYPE
2771 || TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE))
2773 tree t = TYPE_ARG_TYPES (TREE_TYPE (decl));
2774 for (; t; t = TREE_CHAIN (t))
2775 if (TREE_PURPOSE (t))
2777 permerror (input_location,
2778 "default argument specified in explicit specialization");
2779 break;
2783 if (specialization || member_specialization || explicit_instantiation)
2785 tree tmpl = NULL_TREE;
2786 tree targs = NULL_TREE;
2787 bool was_template_id = (TREE_CODE (declarator) == TEMPLATE_ID_EXPR);
2789 /* Make sure that the declarator is a TEMPLATE_ID_EXPR. */
2790 if (!was_template_id)
2792 tree fns;
2794 gcc_assert (identifier_p (declarator));
2795 if (ctype)
2796 fns = dname;
2797 else
2799 /* If there is no class context, the explicit instantiation
2800 must be at namespace scope. */
2801 gcc_assert (DECL_NAMESPACE_SCOPE_P (decl));
2803 /* Find the namespace binding, using the declaration
2804 context. */
2805 fns = lookup_qualified_name (CP_DECL_CONTEXT (decl), dname,
2806 false, true);
2807 if (fns == error_mark_node)
2808 /* If lookup fails, look for a friend declaration so we can
2809 give a better diagnostic. */
2810 fns = lookup_qualified_name (CP_DECL_CONTEXT (decl), dname,
2811 /*type*/false, /*complain*/true,
2812 /*hidden*/true);
2814 if (fns == error_mark_node || !is_overloaded_fn (fns))
2816 error ("%qD is not a template function", dname);
2817 fns = error_mark_node;
2821 declarator = lookup_template_function (fns, NULL_TREE);
2824 if (declarator == error_mark_node)
2825 return error_mark_node;
2827 if (ctype != NULL_TREE && TYPE_BEING_DEFINED (ctype))
2829 if (!explicit_instantiation)
2830 /* A specialization in class scope. This is invalid,
2831 but the error will already have been flagged by
2832 check_specialization_scope. */
2833 return error_mark_node;
2834 else
2836 /* It's not valid to write an explicit instantiation in
2837 class scope, e.g.:
2839 class C { template void f(); }
2841 This case is caught by the parser. However, on
2842 something like:
2844 template class C { void f(); };
2846 (which is invalid) we can get here. The error will be
2847 issued later. */
2851 return decl;
2853 else if (ctype != NULL_TREE
2854 && (identifier_p (TREE_OPERAND (declarator, 0))))
2856 // We'll match variable templates in start_decl.
2857 if (VAR_P (decl))
2858 return decl;
2860 /* Find the list of functions in ctype that have the same
2861 name as the declared function. */
2862 tree name = TREE_OPERAND (declarator, 0);
2863 tree fns = NULL_TREE;
2864 int idx;
2866 if (constructor_name_p (name, ctype))
2868 int is_constructor = DECL_CONSTRUCTOR_P (decl);
2870 if (is_constructor ? !TYPE_HAS_USER_CONSTRUCTOR (ctype)
2871 : !CLASSTYPE_DESTRUCTORS (ctype))
2873 /* From [temp.expl.spec]:
2875 If such an explicit specialization for the member
2876 of a class template names an implicitly-declared
2877 special member function (clause _special_), the
2878 program is ill-formed.
2880 Similar language is found in [temp.explicit]. */
2881 error ("specialization of implicitly-declared special member function");
2882 return error_mark_node;
2885 name = is_constructor ? ctor_identifier : dtor_identifier;
2888 if (!DECL_CONV_FN_P (decl))
2890 idx = lookup_fnfields_1 (ctype, name);
2891 if (idx >= 0)
2892 fns = (*CLASSTYPE_METHOD_VEC (ctype))[idx];
2894 else
2896 vec<tree, va_gc> *methods;
2897 tree ovl;
2899 /* For a type-conversion operator, we cannot do a
2900 name-based lookup. We might be looking for `operator
2901 int' which will be a specialization of `operator T'.
2902 So, we find *all* the conversion operators, and then
2903 select from them. */
2904 fns = NULL_TREE;
2906 methods = CLASSTYPE_METHOD_VEC (ctype);
2907 if (methods)
2908 for (idx = CLASSTYPE_FIRST_CONVERSION_SLOT;
2909 methods->iterate (idx, &ovl);
2910 ++idx)
2912 if (!DECL_CONV_FN_P (OVL_CURRENT (ovl)))
2913 /* There are no more conversion functions. */
2914 break;
2916 /* Glue all these conversion functions together
2917 with those we already have. */
2918 for (; ovl; ovl = OVL_NEXT (ovl))
2919 fns = ovl_cons (OVL_CURRENT (ovl), fns);
2923 if (fns == NULL_TREE)
2925 error ("no member function %qD declared in %qT", name, ctype);
2926 return error_mark_node;
2928 else
2929 TREE_OPERAND (declarator, 0) = fns;
2932 /* Figure out what exactly is being specialized at this point.
2933 Note that for an explicit instantiation, even one for a
2934 member function, we cannot tell apriori whether the
2935 instantiation is for a member template, or just a member
2936 function of a template class. Even if a member template is
2937 being instantiated, the member template arguments may be
2938 elided if they can be deduced from the rest of the
2939 declaration. */
2940 tmpl = determine_specialization (declarator, decl,
2941 &targs,
2942 member_specialization,
2943 template_count,
2944 tsk);
2946 if (!tmpl || tmpl == error_mark_node)
2947 /* We couldn't figure out what this declaration was
2948 specializing. */
2949 return error_mark_node;
2950 else
2952 if (!ctype && !was_template_id
2953 && (specialization || member_specialization
2954 || explicit_instantiation)
2955 && !is_associated_namespace (CP_DECL_CONTEXT (decl),
2956 CP_DECL_CONTEXT (tmpl)))
2957 error ("%qD is not declared in %qD",
2958 tmpl, current_namespace);
2959 else if (TREE_CODE (decl) == FUNCTION_DECL
2960 && DECL_HIDDEN_FRIEND_P (tmpl))
2962 if (pedwarn (DECL_SOURCE_LOCATION (decl), 0,
2963 "friend declaration %qD is not visible to "
2964 "explicit specialization", tmpl))
2965 inform (DECL_SOURCE_LOCATION (tmpl),
2966 "friend declaration here");
2969 tree gen_tmpl = most_general_template (tmpl);
2971 if (explicit_instantiation)
2973 /* We don't set DECL_EXPLICIT_INSTANTIATION here; that
2974 is done by do_decl_instantiation later. */
2976 int arg_depth = TMPL_ARGS_DEPTH (targs);
2977 int parm_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
2979 if (arg_depth > parm_depth)
2981 /* If TMPL is not the most general template (for
2982 example, if TMPL is a friend template that is
2983 injected into namespace scope), then there will
2984 be too many levels of TARGS. Remove some of them
2985 here. */
2986 int i;
2987 tree new_targs;
2989 new_targs = make_tree_vec (parm_depth);
2990 for (i = arg_depth - parm_depth; i < arg_depth; ++i)
2991 TREE_VEC_ELT (new_targs, i - (arg_depth - parm_depth))
2992 = TREE_VEC_ELT (targs, i);
2993 targs = new_targs;
2996 return instantiate_template (tmpl, targs, tf_error);
2999 /* If we thought that the DECL was a member function, but it
3000 turns out to be specializing a static member function,
3001 make DECL a static member function as well. */
3002 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
3003 && DECL_STATIC_FUNCTION_P (tmpl)
3004 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
3005 revert_static_member_fn (decl);
3007 /* If this is a specialization of a member template of a
3008 template class, we want to return the TEMPLATE_DECL, not
3009 the specialization of it. */
3010 if (tsk == tsk_template && !was_template_id)
3012 tree result = DECL_TEMPLATE_RESULT (tmpl);
3013 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
3014 DECL_INITIAL (result) = NULL_TREE;
3015 if (have_def)
3017 tree parm;
3018 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
3019 DECL_SOURCE_LOCATION (result)
3020 = DECL_SOURCE_LOCATION (decl);
3021 /* We want to use the argument list specified in the
3022 definition, not in the original declaration. */
3023 DECL_ARGUMENTS (result) = DECL_ARGUMENTS (decl);
3024 for (parm = DECL_ARGUMENTS (result); parm;
3025 parm = DECL_CHAIN (parm))
3026 DECL_CONTEXT (parm) = result;
3028 return register_specialization (tmpl, gen_tmpl, targs,
3029 is_friend, 0);
3032 /* Set up the DECL_TEMPLATE_INFO for DECL. */
3033 DECL_TEMPLATE_INFO (decl) = build_template_info (tmpl, targs);
3035 if (was_template_id)
3036 TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (decl)) = true;
3038 /* Inherit default function arguments from the template
3039 DECL is specializing. */
3040 if (DECL_FUNCTION_TEMPLATE_P (tmpl))
3041 copy_default_args_to_explicit_spec (decl);
3043 /* This specialization has the same protection as the
3044 template it specializes. */
3045 TREE_PRIVATE (decl) = TREE_PRIVATE (gen_tmpl);
3046 TREE_PROTECTED (decl) = TREE_PROTECTED (gen_tmpl);
3048 /* 7.1.1-1 [dcl.stc]
3050 A storage-class-specifier shall not be specified in an
3051 explicit specialization...
3053 The parser rejects these, so unless action is taken here,
3054 explicit function specializations will always appear with
3055 global linkage.
3057 The action recommended by the C++ CWG in response to C++
3058 defect report 605 is to make the storage class and linkage
3059 of the explicit specialization match the templated function:
3061 http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#605
3063 if (tsk == tsk_expl_spec && DECL_FUNCTION_TEMPLATE_P (gen_tmpl))
3065 tree tmpl_func = DECL_TEMPLATE_RESULT (gen_tmpl);
3066 gcc_assert (TREE_CODE (tmpl_func) == FUNCTION_DECL);
3068 /* A concept cannot be specialized. */
3069 if (DECL_DECLARED_CONCEPT_P (tmpl_func))
3071 error ("explicit specialization of function concept %qD",
3072 gen_tmpl);
3073 return error_mark_node;
3076 /* This specialization has the same linkage and visibility as
3077 the function template it specializes. */
3078 TREE_PUBLIC (decl) = TREE_PUBLIC (tmpl_func);
3079 if (! TREE_PUBLIC (decl))
3081 DECL_INTERFACE_KNOWN (decl) = 1;
3082 DECL_NOT_REALLY_EXTERN (decl) = 1;
3084 DECL_THIS_STATIC (decl) = DECL_THIS_STATIC (tmpl_func);
3085 if (DECL_VISIBILITY_SPECIFIED (tmpl_func))
3087 DECL_VISIBILITY_SPECIFIED (decl) = 1;
3088 DECL_VISIBILITY (decl) = DECL_VISIBILITY (tmpl_func);
3092 /* If DECL is a friend declaration, declared using an
3093 unqualified name, the namespace associated with DECL may
3094 have been set incorrectly. For example, in:
3096 template <typename T> void f(T);
3097 namespace N {
3098 struct S { friend void f<int>(int); }
3101 we will have set the DECL_CONTEXT for the friend
3102 declaration to N, rather than to the global namespace. */
3103 if (DECL_NAMESPACE_SCOPE_P (decl))
3104 DECL_CONTEXT (decl) = DECL_CONTEXT (tmpl);
3106 if (is_friend && !have_def)
3107 /* This is not really a declaration of a specialization.
3108 It's just the name of an instantiation. But, it's not
3109 a request for an instantiation, either. */
3110 SET_DECL_IMPLICIT_INSTANTIATION (decl);
3111 else if (TREE_CODE (decl) == FUNCTION_DECL)
3112 /* A specialization is not necessarily COMDAT. */
3113 DECL_COMDAT (decl) = (TREE_PUBLIC (decl)
3114 && DECL_DECLARED_INLINE_P (decl));
3115 else if (VAR_P (decl))
3116 DECL_COMDAT (decl) = false;
3118 /* If this is a full specialization, register it so that we can find
3119 it again. Partial specializations will be registered in
3120 process_partial_specialization. */
3121 if (!processing_template_decl)
3122 decl = register_specialization (decl, gen_tmpl, targs,
3123 is_friend, 0);
3125 /* A 'structor should already have clones. */
3126 gcc_assert (decl == error_mark_node
3127 || variable_template_p (tmpl)
3128 || !(DECL_CONSTRUCTOR_P (decl)
3129 || DECL_DESTRUCTOR_P (decl))
3130 || DECL_CLONED_FUNCTION_P (DECL_CHAIN (decl)));
3134 return decl;
3137 /* Returns 1 iff PARMS1 and PARMS2 are identical sets of template
3138 parameters. These are represented in the same format used for
3139 DECL_TEMPLATE_PARMS. */
3142 comp_template_parms (const_tree parms1, const_tree parms2)
3144 const_tree p1;
3145 const_tree p2;
3147 if (parms1 == parms2)
3148 return 1;
3150 for (p1 = parms1, p2 = parms2;
3151 p1 != NULL_TREE && p2 != NULL_TREE;
3152 p1 = TREE_CHAIN (p1), p2 = TREE_CHAIN (p2))
3154 tree t1 = TREE_VALUE (p1);
3155 tree t2 = TREE_VALUE (p2);
3156 int i;
3158 gcc_assert (TREE_CODE (t1) == TREE_VEC);
3159 gcc_assert (TREE_CODE (t2) == TREE_VEC);
3161 if (TREE_VEC_LENGTH (t1) != TREE_VEC_LENGTH (t2))
3162 return 0;
3164 for (i = 0; i < TREE_VEC_LENGTH (t2); ++i)
3166 tree parm1 = TREE_VALUE (TREE_VEC_ELT (t1, i));
3167 tree parm2 = TREE_VALUE (TREE_VEC_ELT (t2, i));
3169 /* If either of the template parameters are invalid, assume
3170 they match for the sake of error recovery. */
3171 if (error_operand_p (parm1) || error_operand_p (parm2))
3172 return 1;
3174 if (TREE_CODE (parm1) != TREE_CODE (parm2))
3175 return 0;
3177 if (TREE_CODE (parm1) == TEMPLATE_TYPE_PARM
3178 && (TEMPLATE_TYPE_PARAMETER_PACK (parm1)
3179 == TEMPLATE_TYPE_PARAMETER_PACK (parm2)))
3180 continue;
3181 else if (!same_type_p (TREE_TYPE (parm1), TREE_TYPE (parm2)))
3182 return 0;
3186 if ((p1 != NULL_TREE) != (p2 != NULL_TREE))
3187 /* One set of parameters has more parameters lists than the
3188 other. */
3189 return 0;
3191 return 1;
3194 /* Determine whether PARM is a parameter pack. */
3196 bool
3197 template_parameter_pack_p (const_tree parm)
3199 /* Determine if we have a non-type template parameter pack. */
3200 if (TREE_CODE (parm) == PARM_DECL)
3201 return (DECL_TEMPLATE_PARM_P (parm)
3202 && TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)));
3203 if (TREE_CODE (parm) == TEMPLATE_PARM_INDEX)
3204 return TEMPLATE_PARM_PARAMETER_PACK (parm);
3206 /* If this is a list of template parameters, we could get a
3207 TYPE_DECL or a TEMPLATE_DECL. */
3208 if (TREE_CODE (parm) == TYPE_DECL || TREE_CODE (parm) == TEMPLATE_DECL)
3209 parm = TREE_TYPE (parm);
3211 /* Otherwise it must be a type template parameter. */
3212 return ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
3213 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
3214 && TEMPLATE_TYPE_PARAMETER_PACK (parm));
3217 /* Determine if T is a function parameter pack. */
3219 bool
3220 function_parameter_pack_p (const_tree t)
3222 if (t && TREE_CODE (t) == PARM_DECL)
3223 return DECL_PACK_P (t);
3224 return false;
3227 /* Return the function template declaration of PRIMARY_FUNC_TMPL_INST.
3228 PRIMARY_FUNC_TMPL_INST is a primary function template instantiation. */
3230 tree
3231 get_function_template_decl (const_tree primary_func_tmpl_inst)
3233 if (! primary_func_tmpl_inst
3234 || TREE_CODE (primary_func_tmpl_inst) != FUNCTION_DECL
3235 || ! primary_template_instantiation_p (primary_func_tmpl_inst))
3236 return NULL;
3238 return DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (primary_func_tmpl_inst));
3241 /* Return true iff the function parameter PARAM_DECL was expanded
3242 from the function parameter pack PACK. */
3244 bool
3245 function_parameter_expanded_from_pack_p (tree param_decl, tree pack)
3247 if (DECL_ARTIFICIAL (param_decl)
3248 || !function_parameter_pack_p (pack))
3249 return false;
3251 /* The parameter pack and its pack arguments have the same
3252 DECL_PARM_INDEX. */
3253 return DECL_PARM_INDEX (pack) == DECL_PARM_INDEX (param_decl);
3256 /* Determine whether ARGS describes a variadic template args list,
3257 i.e., one that is terminated by a template argument pack. */
3259 static bool
3260 template_args_variadic_p (tree args)
3262 int nargs;
3263 tree last_parm;
3265 if (args == NULL_TREE)
3266 return false;
3268 args = INNERMOST_TEMPLATE_ARGS (args);
3269 nargs = TREE_VEC_LENGTH (args);
3271 if (nargs == 0)
3272 return false;
3274 last_parm = TREE_VEC_ELT (args, nargs - 1);
3276 return ARGUMENT_PACK_P (last_parm);
3279 /* Generate a new name for the parameter pack name NAME (an
3280 IDENTIFIER_NODE) that incorporates its */
3282 static tree
3283 make_ith_pack_parameter_name (tree name, int i)
3285 /* Munge the name to include the parameter index. */
3286 #define NUMBUF_LEN 128
3287 char numbuf[NUMBUF_LEN];
3288 char* newname;
3289 int newname_len;
3291 if (name == NULL_TREE)
3292 return name;
3293 snprintf (numbuf, NUMBUF_LEN, "%i", i);
3294 newname_len = IDENTIFIER_LENGTH (name)
3295 + strlen (numbuf) + 2;
3296 newname = (char*)alloca (newname_len);
3297 snprintf (newname, newname_len,
3298 "%s#%i", IDENTIFIER_POINTER (name), i);
3299 return get_identifier (newname);
3302 /* Return true if T is a primary function, class or alias template
3303 instantiation. */
3305 bool
3306 primary_template_instantiation_p (const_tree t)
3308 if (!t)
3309 return false;
3311 if (TREE_CODE (t) == FUNCTION_DECL)
3312 return DECL_LANG_SPECIFIC (t)
3313 && DECL_TEMPLATE_INSTANTIATION (t)
3314 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (t));
3315 else if (CLASS_TYPE_P (t) && !TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
3316 return CLASSTYPE_TEMPLATE_INSTANTIATION (t)
3317 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (t));
3318 else if (alias_template_specialization_p (t))
3319 return true;
3320 return false;
3323 /* Return true if PARM is a template template parameter. */
3325 bool
3326 template_template_parameter_p (const_tree parm)
3328 return DECL_TEMPLATE_TEMPLATE_PARM_P (parm);
3331 /* Return true iff PARM is a DECL representing a type template
3332 parameter. */
3334 bool
3335 template_type_parameter_p (const_tree parm)
3337 return (parm
3338 && (TREE_CODE (parm) == TYPE_DECL
3339 || TREE_CODE (parm) == TEMPLATE_DECL)
3340 && DECL_TEMPLATE_PARM_P (parm));
3343 /* Return the template parameters of T if T is a
3344 primary template instantiation, NULL otherwise. */
3346 tree
3347 get_primary_template_innermost_parameters (const_tree t)
3349 tree parms = NULL, template_info = NULL;
3351 if ((template_info = get_template_info (t))
3352 && primary_template_instantiation_p (t))
3353 parms = INNERMOST_TEMPLATE_PARMS
3354 (DECL_TEMPLATE_PARMS (TI_TEMPLATE (template_info)));
3356 return parms;
3359 /* Return the template parameters of the LEVELth level from the full list
3360 of template parameters PARMS. */
3362 tree
3363 get_template_parms_at_level (tree parms, int level)
3365 tree p;
3366 if (!parms
3367 || TREE_CODE (parms) != TREE_LIST
3368 || level > TMPL_PARMS_DEPTH (parms))
3369 return NULL_TREE;
3371 for (p = parms; p; p = TREE_CHAIN (p))
3372 if (TMPL_PARMS_DEPTH (p) == level)
3373 return p;
3375 return NULL_TREE;
3378 /* Returns the template arguments of T if T is a template instantiation,
3379 NULL otherwise. */
3381 tree
3382 get_template_innermost_arguments (const_tree t)
3384 tree args = NULL, template_info = NULL;
3386 if ((template_info = get_template_info (t))
3387 && TI_ARGS (template_info))
3388 args = INNERMOST_TEMPLATE_ARGS (TI_ARGS (template_info));
3390 return args;
3393 /* Return the argument pack elements of T if T is a template argument pack,
3394 NULL otherwise. */
3396 tree
3397 get_template_argument_pack_elems (const_tree t)
3399 if (TREE_CODE (t) != TYPE_ARGUMENT_PACK
3400 && TREE_CODE (t) != NONTYPE_ARGUMENT_PACK)
3401 return NULL;
3403 return ARGUMENT_PACK_ARGS (t);
3406 /* Structure used to track the progress of find_parameter_packs_r. */
3407 struct find_parameter_pack_data
3409 /* TREE_LIST that will contain all of the parameter packs found by
3410 the traversal. */
3411 tree* parameter_packs;
3413 /* Set of AST nodes that have been visited by the traversal. */
3414 hash_set<tree> *visited;
3416 /* True iff we're making a type pack expansion. */
3417 bool type_pack_expansion_p;
3420 /* Identifies all of the argument packs that occur in a template
3421 argument and appends them to the TREE_LIST inside DATA, which is a
3422 find_parameter_pack_data structure. This is a subroutine of
3423 make_pack_expansion and uses_parameter_packs. */
3424 static tree
3425 find_parameter_packs_r (tree *tp, int *walk_subtrees, void* data)
3427 tree t = *tp;
3428 struct find_parameter_pack_data* ppd =
3429 (struct find_parameter_pack_data*)data;
3430 bool parameter_pack_p = false;
3432 /* Handle type aliases/typedefs. */
3433 if (TYPE_ALIAS_P (t))
3435 if (TYPE_TEMPLATE_INFO (t))
3436 cp_walk_tree (&TYPE_TI_ARGS (t),
3437 &find_parameter_packs_r,
3438 ppd, ppd->visited);
3439 *walk_subtrees = 0;
3440 return NULL_TREE;
3443 /* Identify whether this is a parameter pack or not. */
3444 switch (TREE_CODE (t))
3446 case TEMPLATE_PARM_INDEX:
3447 if (TEMPLATE_PARM_PARAMETER_PACK (t))
3448 parameter_pack_p = true;
3449 break;
3451 case TEMPLATE_TYPE_PARM:
3452 t = TYPE_MAIN_VARIANT (t);
3453 /* FALLTHRU */
3454 case TEMPLATE_TEMPLATE_PARM:
3455 /* If the placeholder appears in the decl-specifier-seq of a function
3456 parameter pack (14.6.3), or the type-specifier-seq of a type-id that
3457 is a pack expansion, the invented template parameter is a template
3458 parameter pack. */
3459 if (ppd->type_pack_expansion_p && is_auto_or_concept (t))
3460 TEMPLATE_TYPE_PARAMETER_PACK (t) = true;
3461 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
3462 parameter_pack_p = true;
3463 break;
3465 case FIELD_DECL:
3466 case PARM_DECL:
3467 if (DECL_PACK_P (t))
3469 /* We don't want to walk into the type of a PARM_DECL,
3470 because we don't want to see the type parameter pack. */
3471 *walk_subtrees = 0;
3472 parameter_pack_p = true;
3474 break;
3476 /* Look through a lambda capture proxy to the field pack. */
3477 case VAR_DECL:
3478 if (DECL_HAS_VALUE_EXPR_P (t))
3480 tree v = DECL_VALUE_EXPR (t);
3481 cp_walk_tree (&v,
3482 &find_parameter_packs_r,
3483 ppd, ppd->visited);
3484 *walk_subtrees = 0;
3486 else if (variable_template_specialization_p (t))
3488 cp_walk_tree (&DECL_TI_ARGS (t),
3489 find_parameter_packs_r,
3490 ppd, ppd->visited);
3491 *walk_subtrees = 0;
3493 break;
3495 case BASES:
3496 parameter_pack_p = true;
3497 break;
3498 default:
3499 /* Not a parameter pack. */
3500 break;
3503 if (parameter_pack_p)
3505 /* Add this parameter pack to the list. */
3506 *ppd->parameter_packs = tree_cons (NULL_TREE, t, *ppd->parameter_packs);
3509 if (TYPE_P (t))
3510 cp_walk_tree (&TYPE_CONTEXT (t),
3511 &find_parameter_packs_r, ppd, ppd->visited);
3513 /* This switch statement will return immediately if we don't find a
3514 parameter pack. */
3515 switch (TREE_CODE (t))
3517 case TEMPLATE_PARM_INDEX:
3518 return NULL_TREE;
3520 case BOUND_TEMPLATE_TEMPLATE_PARM:
3521 /* Check the template itself. */
3522 cp_walk_tree (&TREE_TYPE (TYPE_TI_TEMPLATE (t)),
3523 &find_parameter_packs_r, ppd, ppd->visited);
3524 /* Check the template arguments. */
3525 cp_walk_tree (&TYPE_TI_ARGS (t), &find_parameter_packs_r, ppd,
3526 ppd->visited);
3527 *walk_subtrees = 0;
3528 return NULL_TREE;
3530 case TEMPLATE_TYPE_PARM:
3531 case TEMPLATE_TEMPLATE_PARM:
3532 return NULL_TREE;
3534 case PARM_DECL:
3535 return NULL_TREE;
3537 case RECORD_TYPE:
3538 if (TYPE_PTRMEMFUNC_P (t))
3539 return NULL_TREE;
3540 /* Fall through. */
3542 case UNION_TYPE:
3543 case ENUMERAL_TYPE:
3544 if (TYPE_TEMPLATE_INFO (t))
3545 cp_walk_tree (&TYPE_TI_ARGS (t),
3546 &find_parameter_packs_r, ppd, ppd->visited);
3548 *walk_subtrees = 0;
3549 return NULL_TREE;
3551 case CONSTRUCTOR:
3552 case TEMPLATE_DECL:
3553 cp_walk_tree (&TREE_TYPE (t),
3554 &find_parameter_packs_r, ppd, ppd->visited);
3555 return NULL_TREE;
3557 case TYPENAME_TYPE:
3558 cp_walk_tree (&TYPENAME_TYPE_FULLNAME (t), &find_parameter_packs_r,
3559 ppd, ppd->visited);
3560 *walk_subtrees = 0;
3561 return NULL_TREE;
3563 case TYPE_PACK_EXPANSION:
3564 case EXPR_PACK_EXPANSION:
3565 *walk_subtrees = 0;
3566 return NULL_TREE;
3568 case INTEGER_TYPE:
3569 cp_walk_tree (&TYPE_MAX_VALUE (t), &find_parameter_packs_r,
3570 ppd, ppd->visited);
3571 *walk_subtrees = 0;
3572 return NULL_TREE;
3574 case IDENTIFIER_NODE:
3575 cp_walk_tree (&TREE_TYPE (t), &find_parameter_packs_r, ppd,
3576 ppd->visited);
3577 *walk_subtrees = 0;
3578 return NULL_TREE;
3580 case DECLTYPE_TYPE:
3582 /* When traversing a DECLTYPE_TYPE_EXPR, we need to set
3583 type_pack_expansion_p to false so that any placeholders
3584 within the expression don't get marked as parameter packs. */
3585 bool type_pack_expansion_p = ppd->type_pack_expansion_p;
3586 ppd->type_pack_expansion_p = false;
3587 cp_walk_tree (&DECLTYPE_TYPE_EXPR (t), &find_parameter_packs_r,
3588 ppd, ppd->visited);
3589 ppd->type_pack_expansion_p = type_pack_expansion_p;
3590 *walk_subtrees = 0;
3591 return NULL_TREE;
3594 default:
3595 return NULL_TREE;
3598 return NULL_TREE;
3601 /* Determines if the expression or type T uses any parameter packs. */
3602 bool
3603 uses_parameter_packs (tree t)
3605 tree parameter_packs = NULL_TREE;
3606 struct find_parameter_pack_data ppd;
3607 ppd.parameter_packs = &parameter_packs;
3608 ppd.visited = new hash_set<tree>;
3609 ppd.type_pack_expansion_p = false;
3610 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3611 delete ppd.visited;
3612 return parameter_packs != NULL_TREE;
3615 /* Turn ARG, which may be an expression, type, or a TREE_LIST
3616 representation a base-class initializer into a parameter pack
3617 expansion. If all goes well, the resulting node will be an
3618 EXPR_PACK_EXPANSION, TYPE_PACK_EXPANSION, or TREE_LIST,
3619 respectively. */
3620 tree
3621 make_pack_expansion (tree arg)
3623 tree result;
3624 tree parameter_packs = NULL_TREE;
3625 bool for_types = false;
3626 struct find_parameter_pack_data ppd;
3628 if (!arg || arg == error_mark_node)
3629 return arg;
3631 if (TREE_CODE (arg) == TREE_LIST && TREE_PURPOSE (arg))
3633 /* A TREE_LIST with a non-null TREE_PURPOSE is for a base
3634 class initializer. In this case, the TREE_PURPOSE will be a
3635 _TYPE node (representing the base class expansion we're
3636 initializing) and the TREE_VALUE will be a TREE_LIST
3637 containing the initialization arguments.
3639 The resulting expansion looks somewhat different from most
3640 expansions. Rather than returning just one _EXPANSION, we
3641 return a TREE_LIST whose TREE_PURPOSE is a
3642 TYPE_PACK_EXPANSION containing the bases that will be
3643 initialized. The TREE_VALUE will be identical to the
3644 original TREE_VALUE, which is a list of arguments that will
3645 be passed to each base. We do not introduce any new pack
3646 expansion nodes into the TREE_VALUE (although it is possible
3647 that some already exist), because the TREE_PURPOSE and
3648 TREE_VALUE all need to be expanded together with the same
3649 _EXPANSION node. Note that the TYPE_PACK_EXPANSION in the
3650 resulting TREE_PURPOSE will mention the parameter packs in
3651 both the bases and the arguments to the bases. */
3652 tree purpose;
3653 tree value;
3654 tree parameter_packs = NULL_TREE;
3656 /* Determine which parameter packs will be used by the base
3657 class expansion. */
3658 ppd.visited = new hash_set<tree>;
3659 ppd.parameter_packs = &parameter_packs;
3660 ppd.type_pack_expansion_p = true;
3661 gcc_assert (TYPE_P (TREE_PURPOSE (arg)));
3662 cp_walk_tree (&TREE_PURPOSE (arg), &find_parameter_packs_r,
3663 &ppd, ppd.visited);
3665 if (parameter_packs == NULL_TREE)
3667 error ("base initializer expansion %<%T%> contains no parameter packs", arg);
3668 delete ppd.visited;
3669 return error_mark_node;
3672 if (TREE_VALUE (arg) != void_type_node)
3674 /* Collect the sets of parameter packs used in each of the
3675 initialization arguments. */
3676 for (value = TREE_VALUE (arg); value; value = TREE_CHAIN (value))
3678 /* Determine which parameter packs will be expanded in this
3679 argument. */
3680 cp_walk_tree (&TREE_VALUE (value), &find_parameter_packs_r,
3681 &ppd, ppd.visited);
3685 delete ppd.visited;
3687 /* Create the pack expansion type for the base type. */
3688 purpose = cxx_make_type (TYPE_PACK_EXPANSION);
3689 SET_PACK_EXPANSION_PATTERN (purpose, TREE_PURPOSE (arg));
3690 PACK_EXPANSION_PARAMETER_PACKS (purpose) = parameter_packs;
3692 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3693 they will rarely be compared to anything. */
3694 SET_TYPE_STRUCTURAL_EQUALITY (purpose);
3696 return tree_cons (purpose, TREE_VALUE (arg), NULL_TREE);
3699 if (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL)
3700 for_types = true;
3702 /* Build the PACK_EXPANSION_* node. */
3703 result = for_types
3704 ? cxx_make_type (TYPE_PACK_EXPANSION)
3705 : make_node (EXPR_PACK_EXPANSION);
3706 SET_PACK_EXPANSION_PATTERN (result, arg);
3707 if (TREE_CODE (result) == EXPR_PACK_EXPANSION)
3709 /* Propagate type and const-expression information. */
3710 TREE_TYPE (result) = TREE_TYPE (arg);
3711 TREE_CONSTANT (result) = TREE_CONSTANT (arg);
3712 /* Mark this read now, since the expansion might be length 0. */
3713 mark_exp_read (arg);
3715 else
3716 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3717 they will rarely be compared to anything. */
3718 SET_TYPE_STRUCTURAL_EQUALITY (result);
3720 /* Determine which parameter packs will be expanded. */
3721 ppd.parameter_packs = &parameter_packs;
3722 ppd.visited = new hash_set<tree>;
3723 ppd.type_pack_expansion_p = TYPE_P (arg);
3724 cp_walk_tree (&arg, &find_parameter_packs_r, &ppd, ppd.visited);
3725 delete ppd.visited;
3727 /* Make sure we found some parameter packs. */
3728 if (parameter_packs == NULL_TREE)
3730 if (TYPE_P (arg))
3731 error ("expansion pattern %<%T%> contains no argument packs", arg);
3732 else
3733 error ("expansion pattern %<%E%> contains no argument packs", arg);
3734 return error_mark_node;
3736 PACK_EXPANSION_PARAMETER_PACKS (result) = parameter_packs;
3738 PACK_EXPANSION_LOCAL_P (result) = at_function_scope_p ();
3740 return result;
3743 /* Checks T for any "bare" parameter packs, which have not yet been
3744 expanded, and issues an error if any are found. This operation can
3745 only be done on full expressions or types (e.g., an expression
3746 statement, "if" condition, etc.), because we could have expressions like:
3748 foo(f(g(h(args)))...)
3750 where "args" is a parameter pack. check_for_bare_parameter_packs
3751 should not be called for the subexpressions args, h(args),
3752 g(h(args)), or f(g(h(args))), because we would produce erroneous
3753 error messages.
3755 Returns TRUE and emits an error if there were bare parameter packs,
3756 returns FALSE otherwise. */
3757 bool
3758 check_for_bare_parameter_packs (tree t)
3760 tree parameter_packs = NULL_TREE;
3761 struct find_parameter_pack_data ppd;
3763 if (!processing_template_decl || !t || t == error_mark_node)
3764 return false;
3766 if (TREE_CODE (t) == TYPE_DECL)
3767 t = TREE_TYPE (t);
3769 ppd.parameter_packs = &parameter_packs;
3770 ppd.visited = new hash_set<tree>;
3771 ppd.type_pack_expansion_p = false;
3772 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3773 delete ppd.visited;
3775 if (parameter_packs)
3777 location_t loc = EXPR_LOC_OR_LOC (t, input_location);
3778 error_at (loc, "parameter packs not expanded with %<...%>:");
3779 while (parameter_packs)
3781 tree pack = TREE_VALUE (parameter_packs);
3782 tree name = NULL_TREE;
3784 if (TREE_CODE (pack) == TEMPLATE_TYPE_PARM
3785 || TREE_CODE (pack) == TEMPLATE_TEMPLATE_PARM)
3786 name = TYPE_NAME (pack);
3787 else if (TREE_CODE (pack) == TEMPLATE_PARM_INDEX)
3788 name = DECL_NAME (TEMPLATE_PARM_DECL (pack));
3789 else
3790 name = DECL_NAME (pack);
3792 if (name)
3793 inform (loc, " %qD", name);
3794 else
3795 inform (loc, " <anonymous>");
3797 parameter_packs = TREE_CHAIN (parameter_packs);
3800 return true;
3803 return false;
3806 /* Expand any parameter packs that occur in the template arguments in
3807 ARGS. */
3808 tree
3809 expand_template_argument_pack (tree args)
3811 tree result_args = NULL_TREE;
3812 int in_arg, out_arg = 0, nargs = args ? TREE_VEC_LENGTH (args) : 0;
3813 int num_result_args = -1;
3814 int non_default_args_count = -1;
3816 /* First, determine if we need to expand anything, and the number of
3817 slots we'll need. */
3818 for (in_arg = 0; in_arg < nargs; ++in_arg)
3820 tree arg = TREE_VEC_ELT (args, in_arg);
3821 if (arg == NULL_TREE)
3822 return args;
3823 if (ARGUMENT_PACK_P (arg))
3825 int num_packed = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg));
3826 if (num_result_args < 0)
3827 num_result_args = in_arg + num_packed;
3828 else
3829 num_result_args += num_packed;
3831 else
3833 if (num_result_args >= 0)
3834 num_result_args++;
3838 /* If no expansion is necessary, we're done. */
3839 if (num_result_args < 0)
3840 return args;
3842 /* Expand arguments. */
3843 result_args = make_tree_vec (num_result_args);
3844 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (args))
3845 non_default_args_count =
3846 GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (args);
3847 for (in_arg = 0; in_arg < nargs; ++in_arg)
3849 tree arg = TREE_VEC_ELT (args, in_arg);
3850 if (ARGUMENT_PACK_P (arg))
3852 tree packed = ARGUMENT_PACK_ARGS (arg);
3853 int i, num_packed = TREE_VEC_LENGTH (packed);
3854 for (i = 0; i < num_packed; ++i, ++out_arg)
3855 TREE_VEC_ELT (result_args, out_arg) = TREE_VEC_ELT(packed, i);
3856 if (non_default_args_count > 0)
3857 non_default_args_count += num_packed - 1;
3859 else
3861 TREE_VEC_ELT (result_args, out_arg) = arg;
3862 ++out_arg;
3865 if (non_default_args_count >= 0)
3866 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (result_args, non_default_args_count);
3867 return result_args;
3870 /* Checks if DECL shadows a template parameter.
3872 [temp.local]: A template-parameter shall not be redeclared within its
3873 scope (including nested scopes).
3875 Emits an error and returns TRUE if the DECL shadows a parameter,
3876 returns FALSE otherwise. */
3878 bool
3879 check_template_shadow (tree decl)
3881 tree olddecl;
3883 /* If we're not in a template, we can't possibly shadow a template
3884 parameter. */
3885 if (!current_template_parms)
3886 return true;
3888 /* Figure out what we're shadowing. */
3889 if (TREE_CODE (decl) == OVERLOAD)
3890 decl = OVL_CURRENT (decl);
3891 olddecl = innermost_non_namespace_value (DECL_NAME (decl));
3893 /* If there's no previous binding for this name, we're not shadowing
3894 anything, let alone a template parameter. */
3895 if (!olddecl)
3896 return true;
3898 /* If we're not shadowing a template parameter, we're done. Note
3899 that OLDDECL might be an OVERLOAD (or perhaps even an
3900 ERROR_MARK), so we can't just blithely assume it to be a _DECL
3901 node. */
3902 if (!DECL_P (olddecl) || !DECL_TEMPLATE_PARM_P (olddecl))
3903 return true;
3905 /* We check for decl != olddecl to avoid bogus errors for using a
3906 name inside a class. We check TPFI to avoid duplicate errors for
3907 inline member templates. */
3908 if (decl == olddecl
3909 || (DECL_TEMPLATE_PARM_P (decl)
3910 && TEMPLATE_PARMS_FOR_INLINE (current_template_parms)))
3911 return true;
3913 /* Don't complain about the injected class name, as we've already
3914 complained about the class itself. */
3915 if (DECL_SELF_REFERENCE_P (decl))
3916 return false;
3918 if (DECL_TEMPLATE_PARM_P (decl))
3919 error ("declaration of template parameter %q+D shadows "
3920 "template parameter", decl);
3921 else
3922 error ("declaration of %q+#D shadows template parameter", decl);
3923 inform (DECL_SOURCE_LOCATION (olddecl),
3924 "template parameter %qD declared here", olddecl);
3925 return false;
3928 /* Return a new TEMPLATE_PARM_INDEX with the indicated INDEX, LEVEL,
3929 ORIG_LEVEL, DECL, and TYPE. */
3931 static tree
3932 build_template_parm_index (int index,
3933 int level,
3934 int orig_level,
3935 tree decl,
3936 tree type)
3938 tree t = make_node (TEMPLATE_PARM_INDEX);
3939 TEMPLATE_PARM_IDX (t) = index;
3940 TEMPLATE_PARM_LEVEL (t) = level;
3941 TEMPLATE_PARM_ORIG_LEVEL (t) = orig_level;
3942 TEMPLATE_PARM_DECL (t) = decl;
3943 TREE_TYPE (t) = type;
3944 TREE_CONSTANT (t) = TREE_CONSTANT (decl);
3945 TREE_READONLY (t) = TREE_READONLY (decl);
3947 return t;
3950 /* Find the canonical type parameter for the given template type
3951 parameter. Returns the canonical type parameter, which may be TYPE
3952 if no such parameter existed. */
3954 static tree
3955 canonical_type_parameter (tree type)
3957 tree list;
3958 int idx = TEMPLATE_TYPE_IDX (type);
3959 if (!canonical_template_parms)
3960 vec_alloc (canonical_template_parms, idx+1);
3962 while (canonical_template_parms->length () <= (unsigned)idx)
3963 vec_safe_push (canonical_template_parms, NULL_TREE);
3965 list = (*canonical_template_parms)[idx];
3966 while (list && !comptypes (type, TREE_VALUE (list), COMPARE_STRUCTURAL))
3967 list = TREE_CHAIN (list);
3969 if (list)
3970 return TREE_VALUE (list);
3971 else
3973 (*canonical_template_parms)[idx]
3974 = tree_cons (NULL_TREE, type,
3975 (*canonical_template_parms)[idx]);
3976 return type;
3980 /* Return a TEMPLATE_PARM_INDEX, similar to INDEX, but whose
3981 TEMPLATE_PARM_LEVEL has been decreased by LEVELS. If such a
3982 TEMPLATE_PARM_INDEX already exists, it is returned; otherwise, a
3983 new one is created. */
3985 static tree
3986 reduce_template_parm_level (tree index, tree type, int levels, tree args,
3987 tsubst_flags_t complain)
3989 if (TEMPLATE_PARM_DESCENDANTS (index) == NULL_TREE
3990 || (TEMPLATE_PARM_LEVEL (TEMPLATE_PARM_DESCENDANTS (index))
3991 != TEMPLATE_PARM_LEVEL (index) - levels)
3992 || !same_type_p (type, TREE_TYPE (TEMPLATE_PARM_DESCENDANTS (index))))
3994 tree orig_decl = TEMPLATE_PARM_DECL (index);
3995 tree decl, t;
3997 decl = build_decl (DECL_SOURCE_LOCATION (orig_decl),
3998 TREE_CODE (orig_decl), DECL_NAME (orig_decl), type);
3999 TREE_CONSTANT (decl) = TREE_CONSTANT (orig_decl);
4000 TREE_READONLY (decl) = TREE_READONLY (orig_decl);
4001 DECL_ARTIFICIAL (decl) = 1;
4002 SET_DECL_TEMPLATE_PARM_P (decl);
4004 t = build_template_parm_index (TEMPLATE_PARM_IDX (index),
4005 TEMPLATE_PARM_LEVEL (index) - levels,
4006 TEMPLATE_PARM_ORIG_LEVEL (index),
4007 decl, type);
4008 TEMPLATE_PARM_DESCENDANTS (index) = t;
4009 TEMPLATE_PARM_PARAMETER_PACK (t)
4010 = TEMPLATE_PARM_PARAMETER_PACK (index);
4012 /* Template template parameters need this. */
4013 if (TREE_CODE (decl) == TEMPLATE_DECL)
4015 DECL_TEMPLATE_RESULT (decl)
4016 = build_decl (DECL_SOURCE_LOCATION (decl),
4017 TYPE_DECL, DECL_NAME (decl), type);
4018 DECL_ARTIFICIAL (DECL_TEMPLATE_RESULT (decl)) = true;
4019 DECL_TEMPLATE_PARMS (decl) = tsubst_template_parms
4020 (DECL_TEMPLATE_PARMS (orig_decl), args, complain);
4024 return TEMPLATE_PARM_DESCENDANTS (index);
4027 /* Process information from new template parameter PARM and append it
4028 to the LIST being built. This new parameter is a non-type
4029 parameter iff IS_NON_TYPE is true. This new parameter is a
4030 parameter pack iff IS_PARAMETER_PACK is true. The location of PARM
4031 is in PARM_LOC. */
4033 tree
4034 process_template_parm (tree list, location_t parm_loc, tree parm,
4035 bool is_non_type, bool is_parameter_pack)
4037 tree decl = 0;
4038 int idx = 0;
4040 gcc_assert (TREE_CODE (parm) == TREE_LIST);
4041 tree defval = TREE_PURPOSE (parm);
4042 tree constr = TREE_TYPE (parm);
4044 if (list)
4046 tree p = tree_last (list);
4048 if (p && TREE_VALUE (p) != error_mark_node)
4050 p = TREE_VALUE (p);
4051 if (TREE_CODE (p) == TYPE_DECL || TREE_CODE (p) == TEMPLATE_DECL)
4052 idx = TEMPLATE_TYPE_IDX (TREE_TYPE (p));
4053 else
4054 idx = TEMPLATE_PARM_IDX (DECL_INITIAL (p));
4057 ++idx;
4060 if (is_non_type)
4062 parm = TREE_VALUE (parm);
4064 SET_DECL_TEMPLATE_PARM_P (parm);
4066 if (TREE_TYPE (parm) != error_mark_node)
4068 /* [temp.param]
4070 The top-level cv-qualifiers on the template-parameter are
4071 ignored when determining its type. */
4072 TREE_TYPE (parm) = TYPE_MAIN_VARIANT (TREE_TYPE (parm));
4073 if (invalid_nontype_parm_type_p (TREE_TYPE (parm), 1))
4074 TREE_TYPE (parm) = error_mark_node;
4075 else if (uses_parameter_packs (TREE_TYPE (parm))
4076 && !is_parameter_pack
4077 /* If we're in a nested template parameter list, the template
4078 template parameter could be a parameter pack. */
4079 && processing_template_parmlist == 1)
4081 /* This template parameter is not a parameter pack, but it
4082 should be. Complain about "bare" parameter packs. */
4083 check_for_bare_parameter_packs (TREE_TYPE (parm));
4085 /* Recover by calling this a parameter pack. */
4086 is_parameter_pack = true;
4090 /* A template parameter is not modifiable. */
4091 TREE_CONSTANT (parm) = 1;
4092 TREE_READONLY (parm) = 1;
4093 decl = build_decl (parm_loc,
4094 CONST_DECL, DECL_NAME (parm), TREE_TYPE (parm));
4095 TREE_CONSTANT (decl) = 1;
4096 TREE_READONLY (decl) = 1;
4097 DECL_INITIAL (parm) = DECL_INITIAL (decl)
4098 = build_template_parm_index (idx, processing_template_decl,
4099 processing_template_decl,
4100 decl, TREE_TYPE (parm));
4102 TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm))
4103 = is_parameter_pack;
4105 else
4107 tree t;
4108 parm = TREE_VALUE (TREE_VALUE (parm));
4110 if (parm && TREE_CODE (parm) == TEMPLATE_DECL)
4112 t = cxx_make_type (TEMPLATE_TEMPLATE_PARM);
4113 /* This is for distinguishing between real templates and template
4114 template parameters */
4115 TREE_TYPE (parm) = t;
4116 TREE_TYPE (DECL_TEMPLATE_RESULT (parm)) = t;
4117 decl = parm;
4119 else
4121 t = cxx_make_type (TEMPLATE_TYPE_PARM);
4122 /* parm is either IDENTIFIER_NODE or NULL_TREE. */
4123 decl = build_decl (parm_loc,
4124 TYPE_DECL, parm, t);
4127 TYPE_NAME (t) = decl;
4128 TYPE_STUB_DECL (t) = decl;
4129 parm = decl;
4130 TEMPLATE_TYPE_PARM_INDEX (t)
4131 = build_template_parm_index (idx, processing_template_decl,
4132 processing_template_decl,
4133 decl, TREE_TYPE (parm));
4134 TEMPLATE_TYPE_PARAMETER_PACK (t) = is_parameter_pack;
4135 TYPE_CANONICAL (t) = canonical_type_parameter (t);
4137 DECL_ARTIFICIAL (decl) = 1;
4138 SET_DECL_TEMPLATE_PARM_P (decl);
4140 /* Build requirements for the type/template parameter.
4141 This must be done after SET_DECL_TEMPLATE_PARM_P or
4142 process_template_parm could fail. */
4143 tree reqs = finish_shorthand_constraint (parm, constr);
4145 pushdecl (decl);
4147 /* Build the parameter node linking the parameter declaration,
4148 its default argument (if any), and its constraints (if any). */
4149 parm = build_tree_list (defval, parm);
4150 TEMPLATE_PARM_CONSTRAINTS (parm) = reqs;
4152 return chainon (list, parm);
4155 /* The end of a template parameter list has been reached. Process the
4156 tree list into a parameter vector, converting each parameter into a more
4157 useful form. Type parameters are saved as IDENTIFIER_NODEs, and others
4158 as PARM_DECLs. */
4160 tree
4161 end_template_parm_list (tree parms)
4163 int nparms;
4164 tree parm, next;
4165 tree saved_parmlist = make_tree_vec (list_length (parms));
4167 /* Pop the dummy parameter level and add the real one. */
4168 current_template_parms = TREE_CHAIN (current_template_parms);
4170 current_template_parms
4171 = tree_cons (size_int (processing_template_decl),
4172 saved_parmlist, current_template_parms);
4174 for (parm = parms, nparms = 0; parm; parm = next, nparms++)
4176 next = TREE_CHAIN (parm);
4177 TREE_VEC_ELT (saved_parmlist, nparms) = parm;
4178 TREE_CHAIN (parm) = NULL_TREE;
4181 --processing_template_parmlist;
4183 return saved_parmlist;
4186 // Explicitly indicate the end of the template parameter list. We assume
4187 // that the current template parameters have been constructed and/or
4188 // managed explicitly, as when creating new template template parameters
4189 // from a shorthand constraint.
4190 void
4191 end_template_parm_list ()
4193 --processing_template_parmlist;
4196 /* end_template_decl is called after a template declaration is seen. */
4198 void
4199 end_template_decl (void)
4201 reset_specialization ();
4203 if (! processing_template_decl)
4204 return;
4206 /* This matches the pushlevel in begin_template_parm_list. */
4207 finish_scope ();
4209 --processing_template_decl;
4210 current_template_parms = TREE_CHAIN (current_template_parms);
4213 /* Takes a TREE_LIST representing a template parameter and convert it
4214 into an argument suitable to be passed to the type substitution
4215 functions. Note that If the TREE_LIST contains an error_mark
4216 node, the returned argument is error_mark_node. */
4218 tree
4219 template_parm_to_arg (tree t)
4222 if (t == NULL_TREE
4223 || TREE_CODE (t) != TREE_LIST)
4224 return t;
4226 if (error_operand_p (TREE_VALUE (t)))
4227 return error_mark_node;
4229 t = TREE_VALUE (t);
4231 if (TREE_CODE (t) == TYPE_DECL
4232 || TREE_CODE (t) == TEMPLATE_DECL)
4234 t = TREE_TYPE (t);
4236 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
4238 /* Turn this argument into a TYPE_ARGUMENT_PACK
4239 with a single element, which expands T. */
4240 tree vec = make_tree_vec (1);
4241 if (CHECKING_P)
4242 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (vec, TREE_VEC_LENGTH (vec));
4244 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
4246 t = cxx_make_type (TYPE_ARGUMENT_PACK);
4247 SET_ARGUMENT_PACK_ARGS (t, vec);
4250 else
4252 t = DECL_INITIAL (t);
4254 if (TEMPLATE_PARM_PARAMETER_PACK (t))
4256 /* Turn this argument into a NONTYPE_ARGUMENT_PACK
4257 with a single element, which expands T. */
4258 tree vec = make_tree_vec (1);
4259 tree type = TREE_TYPE (TEMPLATE_PARM_DECL (t));
4260 if (CHECKING_P)
4261 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (vec, TREE_VEC_LENGTH (vec));
4263 t = convert_from_reference (t);
4264 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
4266 t = make_node (NONTYPE_ARGUMENT_PACK);
4267 SET_ARGUMENT_PACK_ARGS (t, vec);
4268 TREE_TYPE (t) = type;
4270 else
4271 t = convert_from_reference (t);
4273 return t;
4276 /* Given a set of template parameters, return them as a set of template
4277 arguments. The template parameters are represented as a TREE_VEC, in
4278 the form documented in cp-tree.h for template arguments. */
4280 static tree
4281 template_parms_to_args (tree parms)
4283 tree header;
4284 tree args = NULL_TREE;
4285 int length = TMPL_PARMS_DEPTH (parms);
4286 int l = length;
4288 /* If there is only one level of template parameters, we do not
4289 create a TREE_VEC of TREE_VECs. Instead, we return a single
4290 TREE_VEC containing the arguments. */
4291 if (length > 1)
4292 args = make_tree_vec (length);
4294 for (header = parms; header; header = TREE_CHAIN (header))
4296 tree a = copy_node (TREE_VALUE (header));
4297 int i;
4299 TREE_TYPE (a) = NULL_TREE;
4300 for (i = TREE_VEC_LENGTH (a) - 1; i >= 0; --i)
4301 TREE_VEC_ELT (a, i) = template_parm_to_arg (TREE_VEC_ELT (a, i));
4303 if (CHECKING_P)
4304 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (a, TREE_VEC_LENGTH (a));
4306 if (length > 1)
4307 TREE_VEC_ELT (args, --l) = a;
4308 else
4309 args = a;
4312 return args;
4315 /* Within the declaration of a template, return the currently active
4316 template parameters as an argument TREE_VEC. */
4318 static tree
4319 current_template_args (void)
4321 return template_parms_to_args (current_template_parms);
4324 /* Update the declared TYPE by doing any lookups which were thought to be
4325 dependent, but are not now that we know the SCOPE of the declarator. */
4327 tree
4328 maybe_update_decl_type (tree orig_type, tree scope)
4330 tree type = orig_type;
4332 if (type == NULL_TREE)
4333 return type;
4335 if (TREE_CODE (orig_type) == TYPE_DECL)
4336 type = TREE_TYPE (type);
4338 if (scope && TYPE_P (scope) && dependent_type_p (scope)
4339 && dependent_type_p (type)
4340 /* Don't bother building up the args in this case. */
4341 && TREE_CODE (type) != TEMPLATE_TYPE_PARM)
4343 /* tsubst in the args corresponding to the template parameters,
4344 including auto if present. Most things will be unchanged, but
4345 make_typename_type and tsubst_qualified_id will resolve
4346 TYPENAME_TYPEs and SCOPE_REFs that were previously dependent. */
4347 tree args = current_template_args ();
4348 tree auto_node = type_uses_auto (type);
4349 tree pushed;
4350 if (auto_node)
4352 tree auto_vec = make_tree_vec (1);
4353 TREE_VEC_ELT (auto_vec, 0) = auto_node;
4354 args = add_to_template_args (args, auto_vec);
4356 pushed = push_scope (scope);
4357 type = tsubst (type, args, tf_warning_or_error, NULL_TREE);
4358 if (pushed)
4359 pop_scope (scope);
4362 if (type == error_mark_node)
4363 return orig_type;
4365 if (TREE_CODE (orig_type) == TYPE_DECL)
4367 if (same_type_p (type, TREE_TYPE (orig_type)))
4368 type = orig_type;
4369 else
4370 type = TYPE_NAME (type);
4372 return type;
4375 /* Return a TEMPLATE_DECL corresponding to DECL, using the indicated
4376 template PARMS and constraints, CONSTR. If MEMBER_TEMPLATE_P is true,
4377 the new template is a member template. */
4379 tree
4380 build_template_decl (tree decl, tree parms, bool member_template_p)
4382 tree tmpl = build_lang_decl (TEMPLATE_DECL, DECL_NAME (decl), NULL_TREE);
4383 DECL_TEMPLATE_PARMS (tmpl) = parms;
4384 DECL_CONTEXT (tmpl) = DECL_CONTEXT (decl);
4385 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
4386 DECL_MEMBER_TEMPLATE_P (tmpl) = member_template_p;
4388 return tmpl;
4391 struct template_parm_data
4393 /* The level of the template parameters we are currently
4394 processing. */
4395 int level;
4397 /* The index of the specialization argument we are currently
4398 processing. */
4399 int current_arg;
4401 /* An array whose size is the number of template parameters. The
4402 elements are nonzero if the parameter has been used in any one
4403 of the arguments processed so far. */
4404 int* parms;
4406 /* An array whose size is the number of template arguments. The
4407 elements are nonzero if the argument makes use of template
4408 parameters of this level. */
4409 int* arg_uses_template_parms;
4412 /* Subroutine of push_template_decl used to see if each template
4413 parameter in a partial specialization is used in the explicit
4414 argument list. If T is of the LEVEL given in DATA (which is
4415 treated as a template_parm_data*), then DATA->PARMS is marked
4416 appropriately. */
4418 static int
4419 mark_template_parm (tree t, void* data)
4421 int level;
4422 int idx;
4423 struct template_parm_data* tpd = (struct template_parm_data*) data;
4425 template_parm_level_and_index (t, &level, &idx);
4427 if (level == tpd->level)
4429 tpd->parms[idx] = 1;
4430 tpd->arg_uses_template_parms[tpd->current_arg] = 1;
4433 /* Return zero so that for_each_template_parm will continue the
4434 traversal of the tree; we want to mark *every* template parm. */
4435 return 0;
4438 /* Process the partial specialization DECL. */
4440 static tree
4441 process_partial_specialization (tree decl)
4443 tree type = TREE_TYPE (decl);
4444 tree tinfo = get_template_info (decl);
4445 tree maintmpl = TI_TEMPLATE (tinfo);
4446 tree specargs = TI_ARGS (tinfo);
4447 tree inner_args = INNERMOST_TEMPLATE_ARGS (specargs);
4448 tree main_inner_parms = DECL_INNERMOST_TEMPLATE_PARMS (maintmpl);
4449 tree inner_parms;
4450 tree inst;
4451 int nargs = TREE_VEC_LENGTH (inner_args);
4452 int ntparms;
4453 int i;
4454 bool did_error_intro = false;
4455 struct template_parm_data tpd;
4456 struct template_parm_data tpd2;
4458 gcc_assert (current_template_parms);
4460 /* A concept cannot be specialized. */
4461 if (flag_concepts && variable_concept_p (maintmpl))
4463 error ("specialization of variable concept %q#D", maintmpl);
4464 return error_mark_node;
4467 inner_parms = INNERMOST_TEMPLATE_PARMS (current_template_parms);
4468 ntparms = TREE_VEC_LENGTH (inner_parms);
4470 /* We check that each of the template parameters given in the
4471 partial specialization is used in the argument list to the
4472 specialization. For example:
4474 template <class T> struct S;
4475 template <class T> struct S<T*>;
4477 The second declaration is OK because `T*' uses the template
4478 parameter T, whereas
4480 template <class T> struct S<int>;
4482 is no good. Even trickier is:
4484 template <class T>
4485 struct S1
4487 template <class U>
4488 struct S2;
4489 template <class U>
4490 struct S2<T>;
4493 The S2<T> declaration is actually invalid; it is a
4494 full-specialization. Of course,
4496 template <class U>
4497 struct S2<T (*)(U)>;
4499 or some such would have been OK. */
4500 tpd.level = TMPL_PARMS_DEPTH (current_template_parms);
4501 tpd.parms = XALLOCAVEC (int, ntparms);
4502 memset (tpd.parms, 0, sizeof (int) * ntparms);
4504 tpd.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4505 memset (tpd.arg_uses_template_parms, 0, sizeof (int) * nargs);
4506 for (i = 0; i < nargs; ++i)
4508 tpd.current_arg = i;
4509 for_each_template_parm (TREE_VEC_ELT (inner_args, i),
4510 &mark_template_parm,
4511 &tpd,
4512 NULL,
4513 /*include_nondeduced_p=*/false);
4515 for (i = 0; i < ntparms; ++i)
4516 if (tpd.parms[i] == 0)
4518 /* One of the template parms was not used in a deduced context in the
4519 specialization. */
4520 if (!did_error_intro)
4522 error ("template parameters not deducible in "
4523 "partial specialization:");
4524 did_error_intro = true;
4527 inform (input_location, " %qD",
4528 TREE_VALUE (TREE_VEC_ELT (inner_parms, i)));
4531 if (did_error_intro)
4532 return error_mark_node;
4534 /* [temp.class.spec]
4536 The argument list of the specialization shall not be identical to
4537 the implicit argument list of the primary template. */
4538 tree main_args
4539 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (maintmpl)));
4540 if (comp_template_args (inner_args, INNERMOST_TEMPLATE_ARGS (main_args))
4541 && (!flag_concepts
4542 || !strictly_subsumes (current_template_constraints (),
4543 get_constraints (maintmpl))))
4545 if (!flag_concepts)
4546 error ("partial specialization %q+D does not specialize "
4547 "any template arguments", decl);
4548 else
4549 error ("partial specialization %q+D does not specialize any "
4550 "template arguments and is not more constrained than", decl);
4551 inform (DECL_SOURCE_LOCATION (maintmpl), "primary template here");
4554 /* A partial specialization that replaces multiple parameters of the
4555 primary template with a pack expansion is less specialized for those
4556 parameters. */
4557 if (nargs < DECL_NTPARMS (maintmpl))
4559 error ("partial specialization is not more specialized than the "
4560 "primary template because it replaces multiple parameters "
4561 "with a pack expansion");
4562 inform (DECL_SOURCE_LOCATION (maintmpl), "primary template here");
4563 return decl;
4566 /* [temp.class.spec]
4568 A partially specialized non-type argument expression shall not
4569 involve template parameters of the partial specialization except
4570 when the argument expression is a simple identifier.
4572 The type of a template parameter corresponding to a specialized
4573 non-type argument shall not be dependent on a parameter of the
4574 specialization.
4576 Also, we verify that pack expansions only occur at the
4577 end of the argument list. */
4578 gcc_assert (nargs == DECL_NTPARMS (maintmpl));
4579 tpd2.parms = 0;
4580 for (i = 0; i < nargs; ++i)
4582 tree parm = TREE_VALUE (TREE_VEC_ELT (main_inner_parms, i));
4583 tree arg = TREE_VEC_ELT (inner_args, i);
4584 tree packed_args = NULL_TREE;
4585 int j, len = 1;
4587 if (ARGUMENT_PACK_P (arg))
4589 /* Extract the arguments from the argument pack. We'll be
4590 iterating over these in the following loop. */
4591 packed_args = ARGUMENT_PACK_ARGS (arg);
4592 len = TREE_VEC_LENGTH (packed_args);
4595 for (j = 0; j < len; j++)
4597 if (packed_args)
4598 /* Get the Jth argument in the parameter pack. */
4599 arg = TREE_VEC_ELT (packed_args, j);
4601 if (PACK_EXPANSION_P (arg))
4603 /* Pack expansions must come at the end of the
4604 argument list. */
4605 if ((packed_args && j < len - 1)
4606 || (!packed_args && i < nargs - 1))
4608 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4609 error ("parameter pack argument %qE must be at the "
4610 "end of the template argument list", arg);
4611 else
4612 error ("parameter pack argument %qT must be at the "
4613 "end of the template argument list", arg);
4617 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4618 /* We only care about the pattern. */
4619 arg = PACK_EXPANSION_PATTERN (arg);
4621 if (/* These first two lines are the `non-type' bit. */
4622 !TYPE_P (arg)
4623 && TREE_CODE (arg) != TEMPLATE_DECL
4624 /* This next two lines are the `argument expression is not just a
4625 simple identifier' condition and also the `specialized
4626 non-type argument' bit. */
4627 && TREE_CODE (arg) != TEMPLATE_PARM_INDEX
4628 && !(REFERENCE_REF_P (arg)
4629 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_PARM_INDEX))
4631 if ((!packed_args && tpd.arg_uses_template_parms[i])
4632 || (packed_args && uses_template_parms (arg)))
4633 error ("template argument %qE involves template parameter(s)",
4634 arg);
4635 else
4637 /* Look at the corresponding template parameter,
4638 marking which template parameters its type depends
4639 upon. */
4640 tree type = TREE_TYPE (parm);
4642 if (!tpd2.parms)
4644 /* We haven't yet initialized TPD2. Do so now. */
4645 tpd2.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4646 /* The number of parameters here is the number in the
4647 main template, which, as checked in the assertion
4648 above, is NARGS. */
4649 tpd2.parms = XALLOCAVEC (int, nargs);
4650 tpd2.level =
4651 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (maintmpl));
4654 /* Mark the template parameters. But this time, we're
4655 looking for the template parameters of the main
4656 template, not in the specialization. */
4657 tpd2.current_arg = i;
4658 tpd2.arg_uses_template_parms[i] = 0;
4659 memset (tpd2.parms, 0, sizeof (int) * nargs);
4660 for_each_template_parm (type,
4661 &mark_template_parm,
4662 &tpd2,
4663 NULL,
4664 /*include_nondeduced_p=*/false);
4666 if (tpd2.arg_uses_template_parms [i])
4668 /* The type depended on some template parameters.
4669 If they are fully specialized in the
4670 specialization, that's OK. */
4671 int j;
4672 int count = 0;
4673 for (j = 0; j < nargs; ++j)
4674 if (tpd2.parms[j] != 0
4675 && tpd.arg_uses_template_parms [j])
4676 ++count;
4677 if (count != 0)
4678 error_n (input_location, count,
4679 "type %qT of template argument %qE depends "
4680 "on a template parameter",
4681 "type %qT of template argument %qE depends "
4682 "on template parameters",
4683 type,
4684 arg);
4691 /* We should only get here once. */
4692 if (TREE_CODE (decl) == TYPE_DECL)
4693 gcc_assert (!COMPLETE_TYPE_P (type));
4695 // Build the template decl.
4696 tree tmpl = build_template_decl (decl, current_template_parms,
4697 DECL_MEMBER_TEMPLATE_P (maintmpl));
4698 TREE_TYPE (tmpl) = type;
4699 DECL_TEMPLATE_RESULT (tmpl) = decl;
4700 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
4701 DECL_TEMPLATE_INFO (tmpl) = build_template_info (maintmpl, specargs);
4702 DECL_PRIMARY_TEMPLATE (tmpl) = maintmpl;
4704 if (VAR_P (decl))
4705 /* We didn't register this in check_explicit_specialization so we could
4706 wait until the constraints were set. */
4707 decl = register_specialization (decl, maintmpl, specargs, false, 0);
4708 else
4709 associate_classtype_constraints (type);
4711 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)
4712 = tree_cons (specargs, tmpl,
4713 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl));
4714 TREE_TYPE (DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)) = type;
4716 for (inst = DECL_TEMPLATE_INSTANTIATIONS (maintmpl); inst;
4717 inst = TREE_CHAIN (inst))
4719 tree instance = TREE_VALUE (inst);
4720 if (TYPE_P (instance)
4721 ? (COMPLETE_TYPE_P (instance)
4722 && CLASSTYPE_IMPLICIT_INSTANTIATION (instance))
4723 : DECL_TEMPLATE_INSTANTIATION (instance))
4725 tree spec = most_specialized_partial_spec (instance, tf_none);
4726 tree inst_decl = (DECL_P (instance)
4727 ? instance : TYPE_NAME (instance));
4728 if (!spec)
4729 /* OK */;
4730 else if (spec == error_mark_node)
4731 permerror (input_location,
4732 "declaration of %qD ambiguates earlier template "
4733 "instantiation for %qD", decl, inst_decl);
4734 else if (TREE_VALUE (spec) == tmpl)
4735 permerror (input_location,
4736 "partial specialization of %qD after instantiation "
4737 "of %qD", decl, inst_decl);
4741 return decl;
4744 /* PARM is a template parameter of some form; return the corresponding
4745 TEMPLATE_PARM_INDEX. */
4747 static tree
4748 get_template_parm_index (tree parm)
4750 if (TREE_CODE (parm) == PARM_DECL
4751 || TREE_CODE (parm) == CONST_DECL)
4752 parm = DECL_INITIAL (parm);
4753 else if (TREE_CODE (parm) == TYPE_DECL
4754 || TREE_CODE (parm) == TEMPLATE_DECL)
4755 parm = TREE_TYPE (parm);
4756 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
4757 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM
4758 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
4759 parm = TEMPLATE_TYPE_PARM_INDEX (parm);
4760 gcc_assert (TREE_CODE (parm) == TEMPLATE_PARM_INDEX);
4761 return parm;
4764 /* Subroutine of fixed_parameter_pack_p below. Look for any template
4765 parameter packs used by the template parameter PARM. */
4767 static void
4768 fixed_parameter_pack_p_1 (tree parm, struct find_parameter_pack_data *ppd)
4770 /* A type parm can't refer to another parm. */
4771 if (TREE_CODE (parm) == TYPE_DECL)
4772 return;
4773 else if (TREE_CODE (parm) == PARM_DECL)
4775 cp_walk_tree (&TREE_TYPE (parm), &find_parameter_packs_r,
4776 ppd, ppd->visited);
4777 return;
4780 gcc_assert (TREE_CODE (parm) == TEMPLATE_DECL);
4782 tree vec = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (parm));
4783 for (int i = 0; i < TREE_VEC_LENGTH (vec); ++i)
4784 fixed_parameter_pack_p_1 (TREE_VALUE (TREE_VEC_ELT (vec, i)), ppd);
4787 /* PARM is a template parameter pack. Return any parameter packs used in
4788 its type or the type of any of its template parameters. If there are
4789 any such packs, it will be instantiated into a fixed template parameter
4790 list by partial instantiation rather than be fully deduced. */
4792 tree
4793 fixed_parameter_pack_p (tree parm)
4795 /* This can only be true in a member template. */
4796 if (TEMPLATE_PARM_ORIG_LEVEL (get_template_parm_index (parm)) < 2)
4797 return NULL_TREE;
4798 /* This can only be true for a parameter pack. */
4799 if (!template_parameter_pack_p (parm))
4800 return NULL_TREE;
4801 /* A type parm can't refer to another parm. */
4802 if (TREE_CODE (parm) == TYPE_DECL)
4803 return NULL_TREE;
4805 tree parameter_packs = NULL_TREE;
4806 struct find_parameter_pack_data ppd;
4807 ppd.parameter_packs = &parameter_packs;
4808 ppd.visited = new hash_set<tree>;
4809 ppd.type_pack_expansion_p = false;
4811 fixed_parameter_pack_p_1 (parm, &ppd);
4813 delete ppd.visited;
4814 return parameter_packs;
4817 /* Check that a template declaration's use of default arguments and
4818 parameter packs is not invalid. Here, PARMS are the template
4819 parameters. IS_PRIMARY is true if DECL is the thing declared by
4820 a primary template. IS_PARTIAL is true if DECL is a partial
4821 specialization.
4823 IS_FRIEND_DECL is nonzero if DECL is a friend function template
4824 declaration (but not a definition); 1 indicates a declaration, 2
4825 indicates a redeclaration. When IS_FRIEND_DECL=2, no errors are
4826 emitted for extraneous default arguments.
4828 Returns TRUE if there were no errors found, FALSE otherwise. */
4830 bool
4831 check_default_tmpl_args (tree decl, tree parms, bool is_primary,
4832 bool is_partial, int is_friend_decl)
4834 const char *msg;
4835 int last_level_to_check;
4836 tree parm_level;
4837 bool no_errors = true;
4839 /* [temp.param]
4841 A default template-argument shall not be specified in a
4842 function template declaration or a function template definition, nor
4843 in the template-parameter-list of the definition of a member of a
4844 class template. */
4846 if (TREE_CODE (CP_DECL_CONTEXT (decl)) == FUNCTION_DECL
4847 || (TREE_CODE (decl) == FUNCTION_DECL && DECL_LOCAL_FUNCTION_P (decl)))
4848 /* You can't have a function template declaration in a local
4849 scope, nor you can you define a member of a class template in a
4850 local scope. */
4851 return true;
4853 if ((TREE_CODE (decl) == TYPE_DECL
4854 && TREE_TYPE (decl)
4855 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
4856 || (TREE_CODE (decl) == FUNCTION_DECL
4857 && LAMBDA_FUNCTION_P (decl)))
4858 /* A lambda doesn't have an explicit declaration; don't complain
4859 about the parms of the enclosing class. */
4860 return true;
4862 if (current_class_type
4863 && !TYPE_BEING_DEFINED (current_class_type)
4864 && DECL_LANG_SPECIFIC (decl)
4865 && DECL_DECLARES_FUNCTION_P (decl)
4866 /* If this is either a friend defined in the scope of the class
4867 or a member function. */
4868 && (DECL_FUNCTION_MEMBER_P (decl)
4869 ? same_type_p (DECL_CONTEXT (decl), current_class_type)
4870 : DECL_FRIEND_CONTEXT (decl)
4871 ? same_type_p (DECL_FRIEND_CONTEXT (decl), current_class_type)
4872 : false)
4873 /* And, if it was a member function, it really was defined in
4874 the scope of the class. */
4875 && (!DECL_FUNCTION_MEMBER_P (decl)
4876 || DECL_INITIALIZED_IN_CLASS_P (decl)))
4877 /* We already checked these parameters when the template was
4878 declared, so there's no need to do it again now. This function
4879 was defined in class scope, but we're processing its body now
4880 that the class is complete. */
4881 return true;
4883 /* Core issue 226 (C++0x only): the following only applies to class
4884 templates. */
4885 if (is_primary
4886 && ((cxx_dialect == cxx98) || TREE_CODE (decl) != FUNCTION_DECL))
4888 /* [temp.param]
4890 If a template-parameter has a default template-argument, all
4891 subsequent template-parameters shall have a default
4892 template-argument supplied. */
4893 for (parm_level = parms; parm_level; parm_level = TREE_CHAIN (parm_level))
4895 tree inner_parms = TREE_VALUE (parm_level);
4896 int ntparms = TREE_VEC_LENGTH (inner_parms);
4897 int seen_def_arg_p = 0;
4898 int i;
4900 for (i = 0; i < ntparms; ++i)
4902 tree parm = TREE_VEC_ELT (inner_parms, i);
4904 if (parm == error_mark_node)
4905 continue;
4907 if (TREE_PURPOSE (parm))
4908 seen_def_arg_p = 1;
4909 else if (seen_def_arg_p
4910 && !template_parameter_pack_p (TREE_VALUE (parm)))
4912 error ("no default argument for %qD", TREE_VALUE (parm));
4913 /* For better subsequent error-recovery, we indicate that
4914 there should have been a default argument. */
4915 TREE_PURPOSE (parm) = error_mark_node;
4916 no_errors = false;
4918 else if (!is_partial
4919 && !is_friend_decl
4920 /* Don't complain about an enclosing partial
4921 specialization. */
4922 && parm_level == parms
4923 && TREE_CODE (decl) == TYPE_DECL
4924 && i < ntparms - 1
4925 && template_parameter_pack_p (TREE_VALUE (parm))
4926 /* A fixed parameter pack will be partially
4927 instantiated into a fixed length list. */
4928 && !fixed_parameter_pack_p (TREE_VALUE (parm)))
4930 /* A primary class template can only have one
4931 parameter pack, at the end of the template
4932 parameter list. */
4934 error ("parameter pack %q+D must be at the end of the"
4935 " template parameter list", TREE_VALUE (parm));
4937 TREE_VALUE (TREE_VEC_ELT (inner_parms, i))
4938 = error_mark_node;
4939 no_errors = false;
4945 if (((cxx_dialect == cxx98) && TREE_CODE (decl) != TYPE_DECL)
4946 || is_partial
4947 || !is_primary
4948 || is_friend_decl)
4949 /* For an ordinary class template, default template arguments are
4950 allowed at the innermost level, e.g.:
4951 template <class T = int>
4952 struct S {};
4953 but, in a partial specialization, they're not allowed even
4954 there, as we have in [temp.class.spec]:
4956 The template parameter list of a specialization shall not
4957 contain default template argument values.
4959 So, for a partial specialization, or for a function template
4960 (in C++98/C++03), we look at all of them. */
4962 else
4963 /* But, for a primary class template that is not a partial
4964 specialization we look at all template parameters except the
4965 innermost ones. */
4966 parms = TREE_CHAIN (parms);
4968 /* Figure out what error message to issue. */
4969 if (is_friend_decl == 2)
4970 msg = G_("default template arguments may not be used in function template "
4971 "friend re-declaration");
4972 else if (is_friend_decl)
4973 msg = G_("default template arguments may not be used in function template "
4974 "friend declarations");
4975 else if (TREE_CODE (decl) == FUNCTION_DECL && (cxx_dialect == cxx98))
4976 msg = G_("default template arguments may not be used in function templates "
4977 "without -std=c++11 or -std=gnu++11");
4978 else if (is_partial)
4979 msg = G_("default template arguments may not be used in "
4980 "partial specializations");
4981 else if (current_class_type && CLASSTYPE_IS_TEMPLATE (current_class_type))
4982 msg = G_("default argument for template parameter for class enclosing %qD");
4983 else
4984 /* Per [temp.param]/9, "A default template-argument shall not be
4985 specified in the template-parameter-lists of the definition of
4986 a member of a class template that appears outside of the member's
4987 class.", thus if we aren't handling a member of a class template
4988 there is no need to examine the parameters. */
4989 return true;
4991 if (current_class_type && TYPE_BEING_DEFINED (current_class_type))
4992 /* If we're inside a class definition, there's no need to
4993 examine the parameters to the class itself. On the one
4994 hand, they will be checked when the class is defined, and,
4995 on the other, default arguments are valid in things like:
4996 template <class T = double>
4997 struct S { template <class U> void f(U); };
4998 Here the default argument for `S' has no bearing on the
4999 declaration of `f'. */
5000 last_level_to_check = template_class_depth (current_class_type) + 1;
5001 else
5002 /* Check everything. */
5003 last_level_to_check = 0;
5005 for (parm_level = parms;
5006 parm_level && TMPL_PARMS_DEPTH (parm_level) >= last_level_to_check;
5007 parm_level = TREE_CHAIN (parm_level))
5009 tree inner_parms = TREE_VALUE (parm_level);
5010 int i;
5011 int ntparms;
5013 ntparms = TREE_VEC_LENGTH (inner_parms);
5014 for (i = 0; i < ntparms; ++i)
5016 if (TREE_VEC_ELT (inner_parms, i) == error_mark_node)
5017 continue;
5019 if (TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)))
5021 if (msg)
5023 no_errors = false;
5024 if (is_friend_decl == 2)
5025 return no_errors;
5027 error (msg, decl);
5028 msg = 0;
5031 /* Clear out the default argument so that we are not
5032 confused later. */
5033 TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)) = NULL_TREE;
5037 /* At this point, if we're still interested in issuing messages,
5038 they must apply to classes surrounding the object declared. */
5039 if (msg)
5040 msg = G_("default argument for template parameter for class "
5041 "enclosing %qD");
5044 return no_errors;
5047 /* Worker for push_template_decl_real, called via
5048 for_each_template_parm. DATA is really an int, indicating the
5049 level of the parameters we are interested in. If T is a template
5050 parameter of that level, return nonzero. */
5052 static int
5053 template_parm_this_level_p (tree t, void* data)
5055 int this_level = *(int *)data;
5056 int level;
5058 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
5059 level = TEMPLATE_PARM_LEVEL (t);
5060 else
5061 level = TEMPLATE_TYPE_LEVEL (t);
5062 return level == this_level;
5065 /* Worker for uses_outer_template_parms, called via for_each_template_parm.
5066 DATA is really an int, indicating the innermost outer level of parameters.
5067 If T is a template parameter of that level or further out, return
5068 nonzero. */
5070 static int
5071 template_parm_outer_level (tree t, void *data)
5073 int this_level = *(int *)data;
5074 int level;
5076 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
5077 level = TEMPLATE_PARM_LEVEL (t);
5078 else
5079 level = TEMPLATE_TYPE_LEVEL (t);
5080 return level <= this_level;
5083 /* Creates a TEMPLATE_DECL for the indicated DECL using the template
5084 parameters given by current_template_args, or reuses a
5085 previously existing one, if appropriate. Returns the DECL, or an
5086 equivalent one, if it is replaced via a call to duplicate_decls.
5088 If IS_FRIEND is true, DECL is a friend declaration. */
5090 tree
5091 push_template_decl_real (tree decl, bool is_friend)
5093 tree tmpl;
5094 tree args;
5095 tree info;
5096 tree ctx;
5097 bool is_primary;
5098 bool is_partial;
5099 int new_template_p = 0;
5100 /* True if the template is a member template, in the sense of
5101 [temp.mem]. */
5102 bool member_template_p = false;
5104 if (decl == error_mark_node || !current_template_parms)
5105 return error_mark_node;
5107 /* See if this is a partial specialization. */
5108 is_partial = ((DECL_IMPLICIT_TYPEDEF_P (decl)
5109 && TREE_CODE (TREE_TYPE (decl)) != ENUMERAL_TYPE
5110 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
5111 || (VAR_P (decl)
5112 && DECL_LANG_SPECIFIC (decl)
5113 && DECL_TEMPLATE_SPECIALIZATION (decl)
5114 && TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (decl))));
5116 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_FRIEND_P (decl))
5117 is_friend = true;
5119 if (is_friend)
5120 /* For a friend, we want the context of the friend function, not
5121 the type of which it is a friend. */
5122 ctx = CP_DECL_CONTEXT (decl);
5123 else if (CP_DECL_CONTEXT (decl)
5124 && TREE_CODE (CP_DECL_CONTEXT (decl)) != NAMESPACE_DECL)
5125 /* In the case of a virtual function, we want the class in which
5126 it is defined. */
5127 ctx = CP_DECL_CONTEXT (decl);
5128 else
5129 /* Otherwise, if we're currently defining some class, the DECL
5130 is assumed to be a member of the class. */
5131 ctx = current_scope ();
5133 if (ctx && TREE_CODE (ctx) == NAMESPACE_DECL)
5134 ctx = NULL_TREE;
5136 if (!DECL_CONTEXT (decl))
5137 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
5139 /* See if this is a primary template. */
5140 if (is_friend && ctx
5141 && uses_template_parms_level (ctx, processing_template_decl))
5142 /* A friend template that specifies a class context, i.e.
5143 template <typename T> friend void A<T>::f();
5144 is not primary. */
5145 is_primary = false;
5146 else if (TREE_CODE (decl) == TYPE_DECL
5147 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
5148 is_primary = false;
5149 else
5150 is_primary = template_parm_scope_p ();
5152 if (is_primary)
5154 warning (OPT_Wtemplates, "template %qD declared", decl);
5156 if (DECL_CLASS_SCOPE_P (decl))
5157 member_template_p = true;
5158 if (TREE_CODE (decl) == TYPE_DECL
5159 && anon_aggrname_p (DECL_NAME (decl)))
5161 error ("template class without a name");
5162 return error_mark_node;
5164 else if (TREE_CODE (decl) == FUNCTION_DECL)
5166 if (member_template_p)
5168 if (DECL_OVERRIDE_P (decl) || DECL_FINAL_P (decl))
5169 error ("member template %qD may not have virt-specifiers", decl);
5171 if (DECL_DESTRUCTOR_P (decl))
5173 /* [temp.mem]
5175 A destructor shall not be a member template. */
5176 error ("destructor %qD declared as member template", decl);
5177 return error_mark_node;
5179 if (NEW_DELETE_OPNAME_P (DECL_NAME (decl))
5180 && (!prototype_p (TREE_TYPE (decl))
5181 || TYPE_ARG_TYPES (TREE_TYPE (decl)) == void_list_node
5182 || !TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (decl)))
5183 || (TREE_CHAIN (TYPE_ARG_TYPES ((TREE_TYPE (decl))))
5184 == void_list_node)))
5186 /* [basic.stc.dynamic.allocation]
5188 An allocation function can be a function
5189 template. ... Template allocation functions shall
5190 have two or more parameters. */
5191 error ("invalid template declaration of %qD", decl);
5192 return error_mark_node;
5195 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
5196 && CLASS_TYPE_P (TREE_TYPE (decl)))
5197 /* OK */;
5198 else if (TREE_CODE (decl) == TYPE_DECL
5199 && TYPE_DECL_ALIAS_P (decl))
5200 /* alias-declaration */
5201 gcc_assert (!DECL_ARTIFICIAL (decl));
5202 else if (VAR_P (decl))
5203 /* C++14 variable template. */;
5204 else
5206 error ("template declaration of %q#D", decl);
5207 return error_mark_node;
5211 /* Check to see that the rules regarding the use of default
5212 arguments are not being violated. */
5213 check_default_tmpl_args (decl, current_template_parms,
5214 is_primary, is_partial, /*is_friend_decl=*/0);
5216 /* Ensure that there are no parameter packs in the type of this
5217 declaration that have not been expanded. */
5218 if (TREE_CODE (decl) == FUNCTION_DECL)
5220 /* Check each of the arguments individually to see if there are
5221 any bare parameter packs. */
5222 tree type = TREE_TYPE (decl);
5223 tree arg = DECL_ARGUMENTS (decl);
5224 tree argtype = TYPE_ARG_TYPES (type);
5226 while (arg && argtype)
5228 if (!DECL_PACK_P (arg)
5229 && check_for_bare_parameter_packs (TREE_TYPE (arg)))
5231 /* This is a PARM_DECL that contains unexpanded parameter
5232 packs. We have already complained about this in the
5233 check_for_bare_parameter_packs call, so just replace
5234 these types with ERROR_MARK_NODE. */
5235 TREE_TYPE (arg) = error_mark_node;
5236 TREE_VALUE (argtype) = error_mark_node;
5239 arg = DECL_CHAIN (arg);
5240 argtype = TREE_CHAIN (argtype);
5243 /* Check for bare parameter packs in the return type and the
5244 exception specifiers. */
5245 if (check_for_bare_parameter_packs (TREE_TYPE (type)))
5246 /* Errors were already issued, set return type to int
5247 as the frontend doesn't expect error_mark_node as
5248 the return type. */
5249 TREE_TYPE (type) = integer_type_node;
5250 if (check_for_bare_parameter_packs (TYPE_RAISES_EXCEPTIONS (type)))
5251 TYPE_RAISES_EXCEPTIONS (type) = NULL_TREE;
5253 else if (check_for_bare_parameter_packs ((TREE_CODE (decl) == TYPE_DECL
5254 && TYPE_DECL_ALIAS_P (decl))
5255 ? DECL_ORIGINAL_TYPE (decl)
5256 : TREE_TYPE (decl)))
5258 TREE_TYPE (decl) = error_mark_node;
5259 return error_mark_node;
5262 if (is_partial)
5263 return process_partial_specialization (decl);
5265 args = current_template_args ();
5267 if (!ctx
5268 || TREE_CODE (ctx) == FUNCTION_DECL
5269 || (CLASS_TYPE_P (ctx) && TYPE_BEING_DEFINED (ctx))
5270 || (TREE_CODE (decl) == TYPE_DECL
5271 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
5272 || (is_friend && !DECL_TEMPLATE_INFO (decl)))
5274 if (DECL_LANG_SPECIFIC (decl)
5275 && DECL_TEMPLATE_INFO (decl)
5276 && DECL_TI_TEMPLATE (decl))
5277 tmpl = DECL_TI_TEMPLATE (decl);
5278 /* If DECL is a TYPE_DECL for a class-template, then there won't
5279 be DECL_LANG_SPECIFIC. The information equivalent to
5280 DECL_TEMPLATE_INFO is found in TYPE_TEMPLATE_INFO instead. */
5281 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
5282 && TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
5283 && TYPE_TI_TEMPLATE (TREE_TYPE (decl)))
5285 /* Since a template declaration already existed for this
5286 class-type, we must be redeclaring it here. Make sure
5287 that the redeclaration is valid. */
5288 redeclare_class_template (TREE_TYPE (decl),
5289 current_template_parms,
5290 current_template_constraints ());
5291 /* We don't need to create a new TEMPLATE_DECL; just use the
5292 one we already had. */
5293 tmpl = TYPE_TI_TEMPLATE (TREE_TYPE (decl));
5295 else
5297 tmpl = build_template_decl (decl, current_template_parms,
5298 member_template_p);
5299 new_template_p = 1;
5301 if (DECL_LANG_SPECIFIC (decl)
5302 && DECL_TEMPLATE_SPECIALIZATION (decl))
5304 /* A specialization of a member template of a template
5305 class. */
5306 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
5307 DECL_TEMPLATE_INFO (tmpl) = DECL_TEMPLATE_INFO (decl);
5308 DECL_TEMPLATE_INFO (decl) = NULL_TREE;
5312 else
5314 tree a, t, current, parms;
5315 int i;
5316 tree tinfo = get_template_info (decl);
5318 if (!tinfo)
5320 error ("template definition of non-template %q#D", decl);
5321 return error_mark_node;
5324 tmpl = TI_TEMPLATE (tinfo);
5326 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
5327 && DECL_TEMPLATE_INFO (decl) && DECL_TI_ARGS (decl)
5328 && DECL_TEMPLATE_SPECIALIZATION (decl)
5329 && DECL_MEMBER_TEMPLATE_P (tmpl))
5331 tree new_tmpl;
5333 /* The declaration is a specialization of a member
5334 template, declared outside the class. Therefore, the
5335 innermost template arguments will be NULL, so we
5336 replace them with the arguments determined by the
5337 earlier call to check_explicit_specialization. */
5338 args = DECL_TI_ARGS (decl);
5340 new_tmpl
5341 = build_template_decl (decl, current_template_parms,
5342 member_template_p);
5343 DECL_TEMPLATE_RESULT (new_tmpl) = decl;
5344 TREE_TYPE (new_tmpl) = TREE_TYPE (decl);
5345 DECL_TI_TEMPLATE (decl) = new_tmpl;
5346 SET_DECL_TEMPLATE_SPECIALIZATION (new_tmpl);
5347 DECL_TEMPLATE_INFO (new_tmpl)
5348 = build_template_info (tmpl, args);
5350 register_specialization (new_tmpl,
5351 most_general_template (tmpl),
5352 args,
5353 is_friend, 0);
5354 return decl;
5357 /* Make sure the template headers we got make sense. */
5359 parms = DECL_TEMPLATE_PARMS (tmpl);
5360 i = TMPL_PARMS_DEPTH (parms);
5361 if (TMPL_ARGS_DEPTH (args) != i)
5363 error ("expected %d levels of template parms for %q#D, got %d",
5364 i, decl, TMPL_ARGS_DEPTH (args));
5365 DECL_INTERFACE_KNOWN (decl) = 1;
5366 return error_mark_node;
5368 else
5369 for (current = decl; i > 0; --i, parms = TREE_CHAIN (parms))
5371 a = TMPL_ARGS_LEVEL (args, i);
5372 t = INNERMOST_TEMPLATE_PARMS (parms);
5374 if (TREE_VEC_LENGTH (t) != TREE_VEC_LENGTH (a))
5376 if (current == decl)
5377 error ("got %d template parameters for %q#D",
5378 TREE_VEC_LENGTH (a), decl);
5379 else
5380 error ("got %d template parameters for %q#T",
5381 TREE_VEC_LENGTH (a), current);
5382 error (" but %d required", TREE_VEC_LENGTH (t));
5383 /* Avoid crash in import_export_decl. */
5384 DECL_INTERFACE_KNOWN (decl) = 1;
5385 return error_mark_node;
5388 if (current == decl)
5389 current = ctx;
5390 else if (current == NULL_TREE)
5391 /* Can happen in erroneous input. */
5392 break;
5393 else
5394 current = get_containing_scope (current);
5397 /* Check that the parms are used in the appropriate qualifying scopes
5398 in the declarator. */
5399 if (!comp_template_args
5400 (TI_ARGS (tinfo),
5401 TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl)))))
5403 error ("\
5404 template arguments to %qD do not match original template %qD",
5405 decl, DECL_TEMPLATE_RESULT (tmpl));
5406 if (!uses_template_parms (TI_ARGS (tinfo)))
5407 inform (input_location, "use template<> for an explicit specialization");
5408 /* Avoid crash in import_export_decl. */
5409 DECL_INTERFACE_KNOWN (decl) = 1;
5410 return error_mark_node;
5414 DECL_TEMPLATE_RESULT (tmpl) = decl;
5415 TREE_TYPE (tmpl) = TREE_TYPE (decl);
5417 /* Push template declarations for global functions and types. Note
5418 that we do not try to push a global template friend declared in a
5419 template class; such a thing may well depend on the template
5420 parameters of the class. */
5421 if (new_template_p && !ctx
5422 && !(is_friend && template_class_depth (current_class_type) > 0))
5424 tmpl = pushdecl_namespace_level (tmpl, is_friend);
5425 if (tmpl == error_mark_node)
5426 return error_mark_node;
5428 /* Hide template friend classes that haven't been declared yet. */
5429 if (is_friend && TREE_CODE (decl) == TYPE_DECL)
5431 DECL_ANTICIPATED (tmpl) = 1;
5432 DECL_FRIEND_P (tmpl) = 1;
5436 if (is_primary)
5438 tree parms = DECL_TEMPLATE_PARMS (tmpl);
5439 int i;
5441 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
5442 if (DECL_CONV_FN_P (tmpl))
5444 int depth = TMPL_PARMS_DEPTH (parms);
5446 /* It is a conversion operator. See if the type converted to
5447 depends on innermost template operands. */
5449 if (uses_template_parms_level (TREE_TYPE (TREE_TYPE (tmpl)),
5450 depth))
5451 DECL_TEMPLATE_CONV_FN_P (tmpl) = 1;
5454 /* Give template template parms a DECL_CONTEXT of the template
5455 for which they are a parameter. */
5456 parms = INNERMOST_TEMPLATE_PARMS (parms);
5457 for (i = TREE_VEC_LENGTH (parms) - 1; i >= 0; --i)
5459 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
5460 if (TREE_CODE (parm) == TEMPLATE_DECL)
5461 DECL_CONTEXT (parm) = tmpl;
5464 if (TREE_CODE (decl) == TYPE_DECL
5465 && TYPE_DECL_ALIAS_P (decl)
5466 && complex_alias_template_p (tmpl))
5467 TEMPLATE_DECL_COMPLEX_ALIAS_P (tmpl) = true;
5470 /* The DECL_TI_ARGS of DECL contains full set of arguments referring
5471 back to its most general template. If TMPL is a specialization,
5472 ARGS may only have the innermost set of arguments. Add the missing
5473 argument levels if necessary. */
5474 if (DECL_TEMPLATE_INFO (tmpl))
5475 args = add_outermost_template_args (DECL_TI_ARGS (tmpl), args);
5477 info = build_template_info (tmpl, args);
5479 if (DECL_IMPLICIT_TYPEDEF_P (decl))
5480 SET_TYPE_TEMPLATE_INFO (TREE_TYPE (tmpl), info);
5481 else
5483 if (is_primary && !DECL_LANG_SPECIFIC (decl))
5484 retrofit_lang_decl (decl);
5485 if (DECL_LANG_SPECIFIC (decl))
5486 DECL_TEMPLATE_INFO (decl) = info;
5489 if (flag_implicit_templates
5490 && !is_friend
5491 && TREE_PUBLIC (decl)
5492 && VAR_OR_FUNCTION_DECL_P (decl))
5493 /* Set DECL_COMDAT on template instantiations; if we force
5494 them to be emitted by explicit instantiation or -frepo,
5495 mark_needed will tell cgraph to do the right thing. */
5496 DECL_COMDAT (decl) = true;
5498 return DECL_TEMPLATE_RESULT (tmpl);
5501 tree
5502 push_template_decl (tree decl)
5504 return push_template_decl_real (decl, false);
5507 /* FN is an inheriting constructor that inherits from the constructor
5508 template INHERITED; turn FN into a constructor template with a matching
5509 template header. */
5511 tree
5512 add_inherited_template_parms (tree fn, tree inherited)
5514 tree inner_parms
5515 = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (inherited));
5516 inner_parms = copy_node (inner_parms);
5517 tree parms
5518 = tree_cons (size_int (processing_template_decl + 1),
5519 inner_parms, current_template_parms);
5520 tree tmpl = build_template_decl (fn, parms, /*member*/true);
5521 tree args = template_parms_to_args (parms);
5522 DECL_TEMPLATE_INFO (fn) = build_template_info (tmpl, args);
5523 TREE_TYPE (tmpl) = TREE_TYPE (fn);
5524 DECL_TEMPLATE_RESULT (tmpl) = fn;
5525 DECL_ARTIFICIAL (tmpl) = true;
5526 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
5527 return tmpl;
5530 /* Called when a class template TYPE is redeclared with the indicated
5531 template PARMS, e.g.:
5533 template <class T> struct S;
5534 template <class T> struct S {}; */
5536 bool
5537 redeclare_class_template (tree type, tree parms, tree cons)
5539 tree tmpl;
5540 tree tmpl_parms;
5541 int i;
5543 if (!TYPE_TEMPLATE_INFO (type))
5545 error ("%qT is not a template type", type);
5546 return false;
5549 tmpl = TYPE_TI_TEMPLATE (type);
5550 if (!PRIMARY_TEMPLATE_P (tmpl))
5551 /* The type is nested in some template class. Nothing to worry
5552 about here; there are no new template parameters for the nested
5553 type. */
5554 return true;
5556 if (!parms)
5558 error ("template specifiers not specified in declaration of %qD",
5559 tmpl);
5560 return false;
5563 parms = INNERMOST_TEMPLATE_PARMS (parms);
5564 tmpl_parms = DECL_INNERMOST_TEMPLATE_PARMS (tmpl);
5566 if (TREE_VEC_LENGTH (parms) != TREE_VEC_LENGTH (tmpl_parms))
5568 error_n (input_location, TREE_VEC_LENGTH (parms),
5569 "redeclared with %d template parameter",
5570 "redeclared with %d template parameters",
5571 TREE_VEC_LENGTH (parms));
5572 inform_n (DECL_SOURCE_LOCATION (tmpl), TREE_VEC_LENGTH (tmpl_parms),
5573 "previous declaration %qD used %d template parameter",
5574 "previous declaration %qD used %d template parameters",
5575 tmpl, TREE_VEC_LENGTH (tmpl_parms));
5576 return false;
5579 for (i = 0; i < TREE_VEC_LENGTH (tmpl_parms); ++i)
5581 tree tmpl_parm;
5582 tree parm;
5583 tree tmpl_default;
5584 tree parm_default;
5586 if (TREE_VEC_ELT (tmpl_parms, i) == error_mark_node
5587 || TREE_VEC_ELT (parms, i) == error_mark_node)
5588 continue;
5590 tmpl_parm = TREE_VALUE (TREE_VEC_ELT (tmpl_parms, i));
5591 if (error_operand_p (tmpl_parm))
5592 return false;
5594 parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
5595 tmpl_default = TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i));
5596 parm_default = TREE_PURPOSE (TREE_VEC_ELT (parms, i));
5598 /* TMPL_PARM and PARM can be either TYPE_DECL, PARM_DECL, or
5599 TEMPLATE_DECL. */
5600 if (TREE_CODE (tmpl_parm) != TREE_CODE (parm)
5601 || (TREE_CODE (tmpl_parm) != TYPE_DECL
5602 && !same_type_p (TREE_TYPE (tmpl_parm), TREE_TYPE (parm)))
5603 || (TREE_CODE (tmpl_parm) != PARM_DECL
5604 && (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (tmpl_parm))
5605 != TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm))))
5606 || (TREE_CODE (tmpl_parm) == PARM_DECL
5607 && (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (tmpl_parm))
5608 != TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))))
5610 error ("template parameter %q+#D", tmpl_parm);
5611 error ("redeclared here as %q#D", parm);
5612 return false;
5615 if (tmpl_default != NULL_TREE && parm_default != NULL_TREE)
5617 /* We have in [temp.param]:
5619 A template-parameter may not be given default arguments
5620 by two different declarations in the same scope. */
5621 error_at (input_location, "redefinition of default argument for %q#D", parm);
5622 inform (DECL_SOURCE_LOCATION (tmpl_parm),
5623 "original definition appeared here");
5624 return false;
5627 if (parm_default != NULL_TREE)
5628 /* Update the previous template parameters (which are the ones
5629 that will really count) with the new default value. */
5630 TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i)) = parm_default;
5631 else if (tmpl_default != NULL_TREE)
5632 /* Update the new parameters, too; they'll be used as the
5633 parameters for any members. */
5634 TREE_PURPOSE (TREE_VEC_ELT (parms, i)) = tmpl_default;
5636 /* Give each template template parm in this redeclaration a
5637 DECL_CONTEXT of the template for which they are a parameter. */
5638 if (TREE_CODE (parm) == TEMPLATE_DECL)
5640 gcc_assert (DECL_CONTEXT (parm) == NULL_TREE);
5641 DECL_CONTEXT (parm) = tmpl;
5645 // Cannot redeclare a class template with a different set of constraints.
5646 if (!equivalent_constraints (get_constraints (tmpl), cons))
5648 error_at (input_location, "redeclaration %q#D with different "
5649 "constraints", tmpl);
5650 inform (DECL_SOURCE_LOCATION (tmpl),
5651 "original declaration appeared here");
5654 return true;
5657 /* The actual substitution part of instantiate_non_dependent_expr_sfinae,
5658 to be used when the caller has already checked
5659 (processing_template_decl
5660 && !instantiation_dependent_expression_p (expr)
5661 && potential_constant_expression (expr))
5662 and cleared processing_template_decl. */
5664 tree
5665 instantiate_non_dependent_expr_internal (tree expr, tsubst_flags_t complain)
5667 return tsubst_copy_and_build (expr,
5668 /*args=*/NULL_TREE,
5669 complain,
5670 /*in_decl=*/NULL_TREE,
5671 /*function_p=*/false,
5672 /*integral_constant_expression_p=*/true);
5675 /* Simplify EXPR if it is a non-dependent expression. Returns the
5676 (possibly simplified) expression. */
5678 tree
5679 instantiate_non_dependent_expr_sfinae (tree expr, tsubst_flags_t complain)
5681 if (expr == NULL_TREE)
5682 return NULL_TREE;
5684 /* If we're in a template, but EXPR isn't value dependent, simplify
5685 it. We're supposed to treat:
5687 template <typename T> void f(T[1 + 1]);
5688 template <typename T> void f(T[2]);
5690 as two declarations of the same function, for example. */
5691 if (processing_template_decl
5692 && potential_nondependent_constant_expression (expr))
5694 processing_template_decl_sentinel s;
5695 expr = instantiate_non_dependent_expr_internal (expr, complain);
5697 return expr;
5700 tree
5701 instantiate_non_dependent_expr (tree expr)
5703 return instantiate_non_dependent_expr_sfinae (expr, tf_error);
5706 /* Like instantiate_non_dependent_expr, but return NULL_TREE rather than
5707 an uninstantiated expression. */
5709 tree
5710 instantiate_non_dependent_or_null (tree expr)
5712 if (expr == NULL_TREE)
5713 return NULL_TREE;
5714 if (processing_template_decl)
5716 if (!potential_nondependent_constant_expression (expr))
5717 expr = NULL_TREE;
5718 else
5720 processing_template_decl_sentinel s;
5721 expr = instantiate_non_dependent_expr_internal (expr, tf_error);
5724 return expr;
5727 /* True iff T is a specialization of a variable template. */
5729 bool
5730 variable_template_specialization_p (tree t)
5732 if (!VAR_P (t) || !DECL_LANG_SPECIFIC (t) || !DECL_TEMPLATE_INFO (t))
5733 return false;
5734 tree tmpl = DECL_TI_TEMPLATE (t);
5735 return variable_template_p (tmpl);
5738 /* Return TRUE iff T is a type alias, a TEMPLATE_DECL for an alias
5739 template declaration, or a TYPE_DECL for an alias declaration. */
5741 bool
5742 alias_type_or_template_p (tree t)
5744 if (t == NULL_TREE)
5745 return false;
5746 return ((TREE_CODE (t) == TYPE_DECL && TYPE_DECL_ALIAS_P (t))
5747 || (TYPE_P (t)
5748 && TYPE_NAME (t)
5749 && TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
5750 || DECL_ALIAS_TEMPLATE_P (t));
5753 /* Return TRUE iff T is a specialization of an alias template. */
5755 bool
5756 alias_template_specialization_p (const_tree t)
5758 /* It's an alias template specialization if it's an alias and its
5759 TYPE_NAME is a specialization of a primary template. */
5760 if (TYPE_ALIAS_P (t))
5762 tree name = TYPE_NAME (t);
5763 if (DECL_LANG_SPECIFIC (name))
5764 if (tree ti = DECL_TEMPLATE_INFO (name))
5766 tree tmpl = TI_TEMPLATE (ti);
5767 return PRIMARY_TEMPLATE_P (tmpl);
5770 return false;
5773 /* An alias template is complex from a SFINAE perspective if a template-id
5774 using that alias can be ill-formed when the expansion is not, as with
5775 the void_t template. We determine this by checking whether the
5776 expansion for the alias template uses all its template parameters. */
5778 struct uses_all_template_parms_data
5780 int level;
5781 bool *seen;
5784 static int
5785 uses_all_template_parms_r (tree t, void *data_)
5787 struct uses_all_template_parms_data &data
5788 = *(struct uses_all_template_parms_data*)data_;
5789 tree idx = get_template_parm_index (t);
5791 if (TEMPLATE_PARM_LEVEL (idx) == data.level)
5792 data.seen[TEMPLATE_PARM_IDX (idx)] = true;
5793 return 0;
5796 static bool
5797 complex_alias_template_p (const_tree tmpl)
5799 struct uses_all_template_parms_data data;
5800 tree pat = DECL_ORIGINAL_TYPE (DECL_TEMPLATE_RESULT (tmpl));
5801 tree parms = DECL_TEMPLATE_PARMS (tmpl);
5802 data.level = TMPL_PARMS_DEPTH (parms);
5803 int len = TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS (parms));
5804 data.seen = XALLOCAVEC (bool, len);
5805 for (int i = 0; i < len; ++i)
5806 data.seen[i] = false;
5808 for_each_template_parm (pat, uses_all_template_parms_r, &data, NULL, true);
5809 for (int i = 0; i < len; ++i)
5810 if (!data.seen[i])
5811 return true;
5812 return false;
5815 /* Return TRUE iff T is a specialization of a complex alias template with
5816 dependent template-arguments. */
5818 bool
5819 dependent_alias_template_spec_p (const_tree t)
5821 return (alias_template_specialization_p (t)
5822 && TEMPLATE_DECL_COMPLEX_ALIAS_P (DECL_TI_TEMPLATE (TYPE_NAME (t)))
5823 && (any_dependent_template_arguments_p
5824 (INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (t)))));
5827 /* Return the number of innermost template parameters in TMPL. */
5829 static int
5830 num_innermost_template_parms (tree tmpl)
5832 tree parms = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (tmpl));
5833 return TREE_VEC_LENGTH (parms);
5836 /* Return either TMPL or another template that it is equivalent to under DR
5837 1286: An alias that just changes the name of a template is equivalent to
5838 the other template. */
5840 static tree
5841 get_underlying_template (tree tmpl)
5843 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
5844 while (DECL_ALIAS_TEMPLATE_P (tmpl))
5846 tree result = DECL_ORIGINAL_TYPE (DECL_TEMPLATE_RESULT (tmpl));
5847 if (TYPE_TEMPLATE_INFO (result))
5849 tree sub = TYPE_TI_TEMPLATE (result);
5850 if (PRIMARY_TEMPLATE_P (sub)
5851 && (num_innermost_template_parms (tmpl)
5852 == num_innermost_template_parms (sub)))
5854 tree alias_args = INNERMOST_TEMPLATE_ARGS
5855 (template_parms_to_args (DECL_TEMPLATE_PARMS (tmpl)));
5856 if (!comp_template_args (TYPE_TI_ARGS (result), alias_args))
5857 break;
5858 /* The alias type is equivalent to the pattern of the
5859 underlying template, so strip the alias. */
5860 tmpl = sub;
5861 continue;
5864 break;
5866 return tmpl;
5869 /* Subroutine of convert_nontype_argument. Converts EXPR to TYPE, which
5870 must be a function or a pointer-to-function type, as specified
5871 in [temp.arg.nontype]: disambiguate EXPR if it is an overload set,
5872 and check that the resulting function has external linkage. */
5874 static tree
5875 convert_nontype_argument_function (tree type, tree expr,
5876 tsubst_flags_t complain)
5878 tree fns = expr;
5879 tree fn, fn_no_ptr;
5880 linkage_kind linkage;
5882 fn = instantiate_type (type, fns, tf_none);
5883 if (fn == error_mark_node)
5884 return error_mark_node;
5886 fn_no_ptr = fn;
5887 if (TREE_CODE (fn_no_ptr) == ADDR_EXPR)
5888 fn_no_ptr = TREE_OPERAND (fn_no_ptr, 0);
5889 if (BASELINK_P (fn_no_ptr))
5890 fn_no_ptr = BASELINK_FUNCTIONS (fn_no_ptr);
5892 /* [temp.arg.nontype]/1
5894 A template-argument for a non-type, non-template template-parameter
5895 shall be one of:
5896 [...]
5897 -- the address of an object or function with external [C++11: or
5898 internal] linkage. */
5900 if (TREE_CODE (fn_no_ptr) != FUNCTION_DECL)
5902 if (complain & tf_error)
5904 error ("%qE is not a valid template argument for type %qT",
5905 expr, type);
5906 if (TYPE_PTR_P (type))
5907 error ("it must be the address of a function with "
5908 "external linkage");
5909 else
5910 error ("it must be the name of a function with "
5911 "external linkage");
5913 return NULL_TREE;
5916 linkage = decl_linkage (fn_no_ptr);
5917 if (cxx_dialect >= cxx11 ? linkage == lk_none : linkage != lk_external)
5919 if (complain & tf_error)
5921 if (cxx_dialect >= cxx11)
5922 error ("%qE is not a valid template argument for type %qT "
5923 "because %qD has no linkage",
5924 expr, type, fn_no_ptr);
5925 else
5926 error ("%qE is not a valid template argument for type %qT "
5927 "because %qD does not have external linkage",
5928 expr, type, fn_no_ptr);
5930 return NULL_TREE;
5933 return fn;
5936 /* Subroutine of convert_nontype_argument.
5937 Check if EXPR of type TYPE is a valid pointer-to-member constant.
5938 Emit an error otherwise. */
5940 static bool
5941 check_valid_ptrmem_cst_expr (tree type, tree expr,
5942 tsubst_flags_t complain)
5944 STRIP_NOPS (expr);
5945 if (expr && (null_ptr_cst_p (expr) || TREE_CODE (expr) == PTRMEM_CST))
5946 return true;
5947 if (cxx_dialect >= cxx11 && null_member_pointer_value_p (expr))
5948 return true;
5949 if (processing_template_decl
5950 && TREE_CODE (expr) == ADDR_EXPR
5951 && TREE_CODE (TREE_OPERAND (expr, 0)) == OFFSET_REF)
5952 return true;
5953 if (complain & tf_error)
5955 error ("%qE is not a valid template argument for type %qT",
5956 expr, type);
5957 error ("it must be a pointer-to-member of the form %<&X::Y%>");
5959 return false;
5962 /* Returns TRUE iff the address of OP is value-dependent.
5964 14.6.2.4 [temp.dep.temp]:
5965 A non-integral non-type template-argument is dependent if its type is
5966 dependent or it has either of the following forms
5967 qualified-id
5968 & qualified-id
5969 and contains a nested-name-specifier which specifies a class-name that
5970 names a dependent type.
5972 We generalize this to just say that the address of a member of a
5973 dependent class is value-dependent; the above doesn't cover the
5974 address of a static data member named with an unqualified-id. */
5976 static bool
5977 has_value_dependent_address (tree op)
5979 /* We could use get_inner_reference here, but there's no need;
5980 this is only relevant for template non-type arguments, which
5981 can only be expressed as &id-expression. */
5982 if (DECL_P (op))
5984 tree ctx = CP_DECL_CONTEXT (op);
5985 if (TYPE_P (ctx) && dependent_type_p (ctx))
5986 return true;
5989 return false;
5992 /* The next set of functions are used for providing helpful explanatory
5993 diagnostics for failed overload resolution. Their messages should be
5994 indented by two spaces for consistency with the messages in
5995 call.c */
5997 static int
5998 unify_success (bool /*explain_p*/)
6000 return 0;
6003 static int
6004 unify_parameter_deduction_failure (bool explain_p, tree parm)
6006 if (explain_p)
6007 inform (input_location,
6008 " couldn't deduce template parameter %qD", parm);
6009 return 1;
6012 static int
6013 unify_invalid (bool /*explain_p*/)
6015 return 1;
6018 static int
6019 unify_cv_qual_mismatch (bool explain_p, tree parm, tree arg)
6021 if (explain_p)
6022 inform (input_location,
6023 " types %qT and %qT have incompatible cv-qualifiers",
6024 parm, arg);
6025 return 1;
6028 static int
6029 unify_type_mismatch (bool explain_p, tree parm, tree arg)
6031 if (explain_p)
6032 inform (input_location, " mismatched types %qT and %qT", parm, arg);
6033 return 1;
6036 static int
6037 unify_parameter_pack_mismatch (bool explain_p, tree parm, tree arg)
6039 if (explain_p)
6040 inform (input_location,
6041 " template parameter %qD is not a parameter pack, but "
6042 "argument %qD is",
6043 parm, arg);
6044 return 1;
6047 static int
6048 unify_ptrmem_cst_mismatch (bool explain_p, tree parm, tree arg)
6050 if (explain_p)
6051 inform (input_location,
6052 " template argument %qE does not match "
6053 "pointer-to-member constant %qE",
6054 arg, parm);
6055 return 1;
6058 static int
6059 unify_expression_unequal (bool explain_p, tree parm, tree arg)
6061 if (explain_p)
6062 inform (input_location, " %qE is not equivalent to %qE", parm, arg);
6063 return 1;
6066 static int
6067 unify_parameter_pack_inconsistent (bool explain_p, tree old_arg, tree new_arg)
6069 if (explain_p)
6070 inform (input_location,
6071 " inconsistent parameter pack deduction with %qT and %qT",
6072 old_arg, new_arg);
6073 return 1;
6076 static int
6077 unify_inconsistency (bool explain_p, tree parm, tree first, tree second)
6079 if (explain_p)
6081 if (TYPE_P (parm))
6082 inform (input_location,
6083 " deduced conflicting types for parameter %qT (%qT and %qT)",
6084 parm, first, second);
6085 else
6086 inform (input_location,
6087 " deduced conflicting values for non-type parameter "
6088 "%qE (%qE and %qE)", parm, first, second);
6090 return 1;
6093 static int
6094 unify_vla_arg (bool explain_p, tree arg)
6096 if (explain_p)
6097 inform (input_location,
6098 " variable-sized array type %qT is not "
6099 "a valid template argument",
6100 arg);
6101 return 1;
6104 static int
6105 unify_method_type_error (bool explain_p, tree arg)
6107 if (explain_p)
6108 inform (input_location,
6109 " member function type %qT is not a valid template argument",
6110 arg);
6111 return 1;
6114 static int
6115 unify_arity (bool explain_p, int have, int wanted, bool least_p = false)
6117 if (explain_p)
6119 if (least_p)
6120 inform_n (input_location, wanted,
6121 " candidate expects at least %d argument, %d provided",
6122 " candidate expects at least %d arguments, %d provided",
6123 wanted, have);
6124 else
6125 inform_n (input_location, wanted,
6126 " candidate expects %d argument, %d provided",
6127 " candidate expects %d arguments, %d provided",
6128 wanted, have);
6130 return 1;
6133 static int
6134 unify_too_many_arguments (bool explain_p, int have, int wanted)
6136 return unify_arity (explain_p, have, wanted);
6139 static int
6140 unify_too_few_arguments (bool explain_p, int have, int wanted,
6141 bool least_p = false)
6143 return unify_arity (explain_p, have, wanted, least_p);
6146 static int
6147 unify_arg_conversion (bool explain_p, tree to_type,
6148 tree from_type, tree arg)
6150 if (explain_p)
6151 inform (EXPR_LOC_OR_LOC (arg, input_location),
6152 " cannot convert %qE (type %qT) to type %qT",
6153 arg, from_type, to_type);
6154 return 1;
6157 static int
6158 unify_no_common_base (bool explain_p, enum template_base_result r,
6159 tree parm, tree arg)
6161 if (explain_p)
6162 switch (r)
6164 case tbr_ambiguous_baseclass:
6165 inform (input_location, " %qT is an ambiguous base class of %qT",
6166 parm, arg);
6167 break;
6168 default:
6169 inform (input_location, " %qT is not derived from %qT", arg, parm);
6170 break;
6172 return 1;
6175 static int
6176 unify_inconsistent_template_template_parameters (bool explain_p)
6178 if (explain_p)
6179 inform (input_location,
6180 " template parameters of a template template argument are "
6181 "inconsistent with other deduced template arguments");
6182 return 1;
6185 static int
6186 unify_template_deduction_failure (bool explain_p, tree parm, tree arg)
6188 if (explain_p)
6189 inform (input_location,
6190 " can't deduce a template for %qT from non-template type %qT",
6191 parm, arg);
6192 return 1;
6195 static int
6196 unify_template_argument_mismatch (bool explain_p, tree parm, tree arg)
6198 if (explain_p)
6199 inform (input_location,
6200 " template argument %qE does not match %qE", arg, parm);
6201 return 1;
6204 static int
6205 unify_overload_resolution_failure (bool explain_p, tree arg)
6207 if (explain_p)
6208 inform (input_location,
6209 " could not resolve address from overloaded function %qE",
6210 arg);
6211 return 1;
6214 /* Attempt to convert the non-type template parameter EXPR to the
6215 indicated TYPE. If the conversion is successful, return the
6216 converted value. If the conversion is unsuccessful, return
6217 NULL_TREE if we issued an error message, or error_mark_node if we
6218 did not. We issue error messages for out-and-out bad template
6219 parameters, but not simply because the conversion failed, since we
6220 might be just trying to do argument deduction. Both TYPE and EXPR
6221 must be non-dependent.
6223 The conversion follows the special rules described in
6224 [temp.arg.nontype], and it is much more strict than an implicit
6225 conversion.
6227 This function is called twice for each template argument (see
6228 lookup_template_class for a more accurate description of this
6229 problem). This means that we need to handle expressions which
6230 are not valid in a C++ source, but can be created from the
6231 first call (for instance, casts to perform conversions). These
6232 hacks can go away after we fix the double coercion problem. */
6234 static tree
6235 convert_nontype_argument (tree type, tree expr, tsubst_flags_t complain)
6237 tree expr_type;
6239 /* Detect immediately string literals as invalid non-type argument.
6240 This special-case is not needed for correctness (we would easily
6241 catch this later), but only to provide better diagnostic for this
6242 common user mistake. As suggested by DR 100, we do not mention
6243 linkage issues in the diagnostic as this is not the point. */
6244 /* FIXME we're making this OK. */
6245 if (TREE_CODE (expr) == STRING_CST)
6247 if (complain & tf_error)
6248 error ("%qE is not a valid template argument for type %qT "
6249 "because string literals can never be used in this context",
6250 expr, type);
6251 return NULL_TREE;
6254 /* Add the ADDR_EXPR now for the benefit of
6255 value_dependent_expression_p. */
6256 if (TYPE_PTROBV_P (type)
6257 && TREE_CODE (TREE_TYPE (expr)) == ARRAY_TYPE)
6259 expr = decay_conversion (expr, complain);
6260 if (expr == error_mark_node)
6261 return error_mark_node;
6264 /* If we are in a template, EXPR may be non-dependent, but still
6265 have a syntactic, rather than semantic, form. For example, EXPR
6266 might be a SCOPE_REF, rather than the VAR_DECL to which the
6267 SCOPE_REF refers. Preserving the qualifying scope is necessary
6268 so that access checking can be performed when the template is
6269 instantiated -- but here we need the resolved form so that we can
6270 convert the argument. */
6271 bool non_dep = false;
6272 if (TYPE_REF_OBJ_P (type)
6273 && has_value_dependent_address (expr))
6274 /* If we want the address and it's value-dependent, don't fold. */;
6275 else if (processing_template_decl
6276 && potential_nondependent_constant_expression (expr))
6277 non_dep = true;
6278 if (error_operand_p (expr))
6279 return error_mark_node;
6280 expr_type = TREE_TYPE (expr);
6281 if (TREE_CODE (type) == REFERENCE_TYPE)
6282 expr = mark_lvalue_use (expr);
6283 else
6284 expr = mark_rvalue_use (expr);
6286 /* If the argument is non-dependent, perform any conversions in
6287 non-dependent context as well. */
6288 processing_template_decl_sentinel s (non_dep);
6289 if (non_dep)
6290 expr = instantiate_non_dependent_expr_internal (expr, complain);
6292 /* 14.3.2/5: The null pointer{,-to-member} conversion is applied
6293 to a non-type argument of "nullptr". */
6294 if (expr == nullptr_node && TYPE_PTR_OR_PTRMEM_P (type))
6295 expr = fold_simple (convert (type, expr));
6297 /* In C++11, integral or enumeration non-type template arguments can be
6298 arbitrary constant expressions. Pointer and pointer to
6299 member arguments can be general constant expressions that evaluate
6300 to a null value, but otherwise still need to be of a specific form. */
6301 if (cxx_dialect >= cxx11)
6303 if (TREE_CODE (expr) == PTRMEM_CST)
6304 /* A PTRMEM_CST is already constant, and a valid template
6305 argument for a parameter of pointer to member type, we just want
6306 to leave it in that form rather than lower it to a
6307 CONSTRUCTOR. */;
6308 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
6309 expr = maybe_constant_value (expr);
6310 else if (cxx_dialect >= cxx1z)
6312 if (TREE_CODE (type) != REFERENCE_TYPE)
6313 expr = maybe_constant_value (expr);
6314 else if (REFERENCE_REF_P (expr))
6316 expr = TREE_OPERAND (expr, 0);
6317 expr = maybe_constant_value (expr);
6318 expr = convert_from_reference (expr);
6321 else if (TYPE_PTR_OR_PTRMEM_P (type))
6323 tree folded = maybe_constant_value (expr);
6324 if (TYPE_PTR_P (type) ? integer_zerop (folded)
6325 : null_member_pointer_value_p (folded))
6326 expr = folded;
6330 /* HACK: Due to double coercion, we can get a
6331 NOP_EXPR<REFERENCE_TYPE>(ADDR_EXPR<POINTER_TYPE> (arg)) here,
6332 which is the tree that we built on the first call (see
6333 below when coercing to reference to object or to reference to
6334 function). We just strip everything and get to the arg.
6335 See g++.old-deja/g++.oliva/template4.C and g++.dg/template/nontype9.C
6336 for examples. */
6337 if (TYPE_REF_OBJ_P (type) || TYPE_REFFN_P (type))
6339 tree probe_type, probe = expr;
6340 if (REFERENCE_REF_P (probe))
6341 probe = TREE_OPERAND (probe, 0);
6342 probe_type = TREE_TYPE (probe);
6343 if (TREE_CODE (probe) == NOP_EXPR)
6345 /* ??? Maybe we could use convert_from_reference here, but we
6346 would need to relax its constraints because the NOP_EXPR
6347 could actually change the type to something more cv-qualified,
6348 and this is not folded by convert_from_reference. */
6349 tree addr = TREE_OPERAND (probe, 0);
6350 if (TREE_CODE (probe_type) == REFERENCE_TYPE
6351 && TREE_CODE (addr) == ADDR_EXPR
6352 && TYPE_PTR_P (TREE_TYPE (addr))
6353 && (same_type_ignoring_top_level_qualifiers_p
6354 (TREE_TYPE (probe_type),
6355 TREE_TYPE (TREE_TYPE (addr)))))
6357 expr = TREE_OPERAND (addr, 0);
6358 expr_type = TREE_TYPE (probe_type);
6363 /* We could also generate a NOP_EXPR(ADDR_EXPR()) when the
6364 parameter is a pointer to object, through decay and
6365 qualification conversion. Let's strip everything. */
6366 else if (TREE_CODE (expr) == NOP_EXPR && TYPE_PTROBV_P (type))
6368 tree probe = expr;
6369 STRIP_NOPS (probe);
6370 if (TREE_CODE (probe) == ADDR_EXPR
6371 && TYPE_PTR_P (TREE_TYPE (probe)))
6373 /* Skip the ADDR_EXPR only if it is part of the decay for
6374 an array. Otherwise, it is part of the original argument
6375 in the source code. */
6376 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (probe, 0))) == ARRAY_TYPE)
6377 probe = TREE_OPERAND (probe, 0);
6378 expr = probe;
6379 expr_type = TREE_TYPE (expr);
6383 /* [temp.arg.nontype]/5, bullet 1
6385 For a non-type template-parameter of integral or enumeration type,
6386 integral promotions (_conv.prom_) and integral conversions
6387 (_conv.integral_) are applied. */
6388 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
6390 tree t = build_integral_nontype_arg_conv (type, expr, complain);
6391 t = maybe_constant_value (t);
6392 if (t != error_mark_node)
6393 expr = t;
6395 if (!same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (expr)))
6396 return error_mark_node;
6398 /* Notice that there are constant expressions like '4 % 0' which
6399 do not fold into integer constants. */
6400 if (TREE_CODE (expr) != INTEGER_CST)
6402 if (complain & tf_error)
6404 int errs = errorcount, warns = warningcount + werrorcount;
6405 if (processing_template_decl
6406 && !require_potential_constant_expression (expr))
6407 return NULL_TREE;
6408 expr = cxx_constant_value (expr);
6409 if (errorcount > errs || warningcount + werrorcount > warns)
6410 inform (EXPR_LOC_OR_LOC (expr, input_location),
6411 "in template argument for type %qT ", type);
6412 if (expr == error_mark_node)
6413 return NULL_TREE;
6414 /* else cxx_constant_value complained but gave us
6415 a real constant, so go ahead. */
6416 gcc_assert (TREE_CODE (expr) == INTEGER_CST);
6418 else
6419 return NULL_TREE;
6422 /* Avoid typedef problems. */
6423 if (TREE_TYPE (expr) != type)
6424 expr = fold_convert (type, expr);
6426 /* [temp.arg.nontype]/5, bullet 2
6428 For a non-type template-parameter of type pointer to object,
6429 qualification conversions (_conv.qual_) and the array-to-pointer
6430 conversion (_conv.array_) are applied. */
6431 else if (TYPE_PTROBV_P (type))
6433 /* [temp.arg.nontype]/1 (TC1 version, DR 49):
6435 A template-argument for a non-type, non-template template-parameter
6436 shall be one of: [...]
6438 -- the name of a non-type template-parameter;
6439 -- the address of an object or function with external linkage, [...]
6440 expressed as "& id-expression" where the & is optional if the name
6441 refers to a function or array, or if the corresponding
6442 template-parameter is a reference.
6444 Here, we do not care about functions, as they are invalid anyway
6445 for a parameter of type pointer-to-object. */
6447 if (DECL_P (expr) && DECL_TEMPLATE_PARM_P (expr))
6448 /* Non-type template parameters are OK. */
6450 else if (cxx_dialect >= cxx11 && integer_zerop (expr))
6451 /* Null pointer values are OK in C++11. */;
6452 else if (TREE_CODE (expr) != ADDR_EXPR
6453 && TREE_CODE (expr_type) != ARRAY_TYPE)
6455 if (VAR_P (expr))
6457 if (complain & tf_error)
6458 error ("%qD is not a valid template argument "
6459 "because %qD is a variable, not the address of "
6460 "a variable", expr, expr);
6461 return NULL_TREE;
6463 if (POINTER_TYPE_P (expr_type))
6465 if (complain & tf_error)
6466 error ("%qE is not a valid template argument for %qT "
6467 "because it is not the address of a variable",
6468 expr, type);
6469 return NULL_TREE;
6471 /* Other values, like integer constants, might be valid
6472 non-type arguments of some other type. */
6473 return error_mark_node;
6475 else
6477 tree decl;
6479 decl = ((TREE_CODE (expr) == ADDR_EXPR)
6480 ? TREE_OPERAND (expr, 0) : expr);
6481 if (!VAR_P (decl))
6483 if (complain & tf_error)
6484 error ("%qE is not a valid template argument of type %qT "
6485 "because %qE is not a variable", expr, type, decl);
6486 return NULL_TREE;
6488 else if (cxx_dialect < cxx11 && !DECL_EXTERNAL_LINKAGE_P (decl))
6490 if (complain & tf_error)
6491 error ("%qE is not a valid template argument of type %qT "
6492 "because %qD does not have external linkage",
6493 expr, type, decl);
6494 return NULL_TREE;
6496 else if (cxx_dialect >= cxx11 && decl_linkage (decl) == lk_none)
6498 if (complain & tf_error)
6499 error ("%qE is not a valid template argument of type %qT "
6500 "because %qD has no linkage", expr, type, decl);
6501 return NULL_TREE;
6505 expr = decay_conversion (expr, complain);
6506 if (expr == error_mark_node)
6507 return error_mark_node;
6509 expr = perform_qualification_conversions (type, expr);
6510 if (expr == error_mark_node)
6511 return error_mark_node;
6513 /* [temp.arg.nontype]/5, bullet 3
6515 For a non-type template-parameter of type reference to object, no
6516 conversions apply. The type referred to by the reference may be more
6517 cv-qualified than the (otherwise identical) type of the
6518 template-argument. The template-parameter is bound directly to the
6519 template-argument, which must be an lvalue. */
6520 else if (TYPE_REF_OBJ_P (type))
6522 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (type),
6523 expr_type))
6524 return error_mark_node;
6526 if (!at_least_as_qualified_p (TREE_TYPE (type), expr_type))
6528 if (complain & tf_error)
6529 error ("%qE is not a valid template argument for type %qT "
6530 "because of conflicts in cv-qualification", expr, type);
6531 return NULL_TREE;
6534 if (!lvalue_p (expr))
6536 if (complain & tf_error)
6537 error ("%qE is not a valid template argument for type %qT "
6538 "because it is not an lvalue", expr, type);
6539 return NULL_TREE;
6542 /* [temp.arg.nontype]/1
6544 A template-argument for a non-type, non-template template-parameter
6545 shall be one of: [...]
6547 -- the address of an object or function with external linkage. */
6548 if (INDIRECT_REF_P (expr)
6549 && TYPE_REF_OBJ_P (TREE_TYPE (TREE_OPERAND (expr, 0))))
6551 expr = TREE_OPERAND (expr, 0);
6552 if (DECL_P (expr))
6554 if (complain & tf_error)
6555 error ("%q#D is not a valid template argument for type %qT "
6556 "because a reference variable does not have a constant "
6557 "address", expr, type);
6558 return NULL_TREE;
6562 if (!DECL_P (expr))
6564 if (complain & tf_error)
6565 error ("%qE is not a valid template argument for type %qT "
6566 "because it is not an object with linkage",
6567 expr, type);
6568 return NULL_TREE;
6571 /* DR 1155 allows internal linkage in C++11 and up. */
6572 linkage_kind linkage = decl_linkage (expr);
6573 if (linkage < (cxx_dialect >= cxx11 ? lk_internal : lk_external))
6575 if (complain & tf_error)
6576 error ("%qE is not a valid template argument for type %qT "
6577 "because object %qD does not have linkage",
6578 expr, type, expr);
6579 return NULL_TREE;
6582 expr = build_nop (type, build_address (expr));
6584 /* [temp.arg.nontype]/5, bullet 4
6586 For a non-type template-parameter of type pointer to function, only
6587 the function-to-pointer conversion (_conv.func_) is applied. If the
6588 template-argument represents a set of overloaded functions (or a
6589 pointer to such), the matching function is selected from the set
6590 (_over.over_). */
6591 else if (TYPE_PTRFN_P (type))
6593 /* If the argument is a template-id, we might not have enough
6594 context information to decay the pointer. */
6595 if (!type_unknown_p (expr_type))
6597 expr = decay_conversion (expr, complain);
6598 if (expr == error_mark_node)
6599 return error_mark_node;
6602 if (cxx_dialect >= cxx11 && integer_zerop (expr))
6603 /* Null pointer values are OK in C++11. */
6604 return perform_qualification_conversions (type, expr);
6606 expr = convert_nontype_argument_function (type, expr, complain);
6607 if (!expr || expr == error_mark_node)
6608 return expr;
6610 /* [temp.arg.nontype]/5, bullet 5
6612 For a non-type template-parameter of type reference to function, no
6613 conversions apply. If the template-argument represents a set of
6614 overloaded functions, the matching function is selected from the set
6615 (_over.over_). */
6616 else if (TYPE_REFFN_P (type))
6618 if (TREE_CODE (expr) == ADDR_EXPR)
6620 if (complain & tf_error)
6622 error ("%qE is not a valid template argument for type %qT "
6623 "because it is a pointer", expr, type);
6624 inform (input_location, "try using %qE instead",
6625 TREE_OPERAND (expr, 0));
6627 return NULL_TREE;
6630 expr = convert_nontype_argument_function (type, expr, complain);
6631 if (!expr || expr == error_mark_node)
6632 return expr;
6634 expr = build_nop (type, build_address (expr));
6636 /* [temp.arg.nontype]/5, bullet 6
6638 For a non-type template-parameter of type pointer to member function,
6639 no conversions apply. If the template-argument represents a set of
6640 overloaded member functions, the matching member function is selected
6641 from the set (_over.over_). */
6642 else if (TYPE_PTRMEMFUNC_P (type))
6644 expr = instantiate_type (type, expr, tf_none);
6645 if (expr == error_mark_node)
6646 return error_mark_node;
6648 /* [temp.arg.nontype] bullet 1 says the pointer to member
6649 expression must be a pointer-to-member constant. */
6650 if (!check_valid_ptrmem_cst_expr (type, expr, complain))
6651 return error_mark_node;
6653 /* There is no way to disable standard conversions in
6654 resolve_address_of_overloaded_function (called by
6655 instantiate_type). It is possible that the call succeeded by
6656 converting &B::I to &D::I (where B is a base of D), so we need
6657 to reject this conversion here.
6659 Actually, even if there was a way to disable standard conversions,
6660 it would still be better to reject them here so that we can
6661 provide a superior diagnostic. */
6662 if (!same_type_p (TREE_TYPE (expr), type))
6664 if (complain & tf_error)
6666 error ("%qE is not a valid template argument for type %qT "
6667 "because it is of type %qT", expr, type,
6668 TREE_TYPE (expr));
6669 /* If we are just one standard conversion off, explain. */
6670 if (can_convert_standard (type, TREE_TYPE (expr), complain))
6671 inform (input_location,
6672 "standard conversions are not allowed in this context");
6674 return NULL_TREE;
6677 /* [temp.arg.nontype]/5, bullet 7
6679 For a non-type template-parameter of type pointer to data member,
6680 qualification conversions (_conv.qual_) are applied. */
6681 else if (TYPE_PTRDATAMEM_P (type))
6683 /* [temp.arg.nontype] bullet 1 says the pointer to member
6684 expression must be a pointer-to-member constant. */
6685 if (!check_valid_ptrmem_cst_expr (type, expr, complain))
6686 return error_mark_node;
6688 expr = perform_qualification_conversions (type, expr);
6689 if (expr == error_mark_node)
6690 return expr;
6692 else if (NULLPTR_TYPE_P (type))
6694 if (expr != nullptr_node)
6696 if (complain & tf_error)
6697 error ("%qE is not a valid template argument for type %qT "
6698 "because it is of type %qT", expr, type, TREE_TYPE (expr));
6699 return NULL_TREE;
6701 return expr;
6703 /* A template non-type parameter must be one of the above. */
6704 else
6705 gcc_unreachable ();
6707 /* Sanity check: did we actually convert the argument to the
6708 right type? */
6709 gcc_assert (same_type_ignoring_top_level_qualifiers_p
6710 (type, TREE_TYPE (expr)));
6711 return convert_from_reference (expr);
6714 /* Subroutine of coerce_template_template_parms, which returns 1 if
6715 PARM_PARM and ARG_PARM match using the rule for the template
6716 parameters of template template parameters. Both PARM and ARG are
6717 template parameters; the rest of the arguments are the same as for
6718 coerce_template_template_parms.
6720 static int
6721 coerce_template_template_parm (tree parm,
6722 tree arg,
6723 tsubst_flags_t complain,
6724 tree in_decl,
6725 tree outer_args)
6727 if (arg == NULL_TREE || error_operand_p (arg)
6728 || parm == NULL_TREE || error_operand_p (parm))
6729 return 0;
6731 if (TREE_CODE (arg) != TREE_CODE (parm))
6732 return 0;
6734 switch (TREE_CODE (parm))
6736 case TEMPLATE_DECL:
6737 /* We encounter instantiations of templates like
6738 template <template <template <class> class> class TT>
6739 class C; */
6741 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
6742 tree argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
6744 if (!coerce_template_template_parms
6745 (parmparm, argparm, complain, in_decl, outer_args))
6746 return 0;
6748 /* Fall through. */
6750 case TYPE_DECL:
6751 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (arg))
6752 && !TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
6753 /* Argument is a parameter pack but parameter is not. */
6754 return 0;
6755 break;
6757 case PARM_DECL:
6758 /* The tsubst call is used to handle cases such as
6760 template <int> class C {};
6761 template <class T, template <T> class TT> class D {};
6762 D<int, C> d;
6764 i.e. the parameter list of TT depends on earlier parameters. */
6765 if (!uses_template_parms (TREE_TYPE (arg)))
6767 tree t = tsubst (TREE_TYPE (parm), outer_args, complain, in_decl);
6768 if (!uses_template_parms (t)
6769 && !same_type_p (t, TREE_TYPE (arg)))
6770 return 0;
6773 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (arg))
6774 && !TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
6775 /* Argument is a parameter pack but parameter is not. */
6776 return 0;
6778 break;
6780 default:
6781 gcc_unreachable ();
6784 return 1;
6788 /* Return 1 if PARM_PARMS and ARG_PARMS matches using rule for
6789 template template parameters. Both PARM_PARMS and ARG_PARMS are
6790 vectors of TREE_LIST nodes containing TYPE_DECL, TEMPLATE_DECL
6791 or PARM_DECL.
6793 Consider the example:
6794 template <class T> class A;
6795 template<template <class U> class TT> class B;
6797 For B<A>, PARM_PARMS are the parameters to TT, while ARG_PARMS are
6798 the parameters to A, and OUTER_ARGS contains A. */
6800 static int
6801 coerce_template_template_parms (tree parm_parms,
6802 tree arg_parms,
6803 tsubst_flags_t complain,
6804 tree in_decl,
6805 tree outer_args)
6807 int nparms, nargs, i;
6808 tree parm, arg;
6809 int variadic_p = 0;
6811 gcc_assert (TREE_CODE (parm_parms) == TREE_VEC);
6812 gcc_assert (TREE_CODE (arg_parms) == TREE_VEC);
6814 nparms = TREE_VEC_LENGTH (parm_parms);
6815 nargs = TREE_VEC_LENGTH (arg_parms);
6817 /* Determine whether we have a parameter pack at the end of the
6818 template template parameter's template parameter list. */
6819 if (TREE_VEC_ELT (parm_parms, nparms - 1) != error_mark_node)
6821 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, nparms - 1));
6823 if (error_operand_p (parm))
6824 return 0;
6826 switch (TREE_CODE (parm))
6828 case TEMPLATE_DECL:
6829 case TYPE_DECL:
6830 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
6831 variadic_p = 1;
6832 break;
6834 case PARM_DECL:
6835 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
6836 variadic_p = 1;
6837 break;
6839 default:
6840 gcc_unreachable ();
6844 if (nargs != nparms
6845 && !(variadic_p && nargs >= nparms - 1))
6846 return 0;
6848 /* Check all of the template parameters except the parameter pack at
6849 the end (if any). */
6850 for (i = 0; i < nparms - variadic_p; ++i)
6852 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node
6853 || TREE_VEC_ELT (arg_parms, i) == error_mark_node)
6854 continue;
6856 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
6857 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
6859 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
6860 outer_args))
6861 return 0;
6865 if (variadic_p)
6867 /* Check each of the template parameters in the template
6868 argument against the template parameter pack at the end of
6869 the template template parameter. */
6870 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node)
6871 return 0;
6873 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
6875 for (; i < nargs; ++i)
6877 if (TREE_VEC_ELT (arg_parms, i) == error_mark_node)
6878 continue;
6880 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
6882 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
6883 outer_args))
6884 return 0;
6888 return 1;
6891 /* Verifies that the deduced template arguments (in TARGS) for the
6892 template template parameters (in TPARMS) represent valid bindings,
6893 by comparing the template parameter list of each template argument
6894 to the template parameter list of its corresponding template
6895 template parameter, in accordance with DR150. This
6896 routine can only be called after all template arguments have been
6897 deduced. It will return TRUE if all of the template template
6898 parameter bindings are okay, FALSE otherwise. */
6899 bool
6900 template_template_parm_bindings_ok_p (tree tparms, tree targs)
6902 int i, ntparms = TREE_VEC_LENGTH (tparms);
6903 bool ret = true;
6905 /* We're dealing with template parms in this process. */
6906 ++processing_template_decl;
6908 targs = INNERMOST_TEMPLATE_ARGS (targs);
6910 for (i = 0; i < ntparms; ++i)
6912 tree tparm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
6913 tree targ = TREE_VEC_ELT (targs, i);
6915 if (TREE_CODE (tparm) == TEMPLATE_DECL && targ)
6917 tree packed_args = NULL_TREE;
6918 int idx, len = 1;
6920 if (ARGUMENT_PACK_P (targ))
6922 /* Look inside the argument pack. */
6923 packed_args = ARGUMENT_PACK_ARGS (targ);
6924 len = TREE_VEC_LENGTH (packed_args);
6927 for (idx = 0; idx < len; ++idx)
6929 tree targ_parms = NULL_TREE;
6931 if (packed_args)
6932 /* Extract the next argument from the argument
6933 pack. */
6934 targ = TREE_VEC_ELT (packed_args, idx);
6936 if (PACK_EXPANSION_P (targ))
6937 /* Look at the pattern of the pack expansion. */
6938 targ = PACK_EXPANSION_PATTERN (targ);
6940 /* Extract the template parameters from the template
6941 argument. */
6942 if (TREE_CODE (targ) == TEMPLATE_DECL)
6943 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (targ);
6944 else if (TREE_CODE (targ) == TEMPLATE_TEMPLATE_PARM)
6945 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (TYPE_NAME (targ));
6947 /* Verify that we can coerce the template template
6948 parameters from the template argument to the template
6949 parameter. This requires an exact match. */
6950 if (targ_parms
6951 && !coerce_template_template_parms
6952 (DECL_INNERMOST_TEMPLATE_PARMS (tparm),
6953 targ_parms,
6954 tf_none,
6955 tparm,
6956 targs))
6958 ret = false;
6959 goto out;
6965 out:
6967 --processing_template_decl;
6968 return ret;
6971 /* Since type attributes aren't mangled, we need to strip them from
6972 template type arguments. */
6974 static tree
6975 canonicalize_type_argument (tree arg, tsubst_flags_t complain)
6977 if (!arg || arg == error_mark_node || arg == TYPE_CANONICAL (arg))
6978 return arg;
6979 bool removed_attributes = false;
6980 tree canon = strip_typedefs (arg, &removed_attributes);
6981 if (removed_attributes
6982 && (complain & tf_warning))
6983 warning (OPT_Wignored_attributes,
6984 "ignoring attributes on template argument %qT", arg);
6985 return canon;
6988 // A template declaration can be substituted for a constrained
6989 // template template parameter only when the argument is more
6990 // constrained than the parameter.
6991 static bool
6992 is_compatible_template_arg (tree parm, tree arg)
6994 tree parm_cons = get_constraints (parm);
6996 /* For now, allow constrained template template arguments
6997 and unconstrained template template parameters. */
6998 if (parm_cons == NULL_TREE)
6999 return true;
7001 tree arg_cons = get_constraints (arg);
7003 // If the template parameter is constrained, we need to rewrite its
7004 // constraints in terms of the ARG's template parameters. This ensures
7005 // that all of the template parameter types will have the same depth.
7007 // Note that this is only valid when coerce_template_template_parm is
7008 // true for the innermost template parameters of PARM and ARG. In other
7009 // words, because coercion is successful, this conversion will be valid.
7010 if (parm_cons)
7012 tree args = template_parms_to_args (DECL_TEMPLATE_PARMS (arg));
7013 parm_cons = tsubst_constraint_info (parm_cons,
7014 INNERMOST_TEMPLATE_ARGS (args),
7015 tf_none, NULL_TREE);
7016 if (parm_cons == error_mark_node)
7017 return false;
7020 return subsumes (parm_cons, arg_cons);
7023 // Convert a placeholder argument into a binding to the original
7024 // parameter. The original parameter is saved as the TREE_TYPE of
7025 // ARG.
7026 static inline tree
7027 convert_wildcard_argument (tree parm, tree arg)
7029 TREE_TYPE (arg) = parm;
7030 return arg;
7033 /* Convert the indicated template ARG as necessary to match the
7034 indicated template PARM. Returns the converted ARG, or
7035 error_mark_node if the conversion was unsuccessful. Error and
7036 warning messages are issued under control of COMPLAIN. This
7037 conversion is for the Ith parameter in the parameter list. ARGS is
7038 the full set of template arguments deduced so far. */
7040 static tree
7041 convert_template_argument (tree parm,
7042 tree arg,
7043 tree args,
7044 tsubst_flags_t complain,
7045 int i,
7046 tree in_decl)
7048 tree orig_arg;
7049 tree val;
7050 int is_type, requires_type, is_tmpl_type, requires_tmpl_type;
7052 if (parm == error_mark_node)
7053 return error_mark_node;
7055 /* Trivially convert placeholders. */
7056 if (TREE_CODE (arg) == WILDCARD_DECL)
7057 return convert_wildcard_argument (parm, arg);
7059 if (TREE_CODE (arg) == TREE_LIST
7060 && TREE_CODE (TREE_VALUE (arg)) == OFFSET_REF)
7062 /* The template argument was the name of some
7063 member function. That's usually
7064 invalid, but static members are OK. In any
7065 case, grab the underlying fields/functions
7066 and issue an error later if required. */
7067 orig_arg = TREE_VALUE (arg);
7068 TREE_TYPE (arg) = unknown_type_node;
7071 orig_arg = arg;
7073 requires_tmpl_type = TREE_CODE (parm) == TEMPLATE_DECL;
7074 requires_type = (TREE_CODE (parm) == TYPE_DECL
7075 || requires_tmpl_type);
7077 /* When determining whether an argument pack expansion is a template,
7078 look at the pattern. */
7079 if (TREE_CODE (arg) == TYPE_PACK_EXPANSION)
7080 arg = PACK_EXPANSION_PATTERN (arg);
7082 /* Deal with an injected-class-name used as a template template arg. */
7083 if (requires_tmpl_type && CLASS_TYPE_P (arg))
7085 tree t = maybe_get_template_decl_from_type_decl (TYPE_NAME (arg));
7086 if (TREE_CODE (t) == TEMPLATE_DECL)
7088 if (cxx_dialect >= cxx11)
7089 /* OK under DR 1004. */;
7090 else if (complain & tf_warning_or_error)
7091 pedwarn (input_location, OPT_Wpedantic, "injected-class-name %qD"
7092 " used as template template argument", TYPE_NAME (arg));
7093 else if (flag_pedantic_errors)
7094 t = arg;
7096 arg = t;
7100 is_tmpl_type =
7101 ((TREE_CODE (arg) == TEMPLATE_DECL
7102 && TREE_CODE (DECL_TEMPLATE_RESULT (arg)) == TYPE_DECL)
7103 || (requires_tmpl_type && TREE_CODE (arg) == TYPE_ARGUMENT_PACK)
7104 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
7105 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
7107 if (is_tmpl_type
7108 && (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
7109 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE))
7110 arg = TYPE_STUB_DECL (arg);
7112 is_type = TYPE_P (arg) || is_tmpl_type;
7114 if (requires_type && ! is_type && TREE_CODE (arg) == SCOPE_REF
7115 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_TYPE_PARM)
7117 if (TREE_CODE (TREE_OPERAND (arg, 1)) == BIT_NOT_EXPR)
7119 if (complain & tf_error)
7120 error ("invalid use of destructor %qE as a type", orig_arg);
7121 return error_mark_node;
7124 permerror (input_location,
7125 "to refer to a type member of a template parameter, "
7126 "use %<typename %E%>", orig_arg);
7128 orig_arg = make_typename_type (TREE_OPERAND (arg, 0),
7129 TREE_OPERAND (arg, 1),
7130 typename_type,
7131 complain);
7132 arg = orig_arg;
7133 is_type = 1;
7135 if (is_type != requires_type)
7137 if (in_decl)
7139 if (complain & tf_error)
7141 error ("type/value mismatch at argument %d in template "
7142 "parameter list for %qD",
7143 i + 1, in_decl);
7144 if (is_type)
7145 inform (input_location,
7146 " expected a constant of type %qT, got %qT",
7147 TREE_TYPE (parm),
7148 (DECL_P (arg) ? DECL_NAME (arg) : orig_arg));
7149 else if (requires_tmpl_type)
7150 inform (input_location,
7151 " expected a class template, got %qE", orig_arg);
7152 else
7153 inform (input_location,
7154 " expected a type, got %qE", orig_arg);
7157 return error_mark_node;
7159 if (is_tmpl_type ^ requires_tmpl_type)
7161 if (in_decl && (complain & tf_error))
7163 error ("type/value mismatch at argument %d in template "
7164 "parameter list for %qD",
7165 i + 1, in_decl);
7166 if (is_tmpl_type)
7167 inform (input_location,
7168 " expected a type, got %qT", DECL_NAME (arg));
7169 else
7170 inform (input_location,
7171 " expected a class template, got %qT", orig_arg);
7173 return error_mark_node;
7176 if (is_type)
7178 if (requires_tmpl_type)
7180 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
7181 val = orig_arg;
7182 else if (TREE_CODE (TREE_TYPE (arg)) == UNBOUND_CLASS_TEMPLATE)
7183 /* The number of argument required is not known yet.
7184 Just accept it for now. */
7185 val = TREE_TYPE (arg);
7186 else
7188 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
7189 tree argparm;
7191 /* Strip alias templates that are equivalent to another
7192 template. */
7193 arg = get_underlying_template (arg);
7194 argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
7196 if (coerce_template_template_parms (parmparm, argparm,
7197 complain, in_decl,
7198 args))
7200 val = arg;
7202 /* TEMPLATE_TEMPLATE_PARM node is preferred over
7203 TEMPLATE_DECL. */
7204 if (val != error_mark_node)
7206 if (DECL_TEMPLATE_TEMPLATE_PARM_P (val))
7207 val = TREE_TYPE (val);
7208 if (TREE_CODE (orig_arg) == TYPE_PACK_EXPANSION)
7209 val = make_pack_expansion (val);
7212 else
7214 if (in_decl && (complain & tf_error))
7216 error ("type/value mismatch at argument %d in "
7217 "template parameter list for %qD",
7218 i + 1, in_decl);
7219 inform (input_location,
7220 " expected a template of type %qD, got %qT",
7221 parm, orig_arg);
7224 val = error_mark_node;
7227 // Check that the constraints are compatible before allowing the
7228 // substitution.
7229 if (val != error_mark_node)
7230 if (!is_compatible_template_arg (parm, arg))
7232 if (in_decl && (complain & tf_error))
7234 error ("constraint mismatch at argument %d in "
7235 "template parameter list for %qD",
7236 i + 1, in_decl);
7237 inform (input_location, " expected %qD but got %qD",
7238 parm, arg);
7240 val = error_mark_node;
7244 else
7245 val = orig_arg;
7246 /* We only form one instance of each template specialization.
7247 Therefore, if we use a non-canonical variant (i.e., a
7248 typedef), any future messages referring to the type will use
7249 the typedef, which is confusing if those future uses do not
7250 themselves also use the typedef. */
7251 if (TYPE_P (val))
7252 val = canonicalize_type_argument (val, complain);
7254 else
7256 tree t = tsubst (TREE_TYPE (parm), args, complain, in_decl);
7258 if (invalid_nontype_parm_type_p (t, complain))
7259 return error_mark_node;
7261 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
7263 if (same_type_p (t, TREE_TYPE (orig_arg)))
7264 val = orig_arg;
7265 else
7267 /* Not sure if this is reachable, but it doesn't hurt
7268 to be robust. */
7269 error ("type mismatch in nontype parameter pack");
7270 val = error_mark_node;
7273 else if (!dependent_template_arg_p (orig_arg)
7274 && !uses_template_parms (t))
7275 /* We used to call digest_init here. However, digest_init
7276 will report errors, which we don't want when complain
7277 is zero. More importantly, digest_init will try too
7278 hard to convert things: for example, `0' should not be
7279 converted to pointer type at this point according to
7280 the standard. Accepting this is not merely an
7281 extension, since deciding whether or not these
7282 conversions can occur is part of determining which
7283 function template to call, or whether a given explicit
7284 argument specification is valid. */
7285 val = convert_nontype_argument (t, orig_arg, complain);
7286 else
7288 bool removed_attr = false;
7289 val = strip_typedefs_expr (orig_arg, &removed_attr);
7292 if (val == NULL_TREE)
7293 val = error_mark_node;
7294 else if (val == error_mark_node && (complain & tf_error))
7295 error ("could not convert template argument %qE to %qT", orig_arg, t);
7297 if (INDIRECT_REF_P (val))
7299 /* Reject template arguments that are references to built-in
7300 functions with no library fallbacks. */
7301 const_tree inner = TREE_OPERAND (val, 0);
7302 if (TREE_CODE (TREE_TYPE (inner)) == REFERENCE_TYPE
7303 && TREE_CODE (TREE_TYPE (TREE_TYPE (inner))) == FUNCTION_TYPE
7304 && TREE_CODE (TREE_TYPE (inner)) == REFERENCE_TYPE
7305 && 0 < TREE_OPERAND_LENGTH (inner)
7306 && reject_gcc_builtin (TREE_OPERAND (inner, 0)))
7307 return error_mark_node;
7310 if (TREE_CODE (val) == SCOPE_REF)
7312 /* Strip typedefs from the SCOPE_REF. */
7313 tree type = canonicalize_type_argument (TREE_TYPE (val), complain);
7314 tree scope = canonicalize_type_argument (TREE_OPERAND (val, 0),
7315 complain);
7316 val = build_qualified_name (type, scope, TREE_OPERAND (val, 1),
7317 QUALIFIED_NAME_IS_TEMPLATE (val));
7321 return val;
7324 /* Coerces the remaining template arguments in INNER_ARGS (from
7325 ARG_IDX to the end) into the parameter pack at PARM_IDX in PARMS.
7326 Returns the coerced argument pack. PARM_IDX is the position of this
7327 parameter in the template parameter list. ARGS is the original
7328 template argument list. */
7329 static tree
7330 coerce_template_parameter_pack (tree parms,
7331 int parm_idx,
7332 tree args,
7333 tree inner_args,
7334 int arg_idx,
7335 tree new_args,
7336 int* lost,
7337 tree in_decl,
7338 tsubst_flags_t complain)
7340 tree parm = TREE_VEC_ELT (parms, parm_idx);
7341 int nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
7342 tree packed_args;
7343 tree argument_pack;
7344 tree packed_parms = NULL_TREE;
7346 if (arg_idx > nargs)
7347 arg_idx = nargs;
7349 if (tree packs = fixed_parameter_pack_p (TREE_VALUE (parm)))
7351 /* When the template parameter is a non-type template parameter pack
7352 or template template parameter pack whose type or template
7353 parameters use parameter packs, we know exactly how many arguments
7354 we are looking for. Build a vector of the instantiated decls for
7355 these template parameters in PACKED_PARMS. */
7356 /* We can't use make_pack_expansion here because it would interpret a
7357 _DECL as a use rather than a declaration. */
7358 tree decl = TREE_VALUE (parm);
7359 tree exp = cxx_make_type (TYPE_PACK_EXPANSION);
7360 SET_PACK_EXPANSION_PATTERN (exp, decl);
7361 PACK_EXPANSION_PARAMETER_PACKS (exp) = packs;
7362 SET_TYPE_STRUCTURAL_EQUALITY (exp);
7364 TREE_VEC_LENGTH (args)--;
7365 packed_parms = tsubst_pack_expansion (exp, args, complain, decl);
7366 TREE_VEC_LENGTH (args)++;
7368 if (packed_parms == error_mark_node)
7369 return error_mark_node;
7371 /* If we're doing a partial instantiation of a member template,
7372 verify that all of the types used for the non-type
7373 template parameter pack are, in fact, valid for non-type
7374 template parameters. */
7375 if (arg_idx < nargs
7376 && PACK_EXPANSION_P (TREE_VEC_ELT (inner_args, arg_idx)))
7378 int j, len = TREE_VEC_LENGTH (packed_parms);
7379 for (j = 0; j < len; ++j)
7381 tree t = TREE_TYPE (TREE_VEC_ELT (packed_parms, j));
7382 if (invalid_nontype_parm_type_p (t, complain))
7383 return error_mark_node;
7385 /* We don't know how many args we have yet, just
7386 use the unconverted ones for now. */
7387 return NULL_TREE;
7390 packed_args = make_tree_vec (TREE_VEC_LENGTH (packed_parms));
7392 /* Check if we have a placeholder pack, which indicates we're
7393 in the context of a introduction list. In that case we want
7394 to match this pack to the single placeholder. */
7395 else if (arg_idx < nargs
7396 && TREE_CODE (TREE_VEC_ELT (inner_args, arg_idx)) == WILDCARD_DECL
7397 && WILDCARD_PACK_P (TREE_VEC_ELT (inner_args, arg_idx)))
7399 nargs = arg_idx + 1;
7400 packed_args = make_tree_vec (1);
7402 else
7403 packed_args = make_tree_vec (nargs - arg_idx);
7405 /* Convert the remaining arguments, which will be a part of the
7406 parameter pack "parm". */
7407 int first_pack_arg = arg_idx;
7408 for (; arg_idx < nargs; ++arg_idx)
7410 tree arg = TREE_VEC_ELT (inner_args, arg_idx);
7411 tree actual_parm = TREE_VALUE (parm);
7412 int pack_idx = arg_idx - first_pack_arg;
7414 if (packed_parms)
7416 /* Once we've packed as many args as we have types, stop. */
7417 if (pack_idx >= TREE_VEC_LENGTH (packed_parms))
7418 break;
7419 else if (PACK_EXPANSION_P (arg))
7420 /* We don't know how many args we have yet, just
7421 use the unconverted ones for now. */
7422 return NULL_TREE;
7423 else
7424 actual_parm = TREE_VEC_ELT (packed_parms, pack_idx);
7427 if (arg == error_mark_node)
7429 if (complain & tf_error)
7430 error ("template argument %d is invalid", arg_idx + 1);
7432 else
7433 arg = convert_template_argument (actual_parm,
7434 arg, new_args, complain, parm_idx,
7435 in_decl);
7436 if (arg == error_mark_node)
7437 (*lost)++;
7438 TREE_VEC_ELT (packed_args, pack_idx) = arg;
7441 if (arg_idx - first_pack_arg < TREE_VEC_LENGTH (packed_args)
7442 && TREE_VEC_LENGTH (packed_args) > 0)
7444 if (complain & tf_error)
7445 error ("wrong number of template arguments (%d, should be %d)",
7446 arg_idx - first_pack_arg, TREE_VEC_LENGTH (packed_args));
7447 return error_mark_node;
7450 if (TREE_CODE (TREE_VALUE (parm)) == TYPE_DECL
7451 || TREE_CODE (TREE_VALUE (parm)) == TEMPLATE_DECL)
7452 argument_pack = cxx_make_type (TYPE_ARGUMENT_PACK);
7453 else
7455 argument_pack = make_node (NONTYPE_ARGUMENT_PACK);
7456 TREE_TYPE (argument_pack)
7457 = tsubst (TREE_TYPE (TREE_VALUE (parm)), new_args, complain, in_decl);
7458 TREE_CONSTANT (argument_pack) = 1;
7461 SET_ARGUMENT_PACK_ARGS (argument_pack, packed_args);
7462 if (CHECKING_P)
7463 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (packed_args,
7464 TREE_VEC_LENGTH (packed_args));
7465 return argument_pack;
7468 /* Returns the number of pack expansions in the template argument vector
7469 ARGS. */
7471 static int
7472 pack_expansion_args_count (tree args)
7474 int i;
7475 int count = 0;
7476 if (args)
7477 for (i = 0; i < TREE_VEC_LENGTH (args); ++i)
7479 tree elt = TREE_VEC_ELT (args, i);
7480 if (elt && PACK_EXPANSION_P (elt))
7481 ++count;
7483 return count;
7486 /* Convert all template arguments to their appropriate types, and
7487 return a vector containing the innermost resulting template
7488 arguments. If any error occurs, return error_mark_node. Error and
7489 warning messages are issued under control of COMPLAIN.
7491 If REQUIRE_ALL_ARGS is false, argument deduction will be performed
7492 for arguments not specified in ARGS. Otherwise, if
7493 USE_DEFAULT_ARGS is true, default arguments will be used to fill in
7494 unspecified arguments. If REQUIRE_ALL_ARGS is true, but
7495 USE_DEFAULT_ARGS is false, then all arguments must be specified in
7496 ARGS. */
7498 static tree
7499 coerce_template_parms (tree parms,
7500 tree args,
7501 tree in_decl,
7502 tsubst_flags_t complain,
7503 bool require_all_args,
7504 bool use_default_args)
7506 int nparms, nargs, parm_idx, arg_idx, lost = 0;
7507 tree orig_inner_args;
7508 tree inner_args;
7509 tree new_args;
7510 tree new_inner_args;
7511 int saved_unevaluated_operand;
7512 int saved_inhibit_evaluation_warnings;
7514 /* When used as a boolean value, indicates whether this is a
7515 variadic template parameter list. Since it's an int, we can also
7516 subtract it from nparms to get the number of non-variadic
7517 parameters. */
7518 int variadic_p = 0;
7519 int variadic_args_p = 0;
7520 int post_variadic_parms = 0;
7522 /* Likewise for parameters with default arguments. */
7523 int default_p = 0;
7525 if (args == error_mark_node)
7526 return error_mark_node;
7528 nparms = TREE_VEC_LENGTH (parms);
7530 /* Determine if there are any parameter packs or default arguments. */
7531 for (parm_idx = 0; parm_idx < nparms; ++parm_idx)
7533 tree parm = TREE_VEC_ELT (parms, parm_idx);
7534 if (variadic_p)
7535 ++post_variadic_parms;
7536 if (template_parameter_pack_p (TREE_VALUE (parm)))
7537 ++variadic_p;
7538 if (TREE_PURPOSE (parm))
7539 ++default_p;
7542 inner_args = orig_inner_args = INNERMOST_TEMPLATE_ARGS (args);
7543 /* If there are no parameters that follow a parameter pack, we need to
7544 expand any argument packs so that we can deduce a parameter pack from
7545 some non-packed args followed by an argument pack, as in variadic85.C.
7546 If there are such parameters, we need to leave argument packs intact
7547 so the arguments are assigned properly. This can happen when dealing
7548 with a nested class inside a partial specialization of a class
7549 template, as in variadic92.C, or when deducing a template parameter pack
7550 from a sub-declarator, as in variadic114.C. */
7551 if (!post_variadic_parms)
7552 inner_args = expand_template_argument_pack (inner_args);
7554 /* Count any pack expansion args. */
7555 variadic_args_p = pack_expansion_args_count (inner_args);
7557 nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
7558 if ((nargs > nparms && !variadic_p)
7559 || (nargs < nparms - variadic_p
7560 && require_all_args
7561 && !variadic_args_p
7562 && (!use_default_args
7563 || (TREE_VEC_ELT (parms, nargs) != error_mark_node
7564 && !TREE_PURPOSE (TREE_VEC_ELT (parms, nargs))))))
7566 if (complain & tf_error)
7568 if (variadic_p || default_p)
7570 nparms -= variadic_p + default_p;
7571 error ("wrong number of template arguments "
7572 "(%d, should be at least %d)", nargs, nparms);
7574 else
7575 error ("wrong number of template arguments "
7576 "(%d, should be %d)", nargs, nparms);
7578 if (in_decl)
7579 inform (DECL_SOURCE_LOCATION (in_decl),
7580 "provided for %qD", in_decl);
7583 return error_mark_node;
7585 /* We can't pass a pack expansion to a non-pack parameter of an alias
7586 template (DR 1430). */
7587 else if (in_decl
7588 && (DECL_ALIAS_TEMPLATE_P (in_decl)
7589 || concept_template_p (in_decl))
7590 && variadic_args_p
7591 && nargs - variadic_args_p < nparms - variadic_p)
7593 if (complain & tf_error)
7595 for (int i = 0; i < TREE_VEC_LENGTH (inner_args); ++i)
7597 tree arg = TREE_VEC_ELT (inner_args, i);
7598 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
7600 if (PACK_EXPANSION_P (arg)
7601 && !template_parameter_pack_p (parm))
7603 if (DECL_ALIAS_TEMPLATE_P (in_decl))
7604 error_at (location_of (arg),
7605 "pack expansion argument for non-pack parameter "
7606 "%qD of alias template %qD", parm, in_decl);
7607 else
7608 error_at (location_of (arg),
7609 "pack expansion argument for non-pack parameter "
7610 "%qD of concept %qD", parm, in_decl);
7611 inform (DECL_SOURCE_LOCATION (parm), "declared here");
7612 goto found;
7615 gcc_unreachable ();
7616 found:;
7618 return error_mark_node;
7621 /* We need to evaluate the template arguments, even though this
7622 template-id may be nested within a "sizeof". */
7623 saved_unevaluated_operand = cp_unevaluated_operand;
7624 cp_unevaluated_operand = 0;
7625 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
7626 c_inhibit_evaluation_warnings = 0;
7627 new_inner_args = make_tree_vec (nparms);
7628 new_args = add_outermost_template_args (args, new_inner_args);
7629 int pack_adjust = 0;
7630 for (parm_idx = 0, arg_idx = 0; parm_idx < nparms; parm_idx++, arg_idx++)
7632 tree arg;
7633 tree parm;
7635 /* Get the Ith template parameter. */
7636 parm = TREE_VEC_ELT (parms, parm_idx);
7638 if (parm == error_mark_node)
7640 TREE_VEC_ELT (new_inner_args, arg_idx) = error_mark_node;
7641 continue;
7644 /* Calculate the next argument. */
7645 if (arg_idx < nargs)
7646 arg = TREE_VEC_ELT (inner_args, arg_idx);
7647 else
7648 arg = NULL_TREE;
7650 if (template_parameter_pack_p (TREE_VALUE (parm))
7651 && !(arg && ARGUMENT_PACK_P (arg)))
7653 /* Some arguments will be placed in the
7654 template parameter pack PARM. */
7655 arg = coerce_template_parameter_pack (parms, parm_idx, args,
7656 inner_args, arg_idx,
7657 new_args, &lost,
7658 in_decl, complain);
7660 if (arg == NULL_TREE)
7662 /* We don't know how many args we have yet, just use the
7663 unconverted (and still packed) ones for now. */
7664 new_inner_args = orig_inner_args;
7665 arg_idx = nargs;
7666 break;
7669 TREE_VEC_ELT (new_inner_args, parm_idx) = arg;
7671 /* Store this argument. */
7672 if (arg == error_mark_node)
7674 lost++;
7675 /* We are done with all of the arguments. */
7676 arg_idx = nargs;
7678 else
7680 pack_adjust = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg)) - 1;
7681 arg_idx += pack_adjust;
7684 continue;
7686 else if (arg)
7688 if (PACK_EXPANSION_P (arg))
7690 /* "If every valid specialization of a variadic template
7691 requires an empty template parameter pack, the template is
7692 ill-formed, no diagnostic required." So check that the
7693 pattern works with this parameter. */
7694 tree pattern = PACK_EXPANSION_PATTERN (arg);
7695 tree conv = convert_template_argument (TREE_VALUE (parm),
7696 pattern, new_args,
7697 complain, parm_idx,
7698 in_decl);
7699 if (conv == error_mark_node)
7701 inform (input_location, "so any instantiation with a "
7702 "non-empty parameter pack would be ill-formed");
7703 ++lost;
7705 else if (TYPE_P (conv) && !TYPE_P (pattern))
7706 /* Recover from missing typename. */
7707 TREE_VEC_ELT (inner_args, arg_idx)
7708 = make_pack_expansion (conv);
7710 /* We don't know how many args we have yet, just
7711 use the unconverted ones for now. */
7712 new_inner_args = inner_args;
7713 arg_idx = nargs;
7714 break;
7717 else if (require_all_args)
7719 /* There must be a default arg in this case. */
7720 arg = tsubst_template_arg (TREE_PURPOSE (parm), new_args,
7721 complain, in_decl);
7722 /* The position of the first default template argument,
7723 is also the number of non-defaulted arguments in NEW_INNER_ARGS.
7724 Record that. */
7725 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
7726 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args,
7727 arg_idx - pack_adjust);
7729 else
7730 break;
7732 if (arg == error_mark_node)
7734 if (complain & tf_error)
7735 error ("template argument %d is invalid", arg_idx + 1);
7737 else if (!arg)
7738 /* This only occurs if there was an error in the template
7739 parameter list itself (which we would already have
7740 reported) that we are trying to recover from, e.g., a class
7741 template with a parameter list such as
7742 template<typename..., typename>. */
7743 ++lost;
7744 else
7745 arg = convert_template_argument (TREE_VALUE (parm),
7746 arg, new_args, complain,
7747 parm_idx, in_decl);
7749 if (arg == error_mark_node)
7750 lost++;
7751 TREE_VEC_ELT (new_inner_args, arg_idx - pack_adjust) = arg;
7753 cp_unevaluated_operand = saved_unevaluated_operand;
7754 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
7756 if (variadic_p && arg_idx < nargs)
7758 if (complain & tf_error)
7760 error ("wrong number of template arguments "
7761 "(%d, should be %d)", nargs, arg_idx);
7762 if (in_decl)
7763 error ("provided for %q+D", in_decl);
7765 return error_mark_node;
7768 if (lost)
7769 return error_mark_node;
7771 if (CHECKING_P && !NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
7772 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args,
7773 TREE_VEC_LENGTH (new_inner_args));
7775 return new_inner_args;
7778 /* Convert all template arguments to their appropriate types, and
7779 return a vector containing the innermost resulting template
7780 arguments. If any error occurs, return error_mark_node. Error and
7781 warning messages are not issued.
7783 Note that no function argument deduction is performed, and default
7784 arguments are used to fill in unspecified arguments. */
7785 tree
7786 coerce_template_parms (tree parms, tree args, tree in_decl)
7788 return coerce_template_parms (parms, args, in_decl, tf_none, true, true);
7791 /* Convert all template arguments to their appropriate type, and
7792 instantiate default arguments as needed. This returns a vector
7793 containing the innermost resulting template arguments, or
7794 error_mark_node if unsuccessful. */
7795 tree
7796 coerce_template_parms (tree parms, tree args, tree in_decl,
7797 tsubst_flags_t complain)
7799 return coerce_template_parms (parms, args, in_decl, complain, true, true);
7802 /* Like coerce_template_parms. If PARMS represents all template
7803 parameters levels, this function returns a vector of vectors
7804 representing all the resulting argument levels. Note that in this
7805 case, only the innermost arguments are coerced because the
7806 outermost ones are supposed to have been coerced already.
7808 Otherwise, if PARMS represents only (the innermost) vector of
7809 parameters, this function returns a vector containing just the
7810 innermost resulting arguments. */
7812 static tree
7813 coerce_innermost_template_parms (tree parms,
7814 tree args,
7815 tree in_decl,
7816 tsubst_flags_t complain,
7817 bool require_all_args,
7818 bool use_default_args)
7820 int parms_depth = TMPL_PARMS_DEPTH (parms);
7821 int args_depth = TMPL_ARGS_DEPTH (args);
7822 tree coerced_args;
7824 if (parms_depth > 1)
7826 coerced_args = make_tree_vec (parms_depth);
7827 tree level;
7828 int cur_depth;
7830 for (level = parms, cur_depth = parms_depth;
7831 parms_depth > 0 && level != NULL_TREE;
7832 level = TREE_CHAIN (level), --cur_depth)
7834 tree l;
7835 if (cur_depth == args_depth)
7836 l = coerce_template_parms (TREE_VALUE (level),
7837 args, in_decl, complain,
7838 require_all_args,
7839 use_default_args);
7840 else
7841 l = TMPL_ARGS_LEVEL (args, cur_depth);
7843 if (l == error_mark_node)
7844 return error_mark_node;
7846 SET_TMPL_ARGS_LEVEL (coerced_args, cur_depth, l);
7849 else
7850 coerced_args = coerce_template_parms (INNERMOST_TEMPLATE_PARMS (parms),
7851 args, in_decl, complain,
7852 require_all_args,
7853 use_default_args);
7854 return coerced_args;
7857 /* Returns 1 if template args OT and NT are equivalent. */
7860 template_args_equal (tree ot, tree nt)
7862 if (nt == ot)
7863 return 1;
7864 if (nt == NULL_TREE || ot == NULL_TREE)
7865 return false;
7867 if (TREE_CODE (nt) == TREE_VEC)
7868 /* For member templates */
7869 return TREE_CODE (ot) == TREE_VEC && comp_template_args (ot, nt);
7870 else if (PACK_EXPANSION_P (ot))
7871 return (PACK_EXPANSION_P (nt)
7872 && template_args_equal (PACK_EXPANSION_PATTERN (ot),
7873 PACK_EXPANSION_PATTERN (nt))
7874 && template_args_equal (PACK_EXPANSION_EXTRA_ARGS (ot),
7875 PACK_EXPANSION_EXTRA_ARGS (nt)));
7876 else if (ARGUMENT_PACK_P (ot))
7878 int i, len;
7879 tree opack, npack;
7881 if (!ARGUMENT_PACK_P (nt))
7882 return 0;
7884 opack = ARGUMENT_PACK_ARGS (ot);
7885 npack = ARGUMENT_PACK_ARGS (nt);
7886 len = TREE_VEC_LENGTH (opack);
7887 if (TREE_VEC_LENGTH (npack) != len)
7888 return 0;
7889 for (i = 0; i < len; ++i)
7890 if (!template_args_equal (TREE_VEC_ELT (opack, i),
7891 TREE_VEC_ELT (npack, i)))
7892 return 0;
7893 return 1;
7895 else if (ot && TREE_CODE (ot) == ARGUMENT_PACK_SELECT)
7896 gcc_unreachable ();
7897 else if (TYPE_P (nt))
7899 if (!TYPE_P (ot))
7900 return false;
7901 /* Don't treat an alias template specialization with dependent
7902 arguments as equivalent to its underlying type when used as a
7903 template argument; we need them to be distinct so that we
7904 substitute into the specialization arguments at instantiation
7905 time. And aliases can't be equivalent without being ==, so
7906 we don't need to look any deeper. */
7907 if (TYPE_ALIAS_P (nt) || TYPE_ALIAS_P (ot))
7908 return false;
7909 else
7910 return same_type_p (ot, nt);
7912 else if (TREE_CODE (ot) == TREE_VEC || TYPE_P (ot))
7913 return 0;
7914 else
7916 /* Try to treat a template non-type argument that has been converted
7917 to the parameter type as equivalent to one that hasn't yet. */
7918 for (enum tree_code code1 = TREE_CODE (ot);
7919 CONVERT_EXPR_CODE_P (code1)
7920 || code1 == NON_LVALUE_EXPR;
7921 code1 = TREE_CODE (ot))
7922 ot = TREE_OPERAND (ot, 0);
7923 for (enum tree_code code2 = TREE_CODE (nt);
7924 CONVERT_EXPR_CODE_P (code2)
7925 || code2 == NON_LVALUE_EXPR;
7926 code2 = TREE_CODE (nt))
7927 nt = TREE_OPERAND (nt, 0);
7929 return cp_tree_equal (ot, nt);
7933 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets of
7934 template arguments. Returns 0 otherwise, and updates OLDARG_PTR and
7935 NEWARG_PTR with the offending arguments if they are non-NULL. */
7938 comp_template_args (tree oldargs, tree newargs,
7939 tree *oldarg_ptr, tree *newarg_ptr)
7941 int i;
7943 if (oldargs == newargs)
7944 return 1;
7946 if (!oldargs || !newargs)
7947 return 0;
7949 if (TREE_VEC_LENGTH (oldargs) != TREE_VEC_LENGTH (newargs))
7950 return 0;
7952 for (i = 0; i < TREE_VEC_LENGTH (oldargs); ++i)
7954 tree nt = TREE_VEC_ELT (newargs, i);
7955 tree ot = TREE_VEC_ELT (oldargs, i);
7957 if (! template_args_equal (ot, nt))
7959 if (oldarg_ptr != NULL)
7960 *oldarg_ptr = ot;
7961 if (newarg_ptr != NULL)
7962 *newarg_ptr = nt;
7963 return 0;
7966 return 1;
7969 static void
7970 add_pending_template (tree d)
7972 tree ti = (TYPE_P (d)
7973 ? CLASSTYPE_TEMPLATE_INFO (d)
7974 : DECL_TEMPLATE_INFO (d));
7975 struct pending_template *pt;
7976 int level;
7978 if (TI_PENDING_TEMPLATE_FLAG (ti))
7979 return;
7981 /* We are called both from instantiate_decl, where we've already had a
7982 tinst_level pushed, and instantiate_template, where we haven't.
7983 Compensate. */
7984 level = !current_tinst_level || current_tinst_level->decl != d;
7986 if (level)
7987 push_tinst_level (d);
7989 pt = ggc_alloc<pending_template> ();
7990 pt->next = NULL;
7991 pt->tinst = current_tinst_level;
7992 if (last_pending_template)
7993 last_pending_template->next = pt;
7994 else
7995 pending_templates = pt;
7997 last_pending_template = pt;
7999 TI_PENDING_TEMPLATE_FLAG (ti) = 1;
8001 if (level)
8002 pop_tinst_level ();
8006 /* Return a TEMPLATE_ID_EXPR corresponding to the indicated FNS and
8007 ARGLIST. Valid choices for FNS are given in the cp-tree.def
8008 documentation for TEMPLATE_ID_EXPR. */
8010 tree
8011 lookup_template_function (tree fns, tree arglist)
8013 tree type;
8015 if (fns == error_mark_node || arglist == error_mark_node)
8016 return error_mark_node;
8018 gcc_assert (!arglist || TREE_CODE (arglist) == TREE_VEC);
8020 if (!is_overloaded_fn (fns) && !identifier_p (fns))
8022 error ("%q#D is not a function template", fns);
8023 return error_mark_node;
8026 if (BASELINK_P (fns))
8028 BASELINK_FUNCTIONS (fns) = build2 (TEMPLATE_ID_EXPR,
8029 unknown_type_node,
8030 BASELINK_FUNCTIONS (fns),
8031 arglist);
8032 return fns;
8035 type = TREE_TYPE (fns);
8036 if (TREE_CODE (fns) == OVERLOAD || !type)
8037 type = unknown_type_node;
8039 return build2 (TEMPLATE_ID_EXPR, type, fns, arglist);
8042 /* Within the scope of a template class S<T>, the name S gets bound
8043 (in build_self_reference) to a TYPE_DECL for the class, not a
8044 TEMPLATE_DECL. If DECL is a TYPE_DECL for current_class_type,
8045 or one of its enclosing classes, and that type is a template,
8046 return the associated TEMPLATE_DECL. Otherwise, the original
8047 DECL is returned.
8049 Also handle the case when DECL is a TREE_LIST of ambiguous
8050 injected-class-names from different bases. */
8052 tree
8053 maybe_get_template_decl_from_type_decl (tree decl)
8055 if (decl == NULL_TREE)
8056 return decl;
8058 /* DR 176: A lookup that finds an injected-class-name (10.2
8059 [class.member.lookup]) can result in an ambiguity in certain cases
8060 (for example, if it is found in more than one base class). If all of
8061 the injected-class-names that are found refer to specializations of
8062 the same class template, and if the name is followed by a
8063 template-argument-list, the reference refers to the class template
8064 itself and not a specialization thereof, and is not ambiguous. */
8065 if (TREE_CODE (decl) == TREE_LIST)
8067 tree t, tmpl = NULL_TREE;
8068 for (t = decl; t; t = TREE_CHAIN (t))
8070 tree elt = maybe_get_template_decl_from_type_decl (TREE_VALUE (t));
8071 if (!tmpl)
8072 tmpl = elt;
8073 else if (tmpl != elt)
8074 break;
8076 if (tmpl && t == NULL_TREE)
8077 return tmpl;
8078 else
8079 return decl;
8082 return (decl != NULL_TREE
8083 && DECL_SELF_REFERENCE_P (decl)
8084 && CLASSTYPE_TEMPLATE_INFO (TREE_TYPE (decl)))
8085 ? CLASSTYPE_TI_TEMPLATE (TREE_TYPE (decl)) : decl;
8088 /* Given an IDENTIFIER_NODE (or type TEMPLATE_DECL) and a chain of
8089 parameters, find the desired type.
8091 D1 is the PTYPENAME terminal, and ARGLIST is the list of arguments.
8093 IN_DECL, if non-NULL, is the template declaration we are trying to
8094 instantiate.
8096 If ENTERING_SCOPE is nonzero, we are about to enter the scope of
8097 the class we are looking up.
8099 Issue error and warning messages under control of COMPLAIN.
8101 If the template class is really a local class in a template
8102 function, then the FUNCTION_CONTEXT is the function in which it is
8103 being instantiated.
8105 ??? Note that this function is currently called *twice* for each
8106 template-id: the first time from the parser, while creating the
8107 incomplete type (finish_template_type), and the second type during the
8108 real instantiation (instantiate_template_class). This is surely something
8109 that we want to avoid. It also causes some problems with argument
8110 coercion (see convert_nontype_argument for more information on this). */
8112 static tree
8113 lookup_template_class_1 (tree d1, tree arglist, tree in_decl, tree context,
8114 int entering_scope, tsubst_flags_t complain)
8116 tree templ = NULL_TREE, parmlist;
8117 tree t;
8118 spec_entry **slot;
8119 spec_entry *entry;
8120 spec_entry elt;
8121 hashval_t hash;
8123 if (identifier_p (d1))
8125 tree value = innermost_non_namespace_value (d1);
8126 if (value && DECL_TEMPLATE_TEMPLATE_PARM_P (value))
8127 templ = value;
8128 else
8130 if (context)
8131 push_decl_namespace (context);
8132 templ = lookup_name (d1);
8133 templ = maybe_get_template_decl_from_type_decl (templ);
8134 if (context)
8135 pop_decl_namespace ();
8137 if (templ)
8138 context = DECL_CONTEXT (templ);
8140 else if (TREE_CODE (d1) == TYPE_DECL && MAYBE_CLASS_TYPE_P (TREE_TYPE (d1)))
8142 tree type = TREE_TYPE (d1);
8144 /* If we are declaring a constructor, say A<T>::A<T>, we will get
8145 an implicit typename for the second A. Deal with it. */
8146 if (TREE_CODE (type) == TYPENAME_TYPE && TREE_TYPE (type))
8147 type = TREE_TYPE (type);
8149 if (CLASSTYPE_TEMPLATE_INFO (type))
8151 templ = CLASSTYPE_TI_TEMPLATE (type);
8152 d1 = DECL_NAME (templ);
8155 else if (TREE_CODE (d1) == ENUMERAL_TYPE
8156 || (TYPE_P (d1) && MAYBE_CLASS_TYPE_P (d1)))
8158 templ = TYPE_TI_TEMPLATE (d1);
8159 d1 = DECL_NAME (templ);
8161 else if (DECL_TYPE_TEMPLATE_P (d1))
8163 templ = d1;
8164 d1 = DECL_NAME (templ);
8165 context = DECL_CONTEXT (templ);
8167 else if (DECL_TEMPLATE_TEMPLATE_PARM_P (d1))
8169 templ = d1;
8170 d1 = DECL_NAME (templ);
8173 /* Issue an error message if we didn't find a template. */
8174 if (! templ)
8176 if (complain & tf_error)
8177 error ("%qT is not a template", d1);
8178 return error_mark_node;
8181 if (TREE_CODE (templ) != TEMPLATE_DECL
8182 /* Make sure it's a user visible template, if it was named by
8183 the user. */
8184 || ((complain & tf_user) && !DECL_TEMPLATE_PARM_P (templ)
8185 && !PRIMARY_TEMPLATE_P (templ)))
8187 if (complain & tf_error)
8189 error ("non-template type %qT used as a template", d1);
8190 if (in_decl)
8191 error ("for template declaration %q+D", in_decl);
8193 return error_mark_node;
8196 complain &= ~tf_user;
8198 /* An alias that just changes the name of a template is equivalent to the
8199 other template, so if any of the arguments are pack expansions, strip
8200 the alias to avoid problems with a pack expansion passed to a non-pack
8201 alias template parameter (DR 1430). */
8202 if (pack_expansion_args_count (INNERMOST_TEMPLATE_ARGS (arglist)))
8203 templ = get_underlying_template (templ);
8205 if (DECL_TEMPLATE_TEMPLATE_PARM_P (templ))
8207 /* Create a new TEMPLATE_DECL and TEMPLATE_TEMPLATE_PARM node to store
8208 template arguments */
8210 tree parm;
8211 tree arglist2;
8212 tree outer;
8214 parmlist = DECL_INNERMOST_TEMPLATE_PARMS (templ);
8216 /* Consider an example where a template template parameter declared as
8218 template <class T, class U = std::allocator<T> > class TT
8220 The template parameter level of T and U are one level larger than
8221 of TT. To proper process the default argument of U, say when an
8222 instantiation `TT<int>' is seen, we need to build the full
8223 arguments containing {int} as the innermost level. Outer levels,
8224 available when not appearing as default template argument, can be
8225 obtained from the arguments of the enclosing template.
8227 Suppose that TT is later substituted with std::vector. The above
8228 instantiation is `TT<int, std::allocator<T> >' with TT at
8229 level 1, and T at level 2, while the template arguments at level 1
8230 becomes {std::vector} and the inner level 2 is {int}. */
8232 outer = DECL_CONTEXT (templ);
8233 if (outer)
8234 outer = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (outer)));
8235 else if (current_template_parms)
8237 /* This is an argument of the current template, so we haven't set
8238 DECL_CONTEXT yet. */
8239 tree relevant_template_parms;
8241 /* Parameter levels that are greater than the level of the given
8242 template template parm are irrelevant. */
8243 relevant_template_parms = current_template_parms;
8244 while (TMPL_PARMS_DEPTH (relevant_template_parms)
8245 != TEMPLATE_TYPE_LEVEL (TREE_TYPE (templ)))
8246 relevant_template_parms = TREE_CHAIN (relevant_template_parms);
8248 outer = template_parms_to_args (relevant_template_parms);
8251 if (outer)
8252 arglist = add_to_template_args (outer, arglist);
8254 arglist2 = coerce_template_parms (parmlist, arglist, templ,
8255 complain,
8256 /*require_all_args=*/true,
8257 /*use_default_args=*/true);
8258 if (arglist2 == error_mark_node
8259 || (!uses_template_parms (arglist2)
8260 && check_instantiated_args (templ, arglist2, complain)))
8261 return error_mark_node;
8263 parm = bind_template_template_parm (TREE_TYPE (templ), arglist2);
8264 return parm;
8266 else
8268 tree template_type = TREE_TYPE (templ);
8269 tree gen_tmpl;
8270 tree type_decl;
8271 tree found = NULL_TREE;
8272 int arg_depth;
8273 int parm_depth;
8274 int is_dependent_type;
8275 int use_partial_inst_tmpl = false;
8277 if (template_type == error_mark_node)
8278 /* An error occurred while building the template TEMPL, and a
8279 diagnostic has most certainly been emitted for that
8280 already. Let's propagate that error. */
8281 return error_mark_node;
8283 gen_tmpl = most_general_template (templ);
8284 parmlist = DECL_TEMPLATE_PARMS (gen_tmpl);
8285 parm_depth = TMPL_PARMS_DEPTH (parmlist);
8286 arg_depth = TMPL_ARGS_DEPTH (arglist);
8288 if (arg_depth == 1 && parm_depth > 1)
8290 /* We've been given an incomplete set of template arguments.
8291 For example, given:
8293 template <class T> struct S1 {
8294 template <class U> struct S2 {};
8295 template <class U> struct S2<U*> {};
8298 we will be called with an ARGLIST of `U*', but the
8299 TEMPLATE will be `template <class T> template
8300 <class U> struct S1<T>::S2'. We must fill in the missing
8301 arguments. */
8302 arglist
8303 = add_outermost_template_args (TYPE_TI_ARGS (TREE_TYPE (templ)),
8304 arglist);
8305 arg_depth = TMPL_ARGS_DEPTH (arglist);
8308 /* Now we should have enough arguments. */
8309 gcc_assert (parm_depth == arg_depth);
8311 /* From here on, we're only interested in the most general
8312 template. */
8314 /* Calculate the BOUND_ARGS. These will be the args that are
8315 actually tsubst'd into the definition to create the
8316 instantiation. */
8317 arglist = coerce_innermost_template_parms (parmlist, arglist, gen_tmpl,
8318 complain,
8319 /*require_all_args=*/true,
8320 /*use_default_args=*/true);
8322 if (arglist == error_mark_node)
8323 /* We were unable to bind the arguments. */
8324 return error_mark_node;
8326 /* In the scope of a template class, explicit references to the
8327 template class refer to the type of the template, not any
8328 instantiation of it. For example, in:
8330 template <class T> class C { void f(C<T>); }
8332 the `C<T>' is just the same as `C'. Outside of the
8333 class, however, such a reference is an instantiation. */
8334 if ((entering_scope
8335 || !PRIMARY_TEMPLATE_P (gen_tmpl)
8336 || currently_open_class (template_type))
8337 /* comp_template_args is expensive, check it last. */
8338 && comp_template_args (TYPE_TI_ARGS (template_type),
8339 arglist))
8340 return template_type;
8342 /* If we already have this specialization, return it. */
8343 elt.tmpl = gen_tmpl;
8344 elt.args = arglist;
8345 elt.spec = NULL_TREE;
8346 hash = spec_hasher::hash (&elt);
8347 entry = type_specializations->find_with_hash (&elt, hash);
8349 if (entry)
8350 return entry->spec;
8352 /* If the the template's constraints are not satisfied,
8353 then we cannot form a valid type.
8355 Note that the check is deferred until after the hash
8356 lookup. This prevents redundant checks on previously
8357 instantiated specializations. */
8358 if (flag_concepts && !constraints_satisfied_p (gen_tmpl, arglist))
8360 if (complain & tf_error)
8362 error ("template constraint failure");
8363 diagnose_constraints (input_location, gen_tmpl, arglist);
8365 return error_mark_node;
8368 is_dependent_type = uses_template_parms (arglist);
8370 /* If the deduced arguments are invalid, then the binding
8371 failed. */
8372 if (!is_dependent_type
8373 && check_instantiated_args (gen_tmpl,
8374 INNERMOST_TEMPLATE_ARGS (arglist),
8375 complain))
8376 return error_mark_node;
8378 if (!is_dependent_type
8379 && !PRIMARY_TEMPLATE_P (gen_tmpl)
8380 && !LAMBDA_TYPE_P (TREE_TYPE (gen_tmpl))
8381 && TREE_CODE (CP_DECL_CONTEXT (gen_tmpl)) == NAMESPACE_DECL)
8383 found = xref_tag_from_type (TREE_TYPE (gen_tmpl),
8384 DECL_NAME (gen_tmpl),
8385 /*tag_scope=*/ts_global);
8386 return found;
8389 context = tsubst (DECL_CONTEXT (gen_tmpl), arglist,
8390 complain, in_decl);
8391 if (context == error_mark_node)
8392 return error_mark_node;
8394 if (!context)
8395 context = global_namespace;
8397 /* Create the type. */
8398 if (DECL_ALIAS_TEMPLATE_P (gen_tmpl))
8400 /* The user referred to a specialization of an alias
8401 template represented by GEN_TMPL.
8403 [temp.alias]/2 says:
8405 When a template-id refers to the specialization of an
8406 alias template, it is equivalent to the associated
8407 type obtained by substitution of its
8408 template-arguments for the template-parameters in the
8409 type-id of the alias template. */
8411 t = tsubst (TREE_TYPE (gen_tmpl), arglist, complain, in_decl);
8412 /* Note that the call above (by indirectly calling
8413 register_specialization in tsubst_decl) registers the
8414 TYPE_DECL representing the specialization of the alias
8415 template. So next time someone substitutes ARGLIST for
8416 the template parms into the alias template (GEN_TMPL),
8417 she'll get that TYPE_DECL back. */
8419 if (t == error_mark_node)
8420 return t;
8422 else if (TREE_CODE (template_type) == ENUMERAL_TYPE)
8424 if (!is_dependent_type)
8426 set_current_access_from_decl (TYPE_NAME (template_type));
8427 t = start_enum (TYPE_IDENTIFIER (template_type), NULL_TREE,
8428 tsubst (ENUM_UNDERLYING_TYPE (template_type),
8429 arglist, complain, in_decl),
8430 tsubst_attributes (TYPE_ATTRIBUTES (template_type),
8431 arglist, complain, in_decl),
8432 SCOPED_ENUM_P (template_type), NULL);
8434 if (t == error_mark_node)
8435 return t;
8437 else
8439 /* We don't want to call start_enum for this type, since
8440 the values for the enumeration constants may involve
8441 template parameters. And, no one should be interested
8442 in the enumeration constants for such a type. */
8443 t = cxx_make_type (ENUMERAL_TYPE);
8444 SET_SCOPED_ENUM_P (t, SCOPED_ENUM_P (template_type));
8446 SET_OPAQUE_ENUM_P (t, OPAQUE_ENUM_P (template_type));
8447 ENUM_FIXED_UNDERLYING_TYPE_P (t)
8448 = ENUM_FIXED_UNDERLYING_TYPE_P (template_type);
8450 else if (CLASS_TYPE_P (template_type))
8452 t = make_class_type (TREE_CODE (template_type));
8453 CLASSTYPE_DECLARED_CLASS (t)
8454 = CLASSTYPE_DECLARED_CLASS (template_type);
8455 SET_CLASSTYPE_IMPLICIT_INSTANTIATION (t);
8456 TYPE_FOR_JAVA (t) = TYPE_FOR_JAVA (template_type);
8458 /* A local class. Make sure the decl gets registered properly. */
8459 if (context == current_function_decl)
8460 pushtag (DECL_NAME (gen_tmpl), t, /*tag_scope=*/ts_current);
8462 if (comp_template_args (CLASSTYPE_TI_ARGS (template_type), arglist))
8463 /* This instantiation is another name for the primary
8464 template type. Set the TYPE_CANONICAL field
8465 appropriately. */
8466 TYPE_CANONICAL (t) = template_type;
8467 else if (any_template_arguments_need_structural_equality_p (arglist))
8468 /* Some of the template arguments require structural
8469 equality testing, so this template class requires
8470 structural equality testing. */
8471 SET_TYPE_STRUCTURAL_EQUALITY (t);
8473 else
8474 gcc_unreachable ();
8476 /* If we called start_enum or pushtag above, this information
8477 will already be set up. */
8478 if (!TYPE_NAME (t))
8480 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
8482 type_decl = create_implicit_typedef (DECL_NAME (gen_tmpl), t);
8483 DECL_CONTEXT (type_decl) = TYPE_CONTEXT (t);
8484 DECL_SOURCE_LOCATION (type_decl)
8485 = DECL_SOURCE_LOCATION (TYPE_STUB_DECL (template_type));
8487 else
8488 type_decl = TYPE_NAME (t);
8490 if (CLASS_TYPE_P (template_type))
8492 TREE_PRIVATE (type_decl)
8493 = TREE_PRIVATE (TYPE_MAIN_DECL (template_type));
8494 TREE_PROTECTED (type_decl)
8495 = TREE_PROTECTED (TYPE_MAIN_DECL (template_type));
8496 if (CLASSTYPE_VISIBILITY_SPECIFIED (template_type))
8498 DECL_VISIBILITY_SPECIFIED (type_decl) = 1;
8499 DECL_VISIBILITY (type_decl) = CLASSTYPE_VISIBILITY (template_type);
8503 if (OVERLOAD_TYPE_P (t)
8504 && !DECL_ALIAS_TEMPLATE_P (gen_tmpl))
8506 static const char *tags[] = {"abi_tag", "may_alias"};
8508 for (unsigned ix = 0; ix != 2; ix++)
8510 tree attributes
8511 = lookup_attribute (tags[ix], TYPE_ATTRIBUTES (template_type));
8513 if (attributes)
8514 TYPE_ATTRIBUTES (t)
8515 = tree_cons (TREE_PURPOSE (attributes),
8516 TREE_VALUE (attributes),
8517 TYPE_ATTRIBUTES (t));
8521 /* Let's consider the explicit specialization of a member
8522 of a class template specialization that is implicitly instantiated,
8523 e.g.:
8524 template<class T>
8525 struct S
8527 template<class U> struct M {}; //#0
8530 template<>
8531 template<>
8532 struct S<int>::M<char> //#1
8534 int i;
8536 [temp.expl.spec]/4 says this is valid.
8538 In this case, when we write:
8539 S<int>::M<char> m;
8541 M is instantiated from the CLASSTYPE_TI_TEMPLATE of #1, not from
8542 the one of #0.
8544 When we encounter #1, we want to store the partial instantiation
8545 of M (template<class T> S<int>::M<T>) in its CLASSTYPE_TI_TEMPLATE.
8547 For all cases other than this "explicit specialization of member of a
8548 class template", we just want to store the most general template into
8549 the CLASSTYPE_TI_TEMPLATE of M.
8551 This case of "explicit specialization of member of a class template"
8552 only happens when:
8553 1/ the enclosing class is an instantiation of, and therefore not
8554 the same as, the context of the most general template, and
8555 2/ we aren't looking at the partial instantiation itself, i.e.
8556 the innermost arguments are not the same as the innermost parms of
8557 the most general template.
8559 So it's only when 1/ and 2/ happens that we want to use the partial
8560 instantiation of the member template in lieu of its most general
8561 template. */
8563 if (PRIMARY_TEMPLATE_P (gen_tmpl)
8564 && TMPL_ARGS_HAVE_MULTIPLE_LEVELS (arglist)
8565 /* the enclosing class must be an instantiation... */
8566 && CLASS_TYPE_P (context)
8567 && !same_type_p (context, DECL_CONTEXT (gen_tmpl)))
8569 tree partial_inst_args;
8570 TREE_VEC_LENGTH (arglist)--;
8571 ++processing_template_decl;
8572 partial_inst_args =
8573 tsubst (INNERMOST_TEMPLATE_ARGS
8574 (TYPE_TI_ARGS (TREE_TYPE (gen_tmpl))),
8575 arglist, complain, NULL_TREE);
8576 --processing_template_decl;
8577 TREE_VEC_LENGTH (arglist)++;
8578 if (partial_inst_args == error_mark_node)
8579 return error_mark_node;
8580 use_partial_inst_tmpl =
8581 /*...and we must not be looking at the partial instantiation
8582 itself. */
8583 !comp_template_args (INNERMOST_TEMPLATE_ARGS (arglist),
8584 partial_inst_args);
8587 if (!use_partial_inst_tmpl)
8588 /* This case is easy; there are no member templates involved. */
8589 found = gen_tmpl;
8590 else
8592 /* This is a full instantiation of a member template. Find
8593 the partial instantiation of which this is an instance. */
8595 /* Temporarily reduce by one the number of levels in the ARGLIST
8596 so as to avoid comparing the last set of arguments. */
8597 TREE_VEC_LENGTH (arglist)--;
8598 found = tsubst (gen_tmpl, arglist, complain, NULL_TREE);
8599 TREE_VEC_LENGTH (arglist)++;
8600 /* FOUND is either a proper class type, or an alias
8601 template specialization. In the later case, it's a
8602 TYPE_DECL, resulting from the substituting of arguments
8603 for parameters in the TYPE_DECL of the alias template
8604 done earlier. So be careful while getting the template
8605 of FOUND. */
8606 found = TREE_CODE (found) == TEMPLATE_DECL
8607 ? found
8608 : TREE_CODE (found) == TYPE_DECL
8609 ? TYPE_TI_TEMPLATE (TREE_TYPE (found))
8610 : CLASSTYPE_TI_TEMPLATE (found);
8613 // Build template info for the new specialization.
8614 SET_TYPE_TEMPLATE_INFO (t, build_template_info (found, arglist));
8616 elt.spec = t;
8617 slot = type_specializations->find_slot_with_hash (&elt, hash, INSERT);
8618 entry = ggc_alloc<spec_entry> ();
8619 *entry = elt;
8620 *slot = entry;
8622 /* Note this use of the partial instantiation so we can check it
8623 later in maybe_process_partial_specialization. */
8624 DECL_TEMPLATE_INSTANTIATIONS (found)
8625 = tree_cons (arglist, t,
8626 DECL_TEMPLATE_INSTANTIATIONS (found));
8628 if (TREE_CODE (template_type) == ENUMERAL_TYPE && !is_dependent_type
8629 && !DECL_ALIAS_TEMPLATE_P (gen_tmpl))
8630 /* Now that the type has been registered on the instantiations
8631 list, we set up the enumerators. Because the enumeration
8632 constants may involve the enumeration type itself, we make
8633 sure to register the type first, and then create the
8634 constants. That way, doing tsubst_expr for the enumeration
8635 constants won't result in recursive calls here; we'll find
8636 the instantiation and exit above. */
8637 tsubst_enum (template_type, t, arglist);
8639 if (CLASS_TYPE_P (template_type) && is_dependent_type)
8640 /* If the type makes use of template parameters, the
8641 code that generates debugging information will crash. */
8642 DECL_IGNORED_P (TYPE_MAIN_DECL (t)) = 1;
8644 /* Possibly limit visibility based on template args. */
8645 TREE_PUBLIC (type_decl) = 1;
8646 determine_visibility (type_decl);
8648 inherit_targ_abi_tags (t);
8650 return t;
8654 /* Wrapper for lookup_template_class_1. */
8656 tree
8657 lookup_template_class (tree d1, tree arglist, tree in_decl, tree context,
8658 int entering_scope, tsubst_flags_t complain)
8660 tree ret;
8661 timevar_push (TV_TEMPLATE_INST);
8662 ret = lookup_template_class_1 (d1, arglist, in_decl, context,
8663 entering_scope, complain);
8664 timevar_pop (TV_TEMPLATE_INST);
8665 return ret;
8668 /* Return a TEMPLATE_ID_EXPR for the given variable template and ARGLIST. */
8670 tree
8671 lookup_template_variable (tree templ, tree arglist)
8673 /* The type of the expression is NULL_TREE since the template-id could refer
8674 to an explicit or partial specialization. */
8675 tree type = NULL_TREE;
8676 if (flag_concepts && variable_concept_p (templ))
8677 /* Except that concepts are always bool. */
8678 type = boolean_type_node;
8679 return build2 (TEMPLATE_ID_EXPR, type, templ, arglist);
8682 /* Instantiate a variable declaration from a TEMPLATE_ID_EXPR for use. */
8684 tree
8685 finish_template_variable (tree var, tsubst_flags_t complain)
8687 tree templ = TREE_OPERAND (var, 0);
8688 tree arglist = TREE_OPERAND (var, 1);
8690 /* We never want to return a VAR_DECL for a variable concept, since they
8691 aren't instantiated. In a template, leave the TEMPLATE_ID_EXPR alone. */
8692 bool concept_p = flag_concepts && variable_concept_p (templ);
8693 if (concept_p && processing_template_decl)
8694 return var;
8696 tree tmpl_args = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (templ));
8697 arglist = add_outermost_template_args (tmpl_args, arglist);
8699 tree parms = DECL_TEMPLATE_PARMS (templ);
8700 arglist = coerce_innermost_template_parms (parms, arglist, templ, complain,
8701 /*req_all*/true,
8702 /*use_default*/true);
8704 if (flag_concepts && !constraints_satisfied_p (templ, arglist))
8706 if (complain & tf_error)
8708 error ("use of invalid variable template %qE", var);
8709 diagnose_constraints (location_of (var), templ, arglist);
8711 return error_mark_node;
8714 /* If a template-id refers to a specialization of a variable
8715 concept, then the expression is true if and only if the
8716 concept's constraints are satisfied by the given template
8717 arguments.
8719 NOTE: This is an extension of Concepts Lite TS that
8720 allows constraints to be used in expressions. */
8721 if (concept_p)
8723 tree decl = DECL_TEMPLATE_RESULT (templ);
8724 return evaluate_variable_concept (decl, arglist);
8727 return instantiate_template (templ, arglist, complain);
8730 /* Construct a TEMPLATE_ID_EXPR for the given variable template TEMPL having
8731 TARGS template args, and instantiate it if it's not dependent. */
8733 static tree
8734 lookup_and_finish_template_variable (tree templ, tree targs,
8735 tsubst_flags_t complain)
8737 templ = lookup_template_variable (templ, targs);
8738 if (!any_dependent_template_arguments_p (targs))
8740 templ = finish_template_variable (templ, complain);
8741 mark_used (templ);
8744 return convert_from_reference (templ);
8748 struct pair_fn_data
8750 tree_fn_t fn;
8751 void *data;
8752 /* True when we should also visit template parameters that occur in
8753 non-deduced contexts. */
8754 bool include_nondeduced_p;
8755 hash_set<tree> *visited;
8758 /* Called from for_each_template_parm via walk_tree. */
8760 static tree
8761 for_each_template_parm_r (tree *tp, int *walk_subtrees, void *d)
8763 tree t = *tp;
8764 struct pair_fn_data *pfd = (struct pair_fn_data *) d;
8765 tree_fn_t fn = pfd->fn;
8766 void *data = pfd->data;
8767 tree result = NULL_TREE;
8769 #define WALK_SUBTREE(NODE) \
8770 do \
8772 result = for_each_template_parm (NODE, fn, data, pfd->visited, \
8773 pfd->include_nondeduced_p); \
8774 if (result) goto out; \
8776 while (0)
8778 if (TYPE_P (t)
8779 && (pfd->include_nondeduced_p || TREE_CODE (t) != TYPENAME_TYPE))
8780 WALK_SUBTREE (TYPE_CONTEXT (t));
8782 switch (TREE_CODE (t))
8784 case RECORD_TYPE:
8785 if (TYPE_PTRMEMFUNC_P (t))
8786 break;
8787 /* Fall through. */
8789 case UNION_TYPE:
8790 case ENUMERAL_TYPE:
8791 if (!TYPE_TEMPLATE_INFO (t))
8792 *walk_subtrees = 0;
8793 else
8794 WALK_SUBTREE (TYPE_TI_ARGS (t));
8795 break;
8797 case INTEGER_TYPE:
8798 WALK_SUBTREE (TYPE_MIN_VALUE (t));
8799 WALK_SUBTREE (TYPE_MAX_VALUE (t));
8800 break;
8802 case METHOD_TYPE:
8803 /* Since we're not going to walk subtrees, we have to do this
8804 explicitly here. */
8805 WALK_SUBTREE (TYPE_METHOD_BASETYPE (t));
8806 /* Fall through. */
8808 case FUNCTION_TYPE:
8809 /* Check the return type. */
8810 WALK_SUBTREE (TREE_TYPE (t));
8812 /* Check the parameter types. Since default arguments are not
8813 instantiated until they are needed, the TYPE_ARG_TYPES may
8814 contain expressions that involve template parameters. But,
8815 no-one should be looking at them yet. And, once they're
8816 instantiated, they don't contain template parameters, so
8817 there's no point in looking at them then, either. */
8819 tree parm;
8821 for (parm = TYPE_ARG_TYPES (t); parm; parm = TREE_CHAIN (parm))
8822 WALK_SUBTREE (TREE_VALUE (parm));
8824 /* Since we've already handled the TYPE_ARG_TYPES, we don't
8825 want walk_tree walking into them itself. */
8826 *walk_subtrees = 0;
8828 break;
8830 case TYPEOF_TYPE:
8831 case UNDERLYING_TYPE:
8832 if (pfd->include_nondeduced_p
8833 && for_each_template_parm (TYPE_VALUES_RAW (t), fn, data,
8834 pfd->visited,
8835 pfd->include_nondeduced_p))
8836 return error_mark_node;
8837 break;
8839 case FUNCTION_DECL:
8840 case VAR_DECL:
8841 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
8842 WALK_SUBTREE (DECL_TI_ARGS (t));
8843 /* Fall through. */
8845 case PARM_DECL:
8846 case CONST_DECL:
8847 if (TREE_CODE (t) == CONST_DECL && DECL_TEMPLATE_PARM_P (t))
8848 WALK_SUBTREE (DECL_INITIAL (t));
8849 if (DECL_CONTEXT (t)
8850 && pfd->include_nondeduced_p)
8851 WALK_SUBTREE (DECL_CONTEXT (t));
8852 break;
8854 case BOUND_TEMPLATE_TEMPLATE_PARM:
8855 /* Record template parameters such as `T' inside `TT<T>'. */
8856 WALK_SUBTREE (TYPE_TI_ARGS (t));
8857 /* Fall through. */
8859 case TEMPLATE_TEMPLATE_PARM:
8860 case TEMPLATE_TYPE_PARM:
8861 case TEMPLATE_PARM_INDEX:
8862 if (fn && (*fn)(t, data))
8863 return t;
8864 else if (!fn)
8865 return t;
8866 break;
8868 case TEMPLATE_DECL:
8869 /* A template template parameter is encountered. */
8870 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
8871 WALK_SUBTREE (TREE_TYPE (t));
8873 /* Already substituted template template parameter */
8874 *walk_subtrees = 0;
8875 break;
8877 case TYPENAME_TYPE:
8878 /* A template-id in a TYPENAME_TYPE might be a deduced context after
8879 partial instantiation. */
8880 WALK_SUBTREE (TYPENAME_TYPE_FULLNAME (t));
8881 break;
8883 case CONSTRUCTOR:
8884 if (TREE_TYPE (t) && TYPE_PTRMEMFUNC_P (TREE_TYPE (t))
8885 && pfd->include_nondeduced_p)
8886 WALK_SUBTREE (TYPE_PTRMEMFUNC_FN_TYPE (TREE_TYPE (t)));
8887 break;
8889 case INDIRECT_REF:
8890 case COMPONENT_REF:
8891 /* If there's no type, then this thing must be some expression
8892 involving template parameters. */
8893 if (!fn && !TREE_TYPE (t))
8894 return error_mark_node;
8895 break;
8897 case MODOP_EXPR:
8898 case CAST_EXPR:
8899 case IMPLICIT_CONV_EXPR:
8900 case REINTERPRET_CAST_EXPR:
8901 case CONST_CAST_EXPR:
8902 case STATIC_CAST_EXPR:
8903 case DYNAMIC_CAST_EXPR:
8904 case ARROW_EXPR:
8905 case DOTSTAR_EXPR:
8906 case TYPEID_EXPR:
8907 case PSEUDO_DTOR_EXPR:
8908 if (!fn)
8909 return error_mark_node;
8910 break;
8912 default:
8913 break;
8916 #undef WALK_SUBTREE
8918 /* We didn't find any template parameters we liked. */
8919 out:
8920 return result;
8923 /* For each TEMPLATE_TYPE_PARM, TEMPLATE_TEMPLATE_PARM,
8924 BOUND_TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX in T,
8925 call FN with the parameter and the DATA.
8926 If FN returns nonzero, the iteration is terminated, and
8927 for_each_template_parm returns 1. Otherwise, the iteration
8928 continues. If FN never returns a nonzero value, the value
8929 returned by for_each_template_parm is 0. If FN is NULL, it is
8930 considered to be the function which always returns 1.
8932 If INCLUDE_NONDEDUCED_P, then this routine will also visit template
8933 parameters that occur in non-deduced contexts. When false, only
8934 visits those template parameters that can be deduced. */
8936 static tree
8937 for_each_template_parm (tree t, tree_fn_t fn, void* data,
8938 hash_set<tree> *visited,
8939 bool include_nondeduced_p)
8941 struct pair_fn_data pfd;
8942 tree result;
8944 /* Set up. */
8945 pfd.fn = fn;
8946 pfd.data = data;
8947 pfd.include_nondeduced_p = include_nondeduced_p;
8949 /* Walk the tree. (Conceptually, we would like to walk without
8950 duplicates, but for_each_template_parm_r recursively calls
8951 for_each_template_parm, so we would need to reorganize a fair
8952 bit to use walk_tree_without_duplicates, so we keep our own
8953 visited list.) */
8954 if (visited)
8955 pfd.visited = visited;
8956 else
8957 pfd.visited = new hash_set<tree>;
8958 result = cp_walk_tree (&t,
8959 for_each_template_parm_r,
8960 &pfd,
8961 pfd.visited);
8963 /* Clean up. */
8964 if (!visited)
8966 delete pfd.visited;
8967 pfd.visited = 0;
8970 return result;
8973 /* Returns true if T depends on any template parameter. */
8976 uses_template_parms (tree t)
8978 if (t == NULL_TREE)
8979 return false;
8981 bool dependent_p;
8982 int saved_processing_template_decl;
8984 saved_processing_template_decl = processing_template_decl;
8985 if (!saved_processing_template_decl)
8986 processing_template_decl = 1;
8987 if (TYPE_P (t))
8988 dependent_p = dependent_type_p (t);
8989 else if (TREE_CODE (t) == TREE_VEC)
8990 dependent_p = any_dependent_template_arguments_p (t);
8991 else if (TREE_CODE (t) == TREE_LIST)
8992 dependent_p = (uses_template_parms (TREE_VALUE (t))
8993 || uses_template_parms (TREE_CHAIN (t)));
8994 else if (TREE_CODE (t) == TYPE_DECL)
8995 dependent_p = dependent_type_p (TREE_TYPE (t));
8996 else if (DECL_P (t)
8997 || EXPR_P (t)
8998 || TREE_CODE (t) == TEMPLATE_PARM_INDEX
8999 || TREE_CODE (t) == OVERLOAD
9000 || BASELINK_P (t)
9001 || identifier_p (t)
9002 || TREE_CODE (t) == TRAIT_EXPR
9003 || TREE_CODE (t) == CONSTRUCTOR
9004 || CONSTANT_CLASS_P (t))
9005 dependent_p = (type_dependent_expression_p (t)
9006 || value_dependent_expression_p (t));
9007 else
9009 gcc_assert (t == error_mark_node);
9010 dependent_p = false;
9013 processing_template_decl = saved_processing_template_decl;
9015 return dependent_p;
9018 /* Returns true iff current_function_decl is an incompletely instantiated
9019 template. Useful instead of processing_template_decl because the latter
9020 is set to 0 during instantiate_non_dependent_expr. */
9022 bool
9023 in_template_function (void)
9025 tree fn = current_function_decl;
9026 bool ret;
9027 ++processing_template_decl;
9028 ret = (fn && DECL_LANG_SPECIFIC (fn)
9029 && DECL_TEMPLATE_INFO (fn)
9030 && any_dependent_template_arguments_p (DECL_TI_ARGS (fn)));
9031 --processing_template_decl;
9032 return ret;
9035 /* Returns true if T depends on any template parameter with level LEVEL. */
9037 bool
9038 uses_template_parms_level (tree t, int level)
9040 return for_each_template_parm (t, template_parm_this_level_p, &level, NULL,
9041 /*include_nondeduced_p=*/true);
9044 /* Returns true if the signature of DECL depends on any template parameter from
9045 its enclosing class. */
9047 bool
9048 uses_outer_template_parms (tree decl)
9050 int depth = template_class_depth (CP_DECL_CONTEXT (decl));
9051 if (depth == 0)
9052 return false;
9053 if (for_each_template_parm (TREE_TYPE (decl), template_parm_outer_level,
9054 &depth, NULL, /*include_nondeduced_p=*/true))
9055 return true;
9056 if (PRIMARY_TEMPLATE_P (decl)
9057 && for_each_template_parm (INNERMOST_TEMPLATE_PARMS
9058 (DECL_TEMPLATE_PARMS (decl)),
9059 template_parm_outer_level,
9060 &depth, NULL, /*include_nondeduced_p=*/true))
9061 return true;
9062 tree ci = get_constraints (decl);
9063 if (ci)
9064 ci = CI_ASSOCIATED_CONSTRAINTS (ci);
9065 if (ci && for_each_template_parm (ci, template_parm_outer_level,
9066 &depth, NULL, /*nondeduced*/true))
9067 return true;
9068 return false;
9071 /* Returns TRUE iff INST is an instantiation we don't need to do in an
9072 ill-formed translation unit, i.e. a variable or function that isn't
9073 usable in a constant expression. */
9075 static inline bool
9076 neglectable_inst_p (tree d)
9078 return (DECL_P (d)
9079 && !(TREE_CODE (d) == FUNCTION_DECL ? DECL_DECLARED_CONSTEXPR_P (d)
9080 : decl_maybe_constant_var_p (d)));
9083 /* Returns TRUE iff we should refuse to instantiate DECL because it's
9084 neglectable and instantiated from within an erroneous instantiation. */
9086 static bool
9087 limit_bad_template_recursion (tree decl)
9089 struct tinst_level *lev = current_tinst_level;
9090 int errs = errorcount + sorrycount;
9091 if (lev == NULL || errs == 0 || !neglectable_inst_p (decl))
9092 return false;
9094 for (; lev; lev = lev->next)
9095 if (neglectable_inst_p (lev->decl))
9096 break;
9098 return (lev && errs > lev->errors);
9101 static int tinst_depth;
9102 extern int max_tinst_depth;
9103 int depth_reached;
9105 static GTY(()) struct tinst_level *last_error_tinst_level;
9107 /* We're starting to instantiate D; record the template instantiation context
9108 for diagnostics and to restore it later. */
9110 bool
9111 push_tinst_level (tree d)
9113 return push_tinst_level_loc (d, input_location);
9116 /* We're starting to instantiate D; record the template instantiation context
9117 at LOC for diagnostics and to restore it later. */
9119 bool
9120 push_tinst_level_loc (tree d, location_t loc)
9122 struct tinst_level *new_level;
9124 if (tinst_depth >= max_tinst_depth)
9126 /* Tell error.c not to try to instantiate any templates. */
9127 at_eof = 2;
9128 fatal_error (input_location,
9129 "template instantiation depth exceeds maximum of %d"
9130 " (use -ftemplate-depth= to increase the maximum)",
9131 max_tinst_depth);
9132 return false;
9135 /* If the current instantiation caused problems, don't let it instantiate
9136 anything else. Do allow deduction substitution and decls usable in
9137 constant expressions. */
9138 if (limit_bad_template_recursion (d))
9139 return false;
9141 new_level = ggc_alloc<tinst_level> ();
9142 new_level->decl = d;
9143 new_level->locus = loc;
9144 new_level->errors = errorcount+sorrycount;
9145 new_level->in_system_header_p = in_system_header_at (input_location);
9146 new_level->next = current_tinst_level;
9147 current_tinst_level = new_level;
9149 ++tinst_depth;
9150 if (GATHER_STATISTICS && (tinst_depth > depth_reached))
9151 depth_reached = tinst_depth;
9153 return true;
9156 /* We're done instantiating this template; return to the instantiation
9157 context. */
9159 void
9160 pop_tinst_level (void)
9162 /* Restore the filename and line number stashed away when we started
9163 this instantiation. */
9164 input_location = current_tinst_level->locus;
9165 current_tinst_level = current_tinst_level->next;
9166 --tinst_depth;
9169 /* We're instantiating a deferred template; restore the template
9170 instantiation context in which the instantiation was requested, which
9171 is one step out from LEVEL. Return the corresponding DECL or TYPE. */
9173 static tree
9174 reopen_tinst_level (struct tinst_level *level)
9176 struct tinst_level *t;
9178 tinst_depth = 0;
9179 for (t = level; t; t = t->next)
9180 ++tinst_depth;
9182 current_tinst_level = level;
9183 pop_tinst_level ();
9184 if (current_tinst_level)
9185 current_tinst_level->errors = errorcount+sorrycount;
9186 return level->decl;
9189 /* Returns the TINST_LEVEL which gives the original instantiation
9190 context. */
9192 struct tinst_level *
9193 outermost_tinst_level (void)
9195 struct tinst_level *level = current_tinst_level;
9196 if (level)
9197 while (level->next)
9198 level = level->next;
9199 return level;
9202 /* DECL is a friend FUNCTION_DECL or TEMPLATE_DECL. ARGS is the
9203 vector of template arguments, as for tsubst.
9205 Returns an appropriate tsubst'd friend declaration. */
9207 static tree
9208 tsubst_friend_function (tree decl, tree args)
9210 tree new_friend;
9212 if (TREE_CODE (decl) == FUNCTION_DECL
9213 && DECL_TEMPLATE_INSTANTIATION (decl)
9214 && TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
9215 /* This was a friend declared with an explicit template
9216 argument list, e.g.:
9218 friend void f<>(T);
9220 to indicate that f was a template instantiation, not a new
9221 function declaration. Now, we have to figure out what
9222 instantiation of what template. */
9224 tree template_id, arglist, fns;
9225 tree new_args;
9226 tree tmpl;
9227 tree ns = decl_namespace_context (TYPE_MAIN_DECL (current_class_type));
9229 /* Friend functions are looked up in the containing namespace scope.
9230 We must enter that scope, to avoid finding member functions of the
9231 current class with same name. */
9232 push_nested_namespace (ns);
9233 fns = tsubst_expr (DECL_TI_TEMPLATE (decl), args,
9234 tf_warning_or_error, NULL_TREE,
9235 /*integral_constant_expression_p=*/false);
9236 pop_nested_namespace (ns);
9237 arglist = tsubst (DECL_TI_ARGS (decl), args,
9238 tf_warning_or_error, NULL_TREE);
9239 template_id = lookup_template_function (fns, arglist);
9241 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
9242 tmpl = determine_specialization (template_id, new_friend,
9243 &new_args,
9244 /*need_member_template=*/0,
9245 TREE_VEC_LENGTH (args),
9246 tsk_none);
9247 return instantiate_template (tmpl, new_args, tf_error);
9250 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
9252 /* The NEW_FRIEND will look like an instantiation, to the
9253 compiler, but is not an instantiation from the point of view of
9254 the language. For example, we might have had:
9256 template <class T> struct S {
9257 template <class U> friend void f(T, U);
9260 Then, in S<int>, template <class U> void f(int, U) is not an
9261 instantiation of anything. */
9262 if (new_friend == error_mark_node)
9263 return error_mark_node;
9265 DECL_USE_TEMPLATE (new_friend) = 0;
9266 if (TREE_CODE (decl) == TEMPLATE_DECL)
9268 DECL_USE_TEMPLATE (DECL_TEMPLATE_RESULT (new_friend)) = 0;
9269 DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (new_friend))
9270 = DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (decl));
9273 /* The mangled name for the NEW_FRIEND is incorrect. The function
9274 is not a template instantiation and should not be mangled like
9275 one. Therefore, we forget the mangling here; we'll recompute it
9276 later if we need it. */
9277 if (TREE_CODE (new_friend) != TEMPLATE_DECL)
9279 SET_DECL_RTL (new_friend, NULL);
9280 SET_DECL_ASSEMBLER_NAME (new_friend, NULL_TREE);
9283 if (DECL_NAMESPACE_SCOPE_P (new_friend))
9285 tree old_decl;
9286 tree new_friend_template_info;
9287 tree new_friend_result_template_info;
9288 tree ns;
9289 int new_friend_is_defn;
9291 /* We must save some information from NEW_FRIEND before calling
9292 duplicate decls since that function will free NEW_FRIEND if
9293 possible. */
9294 new_friend_template_info = DECL_TEMPLATE_INFO (new_friend);
9295 new_friend_is_defn =
9296 (DECL_INITIAL (DECL_TEMPLATE_RESULT
9297 (template_for_substitution (new_friend)))
9298 != NULL_TREE);
9299 if (TREE_CODE (new_friend) == TEMPLATE_DECL)
9301 /* This declaration is a `primary' template. */
9302 DECL_PRIMARY_TEMPLATE (new_friend) = new_friend;
9304 new_friend_result_template_info
9305 = DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (new_friend));
9307 else
9308 new_friend_result_template_info = NULL_TREE;
9310 /* Make the init_value nonzero so pushdecl knows this is a defn. */
9311 if (new_friend_is_defn)
9312 DECL_INITIAL (new_friend) = error_mark_node;
9314 /* Inside pushdecl_namespace_level, we will push into the
9315 current namespace. However, the friend function should go
9316 into the namespace of the template. */
9317 ns = decl_namespace_context (new_friend);
9318 push_nested_namespace (ns);
9319 old_decl = pushdecl_namespace_level (new_friend, /*is_friend=*/true);
9320 pop_nested_namespace (ns);
9322 if (old_decl == error_mark_node)
9323 return error_mark_node;
9325 if (old_decl != new_friend)
9327 /* This new friend declaration matched an existing
9328 declaration. For example, given:
9330 template <class T> void f(T);
9331 template <class U> class C {
9332 template <class T> friend void f(T) {}
9335 the friend declaration actually provides the definition
9336 of `f', once C has been instantiated for some type. So,
9337 old_decl will be the out-of-class template declaration,
9338 while new_friend is the in-class definition.
9340 But, if `f' was called before this point, the
9341 instantiation of `f' will have DECL_TI_ARGS corresponding
9342 to `T' but not to `U', references to which might appear
9343 in the definition of `f'. Previously, the most general
9344 template for an instantiation of `f' was the out-of-class
9345 version; now it is the in-class version. Therefore, we
9346 run through all specialization of `f', adding to their
9347 DECL_TI_ARGS appropriately. In particular, they need a
9348 new set of outer arguments, corresponding to the
9349 arguments for this class instantiation.
9351 The same situation can arise with something like this:
9353 friend void f(int);
9354 template <class T> class C {
9355 friend void f(T) {}
9358 when `C<int>' is instantiated. Now, `f(int)' is defined
9359 in the class. */
9361 if (!new_friend_is_defn)
9362 /* On the other hand, if the in-class declaration does
9363 *not* provide a definition, then we don't want to alter
9364 existing definitions. We can just leave everything
9365 alone. */
9367 else
9369 tree new_template = TI_TEMPLATE (new_friend_template_info);
9370 tree new_args = TI_ARGS (new_friend_template_info);
9372 /* Overwrite whatever template info was there before, if
9373 any, with the new template information pertaining to
9374 the declaration. */
9375 DECL_TEMPLATE_INFO (old_decl) = new_friend_template_info;
9377 if (TREE_CODE (old_decl) != TEMPLATE_DECL)
9379 /* We should have called reregister_specialization in
9380 duplicate_decls. */
9381 gcc_assert (retrieve_specialization (new_template,
9382 new_args, 0)
9383 == old_decl);
9385 /* Instantiate it if the global has already been used. */
9386 if (DECL_ODR_USED (old_decl))
9387 instantiate_decl (old_decl, /*defer_ok=*/true,
9388 /*expl_inst_class_mem_p=*/false);
9390 else
9392 tree t;
9394 /* Indicate that the old function template is a partial
9395 instantiation. */
9396 DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (old_decl))
9397 = new_friend_result_template_info;
9399 gcc_assert (new_template
9400 == most_general_template (new_template));
9401 gcc_assert (new_template != old_decl);
9403 /* Reassign any specializations already in the hash table
9404 to the new more general template, and add the
9405 additional template args. */
9406 for (t = DECL_TEMPLATE_INSTANTIATIONS (old_decl);
9407 t != NULL_TREE;
9408 t = TREE_CHAIN (t))
9410 tree spec = TREE_VALUE (t);
9411 spec_entry elt;
9413 elt.tmpl = old_decl;
9414 elt.args = DECL_TI_ARGS (spec);
9415 elt.spec = NULL_TREE;
9417 decl_specializations->remove_elt (&elt);
9419 DECL_TI_ARGS (spec)
9420 = add_outermost_template_args (new_args,
9421 DECL_TI_ARGS (spec));
9423 register_specialization
9424 (spec, new_template, DECL_TI_ARGS (spec), true, 0);
9427 DECL_TEMPLATE_INSTANTIATIONS (old_decl) = NULL_TREE;
9431 /* The information from NEW_FRIEND has been merged into OLD_DECL
9432 by duplicate_decls. */
9433 new_friend = old_decl;
9436 else
9438 tree context = DECL_CONTEXT (new_friend);
9439 bool dependent_p;
9441 /* In the code
9442 template <class T> class C {
9443 template <class U> friend void C1<U>::f (); // case 1
9444 friend void C2<T>::f (); // case 2
9446 we only need to make sure CONTEXT is a complete type for
9447 case 2. To distinguish between the two cases, we note that
9448 CONTEXT of case 1 remains dependent type after tsubst while
9449 this isn't true for case 2. */
9450 ++processing_template_decl;
9451 dependent_p = dependent_type_p (context);
9452 --processing_template_decl;
9454 if (!dependent_p
9455 && !complete_type_or_else (context, NULL_TREE))
9456 return error_mark_node;
9458 if (COMPLETE_TYPE_P (context))
9460 tree fn = new_friend;
9461 /* do_friend adds the TEMPLATE_DECL for any member friend
9462 template even if it isn't a member template, i.e.
9463 template <class T> friend A<T>::f();
9464 Look through it in that case. */
9465 if (TREE_CODE (fn) == TEMPLATE_DECL
9466 && !PRIMARY_TEMPLATE_P (fn))
9467 fn = DECL_TEMPLATE_RESULT (fn);
9468 /* Check to see that the declaration is really present, and,
9469 possibly obtain an improved declaration. */
9470 fn = check_classfn (context, fn, NULL_TREE);
9472 if (fn)
9473 new_friend = fn;
9477 return new_friend;
9480 /* FRIEND_TMPL is a friend TEMPLATE_DECL. ARGS is the vector of
9481 template arguments, as for tsubst.
9483 Returns an appropriate tsubst'd friend type or error_mark_node on
9484 failure. */
9486 static tree
9487 tsubst_friend_class (tree friend_tmpl, tree args)
9489 tree friend_type;
9490 tree tmpl;
9491 tree context;
9493 if (DECL_TEMPLATE_TEMPLATE_PARM_P (friend_tmpl))
9495 tree t = tsubst (TREE_TYPE (friend_tmpl), args, tf_none, NULL_TREE);
9496 return TREE_TYPE (t);
9499 context = CP_DECL_CONTEXT (friend_tmpl);
9501 if (context != global_namespace)
9503 if (TREE_CODE (context) == NAMESPACE_DECL)
9504 push_nested_namespace (context);
9505 else
9506 push_nested_class (tsubst (context, args, tf_none, NULL_TREE));
9509 /* Look for a class template declaration. We look for hidden names
9510 because two friend declarations of the same template are the
9511 same. For example, in:
9513 struct A {
9514 template <typename> friend class F;
9516 template <typename> struct B {
9517 template <typename> friend class F;
9520 both F templates are the same. */
9521 tmpl = lookup_name_real (DECL_NAME (friend_tmpl), 0, 0,
9522 /*block_p=*/true, 0, LOOKUP_HIDDEN);
9524 /* But, if we don't find one, it might be because we're in a
9525 situation like this:
9527 template <class T>
9528 struct S {
9529 template <class U>
9530 friend struct S;
9533 Here, in the scope of (say) S<int>, `S' is bound to a TYPE_DECL
9534 for `S<int>', not the TEMPLATE_DECL. */
9535 if (!tmpl || !DECL_CLASS_TEMPLATE_P (tmpl))
9537 tmpl = lookup_name_prefer_type (DECL_NAME (friend_tmpl), 1);
9538 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
9541 if (tmpl && DECL_CLASS_TEMPLATE_P (tmpl))
9543 /* The friend template has already been declared. Just
9544 check to see that the declarations match, and install any new
9545 default parameters. We must tsubst the default parameters,
9546 of course. We only need the innermost template parameters
9547 because that is all that redeclare_class_template will look
9548 at. */
9549 if (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (friend_tmpl))
9550 > TMPL_ARGS_DEPTH (args))
9552 tree parms;
9553 location_t saved_input_location;
9554 parms = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_tmpl),
9555 args, tf_warning_or_error);
9557 saved_input_location = input_location;
9558 input_location = DECL_SOURCE_LOCATION (friend_tmpl);
9559 tree cons = get_constraints (tmpl);
9560 redeclare_class_template (TREE_TYPE (tmpl), parms, cons);
9561 input_location = saved_input_location;
9565 friend_type = TREE_TYPE (tmpl);
9567 else
9569 /* The friend template has not already been declared. In this
9570 case, the instantiation of the template class will cause the
9571 injection of this template into the global scope. */
9572 tmpl = tsubst (friend_tmpl, args, tf_warning_or_error, NULL_TREE);
9573 if (tmpl == error_mark_node)
9574 return error_mark_node;
9576 /* The new TMPL is not an instantiation of anything, so we
9577 forget its origins. We don't reset CLASSTYPE_TI_TEMPLATE for
9578 the new type because that is supposed to be the corresponding
9579 template decl, i.e., TMPL. */
9580 DECL_USE_TEMPLATE (tmpl) = 0;
9581 DECL_TEMPLATE_INFO (tmpl) = NULL_TREE;
9582 CLASSTYPE_USE_TEMPLATE (TREE_TYPE (tmpl)) = 0;
9583 CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl))
9584 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl)));
9586 /* Inject this template into the global scope. */
9587 friend_type = TREE_TYPE (pushdecl_top_level_maybe_friend (tmpl, true));
9590 if (context != global_namespace)
9592 if (TREE_CODE (context) == NAMESPACE_DECL)
9593 pop_nested_namespace (context);
9594 else
9595 pop_nested_class ();
9598 return friend_type;
9601 /* Returns zero if TYPE cannot be completed later due to circularity.
9602 Otherwise returns one. */
9604 static int
9605 can_complete_type_without_circularity (tree type)
9607 if (type == NULL_TREE || type == error_mark_node)
9608 return 0;
9609 else if (COMPLETE_TYPE_P (type))
9610 return 1;
9611 else if (TREE_CODE (type) == ARRAY_TYPE)
9612 return can_complete_type_without_circularity (TREE_TYPE (type));
9613 else if (CLASS_TYPE_P (type)
9614 && TYPE_BEING_DEFINED (TYPE_MAIN_VARIANT (type)))
9615 return 0;
9616 else
9617 return 1;
9620 static tree tsubst_omp_clauses (tree, enum c_omp_region_type, tree,
9621 tsubst_flags_t, tree);
9623 /* Instantiate a single dependent attribute T (a TREE_LIST), and return either
9624 T or a new TREE_LIST, possibly a chain in the case of a pack expansion. */
9626 static tree
9627 tsubst_attribute (tree t, tree *decl_p, tree args,
9628 tsubst_flags_t complain, tree in_decl)
9630 gcc_assert (ATTR_IS_DEPENDENT (t));
9632 tree val = TREE_VALUE (t);
9633 if (val == NULL_TREE)
9634 /* Nothing to do. */;
9635 else if ((flag_openmp || flag_openmp_simd || flag_cilkplus)
9636 && is_attribute_p ("omp declare simd",
9637 get_attribute_name (t)))
9639 tree clauses = TREE_VALUE (val);
9640 clauses = tsubst_omp_clauses (clauses, C_ORT_OMP_DECLARE_SIMD, args,
9641 complain, in_decl);
9642 c_omp_declare_simd_clauses_to_decls (*decl_p, clauses);
9643 clauses = finish_omp_clauses (clauses, C_ORT_OMP_DECLARE_SIMD);
9644 tree parms = DECL_ARGUMENTS (*decl_p);
9645 clauses
9646 = c_omp_declare_simd_clauses_to_numbers (parms, clauses);
9647 if (clauses)
9648 val = build_tree_list (NULL_TREE, clauses);
9649 else
9650 val = NULL_TREE;
9652 /* If the first attribute argument is an identifier, don't
9653 pass it through tsubst. Attributes like mode, format,
9654 cleanup and several target specific attributes expect it
9655 unmodified. */
9656 else if (attribute_takes_identifier_p (get_attribute_name (t)))
9658 tree chain
9659 = tsubst_expr (TREE_CHAIN (val), args, complain, in_decl,
9660 /*integral_constant_expression_p=*/false);
9661 if (chain != TREE_CHAIN (val))
9662 val = tree_cons (NULL_TREE, TREE_VALUE (val), chain);
9664 else if (PACK_EXPANSION_P (val))
9666 /* An attribute pack expansion. */
9667 tree purp = TREE_PURPOSE (t);
9668 tree pack = tsubst_pack_expansion (val, args, complain, in_decl);
9669 int len = TREE_VEC_LENGTH (pack);
9670 tree list = NULL_TREE;
9671 tree *q = &list;
9672 for (int i = 0; i < len; ++i)
9674 tree elt = TREE_VEC_ELT (pack, i);
9675 *q = build_tree_list (purp, elt);
9676 q = &TREE_CHAIN (*q);
9678 return list;
9680 else
9681 val = tsubst_expr (val, args, complain, in_decl,
9682 /*integral_constant_expression_p=*/false);
9684 if (val != TREE_VALUE (t))
9685 return build_tree_list (TREE_PURPOSE (t), val);
9686 return t;
9689 /* Instantiate any dependent attributes in ATTRIBUTES, returning either it
9690 unchanged or a new TREE_LIST chain. */
9692 static tree
9693 tsubst_attributes (tree attributes, tree args,
9694 tsubst_flags_t complain, tree in_decl)
9696 tree last_dep = NULL_TREE;
9698 for (tree t = attributes; t; t = TREE_CHAIN (t))
9699 if (ATTR_IS_DEPENDENT (t))
9701 last_dep = t;
9702 attributes = copy_list (attributes);
9703 break;
9706 if (last_dep)
9707 for (tree *p = &attributes; *p; )
9709 tree t = *p;
9710 if (ATTR_IS_DEPENDENT (t))
9712 tree subst = tsubst_attribute (t, NULL, args, complain, in_decl);
9713 if (subst != t)
9715 *p = subst;
9717 p = &TREE_CHAIN (*p);
9718 while (*p);
9719 *p = TREE_CHAIN (t);
9720 continue;
9723 p = &TREE_CHAIN (*p);
9726 return attributes;
9729 /* Apply any attributes which had to be deferred until instantiation
9730 time. DECL_P, ATTRIBUTES and ATTR_FLAGS are as cplus_decl_attributes;
9731 ARGS, COMPLAIN, IN_DECL are as tsubst. */
9733 static void
9734 apply_late_template_attributes (tree *decl_p, tree attributes, int attr_flags,
9735 tree args, tsubst_flags_t complain, tree in_decl)
9737 tree last_dep = NULL_TREE;
9738 tree t;
9739 tree *p;
9741 for (t = attributes; t; t = TREE_CHAIN (t))
9742 if (ATTR_IS_DEPENDENT (t))
9744 last_dep = t;
9745 attributes = copy_list (attributes);
9746 break;
9749 if (DECL_P (*decl_p))
9751 if (TREE_TYPE (*decl_p) == error_mark_node)
9752 return;
9753 p = &DECL_ATTRIBUTES (*decl_p);
9755 else
9756 p = &TYPE_ATTRIBUTES (*decl_p);
9758 if (last_dep)
9760 tree late_attrs = NULL_TREE;
9761 tree *q = &late_attrs;
9763 for (*p = attributes; *p; )
9765 t = *p;
9766 if (ATTR_IS_DEPENDENT (t))
9768 *p = TREE_CHAIN (t);
9769 TREE_CHAIN (t) = NULL_TREE;
9770 *q = tsubst_attribute (t, decl_p, args, complain, in_decl);
9772 q = &TREE_CHAIN (*q);
9773 while (*q);
9775 else
9776 p = &TREE_CHAIN (t);
9779 cplus_decl_attributes (decl_p, late_attrs, attr_flags);
9783 /* Perform (or defer) access check for typedefs that were referenced
9784 from within the template TMPL code.
9785 This is a subroutine of instantiate_decl and instantiate_class_template.
9786 TMPL is the template to consider and TARGS is the list of arguments of
9787 that template. */
9789 static void
9790 perform_typedefs_access_check (tree tmpl, tree targs)
9792 location_t saved_location;
9793 unsigned i;
9794 qualified_typedef_usage_t *iter;
9796 if (!tmpl
9797 || (!CLASS_TYPE_P (tmpl)
9798 && TREE_CODE (tmpl) != FUNCTION_DECL))
9799 return;
9801 saved_location = input_location;
9802 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (tmpl), i, iter)
9804 tree type_decl = iter->typedef_decl;
9805 tree type_scope = iter->context;
9807 if (!type_decl || !type_scope || !CLASS_TYPE_P (type_scope))
9808 continue;
9810 if (uses_template_parms (type_decl))
9811 type_decl = tsubst (type_decl, targs, tf_error, NULL_TREE);
9812 if (uses_template_parms (type_scope))
9813 type_scope = tsubst (type_scope, targs, tf_error, NULL_TREE);
9815 /* Make access check error messages point to the location
9816 of the use of the typedef. */
9817 input_location = iter->locus;
9818 perform_or_defer_access_check (TYPE_BINFO (type_scope),
9819 type_decl, type_decl,
9820 tf_warning_or_error);
9822 input_location = saved_location;
9825 static tree
9826 instantiate_class_template_1 (tree type)
9828 tree templ, args, pattern, t, member;
9829 tree typedecl;
9830 tree pbinfo;
9831 tree base_list;
9832 unsigned int saved_maximum_field_alignment;
9833 tree fn_context;
9835 if (type == error_mark_node)
9836 return error_mark_node;
9838 if (COMPLETE_OR_OPEN_TYPE_P (type)
9839 || uses_template_parms (type))
9840 return type;
9842 /* Figure out which template is being instantiated. */
9843 templ = most_general_template (CLASSTYPE_TI_TEMPLATE (type));
9844 gcc_assert (TREE_CODE (templ) == TEMPLATE_DECL);
9846 /* Determine what specialization of the original template to
9847 instantiate. */
9848 t = most_specialized_partial_spec (type, tf_warning_or_error);
9849 if (t == error_mark_node)
9851 TYPE_BEING_DEFINED (type) = 1;
9852 return error_mark_node;
9854 else if (t)
9856 /* This TYPE is actually an instantiation of a partial
9857 specialization. We replace the innermost set of ARGS with
9858 the arguments appropriate for substitution. For example,
9859 given:
9861 template <class T> struct S {};
9862 template <class T> struct S<T*> {};
9864 and supposing that we are instantiating S<int*>, ARGS will
9865 presently be {int*} -- but we need {int}. */
9866 pattern = TREE_TYPE (t);
9867 args = TREE_PURPOSE (t);
9869 else
9871 pattern = TREE_TYPE (templ);
9872 args = CLASSTYPE_TI_ARGS (type);
9875 /* If the template we're instantiating is incomplete, then clearly
9876 there's nothing we can do. */
9877 if (!COMPLETE_TYPE_P (pattern))
9878 return type;
9880 /* If we've recursively instantiated too many templates, stop. */
9881 if (! push_tinst_level (type))
9882 return type;
9884 /* Now we're really doing the instantiation. Mark the type as in
9885 the process of being defined. */
9886 TYPE_BEING_DEFINED (type) = 1;
9888 /* We may be in the middle of deferred access check. Disable
9889 it now. */
9890 push_deferring_access_checks (dk_no_deferred);
9892 int saved_unevaluated_operand = cp_unevaluated_operand;
9893 int saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
9895 fn_context = decl_function_context (TYPE_MAIN_DECL (type));
9896 /* Also avoid push_to_top_level for a lambda in an NSDMI. */
9897 if (!fn_context && LAMBDA_TYPE_P (type) && TYPE_CLASS_SCOPE_P (type))
9898 fn_context = error_mark_node;
9899 if (!fn_context)
9900 push_to_top_level ();
9901 else
9903 cp_unevaluated_operand = 0;
9904 c_inhibit_evaluation_warnings = 0;
9906 /* Use #pragma pack from the template context. */
9907 saved_maximum_field_alignment = maximum_field_alignment;
9908 maximum_field_alignment = TYPE_PRECISION (pattern);
9910 SET_CLASSTYPE_INTERFACE_UNKNOWN (type);
9912 /* Set the input location to the most specialized template definition.
9913 This is needed if tsubsting causes an error. */
9914 typedecl = TYPE_MAIN_DECL (pattern);
9915 input_location = DECL_SOURCE_LOCATION (TYPE_NAME (type)) =
9916 DECL_SOURCE_LOCATION (typedecl);
9918 TYPE_PACKED (type) = TYPE_PACKED (pattern);
9919 SET_TYPE_ALIGN (type, TYPE_ALIGN (pattern));
9920 TYPE_USER_ALIGN (type) = TYPE_USER_ALIGN (pattern);
9921 TYPE_FOR_JAVA (type) = TYPE_FOR_JAVA (pattern); /* For libjava's JArray<T> */
9922 if (ANON_AGGR_TYPE_P (pattern))
9923 SET_ANON_AGGR_TYPE_P (type);
9924 if (CLASSTYPE_VISIBILITY_SPECIFIED (pattern))
9926 CLASSTYPE_VISIBILITY_SPECIFIED (type) = 1;
9927 CLASSTYPE_VISIBILITY (type) = CLASSTYPE_VISIBILITY (pattern);
9928 /* Adjust visibility for template arguments. */
9929 determine_visibility (TYPE_MAIN_DECL (type));
9931 if (CLASS_TYPE_P (type))
9932 CLASSTYPE_FINAL (type) = CLASSTYPE_FINAL (pattern);
9934 pbinfo = TYPE_BINFO (pattern);
9936 /* We should never instantiate a nested class before its enclosing
9937 class; we need to look up the nested class by name before we can
9938 instantiate it, and that lookup should instantiate the enclosing
9939 class. */
9940 gcc_assert (!DECL_CLASS_SCOPE_P (TYPE_MAIN_DECL (pattern))
9941 || COMPLETE_OR_OPEN_TYPE_P (TYPE_CONTEXT (type)));
9943 base_list = NULL_TREE;
9944 if (BINFO_N_BASE_BINFOS (pbinfo))
9946 tree pbase_binfo;
9947 tree pushed_scope;
9948 int i;
9950 /* We must enter the scope containing the type, as that is where
9951 the accessibility of types named in dependent bases are
9952 looked up from. */
9953 pushed_scope = push_scope (CP_TYPE_CONTEXT (type));
9955 /* Substitute into each of the bases to determine the actual
9956 basetypes. */
9957 for (i = 0; BINFO_BASE_ITERATE (pbinfo, i, pbase_binfo); i++)
9959 tree base;
9960 tree access = BINFO_BASE_ACCESS (pbinfo, i);
9961 tree expanded_bases = NULL_TREE;
9962 int idx, len = 1;
9964 if (PACK_EXPANSION_P (BINFO_TYPE (pbase_binfo)))
9966 expanded_bases =
9967 tsubst_pack_expansion (BINFO_TYPE (pbase_binfo),
9968 args, tf_error, NULL_TREE);
9969 if (expanded_bases == error_mark_node)
9970 continue;
9972 len = TREE_VEC_LENGTH (expanded_bases);
9975 for (idx = 0; idx < len; idx++)
9977 if (expanded_bases)
9978 /* Extract the already-expanded base class. */
9979 base = TREE_VEC_ELT (expanded_bases, idx);
9980 else
9981 /* Substitute to figure out the base class. */
9982 base = tsubst (BINFO_TYPE (pbase_binfo), args, tf_error,
9983 NULL_TREE);
9985 if (base == error_mark_node)
9986 continue;
9988 base_list = tree_cons (access, base, base_list);
9989 if (BINFO_VIRTUAL_P (pbase_binfo))
9990 TREE_TYPE (base_list) = integer_type_node;
9994 /* The list is now in reverse order; correct that. */
9995 base_list = nreverse (base_list);
9997 if (pushed_scope)
9998 pop_scope (pushed_scope);
10000 /* Now call xref_basetypes to set up all the base-class
10001 information. */
10002 xref_basetypes (type, base_list);
10004 apply_late_template_attributes (&type, TYPE_ATTRIBUTES (pattern),
10005 (int) ATTR_FLAG_TYPE_IN_PLACE,
10006 args, tf_error, NULL_TREE);
10007 fixup_attribute_variants (type);
10009 /* Now that our base classes are set up, enter the scope of the
10010 class, so that name lookups into base classes, etc. will work
10011 correctly. This is precisely analogous to what we do in
10012 begin_class_definition when defining an ordinary non-template
10013 class, except we also need to push the enclosing classes. */
10014 push_nested_class (type);
10016 /* Now members are processed in the order of declaration. */
10017 for (member = CLASSTYPE_DECL_LIST (pattern);
10018 member; member = TREE_CHAIN (member))
10020 tree t = TREE_VALUE (member);
10022 if (TREE_PURPOSE (member))
10024 if (TYPE_P (t))
10026 /* Build new CLASSTYPE_NESTED_UTDS. */
10028 tree newtag;
10029 bool class_template_p;
10031 class_template_p = (TREE_CODE (t) != ENUMERAL_TYPE
10032 && TYPE_LANG_SPECIFIC (t)
10033 && CLASSTYPE_IS_TEMPLATE (t));
10034 /* If the member is a class template, then -- even after
10035 substitution -- there may be dependent types in the
10036 template argument list for the class. We increment
10037 PROCESSING_TEMPLATE_DECL so that dependent_type_p, as
10038 that function will assume that no types are dependent
10039 when outside of a template. */
10040 if (class_template_p)
10041 ++processing_template_decl;
10042 newtag = tsubst (t, args, tf_error, NULL_TREE);
10043 if (class_template_p)
10044 --processing_template_decl;
10045 if (newtag == error_mark_node)
10046 continue;
10048 if (TREE_CODE (newtag) != ENUMERAL_TYPE)
10050 tree name = TYPE_IDENTIFIER (t);
10052 if (class_template_p)
10053 /* Unfortunately, lookup_template_class sets
10054 CLASSTYPE_IMPLICIT_INSTANTIATION for a partial
10055 instantiation (i.e., for the type of a member
10056 template class nested within a template class.)
10057 This behavior is required for
10058 maybe_process_partial_specialization to work
10059 correctly, but is not accurate in this case;
10060 the TAG is not an instantiation of anything.
10061 (The corresponding TEMPLATE_DECL is an
10062 instantiation, but the TYPE is not.) */
10063 CLASSTYPE_USE_TEMPLATE (newtag) = 0;
10065 /* Now, we call pushtag to put this NEWTAG into the scope of
10066 TYPE. We first set up the IDENTIFIER_TYPE_VALUE to avoid
10067 pushtag calling push_template_decl. We don't have to do
10068 this for enums because it will already have been done in
10069 tsubst_enum. */
10070 if (name)
10071 SET_IDENTIFIER_TYPE_VALUE (name, newtag);
10072 pushtag (name, newtag, /*tag_scope=*/ts_current);
10075 else if (DECL_DECLARES_FUNCTION_P (t))
10077 /* Build new TYPE_METHODS. */
10078 tree r;
10080 if (TREE_CODE (t) == TEMPLATE_DECL)
10081 ++processing_template_decl;
10082 r = tsubst (t, args, tf_error, NULL_TREE);
10083 if (TREE_CODE (t) == TEMPLATE_DECL)
10084 --processing_template_decl;
10085 set_current_access_from_decl (r);
10086 finish_member_declaration (r);
10087 /* Instantiate members marked with attribute used. */
10088 if (r != error_mark_node && DECL_PRESERVE_P (r))
10089 mark_used (r);
10090 if (TREE_CODE (r) == FUNCTION_DECL
10091 && DECL_OMP_DECLARE_REDUCTION_P (r))
10092 cp_check_omp_declare_reduction (r);
10094 else if (DECL_CLASS_TEMPLATE_P (t)
10095 && LAMBDA_TYPE_P (TREE_TYPE (t)))
10096 /* A closure type for a lambda in a default argument for a
10097 member template. Ignore it; it will be instantiated with
10098 the default argument. */;
10099 else
10101 /* Build new TYPE_FIELDS. */
10102 if (TREE_CODE (t) == STATIC_ASSERT)
10104 tree condition;
10106 ++c_inhibit_evaluation_warnings;
10107 condition =
10108 tsubst_expr (STATIC_ASSERT_CONDITION (t), args,
10109 tf_warning_or_error, NULL_TREE,
10110 /*integral_constant_expression_p=*/true);
10111 --c_inhibit_evaluation_warnings;
10113 finish_static_assert (condition,
10114 STATIC_ASSERT_MESSAGE (t),
10115 STATIC_ASSERT_SOURCE_LOCATION (t),
10116 /*member_p=*/true);
10118 else if (TREE_CODE (t) != CONST_DECL)
10120 tree r;
10121 tree vec = NULL_TREE;
10122 int len = 1;
10124 /* The file and line for this declaration, to
10125 assist in error message reporting. Since we
10126 called push_tinst_level above, we don't need to
10127 restore these. */
10128 input_location = DECL_SOURCE_LOCATION (t);
10130 if (TREE_CODE (t) == TEMPLATE_DECL)
10131 ++processing_template_decl;
10132 r = tsubst (t, args, tf_warning_or_error, NULL_TREE);
10133 if (TREE_CODE (t) == TEMPLATE_DECL)
10134 --processing_template_decl;
10136 if (TREE_CODE (r) == TREE_VEC)
10138 /* A capture pack became multiple fields. */
10139 vec = r;
10140 len = TREE_VEC_LENGTH (vec);
10143 for (int i = 0; i < len; ++i)
10145 if (vec)
10146 r = TREE_VEC_ELT (vec, i);
10147 if (VAR_P (r))
10149 /* In [temp.inst]:
10151 [t]he initialization (and any associated
10152 side-effects) of a static data member does
10153 not occur unless the static data member is
10154 itself used in a way that requires the
10155 definition of the static data member to
10156 exist.
10158 Therefore, we do not substitute into the
10159 initialized for the static data member here. */
10160 finish_static_data_member_decl
10162 /*init=*/NULL_TREE,
10163 /*init_const_expr_p=*/false,
10164 /*asmspec_tree=*/NULL_TREE,
10165 /*flags=*/0);
10166 /* Instantiate members marked with attribute used. */
10167 if (r != error_mark_node && DECL_PRESERVE_P (r))
10168 mark_used (r);
10170 else if (TREE_CODE (r) == FIELD_DECL)
10172 /* Determine whether R has a valid type and can be
10173 completed later. If R is invalid, then its type
10174 is replaced by error_mark_node. */
10175 tree rtype = TREE_TYPE (r);
10176 if (can_complete_type_without_circularity (rtype))
10177 complete_type (rtype);
10179 if (!complete_or_array_type_p (rtype))
10181 /* If R's type couldn't be completed and
10182 it isn't a flexible array member (whose
10183 type is incomplete by definition) give
10184 an error. */
10185 cxx_incomplete_type_error (r, rtype);
10186 TREE_TYPE (r) = error_mark_node;
10190 /* If it is a TYPE_DECL for a class-scoped ENUMERAL_TYPE,
10191 such a thing will already have been added to the field
10192 list by tsubst_enum in finish_member_declaration in the
10193 CLASSTYPE_NESTED_UTDS case above. */
10194 if (!(TREE_CODE (r) == TYPE_DECL
10195 && TREE_CODE (TREE_TYPE (r)) == ENUMERAL_TYPE
10196 && DECL_ARTIFICIAL (r)))
10198 set_current_access_from_decl (r);
10199 finish_member_declaration (r);
10205 else
10207 if (TYPE_P (t) || DECL_CLASS_TEMPLATE_P (t)
10208 || DECL_TEMPLATE_TEMPLATE_PARM_P (t))
10210 /* Build new CLASSTYPE_FRIEND_CLASSES. */
10212 tree friend_type = t;
10213 bool adjust_processing_template_decl = false;
10215 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
10217 /* template <class T> friend class C; */
10218 friend_type = tsubst_friend_class (friend_type, args);
10219 adjust_processing_template_decl = true;
10221 else if (TREE_CODE (friend_type) == UNBOUND_CLASS_TEMPLATE)
10223 /* template <class T> friend class C::D; */
10224 friend_type = tsubst (friend_type, args,
10225 tf_warning_or_error, NULL_TREE);
10226 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
10227 friend_type = TREE_TYPE (friend_type);
10228 adjust_processing_template_decl = true;
10230 else if (TREE_CODE (friend_type) == TYPENAME_TYPE
10231 || TREE_CODE (friend_type) == TEMPLATE_TYPE_PARM)
10233 /* This could be either
10235 friend class T::C;
10237 when dependent_type_p is false or
10239 template <class U> friend class T::C;
10241 otherwise. */
10242 /* Bump processing_template_decl in case this is something like
10243 template <class T> friend struct A<T>::B. */
10244 ++processing_template_decl;
10245 friend_type = tsubst (friend_type, args,
10246 tf_warning_or_error, NULL_TREE);
10247 if (dependent_type_p (friend_type))
10248 adjust_processing_template_decl = true;
10249 --processing_template_decl;
10251 else if (!CLASSTYPE_USE_TEMPLATE (friend_type)
10252 && hidden_name_p (TYPE_NAME (friend_type)))
10254 /* friend class C;
10256 where C hasn't been declared yet. Let's lookup name
10257 from namespace scope directly, bypassing any name that
10258 come from dependent base class. */
10259 tree ns = decl_namespace_context (TYPE_MAIN_DECL (friend_type));
10261 /* The call to xref_tag_from_type does injection for friend
10262 classes. */
10263 push_nested_namespace (ns);
10264 friend_type =
10265 xref_tag_from_type (friend_type, NULL_TREE,
10266 /*tag_scope=*/ts_current);
10267 pop_nested_namespace (ns);
10269 else if (uses_template_parms (friend_type))
10270 /* friend class C<T>; */
10271 friend_type = tsubst (friend_type, args,
10272 tf_warning_or_error, NULL_TREE);
10273 /* Otherwise it's
10275 friend class C;
10277 where C is already declared or
10279 friend class C<int>;
10281 We don't have to do anything in these cases. */
10283 if (adjust_processing_template_decl)
10284 /* Trick make_friend_class into realizing that the friend
10285 we're adding is a template, not an ordinary class. It's
10286 important that we use make_friend_class since it will
10287 perform some error-checking and output cross-reference
10288 information. */
10289 ++processing_template_decl;
10291 if (friend_type != error_mark_node)
10292 make_friend_class (type, friend_type, /*complain=*/false);
10294 if (adjust_processing_template_decl)
10295 --processing_template_decl;
10297 else
10299 /* Build new DECL_FRIENDLIST. */
10300 tree r;
10302 /* The file and line for this declaration, to
10303 assist in error message reporting. Since we
10304 called push_tinst_level above, we don't need to
10305 restore these. */
10306 input_location = DECL_SOURCE_LOCATION (t);
10308 if (TREE_CODE (t) == TEMPLATE_DECL)
10310 ++processing_template_decl;
10311 push_deferring_access_checks (dk_no_check);
10314 r = tsubst_friend_function (t, args);
10315 add_friend (type, r, /*complain=*/false);
10316 if (TREE_CODE (t) == TEMPLATE_DECL)
10318 pop_deferring_access_checks ();
10319 --processing_template_decl;
10325 if (fn_context)
10327 /* Restore these before substituting into the lambda capture
10328 initializers. */
10329 cp_unevaluated_operand = saved_unevaluated_operand;
10330 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
10333 if (tree expr = CLASSTYPE_LAMBDA_EXPR (type))
10335 tree decl = lambda_function (type);
10336 if (decl)
10338 if (cxx_dialect >= cxx1z)
10339 CLASSTYPE_LITERAL_P (type) = true;
10341 if (!DECL_TEMPLATE_INFO (decl)
10342 || DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (decl)) != decl)
10344 /* Set function_depth to avoid garbage collection. */
10345 ++function_depth;
10346 instantiate_decl (decl, false, false);
10347 --function_depth;
10350 /* We need to instantiate the capture list from the template
10351 after we've instantiated the closure members, but before we
10352 consider adding the conversion op. Also keep any captures
10353 that may have been added during instantiation of the op(). */
10354 tree tmpl_expr = CLASSTYPE_LAMBDA_EXPR (pattern);
10355 tree tmpl_cap
10356 = tsubst_copy_and_build (LAMBDA_EXPR_CAPTURE_LIST (tmpl_expr),
10357 args, tf_warning_or_error, NULL_TREE,
10358 false, false);
10360 LAMBDA_EXPR_CAPTURE_LIST (expr)
10361 = chainon (tmpl_cap, nreverse (LAMBDA_EXPR_CAPTURE_LIST (expr)));
10363 maybe_add_lambda_conv_op (type);
10365 else
10366 gcc_assert (errorcount);
10369 /* Set the file and line number information to whatever is given for
10370 the class itself. This puts error messages involving generated
10371 implicit functions at a predictable point, and the same point
10372 that would be used for non-template classes. */
10373 input_location = DECL_SOURCE_LOCATION (typedecl);
10375 unreverse_member_declarations (type);
10376 finish_struct_1 (type);
10377 TYPE_BEING_DEFINED (type) = 0;
10379 /* We don't instantiate default arguments for member functions. 14.7.1:
10381 The implicit instantiation of a class template specialization causes
10382 the implicit instantiation of the declarations, but not of the
10383 definitions or default arguments, of the class member functions,
10384 member classes, static data members and member templates.... */
10386 /* Some typedefs referenced from within the template code need to be access
10387 checked at template instantiation time, i.e now. These types were
10388 added to the template at parsing time. Let's get those and perform
10389 the access checks then. */
10390 perform_typedefs_access_check (pattern, args);
10391 perform_deferred_access_checks (tf_warning_or_error);
10392 pop_nested_class ();
10393 maximum_field_alignment = saved_maximum_field_alignment;
10394 if (!fn_context)
10395 pop_from_top_level ();
10396 pop_deferring_access_checks ();
10397 pop_tinst_level ();
10399 /* The vtable for a template class can be emitted in any translation
10400 unit in which the class is instantiated. When there is no key
10401 method, however, finish_struct_1 will already have added TYPE to
10402 the keyed_classes list. */
10403 if (TYPE_CONTAINS_VPTR_P (type) && CLASSTYPE_KEY_METHOD (type))
10404 keyed_classes = tree_cons (NULL_TREE, type, keyed_classes);
10406 return type;
10409 /* Wrapper for instantiate_class_template_1. */
10411 tree
10412 instantiate_class_template (tree type)
10414 tree ret;
10415 timevar_push (TV_TEMPLATE_INST);
10416 ret = instantiate_class_template_1 (type);
10417 timevar_pop (TV_TEMPLATE_INST);
10418 return ret;
10421 static tree
10422 tsubst_template_arg (tree t, tree args, tsubst_flags_t complain, tree in_decl)
10424 tree r;
10426 if (!t)
10427 r = t;
10428 else if (TYPE_P (t))
10429 r = tsubst (t, args, complain, in_decl);
10430 else
10432 if (!(complain & tf_warning))
10433 ++c_inhibit_evaluation_warnings;
10434 r = tsubst_expr (t, args, complain, in_decl,
10435 /*integral_constant_expression_p=*/true);
10436 if (!(complain & tf_warning))
10437 --c_inhibit_evaluation_warnings;
10439 return r;
10442 /* Given a function parameter pack TMPL_PARM and some function parameters
10443 instantiated from it at *SPEC_P, return a NONTYPE_ARGUMENT_PACK of them
10444 and set *SPEC_P to point at the next point in the list. */
10446 tree
10447 extract_fnparm_pack (tree tmpl_parm, tree *spec_p)
10449 /* Collect all of the extra "packed" parameters into an
10450 argument pack. */
10451 tree parmvec;
10452 tree parmtypevec;
10453 tree argpack = make_node (NONTYPE_ARGUMENT_PACK);
10454 tree argtypepack = cxx_make_type (TYPE_ARGUMENT_PACK);
10455 tree spec_parm = *spec_p;
10456 int i, len;
10458 for (len = 0; spec_parm; ++len, spec_parm = TREE_CHAIN (spec_parm))
10459 if (tmpl_parm
10460 && !function_parameter_expanded_from_pack_p (spec_parm, tmpl_parm))
10461 break;
10463 /* Fill in PARMVEC and PARMTYPEVEC with all of the parameters. */
10464 parmvec = make_tree_vec (len);
10465 parmtypevec = make_tree_vec (len);
10466 spec_parm = *spec_p;
10467 for (i = 0; i < len; i++, spec_parm = DECL_CHAIN (spec_parm))
10469 TREE_VEC_ELT (parmvec, i) = spec_parm;
10470 TREE_VEC_ELT (parmtypevec, i) = TREE_TYPE (spec_parm);
10473 /* Build the argument packs. */
10474 SET_ARGUMENT_PACK_ARGS (argpack, parmvec);
10475 SET_ARGUMENT_PACK_ARGS (argtypepack, parmtypevec);
10476 TREE_TYPE (argpack) = argtypepack;
10477 *spec_p = spec_parm;
10479 return argpack;
10482 /* Give a chain SPEC_PARM of PARM_DECLs, pack them into a
10483 NONTYPE_ARGUMENT_PACK. */
10485 static tree
10486 make_fnparm_pack (tree spec_parm)
10488 return extract_fnparm_pack (NULL_TREE, &spec_parm);
10491 /* Return 1 if the Ith element of the argument pack ARG_PACK is a
10492 pack expansion with no extra args, 2 if it has extra args, or 0
10493 if it is not a pack expansion. */
10495 static int
10496 argument_pack_element_is_expansion_p (tree arg_pack, int i)
10498 tree vec = ARGUMENT_PACK_ARGS (arg_pack);
10499 if (i >= TREE_VEC_LENGTH (vec))
10500 return 0;
10501 tree elt = TREE_VEC_ELT (vec, i);
10502 if (DECL_P (elt))
10503 /* A decl pack is itself an expansion. */
10504 elt = TREE_TYPE (elt);
10505 if (!PACK_EXPANSION_P (elt))
10506 return 0;
10507 if (PACK_EXPANSION_EXTRA_ARGS (elt))
10508 return 2;
10509 return 1;
10513 /* Creates and return an ARGUMENT_PACK_SELECT tree node. */
10515 static tree
10516 make_argument_pack_select (tree arg_pack, unsigned index)
10518 tree aps = make_node (ARGUMENT_PACK_SELECT);
10520 ARGUMENT_PACK_SELECT_FROM_PACK (aps) = arg_pack;
10521 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
10523 return aps;
10526 /* This is a subroutine of tsubst_pack_expansion.
10528 It returns TRUE if we need to use the PACK_EXPANSION_EXTRA_ARGS
10529 mechanism to store the (non complete list of) arguments of the
10530 substitution and return a non substituted pack expansion, in order
10531 to wait for when we have enough arguments to really perform the
10532 substitution. */
10534 static bool
10535 use_pack_expansion_extra_args_p (tree parm_packs,
10536 int arg_pack_len,
10537 bool has_empty_arg)
10539 /* If one pack has an expansion and another pack has a normal
10540 argument or if one pack has an empty argument and an another
10541 one hasn't then tsubst_pack_expansion cannot perform the
10542 substitution and need to fall back on the
10543 PACK_EXPANSION_EXTRA mechanism. */
10544 if (parm_packs == NULL_TREE)
10545 return false;
10546 else if (has_empty_arg)
10547 return true;
10549 bool has_expansion_arg = false;
10550 for (int i = 0 ; i < arg_pack_len; ++i)
10552 bool has_non_expansion_arg = false;
10553 for (tree parm_pack = parm_packs;
10554 parm_pack;
10555 parm_pack = TREE_CHAIN (parm_pack))
10557 tree arg = TREE_VALUE (parm_pack);
10559 int exp = argument_pack_element_is_expansion_p (arg, i);
10560 if (exp == 2)
10561 /* We can't substitute a pack expansion with extra args into
10562 our pattern. */
10563 return true;
10564 else if (exp)
10565 has_expansion_arg = true;
10566 else
10567 has_non_expansion_arg = true;
10570 if (has_expansion_arg && has_non_expansion_arg)
10571 return true;
10573 return false;
10576 /* [temp.variadic]/6 says that:
10578 The instantiation of a pack expansion [...]
10579 produces a list E1,E2, ..., En, where N is the number of elements
10580 in the pack expansion parameters.
10582 This subroutine of tsubst_pack_expansion produces one of these Ei.
10584 PATTERN is the pattern of the pack expansion. PARM_PACKS is a
10585 TREE_LIST in which each TREE_PURPOSE is a parameter pack of
10586 PATTERN, and each TREE_VALUE is its corresponding argument pack.
10587 INDEX is the index 'i' of the element Ei to produce. ARGS,
10588 COMPLAIN, and IN_DECL are the same parameters as for the
10589 tsubst_pack_expansion function.
10591 The function returns the resulting Ei upon successful completion,
10592 or error_mark_node.
10594 Note that this function possibly modifies the ARGS parameter, so
10595 it's the responsibility of the caller to restore it. */
10597 static tree
10598 gen_elem_of_pack_expansion_instantiation (tree pattern,
10599 tree parm_packs,
10600 unsigned index,
10601 tree args /* This parm gets
10602 modified. */,
10603 tsubst_flags_t complain,
10604 tree in_decl)
10606 tree t;
10607 bool ith_elem_is_expansion = false;
10609 /* For each parameter pack, change the substitution of the parameter
10610 pack to the ith argument in its argument pack, then expand the
10611 pattern. */
10612 for (tree pack = parm_packs; pack; pack = TREE_CHAIN (pack))
10614 tree parm = TREE_PURPOSE (pack);
10615 tree arg_pack = TREE_VALUE (pack);
10616 tree aps; /* instance of ARGUMENT_PACK_SELECT. */
10618 ith_elem_is_expansion |=
10619 argument_pack_element_is_expansion_p (arg_pack, index);
10621 /* Select the Ith argument from the pack. */
10622 if (TREE_CODE (parm) == PARM_DECL
10623 || TREE_CODE (parm) == FIELD_DECL)
10625 if (index == 0)
10627 aps = make_argument_pack_select (arg_pack, index);
10628 if (!mark_used (parm, complain) && !(complain & tf_error))
10629 return error_mark_node;
10630 register_local_specialization (aps, parm);
10632 else
10633 aps = retrieve_local_specialization (parm);
10635 else
10637 int idx, level;
10638 template_parm_level_and_index (parm, &level, &idx);
10640 if (index == 0)
10642 aps = make_argument_pack_select (arg_pack, index);
10643 /* Update the corresponding argument. */
10644 TMPL_ARG (args, level, idx) = aps;
10646 else
10647 /* Re-use the ARGUMENT_PACK_SELECT. */
10648 aps = TMPL_ARG (args, level, idx);
10650 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
10653 /* Substitute into the PATTERN with the (possibly altered)
10654 arguments. */
10655 if (pattern == in_decl)
10656 /* Expanding a fixed parameter pack from
10657 coerce_template_parameter_pack. */
10658 t = tsubst_decl (pattern, args, complain);
10659 else if (pattern == error_mark_node)
10660 t = error_mark_node;
10661 else if (constraint_p (pattern))
10663 if (processing_template_decl)
10664 t = tsubst_constraint (pattern, args, complain, in_decl);
10665 else
10666 t = (constraints_satisfied_p (pattern, args)
10667 ? boolean_true_node : boolean_false_node);
10669 else if (!TYPE_P (pattern))
10670 t = tsubst_expr (pattern, args, complain, in_decl,
10671 /*integral_constant_expression_p=*/false);
10672 else
10673 t = tsubst (pattern, args, complain, in_decl);
10675 /* If the Ith argument pack element is a pack expansion, then
10676 the Ith element resulting from the substituting is going to
10677 be a pack expansion as well. */
10678 if (ith_elem_is_expansion)
10679 t = make_pack_expansion (t);
10681 return t;
10684 /* When the unexpanded parameter pack in a fold expression expands to an empty
10685 sequence, the value of the expression is as follows; the program is
10686 ill-formed if the operator is not listed in this table.
10688 && true
10689 || false
10690 , void() */
10692 tree
10693 expand_empty_fold (tree t, tsubst_flags_t complain)
10695 tree_code code = (tree_code)TREE_INT_CST_LOW (TREE_OPERAND (t, 0));
10696 if (!FOLD_EXPR_MODIFY_P (t))
10697 switch (code)
10699 case TRUTH_ANDIF_EXPR:
10700 return boolean_true_node;
10701 case TRUTH_ORIF_EXPR:
10702 return boolean_false_node;
10703 case COMPOUND_EXPR:
10704 return void_node;
10705 default:
10706 break;
10709 if (complain & tf_error)
10710 error_at (location_of (t),
10711 "fold of empty expansion over %O", code);
10712 return error_mark_node;
10715 /* Given a fold-expression T and a current LEFT and RIGHT operand,
10716 form an expression that combines the two terms using the
10717 operator of T. */
10719 static tree
10720 fold_expression (tree t, tree left, tree right, tsubst_flags_t complain)
10722 tree op = FOLD_EXPR_OP (t);
10723 tree_code code = (tree_code)TREE_INT_CST_LOW (op);
10725 // Handle compound assignment operators.
10726 if (FOLD_EXPR_MODIFY_P (t))
10727 return build_x_modify_expr (input_location, left, code, right, complain);
10729 switch (code)
10731 case COMPOUND_EXPR:
10732 return build_x_compound_expr (input_location, left, right, complain);
10733 case DOTSTAR_EXPR:
10734 return build_m_component_ref (left, right, complain);
10735 default:
10736 return build_x_binary_op (input_location, code,
10737 left, TREE_CODE (left),
10738 right, TREE_CODE (right),
10739 /*overload=*/NULL,
10740 complain);
10744 /* Substitute ARGS into the pack of a fold expression T. */
10746 static inline tree
10747 tsubst_fold_expr_pack (tree t, tree args, tsubst_flags_t complain, tree in_decl)
10749 return tsubst_pack_expansion (FOLD_EXPR_PACK (t), args, complain, in_decl);
10752 /* Substitute ARGS into the pack of a fold expression T. */
10754 static inline tree
10755 tsubst_fold_expr_init (tree t, tree args, tsubst_flags_t complain, tree in_decl)
10757 return tsubst_expr (FOLD_EXPR_INIT (t), args, complain, in_decl, false);
10760 /* Expand a PACK of arguments into a grouped as left fold.
10761 Given a pack containing elements A0, A1, ..., An and an
10762 operator @, this builds the expression:
10764 ((A0 @ A1) @ A2) ... @ An
10766 Note that PACK must not be empty.
10768 The operator is defined by the original fold expression T. */
10770 static tree
10771 expand_left_fold (tree t, tree pack, tsubst_flags_t complain)
10773 tree left = TREE_VEC_ELT (pack, 0);
10774 for (int i = 1; i < TREE_VEC_LENGTH (pack); ++i)
10776 tree right = TREE_VEC_ELT (pack, i);
10777 left = fold_expression (t, left, right, complain);
10779 return left;
10782 /* Substitute into a unary left fold expression. */
10784 static tree
10785 tsubst_unary_left_fold (tree t, tree args, tsubst_flags_t complain,
10786 tree in_decl)
10788 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
10789 if (pack == error_mark_node)
10790 return error_mark_node;
10791 if (PACK_EXPANSION_P (pack))
10793 tree r = copy_node (t);
10794 FOLD_EXPR_PACK (r) = pack;
10795 return r;
10797 if (TREE_VEC_LENGTH (pack) == 0)
10798 return expand_empty_fold (t, complain);
10799 else
10800 return expand_left_fold (t, pack, complain);
10803 /* Substitute into a binary left fold expression.
10805 Do ths by building a single (non-empty) vector of argumnts and
10806 building the expression from those elements. */
10808 static tree
10809 tsubst_binary_left_fold (tree t, tree args, tsubst_flags_t complain,
10810 tree in_decl)
10812 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
10813 if (pack == error_mark_node)
10814 return error_mark_node;
10815 tree init = tsubst_fold_expr_init (t, args, complain, in_decl);
10816 if (init == error_mark_node)
10817 return error_mark_node;
10819 if (PACK_EXPANSION_P (pack))
10821 tree r = copy_node (t);
10822 FOLD_EXPR_PACK (r) = pack;
10823 FOLD_EXPR_INIT (r) = init;
10824 return r;
10827 tree vec = make_tree_vec (TREE_VEC_LENGTH (pack) + 1);
10828 TREE_VEC_ELT (vec, 0) = init;
10829 for (int i = 0; i < TREE_VEC_LENGTH (pack); ++i)
10830 TREE_VEC_ELT (vec, i + 1) = TREE_VEC_ELT (pack, i);
10832 return expand_left_fold (t, vec, complain);
10835 /* Expand a PACK of arguments into a grouped as right fold.
10836 Given a pack containing elementns A0, A1, ..., and an
10837 operator @, this builds the expression:
10839 A0@ ... (An-2 @ (An-1 @ An))
10841 Note that PACK must not be empty.
10843 The operator is defined by the original fold expression T. */
10845 tree
10846 expand_right_fold (tree t, tree pack, tsubst_flags_t complain)
10848 // Build the expression.
10849 int n = TREE_VEC_LENGTH (pack);
10850 tree right = TREE_VEC_ELT (pack, n - 1);
10851 for (--n; n != 0; --n)
10853 tree left = TREE_VEC_ELT (pack, n - 1);
10854 right = fold_expression (t, left, right, complain);
10856 return right;
10859 /* Substitute into a unary right fold expression. */
10861 static tree
10862 tsubst_unary_right_fold (tree t, tree args, tsubst_flags_t complain,
10863 tree in_decl)
10865 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
10866 if (pack == error_mark_node)
10867 return error_mark_node;
10868 if (PACK_EXPANSION_P (pack))
10870 tree r = copy_node (t);
10871 FOLD_EXPR_PACK (r) = pack;
10872 return r;
10874 if (TREE_VEC_LENGTH (pack) == 0)
10875 return expand_empty_fold (t, complain);
10876 else
10877 return expand_right_fold (t, pack, complain);
10880 /* Substitute into a binary right fold expression.
10882 Do ths by building a single (non-empty) vector of arguments and
10883 building the expression from those elements. */
10885 static tree
10886 tsubst_binary_right_fold (tree t, tree args, tsubst_flags_t complain,
10887 tree in_decl)
10889 tree pack = tsubst_fold_expr_pack (t, args, complain, in_decl);
10890 if (pack == error_mark_node)
10891 return error_mark_node;
10892 tree init = tsubst_fold_expr_init (t, args, complain, in_decl);
10893 if (init == error_mark_node)
10894 return error_mark_node;
10896 if (PACK_EXPANSION_P (pack))
10898 tree r = copy_node (t);
10899 FOLD_EXPR_PACK (r) = pack;
10900 FOLD_EXPR_INIT (r) = init;
10901 return r;
10904 int n = TREE_VEC_LENGTH (pack);
10905 tree vec = make_tree_vec (n + 1);
10906 for (int i = 0; i < n; ++i)
10907 TREE_VEC_ELT (vec, i) = TREE_VEC_ELT (pack, i);
10908 TREE_VEC_ELT (vec, n) = init;
10910 return expand_right_fold (t, vec, complain);
10914 /* Substitute ARGS into T, which is an pack expansion
10915 (i.e. TYPE_PACK_EXPANSION or EXPR_PACK_EXPANSION). Returns a
10916 TREE_VEC with the substituted arguments, a PACK_EXPANSION_* node
10917 (if only a partial substitution could be performed) or
10918 ERROR_MARK_NODE if there was an error. */
10919 tree
10920 tsubst_pack_expansion (tree t, tree args, tsubst_flags_t complain,
10921 tree in_decl)
10923 tree pattern;
10924 tree pack, packs = NULL_TREE;
10925 bool unsubstituted_packs = false;
10926 int i, len = -1;
10927 tree result;
10928 hash_map<tree, tree> *saved_local_specializations = NULL;
10929 bool need_local_specializations = false;
10930 int levels;
10932 gcc_assert (PACK_EXPANSION_P (t));
10933 pattern = PACK_EXPANSION_PATTERN (t);
10935 /* Add in any args remembered from an earlier partial instantiation. */
10936 args = add_to_template_args (PACK_EXPANSION_EXTRA_ARGS (t), args);
10938 levels = TMPL_ARGS_DEPTH (args);
10940 /* Determine the argument packs that will instantiate the parameter
10941 packs used in the expansion expression. While we're at it,
10942 compute the number of arguments to be expanded and make sure it
10943 is consistent. */
10944 for (pack = PACK_EXPANSION_PARAMETER_PACKS (t); pack;
10945 pack = TREE_CHAIN (pack))
10947 tree parm_pack = TREE_VALUE (pack);
10948 tree arg_pack = NULL_TREE;
10949 tree orig_arg = NULL_TREE;
10950 int level = 0;
10952 if (TREE_CODE (parm_pack) == BASES)
10954 if (BASES_DIRECT (parm_pack))
10955 return calculate_direct_bases (tsubst_expr (BASES_TYPE (parm_pack),
10956 args, complain, in_decl, false));
10957 else
10958 return calculate_bases (tsubst_expr (BASES_TYPE (parm_pack),
10959 args, complain, in_decl, false));
10961 if (TREE_CODE (parm_pack) == PARM_DECL)
10963 /* We know we have correct local_specializations if this
10964 expansion is at function scope, or if we're dealing with a
10965 local parameter in a requires expression; for the latter,
10966 tsubst_requires_expr set it up appropriately. */
10967 if (PACK_EXPANSION_LOCAL_P (t) || CONSTRAINT_VAR_P (parm_pack))
10968 arg_pack = retrieve_local_specialization (parm_pack);
10969 else
10970 /* We can't rely on local_specializations for a parameter
10971 name used later in a function declaration (such as in a
10972 late-specified return type). Even if it exists, it might
10973 have the wrong value for a recursive call. */
10974 need_local_specializations = true;
10976 if (!arg_pack)
10978 /* This parameter pack was used in an unevaluated context. Just
10979 make a dummy decl, since it's only used for its type. */
10980 arg_pack = tsubst_decl (parm_pack, args, complain);
10981 if (arg_pack && DECL_PACK_P (arg_pack))
10982 /* Partial instantiation of the parm_pack, we can't build
10983 up an argument pack yet. */
10984 arg_pack = NULL_TREE;
10985 else
10986 arg_pack = make_fnparm_pack (arg_pack);
10989 else if (TREE_CODE (parm_pack) == FIELD_DECL)
10990 arg_pack = tsubst_copy (parm_pack, args, complain, in_decl);
10991 else
10993 int idx;
10994 template_parm_level_and_index (parm_pack, &level, &idx);
10996 if (level <= levels)
10997 arg_pack = TMPL_ARG (args, level, idx);
11000 orig_arg = arg_pack;
11001 if (arg_pack && TREE_CODE (arg_pack) == ARGUMENT_PACK_SELECT)
11002 arg_pack = ARGUMENT_PACK_SELECT_FROM_PACK (arg_pack);
11004 if (arg_pack && !ARGUMENT_PACK_P (arg_pack))
11005 /* This can only happen if we forget to expand an argument
11006 pack somewhere else. Just return an error, silently. */
11008 result = make_tree_vec (1);
11009 TREE_VEC_ELT (result, 0) = error_mark_node;
11010 return result;
11013 if (arg_pack)
11015 int my_len =
11016 TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg_pack));
11018 /* Don't bother trying to do a partial substitution with
11019 incomplete packs; we'll try again after deduction. */
11020 if (ARGUMENT_PACK_INCOMPLETE_P (arg_pack))
11021 return t;
11023 if (len < 0)
11024 len = my_len;
11025 else if (len != my_len)
11027 if (!(complain & tf_error))
11028 /* Fail quietly. */;
11029 else if (TREE_CODE (t) == TYPE_PACK_EXPANSION)
11030 error ("mismatched argument pack lengths while expanding "
11031 "%<%T%>",
11032 pattern);
11033 else
11034 error ("mismatched argument pack lengths while expanding "
11035 "%<%E%>",
11036 pattern);
11037 return error_mark_node;
11040 /* Keep track of the parameter packs and their corresponding
11041 argument packs. */
11042 packs = tree_cons (parm_pack, arg_pack, packs);
11043 TREE_TYPE (packs) = orig_arg;
11045 else
11047 /* We can't substitute for this parameter pack. We use a flag as
11048 well as the missing_level counter because function parameter
11049 packs don't have a level. */
11050 gcc_assert (processing_template_decl);
11051 unsubstituted_packs = true;
11055 /* If the expansion is just T..., return the matching argument pack, unless
11056 we need to call convert_from_reference on all the elements. This is an
11057 important optimization; see c++/68422. */
11058 if (!unsubstituted_packs
11059 && TREE_PURPOSE (packs) == pattern)
11061 tree args = ARGUMENT_PACK_ARGS (TREE_VALUE (packs));
11062 /* Types need no adjustment, nor does sizeof..., and if we still have
11063 some pack expansion args we won't do anything yet. */
11064 if (TREE_CODE (t) == TYPE_PACK_EXPANSION
11065 || PACK_EXPANSION_SIZEOF_P (t)
11066 || pack_expansion_args_count (args))
11067 return args;
11068 /* Also optimize expression pack expansions if we can tell that the
11069 elements won't have reference type. */
11070 tree type = TREE_TYPE (pattern);
11071 if (type && TREE_CODE (type) != REFERENCE_TYPE
11072 && !PACK_EXPANSION_P (type)
11073 && !WILDCARD_TYPE_P (type))
11074 return args;
11075 /* Otherwise use the normal path so we get convert_from_reference. */
11078 /* We cannot expand this expansion expression, because we don't have
11079 all of the argument packs we need. */
11080 if (use_pack_expansion_extra_args_p (packs, len, unsubstituted_packs))
11082 /* We got some full packs, but we can't substitute them in until we
11083 have values for all the packs. So remember these until then. */
11085 t = make_pack_expansion (pattern);
11086 PACK_EXPANSION_EXTRA_ARGS (t) = args;
11087 return t;
11089 else if (unsubstituted_packs)
11091 /* There were no real arguments, we're just replacing a parameter
11092 pack with another version of itself. Substitute into the
11093 pattern and return a PACK_EXPANSION_*. The caller will need to
11094 deal with that. */
11095 if (TREE_CODE (t) == EXPR_PACK_EXPANSION)
11096 t = tsubst_expr (pattern, args, complain, in_decl,
11097 /*integral_constant_expression_p=*/false);
11098 else
11099 t = tsubst (pattern, args, complain, in_decl);
11100 t = make_pack_expansion (t);
11101 return t;
11104 gcc_assert (len >= 0);
11106 if (need_local_specializations)
11108 /* We're in a late-specified return type, so create our own local
11109 specializations map; the current map is either NULL or (in the
11110 case of recursive unification) might have bindings that we don't
11111 want to use or alter. */
11112 saved_local_specializations = local_specializations;
11113 local_specializations = new hash_map<tree, tree>;
11116 /* For each argument in each argument pack, substitute into the
11117 pattern. */
11118 result = make_tree_vec (len);
11119 tree elem_args = copy_template_args (args);
11120 for (i = 0; i < len; ++i)
11122 t = gen_elem_of_pack_expansion_instantiation (pattern, packs,
11124 elem_args, complain,
11125 in_decl);
11126 TREE_VEC_ELT (result, i) = t;
11127 if (t == error_mark_node)
11129 result = error_mark_node;
11130 break;
11134 /* Update ARGS to restore the substitution from parameter packs to
11135 their argument packs. */
11136 for (pack = packs; pack; pack = TREE_CHAIN (pack))
11138 tree parm = TREE_PURPOSE (pack);
11140 if (TREE_CODE (parm) == PARM_DECL
11141 || TREE_CODE (parm) == FIELD_DECL)
11142 register_local_specialization (TREE_TYPE (pack), parm);
11143 else
11145 int idx, level;
11147 if (TREE_VALUE (pack) == NULL_TREE)
11148 continue;
11150 template_parm_level_and_index (parm, &level, &idx);
11152 /* Update the corresponding argument. */
11153 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
11154 TREE_VEC_ELT (TREE_VEC_ELT (args, level -1 ), idx) =
11155 TREE_TYPE (pack);
11156 else
11157 TREE_VEC_ELT (args, idx) = TREE_TYPE (pack);
11161 if (need_local_specializations)
11163 delete local_specializations;
11164 local_specializations = saved_local_specializations;
11167 /* If the dependent pack arguments were such that we end up with only a
11168 single pack expansion again, there's no need to keep it in a TREE_VEC. */
11169 if (len == 1 && TREE_CODE (result) == TREE_VEC
11170 && PACK_EXPANSION_P (TREE_VEC_ELT (result, 0)))
11171 return TREE_VEC_ELT (result, 0);
11173 return result;
11176 /* Given PARM_DECL PARM, find the corresponding PARM_DECL in the template
11177 TMPL. We do this using DECL_PARM_INDEX, which should work even with
11178 parameter packs; all parms generated from a function parameter pack will
11179 have the same DECL_PARM_INDEX. */
11181 tree
11182 get_pattern_parm (tree parm, tree tmpl)
11184 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
11185 tree patparm;
11187 if (DECL_ARTIFICIAL (parm))
11189 for (patparm = DECL_ARGUMENTS (pattern);
11190 patparm; patparm = DECL_CHAIN (patparm))
11191 if (DECL_ARTIFICIAL (patparm)
11192 && DECL_NAME (parm) == DECL_NAME (patparm))
11193 break;
11195 else
11197 patparm = FUNCTION_FIRST_USER_PARM (DECL_TEMPLATE_RESULT (tmpl));
11198 patparm = chain_index (DECL_PARM_INDEX (parm)-1, patparm);
11199 gcc_assert (DECL_PARM_INDEX (patparm)
11200 == DECL_PARM_INDEX (parm));
11203 return patparm;
11206 /* Make an argument pack out of the TREE_VEC VEC. */
11208 static tree
11209 make_argument_pack (tree vec)
11211 tree pack;
11212 tree elt = TREE_VEC_ELT (vec, 0);
11213 if (TYPE_P (elt))
11214 pack = cxx_make_type (TYPE_ARGUMENT_PACK);
11215 else
11217 pack = make_node (NONTYPE_ARGUMENT_PACK);
11218 TREE_TYPE (pack) = TREE_TYPE (elt);
11219 TREE_CONSTANT (pack) = 1;
11221 SET_ARGUMENT_PACK_ARGS (pack, vec);
11222 return pack;
11225 /* Return an exact copy of template args T that can be modified
11226 independently. */
11228 static tree
11229 copy_template_args (tree t)
11231 if (t == error_mark_node)
11232 return t;
11234 int len = TREE_VEC_LENGTH (t);
11235 tree new_vec = make_tree_vec (len);
11237 for (int i = 0; i < len; ++i)
11239 tree elt = TREE_VEC_ELT (t, i);
11240 if (elt && TREE_CODE (elt) == TREE_VEC)
11241 elt = copy_template_args (elt);
11242 TREE_VEC_ELT (new_vec, i) = elt;
11245 NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_vec)
11246 = NON_DEFAULT_TEMPLATE_ARGS_COUNT (t);
11248 return new_vec;
11251 /* Substitute ARGS into the vector or list of template arguments T. */
11253 static tree
11254 tsubst_template_args (tree t, tree args, tsubst_flags_t complain, tree in_decl)
11256 tree orig_t = t;
11257 int len, need_new = 0, i, expanded_len_adjust = 0, out;
11258 tree *elts;
11260 if (t == error_mark_node)
11261 return error_mark_node;
11263 len = TREE_VEC_LENGTH (t);
11264 elts = XALLOCAVEC (tree, len);
11266 for (i = 0; i < len; i++)
11268 tree orig_arg = TREE_VEC_ELT (t, i);
11269 tree new_arg;
11271 if (TREE_CODE (orig_arg) == TREE_VEC)
11272 new_arg = tsubst_template_args (orig_arg, args, complain, in_decl);
11273 else if (PACK_EXPANSION_P (orig_arg))
11275 /* Substitute into an expansion expression. */
11276 new_arg = tsubst_pack_expansion (orig_arg, args, complain, in_decl);
11278 if (TREE_CODE (new_arg) == TREE_VEC)
11279 /* Add to the expanded length adjustment the number of
11280 expanded arguments. We subtract one from this
11281 measurement, because the argument pack expression
11282 itself is already counted as 1 in
11283 LEN. EXPANDED_LEN_ADJUST can actually be negative, if
11284 the argument pack is empty. */
11285 expanded_len_adjust += TREE_VEC_LENGTH (new_arg) - 1;
11287 else if (ARGUMENT_PACK_P (orig_arg))
11289 /* Substitute into each of the arguments. */
11290 new_arg = TYPE_P (orig_arg)
11291 ? cxx_make_type (TREE_CODE (orig_arg))
11292 : make_node (TREE_CODE (orig_arg));
11294 SET_ARGUMENT_PACK_ARGS (
11295 new_arg,
11296 tsubst_template_args (ARGUMENT_PACK_ARGS (orig_arg),
11297 args, complain, in_decl));
11299 if (ARGUMENT_PACK_ARGS (new_arg) == error_mark_node)
11300 new_arg = error_mark_node;
11302 if (TREE_CODE (new_arg) == NONTYPE_ARGUMENT_PACK) {
11303 TREE_TYPE (new_arg) = tsubst (TREE_TYPE (orig_arg), args,
11304 complain, in_decl);
11305 TREE_CONSTANT (new_arg) = TREE_CONSTANT (orig_arg);
11307 if (TREE_TYPE (new_arg) == error_mark_node)
11308 new_arg = error_mark_node;
11311 else
11312 new_arg = tsubst_template_arg (orig_arg, args, complain, in_decl);
11314 if (new_arg == error_mark_node)
11315 return error_mark_node;
11317 elts[i] = new_arg;
11318 if (new_arg != orig_arg)
11319 need_new = 1;
11322 if (!need_new)
11323 return t;
11325 /* Make space for the expanded arguments coming from template
11326 argument packs. */
11327 t = make_tree_vec (len + expanded_len_adjust);
11328 /* ORIG_T can contain TREE_VECs. That happens if ORIG_T contains the
11329 arguments for a member template.
11330 In that case each TREE_VEC in ORIG_T represents a level of template
11331 arguments, and ORIG_T won't carry any non defaulted argument count.
11332 It will rather be the nested TREE_VECs that will carry one.
11333 In other words, ORIG_T carries a non defaulted argument count only
11334 if it doesn't contain any nested TREE_VEC. */
11335 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t))
11337 int count = GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t);
11338 count += expanded_len_adjust;
11339 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (t, count);
11341 for (i = 0, out = 0; i < len; i++)
11343 if ((PACK_EXPANSION_P (TREE_VEC_ELT (orig_t, i))
11344 || ARGUMENT_PACK_P (TREE_VEC_ELT (orig_t, i)))
11345 && TREE_CODE (elts[i]) == TREE_VEC)
11347 int idx;
11349 /* Now expand the template argument pack "in place". */
11350 for (idx = 0; idx < TREE_VEC_LENGTH (elts[i]); idx++, out++)
11351 TREE_VEC_ELT (t, out) = TREE_VEC_ELT (elts[i], idx);
11353 else
11355 TREE_VEC_ELT (t, out) = elts[i];
11356 out++;
11360 return t;
11363 /* Return the result of substituting ARGS into the template parameters
11364 given by PARMS. If there are m levels of ARGS and m + n levels of
11365 PARMS, then the result will contain n levels of PARMS. For
11366 example, if PARMS is `template <class T> template <class U>
11367 template <T*, U, class V>' and ARGS is {{int}, {double}} then the
11368 result will be `template <int*, double, class V>'. */
11370 static tree
11371 tsubst_template_parms (tree parms, tree args, tsubst_flags_t complain)
11373 tree r = NULL_TREE;
11374 tree* new_parms;
11376 /* When substituting into a template, we must set
11377 PROCESSING_TEMPLATE_DECL as the template parameters may be
11378 dependent if they are based on one-another, and the dependency
11379 predicates are short-circuit outside of templates. */
11380 ++processing_template_decl;
11382 for (new_parms = &r;
11383 parms && TMPL_PARMS_DEPTH (parms) > TMPL_ARGS_DEPTH (args);
11384 new_parms = &(TREE_CHAIN (*new_parms)),
11385 parms = TREE_CHAIN (parms))
11387 tree new_vec =
11388 make_tree_vec (TREE_VEC_LENGTH (TREE_VALUE (parms)));
11389 int i;
11391 for (i = 0; i < TREE_VEC_LENGTH (new_vec); ++i)
11393 tree tuple;
11395 if (parms == error_mark_node)
11396 continue;
11398 tuple = TREE_VEC_ELT (TREE_VALUE (parms), i);
11400 if (tuple == error_mark_node)
11401 continue;
11403 TREE_VEC_ELT (new_vec, i) =
11404 tsubst_template_parm (tuple, args, complain);
11407 *new_parms =
11408 tree_cons (size_int (TMPL_PARMS_DEPTH (parms)
11409 - TMPL_ARGS_DEPTH (args)),
11410 new_vec, NULL_TREE);
11413 --processing_template_decl;
11415 return r;
11418 /* Return the result of substituting ARGS into one template parameter
11419 given by T. T Must be a TREE_LIST which TREE_VALUE is the template
11420 parameter and which TREE_PURPOSE is the default argument of the
11421 template parameter. */
11423 static tree
11424 tsubst_template_parm (tree t, tree args, tsubst_flags_t complain)
11426 tree default_value, parm_decl;
11428 if (args == NULL_TREE
11429 || t == NULL_TREE
11430 || t == error_mark_node)
11431 return t;
11433 gcc_assert (TREE_CODE (t) == TREE_LIST);
11435 default_value = TREE_PURPOSE (t);
11436 parm_decl = TREE_VALUE (t);
11438 parm_decl = tsubst (parm_decl, args, complain, NULL_TREE);
11439 if (TREE_CODE (parm_decl) == PARM_DECL
11440 && invalid_nontype_parm_type_p (TREE_TYPE (parm_decl), complain))
11441 parm_decl = error_mark_node;
11442 default_value = tsubst_template_arg (default_value, args,
11443 complain, NULL_TREE);
11445 return build_tree_list (default_value, parm_decl);
11448 /* Substitute the ARGS into the indicated aggregate (or enumeration)
11449 type T. If T is not an aggregate or enumeration type, it is
11450 handled as if by tsubst. IN_DECL is as for tsubst. If
11451 ENTERING_SCOPE is nonzero, T is the context for a template which
11452 we are presently tsubst'ing. Return the substituted value. */
11454 static tree
11455 tsubst_aggr_type (tree t,
11456 tree args,
11457 tsubst_flags_t complain,
11458 tree in_decl,
11459 int entering_scope)
11461 if (t == NULL_TREE)
11462 return NULL_TREE;
11464 switch (TREE_CODE (t))
11466 case RECORD_TYPE:
11467 if (TYPE_PTRMEMFUNC_P (t))
11468 return tsubst (TYPE_PTRMEMFUNC_FN_TYPE (t), args, complain, in_decl);
11470 /* Fall through. */
11471 case ENUMERAL_TYPE:
11472 case UNION_TYPE:
11473 if (TYPE_TEMPLATE_INFO (t) && uses_template_parms (t))
11475 tree argvec;
11476 tree context;
11477 tree r;
11478 int saved_unevaluated_operand;
11479 int saved_inhibit_evaluation_warnings;
11481 /* In "sizeof(X<I>)" we need to evaluate "I". */
11482 saved_unevaluated_operand = cp_unevaluated_operand;
11483 cp_unevaluated_operand = 0;
11484 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
11485 c_inhibit_evaluation_warnings = 0;
11487 /* First, determine the context for the type we are looking
11488 up. */
11489 context = TYPE_CONTEXT (t);
11490 if (context && TYPE_P (context))
11492 context = tsubst_aggr_type (context, args, complain,
11493 in_decl, /*entering_scope=*/1);
11494 /* If context is a nested class inside a class template,
11495 it may still need to be instantiated (c++/33959). */
11496 context = complete_type (context);
11499 /* Then, figure out what arguments are appropriate for the
11500 type we are trying to find. For example, given:
11502 template <class T> struct S;
11503 template <class T, class U> void f(T, U) { S<U> su; }
11505 and supposing that we are instantiating f<int, double>,
11506 then our ARGS will be {int, double}, but, when looking up
11507 S we only want {double}. */
11508 argvec = tsubst_template_args (TYPE_TI_ARGS (t), args,
11509 complain, in_decl);
11510 if (argvec == error_mark_node)
11511 r = error_mark_node;
11512 else
11514 r = lookup_template_class (t, argvec, in_decl, context,
11515 entering_scope, complain);
11516 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
11519 cp_unevaluated_operand = saved_unevaluated_operand;
11520 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
11522 return r;
11524 else
11525 /* This is not a template type, so there's nothing to do. */
11526 return t;
11528 default:
11529 return tsubst (t, args, complain, in_decl);
11533 /* Substitute into the default argument ARG (a default argument for
11534 FN), which has the indicated TYPE. */
11536 tree
11537 tsubst_default_argument (tree fn, tree type, tree arg, tsubst_flags_t complain)
11539 tree saved_class_ptr = NULL_TREE;
11540 tree saved_class_ref = NULL_TREE;
11541 int errs = errorcount + sorrycount;
11543 /* This can happen in invalid code. */
11544 if (TREE_CODE (arg) == DEFAULT_ARG)
11545 return arg;
11547 /* This default argument came from a template. Instantiate the
11548 default argument here, not in tsubst. In the case of
11549 something like:
11551 template <class T>
11552 struct S {
11553 static T t();
11554 void f(T = t());
11557 we must be careful to do name lookup in the scope of S<T>,
11558 rather than in the current class. */
11559 push_access_scope (fn);
11560 /* The "this" pointer is not valid in a default argument. */
11561 if (cfun)
11563 saved_class_ptr = current_class_ptr;
11564 cp_function_chain->x_current_class_ptr = NULL_TREE;
11565 saved_class_ref = current_class_ref;
11566 cp_function_chain->x_current_class_ref = NULL_TREE;
11569 push_deferring_access_checks(dk_no_deferred);
11570 /* The default argument expression may cause implicitly defined
11571 member functions to be synthesized, which will result in garbage
11572 collection. We must treat this situation as if we were within
11573 the body of function so as to avoid collecting live data on the
11574 stack. */
11575 ++function_depth;
11576 arg = tsubst_expr (arg, DECL_TI_ARGS (fn),
11577 complain, NULL_TREE,
11578 /*integral_constant_expression_p=*/false);
11579 --function_depth;
11580 pop_deferring_access_checks();
11582 /* Restore the "this" pointer. */
11583 if (cfun)
11585 cp_function_chain->x_current_class_ptr = saved_class_ptr;
11586 cp_function_chain->x_current_class_ref = saved_class_ref;
11589 if (errorcount+sorrycount > errs
11590 && (complain & tf_warning_or_error))
11591 inform (input_location,
11592 " when instantiating default argument for call to %D", fn);
11594 /* Make sure the default argument is reasonable. */
11595 arg = check_default_argument (type, arg, complain);
11597 pop_access_scope (fn);
11599 return arg;
11602 /* Substitute into all the default arguments for FN. */
11604 static void
11605 tsubst_default_arguments (tree fn, tsubst_flags_t complain)
11607 tree arg;
11608 tree tmpl_args;
11610 tmpl_args = DECL_TI_ARGS (fn);
11612 /* If this function is not yet instantiated, we certainly don't need
11613 its default arguments. */
11614 if (uses_template_parms (tmpl_args))
11615 return;
11616 /* Don't do this again for clones. */
11617 if (DECL_CLONED_FUNCTION_P (fn))
11618 return;
11620 for (arg = TYPE_ARG_TYPES (TREE_TYPE (fn));
11621 arg;
11622 arg = TREE_CHAIN (arg))
11623 if (TREE_PURPOSE (arg))
11624 TREE_PURPOSE (arg) = tsubst_default_argument (fn,
11625 TREE_VALUE (arg),
11626 TREE_PURPOSE (arg),
11627 complain);
11630 /* Substitute the ARGS into the T, which is a _DECL. Return the
11631 result of the substitution. Issue error and warning messages under
11632 control of COMPLAIN. */
11634 static tree
11635 tsubst_decl (tree t, tree args, tsubst_flags_t complain)
11637 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
11638 location_t saved_loc;
11639 tree r = NULL_TREE;
11640 tree in_decl = t;
11641 hashval_t hash = 0;
11643 /* Set the filename and linenumber to improve error-reporting. */
11644 saved_loc = input_location;
11645 input_location = DECL_SOURCE_LOCATION (t);
11647 switch (TREE_CODE (t))
11649 case TEMPLATE_DECL:
11651 /* We can get here when processing a member function template,
11652 member class template, or template template parameter. */
11653 tree decl = DECL_TEMPLATE_RESULT (t);
11654 tree spec;
11655 tree tmpl_args;
11656 tree full_args;
11658 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
11660 /* Template template parameter is treated here. */
11661 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11662 if (new_type == error_mark_node)
11663 r = error_mark_node;
11664 /* If we get a real template back, return it. This can happen in
11665 the context of most_specialized_partial_spec. */
11666 else if (TREE_CODE (new_type) == TEMPLATE_DECL)
11667 r = new_type;
11668 else
11669 /* The new TEMPLATE_DECL was built in
11670 reduce_template_parm_level. */
11671 r = TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (new_type);
11672 break;
11675 /* We might already have an instance of this template.
11676 The ARGS are for the surrounding class type, so the
11677 full args contain the tsubst'd args for the context,
11678 plus the innermost args from the template decl. */
11679 tmpl_args = DECL_CLASS_TEMPLATE_P (t)
11680 ? CLASSTYPE_TI_ARGS (TREE_TYPE (t))
11681 : DECL_TI_ARGS (DECL_TEMPLATE_RESULT (t));
11682 /* Because this is a template, the arguments will still be
11683 dependent, even after substitution. If
11684 PROCESSING_TEMPLATE_DECL is not set, the dependency
11685 predicates will short-circuit. */
11686 ++processing_template_decl;
11687 full_args = tsubst_template_args (tmpl_args, args,
11688 complain, in_decl);
11689 --processing_template_decl;
11690 if (full_args == error_mark_node)
11691 RETURN (error_mark_node);
11693 /* If this is a default template template argument,
11694 tsubst might not have changed anything. */
11695 if (full_args == tmpl_args)
11696 RETURN (t);
11698 hash = hash_tmpl_and_args (t, full_args);
11699 spec = retrieve_specialization (t, full_args, hash);
11700 if (spec != NULL_TREE)
11702 r = spec;
11703 break;
11706 /* Make a new template decl. It will be similar to the
11707 original, but will record the current template arguments.
11708 We also create a new function declaration, which is just
11709 like the old one, but points to this new template, rather
11710 than the old one. */
11711 r = copy_decl (t);
11712 gcc_assert (DECL_LANG_SPECIFIC (r) != 0);
11713 DECL_CHAIN (r) = NULL_TREE;
11715 // Build new template info linking to the original template decl.
11716 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
11718 if (TREE_CODE (decl) == TYPE_DECL
11719 && !TYPE_DECL_ALIAS_P (decl))
11721 tree new_type;
11722 ++processing_template_decl;
11723 new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11724 --processing_template_decl;
11725 if (new_type == error_mark_node)
11726 RETURN (error_mark_node);
11728 TREE_TYPE (r) = new_type;
11729 /* For a partial specialization, we need to keep pointing to
11730 the primary template. */
11731 if (!DECL_TEMPLATE_SPECIALIZATION (t))
11732 CLASSTYPE_TI_TEMPLATE (new_type) = r;
11733 DECL_TEMPLATE_RESULT (r) = TYPE_MAIN_DECL (new_type);
11734 DECL_TI_ARGS (r) = CLASSTYPE_TI_ARGS (new_type);
11735 DECL_CONTEXT (r) = TYPE_CONTEXT (new_type);
11737 else
11739 tree new_decl;
11740 ++processing_template_decl;
11741 new_decl = tsubst (decl, args, complain, in_decl);
11742 --processing_template_decl;
11743 if (new_decl == error_mark_node)
11744 RETURN (error_mark_node);
11746 DECL_TEMPLATE_RESULT (r) = new_decl;
11747 DECL_TI_TEMPLATE (new_decl) = r;
11748 TREE_TYPE (r) = TREE_TYPE (new_decl);
11749 DECL_TI_ARGS (r) = DECL_TI_ARGS (new_decl);
11750 DECL_CONTEXT (r) = DECL_CONTEXT (new_decl);
11753 SET_DECL_IMPLICIT_INSTANTIATION (r);
11754 DECL_TEMPLATE_INSTANTIATIONS (r) = NULL_TREE;
11755 DECL_TEMPLATE_SPECIALIZATIONS (r) = NULL_TREE;
11757 /* The template parameters for this new template are all the
11758 template parameters for the old template, except the
11759 outermost level of parameters. */
11760 DECL_TEMPLATE_PARMS (r)
11761 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
11762 complain);
11764 if (PRIMARY_TEMPLATE_P (t))
11765 DECL_PRIMARY_TEMPLATE (r) = r;
11767 if (TREE_CODE (decl) != TYPE_DECL && !VAR_P (decl))
11768 /* Record this non-type partial instantiation. */
11769 register_specialization (r, t,
11770 DECL_TI_ARGS (DECL_TEMPLATE_RESULT (r)),
11771 false, hash);
11773 break;
11775 case FUNCTION_DECL:
11777 tree ctx;
11778 tree argvec = NULL_TREE;
11779 tree *friends;
11780 tree gen_tmpl;
11781 tree type;
11782 int member;
11783 int args_depth;
11784 int parms_depth;
11786 /* Nobody should be tsubst'ing into non-template functions. */
11787 gcc_assert (DECL_TEMPLATE_INFO (t) != NULL_TREE);
11789 if (TREE_CODE (DECL_TI_TEMPLATE (t)) == TEMPLATE_DECL)
11791 tree spec;
11793 /* If T is not dependent, just return it. */
11794 if (!uses_template_parms (DECL_TI_ARGS (t)))
11795 RETURN (t);
11797 /* Calculate the most general template of which R is a
11798 specialization, and the complete set of arguments used to
11799 specialize R. */
11800 gen_tmpl = most_general_template (DECL_TI_TEMPLATE (t));
11801 argvec = tsubst_template_args (DECL_TI_ARGS
11802 (DECL_TEMPLATE_RESULT
11803 (DECL_TI_TEMPLATE (t))),
11804 args, complain, in_decl);
11805 if (argvec == error_mark_node)
11806 RETURN (error_mark_node);
11808 /* Check to see if we already have this specialization. */
11809 hash = hash_tmpl_and_args (gen_tmpl, argvec);
11810 spec = retrieve_specialization (gen_tmpl, argvec, hash);
11812 if (spec)
11814 r = spec;
11815 break;
11818 /* We can see more levels of arguments than parameters if
11819 there was a specialization of a member template, like
11820 this:
11822 template <class T> struct S { template <class U> void f(); }
11823 template <> template <class U> void S<int>::f(U);
11825 Here, we'll be substituting into the specialization,
11826 because that's where we can find the code we actually
11827 want to generate, but we'll have enough arguments for
11828 the most general template.
11830 We also deal with the peculiar case:
11832 template <class T> struct S {
11833 template <class U> friend void f();
11835 template <class U> void f() {}
11836 template S<int>;
11837 template void f<double>();
11839 Here, the ARGS for the instantiation of will be {int,
11840 double}. But, we only need as many ARGS as there are
11841 levels of template parameters in CODE_PATTERN. We are
11842 careful not to get fooled into reducing the ARGS in
11843 situations like:
11845 template <class T> struct S { template <class U> void f(U); }
11846 template <class T> template <> void S<T>::f(int) {}
11848 which we can spot because the pattern will be a
11849 specialization in this case. */
11850 args_depth = TMPL_ARGS_DEPTH (args);
11851 parms_depth =
11852 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (t)));
11853 if (args_depth > parms_depth
11854 && !DECL_TEMPLATE_SPECIALIZATION (t))
11855 args = get_innermost_template_args (args, parms_depth);
11857 else
11859 /* This special case arises when we have something like this:
11861 template <class T> struct S {
11862 friend void f<int>(int, double);
11865 Here, the DECL_TI_TEMPLATE for the friend declaration
11866 will be an IDENTIFIER_NODE. We are being called from
11867 tsubst_friend_function, and we want only to create a
11868 new decl (R) with appropriate types so that we can call
11869 determine_specialization. */
11870 gen_tmpl = NULL_TREE;
11873 if (DECL_CLASS_SCOPE_P (t))
11875 if (DECL_NAME (t) == constructor_name (DECL_CONTEXT (t)))
11876 member = 2;
11877 else
11878 member = 1;
11879 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args,
11880 complain, t, /*entering_scope=*/1);
11882 else
11884 member = 0;
11885 ctx = DECL_CONTEXT (t);
11887 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11888 if (type == error_mark_node)
11889 RETURN (error_mark_node);
11891 /* If we hit excessive deduction depth, the type is bogus even if
11892 it isn't error_mark_node, so don't build a decl. */
11893 if (excessive_deduction_depth)
11894 RETURN (error_mark_node);
11896 /* We do NOT check for matching decls pushed separately at this
11897 point, as they may not represent instantiations of this
11898 template, and in any case are considered separate under the
11899 discrete model. */
11900 r = copy_decl (t);
11901 DECL_USE_TEMPLATE (r) = 0;
11902 TREE_TYPE (r) = type;
11903 /* Clear out the mangled name and RTL for the instantiation. */
11904 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
11905 SET_DECL_RTL (r, NULL);
11906 /* Leave DECL_INITIAL set on deleted instantiations. */
11907 if (!DECL_DELETED_FN (r))
11908 DECL_INITIAL (r) = NULL_TREE;
11909 DECL_CONTEXT (r) = ctx;
11911 /* OpenMP UDRs have the only argument a reference to the declared
11912 type. We want to diagnose if the declared type is a reference,
11913 which is invalid, but as references to references are usually
11914 quietly merged, diagnose it here. */
11915 if (DECL_OMP_DECLARE_REDUCTION_P (t))
11917 tree argtype
11918 = TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (t))));
11919 argtype = tsubst (argtype, args, complain, in_decl);
11920 if (TREE_CODE (argtype) == REFERENCE_TYPE)
11921 error_at (DECL_SOURCE_LOCATION (t),
11922 "reference type %qT in "
11923 "%<#pragma omp declare reduction%>", argtype);
11924 if (strchr (IDENTIFIER_POINTER (DECL_NAME (t)), '~') == NULL)
11925 DECL_NAME (r) = omp_reduction_id (ERROR_MARK, DECL_NAME (t),
11926 argtype);
11929 if (member && DECL_CONV_FN_P (r))
11930 /* Type-conversion operator. Reconstruct the name, in
11931 case it's the name of one of the template's parameters. */
11932 DECL_NAME (r) = mangle_conv_op_name_for_type (TREE_TYPE (type));
11934 DECL_ARGUMENTS (r) = tsubst (DECL_ARGUMENTS (t), args,
11935 complain, t);
11936 DECL_RESULT (r) = NULL_TREE;
11938 TREE_STATIC (r) = 0;
11939 TREE_PUBLIC (r) = TREE_PUBLIC (t);
11940 DECL_EXTERNAL (r) = 1;
11941 /* If this is an instantiation of a function with internal
11942 linkage, we already know what object file linkage will be
11943 assigned to the instantiation. */
11944 DECL_INTERFACE_KNOWN (r) = !TREE_PUBLIC (r);
11945 DECL_DEFER_OUTPUT (r) = 0;
11946 DECL_CHAIN (r) = NULL_TREE;
11947 DECL_PENDING_INLINE_INFO (r) = 0;
11948 DECL_PENDING_INLINE_P (r) = 0;
11949 DECL_SAVED_TREE (r) = NULL_TREE;
11950 DECL_STRUCT_FUNCTION (r) = NULL;
11951 TREE_USED (r) = 0;
11952 /* We'll re-clone as appropriate in instantiate_template. */
11953 DECL_CLONED_FUNCTION (r) = NULL_TREE;
11955 /* If we aren't complaining now, return on error before we register
11956 the specialization so that we'll complain eventually. */
11957 if ((complain & tf_error) == 0
11958 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
11959 && !grok_op_properties (r, /*complain=*/false))
11960 RETURN (error_mark_node);
11962 /* When instantiating a constrained member, substitute
11963 into the constraints to create a new constraint. */
11964 if (tree ci = get_constraints (t))
11965 if (member)
11967 ci = tsubst_constraint_info (ci, argvec, complain, NULL_TREE);
11968 set_constraints (r, ci);
11971 /* Set up the DECL_TEMPLATE_INFO for R. There's no need to do
11972 this in the special friend case mentioned above where
11973 GEN_TMPL is NULL. */
11974 if (gen_tmpl)
11976 DECL_TEMPLATE_INFO (r)
11977 = build_template_info (gen_tmpl, argvec);
11978 SET_DECL_IMPLICIT_INSTANTIATION (r);
11980 tree new_r
11981 = register_specialization (r, gen_tmpl, argvec, false, hash);
11982 if (new_r != r)
11983 /* We instantiated this while substituting into
11984 the type earlier (template/friend54.C). */
11985 RETURN (new_r);
11987 /* We're not supposed to instantiate default arguments
11988 until they are called, for a template. But, for a
11989 declaration like:
11991 template <class T> void f ()
11992 { extern void g(int i = T()); }
11994 we should do the substitution when the template is
11995 instantiated. We handle the member function case in
11996 instantiate_class_template since the default arguments
11997 might refer to other members of the class. */
11998 if (!member
11999 && !PRIMARY_TEMPLATE_P (gen_tmpl)
12000 && !uses_template_parms (argvec))
12001 tsubst_default_arguments (r, complain);
12003 else
12004 DECL_TEMPLATE_INFO (r) = NULL_TREE;
12006 /* Copy the list of befriending classes. */
12007 for (friends = &DECL_BEFRIENDING_CLASSES (r);
12008 *friends;
12009 friends = &TREE_CHAIN (*friends))
12011 *friends = copy_node (*friends);
12012 TREE_VALUE (*friends) = tsubst (TREE_VALUE (*friends),
12013 args, complain,
12014 in_decl);
12017 if (DECL_CONSTRUCTOR_P (r) || DECL_DESTRUCTOR_P (r))
12019 maybe_retrofit_in_chrg (r);
12020 if (DECL_CONSTRUCTOR_P (r))
12021 grok_ctor_properties (ctx, r);
12022 if (DECL_INHERITED_CTOR_BASE (r))
12023 deduce_inheriting_ctor (r);
12024 /* If this is an instantiation of a member template, clone it.
12025 If it isn't, that'll be handled by
12026 clone_constructors_and_destructors. */
12027 if (PRIMARY_TEMPLATE_P (gen_tmpl))
12028 clone_function_decl (r, /*update_method_vec_p=*/0);
12030 else if ((complain & tf_error) != 0
12031 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
12032 && !grok_op_properties (r, /*complain=*/true))
12033 RETURN (error_mark_node);
12035 if (DECL_FRIEND_P (t) && DECL_FRIEND_CONTEXT (t))
12036 SET_DECL_FRIEND_CONTEXT (r,
12037 tsubst (DECL_FRIEND_CONTEXT (t),
12038 args, complain, in_decl));
12040 /* Possibly limit visibility based on template args. */
12041 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
12042 if (DECL_VISIBILITY_SPECIFIED (t))
12044 DECL_VISIBILITY_SPECIFIED (r) = 0;
12045 DECL_ATTRIBUTES (r)
12046 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
12048 determine_visibility (r);
12049 if (DECL_DEFAULTED_OUTSIDE_CLASS_P (r)
12050 && !processing_template_decl)
12051 defaulted_late_check (r);
12053 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
12054 args, complain, in_decl);
12056 break;
12058 case PARM_DECL:
12060 tree type = NULL_TREE;
12061 int i, len = 1;
12062 tree expanded_types = NULL_TREE;
12063 tree prev_r = NULL_TREE;
12064 tree first_r = NULL_TREE;
12066 if (DECL_PACK_P (t))
12068 /* If there is a local specialization that isn't a
12069 parameter pack, it means that we're doing a "simple"
12070 substitution from inside tsubst_pack_expansion. Just
12071 return the local specialization (which will be a single
12072 parm). */
12073 tree spec = retrieve_local_specialization (t);
12074 if (spec
12075 && TREE_CODE (spec) == PARM_DECL
12076 && TREE_CODE (TREE_TYPE (spec)) != TYPE_PACK_EXPANSION)
12077 RETURN (spec);
12079 /* Expand the TYPE_PACK_EXPANSION that provides the types for
12080 the parameters in this function parameter pack. */
12081 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
12082 complain, in_decl);
12083 if (TREE_CODE (expanded_types) == TREE_VEC)
12085 len = TREE_VEC_LENGTH (expanded_types);
12087 /* Zero-length parameter packs are boring. Just substitute
12088 into the chain. */
12089 if (len == 0)
12090 RETURN (tsubst (TREE_CHAIN (t), args, complain,
12091 TREE_CHAIN (t)));
12093 else
12095 /* All we did was update the type. Make a note of that. */
12096 type = expanded_types;
12097 expanded_types = NULL_TREE;
12101 /* Loop through all of the parameters we'll build. When T is
12102 a function parameter pack, LEN is the number of expanded
12103 types in EXPANDED_TYPES; otherwise, LEN is 1. */
12104 r = NULL_TREE;
12105 for (i = 0; i < len; ++i)
12107 prev_r = r;
12108 r = copy_node (t);
12109 if (DECL_TEMPLATE_PARM_P (t))
12110 SET_DECL_TEMPLATE_PARM_P (r);
12112 if (expanded_types)
12113 /* We're on the Ith parameter of the function parameter
12114 pack. */
12116 /* Get the Ith type. */
12117 type = TREE_VEC_ELT (expanded_types, i);
12119 /* Rename the parameter to include the index. */
12120 DECL_NAME (r)
12121 = make_ith_pack_parameter_name (DECL_NAME (r), i);
12123 else if (!type)
12124 /* We're dealing with a normal parameter. */
12125 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12127 type = type_decays_to (type);
12128 TREE_TYPE (r) = type;
12129 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
12131 if (DECL_INITIAL (r))
12133 if (TREE_CODE (DECL_INITIAL (r)) != TEMPLATE_PARM_INDEX)
12134 DECL_INITIAL (r) = TREE_TYPE (r);
12135 else
12136 DECL_INITIAL (r) = tsubst (DECL_INITIAL (r), args,
12137 complain, in_decl);
12140 DECL_CONTEXT (r) = NULL_TREE;
12142 if (!DECL_TEMPLATE_PARM_P (r))
12143 DECL_ARG_TYPE (r) = type_passed_as (type);
12145 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
12146 args, complain, in_decl);
12148 /* Keep track of the first new parameter we
12149 generate. That's what will be returned to the
12150 caller. */
12151 if (!first_r)
12152 first_r = r;
12154 /* Build a proper chain of parameters when substituting
12155 into a function parameter pack. */
12156 if (prev_r)
12157 DECL_CHAIN (prev_r) = r;
12160 /* If cp_unevaluated_operand is set, we're just looking for a
12161 single dummy parameter, so don't keep going. */
12162 if (DECL_CHAIN (t) && !cp_unevaluated_operand)
12163 DECL_CHAIN (r) = tsubst (DECL_CHAIN (t), args,
12164 complain, DECL_CHAIN (t));
12166 /* FIRST_R contains the start of the chain we've built. */
12167 r = first_r;
12169 break;
12171 case FIELD_DECL:
12173 tree type = NULL_TREE;
12174 tree vec = NULL_TREE;
12175 tree expanded_types = NULL_TREE;
12176 int len = 1;
12178 if (PACK_EXPANSION_P (TREE_TYPE (t)))
12180 /* This field is a lambda capture pack. Return a TREE_VEC of
12181 the expanded fields to instantiate_class_template_1 and
12182 store them in the specializations hash table as a
12183 NONTYPE_ARGUMENT_PACK so that tsubst_copy can find them. */
12184 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
12185 complain, in_decl);
12186 if (TREE_CODE (expanded_types) == TREE_VEC)
12188 len = TREE_VEC_LENGTH (expanded_types);
12189 vec = make_tree_vec (len);
12191 else
12193 /* All we did was update the type. Make a note of that. */
12194 type = expanded_types;
12195 expanded_types = NULL_TREE;
12199 for (int i = 0; i < len; ++i)
12201 r = copy_decl (t);
12202 if (expanded_types)
12204 type = TREE_VEC_ELT (expanded_types, i);
12205 DECL_NAME (r)
12206 = make_ith_pack_parameter_name (DECL_NAME (r), i);
12208 else if (!type)
12209 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12211 if (type == error_mark_node)
12212 RETURN (error_mark_node);
12213 TREE_TYPE (r) = type;
12214 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
12216 if (DECL_C_BIT_FIELD (r))
12217 /* For bit-fields, DECL_INITIAL gives the number of bits. For
12218 non-bit-fields DECL_INITIAL is a non-static data member
12219 initializer, which gets deferred instantiation. */
12220 DECL_INITIAL (r)
12221 = tsubst_expr (DECL_INITIAL (t), args,
12222 complain, in_decl,
12223 /*integral_constant_expression_p=*/true);
12224 else if (DECL_INITIAL (t))
12226 /* Set up DECL_TEMPLATE_INFO so that we can get at the
12227 NSDMI in perform_member_init. Still set DECL_INITIAL
12228 so that we know there is one. */
12229 DECL_INITIAL (r) = void_node;
12230 gcc_assert (DECL_LANG_SPECIFIC (r) == NULL);
12231 retrofit_lang_decl (r);
12232 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
12234 /* We don't have to set DECL_CONTEXT here; it is set by
12235 finish_member_declaration. */
12236 DECL_CHAIN (r) = NULL_TREE;
12238 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
12239 args, complain, in_decl);
12241 if (vec)
12242 TREE_VEC_ELT (vec, i) = r;
12245 if (vec)
12247 r = vec;
12248 tree pack = make_node (NONTYPE_ARGUMENT_PACK);
12249 tree tpack = cxx_make_type (TYPE_ARGUMENT_PACK);
12250 SET_ARGUMENT_PACK_ARGS (pack, vec);
12251 SET_ARGUMENT_PACK_ARGS (tpack, expanded_types);
12252 TREE_TYPE (pack) = tpack;
12253 register_specialization (pack, t, args, false, 0);
12256 break;
12258 case USING_DECL:
12259 /* We reach here only for member using decls. We also need to check
12260 uses_template_parms because DECL_DEPENDENT_P is not set for a
12261 using-declaration that designates a member of the current
12262 instantiation (c++/53549). */
12263 if (DECL_DEPENDENT_P (t)
12264 || uses_template_parms (USING_DECL_SCOPE (t)))
12266 tree inst_scope = tsubst_copy (USING_DECL_SCOPE (t), args,
12267 complain, in_decl);
12268 tree name = tsubst_copy (DECL_NAME (t), args, complain, in_decl);
12269 r = do_class_using_decl (inst_scope, name);
12270 if (!r)
12271 r = error_mark_node;
12272 else
12274 TREE_PROTECTED (r) = TREE_PROTECTED (t);
12275 TREE_PRIVATE (r) = TREE_PRIVATE (t);
12278 else
12280 r = copy_node (t);
12281 DECL_CHAIN (r) = NULL_TREE;
12283 break;
12285 case TYPE_DECL:
12286 case VAR_DECL:
12288 tree argvec = NULL_TREE;
12289 tree gen_tmpl = NULL_TREE;
12290 tree spec;
12291 tree tmpl = NULL_TREE;
12292 tree ctx;
12293 tree type = NULL_TREE;
12294 bool local_p;
12296 if (TREE_TYPE (t) == error_mark_node)
12297 RETURN (error_mark_node);
12299 if (TREE_CODE (t) == TYPE_DECL
12300 && t == TYPE_MAIN_DECL (TREE_TYPE (t)))
12302 /* If this is the canonical decl, we don't have to
12303 mess with instantiations, and often we can't (for
12304 typename, template type parms and such). Note that
12305 TYPE_NAME is not correct for the above test if
12306 we've copied the type for a typedef. */
12307 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12308 if (type == error_mark_node)
12309 RETURN (error_mark_node);
12310 r = TYPE_NAME (type);
12311 break;
12314 /* Check to see if we already have the specialization we
12315 need. */
12316 spec = NULL_TREE;
12317 if (DECL_CLASS_SCOPE_P (t) || DECL_NAMESPACE_SCOPE_P (t))
12319 /* T is a static data member or namespace-scope entity.
12320 We have to substitute into namespace-scope variables
12321 (not just variable templates) because of cases like:
12323 template <class T> void f() { extern T t; }
12325 where the entity referenced is not known until
12326 instantiation time. */
12327 local_p = false;
12328 ctx = DECL_CONTEXT (t);
12329 if (DECL_CLASS_SCOPE_P (t))
12331 ctx = tsubst_aggr_type (ctx, args,
12332 complain,
12333 in_decl, /*entering_scope=*/1);
12334 /* If CTX is unchanged, then T is in fact the
12335 specialization we want. That situation occurs when
12336 referencing a static data member within in its own
12337 class. We can use pointer equality, rather than
12338 same_type_p, because DECL_CONTEXT is always
12339 canonical... */
12340 if (ctx == DECL_CONTEXT (t)
12341 /* ... unless T is a member template; in which
12342 case our caller can be willing to create a
12343 specialization of that template represented
12344 by T. */
12345 && !(DECL_TI_TEMPLATE (t)
12346 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (t))))
12347 spec = t;
12350 if (!spec)
12352 tmpl = DECL_TI_TEMPLATE (t);
12353 gen_tmpl = most_general_template (tmpl);
12354 argvec = tsubst (DECL_TI_ARGS (t), args, complain, in_decl);
12355 if (argvec != error_mark_node)
12356 argvec = (coerce_innermost_template_parms
12357 (DECL_TEMPLATE_PARMS (gen_tmpl),
12358 argvec, t, complain,
12359 /*all*/true, /*defarg*/true));
12360 if (argvec == error_mark_node)
12361 RETURN (error_mark_node);
12362 hash = hash_tmpl_and_args (gen_tmpl, argvec);
12363 spec = retrieve_specialization (gen_tmpl, argvec, hash);
12366 else
12368 /* A local variable. */
12369 local_p = true;
12370 /* Subsequent calls to pushdecl will fill this in. */
12371 ctx = NULL_TREE;
12372 /* Unless this is a reference to a static variable from an
12373 enclosing function, in which case we need to fill it in now. */
12374 if (TREE_STATIC (t))
12376 tree fn = tsubst (DECL_CONTEXT (t), args, complain, in_decl);
12377 if (fn != current_function_decl)
12378 ctx = fn;
12380 spec = retrieve_local_specialization (t);
12382 /* If we already have the specialization we need, there is
12383 nothing more to do. */
12384 if (spec)
12386 r = spec;
12387 break;
12390 /* Create a new node for the specialization we need. */
12391 r = copy_decl (t);
12392 if (type == NULL_TREE)
12394 if (is_typedef_decl (t))
12395 type = DECL_ORIGINAL_TYPE (t);
12396 else
12397 type = TREE_TYPE (t);
12398 if (VAR_P (t)
12399 && VAR_HAD_UNKNOWN_BOUND (t)
12400 && type != error_mark_node)
12401 type = strip_array_domain (type);
12402 type = tsubst (type, args, complain, in_decl);
12404 if (VAR_P (r))
12406 /* Even if the original location is out of scope, the
12407 newly substituted one is not. */
12408 DECL_DEAD_FOR_LOCAL (r) = 0;
12409 DECL_INITIALIZED_P (r) = 0;
12410 DECL_TEMPLATE_INSTANTIATED (r) = 0;
12411 if (type == error_mark_node)
12412 RETURN (error_mark_node);
12413 if (TREE_CODE (type) == FUNCTION_TYPE)
12415 /* It may seem that this case cannot occur, since:
12417 typedef void f();
12418 void g() { f x; }
12420 declares a function, not a variable. However:
12422 typedef void f();
12423 template <typename T> void g() { T t; }
12424 template void g<f>();
12426 is an attempt to declare a variable with function
12427 type. */
12428 error ("variable %qD has function type",
12429 /* R is not yet sufficiently initialized, so we
12430 just use its name. */
12431 DECL_NAME (r));
12432 RETURN (error_mark_node);
12434 type = complete_type (type);
12435 /* Wait until cp_finish_decl to set this again, to handle
12436 circular dependency (template/instantiate6.C). */
12437 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r) = 0;
12438 type = check_var_type (DECL_NAME (r), type);
12440 if (DECL_HAS_VALUE_EXPR_P (t))
12442 tree ve = DECL_VALUE_EXPR (t);
12443 ve = tsubst_expr (ve, args, complain, in_decl,
12444 /*constant_expression_p=*/false);
12445 if (REFERENCE_REF_P (ve))
12447 gcc_assert (TREE_CODE (type) == REFERENCE_TYPE);
12448 ve = TREE_OPERAND (ve, 0);
12450 SET_DECL_VALUE_EXPR (r, ve);
12452 if (CP_DECL_THREAD_LOCAL_P (r)
12453 && !processing_template_decl)
12454 set_decl_tls_model (r, decl_default_tls_model (r));
12456 else if (DECL_SELF_REFERENCE_P (t))
12457 SET_DECL_SELF_REFERENCE_P (r);
12458 TREE_TYPE (r) = type;
12459 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
12460 DECL_CONTEXT (r) = ctx;
12461 /* Clear out the mangled name and RTL for the instantiation. */
12462 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
12463 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
12464 SET_DECL_RTL (r, NULL);
12465 /* The initializer must not be expanded until it is required;
12466 see [temp.inst]. */
12467 DECL_INITIAL (r) = NULL_TREE;
12468 if (VAR_P (r))
12469 DECL_MODE (r) = VOIDmode;
12470 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
12471 SET_DECL_RTL (r, NULL);
12472 DECL_SIZE (r) = DECL_SIZE_UNIT (r) = 0;
12473 if (VAR_P (r))
12475 /* Possibly limit visibility based on template args. */
12476 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
12477 if (DECL_VISIBILITY_SPECIFIED (t))
12479 DECL_VISIBILITY_SPECIFIED (r) = 0;
12480 DECL_ATTRIBUTES (r)
12481 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
12483 determine_visibility (r);
12486 if (!local_p)
12488 /* A static data member declaration is always marked
12489 external when it is declared in-class, even if an
12490 initializer is present. We mimic the non-template
12491 processing here. */
12492 DECL_EXTERNAL (r) = 1;
12493 if (DECL_NAMESPACE_SCOPE_P (t))
12494 DECL_NOT_REALLY_EXTERN (r) = 1;
12496 DECL_TEMPLATE_INFO (r) = build_template_info (tmpl, argvec);
12497 SET_DECL_IMPLICIT_INSTANTIATION (r);
12498 register_specialization (r, gen_tmpl, argvec, false, hash);
12500 else
12502 if (DECL_LANG_SPECIFIC (r))
12503 DECL_TEMPLATE_INFO (r) = NULL_TREE;
12504 if (!cp_unevaluated_operand)
12505 register_local_specialization (r, t);
12508 DECL_CHAIN (r) = NULL_TREE;
12510 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r),
12511 /*flags=*/0,
12512 args, complain, in_decl);
12514 /* Preserve a typedef that names a type. */
12515 if (is_typedef_decl (r))
12517 DECL_ORIGINAL_TYPE (r) = NULL_TREE;
12518 set_underlying_type (r);
12519 if (TYPE_DECL_ALIAS_P (r) && type != error_mark_node)
12520 /* An alias template specialization can be dependent
12521 even if its underlying type is not. */
12522 TYPE_DEPENDENT_P_VALID (TREE_TYPE (r)) = false;
12525 layout_decl (r, 0);
12527 break;
12529 default:
12530 gcc_unreachable ();
12532 #undef RETURN
12534 out:
12535 /* Restore the file and line information. */
12536 input_location = saved_loc;
12538 return r;
12541 /* Substitute into the ARG_TYPES of a function type.
12542 If END is a TREE_CHAIN, leave it and any following types
12543 un-substituted. */
12545 static tree
12546 tsubst_arg_types (tree arg_types,
12547 tree args,
12548 tree end,
12549 tsubst_flags_t complain,
12550 tree in_decl)
12552 tree remaining_arg_types;
12553 tree type = NULL_TREE;
12554 int i = 1;
12555 tree expanded_args = NULL_TREE;
12556 tree default_arg;
12558 if (!arg_types || arg_types == void_list_node || arg_types == end)
12559 return arg_types;
12561 remaining_arg_types = tsubst_arg_types (TREE_CHAIN (arg_types),
12562 args, end, complain, in_decl);
12563 if (remaining_arg_types == error_mark_node)
12564 return error_mark_node;
12566 if (PACK_EXPANSION_P (TREE_VALUE (arg_types)))
12568 /* For a pack expansion, perform substitution on the
12569 entire expression. Later on, we'll handle the arguments
12570 one-by-one. */
12571 expanded_args = tsubst_pack_expansion (TREE_VALUE (arg_types),
12572 args, complain, in_decl);
12574 if (TREE_CODE (expanded_args) == TREE_VEC)
12575 /* So that we'll spin through the parameters, one by one. */
12576 i = TREE_VEC_LENGTH (expanded_args);
12577 else
12579 /* We only partially substituted into the parameter
12580 pack. Our type is TYPE_PACK_EXPANSION. */
12581 type = expanded_args;
12582 expanded_args = NULL_TREE;
12586 while (i > 0) {
12587 --i;
12589 if (expanded_args)
12590 type = TREE_VEC_ELT (expanded_args, i);
12591 else if (!type)
12592 type = tsubst (TREE_VALUE (arg_types), args, complain, in_decl);
12594 if (type == error_mark_node)
12595 return error_mark_node;
12596 if (VOID_TYPE_P (type))
12598 if (complain & tf_error)
12600 error ("invalid parameter type %qT", type);
12601 if (in_decl)
12602 error ("in declaration %q+D", in_decl);
12604 return error_mark_node;
12606 /* DR 657. */
12607 if (abstract_virtuals_error_sfinae (ACU_PARM, type, complain))
12608 return error_mark_node;
12610 /* Do array-to-pointer, function-to-pointer conversion, and ignore
12611 top-level qualifiers as required. */
12612 type = cv_unqualified (type_decays_to (type));
12614 /* We do not substitute into default arguments here. The standard
12615 mandates that they be instantiated only when needed, which is
12616 done in build_over_call. */
12617 default_arg = TREE_PURPOSE (arg_types);
12619 if (default_arg && TREE_CODE (default_arg) == DEFAULT_ARG)
12621 /* We've instantiated a template before its default arguments
12622 have been parsed. This can happen for a nested template
12623 class, and is not an error unless we require the default
12624 argument in a call of this function. */
12625 remaining_arg_types =
12626 tree_cons (default_arg, type, remaining_arg_types);
12627 vec_safe_push (DEFARG_INSTANTIATIONS(default_arg), remaining_arg_types);
12629 else
12630 remaining_arg_types =
12631 hash_tree_cons (default_arg, type, remaining_arg_types);
12634 return remaining_arg_types;
12637 /* Substitute into a FUNCTION_TYPE or METHOD_TYPE. This routine does
12638 *not* handle the exception-specification for FNTYPE, because the
12639 initial substitution of explicitly provided template parameters
12640 during argument deduction forbids substitution into the
12641 exception-specification:
12643 [temp.deduct]
12645 All references in the function type of the function template to the
12646 corresponding template parameters are replaced by the specified tem-
12647 plate argument values. If a substitution in a template parameter or
12648 in the function type of the function template results in an invalid
12649 type, type deduction fails. [Note: The equivalent substitution in
12650 exception specifications is done only when the function is instanti-
12651 ated, at which point a program is ill-formed if the substitution
12652 results in an invalid type.] */
12654 static tree
12655 tsubst_function_type (tree t,
12656 tree args,
12657 tsubst_flags_t complain,
12658 tree in_decl)
12660 tree return_type;
12661 tree arg_types = NULL_TREE;
12662 tree fntype;
12664 /* The TYPE_CONTEXT is not used for function/method types. */
12665 gcc_assert (TYPE_CONTEXT (t) == NULL_TREE);
12667 /* DR 1227: Mixing immediate and non-immediate contexts in deduction
12668 failure. */
12669 bool late_return_type_p = TYPE_HAS_LATE_RETURN_TYPE (t);
12671 if (late_return_type_p)
12673 /* Substitute the argument types. */
12674 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, NULL_TREE,
12675 complain, in_decl);
12676 if (arg_types == error_mark_node)
12677 return error_mark_node;
12679 tree save_ccp = current_class_ptr;
12680 tree save_ccr = current_class_ref;
12681 tree this_type = (TREE_CODE (t) == METHOD_TYPE
12682 ? TREE_TYPE (TREE_VALUE (arg_types)) : NULL_TREE);
12683 bool do_inject = this_type && CLASS_TYPE_P (this_type);
12684 if (do_inject)
12686 /* DR 1207: 'this' is in scope in the trailing return type. */
12687 inject_this_parameter (this_type, cp_type_quals (this_type));
12690 /* Substitute the return type. */
12691 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12693 if (do_inject)
12695 current_class_ptr = save_ccp;
12696 current_class_ref = save_ccr;
12699 else
12700 /* Substitute the return type. */
12701 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
12703 if (return_type == error_mark_node)
12704 return error_mark_node;
12705 /* DR 486 clarifies that creation of a function type with an
12706 invalid return type is a deduction failure. */
12707 if (TREE_CODE (return_type) == ARRAY_TYPE
12708 || TREE_CODE (return_type) == FUNCTION_TYPE)
12710 if (complain & tf_error)
12712 if (TREE_CODE (return_type) == ARRAY_TYPE)
12713 error ("function returning an array");
12714 else
12715 error ("function returning a function");
12717 return error_mark_node;
12719 /* And DR 657. */
12720 if (abstract_virtuals_error_sfinae (ACU_RETURN, return_type, complain))
12721 return error_mark_node;
12723 if (!late_return_type_p)
12725 /* Substitute the argument types. */
12726 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, NULL_TREE,
12727 complain, in_decl);
12728 if (arg_types == error_mark_node)
12729 return error_mark_node;
12732 /* Construct a new type node and return it. */
12733 if (TREE_CODE (t) == FUNCTION_TYPE)
12735 fntype = build_function_type (return_type, arg_types);
12736 fntype = apply_memfn_quals (fntype,
12737 type_memfn_quals (t),
12738 type_memfn_rqual (t));
12740 else
12742 tree r = TREE_TYPE (TREE_VALUE (arg_types));
12743 /* Don't pick up extra function qualifiers from the basetype. */
12744 r = cp_build_qualified_type_real (r, type_memfn_quals (t), complain);
12745 if (! MAYBE_CLASS_TYPE_P (r))
12747 /* [temp.deduct]
12749 Type deduction may fail for any of the following
12750 reasons:
12752 -- Attempting to create "pointer to member of T" when T
12753 is not a class type. */
12754 if (complain & tf_error)
12755 error ("creating pointer to member function of non-class type %qT",
12757 return error_mark_node;
12760 fntype = build_method_type_directly (r, return_type,
12761 TREE_CHAIN (arg_types));
12762 fntype = build_ref_qualified_type (fntype, type_memfn_rqual (t));
12764 fntype = cp_build_type_attribute_variant (fntype, TYPE_ATTRIBUTES (t));
12766 if (late_return_type_p)
12767 TYPE_HAS_LATE_RETURN_TYPE (fntype) = 1;
12769 return fntype;
12772 /* FNTYPE is a FUNCTION_TYPE or METHOD_TYPE. Substitute the template
12773 ARGS into that specification, and return the substituted
12774 specification. If there is no specification, return NULL_TREE. */
12776 static tree
12777 tsubst_exception_specification (tree fntype,
12778 tree args,
12779 tsubst_flags_t complain,
12780 tree in_decl,
12781 bool defer_ok)
12783 tree specs;
12784 tree new_specs;
12786 specs = TYPE_RAISES_EXCEPTIONS (fntype);
12787 new_specs = NULL_TREE;
12788 if (specs && TREE_PURPOSE (specs))
12790 /* A noexcept-specifier. */
12791 tree expr = TREE_PURPOSE (specs);
12792 if (TREE_CODE (expr) == INTEGER_CST)
12793 new_specs = expr;
12794 else if (defer_ok)
12796 /* Defer instantiation of noexcept-specifiers to avoid
12797 excessive instantiations (c++/49107). */
12798 new_specs = make_node (DEFERRED_NOEXCEPT);
12799 if (DEFERRED_NOEXCEPT_SPEC_P (specs))
12801 /* We already partially instantiated this member template,
12802 so combine the new args with the old. */
12803 DEFERRED_NOEXCEPT_PATTERN (new_specs)
12804 = DEFERRED_NOEXCEPT_PATTERN (expr);
12805 DEFERRED_NOEXCEPT_ARGS (new_specs)
12806 = add_to_template_args (DEFERRED_NOEXCEPT_ARGS (expr), args);
12808 else
12810 DEFERRED_NOEXCEPT_PATTERN (new_specs) = expr;
12811 DEFERRED_NOEXCEPT_ARGS (new_specs) = args;
12814 else
12815 new_specs = tsubst_copy_and_build
12816 (expr, args, complain, in_decl, /*function_p=*/false,
12817 /*integral_constant_expression_p=*/true);
12818 new_specs = build_noexcept_spec (new_specs, complain);
12820 else if (specs)
12822 if (! TREE_VALUE (specs))
12823 new_specs = specs;
12824 else
12825 while (specs)
12827 tree spec;
12828 int i, len = 1;
12829 tree expanded_specs = NULL_TREE;
12831 if (PACK_EXPANSION_P (TREE_VALUE (specs)))
12833 /* Expand the pack expansion type. */
12834 expanded_specs = tsubst_pack_expansion (TREE_VALUE (specs),
12835 args, complain,
12836 in_decl);
12838 if (expanded_specs == error_mark_node)
12839 return error_mark_node;
12840 else if (TREE_CODE (expanded_specs) == TREE_VEC)
12841 len = TREE_VEC_LENGTH (expanded_specs);
12842 else
12844 /* We're substituting into a member template, so
12845 we got a TYPE_PACK_EXPANSION back. Add that
12846 expansion and move on. */
12847 gcc_assert (TREE_CODE (expanded_specs)
12848 == TYPE_PACK_EXPANSION);
12849 new_specs = add_exception_specifier (new_specs,
12850 expanded_specs,
12851 complain);
12852 specs = TREE_CHAIN (specs);
12853 continue;
12857 for (i = 0; i < len; ++i)
12859 if (expanded_specs)
12860 spec = TREE_VEC_ELT (expanded_specs, i);
12861 else
12862 spec = tsubst (TREE_VALUE (specs), args, complain, in_decl);
12863 if (spec == error_mark_node)
12864 return spec;
12865 new_specs = add_exception_specifier (new_specs, spec,
12866 complain);
12869 specs = TREE_CHAIN (specs);
12872 return new_specs;
12875 /* Take the tree structure T and replace template parameters used
12876 therein with the argument vector ARGS. IN_DECL is an associated
12877 decl for diagnostics. If an error occurs, returns ERROR_MARK_NODE.
12878 Issue error and warning messages under control of COMPLAIN. Note
12879 that we must be relatively non-tolerant of extensions here, in
12880 order to preserve conformance; if we allow substitutions that
12881 should not be allowed, we may allow argument deductions that should
12882 not succeed, and therefore report ambiguous overload situations
12883 where there are none. In theory, we could allow the substitution,
12884 but indicate that it should have failed, and allow our caller to
12885 make sure that the right thing happens, but we don't try to do this
12886 yet.
12888 This function is used for dealing with types, decls and the like;
12889 for expressions, use tsubst_expr or tsubst_copy. */
12891 tree
12892 tsubst (tree t, tree args, tsubst_flags_t complain, tree in_decl)
12894 enum tree_code code;
12895 tree type, r = NULL_TREE;
12897 if (t == NULL_TREE || t == error_mark_node
12898 || t == integer_type_node
12899 || t == void_type_node
12900 || t == char_type_node
12901 || t == unknown_type_node
12902 || TREE_CODE (t) == NAMESPACE_DECL
12903 || TREE_CODE (t) == TRANSLATION_UNIT_DECL)
12904 return t;
12906 if (DECL_P (t))
12907 return tsubst_decl (t, args, complain);
12909 if (args == NULL_TREE)
12910 return t;
12912 code = TREE_CODE (t);
12914 if (code == IDENTIFIER_NODE)
12915 type = IDENTIFIER_TYPE_VALUE (t);
12916 else
12917 type = TREE_TYPE (t);
12919 gcc_assert (type != unknown_type_node);
12921 /* Reuse typedefs. We need to do this to handle dependent attributes,
12922 such as attribute aligned. */
12923 if (TYPE_P (t)
12924 && typedef_variant_p (t))
12926 tree decl = TYPE_NAME (t);
12928 if (alias_template_specialization_p (t))
12930 /* DECL represents an alias template and we want to
12931 instantiate it. */
12932 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
12933 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
12934 r = instantiate_alias_template (tmpl, gen_args, complain);
12936 else if (DECL_CLASS_SCOPE_P (decl)
12937 && CLASSTYPE_TEMPLATE_INFO (DECL_CONTEXT (decl))
12938 && uses_template_parms (DECL_CONTEXT (decl)))
12940 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
12941 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
12942 r = retrieve_specialization (tmpl, gen_args, 0);
12944 else if (DECL_FUNCTION_SCOPE_P (decl)
12945 && DECL_TEMPLATE_INFO (DECL_CONTEXT (decl))
12946 && uses_template_parms (DECL_TI_ARGS (DECL_CONTEXT (decl))))
12947 r = retrieve_local_specialization (decl);
12948 else
12949 /* The typedef is from a non-template context. */
12950 return t;
12952 if (r)
12954 r = TREE_TYPE (r);
12955 r = cp_build_qualified_type_real
12956 (r, cp_type_quals (t) | cp_type_quals (r),
12957 complain | tf_ignore_bad_quals);
12958 return r;
12960 else
12962 /* We don't have an instantiation yet, so drop the typedef. */
12963 int quals = cp_type_quals (t);
12964 t = DECL_ORIGINAL_TYPE (decl);
12965 t = cp_build_qualified_type_real (t, quals,
12966 complain | tf_ignore_bad_quals);
12970 if (type
12971 && code != TYPENAME_TYPE
12972 && code != TEMPLATE_TYPE_PARM
12973 && code != IDENTIFIER_NODE
12974 && code != FUNCTION_TYPE
12975 && code != METHOD_TYPE)
12976 type = tsubst (type, args, complain, in_decl);
12977 if (type == error_mark_node)
12978 return error_mark_node;
12980 switch (code)
12982 case RECORD_TYPE:
12983 case UNION_TYPE:
12984 case ENUMERAL_TYPE:
12985 return tsubst_aggr_type (t, args, complain, in_decl,
12986 /*entering_scope=*/0);
12988 case ERROR_MARK:
12989 case IDENTIFIER_NODE:
12990 case VOID_TYPE:
12991 case REAL_TYPE:
12992 case COMPLEX_TYPE:
12993 case VECTOR_TYPE:
12994 case BOOLEAN_TYPE:
12995 case NULLPTR_TYPE:
12996 case LANG_TYPE:
12997 return t;
12999 case INTEGER_TYPE:
13000 if (t == integer_type_node)
13001 return t;
13003 if (TREE_CODE (TYPE_MIN_VALUE (t)) == INTEGER_CST
13004 && TREE_CODE (TYPE_MAX_VALUE (t)) == INTEGER_CST)
13005 return t;
13008 tree max, omax = TREE_OPERAND (TYPE_MAX_VALUE (t), 0);
13010 max = tsubst_expr (omax, args, complain, in_decl,
13011 /*integral_constant_expression_p=*/false);
13013 /* Fix up type of the magic NOP_EXPR with TREE_SIDE_EFFECTS if
13014 needed. */
13015 if (TREE_CODE (max) == NOP_EXPR
13016 && TREE_SIDE_EFFECTS (omax)
13017 && !TREE_TYPE (max))
13018 TREE_TYPE (max) = TREE_TYPE (TREE_OPERAND (max, 0));
13020 /* If we're in a partial instantiation, preserve the magic NOP_EXPR
13021 with TREE_SIDE_EFFECTS that indicates this is not an integral
13022 constant expression. */
13023 if (processing_template_decl
13024 && TREE_SIDE_EFFECTS (omax) && TREE_CODE (omax) == NOP_EXPR)
13026 gcc_assert (TREE_CODE (max) == NOP_EXPR);
13027 TREE_SIDE_EFFECTS (max) = 1;
13030 return compute_array_index_type (NULL_TREE, max, complain);
13033 case TEMPLATE_TYPE_PARM:
13034 case TEMPLATE_TEMPLATE_PARM:
13035 case BOUND_TEMPLATE_TEMPLATE_PARM:
13036 case TEMPLATE_PARM_INDEX:
13038 int idx;
13039 int level;
13040 int levels;
13041 tree arg = NULL_TREE;
13043 /* Early in template argument deduction substitution, we don't
13044 want to reduce the level of 'auto', or it will be confused
13045 with a normal template parm in subsequent deduction. */
13046 if (is_auto (t) && (complain & tf_partial))
13047 return t;
13049 r = NULL_TREE;
13051 gcc_assert (TREE_VEC_LENGTH (args) > 0);
13052 template_parm_level_and_index (t, &level, &idx);
13054 levels = TMPL_ARGS_DEPTH (args);
13055 if (level <= levels
13056 && TREE_VEC_LENGTH (TMPL_ARGS_LEVEL (args, level)) > 0)
13058 arg = TMPL_ARG (args, level, idx);
13060 if (arg && TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
13062 /* See through ARGUMENT_PACK_SELECT arguments. */
13063 arg = ARGUMENT_PACK_SELECT_ARG (arg);
13064 /* If the selected argument is an expansion E, that most
13065 likely means we were called from
13066 gen_elem_of_pack_expansion_instantiation during the
13067 substituting of pack an argument pack (which Ith
13068 element is a pack expansion, where I is
13069 ARGUMENT_PACK_SELECT_INDEX) into a pack expansion.
13070 In this case, the Ith element resulting from this
13071 substituting is going to be a pack expansion, which
13072 pattern is the pattern of E. Let's return the
13073 pattern of E, and
13074 gen_elem_of_pack_expansion_instantiation will
13075 build the resulting pack expansion from it. */
13076 if (PACK_EXPANSION_P (arg))
13078 /* Make sure we aren't throwing away arg info. */
13079 gcc_assert (!PACK_EXPANSION_EXTRA_ARGS (arg));
13080 arg = PACK_EXPANSION_PATTERN (arg);
13085 if (arg == error_mark_node)
13086 return error_mark_node;
13087 else if (arg != NULL_TREE)
13089 if (ARGUMENT_PACK_P (arg))
13090 /* If ARG is an argument pack, we don't actually want to
13091 perform a substitution here, because substitutions
13092 for argument packs are only done
13093 element-by-element. We can get to this point when
13094 substituting the type of a non-type template
13095 parameter pack, when that type actually contains
13096 template parameter packs from an outer template, e.g.,
13098 template<typename... Types> struct A {
13099 template<Types... Values> struct B { };
13100 }; */
13101 return t;
13103 if (code == TEMPLATE_TYPE_PARM)
13105 int quals;
13106 gcc_assert (TYPE_P (arg));
13108 quals = cp_type_quals (arg) | cp_type_quals (t);
13110 return cp_build_qualified_type_real
13111 (arg, quals, complain | tf_ignore_bad_quals);
13113 else if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
13115 /* We are processing a type constructed from a
13116 template template parameter. */
13117 tree argvec = tsubst (TYPE_TI_ARGS (t),
13118 args, complain, in_decl);
13119 if (argvec == error_mark_node)
13120 return error_mark_node;
13122 gcc_assert (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
13123 || TREE_CODE (arg) == TEMPLATE_DECL
13124 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
13126 if (TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE)
13127 /* Consider this code:
13129 template <template <class> class Template>
13130 struct Internal {
13131 template <class Arg> using Bind = Template<Arg>;
13134 template <template <class> class Template, class Arg>
13135 using Instantiate = Template<Arg>; //#0
13137 template <template <class> class Template,
13138 class Argument>
13139 using Bind =
13140 Instantiate<Internal<Template>::template Bind,
13141 Argument>; //#1
13143 When #1 is parsed, the
13144 BOUND_TEMPLATE_TEMPLATE_PARM representing the
13145 parameter `Template' in #0 matches the
13146 UNBOUND_CLASS_TEMPLATE representing the argument
13147 `Internal<Template>::template Bind'; We then want
13148 to assemble the type `Bind<Argument>' that can't
13149 be fully created right now, because
13150 `Internal<Template>' not being complete, the Bind
13151 template cannot be looked up in that context. So
13152 we need to "store" `Bind<Argument>' for later
13153 when the context of Bind becomes complete. Let's
13154 store that in a TYPENAME_TYPE. */
13155 return make_typename_type (TYPE_CONTEXT (arg),
13156 build_nt (TEMPLATE_ID_EXPR,
13157 TYPE_IDENTIFIER (arg),
13158 argvec),
13159 typename_type,
13160 complain);
13162 /* We can get a TEMPLATE_TEMPLATE_PARM here when we
13163 are resolving nested-types in the signature of a
13164 member function templates. Otherwise ARG is a
13165 TEMPLATE_DECL and is the real template to be
13166 instantiated. */
13167 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
13168 arg = TYPE_NAME (arg);
13170 r = lookup_template_class (arg,
13171 argvec, in_decl,
13172 DECL_CONTEXT (arg),
13173 /*entering_scope=*/0,
13174 complain);
13175 return cp_build_qualified_type_real
13176 (r, cp_type_quals (t) | cp_type_quals (r), complain);
13178 else
13179 /* TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX. */
13180 return convert_from_reference (unshare_expr (arg));
13183 if (level == 1)
13184 /* This can happen during the attempted tsubst'ing in
13185 unify. This means that we don't yet have any information
13186 about the template parameter in question. */
13187 return t;
13189 /* If we get here, we must have been looking at a parm for a
13190 more deeply nested template. Make a new version of this
13191 template parameter, but with a lower level. */
13192 switch (code)
13194 case TEMPLATE_TYPE_PARM:
13195 case TEMPLATE_TEMPLATE_PARM:
13196 case BOUND_TEMPLATE_TEMPLATE_PARM:
13197 if (cp_type_quals (t))
13199 r = tsubst (TYPE_MAIN_VARIANT (t), args, complain, in_decl);
13200 r = cp_build_qualified_type_real
13201 (r, cp_type_quals (t),
13202 complain | (code == TEMPLATE_TYPE_PARM
13203 ? tf_ignore_bad_quals : 0));
13205 else if (TREE_CODE (t) == TEMPLATE_TYPE_PARM
13206 && PLACEHOLDER_TYPE_CONSTRAINTS (t)
13207 && (r = (TEMPLATE_PARM_DESCENDANTS
13208 (TEMPLATE_TYPE_PARM_INDEX (t))))
13209 && (r = TREE_TYPE (r))
13210 && !PLACEHOLDER_TYPE_CONSTRAINTS (r))
13211 /* Break infinite recursion when substituting the constraints
13212 of a constrained placeholder. */;
13213 else
13215 r = copy_type (t);
13216 TEMPLATE_TYPE_PARM_INDEX (r)
13217 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (t),
13218 r, levels, args, complain);
13219 TYPE_STUB_DECL (r) = TYPE_NAME (r) = TEMPLATE_TYPE_DECL (r);
13220 TYPE_MAIN_VARIANT (r) = r;
13221 TYPE_POINTER_TO (r) = NULL_TREE;
13222 TYPE_REFERENCE_TO (r) = NULL_TREE;
13224 /* Propagate constraints on placeholders. */
13225 if (TREE_CODE (t) == TEMPLATE_TYPE_PARM)
13226 if (tree constr = PLACEHOLDER_TYPE_CONSTRAINTS (t))
13227 PLACEHOLDER_TYPE_CONSTRAINTS (r)
13228 = tsubst_constraint (constr, args, complain, in_decl);
13230 if (TREE_CODE (r) == TEMPLATE_TEMPLATE_PARM)
13231 /* We have reduced the level of the template
13232 template parameter, but not the levels of its
13233 template parameters, so canonical_type_parameter
13234 will not be able to find the canonical template
13235 template parameter for this level. Thus, we
13236 require structural equality checking to compare
13237 TEMPLATE_TEMPLATE_PARMs. */
13238 SET_TYPE_STRUCTURAL_EQUALITY (r);
13239 else if (TYPE_STRUCTURAL_EQUALITY_P (t))
13240 SET_TYPE_STRUCTURAL_EQUALITY (r);
13241 else
13242 TYPE_CANONICAL (r) = canonical_type_parameter (r);
13244 if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
13246 tree tinfo = TYPE_TEMPLATE_INFO (t);
13247 /* We might need to substitute into the types of non-type
13248 template parameters. */
13249 tree tmpl = tsubst (TI_TEMPLATE (tinfo), args,
13250 complain, in_decl);
13251 if (tmpl == error_mark_node)
13252 return error_mark_node;
13253 tree argvec = tsubst (TI_ARGS (tinfo), args,
13254 complain, in_decl);
13255 if (argvec == error_mark_node)
13256 return error_mark_node;
13258 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (r)
13259 = build_template_info (tmpl, argvec);
13262 break;
13264 case TEMPLATE_PARM_INDEX:
13265 r = reduce_template_parm_level (t, type, levels, args, complain);
13266 break;
13268 default:
13269 gcc_unreachable ();
13272 return r;
13275 case TREE_LIST:
13277 tree purpose, value, chain;
13279 if (t == void_list_node)
13280 return t;
13282 purpose = TREE_PURPOSE (t);
13283 if (purpose)
13285 purpose = tsubst (purpose, args, complain, in_decl);
13286 if (purpose == error_mark_node)
13287 return error_mark_node;
13289 value = TREE_VALUE (t);
13290 if (value)
13292 value = tsubst (value, args, complain, in_decl);
13293 if (value == error_mark_node)
13294 return error_mark_node;
13296 chain = TREE_CHAIN (t);
13297 if (chain && chain != void_type_node)
13299 chain = tsubst (chain, args, complain, in_decl);
13300 if (chain == error_mark_node)
13301 return error_mark_node;
13303 if (purpose == TREE_PURPOSE (t)
13304 && value == TREE_VALUE (t)
13305 && chain == TREE_CHAIN (t))
13306 return t;
13307 return hash_tree_cons (purpose, value, chain);
13310 case TREE_BINFO:
13311 /* We should never be tsubsting a binfo. */
13312 gcc_unreachable ();
13314 case TREE_VEC:
13315 /* A vector of template arguments. */
13316 gcc_assert (!type);
13317 return tsubst_template_args (t, args, complain, in_decl);
13319 case POINTER_TYPE:
13320 case REFERENCE_TYPE:
13322 if (type == TREE_TYPE (t) && TREE_CODE (type) != METHOD_TYPE)
13323 return t;
13325 /* [temp.deduct]
13327 Type deduction may fail for any of the following
13328 reasons:
13330 -- Attempting to create a pointer to reference type.
13331 -- Attempting to create a reference to a reference type or
13332 a reference to void.
13334 Core issue 106 says that creating a reference to a reference
13335 during instantiation is no longer a cause for failure. We
13336 only enforce this check in strict C++98 mode. */
13337 if ((TREE_CODE (type) == REFERENCE_TYPE
13338 && (((cxx_dialect == cxx98) && flag_iso) || code != REFERENCE_TYPE))
13339 || (code == REFERENCE_TYPE && VOID_TYPE_P (type)))
13341 static location_t last_loc;
13343 /* We keep track of the last time we issued this error
13344 message to avoid spewing a ton of messages during a
13345 single bad template instantiation. */
13346 if (complain & tf_error
13347 && last_loc != input_location)
13349 if (VOID_TYPE_P (type))
13350 error ("forming reference to void");
13351 else if (code == POINTER_TYPE)
13352 error ("forming pointer to reference type %qT", type);
13353 else
13354 error ("forming reference to reference type %qT", type);
13355 last_loc = input_location;
13358 return error_mark_node;
13360 else if (TREE_CODE (type) == FUNCTION_TYPE
13361 && (type_memfn_quals (type) != TYPE_UNQUALIFIED
13362 || type_memfn_rqual (type) != REF_QUAL_NONE))
13364 if (complain & tf_error)
13366 if (code == POINTER_TYPE)
13367 error ("forming pointer to qualified function type %qT",
13368 type);
13369 else
13370 error ("forming reference to qualified function type %qT",
13371 type);
13373 return error_mark_node;
13375 else if (code == POINTER_TYPE)
13377 r = build_pointer_type (type);
13378 if (TREE_CODE (type) == METHOD_TYPE)
13379 r = build_ptrmemfunc_type (r);
13381 else if (TREE_CODE (type) == REFERENCE_TYPE)
13382 /* In C++0x, during template argument substitution, when there is an
13383 attempt to create a reference to a reference type, reference
13384 collapsing is applied as described in [14.3.1/4 temp.arg.type]:
13386 "If a template-argument for a template-parameter T names a type
13387 that is a reference to a type A, an attempt to create the type
13388 'lvalue reference to cv T' creates the type 'lvalue reference to
13389 A,' while an attempt to create the type type rvalue reference to
13390 cv T' creates the type T"
13392 r = cp_build_reference_type
13393 (TREE_TYPE (type),
13394 TYPE_REF_IS_RVALUE (t) && TYPE_REF_IS_RVALUE (type));
13395 else
13396 r = cp_build_reference_type (type, TYPE_REF_IS_RVALUE (t));
13397 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
13399 if (r != error_mark_node)
13400 /* Will this ever be needed for TYPE_..._TO values? */
13401 layout_type (r);
13403 return r;
13405 case OFFSET_TYPE:
13407 r = tsubst (TYPE_OFFSET_BASETYPE (t), args, complain, in_decl);
13408 if (r == error_mark_node || !MAYBE_CLASS_TYPE_P (r))
13410 /* [temp.deduct]
13412 Type deduction may fail for any of the following
13413 reasons:
13415 -- Attempting to create "pointer to member of T" when T
13416 is not a class type. */
13417 if (complain & tf_error)
13418 error ("creating pointer to member of non-class type %qT", r);
13419 return error_mark_node;
13421 if (TREE_CODE (type) == REFERENCE_TYPE)
13423 if (complain & tf_error)
13424 error ("creating pointer to member reference type %qT", type);
13425 return error_mark_node;
13427 if (VOID_TYPE_P (type))
13429 if (complain & tf_error)
13430 error ("creating pointer to member of type void");
13431 return error_mark_node;
13433 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
13434 if (TREE_CODE (type) == FUNCTION_TYPE)
13436 /* The type of the implicit object parameter gets its
13437 cv-qualifiers from the FUNCTION_TYPE. */
13438 tree memptr;
13439 tree method_type
13440 = build_memfn_type (type, r, type_memfn_quals (type),
13441 type_memfn_rqual (type));
13442 memptr = build_ptrmemfunc_type (build_pointer_type (method_type));
13443 return cp_build_qualified_type_real (memptr, cp_type_quals (t),
13444 complain);
13446 else
13447 return cp_build_qualified_type_real (build_ptrmem_type (r, type),
13448 cp_type_quals (t),
13449 complain);
13451 case FUNCTION_TYPE:
13452 case METHOD_TYPE:
13454 tree fntype;
13455 tree specs;
13456 fntype = tsubst_function_type (t, args, complain, in_decl);
13457 if (fntype == error_mark_node)
13458 return error_mark_node;
13460 /* Substitute the exception specification. */
13461 specs = tsubst_exception_specification (t, args, complain,
13462 in_decl, /*defer_ok*/true);
13463 if (specs == error_mark_node)
13464 return error_mark_node;
13465 if (specs)
13466 fntype = build_exception_variant (fntype, specs);
13467 return fntype;
13469 case ARRAY_TYPE:
13471 tree domain = tsubst (TYPE_DOMAIN (t), args, complain, in_decl);
13472 if (domain == error_mark_node)
13473 return error_mark_node;
13475 /* As an optimization, we avoid regenerating the array type if
13476 it will obviously be the same as T. */
13477 if (type == TREE_TYPE (t) && domain == TYPE_DOMAIN (t))
13478 return t;
13480 /* These checks should match the ones in create_array_type_for_decl.
13482 [temp.deduct]
13484 The deduction may fail for any of the following reasons:
13486 -- Attempting to create an array with an element type that
13487 is void, a function type, or a reference type, or [DR337]
13488 an abstract class type. */
13489 if (VOID_TYPE_P (type)
13490 || TREE_CODE (type) == FUNCTION_TYPE
13491 || (TREE_CODE (type) == ARRAY_TYPE
13492 && TYPE_DOMAIN (type) == NULL_TREE)
13493 || TREE_CODE (type) == REFERENCE_TYPE)
13495 if (complain & tf_error)
13496 error ("creating array of %qT", type);
13497 return error_mark_node;
13500 if (abstract_virtuals_error_sfinae (ACU_ARRAY, type, complain))
13501 return error_mark_node;
13503 r = build_cplus_array_type (type, domain);
13505 if (TYPE_USER_ALIGN (t))
13507 SET_TYPE_ALIGN (r, TYPE_ALIGN (t));
13508 TYPE_USER_ALIGN (r) = 1;
13511 return r;
13514 case TYPENAME_TYPE:
13516 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
13517 in_decl, /*entering_scope=*/1);
13518 if (ctx == error_mark_node)
13519 return error_mark_node;
13521 tree f = tsubst_copy (TYPENAME_TYPE_FULLNAME (t), args,
13522 complain, in_decl);
13523 if (f == error_mark_node)
13524 return error_mark_node;
13526 if (!MAYBE_CLASS_TYPE_P (ctx))
13528 if (complain & tf_error)
13529 error ("%qT is not a class, struct, or union type", ctx);
13530 return error_mark_node;
13532 else if (!uses_template_parms (ctx) && !TYPE_BEING_DEFINED (ctx))
13534 /* Normally, make_typename_type does not require that the CTX
13535 have complete type in order to allow things like:
13537 template <class T> struct S { typename S<T>::X Y; };
13539 But, such constructs have already been resolved by this
13540 point, so here CTX really should have complete type, unless
13541 it's a partial instantiation. */
13542 ctx = complete_type (ctx);
13543 if (!COMPLETE_TYPE_P (ctx))
13545 if (complain & tf_error)
13546 cxx_incomplete_type_error (NULL_TREE, ctx);
13547 return error_mark_node;
13551 f = make_typename_type (ctx, f, typename_type,
13552 complain | tf_keep_type_decl);
13553 if (f == error_mark_node)
13554 return f;
13555 if (TREE_CODE (f) == TYPE_DECL)
13557 complain |= tf_ignore_bad_quals;
13558 f = TREE_TYPE (f);
13561 if (TREE_CODE (f) != TYPENAME_TYPE)
13563 if (TYPENAME_IS_ENUM_P (t) && TREE_CODE (f) != ENUMERAL_TYPE)
13565 if (complain & tf_error)
13566 error ("%qT resolves to %qT, which is not an enumeration type",
13567 t, f);
13568 else
13569 return error_mark_node;
13571 else if (TYPENAME_IS_CLASS_P (t) && !CLASS_TYPE_P (f))
13573 if (complain & tf_error)
13574 error ("%qT resolves to %qT, which is is not a class type",
13575 t, f);
13576 else
13577 return error_mark_node;
13581 return cp_build_qualified_type_real
13582 (f, cp_type_quals (f) | cp_type_quals (t), complain);
13585 case UNBOUND_CLASS_TEMPLATE:
13587 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
13588 in_decl, /*entering_scope=*/1);
13589 tree name = TYPE_IDENTIFIER (t);
13590 tree parm_list = DECL_TEMPLATE_PARMS (TYPE_NAME (t));
13592 if (ctx == error_mark_node || name == error_mark_node)
13593 return error_mark_node;
13595 if (parm_list)
13596 parm_list = tsubst_template_parms (parm_list, args, complain);
13597 return make_unbound_class_template (ctx, name, parm_list, complain);
13600 case TYPEOF_TYPE:
13602 tree type;
13604 ++cp_unevaluated_operand;
13605 ++c_inhibit_evaluation_warnings;
13607 type = tsubst_expr (TYPEOF_TYPE_EXPR (t), args,
13608 complain, in_decl,
13609 /*integral_constant_expression_p=*/false);
13611 --cp_unevaluated_operand;
13612 --c_inhibit_evaluation_warnings;
13614 type = finish_typeof (type);
13615 return cp_build_qualified_type_real (type,
13616 cp_type_quals (t)
13617 | cp_type_quals (type),
13618 complain);
13621 case DECLTYPE_TYPE:
13623 tree type;
13625 ++cp_unevaluated_operand;
13626 ++c_inhibit_evaluation_warnings;
13628 type = tsubst_copy_and_build (DECLTYPE_TYPE_EXPR (t), args,
13629 complain|tf_decltype, in_decl,
13630 /*function_p*/false,
13631 /*integral_constant_expression*/false);
13633 if (DECLTYPE_FOR_INIT_CAPTURE (t))
13635 if (type == NULL_TREE)
13637 if (complain & tf_error)
13638 error ("empty initializer in lambda init-capture");
13639 type = error_mark_node;
13641 else if (TREE_CODE (type) == TREE_LIST)
13642 type = build_x_compound_expr_from_list (type, ELK_INIT, complain);
13645 --cp_unevaluated_operand;
13646 --c_inhibit_evaluation_warnings;
13648 if (DECLTYPE_FOR_LAMBDA_CAPTURE (t))
13649 type = lambda_capture_field_type (type,
13650 DECLTYPE_FOR_INIT_CAPTURE (t));
13651 else if (DECLTYPE_FOR_LAMBDA_PROXY (t))
13652 type = lambda_proxy_type (type);
13653 else
13655 bool id = DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t);
13656 if (id && TREE_CODE (DECLTYPE_TYPE_EXPR (t)) == BIT_NOT_EXPR
13657 && EXPR_P (type))
13658 /* In a template ~id could be either a complement expression
13659 or an unqualified-id naming a destructor; if instantiating
13660 it produces an expression, it's not an id-expression or
13661 member access. */
13662 id = false;
13663 type = finish_decltype_type (type, id, complain);
13665 return cp_build_qualified_type_real (type,
13666 cp_type_quals (t)
13667 | cp_type_quals (type),
13668 complain | tf_ignore_bad_quals);
13671 case UNDERLYING_TYPE:
13673 tree type = tsubst (UNDERLYING_TYPE_TYPE (t), args,
13674 complain, in_decl);
13675 return finish_underlying_type (type);
13678 case TYPE_ARGUMENT_PACK:
13679 case NONTYPE_ARGUMENT_PACK:
13681 tree r = TYPE_P (t) ? cxx_make_type (code) : make_node (code);
13682 tree packed_out =
13683 tsubst_template_args (ARGUMENT_PACK_ARGS (t),
13684 args,
13685 complain,
13686 in_decl);
13687 SET_ARGUMENT_PACK_ARGS (r, packed_out);
13689 /* For template nontype argument packs, also substitute into
13690 the type. */
13691 if (code == NONTYPE_ARGUMENT_PACK)
13692 TREE_TYPE (r) = tsubst (TREE_TYPE (t), args, complain, in_decl);
13694 return r;
13696 break;
13698 case VOID_CST:
13699 case INTEGER_CST:
13700 case REAL_CST:
13701 case STRING_CST:
13702 case PLUS_EXPR:
13703 case MINUS_EXPR:
13704 case NEGATE_EXPR:
13705 case NOP_EXPR:
13706 case INDIRECT_REF:
13707 case ADDR_EXPR:
13708 case CALL_EXPR:
13709 case ARRAY_REF:
13710 case SCOPE_REF:
13711 /* We should use one of the expression tsubsts for these codes. */
13712 gcc_unreachable ();
13714 default:
13715 sorry ("use of %qs in template", get_tree_code_name (code));
13716 return error_mark_node;
13720 /* Like tsubst_expr for a BASELINK. OBJECT_TYPE, if non-NULL, is the
13721 type of the expression on the left-hand side of the "." or "->"
13722 operator. */
13724 static tree
13725 tsubst_baselink (tree baselink, tree object_type,
13726 tree args, tsubst_flags_t complain, tree in_decl)
13728 tree name;
13729 tree qualifying_scope;
13730 tree fns;
13731 tree optype;
13732 tree template_args = 0;
13733 bool template_id_p = false;
13734 bool qualified = BASELINK_QUALIFIED_P (baselink);
13736 /* A baselink indicates a function from a base class. Both the
13737 BASELINK_ACCESS_BINFO and the base class referenced may
13738 indicate bases of the template class, rather than the
13739 instantiated class. In addition, lookups that were not
13740 ambiguous before may be ambiguous now. Therefore, we perform
13741 the lookup again. */
13742 qualifying_scope = BINFO_TYPE (BASELINK_ACCESS_BINFO (baselink));
13743 qualifying_scope = tsubst (qualifying_scope, args,
13744 complain, in_decl);
13745 fns = BASELINK_FUNCTIONS (baselink);
13746 optype = tsubst (BASELINK_OPTYPE (baselink), args, complain, in_decl);
13747 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
13749 template_id_p = true;
13750 template_args = TREE_OPERAND (fns, 1);
13751 fns = TREE_OPERAND (fns, 0);
13752 if (template_args)
13753 template_args = tsubst_template_args (template_args, args,
13754 complain, in_decl);
13756 name = DECL_NAME (get_first_fn (fns));
13757 if (IDENTIFIER_TYPENAME_P (name))
13758 name = mangle_conv_op_name_for_type (optype);
13759 baselink = lookup_fnfields (qualifying_scope, name, /*protect=*/1);
13760 if (!baselink)
13762 if (constructor_name_p (name, qualifying_scope))
13764 if (complain & tf_error)
13765 error ("cannot call constructor %<%T::%D%> directly",
13766 qualifying_scope, name);
13768 return error_mark_node;
13771 /* If lookup found a single function, mark it as used at this
13772 point. (If it lookup found multiple functions the one selected
13773 later by overload resolution will be marked as used at that
13774 point.) */
13775 if (BASELINK_P (baselink))
13776 fns = BASELINK_FUNCTIONS (baselink);
13777 if (!template_id_p && !really_overloaded_fn (fns)
13778 && !mark_used (OVL_CURRENT (fns), complain) && !(complain & tf_error))
13779 return error_mark_node;
13781 /* Add back the template arguments, if present. */
13782 if (BASELINK_P (baselink) && template_id_p)
13783 BASELINK_FUNCTIONS (baselink)
13784 = build2 (TEMPLATE_ID_EXPR,
13785 unknown_type_node,
13786 BASELINK_FUNCTIONS (baselink),
13787 template_args);
13788 /* Update the conversion operator type. */
13789 if (BASELINK_P (baselink))
13790 BASELINK_OPTYPE (baselink) = optype;
13792 if (!object_type)
13793 object_type = current_class_type;
13795 if (qualified || name == complete_dtor_identifier)
13797 baselink = adjust_result_of_qualified_name_lookup (baselink,
13798 qualifying_scope,
13799 object_type);
13800 if (!qualified)
13801 /* We need to call adjust_result_of_qualified_name_lookup in case the
13802 destructor names a base class, but we unset BASELINK_QUALIFIED_P
13803 so that we still get virtual function binding. */
13804 BASELINK_QUALIFIED_P (baselink) = false;
13806 return baselink;
13809 /* Like tsubst_expr for a SCOPE_REF, given by QUALIFIED_ID. DONE is
13810 true if the qualified-id will be a postfix-expression in-and-of
13811 itself; false if more of the postfix-expression follows the
13812 QUALIFIED_ID. ADDRESS_P is true if the qualified-id is the operand
13813 of "&". */
13815 static tree
13816 tsubst_qualified_id (tree qualified_id, tree args,
13817 tsubst_flags_t complain, tree in_decl,
13818 bool done, bool address_p)
13820 tree expr;
13821 tree scope;
13822 tree name;
13823 bool is_template;
13824 tree template_args;
13825 location_t loc = UNKNOWN_LOCATION;
13827 gcc_assert (TREE_CODE (qualified_id) == SCOPE_REF);
13829 /* Figure out what name to look up. */
13830 name = TREE_OPERAND (qualified_id, 1);
13831 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
13833 is_template = true;
13834 loc = EXPR_LOCATION (name);
13835 template_args = TREE_OPERAND (name, 1);
13836 if (template_args)
13837 template_args = tsubst_template_args (template_args, args,
13838 complain, in_decl);
13839 if (template_args == error_mark_node)
13840 return error_mark_node;
13841 name = TREE_OPERAND (name, 0);
13843 else
13845 is_template = false;
13846 template_args = NULL_TREE;
13849 /* Substitute into the qualifying scope. When there are no ARGS, we
13850 are just trying to simplify a non-dependent expression. In that
13851 case the qualifying scope may be dependent, and, in any case,
13852 substituting will not help. */
13853 scope = TREE_OPERAND (qualified_id, 0);
13854 if (args)
13856 scope = tsubst (scope, args, complain, in_decl);
13857 expr = tsubst_copy (name, args, complain, in_decl);
13859 else
13860 expr = name;
13862 if (dependent_scope_p (scope))
13864 if (is_template)
13865 expr = build_min_nt_loc (loc, TEMPLATE_ID_EXPR, expr, template_args);
13866 tree r = build_qualified_name (NULL_TREE, scope, expr,
13867 QUALIFIED_NAME_IS_TEMPLATE (qualified_id));
13868 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (qualified_id);
13869 return r;
13872 if (!BASELINK_P (name) && !DECL_P (expr))
13874 if (TREE_CODE (expr) == BIT_NOT_EXPR)
13876 /* A BIT_NOT_EXPR is used to represent a destructor. */
13877 if (!check_dtor_name (scope, TREE_OPERAND (expr, 0)))
13879 error ("qualifying type %qT does not match destructor name ~%qT",
13880 scope, TREE_OPERAND (expr, 0));
13881 expr = error_mark_node;
13883 else
13884 expr = lookup_qualified_name (scope, complete_dtor_identifier,
13885 /*is_type_p=*/0, false);
13887 else
13888 expr = lookup_qualified_name (scope, expr, /*is_type_p=*/0, false);
13889 if (TREE_CODE (TREE_CODE (expr) == TEMPLATE_DECL
13890 ? DECL_TEMPLATE_RESULT (expr) : expr) == TYPE_DECL)
13892 if (complain & tf_error)
13894 error ("dependent-name %qE is parsed as a non-type, but "
13895 "instantiation yields a type", qualified_id);
13896 inform (input_location, "say %<typename %E%> if a type is meant", qualified_id);
13898 return error_mark_node;
13902 if (DECL_P (expr))
13904 check_accessibility_of_qualified_id (expr, /*object_type=*/NULL_TREE,
13905 scope);
13906 /* Remember that there was a reference to this entity. */
13907 if (!mark_used (expr, complain) && !(complain & tf_error))
13908 return error_mark_node;
13911 if (expr == error_mark_node || TREE_CODE (expr) == TREE_LIST)
13913 if (complain & tf_error)
13914 qualified_name_lookup_error (scope,
13915 TREE_OPERAND (qualified_id, 1),
13916 expr, input_location);
13917 return error_mark_node;
13920 if (is_template)
13922 if (variable_template_p (expr))
13923 expr = lookup_and_finish_template_variable (expr, template_args,
13924 complain);
13925 else
13926 expr = lookup_template_function (expr, template_args);
13929 if (expr == error_mark_node && complain & tf_error)
13930 qualified_name_lookup_error (scope, TREE_OPERAND (qualified_id, 1),
13931 expr, input_location);
13932 else if (TYPE_P (scope))
13934 expr = (adjust_result_of_qualified_name_lookup
13935 (expr, scope, current_nonlambda_class_type ()));
13936 expr = (finish_qualified_id_expr
13937 (scope, expr, done, address_p && PTRMEM_OK_P (qualified_id),
13938 QUALIFIED_NAME_IS_TEMPLATE (qualified_id),
13939 /*template_arg_p=*/false, complain));
13942 /* Expressions do not generally have reference type. */
13943 if (TREE_CODE (expr) != SCOPE_REF
13944 /* However, if we're about to form a pointer-to-member, we just
13945 want the referenced member referenced. */
13946 && TREE_CODE (expr) != OFFSET_REF)
13947 expr = convert_from_reference (expr);
13949 if (REF_PARENTHESIZED_P (qualified_id))
13950 expr = force_paren_expr (expr);
13952 return expr;
13955 /* tsubst the initializer for a VAR_DECL. INIT is the unsubstituted
13956 initializer, DECL is the substituted VAR_DECL. Other arguments are as
13957 for tsubst. */
13959 static tree
13960 tsubst_init (tree init, tree decl, tree args,
13961 tsubst_flags_t complain, tree in_decl)
13963 if (!init)
13964 return NULL_TREE;
13966 init = tsubst_expr (init, args, complain, in_decl, false);
13968 if (!init)
13970 /* If we had an initializer but it
13971 instantiated to nothing,
13972 value-initialize the object. This will
13973 only occur when the initializer was a
13974 pack expansion where the parameter packs
13975 used in that expansion were of length
13976 zero. */
13977 init = build_value_init (TREE_TYPE (decl),
13978 complain);
13979 if (TREE_CODE (init) == AGGR_INIT_EXPR)
13980 init = get_target_expr_sfinae (init, complain);
13983 return init;
13986 /* Like tsubst, but deals with expressions. This function just replaces
13987 template parms; to finish processing the resultant expression, use
13988 tsubst_copy_and_build or tsubst_expr. */
13990 static tree
13991 tsubst_copy (tree t, tree args, tsubst_flags_t complain, tree in_decl)
13993 enum tree_code code;
13994 tree r;
13996 if (t == NULL_TREE || t == error_mark_node || args == NULL_TREE)
13997 return t;
13999 code = TREE_CODE (t);
14001 switch (code)
14003 case PARM_DECL:
14004 r = retrieve_local_specialization (t);
14006 if (r == NULL_TREE)
14008 /* We get here for a use of 'this' in an NSDMI as part of a
14009 constructor call or as part of an aggregate initialization. */
14010 if (DECL_NAME (t) == this_identifier
14011 && ((current_function_decl
14012 && DECL_CONSTRUCTOR_P (current_function_decl))
14013 || (current_class_ref
14014 && TREE_CODE (current_class_ref) == PLACEHOLDER_EXPR)))
14015 return current_class_ptr;
14017 /* This can happen for a parameter name used later in a function
14018 declaration (such as in a late-specified return type). Just
14019 make a dummy decl, since it's only used for its type. */
14020 gcc_assert (cp_unevaluated_operand != 0);
14021 r = tsubst_decl (t, args, complain);
14022 /* Give it the template pattern as its context; its true context
14023 hasn't been instantiated yet and this is good enough for
14024 mangling. */
14025 DECL_CONTEXT (r) = DECL_CONTEXT (t);
14028 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
14029 r = ARGUMENT_PACK_SELECT_ARG (r);
14030 if (!mark_used (r, complain) && !(complain & tf_error))
14031 return error_mark_node;
14032 return r;
14034 case CONST_DECL:
14036 tree enum_type;
14037 tree v;
14039 if (DECL_TEMPLATE_PARM_P (t))
14040 return tsubst_copy (DECL_INITIAL (t), args, complain, in_decl);
14041 /* There is no need to substitute into namespace-scope
14042 enumerators. */
14043 if (DECL_NAMESPACE_SCOPE_P (t))
14044 return t;
14045 /* If ARGS is NULL, then T is known to be non-dependent. */
14046 if (args == NULL_TREE)
14047 return scalar_constant_value (t);
14049 /* Unfortunately, we cannot just call lookup_name here.
14050 Consider:
14052 template <int I> int f() {
14053 enum E { a = I };
14054 struct S { void g() { E e = a; } };
14057 When we instantiate f<7>::S::g(), say, lookup_name is not
14058 clever enough to find f<7>::a. */
14059 enum_type
14060 = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
14061 /*entering_scope=*/0);
14063 for (v = TYPE_VALUES (enum_type);
14064 v != NULL_TREE;
14065 v = TREE_CHAIN (v))
14066 if (TREE_PURPOSE (v) == DECL_NAME (t))
14067 return TREE_VALUE (v);
14069 /* We didn't find the name. That should never happen; if
14070 name-lookup found it during preliminary parsing, we
14071 should find it again here during instantiation. */
14072 gcc_unreachable ();
14074 return t;
14076 case FIELD_DECL:
14077 if (PACK_EXPANSION_P (TREE_TYPE (t)))
14079 /* Check for a local specialization set up by
14080 tsubst_pack_expansion. */
14081 if (tree r = retrieve_local_specialization (t))
14083 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
14084 r = ARGUMENT_PACK_SELECT_ARG (r);
14085 return r;
14088 /* When retrieving a capture pack from a generic lambda, remove the
14089 lambda call op's own template argument list from ARGS. Only the
14090 template arguments active for the closure type should be used to
14091 retrieve the pack specialization. */
14092 if (LAMBDA_FUNCTION_P (current_function_decl)
14093 && (template_class_depth (DECL_CONTEXT (t))
14094 != TMPL_ARGS_DEPTH (args)))
14095 args = strip_innermost_template_args (args, 1);
14097 /* Otherwise return the full NONTYPE_ARGUMENT_PACK that
14098 tsubst_decl put in the hash table. */
14099 return retrieve_specialization (t, args, 0);
14102 if (DECL_CONTEXT (t))
14104 tree ctx;
14106 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
14107 /*entering_scope=*/1);
14108 if (ctx != DECL_CONTEXT (t))
14110 tree r = lookup_field (ctx, DECL_NAME (t), 0, false);
14111 if (!r)
14113 if (complain & tf_error)
14114 error ("using invalid field %qD", t);
14115 return error_mark_node;
14117 return r;
14121 return t;
14123 case VAR_DECL:
14124 case FUNCTION_DECL:
14125 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
14126 r = tsubst (t, args, complain, in_decl);
14127 else if (local_variable_p (t)
14128 && uses_template_parms (DECL_CONTEXT (t)))
14130 r = retrieve_local_specialization (t);
14131 if (r == NULL_TREE)
14133 /* First try name lookup to find the instantiation. */
14134 r = lookup_name (DECL_NAME (t));
14135 if (r)
14137 /* Make sure that the one we found is the one we want. */
14138 tree ctx = DECL_CONTEXT (t);
14139 if (DECL_LANG_SPECIFIC (ctx) && DECL_TEMPLATE_INFO (ctx))
14140 ctx = tsubst (ctx, args, complain, in_decl);
14141 if (ctx != DECL_CONTEXT (r))
14142 r = NULL_TREE;
14145 if (r)
14146 /* OK */;
14147 else
14149 /* This can happen for a variable used in a
14150 late-specified return type of a local lambda, or for a
14151 local static or constant. Building a new VAR_DECL
14152 should be OK in all those cases. */
14153 r = tsubst_decl (t, args, complain);
14154 if (decl_maybe_constant_var_p (r))
14156 /* We can't call cp_finish_decl, so handle the
14157 initializer by hand. */
14158 tree init = tsubst_init (DECL_INITIAL (t), r, args,
14159 complain, in_decl);
14160 if (!processing_template_decl)
14161 init = maybe_constant_init (init);
14162 if (processing_template_decl
14163 ? potential_constant_expression (init)
14164 : reduced_constant_expression_p (init))
14165 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r)
14166 = TREE_CONSTANT (r) = true;
14167 DECL_INITIAL (r) = init;
14169 gcc_assert (cp_unevaluated_operand || TREE_STATIC (r)
14170 || decl_constant_var_p (r)
14171 || errorcount || sorrycount);
14172 if (!processing_template_decl
14173 && !TREE_STATIC (r))
14174 r = process_outer_var_ref (r, complain);
14176 /* Remember this for subsequent uses. */
14177 if (local_specializations)
14178 register_local_specialization (r, t);
14181 else
14182 r = t;
14183 if (!mark_used (r, complain) && !(complain & tf_error))
14184 return error_mark_node;
14185 return r;
14187 case NAMESPACE_DECL:
14188 return t;
14190 case OVERLOAD:
14191 /* An OVERLOAD will always be a non-dependent overload set; an
14192 overload set from function scope will just be represented with an
14193 IDENTIFIER_NODE, and from class scope with a BASELINK. */
14194 gcc_assert (!uses_template_parms (t));
14195 return t;
14197 case BASELINK:
14198 return tsubst_baselink (t, current_nonlambda_class_type (),
14199 args, complain, in_decl);
14201 case TEMPLATE_DECL:
14202 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
14203 return tsubst (TREE_TYPE (DECL_TEMPLATE_RESULT (t)),
14204 args, complain, in_decl);
14205 else if (DECL_FUNCTION_TEMPLATE_P (t) && DECL_MEMBER_TEMPLATE_P (t))
14206 return tsubst (t, args, complain, in_decl);
14207 else if (DECL_CLASS_SCOPE_P (t)
14208 && uses_template_parms (DECL_CONTEXT (t)))
14210 /* Template template argument like the following example need
14211 special treatment:
14213 template <template <class> class TT> struct C {};
14214 template <class T> struct D {
14215 template <class U> struct E {};
14216 C<E> c; // #1
14218 D<int> d; // #2
14220 We are processing the template argument `E' in #1 for
14221 the template instantiation #2. Originally, `E' is a
14222 TEMPLATE_DECL with `D<T>' as its DECL_CONTEXT. Now we
14223 have to substitute this with one having context `D<int>'. */
14225 tree context = tsubst (DECL_CONTEXT (t), args, complain, in_decl);
14226 return lookup_field (context, DECL_NAME(t), 0, false);
14228 else
14229 /* Ordinary template template argument. */
14230 return t;
14232 case CAST_EXPR:
14233 case REINTERPRET_CAST_EXPR:
14234 case CONST_CAST_EXPR:
14235 case STATIC_CAST_EXPR:
14236 case DYNAMIC_CAST_EXPR:
14237 case IMPLICIT_CONV_EXPR:
14238 case CONVERT_EXPR:
14239 case NOP_EXPR:
14241 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14242 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14243 return build1 (code, type, op0);
14246 case SIZEOF_EXPR:
14247 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0))
14248 || ARGUMENT_PACK_P (TREE_OPERAND (t, 0)))
14250 tree expanded, op = TREE_OPERAND (t, 0);
14251 int len = 0;
14253 if (SIZEOF_EXPR_TYPE_P (t))
14254 op = TREE_TYPE (op);
14256 ++cp_unevaluated_operand;
14257 ++c_inhibit_evaluation_warnings;
14258 /* We only want to compute the number of arguments. */
14259 if (PACK_EXPANSION_P (op))
14260 expanded = tsubst_pack_expansion (op, args, complain, in_decl);
14261 else
14262 expanded = tsubst_template_args (ARGUMENT_PACK_ARGS (op),
14263 args, complain, in_decl);
14264 --cp_unevaluated_operand;
14265 --c_inhibit_evaluation_warnings;
14267 if (TREE_CODE (expanded) == TREE_VEC)
14269 len = TREE_VEC_LENGTH (expanded);
14270 /* Set TREE_USED for the benefit of -Wunused. */
14271 for (int i = 0; i < len; i++)
14272 if (DECL_P (TREE_VEC_ELT (expanded, i)))
14273 TREE_USED (TREE_VEC_ELT (expanded, i)) = true;
14276 if (expanded == error_mark_node)
14277 return error_mark_node;
14278 else if (PACK_EXPANSION_P (expanded)
14279 || (TREE_CODE (expanded) == TREE_VEC
14280 && pack_expansion_args_count (expanded)))
14283 if (PACK_EXPANSION_P (expanded))
14284 /* OK. */;
14285 else if (TREE_VEC_LENGTH (expanded) == 1)
14286 expanded = TREE_VEC_ELT (expanded, 0);
14287 else
14288 expanded = make_argument_pack (expanded);
14290 if (TYPE_P (expanded))
14291 return cxx_sizeof_or_alignof_type (expanded, SIZEOF_EXPR,
14292 complain & tf_error);
14293 else
14294 return cxx_sizeof_or_alignof_expr (expanded, SIZEOF_EXPR,
14295 complain & tf_error);
14297 else
14298 return build_int_cst (size_type_node, len);
14300 if (SIZEOF_EXPR_TYPE_P (t))
14302 r = tsubst (TREE_TYPE (TREE_OPERAND (t, 0)),
14303 args, complain, in_decl);
14304 r = build1 (NOP_EXPR, r, error_mark_node);
14305 r = build1 (SIZEOF_EXPR,
14306 tsubst (TREE_TYPE (t), args, complain, in_decl), r);
14307 SIZEOF_EXPR_TYPE_P (r) = 1;
14308 return r;
14310 /* Fall through */
14312 case INDIRECT_REF:
14313 case NEGATE_EXPR:
14314 case TRUTH_NOT_EXPR:
14315 case BIT_NOT_EXPR:
14316 case ADDR_EXPR:
14317 case UNARY_PLUS_EXPR: /* Unary + */
14318 case ALIGNOF_EXPR:
14319 case AT_ENCODE_EXPR:
14320 case ARROW_EXPR:
14321 case THROW_EXPR:
14322 case TYPEID_EXPR:
14323 case REALPART_EXPR:
14324 case IMAGPART_EXPR:
14325 case PAREN_EXPR:
14327 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14328 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14329 return build1 (code, type, op0);
14332 case COMPONENT_REF:
14334 tree object;
14335 tree name;
14337 object = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14338 name = TREE_OPERAND (t, 1);
14339 if (TREE_CODE (name) == BIT_NOT_EXPR)
14341 name = tsubst_copy (TREE_OPERAND (name, 0), args,
14342 complain, in_decl);
14343 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
14345 else if (TREE_CODE (name) == SCOPE_REF
14346 && TREE_CODE (TREE_OPERAND (name, 1)) == BIT_NOT_EXPR)
14348 tree base = tsubst_copy (TREE_OPERAND (name, 0), args,
14349 complain, in_decl);
14350 name = TREE_OPERAND (name, 1);
14351 name = tsubst_copy (TREE_OPERAND (name, 0), args,
14352 complain, in_decl);
14353 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
14354 name = build_qualified_name (/*type=*/NULL_TREE,
14355 base, name,
14356 /*template_p=*/false);
14358 else if (BASELINK_P (name))
14359 name = tsubst_baselink (name,
14360 non_reference (TREE_TYPE (object)),
14361 args, complain,
14362 in_decl);
14363 else
14364 name = tsubst_copy (name, args, complain, in_decl);
14365 return build_nt (COMPONENT_REF, object, name, NULL_TREE);
14368 case PLUS_EXPR:
14369 case MINUS_EXPR:
14370 case MULT_EXPR:
14371 case TRUNC_DIV_EXPR:
14372 case CEIL_DIV_EXPR:
14373 case FLOOR_DIV_EXPR:
14374 case ROUND_DIV_EXPR:
14375 case EXACT_DIV_EXPR:
14376 case BIT_AND_EXPR:
14377 case BIT_IOR_EXPR:
14378 case BIT_XOR_EXPR:
14379 case TRUNC_MOD_EXPR:
14380 case FLOOR_MOD_EXPR:
14381 case TRUTH_ANDIF_EXPR:
14382 case TRUTH_ORIF_EXPR:
14383 case TRUTH_AND_EXPR:
14384 case TRUTH_OR_EXPR:
14385 case RSHIFT_EXPR:
14386 case LSHIFT_EXPR:
14387 case RROTATE_EXPR:
14388 case LROTATE_EXPR:
14389 case EQ_EXPR:
14390 case NE_EXPR:
14391 case MAX_EXPR:
14392 case MIN_EXPR:
14393 case LE_EXPR:
14394 case GE_EXPR:
14395 case LT_EXPR:
14396 case GT_EXPR:
14397 case COMPOUND_EXPR:
14398 case DOTSTAR_EXPR:
14399 case MEMBER_REF:
14400 case PREDECREMENT_EXPR:
14401 case PREINCREMENT_EXPR:
14402 case POSTDECREMENT_EXPR:
14403 case POSTINCREMENT_EXPR:
14405 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14406 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14407 return build_nt (code, op0, op1);
14410 case SCOPE_REF:
14412 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14413 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14414 return build_qualified_name (/*type=*/NULL_TREE, op0, op1,
14415 QUALIFIED_NAME_IS_TEMPLATE (t));
14418 case ARRAY_REF:
14420 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14421 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14422 return build_nt (ARRAY_REF, op0, op1, NULL_TREE, NULL_TREE);
14425 case CALL_EXPR:
14427 int n = VL_EXP_OPERAND_LENGTH (t);
14428 tree result = build_vl_exp (CALL_EXPR, n);
14429 int i;
14430 for (i = 0; i < n; i++)
14431 TREE_OPERAND (t, i) = tsubst_copy (TREE_OPERAND (t, i), args,
14432 complain, in_decl);
14433 return result;
14436 case COND_EXPR:
14437 case MODOP_EXPR:
14438 case PSEUDO_DTOR_EXPR:
14439 case VEC_PERM_EXPR:
14441 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14442 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14443 tree op2 = tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl);
14444 r = build_nt (code, op0, op1, op2);
14445 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
14446 return r;
14449 case NEW_EXPR:
14451 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14452 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14453 tree op2 = tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl);
14454 r = build_nt (code, op0, op1, op2);
14455 NEW_EXPR_USE_GLOBAL (r) = NEW_EXPR_USE_GLOBAL (t);
14456 return r;
14459 case DELETE_EXPR:
14461 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14462 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14463 r = build_nt (code, op0, op1);
14464 DELETE_EXPR_USE_GLOBAL (r) = DELETE_EXPR_USE_GLOBAL (t);
14465 DELETE_EXPR_USE_VEC (r) = DELETE_EXPR_USE_VEC (t);
14466 return r;
14469 case TEMPLATE_ID_EXPR:
14471 /* Substituted template arguments */
14472 tree fn = TREE_OPERAND (t, 0);
14473 tree targs = TREE_OPERAND (t, 1);
14475 fn = tsubst_copy (fn, args, complain, in_decl);
14476 if (targs)
14477 targs = tsubst_template_args (targs, args, complain, in_decl);
14479 return lookup_template_function (fn, targs);
14482 case TREE_LIST:
14484 tree purpose, value, chain;
14486 if (t == void_list_node)
14487 return t;
14489 purpose = TREE_PURPOSE (t);
14490 if (purpose)
14491 purpose = tsubst_copy (purpose, args, complain, in_decl);
14492 value = TREE_VALUE (t);
14493 if (value)
14494 value = tsubst_copy (value, args, complain, in_decl);
14495 chain = TREE_CHAIN (t);
14496 if (chain && chain != void_type_node)
14497 chain = tsubst_copy (chain, args, complain, in_decl);
14498 if (purpose == TREE_PURPOSE (t)
14499 && value == TREE_VALUE (t)
14500 && chain == TREE_CHAIN (t))
14501 return t;
14502 return tree_cons (purpose, value, chain);
14505 case RECORD_TYPE:
14506 case UNION_TYPE:
14507 case ENUMERAL_TYPE:
14508 case INTEGER_TYPE:
14509 case TEMPLATE_TYPE_PARM:
14510 case TEMPLATE_TEMPLATE_PARM:
14511 case BOUND_TEMPLATE_TEMPLATE_PARM:
14512 case TEMPLATE_PARM_INDEX:
14513 case POINTER_TYPE:
14514 case REFERENCE_TYPE:
14515 case OFFSET_TYPE:
14516 case FUNCTION_TYPE:
14517 case METHOD_TYPE:
14518 case ARRAY_TYPE:
14519 case TYPENAME_TYPE:
14520 case UNBOUND_CLASS_TEMPLATE:
14521 case TYPEOF_TYPE:
14522 case DECLTYPE_TYPE:
14523 case TYPE_DECL:
14524 return tsubst (t, args, complain, in_decl);
14526 case USING_DECL:
14527 t = DECL_NAME (t);
14528 /* Fall through. */
14529 case IDENTIFIER_NODE:
14530 if (IDENTIFIER_TYPENAME_P (t))
14532 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14533 return mangle_conv_op_name_for_type (new_type);
14535 else
14536 return t;
14538 case CONSTRUCTOR:
14539 /* This is handled by tsubst_copy_and_build. */
14540 gcc_unreachable ();
14542 case VA_ARG_EXPR:
14544 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14545 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14546 return build_x_va_arg (EXPR_LOCATION (t), op0, type);
14549 case CLEANUP_POINT_EXPR:
14550 /* We shouldn't have built any of these during initial template
14551 generation. Instead, they should be built during instantiation
14552 in response to the saved STMT_IS_FULL_EXPR_P setting. */
14553 gcc_unreachable ();
14555 case OFFSET_REF:
14557 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14558 tree op0 = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
14559 tree op1 = tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl);
14560 r = build2 (code, type, op0, op1);
14561 PTRMEM_OK_P (r) = PTRMEM_OK_P (t);
14562 if (!mark_used (TREE_OPERAND (r, 1), complain)
14563 && !(complain & tf_error))
14564 return error_mark_node;
14565 return r;
14568 case EXPR_PACK_EXPANSION:
14569 error ("invalid use of pack expansion expression");
14570 return error_mark_node;
14572 case NONTYPE_ARGUMENT_PACK:
14573 error ("use %<...%> to expand argument pack");
14574 return error_mark_node;
14576 case VOID_CST:
14577 gcc_checking_assert (t == void_node && VOID_TYPE_P (TREE_TYPE (t)));
14578 return t;
14580 case INTEGER_CST:
14581 case REAL_CST:
14582 case STRING_CST:
14583 case COMPLEX_CST:
14585 /* Instantiate any typedefs in the type. */
14586 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14587 r = fold_convert (type, t);
14588 gcc_assert (TREE_CODE (r) == code);
14589 return r;
14592 case PTRMEM_CST:
14593 /* These can sometimes show up in a partial instantiation, but never
14594 involve template parms. */
14595 gcc_assert (!uses_template_parms (t));
14596 return t;
14598 case UNARY_LEFT_FOLD_EXPR:
14599 return tsubst_unary_left_fold (t, args, complain, in_decl);
14600 case UNARY_RIGHT_FOLD_EXPR:
14601 return tsubst_unary_right_fold (t, args, complain, in_decl);
14602 case BINARY_LEFT_FOLD_EXPR:
14603 return tsubst_binary_left_fold (t, args, complain, in_decl);
14604 case BINARY_RIGHT_FOLD_EXPR:
14605 return tsubst_binary_right_fold (t, args, complain, in_decl);
14607 default:
14608 /* We shouldn't get here, but keep going if !flag_checking. */
14609 if (flag_checking)
14610 gcc_unreachable ();
14611 return t;
14615 /* Helper function for tsubst_omp_clauses, used for instantiation of
14616 OMP_CLAUSE_DECL of clauses. */
14618 static tree
14619 tsubst_omp_clause_decl (tree decl, tree args, tsubst_flags_t complain,
14620 tree in_decl)
14622 if (decl == NULL_TREE)
14623 return NULL_TREE;
14625 /* Handle an OpenMP array section represented as a TREE_LIST (or
14626 OMP_CLAUSE_DEPEND_KIND). An OMP_CLAUSE_DEPEND (with a depend
14627 kind of OMP_CLAUSE_DEPEND_SINK) can also be represented as a
14628 TREE_LIST. We can handle it exactly the same as an array section
14629 (purpose, value, and a chain), even though the nomenclature
14630 (low_bound, length, etc) is different. */
14631 if (TREE_CODE (decl) == TREE_LIST)
14633 tree low_bound
14634 = tsubst_expr (TREE_PURPOSE (decl), args, complain, in_decl,
14635 /*integral_constant_expression_p=*/false);
14636 tree length = tsubst_expr (TREE_VALUE (decl), args, complain, in_decl,
14637 /*integral_constant_expression_p=*/false);
14638 tree chain = tsubst_omp_clause_decl (TREE_CHAIN (decl), args, complain,
14639 in_decl);
14640 if (TREE_PURPOSE (decl) == low_bound
14641 && TREE_VALUE (decl) == length
14642 && TREE_CHAIN (decl) == chain)
14643 return decl;
14644 tree ret = tree_cons (low_bound, length, chain);
14645 OMP_CLAUSE_DEPEND_SINK_NEGATIVE (ret)
14646 = OMP_CLAUSE_DEPEND_SINK_NEGATIVE (decl);
14647 return ret;
14649 tree ret = tsubst_expr (decl, args, complain, in_decl,
14650 /*integral_constant_expression_p=*/false);
14651 /* Undo convert_from_reference tsubst_expr could have called. */
14652 if (decl
14653 && REFERENCE_REF_P (ret)
14654 && !REFERENCE_REF_P (decl))
14655 ret = TREE_OPERAND (ret, 0);
14656 return ret;
14659 /* Like tsubst_copy, but specifically for OpenMP clauses. */
14661 static tree
14662 tsubst_omp_clauses (tree clauses, enum c_omp_region_type ort,
14663 tree args, tsubst_flags_t complain, tree in_decl)
14665 tree new_clauses = NULL_TREE, nc, oc;
14666 tree linear_no_step = NULL_TREE;
14668 for (oc = clauses; oc ; oc = OMP_CLAUSE_CHAIN (oc))
14670 nc = copy_node (oc);
14671 OMP_CLAUSE_CHAIN (nc) = new_clauses;
14672 new_clauses = nc;
14674 switch (OMP_CLAUSE_CODE (nc))
14676 case OMP_CLAUSE_LASTPRIVATE:
14677 if (OMP_CLAUSE_LASTPRIVATE_STMT (oc))
14679 OMP_CLAUSE_LASTPRIVATE_STMT (nc) = push_stmt_list ();
14680 tsubst_expr (OMP_CLAUSE_LASTPRIVATE_STMT (oc), args, complain,
14681 in_decl, /*integral_constant_expression_p=*/false);
14682 OMP_CLAUSE_LASTPRIVATE_STMT (nc)
14683 = pop_stmt_list (OMP_CLAUSE_LASTPRIVATE_STMT (nc));
14685 /* FALLTHRU */
14686 case OMP_CLAUSE_PRIVATE:
14687 case OMP_CLAUSE_SHARED:
14688 case OMP_CLAUSE_FIRSTPRIVATE:
14689 case OMP_CLAUSE_COPYIN:
14690 case OMP_CLAUSE_COPYPRIVATE:
14691 case OMP_CLAUSE_UNIFORM:
14692 case OMP_CLAUSE_DEPEND:
14693 case OMP_CLAUSE_FROM:
14694 case OMP_CLAUSE_TO:
14695 case OMP_CLAUSE_MAP:
14696 case OMP_CLAUSE_USE_DEVICE_PTR:
14697 case OMP_CLAUSE_IS_DEVICE_PTR:
14698 OMP_CLAUSE_DECL (nc)
14699 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
14700 in_decl);
14701 break;
14702 case OMP_CLAUSE_IF:
14703 case OMP_CLAUSE_NUM_THREADS:
14704 case OMP_CLAUSE_SCHEDULE:
14705 case OMP_CLAUSE_COLLAPSE:
14706 case OMP_CLAUSE_FINAL:
14707 case OMP_CLAUSE_DEVICE:
14708 case OMP_CLAUSE_DIST_SCHEDULE:
14709 case OMP_CLAUSE_NUM_TEAMS:
14710 case OMP_CLAUSE_THREAD_LIMIT:
14711 case OMP_CLAUSE_SAFELEN:
14712 case OMP_CLAUSE_SIMDLEN:
14713 case OMP_CLAUSE_NUM_TASKS:
14714 case OMP_CLAUSE_GRAINSIZE:
14715 case OMP_CLAUSE_PRIORITY:
14716 case OMP_CLAUSE_ORDERED:
14717 case OMP_CLAUSE_HINT:
14718 case OMP_CLAUSE_NUM_GANGS:
14719 case OMP_CLAUSE_NUM_WORKERS:
14720 case OMP_CLAUSE_VECTOR_LENGTH:
14721 case OMP_CLAUSE_WORKER:
14722 case OMP_CLAUSE_VECTOR:
14723 case OMP_CLAUSE_ASYNC:
14724 case OMP_CLAUSE_WAIT:
14725 OMP_CLAUSE_OPERAND (nc, 0)
14726 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 0), args, complain,
14727 in_decl, /*integral_constant_expression_p=*/false);
14728 break;
14729 case OMP_CLAUSE_REDUCTION:
14730 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (oc))
14732 tree placeholder = OMP_CLAUSE_REDUCTION_PLACEHOLDER (oc);
14733 if (TREE_CODE (placeholder) == SCOPE_REF)
14735 tree scope = tsubst (TREE_OPERAND (placeholder, 0), args,
14736 complain, in_decl);
14737 OMP_CLAUSE_REDUCTION_PLACEHOLDER (nc)
14738 = build_qualified_name (NULL_TREE, scope,
14739 TREE_OPERAND (placeholder, 1),
14740 false);
14742 else
14743 gcc_assert (identifier_p (placeholder));
14745 OMP_CLAUSE_DECL (nc)
14746 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
14747 in_decl);
14748 break;
14749 case OMP_CLAUSE_GANG:
14750 case OMP_CLAUSE_ALIGNED:
14751 OMP_CLAUSE_DECL (nc)
14752 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
14753 in_decl);
14754 OMP_CLAUSE_OPERAND (nc, 1)
14755 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 1), args, complain,
14756 in_decl, /*integral_constant_expression_p=*/false);
14757 break;
14758 case OMP_CLAUSE_LINEAR:
14759 OMP_CLAUSE_DECL (nc)
14760 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc), args, complain,
14761 in_decl);
14762 if (OMP_CLAUSE_LINEAR_STEP (oc) == NULL_TREE)
14764 gcc_assert (!linear_no_step);
14765 linear_no_step = nc;
14767 else if (OMP_CLAUSE_LINEAR_VARIABLE_STRIDE (oc))
14768 OMP_CLAUSE_LINEAR_STEP (nc)
14769 = tsubst_omp_clause_decl (OMP_CLAUSE_LINEAR_STEP (oc), args,
14770 complain, in_decl);
14771 else
14772 OMP_CLAUSE_LINEAR_STEP (nc)
14773 = tsubst_expr (OMP_CLAUSE_LINEAR_STEP (oc), args, complain,
14774 in_decl,
14775 /*integral_constant_expression_p=*/false);
14776 break;
14777 case OMP_CLAUSE_NOWAIT:
14778 case OMP_CLAUSE_DEFAULT:
14779 case OMP_CLAUSE_UNTIED:
14780 case OMP_CLAUSE_MERGEABLE:
14781 case OMP_CLAUSE_INBRANCH:
14782 case OMP_CLAUSE_NOTINBRANCH:
14783 case OMP_CLAUSE_PROC_BIND:
14784 case OMP_CLAUSE_FOR:
14785 case OMP_CLAUSE_PARALLEL:
14786 case OMP_CLAUSE_SECTIONS:
14787 case OMP_CLAUSE_TASKGROUP:
14788 case OMP_CLAUSE_NOGROUP:
14789 case OMP_CLAUSE_THREADS:
14790 case OMP_CLAUSE_SIMD:
14791 case OMP_CLAUSE_DEFAULTMAP:
14792 case OMP_CLAUSE_INDEPENDENT:
14793 case OMP_CLAUSE_AUTO:
14794 case OMP_CLAUSE_SEQ:
14795 break;
14796 case OMP_CLAUSE_TILE:
14798 tree lnc, loc;
14799 for (lnc = OMP_CLAUSE_TILE_LIST (nc),
14800 loc = OMP_CLAUSE_TILE_LIST (oc);
14801 loc;
14802 loc = TREE_CHAIN (loc), lnc = TREE_CHAIN (lnc))
14804 TREE_VALUE (lnc) = tsubst_expr (TREE_VALUE (loc), args,
14805 complain, in_decl, false);
14808 break;
14809 default:
14810 gcc_unreachable ();
14812 if ((ort & C_ORT_OMP_DECLARE_SIMD) == C_ORT_OMP)
14813 switch (OMP_CLAUSE_CODE (nc))
14815 case OMP_CLAUSE_SHARED:
14816 case OMP_CLAUSE_PRIVATE:
14817 case OMP_CLAUSE_FIRSTPRIVATE:
14818 case OMP_CLAUSE_LASTPRIVATE:
14819 case OMP_CLAUSE_COPYPRIVATE:
14820 case OMP_CLAUSE_LINEAR:
14821 case OMP_CLAUSE_REDUCTION:
14822 case OMP_CLAUSE_USE_DEVICE_PTR:
14823 case OMP_CLAUSE_IS_DEVICE_PTR:
14824 /* tsubst_expr on SCOPE_REF results in returning
14825 finish_non_static_data_member result. Undo that here. */
14826 if (TREE_CODE (OMP_CLAUSE_DECL (oc)) == SCOPE_REF
14827 && (TREE_CODE (TREE_OPERAND (OMP_CLAUSE_DECL (oc), 1))
14828 == IDENTIFIER_NODE))
14830 tree t = OMP_CLAUSE_DECL (nc);
14831 tree v = t;
14832 while (v)
14833 switch (TREE_CODE (v))
14835 case COMPONENT_REF:
14836 case MEM_REF:
14837 case INDIRECT_REF:
14838 CASE_CONVERT:
14839 case POINTER_PLUS_EXPR:
14840 v = TREE_OPERAND (v, 0);
14841 continue;
14842 case PARM_DECL:
14843 if (DECL_CONTEXT (v) == current_function_decl
14844 && DECL_ARTIFICIAL (v)
14845 && DECL_NAME (v) == this_identifier)
14846 OMP_CLAUSE_DECL (nc) = TREE_OPERAND (t, 1);
14847 /* FALLTHRU */
14848 default:
14849 v = NULL_TREE;
14850 break;
14853 else if (VAR_P (OMP_CLAUSE_DECL (oc))
14854 && DECL_HAS_VALUE_EXPR_P (OMP_CLAUSE_DECL (oc))
14855 && DECL_ARTIFICIAL (OMP_CLAUSE_DECL (oc))
14856 && DECL_LANG_SPECIFIC (OMP_CLAUSE_DECL (oc))
14857 && DECL_OMP_PRIVATIZED_MEMBER (OMP_CLAUSE_DECL (oc)))
14859 tree decl = OMP_CLAUSE_DECL (nc);
14860 if (VAR_P (decl))
14862 if (!DECL_LANG_SPECIFIC (decl))
14863 retrofit_lang_decl (decl);
14864 DECL_OMP_PRIVATIZED_MEMBER (decl) = 1;
14867 break;
14868 default:
14869 break;
14873 new_clauses = nreverse (new_clauses);
14874 if (ort != C_ORT_OMP_DECLARE_SIMD)
14876 new_clauses = finish_omp_clauses (new_clauses, ort);
14877 if (linear_no_step)
14878 for (nc = new_clauses; nc; nc = OMP_CLAUSE_CHAIN (nc))
14879 if (nc == linear_no_step)
14881 OMP_CLAUSE_LINEAR_STEP (nc) = NULL_TREE;
14882 break;
14885 return new_clauses;
14888 /* Like tsubst_copy_and_build, but unshare TREE_LIST nodes. */
14890 static tree
14891 tsubst_copy_asm_operands (tree t, tree args, tsubst_flags_t complain,
14892 tree in_decl)
14894 #define RECUR(t) tsubst_copy_asm_operands (t, args, complain, in_decl)
14896 tree purpose, value, chain;
14898 if (t == NULL)
14899 return t;
14901 if (TREE_CODE (t) != TREE_LIST)
14902 return tsubst_copy_and_build (t, args, complain, in_decl,
14903 /*function_p=*/false,
14904 /*integral_constant_expression_p=*/false);
14906 if (t == void_list_node)
14907 return t;
14909 purpose = TREE_PURPOSE (t);
14910 if (purpose)
14911 purpose = RECUR (purpose);
14912 value = TREE_VALUE (t);
14913 if (value)
14915 if (TREE_CODE (value) != LABEL_DECL)
14916 value = RECUR (value);
14917 else
14919 value = lookup_label (DECL_NAME (value));
14920 gcc_assert (TREE_CODE (value) == LABEL_DECL);
14921 TREE_USED (value) = 1;
14924 chain = TREE_CHAIN (t);
14925 if (chain && chain != void_type_node)
14926 chain = RECUR (chain);
14927 return tree_cons (purpose, value, chain);
14928 #undef RECUR
14931 /* Used to temporarily communicate the list of #pragma omp parallel
14932 clauses to #pragma omp for instantiation if they are combined
14933 together. */
14935 static tree *omp_parallel_combined_clauses;
14937 /* Substitute one OMP_FOR iterator. */
14939 static void
14940 tsubst_omp_for_iterator (tree t, int i, tree declv, tree orig_declv,
14941 tree initv, tree condv, tree incrv, tree *clauses,
14942 tree args, tsubst_flags_t complain, tree in_decl,
14943 bool integral_constant_expression_p)
14945 #define RECUR(NODE) \
14946 tsubst_expr ((NODE), args, complain, in_decl, \
14947 integral_constant_expression_p)
14948 tree decl, init, cond, incr;
14950 init = TREE_VEC_ELT (OMP_FOR_INIT (t), i);
14951 gcc_assert (TREE_CODE (init) == MODIFY_EXPR);
14953 if (orig_declv && OMP_FOR_ORIG_DECLS (t))
14955 tree o = TREE_VEC_ELT (OMP_FOR_ORIG_DECLS (t), i);
14956 TREE_VEC_ELT (orig_declv, i) = RECUR (o);
14959 decl = TREE_OPERAND (init, 0);
14960 init = TREE_OPERAND (init, 1);
14961 tree decl_expr = NULL_TREE;
14962 if (init && TREE_CODE (init) == DECL_EXPR)
14964 /* We need to jump through some hoops to handle declarations in the
14965 for-init-statement, since we might need to handle auto deduction,
14966 but we need to keep control of initialization. */
14967 decl_expr = init;
14968 init = DECL_INITIAL (DECL_EXPR_DECL (init));
14969 decl = tsubst_decl (decl, args, complain);
14971 else
14973 if (TREE_CODE (decl) == SCOPE_REF)
14975 decl = RECUR (decl);
14976 if (TREE_CODE (decl) == COMPONENT_REF)
14978 tree v = decl;
14979 while (v)
14980 switch (TREE_CODE (v))
14982 case COMPONENT_REF:
14983 case MEM_REF:
14984 case INDIRECT_REF:
14985 CASE_CONVERT:
14986 case POINTER_PLUS_EXPR:
14987 v = TREE_OPERAND (v, 0);
14988 continue;
14989 case PARM_DECL:
14990 if (DECL_CONTEXT (v) == current_function_decl
14991 && DECL_ARTIFICIAL (v)
14992 && DECL_NAME (v) == this_identifier)
14994 decl = TREE_OPERAND (decl, 1);
14995 decl = omp_privatize_field (decl, false);
14997 /* FALLTHRU */
14998 default:
14999 v = NULL_TREE;
15000 break;
15004 else
15005 decl = RECUR (decl);
15007 init = RECUR (init);
15009 tree auto_node = type_uses_auto (TREE_TYPE (decl));
15010 if (auto_node && init)
15011 TREE_TYPE (decl)
15012 = do_auto_deduction (TREE_TYPE (decl), init, auto_node);
15014 gcc_assert (!type_dependent_expression_p (decl));
15016 if (!CLASS_TYPE_P (TREE_TYPE (decl)))
15018 if (decl_expr)
15020 /* Declare the variable, but don't let that initialize it. */
15021 tree init_sav = DECL_INITIAL (DECL_EXPR_DECL (decl_expr));
15022 DECL_INITIAL (DECL_EXPR_DECL (decl_expr)) = NULL_TREE;
15023 RECUR (decl_expr);
15024 DECL_INITIAL (DECL_EXPR_DECL (decl_expr)) = init_sav;
15027 cond = RECUR (TREE_VEC_ELT (OMP_FOR_COND (t), i));
15028 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
15029 if (TREE_CODE (incr) == MODIFY_EXPR)
15031 tree lhs = RECUR (TREE_OPERAND (incr, 0));
15032 tree rhs = RECUR (TREE_OPERAND (incr, 1));
15033 incr = build_x_modify_expr (EXPR_LOCATION (incr), lhs,
15034 NOP_EXPR, rhs, complain);
15036 else
15037 incr = RECUR (incr);
15038 TREE_VEC_ELT (declv, i) = decl;
15039 TREE_VEC_ELT (initv, i) = init;
15040 TREE_VEC_ELT (condv, i) = cond;
15041 TREE_VEC_ELT (incrv, i) = incr;
15042 return;
15045 if (decl_expr)
15047 /* Declare and initialize the variable. */
15048 RECUR (decl_expr);
15049 init = NULL_TREE;
15051 else if (init)
15053 tree *pc;
15054 int j;
15055 for (j = (omp_parallel_combined_clauses == NULL ? 1 : 0); j < 2; j++)
15057 for (pc = j ? clauses : omp_parallel_combined_clauses; *pc; )
15059 if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_PRIVATE
15060 && OMP_CLAUSE_DECL (*pc) == decl)
15061 break;
15062 else if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_LASTPRIVATE
15063 && OMP_CLAUSE_DECL (*pc) == decl)
15065 if (j)
15066 break;
15067 /* Move lastprivate (decl) clause to OMP_FOR_CLAUSES. */
15068 tree c = *pc;
15069 *pc = OMP_CLAUSE_CHAIN (c);
15070 OMP_CLAUSE_CHAIN (c) = *clauses;
15071 *clauses = c;
15073 else if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_FIRSTPRIVATE
15074 && OMP_CLAUSE_DECL (*pc) == decl)
15076 error ("iteration variable %qD should not be firstprivate",
15077 decl);
15078 *pc = OMP_CLAUSE_CHAIN (*pc);
15080 else if (OMP_CLAUSE_CODE (*pc) == OMP_CLAUSE_REDUCTION
15081 && OMP_CLAUSE_DECL (*pc) == decl)
15083 error ("iteration variable %qD should not be reduction",
15084 decl);
15085 *pc = OMP_CLAUSE_CHAIN (*pc);
15087 else
15088 pc = &OMP_CLAUSE_CHAIN (*pc);
15090 if (*pc)
15091 break;
15093 if (*pc == NULL_TREE)
15095 tree c = build_omp_clause (input_location, OMP_CLAUSE_PRIVATE);
15096 OMP_CLAUSE_DECL (c) = decl;
15097 c = finish_omp_clauses (c, C_ORT_OMP);
15098 if (c)
15100 OMP_CLAUSE_CHAIN (c) = *clauses;
15101 *clauses = c;
15105 cond = TREE_VEC_ELT (OMP_FOR_COND (t), i);
15106 if (COMPARISON_CLASS_P (cond))
15108 tree op0 = RECUR (TREE_OPERAND (cond, 0));
15109 tree op1 = RECUR (TREE_OPERAND (cond, 1));
15110 cond = build2 (TREE_CODE (cond), boolean_type_node, op0, op1);
15112 else
15113 cond = RECUR (cond);
15114 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
15115 switch (TREE_CODE (incr))
15117 case PREINCREMENT_EXPR:
15118 case PREDECREMENT_EXPR:
15119 case POSTINCREMENT_EXPR:
15120 case POSTDECREMENT_EXPR:
15121 incr = build2 (TREE_CODE (incr), TREE_TYPE (decl),
15122 RECUR (TREE_OPERAND (incr, 0)), NULL_TREE);
15123 break;
15124 case MODIFY_EXPR:
15125 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
15126 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
15128 tree rhs = TREE_OPERAND (incr, 1);
15129 tree lhs = RECUR (TREE_OPERAND (incr, 0));
15130 tree rhs0 = RECUR (TREE_OPERAND (rhs, 0));
15131 tree rhs1 = RECUR (TREE_OPERAND (rhs, 1));
15132 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
15133 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
15134 rhs0, rhs1));
15136 else
15137 incr = RECUR (incr);
15138 break;
15139 case MODOP_EXPR:
15140 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
15141 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
15143 tree lhs = RECUR (TREE_OPERAND (incr, 0));
15144 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
15145 build2 (TREE_CODE (TREE_OPERAND (incr, 1)),
15146 TREE_TYPE (decl), lhs,
15147 RECUR (TREE_OPERAND (incr, 2))));
15149 else if (TREE_CODE (TREE_OPERAND (incr, 1)) == NOP_EXPR
15150 && (TREE_CODE (TREE_OPERAND (incr, 2)) == PLUS_EXPR
15151 || (TREE_CODE (TREE_OPERAND (incr, 2)) == MINUS_EXPR)))
15153 tree rhs = TREE_OPERAND (incr, 2);
15154 tree lhs = RECUR (TREE_OPERAND (incr, 0));
15155 tree rhs0 = RECUR (TREE_OPERAND (rhs, 0));
15156 tree rhs1 = RECUR (TREE_OPERAND (rhs, 1));
15157 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
15158 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
15159 rhs0, rhs1));
15161 else
15162 incr = RECUR (incr);
15163 break;
15164 default:
15165 incr = RECUR (incr);
15166 break;
15169 TREE_VEC_ELT (declv, i) = decl;
15170 TREE_VEC_ELT (initv, i) = init;
15171 TREE_VEC_ELT (condv, i) = cond;
15172 TREE_VEC_ELT (incrv, i) = incr;
15173 #undef RECUR
15176 /* Helper function of tsubst_expr, find OMP_TEAMS inside
15177 of OMP_TARGET's body. */
15179 static tree
15180 tsubst_find_omp_teams (tree *tp, int *walk_subtrees, void *)
15182 *walk_subtrees = 0;
15183 switch (TREE_CODE (*tp))
15185 case OMP_TEAMS:
15186 return *tp;
15187 case BIND_EXPR:
15188 case STATEMENT_LIST:
15189 *walk_subtrees = 1;
15190 break;
15191 default:
15192 break;
15194 return NULL_TREE;
15197 /* Like tsubst_copy for expressions, etc. but also does semantic
15198 processing. */
15200 tree
15201 tsubst_expr (tree t, tree args, tsubst_flags_t complain, tree in_decl,
15202 bool integral_constant_expression_p)
15204 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
15205 #define RECUR(NODE) \
15206 tsubst_expr ((NODE), args, complain, in_decl, \
15207 integral_constant_expression_p)
15209 tree stmt, tmp;
15210 tree r;
15211 location_t loc;
15213 if (t == NULL_TREE || t == error_mark_node)
15214 return t;
15216 loc = input_location;
15217 if (EXPR_HAS_LOCATION (t))
15218 input_location = EXPR_LOCATION (t);
15219 if (STATEMENT_CODE_P (TREE_CODE (t)))
15220 current_stmt_tree ()->stmts_are_full_exprs_p = STMT_IS_FULL_EXPR_P (t);
15222 switch (TREE_CODE (t))
15224 case STATEMENT_LIST:
15226 tree_stmt_iterator i;
15227 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
15228 RECUR (tsi_stmt (i));
15229 break;
15232 case CTOR_INITIALIZER:
15233 finish_mem_initializers (tsubst_initializer_list
15234 (TREE_OPERAND (t, 0), args));
15235 break;
15237 case RETURN_EXPR:
15238 finish_return_stmt (RECUR (TREE_OPERAND (t, 0)));
15239 break;
15241 case EXPR_STMT:
15242 tmp = RECUR (EXPR_STMT_EXPR (t));
15243 if (EXPR_STMT_STMT_EXPR_RESULT (t))
15244 finish_stmt_expr_expr (tmp, cur_stmt_expr);
15245 else
15246 finish_expr_stmt (tmp);
15247 break;
15249 case USING_STMT:
15250 do_using_directive (USING_STMT_NAMESPACE (t));
15251 break;
15253 case DECL_EXPR:
15255 tree decl, pattern_decl;
15256 tree init;
15258 pattern_decl = decl = DECL_EXPR_DECL (t);
15259 if (TREE_CODE (decl) == LABEL_DECL)
15260 finish_label_decl (DECL_NAME (decl));
15261 else if (TREE_CODE (decl) == USING_DECL)
15263 tree scope = USING_DECL_SCOPE (decl);
15264 tree name = DECL_NAME (decl);
15266 scope = tsubst (scope, args, complain, in_decl);
15267 decl = lookup_qualified_name (scope, name,
15268 /*is_type_p=*/false,
15269 /*complain=*/false);
15270 if (decl == error_mark_node || TREE_CODE (decl) == TREE_LIST)
15271 qualified_name_lookup_error (scope, name, decl, input_location);
15272 else
15273 do_local_using_decl (decl, scope, name);
15275 else if (DECL_PACK_P (decl))
15277 /* Don't build up decls for a variadic capture proxy, we'll
15278 instantiate the elements directly as needed. */
15279 break;
15281 else
15283 init = DECL_INITIAL (decl);
15284 decl = tsubst (decl, args, complain, in_decl);
15285 if (decl != error_mark_node)
15287 /* By marking the declaration as instantiated, we avoid
15288 trying to instantiate it. Since instantiate_decl can't
15289 handle local variables, and since we've already done
15290 all that needs to be done, that's the right thing to
15291 do. */
15292 if (VAR_P (decl))
15293 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
15294 if (VAR_P (decl)
15295 && ANON_AGGR_TYPE_P (TREE_TYPE (decl)))
15296 /* Anonymous aggregates are a special case. */
15297 finish_anon_union (decl);
15298 else if (is_capture_proxy (DECL_EXPR_DECL (t)))
15300 DECL_CONTEXT (decl) = current_function_decl;
15301 if (DECL_NAME (decl) == this_identifier)
15303 tree lam = DECL_CONTEXT (current_function_decl);
15304 lam = CLASSTYPE_LAMBDA_EXPR (lam);
15305 LAMBDA_EXPR_THIS_CAPTURE (lam) = decl;
15307 insert_capture_proxy (decl);
15309 else if (DECL_IMPLICIT_TYPEDEF_P (t))
15310 /* We already did a pushtag. */;
15311 else if (TREE_CODE (decl) == FUNCTION_DECL
15312 && DECL_OMP_DECLARE_REDUCTION_P (decl)
15313 && DECL_FUNCTION_SCOPE_P (pattern_decl))
15315 DECL_CONTEXT (decl) = NULL_TREE;
15316 pushdecl (decl);
15317 DECL_CONTEXT (decl) = current_function_decl;
15318 cp_check_omp_declare_reduction (decl);
15320 else
15322 int const_init = false;
15323 maybe_push_decl (decl);
15324 if (VAR_P (decl)
15325 && DECL_PRETTY_FUNCTION_P (decl))
15327 /* For __PRETTY_FUNCTION__ we have to adjust the
15328 initializer. */
15329 const char *const name
15330 = cxx_printable_name (current_function_decl, 2);
15331 init = cp_fname_init (name, &TREE_TYPE (decl));
15333 else
15334 init = tsubst_init (init, decl, args, complain, in_decl);
15336 if (VAR_P (decl))
15337 const_init = (DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P
15338 (pattern_decl));
15339 cp_finish_decl (decl, init, const_init, NULL_TREE, 0);
15344 break;
15347 case FOR_STMT:
15348 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
15349 RECUR (FOR_INIT_STMT (t));
15350 finish_for_init_stmt (stmt);
15351 tmp = RECUR (FOR_COND (t));
15352 finish_for_cond (tmp, stmt, false);
15353 tmp = RECUR (FOR_EXPR (t));
15354 finish_for_expr (tmp, stmt);
15355 RECUR (FOR_BODY (t));
15356 finish_for_stmt (stmt);
15357 break;
15359 case RANGE_FOR_STMT:
15361 tree decl, expr;
15362 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
15363 decl = RANGE_FOR_DECL (t);
15364 decl = tsubst (decl, args, complain, in_decl);
15365 maybe_push_decl (decl);
15366 expr = RECUR (RANGE_FOR_EXPR (t));
15367 stmt = cp_convert_range_for (stmt, decl, expr, RANGE_FOR_IVDEP (t));
15368 RECUR (RANGE_FOR_BODY (t));
15369 finish_for_stmt (stmt);
15371 break;
15373 case WHILE_STMT:
15374 stmt = begin_while_stmt ();
15375 tmp = RECUR (WHILE_COND (t));
15376 finish_while_stmt_cond (tmp, stmt, false);
15377 RECUR (WHILE_BODY (t));
15378 finish_while_stmt (stmt);
15379 break;
15381 case DO_STMT:
15382 stmt = begin_do_stmt ();
15383 RECUR (DO_BODY (t));
15384 finish_do_body (stmt);
15385 tmp = RECUR (DO_COND (t));
15386 finish_do_stmt (tmp, stmt, false);
15387 break;
15389 case IF_STMT:
15390 stmt = begin_if_stmt ();
15391 IF_STMT_CONSTEXPR_P (stmt) = IF_STMT_CONSTEXPR_P (t);
15392 tmp = RECUR (IF_COND (t));
15393 tmp = finish_if_stmt_cond (tmp, stmt);
15394 if (IF_STMT_CONSTEXPR_P (t) && integer_zerop (tmp))
15395 /* Don't instantiate the THEN_CLAUSE. */;
15396 else
15397 RECUR (THEN_CLAUSE (t));
15398 finish_then_clause (stmt);
15400 if (IF_STMT_CONSTEXPR_P (t) && integer_nonzerop (tmp))
15401 /* Don't instantiate the ELSE_CLAUSE. */;
15402 else if (ELSE_CLAUSE (t))
15404 begin_else_clause (stmt);
15405 RECUR (ELSE_CLAUSE (t));
15406 finish_else_clause (stmt);
15409 finish_if_stmt (stmt);
15410 break;
15412 case BIND_EXPR:
15413 if (BIND_EXPR_BODY_BLOCK (t))
15414 stmt = begin_function_body ();
15415 else
15416 stmt = begin_compound_stmt (BIND_EXPR_TRY_BLOCK (t)
15417 ? BCS_TRY_BLOCK : 0);
15419 RECUR (BIND_EXPR_BODY (t));
15421 if (BIND_EXPR_BODY_BLOCK (t))
15422 finish_function_body (stmt);
15423 else
15424 finish_compound_stmt (stmt);
15425 break;
15427 case BREAK_STMT:
15428 finish_break_stmt ();
15429 break;
15431 case CONTINUE_STMT:
15432 finish_continue_stmt ();
15433 break;
15435 case SWITCH_STMT:
15436 stmt = begin_switch_stmt ();
15437 tmp = RECUR (SWITCH_STMT_COND (t));
15438 finish_switch_cond (tmp, stmt);
15439 RECUR (SWITCH_STMT_BODY (t));
15440 finish_switch_stmt (stmt);
15441 break;
15443 case CASE_LABEL_EXPR:
15445 tree low = RECUR (CASE_LOW (t));
15446 tree high = RECUR (CASE_HIGH (t));
15447 finish_case_label (EXPR_LOCATION (t), low, high);
15449 break;
15451 case LABEL_EXPR:
15453 tree decl = LABEL_EXPR_LABEL (t);
15454 tree label;
15456 label = finish_label_stmt (DECL_NAME (decl));
15457 if (DECL_ATTRIBUTES (decl) != NULL_TREE)
15458 cplus_decl_attributes (&label, DECL_ATTRIBUTES (decl), 0);
15460 break;
15462 case GOTO_EXPR:
15463 tmp = GOTO_DESTINATION (t);
15464 if (TREE_CODE (tmp) != LABEL_DECL)
15465 /* Computed goto's must be tsubst'd into. On the other hand,
15466 non-computed gotos must not be; the identifier in question
15467 will have no binding. */
15468 tmp = RECUR (tmp);
15469 else
15470 tmp = DECL_NAME (tmp);
15471 finish_goto_stmt (tmp);
15472 break;
15474 case ASM_EXPR:
15476 tree string = RECUR (ASM_STRING (t));
15477 tree outputs = tsubst_copy_asm_operands (ASM_OUTPUTS (t), args,
15478 complain, in_decl);
15479 tree inputs = tsubst_copy_asm_operands (ASM_INPUTS (t), args,
15480 complain, in_decl);
15481 tree clobbers = tsubst_copy_asm_operands (ASM_CLOBBERS (t), args,
15482 complain, in_decl);
15483 tree labels = tsubst_copy_asm_operands (ASM_LABELS (t), args,
15484 complain, in_decl);
15485 tmp = finish_asm_stmt (ASM_VOLATILE_P (t), string, outputs, inputs,
15486 clobbers, labels);
15487 tree asm_expr = tmp;
15488 if (TREE_CODE (asm_expr) == CLEANUP_POINT_EXPR)
15489 asm_expr = TREE_OPERAND (asm_expr, 0);
15490 ASM_INPUT_P (asm_expr) = ASM_INPUT_P (t);
15492 break;
15494 case TRY_BLOCK:
15495 if (CLEANUP_P (t))
15497 stmt = begin_try_block ();
15498 RECUR (TRY_STMTS (t));
15499 finish_cleanup_try_block (stmt);
15500 finish_cleanup (RECUR (TRY_HANDLERS (t)), stmt);
15502 else
15504 tree compound_stmt = NULL_TREE;
15506 if (FN_TRY_BLOCK_P (t))
15507 stmt = begin_function_try_block (&compound_stmt);
15508 else
15509 stmt = begin_try_block ();
15511 RECUR (TRY_STMTS (t));
15513 if (FN_TRY_BLOCK_P (t))
15514 finish_function_try_block (stmt);
15515 else
15516 finish_try_block (stmt);
15518 RECUR (TRY_HANDLERS (t));
15519 if (FN_TRY_BLOCK_P (t))
15520 finish_function_handler_sequence (stmt, compound_stmt);
15521 else
15522 finish_handler_sequence (stmt);
15524 break;
15526 case HANDLER:
15528 tree decl = HANDLER_PARMS (t);
15530 if (decl)
15532 decl = tsubst (decl, args, complain, in_decl);
15533 /* Prevent instantiate_decl from trying to instantiate
15534 this variable. We've already done all that needs to be
15535 done. */
15536 if (decl != error_mark_node)
15537 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
15539 stmt = begin_handler ();
15540 finish_handler_parms (decl, stmt);
15541 RECUR (HANDLER_BODY (t));
15542 finish_handler (stmt);
15544 break;
15546 case TAG_DEFN:
15547 tmp = tsubst (TREE_TYPE (t), args, complain, NULL_TREE);
15548 if (CLASS_TYPE_P (tmp))
15550 /* Local classes are not independent templates; they are
15551 instantiated along with their containing function. And this
15552 way we don't have to deal with pushing out of one local class
15553 to instantiate a member of another local class. */
15554 tree fn;
15555 /* Closures are handled by the LAMBDA_EXPR. */
15556 gcc_assert (!LAMBDA_TYPE_P (TREE_TYPE (t)));
15557 complete_type (tmp);
15558 for (fn = TYPE_METHODS (tmp); fn; fn = DECL_CHAIN (fn))
15559 if (!DECL_ARTIFICIAL (fn))
15560 instantiate_decl (fn, /*defer_ok*/0, /*expl_inst_class*/false);
15562 break;
15564 case STATIC_ASSERT:
15566 tree condition;
15568 ++c_inhibit_evaluation_warnings;
15569 condition =
15570 tsubst_expr (STATIC_ASSERT_CONDITION (t),
15571 args,
15572 complain, in_decl,
15573 /*integral_constant_expression_p=*/true);
15574 --c_inhibit_evaluation_warnings;
15576 finish_static_assert (condition,
15577 STATIC_ASSERT_MESSAGE (t),
15578 STATIC_ASSERT_SOURCE_LOCATION (t),
15579 /*member_p=*/false);
15581 break;
15583 case OACC_KERNELS:
15584 case OACC_PARALLEL:
15585 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), C_ORT_ACC, args, complain,
15586 in_decl);
15587 stmt = begin_omp_parallel ();
15588 RECUR (OMP_BODY (t));
15589 finish_omp_construct (TREE_CODE (t), stmt, tmp);
15590 break;
15592 case OMP_PARALLEL:
15593 r = push_omp_privatization_clauses (OMP_PARALLEL_COMBINED (t));
15594 tmp = tsubst_omp_clauses (OMP_PARALLEL_CLAUSES (t), C_ORT_OMP, args,
15595 complain, in_decl);
15596 if (OMP_PARALLEL_COMBINED (t))
15597 omp_parallel_combined_clauses = &tmp;
15598 stmt = begin_omp_parallel ();
15599 RECUR (OMP_PARALLEL_BODY (t));
15600 gcc_assert (omp_parallel_combined_clauses == NULL);
15601 OMP_PARALLEL_COMBINED (finish_omp_parallel (tmp, stmt))
15602 = OMP_PARALLEL_COMBINED (t);
15603 pop_omp_privatization_clauses (r);
15604 break;
15606 case OMP_TASK:
15607 r = push_omp_privatization_clauses (false);
15608 tmp = tsubst_omp_clauses (OMP_TASK_CLAUSES (t), C_ORT_OMP, args,
15609 complain, in_decl);
15610 stmt = begin_omp_task ();
15611 RECUR (OMP_TASK_BODY (t));
15612 finish_omp_task (tmp, stmt);
15613 pop_omp_privatization_clauses (r);
15614 break;
15616 case OMP_FOR:
15617 case OMP_SIMD:
15618 case CILK_SIMD:
15619 case CILK_FOR:
15620 case OMP_DISTRIBUTE:
15621 case OMP_TASKLOOP:
15622 case OACC_LOOP:
15624 tree clauses, body, pre_body;
15625 tree declv = NULL_TREE, initv = NULL_TREE, condv = NULL_TREE;
15626 tree orig_declv = NULL_TREE;
15627 tree incrv = NULL_TREE;
15628 enum c_omp_region_type ort = C_ORT_OMP;
15629 int i;
15631 if (TREE_CODE (t) == CILK_SIMD || TREE_CODE (t) == CILK_FOR)
15632 ort = C_ORT_CILK;
15633 else if (TREE_CODE (t) == OACC_LOOP)
15634 ort = C_ORT_ACC;
15636 r = push_omp_privatization_clauses (OMP_FOR_INIT (t) == NULL_TREE);
15637 clauses = tsubst_omp_clauses (OMP_FOR_CLAUSES (t), ort, args, complain,
15638 in_decl);
15639 if (OMP_FOR_INIT (t) != NULL_TREE)
15641 declv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15642 if (OMP_FOR_ORIG_DECLS (t))
15643 orig_declv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15644 initv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15645 condv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15646 incrv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
15649 stmt = begin_omp_structured_block ();
15651 pre_body = push_stmt_list ();
15652 RECUR (OMP_FOR_PRE_BODY (t));
15653 pre_body = pop_stmt_list (pre_body);
15655 if (OMP_FOR_INIT (t) != NULL_TREE)
15656 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (t)); i++)
15657 tsubst_omp_for_iterator (t, i, declv, orig_declv, initv, condv,
15658 incrv, &clauses, args, complain, in_decl,
15659 integral_constant_expression_p);
15660 omp_parallel_combined_clauses = NULL;
15662 body = push_stmt_list ();
15663 RECUR (OMP_FOR_BODY (t));
15664 body = pop_stmt_list (body);
15666 if (OMP_FOR_INIT (t) != NULL_TREE)
15667 t = finish_omp_for (EXPR_LOCATION (t), TREE_CODE (t), declv,
15668 orig_declv, initv, condv, incrv, body, pre_body,
15669 NULL, clauses);
15670 else
15672 t = make_node (TREE_CODE (t));
15673 TREE_TYPE (t) = void_type_node;
15674 OMP_FOR_BODY (t) = body;
15675 OMP_FOR_PRE_BODY (t) = pre_body;
15676 OMP_FOR_CLAUSES (t) = clauses;
15677 SET_EXPR_LOCATION (t, EXPR_LOCATION (t));
15678 add_stmt (t);
15681 add_stmt (finish_omp_structured_block (stmt));
15682 pop_omp_privatization_clauses (r);
15684 break;
15686 case OMP_SECTIONS:
15687 omp_parallel_combined_clauses = NULL;
15688 /* FALLTHRU */
15689 case OMP_SINGLE:
15690 case OMP_TEAMS:
15691 case OMP_CRITICAL:
15692 r = push_omp_privatization_clauses (TREE_CODE (t) == OMP_TEAMS
15693 && OMP_TEAMS_COMBINED (t));
15694 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), C_ORT_OMP, args, complain,
15695 in_decl);
15696 stmt = push_stmt_list ();
15697 RECUR (OMP_BODY (t));
15698 stmt = pop_stmt_list (stmt);
15700 t = copy_node (t);
15701 OMP_BODY (t) = stmt;
15702 OMP_CLAUSES (t) = tmp;
15703 add_stmt (t);
15704 pop_omp_privatization_clauses (r);
15705 break;
15707 case OACC_DATA:
15708 case OMP_TARGET_DATA:
15709 case OMP_TARGET:
15710 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), (TREE_CODE (t) == OACC_DATA)
15711 ? C_ORT_ACC : C_ORT_OMP, args, complain,
15712 in_decl);
15713 keep_next_level (true);
15714 stmt = begin_omp_structured_block ();
15716 RECUR (OMP_BODY (t));
15717 stmt = finish_omp_structured_block (stmt);
15719 t = copy_node (t);
15720 OMP_BODY (t) = stmt;
15721 OMP_CLAUSES (t) = tmp;
15722 if (TREE_CODE (t) == OMP_TARGET && OMP_TARGET_COMBINED (t))
15724 tree teams = cp_walk_tree (&stmt, tsubst_find_omp_teams, NULL, NULL);
15725 if (teams)
15727 /* For combined target teams, ensure the num_teams and
15728 thread_limit clause expressions are evaluated on the host,
15729 before entering the target construct. */
15730 tree c;
15731 for (c = OMP_TEAMS_CLAUSES (teams);
15732 c; c = OMP_CLAUSE_CHAIN (c))
15733 if ((OMP_CLAUSE_CODE (c) == OMP_CLAUSE_NUM_TEAMS
15734 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_THREAD_LIMIT)
15735 && TREE_CODE (OMP_CLAUSE_OPERAND (c, 0)) != INTEGER_CST)
15737 tree expr = OMP_CLAUSE_OPERAND (c, 0);
15738 expr = force_target_expr (TREE_TYPE (expr), expr, tf_none);
15739 if (expr == error_mark_node)
15740 continue;
15741 tmp = TARGET_EXPR_SLOT (expr);
15742 add_stmt (expr);
15743 OMP_CLAUSE_OPERAND (c, 0) = expr;
15744 tree tc = build_omp_clause (OMP_CLAUSE_LOCATION (c),
15745 OMP_CLAUSE_FIRSTPRIVATE);
15746 OMP_CLAUSE_DECL (tc) = tmp;
15747 OMP_CLAUSE_CHAIN (tc) = OMP_TARGET_CLAUSES (t);
15748 OMP_TARGET_CLAUSES (t) = tc;
15752 add_stmt (t);
15753 break;
15755 case OACC_DECLARE:
15756 t = copy_node (t);
15757 tmp = tsubst_omp_clauses (OACC_DECLARE_CLAUSES (t), C_ORT_ACC, args,
15758 complain, in_decl);
15759 OACC_DECLARE_CLAUSES (t) = tmp;
15760 add_stmt (t);
15761 break;
15763 case OMP_TARGET_UPDATE:
15764 case OMP_TARGET_ENTER_DATA:
15765 case OMP_TARGET_EXIT_DATA:
15766 tmp = tsubst_omp_clauses (OMP_STANDALONE_CLAUSES (t), C_ORT_OMP, args,
15767 complain, in_decl);
15768 t = copy_node (t);
15769 OMP_STANDALONE_CLAUSES (t) = tmp;
15770 add_stmt (t);
15771 break;
15773 case OACC_ENTER_DATA:
15774 case OACC_EXIT_DATA:
15775 case OACC_UPDATE:
15776 tmp = tsubst_omp_clauses (OMP_STANDALONE_CLAUSES (t), C_ORT_ACC, args,
15777 complain, in_decl);
15778 t = copy_node (t);
15779 OMP_STANDALONE_CLAUSES (t) = tmp;
15780 add_stmt (t);
15781 break;
15783 case OMP_ORDERED:
15784 tmp = tsubst_omp_clauses (OMP_ORDERED_CLAUSES (t), C_ORT_OMP, args,
15785 complain, in_decl);
15786 stmt = push_stmt_list ();
15787 RECUR (OMP_BODY (t));
15788 stmt = pop_stmt_list (stmt);
15790 t = copy_node (t);
15791 OMP_BODY (t) = stmt;
15792 OMP_ORDERED_CLAUSES (t) = tmp;
15793 add_stmt (t);
15794 break;
15796 case OMP_SECTION:
15797 case OMP_MASTER:
15798 case OMP_TASKGROUP:
15799 stmt = push_stmt_list ();
15800 RECUR (OMP_BODY (t));
15801 stmt = pop_stmt_list (stmt);
15803 t = copy_node (t);
15804 OMP_BODY (t) = stmt;
15805 add_stmt (t);
15806 break;
15808 case OMP_ATOMIC:
15809 gcc_assert (OMP_ATOMIC_DEPENDENT_P (t));
15810 if (TREE_CODE (TREE_OPERAND (t, 1)) != MODIFY_EXPR)
15812 tree op1 = TREE_OPERAND (t, 1);
15813 tree rhs1 = NULL_TREE;
15814 tree lhs, rhs;
15815 if (TREE_CODE (op1) == COMPOUND_EXPR)
15817 rhs1 = RECUR (TREE_OPERAND (op1, 0));
15818 op1 = TREE_OPERAND (op1, 1);
15820 lhs = RECUR (TREE_OPERAND (op1, 0));
15821 rhs = RECUR (TREE_OPERAND (op1, 1));
15822 finish_omp_atomic (OMP_ATOMIC, TREE_CODE (op1), lhs, rhs,
15823 NULL_TREE, NULL_TREE, rhs1,
15824 OMP_ATOMIC_SEQ_CST (t));
15826 else
15828 tree op1 = TREE_OPERAND (t, 1);
15829 tree v = NULL_TREE, lhs, rhs = NULL_TREE, lhs1 = NULL_TREE;
15830 tree rhs1 = NULL_TREE;
15831 enum tree_code code = TREE_CODE (TREE_OPERAND (op1, 1));
15832 enum tree_code opcode = NOP_EXPR;
15833 if (code == OMP_ATOMIC_READ)
15835 v = RECUR (TREE_OPERAND (op1, 0));
15836 lhs = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
15838 else if (code == OMP_ATOMIC_CAPTURE_OLD
15839 || code == OMP_ATOMIC_CAPTURE_NEW)
15841 tree op11 = TREE_OPERAND (TREE_OPERAND (op1, 1), 1);
15842 v = RECUR (TREE_OPERAND (op1, 0));
15843 lhs1 = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
15844 if (TREE_CODE (op11) == COMPOUND_EXPR)
15846 rhs1 = RECUR (TREE_OPERAND (op11, 0));
15847 op11 = TREE_OPERAND (op11, 1);
15849 lhs = RECUR (TREE_OPERAND (op11, 0));
15850 rhs = RECUR (TREE_OPERAND (op11, 1));
15851 opcode = TREE_CODE (op11);
15852 if (opcode == MODIFY_EXPR)
15853 opcode = NOP_EXPR;
15855 else
15857 code = OMP_ATOMIC;
15858 lhs = RECUR (TREE_OPERAND (op1, 0));
15859 rhs = RECUR (TREE_OPERAND (op1, 1));
15861 finish_omp_atomic (code, opcode, lhs, rhs, v, lhs1, rhs1,
15862 OMP_ATOMIC_SEQ_CST (t));
15864 break;
15866 case TRANSACTION_EXPR:
15868 int flags = 0;
15869 flags |= (TRANSACTION_EXPR_OUTER (t) ? TM_STMT_ATTR_OUTER : 0);
15870 flags |= (TRANSACTION_EXPR_RELAXED (t) ? TM_STMT_ATTR_RELAXED : 0);
15872 if (TRANSACTION_EXPR_IS_STMT (t))
15874 tree body = TRANSACTION_EXPR_BODY (t);
15875 tree noex = NULL_TREE;
15876 if (TREE_CODE (body) == MUST_NOT_THROW_EXPR)
15878 noex = MUST_NOT_THROW_COND (body);
15879 if (noex == NULL_TREE)
15880 noex = boolean_true_node;
15881 body = TREE_OPERAND (body, 0);
15883 stmt = begin_transaction_stmt (input_location, NULL, flags);
15884 RECUR (body);
15885 finish_transaction_stmt (stmt, NULL, flags, RECUR (noex));
15887 else
15889 stmt = build_transaction_expr (EXPR_LOCATION (t),
15890 RECUR (TRANSACTION_EXPR_BODY (t)),
15891 flags, NULL_TREE);
15892 RETURN (stmt);
15895 break;
15897 case MUST_NOT_THROW_EXPR:
15899 tree op0 = RECUR (TREE_OPERAND (t, 0));
15900 tree cond = RECUR (MUST_NOT_THROW_COND (t));
15901 RETURN (build_must_not_throw_expr (op0, cond));
15904 case EXPR_PACK_EXPANSION:
15905 error ("invalid use of pack expansion expression");
15906 RETURN (error_mark_node);
15908 case NONTYPE_ARGUMENT_PACK:
15909 error ("use %<...%> to expand argument pack");
15910 RETURN (error_mark_node);
15912 case CILK_SPAWN_STMT:
15913 cfun->calls_cilk_spawn = 1;
15914 RETURN (build_cilk_spawn (EXPR_LOCATION (t), RECUR (CILK_SPAWN_FN (t))));
15916 case CILK_SYNC_STMT:
15917 RETURN (build_cilk_sync ());
15919 case COMPOUND_EXPR:
15920 tmp = RECUR (TREE_OPERAND (t, 0));
15921 if (tmp == NULL_TREE)
15922 /* If the first operand was a statement, we're done with it. */
15923 RETURN (RECUR (TREE_OPERAND (t, 1)));
15924 RETURN (build_x_compound_expr (EXPR_LOCATION (t), tmp,
15925 RECUR (TREE_OPERAND (t, 1)),
15926 complain));
15928 case ANNOTATE_EXPR:
15929 tmp = RECUR (TREE_OPERAND (t, 0));
15930 RETURN (build2_loc (EXPR_LOCATION (t), ANNOTATE_EXPR,
15931 TREE_TYPE (tmp), tmp, RECUR (TREE_OPERAND (t, 1))));
15933 default:
15934 gcc_assert (!STATEMENT_CODE_P (TREE_CODE (t)));
15936 RETURN (tsubst_copy_and_build (t, args, complain, in_decl,
15937 /*function_p=*/false,
15938 integral_constant_expression_p));
15941 RETURN (NULL_TREE);
15942 out:
15943 input_location = loc;
15944 return r;
15945 #undef RECUR
15946 #undef RETURN
15949 /* Instantiate the special body of the artificial DECL_OMP_DECLARE_REDUCTION
15950 function. For description of the body see comment above
15951 cp_parser_omp_declare_reduction_exprs. */
15953 static void
15954 tsubst_omp_udr (tree t, tree args, tsubst_flags_t complain, tree in_decl)
15956 if (t == NULL_TREE || t == error_mark_node)
15957 return;
15959 gcc_assert (TREE_CODE (t) == STATEMENT_LIST);
15961 tree_stmt_iterator tsi;
15962 int i;
15963 tree stmts[7];
15964 memset (stmts, 0, sizeof stmts);
15965 for (i = 0, tsi = tsi_start (t);
15966 i < 7 && !tsi_end_p (tsi);
15967 i++, tsi_next (&tsi))
15968 stmts[i] = tsi_stmt (tsi);
15969 gcc_assert (tsi_end_p (tsi));
15971 if (i >= 3)
15973 gcc_assert (TREE_CODE (stmts[0]) == DECL_EXPR
15974 && TREE_CODE (stmts[1]) == DECL_EXPR);
15975 tree omp_out = tsubst (DECL_EXPR_DECL (stmts[0]),
15976 args, complain, in_decl);
15977 tree omp_in = tsubst (DECL_EXPR_DECL (stmts[1]),
15978 args, complain, in_decl);
15979 DECL_CONTEXT (omp_out) = current_function_decl;
15980 DECL_CONTEXT (omp_in) = current_function_decl;
15981 keep_next_level (true);
15982 tree block = begin_omp_structured_block ();
15983 tsubst_expr (stmts[2], args, complain, in_decl, false);
15984 block = finish_omp_structured_block (block);
15985 block = maybe_cleanup_point_expr_void (block);
15986 add_decl_expr (omp_out);
15987 if (TREE_NO_WARNING (DECL_EXPR_DECL (stmts[0])))
15988 TREE_NO_WARNING (omp_out) = 1;
15989 add_decl_expr (omp_in);
15990 finish_expr_stmt (block);
15992 if (i >= 6)
15994 gcc_assert (TREE_CODE (stmts[3]) == DECL_EXPR
15995 && TREE_CODE (stmts[4]) == DECL_EXPR);
15996 tree omp_priv = tsubst (DECL_EXPR_DECL (stmts[3]),
15997 args, complain, in_decl);
15998 tree omp_orig = tsubst (DECL_EXPR_DECL (stmts[4]),
15999 args, complain, in_decl);
16000 DECL_CONTEXT (omp_priv) = current_function_decl;
16001 DECL_CONTEXT (omp_orig) = current_function_decl;
16002 keep_next_level (true);
16003 tree block = begin_omp_structured_block ();
16004 tsubst_expr (stmts[5], args, complain, in_decl, false);
16005 block = finish_omp_structured_block (block);
16006 block = maybe_cleanup_point_expr_void (block);
16007 cp_walk_tree (&block, cp_remove_omp_priv_cleanup_stmt, omp_priv, NULL);
16008 add_decl_expr (omp_priv);
16009 add_decl_expr (omp_orig);
16010 finish_expr_stmt (block);
16011 if (i == 7)
16012 add_decl_expr (omp_orig);
16016 /* T is a postfix-expression that is not being used in a function
16017 call. Return the substituted version of T. */
16019 static tree
16020 tsubst_non_call_postfix_expression (tree t, tree args,
16021 tsubst_flags_t complain,
16022 tree in_decl)
16024 if (TREE_CODE (t) == SCOPE_REF)
16025 t = tsubst_qualified_id (t, args, complain, in_decl,
16026 /*done=*/false, /*address_p=*/false);
16027 else
16028 t = tsubst_copy_and_build (t, args, complain, in_decl,
16029 /*function_p=*/false,
16030 /*integral_constant_expression_p=*/false);
16032 return t;
16035 /* Like tsubst but deals with expressions and performs semantic
16036 analysis. FUNCTION_P is true if T is the "F" in "F (ARGS)". */
16038 tree
16039 tsubst_copy_and_build (tree t,
16040 tree args,
16041 tsubst_flags_t complain,
16042 tree in_decl,
16043 bool function_p,
16044 bool integral_constant_expression_p)
16046 #define RETURN(EXP) do { retval = (EXP); goto out; } while(0)
16047 #define RECUR(NODE) \
16048 tsubst_copy_and_build (NODE, args, complain, in_decl, \
16049 /*function_p=*/false, \
16050 integral_constant_expression_p)
16052 tree retval, op1;
16053 location_t loc;
16055 if (t == NULL_TREE || t == error_mark_node)
16056 return t;
16058 loc = input_location;
16059 if (EXPR_HAS_LOCATION (t))
16060 input_location = EXPR_LOCATION (t);
16062 /* N3276 decltype magic only applies to calls at the top level or on the
16063 right side of a comma. */
16064 tsubst_flags_t decltype_flag = (complain & tf_decltype);
16065 complain &= ~tf_decltype;
16067 switch (TREE_CODE (t))
16069 case USING_DECL:
16070 t = DECL_NAME (t);
16071 /* Fall through. */
16072 case IDENTIFIER_NODE:
16074 tree decl;
16075 cp_id_kind idk;
16076 bool non_integral_constant_expression_p;
16077 const char *error_msg;
16079 if (IDENTIFIER_TYPENAME_P (t))
16081 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16082 t = mangle_conv_op_name_for_type (new_type);
16085 /* Look up the name. */
16086 decl = lookup_name (t);
16088 /* By convention, expressions use ERROR_MARK_NODE to indicate
16089 failure, not NULL_TREE. */
16090 if (decl == NULL_TREE)
16091 decl = error_mark_node;
16093 decl = finish_id_expression (t, decl, NULL_TREE,
16094 &idk,
16095 integral_constant_expression_p,
16096 /*allow_non_integral_constant_expression_p=*/(cxx_dialect >= cxx11),
16097 &non_integral_constant_expression_p,
16098 /*template_p=*/false,
16099 /*done=*/true,
16100 /*address_p=*/false,
16101 /*template_arg_p=*/false,
16102 &error_msg,
16103 input_location);
16104 if (error_msg)
16105 error (error_msg);
16106 if (!function_p && identifier_p (decl))
16108 if (complain & tf_error)
16109 unqualified_name_lookup_error (decl);
16110 decl = error_mark_node;
16112 RETURN (decl);
16115 case TEMPLATE_ID_EXPR:
16117 tree object;
16118 tree templ = RECUR (TREE_OPERAND (t, 0));
16119 tree targs = TREE_OPERAND (t, 1);
16121 if (targs)
16122 targs = tsubst_template_args (targs, args, complain, in_decl);
16123 if (targs == error_mark_node)
16124 return error_mark_node;
16126 if (variable_template_p (templ))
16127 RETURN (lookup_and_finish_template_variable (templ, targs, complain));
16129 if (TREE_CODE (templ) == COMPONENT_REF)
16131 object = TREE_OPERAND (templ, 0);
16132 templ = TREE_OPERAND (templ, 1);
16134 else
16135 object = NULL_TREE;
16136 templ = lookup_template_function (templ, targs);
16138 if (object)
16139 RETURN (build3 (COMPONENT_REF, TREE_TYPE (templ),
16140 object, templ, NULL_TREE));
16141 else
16142 RETURN (baselink_for_fns (templ));
16145 case INDIRECT_REF:
16147 tree r = RECUR (TREE_OPERAND (t, 0));
16149 if (REFERENCE_REF_P (t))
16151 /* A type conversion to reference type will be enclosed in
16152 such an indirect ref, but the substitution of the cast
16153 will have also added such an indirect ref. */
16154 if (TREE_CODE (TREE_TYPE (r)) == REFERENCE_TYPE)
16155 r = convert_from_reference (r);
16157 else
16158 r = build_x_indirect_ref (input_location, r, RO_UNARY_STAR,
16159 complain|decltype_flag);
16161 if (TREE_CODE (r) == INDIRECT_REF)
16162 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
16164 RETURN (r);
16167 case NOP_EXPR:
16169 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16170 tree op0 = RECUR (TREE_OPERAND (t, 0));
16171 RETURN (build_nop (type, op0));
16174 case IMPLICIT_CONV_EXPR:
16176 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16177 tree expr = RECUR (TREE_OPERAND (t, 0));
16178 int flags = LOOKUP_IMPLICIT;
16179 if (IMPLICIT_CONV_EXPR_DIRECT_INIT (t))
16180 flags = LOOKUP_NORMAL;
16181 RETURN (perform_implicit_conversion_flags (type, expr, complain,
16182 flags));
16185 case CONVERT_EXPR:
16187 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16188 tree op0 = RECUR (TREE_OPERAND (t, 0));
16189 RETURN (build1 (CONVERT_EXPR, type, op0));
16192 case CAST_EXPR:
16193 case REINTERPRET_CAST_EXPR:
16194 case CONST_CAST_EXPR:
16195 case DYNAMIC_CAST_EXPR:
16196 case STATIC_CAST_EXPR:
16198 tree type;
16199 tree op, r = NULL_TREE;
16201 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
16202 if (integral_constant_expression_p
16203 && !cast_valid_in_integral_constant_expression_p (type))
16205 if (complain & tf_error)
16206 error ("a cast to a type other than an integral or "
16207 "enumeration type cannot appear in a constant-expression");
16208 RETURN (error_mark_node);
16211 op = RECUR (TREE_OPERAND (t, 0));
16213 warning_sentinel s(warn_useless_cast);
16214 switch (TREE_CODE (t))
16216 case CAST_EXPR:
16217 r = build_functional_cast (type, op, complain);
16218 break;
16219 case REINTERPRET_CAST_EXPR:
16220 r = build_reinterpret_cast (type, op, complain);
16221 break;
16222 case CONST_CAST_EXPR:
16223 r = build_const_cast (type, op, complain);
16224 break;
16225 case DYNAMIC_CAST_EXPR:
16226 r = build_dynamic_cast (type, op, complain);
16227 break;
16228 case STATIC_CAST_EXPR:
16229 r = build_static_cast (type, op, complain);
16230 break;
16231 default:
16232 gcc_unreachable ();
16235 RETURN (r);
16238 case POSTDECREMENT_EXPR:
16239 case POSTINCREMENT_EXPR:
16240 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
16241 args, complain, in_decl);
16242 RETURN (build_x_unary_op (input_location, TREE_CODE (t), op1,
16243 complain|decltype_flag));
16245 case PREDECREMENT_EXPR:
16246 case PREINCREMENT_EXPR:
16247 case NEGATE_EXPR:
16248 case BIT_NOT_EXPR:
16249 case ABS_EXPR:
16250 case TRUTH_NOT_EXPR:
16251 case UNARY_PLUS_EXPR: /* Unary + */
16252 case REALPART_EXPR:
16253 case IMAGPART_EXPR:
16254 RETURN (build_x_unary_op (input_location, TREE_CODE (t),
16255 RECUR (TREE_OPERAND (t, 0)),
16256 complain|decltype_flag));
16258 case FIX_TRUNC_EXPR:
16259 RETURN (cp_build_unary_op (FIX_TRUNC_EXPR, RECUR (TREE_OPERAND (t, 0)),
16260 0, complain));
16262 case ADDR_EXPR:
16263 op1 = TREE_OPERAND (t, 0);
16264 if (TREE_CODE (op1) == LABEL_DECL)
16265 RETURN (finish_label_address_expr (DECL_NAME (op1),
16266 EXPR_LOCATION (op1)));
16267 if (TREE_CODE (op1) == SCOPE_REF)
16268 op1 = tsubst_qualified_id (op1, args, complain, in_decl,
16269 /*done=*/true, /*address_p=*/true);
16270 else
16271 op1 = tsubst_non_call_postfix_expression (op1, args, complain,
16272 in_decl);
16273 RETURN (build_x_unary_op (input_location, ADDR_EXPR, op1,
16274 complain|decltype_flag));
16276 case PLUS_EXPR:
16277 case MINUS_EXPR:
16278 case MULT_EXPR:
16279 case TRUNC_DIV_EXPR:
16280 case CEIL_DIV_EXPR:
16281 case FLOOR_DIV_EXPR:
16282 case ROUND_DIV_EXPR:
16283 case EXACT_DIV_EXPR:
16284 case BIT_AND_EXPR:
16285 case BIT_IOR_EXPR:
16286 case BIT_XOR_EXPR:
16287 case TRUNC_MOD_EXPR:
16288 case FLOOR_MOD_EXPR:
16289 case TRUTH_ANDIF_EXPR:
16290 case TRUTH_ORIF_EXPR:
16291 case TRUTH_AND_EXPR:
16292 case TRUTH_OR_EXPR:
16293 case RSHIFT_EXPR:
16294 case LSHIFT_EXPR:
16295 case RROTATE_EXPR:
16296 case LROTATE_EXPR:
16297 case EQ_EXPR:
16298 case NE_EXPR:
16299 case MAX_EXPR:
16300 case MIN_EXPR:
16301 case LE_EXPR:
16302 case GE_EXPR:
16303 case LT_EXPR:
16304 case GT_EXPR:
16305 case MEMBER_REF:
16306 case DOTSTAR_EXPR:
16308 warning_sentinel s1(warn_type_limits);
16309 warning_sentinel s2(warn_div_by_zero);
16310 warning_sentinel s3(warn_logical_op);
16311 warning_sentinel s4(warn_tautological_compare);
16312 tree op0 = RECUR (TREE_OPERAND (t, 0));
16313 tree op1 = RECUR (TREE_OPERAND (t, 1));
16314 tree r = build_x_binary_op
16315 (input_location, TREE_CODE (t),
16316 op0,
16317 (TREE_NO_WARNING (TREE_OPERAND (t, 0))
16318 ? ERROR_MARK
16319 : TREE_CODE (TREE_OPERAND (t, 0))),
16320 op1,
16321 (TREE_NO_WARNING (TREE_OPERAND (t, 1))
16322 ? ERROR_MARK
16323 : TREE_CODE (TREE_OPERAND (t, 1))),
16324 /*overload=*/NULL,
16325 complain|decltype_flag);
16326 if (EXPR_P (r) && TREE_NO_WARNING (t))
16327 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
16329 RETURN (r);
16332 case POINTER_PLUS_EXPR:
16334 tree op0 = RECUR (TREE_OPERAND (t, 0));
16335 tree op1 = RECUR (TREE_OPERAND (t, 1));
16336 return fold_build_pointer_plus (op0, op1);
16339 case SCOPE_REF:
16340 RETURN (tsubst_qualified_id (t, args, complain, in_decl, /*done=*/true,
16341 /*address_p=*/false));
16342 case ARRAY_REF:
16343 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
16344 args, complain, in_decl);
16345 RETURN (build_x_array_ref (EXPR_LOCATION (t), op1,
16346 RECUR (TREE_OPERAND (t, 1)),
16347 complain|decltype_flag));
16349 case ARRAY_NOTATION_REF:
16351 tree start_index, length, stride;
16352 op1 = tsubst_non_call_postfix_expression (ARRAY_NOTATION_ARRAY (t),
16353 args, complain, in_decl);
16354 start_index = RECUR (ARRAY_NOTATION_START (t));
16355 length = RECUR (ARRAY_NOTATION_LENGTH (t));
16356 stride = RECUR (ARRAY_NOTATION_STRIDE (t));
16357 RETURN (build_array_notation_ref (EXPR_LOCATION (t), op1, start_index,
16358 length, stride, TREE_TYPE (op1)));
16360 case SIZEOF_EXPR:
16361 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0))
16362 || ARGUMENT_PACK_P (TREE_OPERAND (t, 0)))
16363 RETURN (tsubst_copy (t, args, complain, in_decl));
16364 /* Fall through */
16366 case ALIGNOF_EXPR:
16368 tree r;
16370 op1 = TREE_OPERAND (t, 0);
16371 if (TREE_CODE (t) == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (t))
16372 op1 = TREE_TYPE (op1);
16373 if (!args)
16375 /* When there are no ARGS, we are trying to evaluate a
16376 non-dependent expression from the parser. Trying to do
16377 the substitutions may not work. */
16378 if (!TYPE_P (op1))
16379 op1 = TREE_TYPE (op1);
16381 else
16383 ++cp_unevaluated_operand;
16384 ++c_inhibit_evaluation_warnings;
16385 if (TYPE_P (op1))
16386 op1 = tsubst (op1, args, complain, in_decl);
16387 else
16388 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
16389 /*function_p=*/false,
16390 /*integral_constant_expression_p=*/
16391 false);
16392 --cp_unevaluated_operand;
16393 --c_inhibit_evaluation_warnings;
16395 if (TYPE_P (op1))
16396 r = cxx_sizeof_or_alignof_type (op1, TREE_CODE (t),
16397 complain & tf_error);
16398 else
16399 r = cxx_sizeof_or_alignof_expr (op1, TREE_CODE (t),
16400 complain & tf_error);
16401 if (TREE_CODE (t) == SIZEOF_EXPR && r != error_mark_node)
16403 if (TREE_CODE (r) != SIZEOF_EXPR || TYPE_P (op1))
16405 if (!processing_template_decl && TYPE_P (op1))
16407 r = build_min (SIZEOF_EXPR, size_type_node,
16408 build1 (NOP_EXPR, op1, error_mark_node));
16409 SIZEOF_EXPR_TYPE_P (r) = 1;
16411 else
16412 r = build_min (SIZEOF_EXPR, size_type_node, op1);
16413 TREE_SIDE_EFFECTS (r) = 0;
16414 TREE_READONLY (r) = 1;
16416 SET_EXPR_LOCATION (r, EXPR_LOCATION (t));
16418 RETURN (r);
16421 case AT_ENCODE_EXPR:
16423 op1 = TREE_OPERAND (t, 0);
16424 ++cp_unevaluated_operand;
16425 ++c_inhibit_evaluation_warnings;
16426 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
16427 /*function_p=*/false,
16428 /*integral_constant_expression_p=*/false);
16429 --cp_unevaluated_operand;
16430 --c_inhibit_evaluation_warnings;
16431 RETURN (objc_build_encode_expr (op1));
16434 case NOEXCEPT_EXPR:
16435 op1 = TREE_OPERAND (t, 0);
16436 ++cp_unevaluated_operand;
16437 ++c_inhibit_evaluation_warnings;
16438 ++cp_noexcept_operand;
16439 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
16440 /*function_p=*/false,
16441 /*integral_constant_expression_p=*/false);
16442 --cp_unevaluated_operand;
16443 --c_inhibit_evaluation_warnings;
16444 --cp_noexcept_operand;
16445 RETURN (finish_noexcept_expr (op1, complain));
16447 case MODOP_EXPR:
16449 warning_sentinel s(warn_div_by_zero);
16450 tree lhs = RECUR (TREE_OPERAND (t, 0));
16451 tree rhs = RECUR (TREE_OPERAND (t, 2));
16452 tree r = build_x_modify_expr
16453 (EXPR_LOCATION (t), lhs, TREE_CODE (TREE_OPERAND (t, 1)), rhs,
16454 complain|decltype_flag);
16455 /* TREE_NO_WARNING must be set if either the expression was
16456 parenthesized or it uses an operator such as >>= rather
16457 than plain assignment. In the former case, it was already
16458 set and must be copied. In the latter case,
16459 build_x_modify_expr sets it and it must not be reset
16460 here. */
16461 if (TREE_NO_WARNING (t))
16462 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
16464 RETURN (r);
16467 case ARROW_EXPR:
16468 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
16469 args, complain, in_decl);
16470 /* Remember that there was a reference to this entity. */
16471 if (DECL_P (op1)
16472 && !mark_used (op1, complain) && !(complain & tf_error))
16473 RETURN (error_mark_node);
16474 RETURN (build_x_arrow (input_location, op1, complain));
16476 case NEW_EXPR:
16478 tree placement = RECUR (TREE_OPERAND (t, 0));
16479 tree init = RECUR (TREE_OPERAND (t, 3));
16480 vec<tree, va_gc> *placement_vec;
16481 vec<tree, va_gc> *init_vec;
16482 tree ret;
16484 if (placement == NULL_TREE)
16485 placement_vec = NULL;
16486 else
16488 placement_vec = make_tree_vector ();
16489 for (; placement != NULL_TREE; placement = TREE_CHAIN (placement))
16490 vec_safe_push (placement_vec, TREE_VALUE (placement));
16493 /* If there was an initializer in the original tree, but it
16494 instantiated to an empty list, then we should pass a
16495 non-NULL empty vector to tell build_new that it was an
16496 empty initializer() rather than no initializer. This can
16497 only happen when the initializer is a pack expansion whose
16498 parameter packs are of length zero. */
16499 if (init == NULL_TREE && TREE_OPERAND (t, 3) == NULL_TREE)
16500 init_vec = NULL;
16501 else
16503 init_vec = make_tree_vector ();
16504 if (init == void_node)
16505 gcc_assert (init_vec != NULL);
16506 else
16508 for (; init != NULL_TREE; init = TREE_CHAIN (init))
16509 vec_safe_push (init_vec, TREE_VALUE (init));
16513 tree op1 = tsubst (TREE_OPERAND (t, 1), args, complain, in_decl);
16514 tree op2 = RECUR (TREE_OPERAND (t, 2));
16515 ret = build_new (&placement_vec, op1, op2, &init_vec,
16516 NEW_EXPR_USE_GLOBAL (t),
16517 complain);
16519 if (placement_vec != NULL)
16520 release_tree_vector (placement_vec);
16521 if (init_vec != NULL)
16522 release_tree_vector (init_vec);
16524 RETURN (ret);
16527 case DELETE_EXPR:
16529 tree op0 = RECUR (TREE_OPERAND (t, 0));
16530 tree op1 = RECUR (TREE_OPERAND (t, 1));
16531 RETURN (delete_sanity (op0, op1,
16532 DELETE_EXPR_USE_VEC (t),
16533 DELETE_EXPR_USE_GLOBAL (t),
16534 complain));
16537 case COMPOUND_EXPR:
16539 tree op0 = tsubst_copy_and_build (TREE_OPERAND (t, 0), args,
16540 complain & ~tf_decltype, in_decl,
16541 /*function_p=*/false,
16542 integral_constant_expression_p);
16543 RETURN (build_x_compound_expr (EXPR_LOCATION (t),
16544 op0,
16545 RECUR (TREE_OPERAND (t, 1)),
16546 complain|decltype_flag));
16549 case CALL_EXPR:
16551 tree function;
16552 vec<tree, va_gc> *call_args;
16553 unsigned int nargs, i;
16554 bool qualified_p;
16555 bool koenig_p;
16556 tree ret;
16558 function = CALL_EXPR_FN (t);
16559 /* When we parsed the expression, we determined whether or
16560 not Koenig lookup should be performed. */
16561 koenig_p = KOENIG_LOOKUP_P (t);
16562 if (TREE_CODE (function) == SCOPE_REF)
16564 qualified_p = true;
16565 function = tsubst_qualified_id (function, args, complain, in_decl,
16566 /*done=*/false,
16567 /*address_p=*/false);
16569 else if (koenig_p && identifier_p (function))
16571 /* Do nothing; calling tsubst_copy_and_build on an identifier
16572 would incorrectly perform unqualified lookup again.
16574 Note that we can also have an IDENTIFIER_NODE if the earlier
16575 unqualified lookup found a member function; in that case
16576 koenig_p will be false and we do want to do the lookup
16577 again to find the instantiated member function.
16579 FIXME but doing that causes c++/15272, so we need to stop
16580 using IDENTIFIER_NODE in that situation. */
16581 qualified_p = false;
16583 else
16585 if (TREE_CODE (function) == COMPONENT_REF)
16587 tree op = TREE_OPERAND (function, 1);
16589 qualified_p = (TREE_CODE (op) == SCOPE_REF
16590 || (BASELINK_P (op)
16591 && BASELINK_QUALIFIED_P (op)));
16593 else
16594 qualified_p = false;
16596 if (TREE_CODE (function) == ADDR_EXPR
16597 && TREE_CODE (TREE_OPERAND (function, 0)) == FUNCTION_DECL)
16598 /* Avoid error about taking the address of a constructor. */
16599 function = TREE_OPERAND (function, 0);
16601 function = tsubst_copy_and_build (function, args, complain,
16602 in_decl,
16603 !qualified_p,
16604 integral_constant_expression_p);
16606 if (BASELINK_P (function))
16607 qualified_p = true;
16610 nargs = call_expr_nargs (t);
16611 call_args = make_tree_vector ();
16612 for (i = 0; i < nargs; ++i)
16614 tree arg = CALL_EXPR_ARG (t, i);
16616 if (!PACK_EXPANSION_P (arg))
16617 vec_safe_push (call_args, RECUR (CALL_EXPR_ARG (t, i)));
16618 else
16620 /* Expand the pack expansion and push each entry onto
16621 CALL_ARGS. */
16622 arg = tsubst_pack_expansion (arg, args, complain, in_decl);
16623 if (TREE_CODE (arg) == TREE_VEC)
16625 unsigned int len, j;
16627 len = TREE_VEC_LENGTH (arg);
16628 for (j = 0; j < len; ++j)
16630 tree value = TREE_VEC_ELT (arg, j);
16631 if (value != NULL_TREE)
16632 value = convert_from_reference (value);
16633 vec_safe_push (call_args, value);
16636 else
16638 /* A partial substitution. Add one entry. */
16639 vec_safe_push (call_args, arg);
16644 /* We do not perform argument-dependent lookup if normal
16645 lookup finds a non-function, in accordance with the
16646 expected resolution of DR 218. */
16647 if (koenig_p
16648 && ((is_overloaded_fn (function)
16649 /* If lookup found a member function, the Koenig lookup is
16650 not appropriate, even if an unqualified-name was used
16651 to denote the function. */
16652 && !DECL_FUNCTION_MEMBER_P (get_first_fn (function)))
16653 || identifier_p (function))
16654 /* Only do this when substitution turns a dependent call
16655 into a non-dependent call. */
16656 && type_dependent_expression_p_push (t)
16657 && !any_type_dependent_arguments_p (call_args))
16658 function = perform_koenig_lookup (function, call_args, tf_none);
16660 if (identifier_p (function)
16661 && !any_type_dependent_arguments_p (call_args))
16663 if (koenig_p && (complain & tf_warning_or_error))
16665 /* For backwards compatibility and good diagnostics, try
16666 the unqualified lookup again if we aren't in SFINAE
16667 context. */
16668 tree unq = (tsubst_copy_and_build
16669 (function, args, complain, in_decl, true,
16670 integral_constant_expression_p));
16671 if (unq == error_mark_node)
16672 RETURN (error_mark_node);
16674 if (unq != function)
16676 tree fn = unq;
16677 if (INDIRECT_REF_P (fn))
16678 fn = TREE_OPERAND (fn, 0);
16679 if (TREE_CODE (fn) == COMPONENT_REF)
16680 fn = TREE_OPERAND (fn, 1);
16681 if (is_overloaded_fn (fn))
16682 fn = get_first_fn (fn);
16683 if (permerror (EXPR_LOC_OR_LOC (t, input_location),
16684 "%qD was not declared in this scope, "
16685 "and no declarations were found by "
16686 "argument-dependent lookup at the point "
16687 "of instantiation", function))
16689 if (!DECL_P (fn))
16690 /* Can't say anything more. */;
16691 else if (DECL_CLASS_SCOPE_P (fn))
16693 location_t loc = EXPR_LOC_OR_LOC (t,
16694 input_location);
16695 inform (loc,
16696 "declarations in dependent base %qT are "
16697 "not found by unqualified lookup",
16698 DECL_CLASS_CONTEXT (fn));
16699 if (current_class_ptr)
16700 inform (loc,
16701 "use %<this->%D%> instead", function);
16702 else
16703 inform (loc,
16704 "use %<%T::%D%> instead",
16705 current_class_name, function);
16707 else
16708 inform (DECL_SOURCE_LOCATION (fn),
16709 "%qD declared here, later in the "
16710 "translation unit", fn);
16712 function = unq;
16715 if (identifier_p (function))
16717 if (complain & tf_error)
16718 unqualified_name_lookup_error (function);
16719 release_tree_vector (call_args);
16720 RETURN (error_mark_node);
16724 /* Remember that there was a reference to this entity. */
16725 if (DECL_P (function)
16726 && !mark_used (function, complain) && !(complain & tf_error))
16727 RETURN (error_mark_node);
16729 /* Put back tf_decltype for the actual call. */
16730 complain |= decltype_flag;
16732 if (TREE_CODE (function) == OFFSET_REF)
16733 ret = build_offset_ref_call_from_tree (function, &call_args,
16734 complain);
16735 else if (TREE_CODE (function) == COMPONENT_REF)
16737 tree instance = TREE_OPERAND (function, 0);
16738 tree fn = TREE_OPERAND (function, 1);
16740 if (processing_template_decl
16741 && (type_dependent_expression_p (instance)
16742 || (!BASELINK_P (fn)
16743 && TREE_CODE (fn) != FIELD_DECL)
16744 || type_dependent_expression_p (fn)
16745 || any_type_dependent_arguments_p (call_args)))
16746 ret = build_nt_call_vec (function, call_args);
16747 else if (!BASELINK_P (fn))
16748 ret = finish_call_expr (function, &call_args,
16749 /*disallow_virtual=*/false,
16750 /*koenig_p=*/false,
16751 complain);
16752 else
16753 ret = (build_new_method_call
16754 (instance, fn,
16755 &call_args, NULL_TREE,
16756 qualified_p ? LOOKUP_NONVIRTUAL : LOOKUP_NORMAL,
16757 /*fn_p=*/NULL,
16758 complain));
16760 else
16761 ret = finish_call_expr (function, &call_args,
16762 /*disallow_virtual=*/qualified_p,
16763 koenig_p,
16764 complain);
16766 release_tree_vector (call_args);
16768 if (ret != error_mark_node)
16770 bool op = CALL_EXPR_OPERATOR_SYNTAX (t);
16771 bool ord = CALL_EXPR_ORDERED_ARGS (t);
16772 bool rev = CALL_EXPR_REVERSE_ARGS (t);
16773 bool thk = CALL_FROM_THUNK_P (t);
16774 if (op || ord || rev || thk)
16776 function = extract_call_expr (ret);
16777 CALL_EXPR_OPERATOR_SYNTAX (function) = op;
16778 CALL_EXPR_ORDERED_ARGS (function) = ord;
16779 CALL_EXPR_REVERSE_ARGS (function) = rev;
16780 if (thk)
16782 CALL_FROM_THUNK_P (function) = true;
16783 /* The thunk location is not interesting. */
16784 SET_EXPR_LOCATION (function, UNKNOWN_LOCATION);
16789 RETURN (ret);
16792 case COND_EXPR:
16794 tree cond = RECUR (TREE_OPERAND (t, 0));
16795 tree folded_cond = fold_non_dependent_expr (cond);
16796 tree exp1, exp2;
16798 if (TREE_CODE (folded_cond) == INTEGER_CST)
16800 if (integer_zerop (folded_cond))
16802 ++c_inhibit_evaluation_warnings;
16803 exp1 = RECUR (TREE_OPERAND (t, 1));
16804 --c_inhibit_evaluation_warnings;
16805 exp2 = RECUR (TREE_OPERAND (t, 2));
16807 else
16809 exp1 = RECUR (TREE_OPERAND (t, 1));
16810 ++c_inhibit_evaluation_warnings;
16811 exp2 = RECUR (TREE_OPERAND (t, 2));
16812 --c_inhibit_evaluation_warnings;
16814 cond = folded_cond;
16816 else
16818 exp1 = RECUR (TREE_OPERAND (t, 1));
16819 exp2 = RECUR (TREE_OPERAND (t, 2));
16822 RETURN (build_x_conditional_expr (EXPR_LOCATION (t),
16823 cond, exp1, exp2, complain));
16826 case PSEUDO_DTOR_EXPR:
16828 tree op0 = RECUR (TREE_OPERAND (t, 0));
16829 tree op1 = RECUR (TREE_OPERAND (t, 1));
16830 tree op2 = tsubst (TREE_OPERAND (t, 2), args, complain, in_decl);
16831 RETURN (finish_pseudo_destructor_expr (op0, op1, op2,
16832 input_location));
16835 case TREE_LIST:
16837 tree purpose, value, chain;
16839 if (t == void_list_node)
16840 RETURN (t);
16842 if ((TREE_PURPOSE (t) && PACK_EXPANSION_P (TREE_PURPOSE (t)))
16843 || (TREE_VALUE (t) && PACK_EXPANSION_P (TREE_VALUE (t))))
16845 /* We have pack expansions, so expand those and
16846 create a new list out of it. */
16847 tree purposevec = NULL_TREE;
16848 tree valuevec = NULL_TREE;
16849 tree chain;
16850 int i, len = -1;
16852 /* Expand the argument expressions. */
16853 if (TREE_PURPOSE (t))
16854 purposevec = tsubst_pack_expansion (TREE_PURPOSE (t), args,
16855 complain, in_decl);
16856 if (TREE_VALUE (t))
16857 valuevec = tsubst_pack_expansion (TREE_VALUE (t), args,
16858 complain, in_decl);
16860 /* Build the rest of the list. */
16861 chain = TREE_CHAIN (t);
16862 if (chain && chain != void_type_node)
16863 chain = RECUR (chain);
16865 /* Determine the number of arguments. */
16866 if (purposevec && TREE_CODE (purposevec) == TREE_VEC)
16868 len = TREE_VEC_LENGTH (purposevec);
16869 gcc_assert (!valuevec || len == TREE_VEC_LENGTH (valuevec));
16871 else if (TREE_CODE (valuevec) == TREE_VEC)
16872 len = TREE_VEC_LENGTH (valuevec);
16873 else
16875 /* Since we only performed a partial substitution into
16876 the argument pack, we only RETURN (a single list
16877 node. */
16878 if (purposevec == TREE_PURPOSE (t)
16879 && valuevec == TREE_VALUE (t)
16880 && chain == TREE_CHAIN (t))
16881 RETURN (t);
16883 RETURN (tree_cons (purposevec, valuevec, chain));
16886 /* Convert the argument vectors into a TREE_LIST */
16887 i = len;
16888 while (i > 0)
16890 /* Grab the Ith values. */
16891 i--;
16892 purpose = purposevec ? TREE_VEC_ELT (purposevec, i)
16893 : NULL_TREE;
16894 value
16895 = valuevec ? convert_from_reference (TREE_VEC_ELT (valuevec, i))
16896 : NULL_TREE;
16898 /* Build the list (backwards). */
16899 chain = tree_cons (purpose, value, chain);
16902 RETURN (chain);
16905 purpose = TREE_PURPOSE (t);
16906 if (purpose)
16907 purpose = RECUR (purpose);
16908 value = TREE_VALUE (t);
16909 if (value)
16910 value = RECUR (value);
16911 chain = TREE_CHAIN (t);
16912 if (chain && chain != void_type_node)
16913 chain = RECUR (chain);
16914 if (purpose == TREE_PURPOSE (t)
16915 && value == TREE_VALUE (t)
16916 && chain == TREE_CHAIN (t))
16917 RETURN (t);
16918 RETURN (tree_cons (purpose, value, chain));
16921 case COMPONENT_REF:
16923 tree object;
16924 tree object_type;
16925 tree member;
16926 tree r;
16928 object = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
16929 args, complain, in_decl);
16930 /* Remember that there was a reference to this entity. */
16931 if (DECL_P (object)
16932 && !mark_used (object, complain) && !(complain & tf_error))
16933 RETURN (error_mark_node);
16934 object_type = TREE_TYPE (object);
16936 member = TREE_OPERAND (t, 1);
16937 if (BASELINK_P (member))
16938 member = tsubst_baselink (member,
16939 non_reference (TREE_TYPE (object)),
16940 args, complain, in_decl);
16941 else
16942 member = tsubst_copy (member, args, complain, in_decl);
16943 if (member == error_mark_node)
16944 RETURN (error_mark_node);
16946 if (type_dependent_expression_p (object))
16947 /* We can't do much here. */;
16948 else if (!CLASS_TYPE_P (object_type))
16950 if (scalarish_type_p (object_type))
16952 tree s = NULL_TREE;
16953 tree dtor = member;
16955 if (TREE_CODE (dtor) == SCOPE_REF)
16957 s = TREE_OPERAND (dtor, 0);
16958 dtor = TREE_OPERAND (dtor, 1);
16960 if (TREE_CODE (dtor) == BIT_NOT_EXPR)
16962 dtor = TREE_OPERAND (dtor, 0);
16963 if (TYPE_P (dtor))
16964 RETURN (finish_pseudo_destructor_expr
16965 (object, s, dtor, input_location));
16969 else if (TREE_CODE (member) == SCOPE_REF
16970 && TREE_CODE (TREE_OPERAND (member, 1)) == TEMPLATE_ID_EXPR)
16972 /* Lookup the template functions now that we know what the
16973 scope is. */
16974 tree scope = TREE_OPERAND (member, 0);
16975 tree tmpl = TREE_OPERAND (TREE_OPERAND (member, 1), 0);
16976 tree args = TREE_OPERAND (TREE_OPERAND (member, 1), 1);
16977 member = lookup_qualified_name (scope, tmpl,
16978 /*is_type_p=*/false,
16979 /*complain=*/false);
16980 if (BASELINK_P (member))
16982 BASELINK_FUNCTIONS (member)
16983 = build_nt (TEMPLATE_ID_EXPR, BASELINK_FUNCTIONS (member),
16984 args);
16985 member = (adjust_result_of_qualified_name_lookup
16986 (member, BINFO_TYPE (BASELINK_BINFO (member)),
16987 object_type));
16989 else
16991 qualified_name_lookup_error (scope, tmpl, member,
16992 input_location);
16993 RETURN (error_mark_node);
16996 else if (TREE_CODE (member) == SCOPE_REF
16997 && !CLASS_TYPE_P (TREE_OPERAND (member, 0))
16998 && TREE_CODE (TREE_OPERAND (member, 0)) != NAMESPACE_DECL)
17000 if (complain & tf_error)
17002 if (TYPE_P (TREE_OPERAND (member, 0)))
17003 error ("%qT is not a class or namespace",
17004 TREE_OPERAND (member, 0));
17005 else
17006 error ("%qD is not a class or namespace",
17007 TREE_OPERAND (member, 0));
17009 RETURN (error_mark_node);
17011 else if (TREE_CODE (member) == FIELD_DECL)
17013 r = finish_non_static_data_member (member, object, NULL_TREE);
17014 if (TREE_CODE (r) == COMPONENT_REF)
17015 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
17016 RETURN (r);
17019 r = finish_class_member_access_expr (object, member,
17020 /*template_p=*/false,
17021 complain);
17022 if (TREE_CODE (r) == COMPONENT_REF)
17023 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
17024 RETURN (r);
17027 case THROW_EXPR:
17028 RETURN (build_throw
17029 (RECUR (TREE_OPERAND (t, 0))));
17031 case CONSTRUCTOR:
17033 vec<constructor_elt, va_gc> *n;
17034 constructor_elt *ce;
17035 unsigned HOST_WIDE_INT idx;
17036 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
17037 bool process_index_p;
17038 int newlen;
17039 bool need_copy_p = false;
17040 tree r;
17042 if (type == error_mark_node)
17043 RETURN (error_mark_node);
17045 /* digest_init will do the wrong thing if we let it. */
17046 if (type && TYPE_PTRMEMFUNC_P (type))
17047 RETURN (t);
17049 /* We do not want to process the index of aggregate
17050 initializers as they are identifier nodes which will be
17051 looked up by digest_init. */
17052 process_index_p = !(type && MAYBE_CLASS_TYPE_P (type));
17054 n = vec_safe_copy (CONSTRUCTOR_ELTS (t));
17055 newlen = vec_safe_length (n);
17056 FOR_EACH_VEC_SAFE_ELT (n, idx, ce)
17058 if (ce->index && process_index_p
17059 /* An identifier index is looked up in the type
17060 being initialized, not the current scope. */
17061 && TREE_CODE (ce->index) != IDENTIFIER_NODE)
17062 ce->index = RECUR (ce->index);
17064 if (PACK_EXPANSION_P (ce->value))
17066 /* Substitute into the pack expansion. */
17067 ce->value = tsubst_pack_expansion (ce->value, args, complain,
17068 in_decl);
17070 if (ce->value == error_mark_node
17071 || PACK_EXPANSION_P (ce->value))
17073 else if (TREE_VEC_LENGTH (ce->value) == 1)
17074 /* Just move the argument into place. */
17075 ce->value = TREE_VEC_ELT (ce->value, 0);
17076 else
17078 /* Update the length of the final CONSTRUCTOR
17079 arguments vector, and note that we will need to
17080 copy.*/
17081 newlen = newlen + TREE_VEC_LENGTH (ce->value) - 1;
17082 need_copy_p = true;
17085 else
17086 ce->value = RECUR (ce->value);
17089 if (need_copy_p)
17091 vec<constructor_elt, va_gc> *old_n = n;
17093 vec_alloc (n, newlen);
17094 FOR_EACH_VEC_ELT (*old_n, idx, ce)
17096 if (TREE_CODE (ce->value) == TREE_VEC)
17098 int i, len = TREE_VEC_LENGTH (ce->value);
17099 for (i = 0; i < len; ++i)
17100 CONSTRUCTOR_APPEND_ELT (n, 0,
17101 TREE_VEC_ELT (ce->value, i));
17103 else
17104 CONSTRUCTOR_APPEND_ELT (n, 0, ce->value);
17108 r = build_constructor (init_list_type_node, n);
17109 CONSTRUCTOR_IS_DIRECT_INIT (r) = CONSTRUCTOR_IS_DIRECT_INIT (t);
17111 if (TREE_HAS_CONSTRUCTOR (t))
17112 RETURN (finish_compound_literal (type, r, complain));
17114 TREE_TYPE (r) = type;
17115 RETURN (r);
17118 case TYPEID_EXPR:
17120 tree operand_0 = TREE_OPERAND (t, 0);
17121 if (TYPE_P (operand_0))
17123 operand_0 = tsubst (operand_0, args, complain, in_decl);
17124 RETURN (get_typeid (operand_0, complain));
17126 else
17128 operand_0 = RECUR (operand_0);
17129 RETURN (build_typeid (operand_0, complain));
17133 case VAR_DECL:
17134 if (!args)
17135 RETURN (t);
17136 else if (DECL_PACK_P (t))
17138 /* We don't build decls for an instantiation of a
17139 variadic capture proxy, we instantiate the elements
17140 when needed. */
17141 gcc_assert (DECL_HAS_VALUE_EXPR_P (t));
17142 return RECUR (DECL_VALUE_EXPR (t));
17144 /* Fall through */
17146 case PARM_DECL:
17148 tree r = tsubst_copy (t, args, complain, in_decl);
17149 /* ??? We're doing a subset of finish_id_expression here. */
17150 if (VAR_P (r)
17151 && !processing_template_decl
17152 && !cp_unevaluated_operand
17153 && (TREE_STATIC (r) || DECL_EXTERNAL (r))
17154 && CP_DECL_THREAD_LOCAL_P (r))
17156 if (tree wrap = get_tls_wrapper_fn (r))
17157 /* Replace an evaluated use of the thread_local variable with
17158 a call to its wrapper. */
17159 r = build_cxx_call (wrap, 0, NULL, tf_warning_or_error);
17161 else if (outer_automatic_var_p (r))
17163 r = process_outer_var_ref (r, complain);
17164 if (is_capture_proxy (r))
17165 register_local_specialization (r, t);
17168 if (TREE_CODE (TREE_TYPE (t)) != REFERENCE_TYPE)
17169 /* If the original type was a reference, we'll be wrapped in
17170 the appropriate INDIRECT_REF. */
17171 r = convert_from_reference (r);
17172 RETURN (r);
17175 case VA_ARG_EXPR:
17177 tree op0 = RECUR (TREE_OPERAND (t, 0));
17178 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
17179 RETURN (build_x_va_arg (EXPR_LOCATION (t), op0, type));
17182 case OFFSETOF_EXPR:
17183 RETURN (finish_offsetof (RECUR (TREE_OPERAND (t, 0)),
17184 EXPR_LOCATION (t)));
17186 case TRAIT_EXPR:
17188 tree type1 = tsubst (TRAIT_EXPR_TYPE1 (t), args,
17189 complain, in_decl);
17191 tree type2 = TRAIT_EXPR_TYPE2 (t);
17192 if (type2 && TREE_CODE (type2) == TREE_LIST)
17193 type2 = RECUR (type2);
17194 else if (type2)
17195 type2 = tsubst (type2, args, complain, in_decl);
17197 RETURN (finish_trait_expr (TRAIT_EXPR_KIND (t), type1, type2));
17200 case STMT_EXPR:
17202 tree old_stmt_expr = cur_stmt_expr;
17203 tree stmt_expr = begin_stmt_expr ();
17205 cur_stmt_expr = stmt_expr;
17206 tsubst_expr (STMT_EXPR_STMT (t), args, complain, in_decl,
17207 integral_constant_expression_p);
17208 stmt_expr = finish_stmt_expr (stmt_expr, false);
17209 cur_stmt_expr = old_stmt_expr;
17211 /* If the resulting list of expression statement is empty,
17212 fold it further into void_node. */
17213 if (empty_expr_stmt_p (stmt_expr))
17214 stmt_expr = void_node;
17216 RETURN (stmt_expr);
17219 case LAMBDA_EXPR:
17221 tree r = build_lambda_expr ();
17223 tree type = tsubst (LAMBDA_EXPR_CLOSURE (t), args, complain, NULL_TREE);
17224 LAMBDA_EXPR_CLOSURE (r) = type;
17225 CLASSTYPE_LAMBDA_EXPR (type) = r;
17227 LAMBDA_EXPR_LOCATION (r)
17228 = LAMBDA_EXPR_LOCATION (t);
17229 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (r)
17230 = LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (t);
17231 LAMBDA_EXPR_MUTABLE_P (r) = LAMBDA_EXPR_MUTABLE_P (t);
17232 LAMBDA_EXPR_DISCRIMINATOR (r)
17233 = (LAMBDA_EXPR_DISCRIMINATOR (t));
17234 tree scope = LAMBDA_EXPR_EXTRA_SCOPE (t);
17235 if (!scope)
17236 /* No substitution needed. */;
17237 else if (VAR_OR_FUNCTION_DECL_P (scope))
17238 /* For a function or variable scope, we want to use tsubst so that we
17239 don't complain about referring to an auto before deduction. */
17240 scope = tsubst (scope, args, complain, in_decl);
17241 else if (TREE_CODE (scope) == PARM_DECL)
17243 /* Look up the parameter we want directly, as tsubst_copy
17244 doesn't do what we need. */
17245 tree fn = tsubst (DECL_CONTEXT (scope), args, complain, in_decl);
17246 tree parm = FUNCTION_FIRST_USER_PARM (fn);
17247 while (DECL_PARM_INDEX (parm) != DECL_PARM_INDEX (scope))
17248 parm = DECL_CHAIN (parm);
17249 scope = parm;
17250 /* FIXME Work around the parm not having DECL_CONTEXT set. */
17251 if (DECL_CONTEXT (scope) == NULL_TREE)
17252 DECL_CONTEXT (scope) = fn;
17254 else if (TREE_CODE (scope) == FIELD_DECL)
17255 /* For a field, use tsubst_copy so that we look up the existing field
17256 rather than build a new one. */
17257 scope = RECUR (scope);
17258 else
17259 gcc_unreachable ();
17260 LAMBDA_EXPR_EXTRA_SCOPE (r) = scope;
17262 gcc_assert (LAMBDA_EXPR_THIS_CAPTURE (t) == NULL_TREE
17263 && LAMBDA_EXPR_PENDING_PROXIES (t) == NULL);
17265 /* Do this again now that LAMBDA_EXPR_EXTRA_SCOPE is set. */
17266 determine_visibility (TYPE_NAME (type));
17267 /* Now that we know visibility, instantiate the type so we have a
17268 declaration of the op() for later calls to lambda_function. */
17269 complete_type (type);
17271 if (tree fn = lambda_function (type))
17272 LAMBDA_EXPR_RETURN_TYPE (r) = TREE_TYPE (TREE_TYPE (fn));
17274 LAMBDA_EXPR_THIS_CAPTURE (r) = NULL_TREE;
17276 insert_pending_capture_proxies ();
17278 RETURN (build_lambda_object (r));
17281 case TARGET_EXPR:
17282 /* We can get here for a constant initializer of non-dependent type.
17283 FIXME stop folding in cp_parser_initializer_clause. */
17285 tree r = get_target_expr_sfinae (RECUR (TARGET_EXPR_INITIAL (t)),
17286 complain);
17287 RETURN (r);
17290 case TRANSACTION_EXPR:
17291 RETURN (tsubst_expr(t, args, complain, in_decl,
17292 integral_constant_expression_p));
17294 case PAREN_EXPR:
17295 RETURN (finish_parenthesized_expr (RECUR (TREE_OPERAND (t, 0))));
17297 case VEC_PERM_EXPR:
17299 tree op0 = RECUR (TREE_OPERAND (t, 0));
17300 tree op1 = RECUR (TREE_OPERAND (t, 1));
17301 tree op2 = RECUR (TREE_OPERAND (t, 2));
17302 RETURN (build_x_vec_perm_expr (input_location, op0, op1, op2,
17303 complain));
17306 case REQUIRES_EXPR:
17307 RETURN (tsubst_requires_expr (t, args, complain, in_decl));
17309 default:
17310 /* Handle Objective-C++ constructs, if appropriate. */
17312 tree subst
17313 = objcp_tsubst_copy_and_build (t, args, complain,
17314 in_decl, /*function_p=*/false);
17315 if (subst)
17316 RETURN (subst);
17318 RETURN (tsubst_copy (t, args, complain, in_decl));
17321 #undef RECUR
17322 #undef RETURN
17323 out:
17324 input_location = loc;
17325 return retval;
17328 /* Verify that the instantiated ARGS are valid. For type arguments,
17329 make sure that the type's linkage is ok. For non-type arguments,
17330 make sure they are constants if they are integral or enumerations.
17331 Emit an error under control of COMPLAIN, and return TRUE on error. */
17333 static bool
17334 check_instantiated_arg (tree tmpl, tree t, tsubst_flags_t complain)
17336 if (dependent_template_arg_p (t))
17337 return false;
17338 if (ARGUMENT_PACK_P (t))
17340 tree vec = ARGUMENT_PACK_ARGS (t);
17341 int len = TREE_VEC_LENGTH (vec);
17342 bool result = false;
17343 int i;
17345 for (i = 0; i < len; ++i)
17346 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (vec, i), complain))
17347 result = true;
17348 return result;
17350 else if (TYPE_P (t))
17352 /* [basic.link]: A name with no linkage (notably, the name
17353 of a class or enumeration declared in a local scope)
17354 shall not be used to declare an entity with linkage.
17355 This implies that names with no linkage cannot be used as
17356 template arguments
17358 DR 757 relaxes this restriction for C++0x. */
17359 tree nt = (cxx_dialect > cxx98 ? NULL_TREE
17360 : no_linkage_check (t, /*relaxed_p=*/false));
17362 if (nt)
17364 /* DR 488 makes use of a type with no linkage cause
17365 type deduction to fail. */
17366 if (complain & tf_error)
17368 if (TYPE_UNNAMED_P (nt))
17369 error ("%qT is/uses unnamed type", t);
17370 else
17371 error ("template argument for %qD uses local type %qT",
17372 tmpl, t);
17374 return true;
17376 /* In order to avoid all sorts of complications, we do not
17377 allow variably-modified types as template arguments. */
17378 else if (variably_modified_type_p (t, NULL_TREE))
17380 if (complain & tf_error)
17381 error ("%qT is a variably modified type", t);
17382 return true;
17385 /* Class template and alias template arguments should be OK. */
17386 else if (DECL_TYPE_TEMPLATE_P (t))
17388 /* A non-type argument of integral or enumerated type must be a
17389 constant. */
17390 else if (TREE_TYPE (t)
17391 && INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (t))
17392 && !REFERENCE_REF_P (t)
17393 && !TREE_CONSTANT (t))
17395 if (complain & tf_error)
17396 error ("integral expression %qE is not constant", t);
17397 return true;
17399 return false;
17402 static bool
17403 check_instantiated_args (tree tmpl, tree args, tsubst_flags_t complain)
17405 int ix, len = DECL_NTPARMS (tmpl);
17406 bool result = false;
17408 for (ix = 0; ix != len; ix++)
17410 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (args, ix), complain))
17411 result = true;
17413 if (result && (complain & tf_error))
17414 error (" trying to instantiate %qD", tmpl);
17415 return result;
17418 /* We're out of SFINAE context now, so generate diagnostics for the access
17419 errors we saw earlier when instantiating D from TMPL and ARGS. */
17421 static void
17422 recheck_decl_substitution (tree d, tree tmpl, tree args)
17424 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
17425 tree type = TREE_TYPE (pattern);
17426 location_t loc = input_location;
17428 push_access_scope (d);
17429 push_deferring_access_checks (dk_no_deferred);
17430 input_location = DECL_SOURCE_LOCATION (pattern);
17431 tsubst (type, args, tf_warning_or_error, d);
17432 input_location = loc;
17433 pop_deferring_access_checks ();
17434 pop_access_scope (d);
17437 /* Instantiate the indicated variable, function, or alias template TMPL with
17438 the template arguments in TARG_PTR. */
17440 static tree
17441 instantiate_template_1 (tree tmpl, tree orig_args, tsubst_flags_t complain)
17443 tree targ_ptr = orig_args;
17444 tree fndecl;
17445 tree gen_tmpl;
17446 tree spec;
17447 bool access_ok = true;
17449 if (tmpl == error_mark_node)
17450 return error_mark_node;
17452 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
17454 /* If this function is a clone, handle it specially. */
17455 if (DECL_CLONED_FUNCTION_P (tmpl))
17457 tree spec;
17458 tree clone;
17460 /* Use DECL_ABSTRACT_ORIGIN because only FUNCTION_DECLs have
17461 DECL_CLONED_FUNCTION. */
17462 spec = instantiate_template (DECL_ABSTRACT_ORIGIN (tmpl),
17463 targ_ptr, complain);
17464 if (spec == error_mark_node)
17465 return error_mark_node;
17467 /* Look for the clone. */
17468 FOR_EACH_CLONE (clone, spec)
17469 if (DECL_NAME (clone) == DECL_NAME (tmpl))
17470 return clone;
17471 /* We should always have found the clone by now. */
17472 gcc_unreachable ();
17473 return NULL_TREE;
17476 if (targ_ptr == error_mark_node)
17477 return error_mark_node;
17479 /* Check to see if we already have this specialization. */
17480 gen_tmpl = most_general_template (tmpl);
17481 if (TMPL_ARGS_DEPTH (targ_ptr)
17482 < TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (gen_tmpl)))
17483 /* targ_ptr only has the innermost template args, so add the outer ones
17484 from tmpl, which could be either a partial instantiation or gen_tmpl (in
17485 the case of a non-dependent call within a template definition). */
17486 targ_ptr = (add_outermost_template_args
17487 (DECL_TI_ARGS (DECL_TEMPLATE_RESULT (tmpl)),
17488 targ_ptr));
17490 /* It would be nice to avoid hashing here and then again in tsubst_decl,
17491 but it doesn't seem to be on the hot path. */
17492 spec = retrieve_specialization (gen_tmpl, targ_ptr, 0);
17494 gcc_assert (tmpl == gen_tmpl
17495 || ((fndecl = retrieve_specialization (tmpl, orig_args, 0))
17496 == spec)
17497 || fndecl == NULL_TREE);
17499 if (spec != NULL_TREE)
17501 if (FNDECL_HAS_ACCESS_ERRORS (spec))
17503 if (complain & tf_error)
17504 recheck_decl_substitution (spec, gen_tmpl, targ_ptr);
17505 return error_mark_node;
17507 return spec;
17510 if (check_instantiated_args (gen_tmpl, INNERMOST_TEMPLATE_ARGS (targ_ptr),
17511 complain))
17512 return error_mark_node;
17514 /* We are building a FUNCTION_DECL, during which the access of its
17515 parameters and return types have to be checked. However this
17516 FUNCTION_DECL which is the desired context for access checking
17517 is not built yet. We solve this chicken-and-egg problem by
17518 deferring all checks until we have the FUNCTION_DECL. */
17519 push_deferring_access_checks (dk_deferred);
17521 /* Instantiation of the function happens in the context of the function
17522 template, not the context of the overload resolution we're doing. */
17523 push_to_top_level ();
17524 /* If there are dependent arguments, e.g. because we're doing partial
17525 ordering, make sure processing_template_decl stays set. */
17526 if (uses_template_parms (targ_ptr))
17527 ++processing_template_decl;
17528 if (DECL_CLASS_SCOPE_P (gen_tmpl))
17530 tree ctx = tsubst_aggr_type (DECL_CONTEXT (gen_tmpl), targ_ptr,
17531 complain, gen_tmpl, true);
17532 push_nested_class (ctx);
17535 tree pattern = DECL_TEMPLATE_RESULT (gen_tmpl);
17537 fndecl = NULL_TREE;
17538 if (VAR_P (pattern))
17540 /* We need to determine if we're using a partial or explicit
17541 specialization now, because the type of the variable could be
17542 different. */
17543 tree tid = lookup_template_variable (gen_tmpl, targ_ptr);
17544 tree elt = most_specialized_partial_spec (tid, complain);
17545 if (elt == error_mark_node)
17546 pattern = error_mark_node;
17547 else if (elt)
17549 tree partial_tmpl = TREE_VALUE (elt);
17550 tree partial_args = TREE_PURPOSE (elt);
17551 tree partial_pat = DECL_TEMPLATE_RESULT (partial_tmpl);
17552 fndecl = tsubst (partial_pat, partial_args, complain, gen_tmpl);
17556 /* Substitute template parameters to obtain the specialization. */
17557 if (fndecl == NULL_TREE)
17558 fndecl = tsubst (pattern, targ_ptr, complain, gen_tmpl);
17559 if (DECL_CLASS_SCOPE_P (gen_tmpl))
17560 pop_nested_class ();
17561 pop_from_top_level ();
17563 if (fndecl == error_mark_node)
17565 pop_deferring_access_checks ();
17566 return error_mark_node;
17569 /* The DECL_TI_TEMPLATE should always be the immediate parent
17570 template, not the most general template. */
17571 DECL_TI_TEMPLATE (fndecl) = tmpl;
17572 DECL_TI_ARGS (fndecl) = targ_ptr;
17574 /* Now we know the specialization, compute access previously
17575 deferred. */
17576 push_access_scope (fndecl);
17577 if (!perform_deferred_access_checks (complain))
17578 access_ok = false;
17579 pop_access_scope (fndecl);
17580 pop_deferring_access_checks ();
17582 /* If we've just instantiated the main entry point for a function,
17583 instantiate all the alternate entry points as well. We do this
17584 by cloning the instantiation of the main entry point, not by
17585 instantiating the template clones. */
17586 if (DECL_CHAIN (gen_tmpl) && DECL_CLONED_FUNCTION_P (DECL_CHAIN (gen_tmpl)))
17587 clone_function_decl (fndecl, /*update_method_vec_p=*/0);
17589 if (!access_ok)
17591 if (!(complain & tf_error))
17593 /* Remember to reinstantiate when we're out of SFINAE so the user
17594 can see the errors. */
17595 FNDECL_HAS_ACCESS_ERRORS (fndecl) = true;
17597 return error_mark_node;
17599 return fndecl;
17602 /* Wrapper for instantiate_template_1. */
17604 tree
17605 instantiate_template (tree tmpl, tree orig_args, tsubst_flags_t complain)
17607 tree ret;
17608 timevar_push (TV_TEMPLATE_INST);
17609 ret = instantiate_template_1 (tmpl, orig_args, complain);
17610 timevar_pop (TV_TEMPLATE_INST);
17611 return ret;
17614 /* Instantiate the alias template TMPL with ARGS. Also push a template
17615 instantiation level, which instantiate_template doesn't do because
17616 functions and variables have sufficient context established by the
17617 callers. */
17619 static tree
17620 instantiate_alias_template (tree tmpl, tree args, tsubst_flags_t complain)
17622 struct pending_template *old_last_pend = last_pending_template;
17623 struct tinst_level *old_error_tinst = last_error_tinst_level;
17624 if (tmpl == error_mark_node || args == error_mark_node)
17625 return error_mark_node;
17626 tree tinst = build_tree_list (tmpl, args);
17627 if (!push_tinst_level (tinst))
17629 ggc_free (tinst);
17630 return error_mark_node;
17633 args =
17634 coerce_innermost_template_parms (DECL_TEMPLATE_PARMS (tmpl),
17635 args, tmpl, complain,
17636 /*require_all_args=*/true,
17637 /*use_default_args=*/true);
17639 tree r = instantiate_template (tmpl, args, complain);
17640 pop_tinst_level ();
17641 /* We can't free this if a pending_template entry or last_error_tinst_level
17642 is pointing at it. */
17643 if (last_pending_template == old_last_pend
17644 && last_error_tinst_level == old_error_tinst)
17645 ggc_free (tinst);
17647 return r;
17650 /* PARM is a template parameter pack for FN. Returns true iff
17651 PARM is used in a deducible way in the argument list of FN. */
17653 static bool
17654 pack_deducible_p (tree parm, tree fn)
17656 tree t = FUNCTION_FIRST_USER_PARMTYPE (fn);
17657 for (; t; t = TREE_CHAIN (t))
17659 tree type = TREE_VALUE (t);
17660 tree packs;
17661 if (!PACK_EXPANSION_P (type))
17662 continue;
17663 for (packs = PACK_EXPANSION_PARAMETER_PACKS (type);
17664 packs; packs = TREE_CHAIN (packs))
17665 if (template_args_equal (TREE_VALUE (packs), parm))
17667 /* The template parameter pack is used in a function parameter
17668 pack. If this is the end of the parameter list, the
17669 template parameter pack is deducible. */
17670 if (TREE_CHAIN (t) == void_list_node)
17671 return true;
17672 else
17673 /* Otherwise, not. Well, it could be deduced from
17674 a non-pack parameter, but doing so would end up with
17675 a deduction mismatch, so don't bother. */
17676 return false;
17679 /* The template parameter pack isn't used in any function parameter
17680 packs, but it might be used deeper, e.g. tuple<Args...>. */
17681 return true;
17684 /* The FN is a TEMPLATE_DECL for a function. ARGS is an array with
17685 NARGS elements of the arguments that are being used when calling
17686 it. TARGS is a vector into which the deduced template arguments
17687 are placed.
17689 Returns either a FUNCTION_DECL for the matching specialization of FN or
17690 NULL_TREE if no suitable specialization can be found. If EXPLAIN_P is
17691 true, diagnostics will be printed to explain why it failed.
17693 If FN is a conversion operator, or we are trying to produce a specific
17694 specialization, RETURN_TYPE is the return type desired.
17696 The EXPLICIT_TARGS are explicit template arguments provided via a
17697 template-id.
17699 The parameter STRICT is one of:
17701 DEDUCE_CALL:
17702 We are deducing arguments for a function call, as in
17703 [temp.deduct.call]. If RETURN_TYPE is non-null, we are
17704 deducing arguments for a call to the result of a conversion
17705 function template, as in [over.call.object].
17707 DEDUCE_CONV:
17708 We are deducing arguments for a conversion function, as in
17709 [temp.deduct.conv].
17711 DEDUCE_EXACT:
17712 We are deducing arguments when doing an explicit instantiation
17713 as in [temp.explicit], when determining an explicit specialization
17714 as in [temp.expl.spec], or when taking the address of a function
17715 template, as in [temp.deduct.funcaddr]. */
17717 tree
17718 fn_type_unification (tree fn,
17719 tree explicit_targs,
17720 tree targs,
17721 const tree *args,
17722 unsigned int nargs,
17723 tree return_type,
17724 unification_kind_t strict,
17725 int flags,
17726 bool explain_p,
17727 bool decltype_p)
17729 tree parms;
17730 tree fntype;
17731 tree decl = NULL_TREE;
17732 tsubst_flags_t complain = (explain_p ? tf_warning_or_error : tf_none);
17733 bool ok;
17734 static int deduction_depth;
17735 struct pending_template *old_last_pend = last_pending_template;
17736 struct tinst_level *old_error_tinst = last_error_tinst_level;
17737 tree tparms = DECL_INNERMOST_TEMPLATE_PARMS (fn);
17738 tree tinst;
17739 tree r = error_mark_node;
17741 tree full_targs = targs;
17742 if (TMPL_ARGS_DEPTH (targs)
17743 < TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (fn)))
17744 full_targs = (add_outermost_template_args
17745 (DECL_TI_ARGS (DECL_TEMPLATE_RESULT (fn)),
17746 targs));
17748 if (decltype_p)
17749 complain |= tf_decltype;
17751 /* In C++0x, it's possible to have a function template whose type depends
17752 on itself recursively. This is most obvious with decltype, but can also
17753 occur with enumeration scope (c++/48969). So we need to catch infinite
17754 recursion and reject the substitution at deduction time; this function
17755 will return error_mark_node for any repeated substitution.
17757 This also catches excessive recursion such as when f<N> depends on
17758 f<N-1> across all integers, and returns error_mark_node for all the
17759 substitutions back up to the initial one.
17761 This is, of course, not reentrant. */
17762 if (excessive_deduction_depth)
17763 return error_mark_node;
17764 tinst = build_tree_list (fn, NULL_TREE);
17765 ++deduction_depth;
17767 gcc_assert (TREE_CODE (fn) == TEMPLATE_DECL);
17769 fntype = TREE_TYPE (fn);
17770 if (explicit_targs)
17772 /* [temp.deduct]
17774 The specified template arguments must match the template
17775 parameters in kind (i.e., type, nontype, template), and there
17776 must not be more arguments than there are parameters;
17777 otherwise type deduction fails.
17779 Nontype arguments must match the types of the corresponding
17780 nontype template parameters, or must be convertible to the
17781 types of the corresponding nontype parameters as specified in
17782 _temp.arg.nontype_, otherwise type deduction fails.
17784 All references in the function type of the function template
17785 to the corresponding template parameters are replaced by the
17786 specified template argument values. If a substitution in a
17787 template parameter or in the function type of the function
17788 template results in an invalid type, type deduction fails. */
17789 int i, len = TREE_VEC_LENGTH (tparms);
17790 location_t loc = input_location;
17791 bool incomplete = false;
17793 if (explicit_targs == error_mark_node)
17794 goto fail;
17796 if (TMPL_ARGS_DEPTH (explicit_targs)
17797 < TMPL_ARGS_DEPTH (full_targs))
17798 explicit_targs = add_outermost_template_args (full_targs,
17799 explicit_targs);
17801 /* Adjust any explicit template arguments before entering the
17802 substitution context. */
17803 explicit_targs
17804 = (coerce_template_parms (tparms, explicit_targs, NULL_TREE,
17805 complain,
17806 /*require_all_args=*/false,
17807 /*use_default_args=*/false));
17808 if (explicit_targs == error_mark_node)
17809 goto fail;
17811 /* Substitute the explicit args into the function type. This is
17812 necessary so that, for instance, explicitly declared function
17813 arguments can match null pointed constants. If we were given
17814 an incomplete set of explicit args, we must not do semantic
17815 processing during substitution as we could create partial
17816 instantiations. */
17817 for (i = 0; i < len; i++)
17819 tree parm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
17820 bool parameter_pack = false;
17821 tree targ = TREE_VEC_ELT (explicit_targs, i);
17823 /* Dig out the actual parm. */
17824 if (TREE_CODE (parm) == TYPE_DECL
17825 || TREE_CODE (parm) == TEMPLATE_DECL)
17827 parm = TREE_TYPE (parm);
17828 parameter_pack = TEMPLATE_TYPE_PARAMETER_PACK (parm);
17830 else if (TREE_CODE (parm) == PARM_DECL)
17832 parm = DECL_INITIAL (parm);
17833 parameter_pack = TEMPLATE_PARM_PARAMETER_PACK (parm);
17836 if (!parameter_pack && targ == NULL_TREE)
17837 /* No explicit argument for this template parameter. */
17838 incomplete = true;
17840 if (parameter_pack && pack_deducible_p (parm, fn))
17842 /* Mark the argument pack as "incomplete". We could
17843 still deduce more arguments during unification.
17844 We remove this mark in type_unification_real. */
17845 if (targ)
17847 ARGUMENT_PACK_INCOMPLETE_P(targ) = 1;
17848 ARGUMENT_PACK_EXPLICIT_ARGS (targ)
17849 = ARGUMENT_PACK_ARGS (targ);
17852 /* We have some incomplete argument packs. */
17853 incomplete = true;
17857 TREE_VALUE (tinst) = explicit_targs;
17858 if (!push_tinst_level (tinst))
17860 excessive_deduction_depth = true;
17861 goto fail;
17863 processing_template_decl += incomplete;
17864 input_location = DECL_SOURCE_LOCATION (fn);
17865 /* Ignore any access checks; we'll see them again in
17866 instantiate_template and they might have the wrong
17867 access path at this point. */
17868 push_deferring_access_checks (dk_deferred);
17869 fntype = tsubst (TREE_TYPE (fn), explicit_targs,
17870 complain | tf_partial, NULL_TREE);
17871 pop_deferring_access_checks ();
17872 input_location = loc;
17873 processing_template_decl -= incomplete;
17874 pop_tinst_level ();
17876 if (fntype == error_mark_node)
17877 goto fail;
17879 /* Place the explicitly specified arguments in TARGS. */
17880 explicit_targs = INNERMOST_TEMPLATE_ARGS (explicit_targs);
17881 for (i = NUM_TMPL_ARGS (explicit_targs); i--;)
17882 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (explicit_targs, i);
17885 /* Never do unification on the 'this' parameter. */
17886 parms = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (fntype));
17888 if (return_type && strict == DEDUCE_CALL)
17890 /* We're deducing for a call to the result of a template conversion
17891 function. The parms we really want are in return_type. */
17892 if (POINTER_TYPE_P (return_type))
17893 return_type = TREE_TYPE (return_type);
17894 parms = TYPE_ARG_TYPES (return_type);
17896 else if (return_type)
17898 tree *new_args;
17900 parms = tree_cons (NULL_TREE, TREE_TYPE (fntype), parms);
17901 new_args = XALLOCAVEC (tree, nargs + 1);
17902 new_args[0] = return_type;
17903 memcpy (new_args + 1, args, nargs * sizeof (tree));
17904 args = new_args;
17905 ++nargs;
17908 /* We allow incomplete unification without an error message here
17909 because the standard doesn't seem to explicitly prohibit it. Our
17910 callers must be ready to deal with unification failures in any
17911 event. */
17913 TREE_VALUE (tinst) = targs;
17914 /* If we aren't explaining yet, push tinst context so we can see where
17915 any errors (e.g. from class instantiations triggered by instantiation
17916 of default template arguments) come from. If we are explaining, this
17917 context is redundant. */
17918 if (!explain_p && !push_tinst_level (tinst))
17920 excessive_deduction_depth = true;
17921 goto fail;
17924 /* type_unification_real will pass back any access checks from default
17925 template argument substitution. */
17926 vec<deferred_access_check, va_gc> *checks;
17927 checks = NULL;
17929 ok = !type_unification_real (DECL_INNERMOST_TEMPLATE_PARMS (fn),
17930 full_targs, parms, args, nargs, /*subr=*/0,
17931 strict, flags, &checks, explain_p);
17932 if (!explain_p)
17933 pop_tinst_level ();
17934 if (!ok)
17935 goto fail;
17937 /* Now that we have bindings for all of the template arguments,
17938 ensure that the arguments deduced for the template template
17939 parameters have compatible template parameter lists. We cannot
17940 check this property before we have deduced all template
17941 arguments, because the template parameter types of a template
17942 template parameter might depend on prior template parameters
17943 deduced after the template template parameter. The following
17944 ill-formed example illustrates this issue:
17946 template<typename T, template<T> class C> void f(C<5>, T);
17948 template<int N> struct X {};
17950 void g() {
17951 f(X<5>(), 5l); // error: template argument deduction fails
17954 The template parameter list of 'C' depends on the template type
17955 parameter 'T', but 'C' is deduced to 'X' before 'T' is deduced to
17956 'long'. Thus, we can't check that 'C' cannot bind to 'X' at the
17957 time that we deduce 'C'. */
17958 if (!template_template_parm_bindings_ok_p
17959 (DECL_INNERMOST_TEMPLATE_PARMS (fn), targs))
17961 unify_inconsistent_template_template_parameters (explain_p);
17962 goto fail;
17965 /* All is well so far. Now, check:
17967 [temp.deduct]
17969 When all template arguments have been deduced, all uses of
17970 template parameters in nondeduced contexts are replaced with
17971 the corresponding deduced argument values. If the
17972 substitution results in an invalid type, as described above,
17973 type deduction fails. */
17974 TREE_VALUE (tinst) = targs;
17975 if (!push_tinst_level (tinst))
17977 excessive_deduction_depth = true;
17978 goto fail;
17981 /* Also collect access checks from the instantiation. */
17982 reopen_deferring_access_checks (checks);
17984 decl = instantiate_template (fn, targs, complain);
17986 checks = get_deferred_access_checks ();
17987 pop_deferring_access_checks ();
17989 pop_tinst_level ();
17991 if (decl == error_mark_node)
17992 goto fail;
17994 /* Now perform any access checks encountered during substitution. */
17995 push_access_scope (decl);
17996 ok = perform_access_checks (checks, complain);
17997 pop_access_scope (decl);
17998 if (!ok)
17999 goto fail;
18001 /* If we're looking for an exact match, check that what we got
18002 is indeed an exact match. It might not be if some template
18003 parameters are used in non-deduced contexts. But don't check
18004 for an exact match if we have dependent template arguments;
18005 in that case we're doing partial ordering, and we already know
18006 that we have two candidates that will provide the actual type. */
18007 if (strict == DEDUCE_EXACT && !any_dependent_template_arguments_p (targs))
18009 tree substed = TREE_TYPE (decl);
18010 unsigned int i;
18012 tree sarg
18013 = skip_artificial_parms_for (decl, TYPE_ARG_TYPES (substed));
18014 if (return_type)
18015 sarg = tree_cons (NULL_TREE, TREE_TYPE (substed), sarg);
18016 for (i = 0; i < nargs && sarg; ++i, sarg = TREE_CHAIN (sarg))
18017 if (!same_type_p (args[i], TREE_VALUE (sarg)))
18019 unify_type_mismatch (explain_p, args[i],
18020 TREE_VALUE (sarg));
18021 goto fail;
18025 r = decl;
18027 fail:
18028 --deduction_depth;
18029 if (excessive_deduction_depth)
18031 if (deduction_depth == 0)
18032 /* Reset once we're all the way out. */
18033 excessive_deduction_depth = false;
18036 /* We can't free this if a pending_template entry or last_error_tinst_level
18037 is pointing at it. */
18038 if (last_pending_template == old_last_pend
18039 && last_error_tinst_level == old_error_tinst)
18040 ggc_free (tinst);
18042 return r;
18045 /* Adjust types before performing type deduction, as described in
18046 [temp.deduct.call] and [temp.deduct.conv]. The rules in these two
18047 sections are symmetric. PARM is the type of a function parameter
18048 or the return type of the conversion function. ARG is the type of
18049 the argument passed to the call, or the type of the value
18050 initialized with the result of the conversion function.
18051 ARG_EXPR is the original argument expression, which may be null. */
18053 static int
18054 maybe_adjust_types_for_deduction (unification_kind_t strict,
18055 tree* parm,
18056 tree* arg,
18057 tree arg_expr)
18059 int result = 0;
18061 switch (strict)
18063 case DEDUCE_CALL:
18064 break;
18066 case DEDUCE_CONV:
18067 /* Swap PARM and ARG throughout the remainder of this
18068 function; the handling is precisely symmetric since PARM
18069 will initialize ARG rather than vice versa. */
18070 std::swap (parm, arg);
18071 break;
18073 case DEDUCE_EXACT:
18074 /* Core issue #873: Do the DR606 thing (see below) for these cases,
18075 too, but here handle it by stripping the reference from PARM
18076 rather than by adding it to ARG. */
18077 if (TREE_CODE (*parm) == REFERENCE_TYPE
18078 && TYPE_REF_IS_RVALUE (*parm)
18079 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
18080 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
18081 && TREE_CODE (*arg) == REFERENCE_TYPE
18082 && !TYPE_REF_IS_RVALUE (*arg))
18083 *parm = TREE_TYPE (*parm);
18084 /* Nothing else to do in this case. */
18085 return 0;
18087 default:
18088 gcc_unreachable ();
18091 if (TREE_CODE (*parm) != REFERENCE_TYPE)
18093 /* [temp.deduct.call]
18095 If P is not a reference type:
18097 --If A is an array type, the pointer type produced by the
18098 array-to-pointer standard conversion (_conv.array_) is
18099 used in place of A for type deduction; otherwise,
18101 --If A is a function type, the pointer type produced by
18102 the function-to-pointer standard conversion
18103 (_conv.func_) is used in place of A for type deduction;
18104 otherwise,
18106 --If A is a cv-qualified type, the top level
18107 cv-qualifiers of A's type are ignored for type
18108 deduction. */
18109 if (TREE_CODE (*arg) == ARRAY_TYPE)
18110 *arg = build_pointer_type (TREE_TYPE (*arg));
18111 else if (TREE_CODE (*arg) == FUNCTION_TYPE)
18112 *arg = build_pointer_type (*arg);
18113 else
18114 *arg = TYPE_MAIN_VARIANT (*arg);
18117 /* From C++0x [14.8.2.1/3 temp.deduct.call] (after DR606), "If P is
18118 of the form T&&, where T is a template parameter, and the argument
18119 is an lvalue, T is deduced as A& */
18120 if (TREE_CODE (*parm) == REFERENCE_TYPE
18121 && TYPE_REF_IS_RVALUE (*parm)
18122 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
18123 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
18124 && (arg_expr ? lvalue_p (arg_expr)
18125 /* try_one_overload doesn't provide an arg_expr, but
18126 functions are always lvalues. */
18127 : TREE_CODE (*arg) == FUNCTION_TYPE))
18128 *arg = build_reference_type (*arg);
18130 /* [temp.deduct.call]
18132 If P is a cv-qualified type, the top level cv-qualifiers
18133 of P's type are ignored for type deduction. If P is a
18134 reference type, the type referred to by P is used for
18135 type deduction. */
18136 *parm = TYPE_MAIN_VARIANT (*parm);
18137 if (TREE_CODE (*parm) == REFERENCE_TYPE)
18139 *parm = TREE_TYPE (*parm);
18140 result |= UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
18143 /* DR 322. For conversion deduction, remove a reference type on parm
18144 too (which has been swapped into ARG). */
18145 if (strict == DEDUCE_CONV && TREE_CODE (*arg) == REFERENCE_TYPE)
18146 *arg = TREE_TYPE (*arg);
18148 return result;
18151 /* Subroutine of unify_one_argument. PARM is a function parameter of a
18152 template which does contain any deducible template parameters; check if
18153 ARG is a suitable match for it. STRICT, FLAGS and EXPLAIN_P are as in
18154 unify_one_argument. */
18156 static int
18157 check_non_deducible_conversion (tree parm, tree arg, int strict,
18158 int flags, bool explain_p)
18160 tree type;
18162 if (!TYPE_P (arg))
18163 type = TREE_TYPE (arg);
18164 else
18165 type = arg;
18167 if (same_type_p (parm, type))
18168 return unify_success (explain_p);
18170 if (strict == DEDUCE_CONV)
18172 if (can_convert_arg (type, parm, NULL_TREE, flags,
18173 explain_p ? tf_warning_or_error : tf_none))
18174 return unify_success (explain_p);
18176 else if (strict != DEDUCE_EXACT)
18178 if (can_convert_arg (parm, type,
18179 TYPE_P (arg) ? NULL_TREE : arg,
18180 flags, explain_p ? tf_warning_or_error : tf_none))
18181 return unify_success (explain_p);
18184 if (strict == DEDUCE_EXACT)
18185 return unify_type_mismatch (explain_p, parm, arg);
18186 else
18187 return unify_arg_conversion (explain_p, parm, type, arg);
18190 static bool uses_deducible_template_parms (tree type);
18192 /* Returns true iff the expression EXPR is one from which a template
18193 argument can be deduced. In other words, if it's an undecorated
18194 use of a template non-type parameter. */
18196 static bool
18197 deducible_expression (tree expr)
18199 return (TREE_CODE (expr) == TEMPLATE_PARM_INDEX);
18202 /* Returns true iff the array domain DOMAIN uses a template parameter in a
18203 deducible way; that is, if it has a max value of <PARM> - 1. */
18205 static bool
18206 deducible_array_bound (tree domain)
18208 if (domain == NULL_TREE)
18209 return false;
18211 tree max = TYPE_MAX_VALUE (domain);
18212 if (TREE_CODE (max) != MINUS_EXPR)
18213 return false;
18215 return deducible_expression (TREE_OPERAND (max, 0));
18218 /* Returns true iff the template arguments ARGS use a template parameter
18219 in a deducible way. */
18221 static bool
18222 deducible_template_args (tree args)
18224 for (int i = 0; i < TREE_VEC_LENGTH (args); ++i)
18226 bool deducible;
18227 tree elt = TREE_VEC_ELT (args, i);
18228 if (ARGUMENT_PACK_P (elt))
18229 deducible = deducible_template_args (ARGUMENT_PACK_ARGS (elt));
18230 else
18232 if (PACK_EXPANSION_P (elt))
18233 elt = PACK_EXPANSION_PATTERN (elt);
18234 if (TREE_CODE (elt) == TEMPLATE_TEMPLATE_PARM)
18235 deducible = true;
18236 else if (TYPE_P (elt))
18237 deducible = uses_deducible_template_parms (elt);
18238 else
18239 deducible = deducible_expression (elt);
18241 if (deducible)
18242 return true;
18244 return false;
18247 /* Returns true iff TYPE contains any deducible references to template
18248 parameters, as per 14.8.2.5. */
18250 static bool
18251 uses_deducible_template_parms (tree type)
18253 if (PACK_EXPANSION_P (type))
18254 type = PACK_EXPANSION_PATTERN (type);
18256 /* T
18257 cv-list T
18258 TT<T>
18259 TT<i>
18260 TT<> */
18261 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
18262 || TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
18263 return true;
18265 /* T*
18267 T&& */
18268 if (POINTER_TYPE_P (type))
18269 return uses_deducible_template_parms (TREE_TYPE (type));
18271 /* T[integer-constant ]
18272 type [i] */
18273 if (TREE_CODE (type) == ARRAY_TYPE)
18274 return (uses_deducible_template_parms (TREE_TYPE (type))
18275 || deducible_array_bound (TYPE_DOMAIN (type)));
18277 /* T type ::*
18278 type T::*
18279 T T::*
18280 T (type ::*)()
18281 type (T::*)()
18282 type (type ::*)(T)
18283 type (T::*)(T)
18284 T (type ::*)(T)
18285 T (T::*)()
18286 T (T::*)(T) */
18287 if (TYPE_PTRMEM_P (type))
18288 return (uses_deducible_template_parms (TYPE_PTRMEM_CLASS_TYPE (type))
18289 || (uses_deducible_template_parms
18290 (TYPE_PTRMEM_POINTED_TO_TYPE (type))));
18292 /* template-name <T> (where template-name refers to a class template)
18293 template-name <i> (where template-name refers to a class template) */
18294 if (CLASS_TYPE_P (type)
18295 && CLASSTYPE_TEMPLATE_INFO (type)
18296 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type)))
18297 return deducible_template_args (INNERMOST_TEMPLATE_ARGS
18298 (CLASSTYPE_TI_ARGS (type)));
18300 /* type (T)
18302 T(T) */
18303 if (TREE_CODE (type) == FUNCTION_TYPE
18304 || TREE_CODE (type) == METHOD_TYPE)
18306 if (uses_deducible_template_parms (TREE_TYPE (type)))
18307 return true;
18308 tree parm = TYPE_ARG_TYPES (type);
18309 if (TREE_CODE (type) == METHOD_TYPE)
18310 parm = TREE_CHAIN (parm);
18311 for (; parm; parm = TREE_CHAIN (parm))
18312 if (uses_deducible_template_parms (TREE_VALUE (parm)))
18313 return true;
18316 return false;
18319 /* Subroutine of type_unification_real and unify_pack_expansion to
18320 handle unification of a single P/A pair. Parameters are as
18321 for those functions. */
18323 static int
18324 unify_one_argument (tree tparms, tree targs, tree parm, tree arg,
18325 int subr, unification_kind_t strict,
18326 bool explain_p)
18328 tree arg_expr = NULL_TREE;
18329 int arg_strict;
18331 if (arg == error_mark_node || parm == error_mark_node)
18332 return unify_invalid (explain_p);
18333 if (arg == unknown_type_node)
18334 /* We can't deduce anything from this, but we might get all the
18335 template args from other function args. */
18336 return unify_success (explain_p);
18338 /* Implicit conversions (Clause 4) will be performed on a function
18339 argument to convert it to the type of the corresponding function
18340 parameter if the parameter type contains no template-parameters that
18341 participate in template argument deduction. */
18342 if (strict != DEDUCE_EXACT
18343 && TYPE_P (parm) && !uses_deducible_template_parms (parm))
18344 /* For function parameters with no deducible template parameters,
18345 just return. We'll check non-dependent conversions later. */
18346 return unify_success (explain_p);
18348 switch (strict)
18350 case DEDUCE_CALL:
18351 arg_strict = (UNIFY_ALLOW_OUTER_LEVEL
18352 | UNIFY_ALLOW_MORE_CV_QUAL
18353 | UNIFY_ALLOW_DERIVED);
18354 break;
18356 case DEDUCE_CONV:
18357 arg_strict = UNIFY_ALLOW_LESS_CV_QUAL;
18358 break;
18360 case DEDUCE_EXACT:
18361 arg_strict = UNIFY_ALLOW_NONE;
18362 break;
18364 default:
18365 gcc_unreachable ();
18368 /* We only do these transformations if this is the top-level
18369 parameter_type_list in a call or declaration matching; in other
18370 situations (nested function declarators, template argument lists) we
18371 won't be comparing a type to an expression, and we don't do any type
18372 adjustments. */
18373 if (!subr)
18375 if (!TYPE_P (arg))
18377 gcc_assert (TREE_TYPE (arg) != NULL_TREE);
18378 if (type_unknown_p (arg))
18380 /* [temp.deduct.type] A template-argument can be
18381 deduced from a pointer to function or pointer
18382 to member function argument if the set of
18383 overloaded functions does not contain function
18384 templates and at most one of a set of
18385 overloaded functions provides a unique
18386 match. */
18388 if (resolve_overloaded_unification
18389 (tparms, targs, parm, arg, strict,
18390 arg_strict, explain_p))
18391 return unify_success (explain_p);
18392 return unify_overload_resolution_failure (explain_p, arg);
18395 arg_expr = arg;
18396 arg = unlowered_expr_type (arg);
18397 if (arg == error_mark_node)
18398 return unify_invalid (explain_p);
18401 arg_strict |=
18402 maybe_adjust_types_for_deduction (strict, &parm, &arg, arg_expr);
18404 else
18405 if ((TYPE_P (parm) || TREE_CODE (parm) == TEMPLATE_DECL)
18406 != (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL))
18407 return unify_template_argument_mismatch (explain_p, parm, arg);
18409 /* For deduction from an init-list we need the actual list. */
18410 if (arg_expr && BRACE_ENCLOSED_INITIALIZER_P (arg_expr))
18411 arg = arg_expr;
18412 return unify (tparms, targs, parm, arg, arg_strict, explain_p);
18415 /* Most parms like fn_type_unification.
18417 If SUBR is 1, we're being called recursively (to unify the
18418 arguments of a function or method parameter of a function
18419 template).
18421 CHECKS is a pointer to a vector of access checks encountered while
18422 substituting default template arguments. */
18424 static int
18425 type_unification_real (tree tparms,
18426 tree full_targs,
18427 tree xparms,
18428 const tree *xargs,
18429 unsigned int xnargs,
18430 int subr,
18431 unification_kind_t strict,
18432 int flags,
18433 vec<deferred_access_check, va_gc> **checks,
18434 bool explain_p)
18436 tree parm, arg;
18437 int i;
18438 int ntparms = TREE_VEC_LENGTH (tparms);
18439 int saw_undeduced = 0;
18440 tree parms;
18441 const tree *args;
18442 unsigned int nargs;
18443 unsigned int ia;
18445 gcc_assert (TREE_CODE (tparms) == TREE_VEC);
18446 gcc_assert (xparms == NULL_TREE || TREE_CODE (xparms) == TREE_LIST);
18447 gcc_assert (ntparms > 0);
18449 tree targs = INNERMOST_TEMPLATE_ARGS (full_targs);
18451 /* Reset the number of non-defaulted template arguments contained
18452 in TARGS. */
18453 NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs) = NULL_TREE;
18455 again:
18456 parms = xparms;
18457 args = xargs;
18458 nargs = xnargs;
18460 ia = 0;
18461 while (parms && parms != void_list_node
18462 && ia < nargs)
18464 parm = TREE_VALUE (parms);
18466 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION
18467 && (!TREE_CHAIN (parms) || TREE_CHAIN (parms) == void_list_node))
18468 /* For a function parameter pack that occurs at the end of the
18469 parameter-declaration-list, the type A of each remaining
18470 argument of the call is compared with the type P of the
18471 declarator-id of the function parameter pack. */
18472 break;
18474 parms = TREE_CHAIN (parms);
18476 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION)
18477 /* For a function parameter pack that does not occur at the
18478 end of the parameter-declaration-list, the type of the
18479 parameter pack is a non-deduced context. */
18480 continue;
18482 arg = args[ia];
18483 ++ia;
18485 if (unify_one_argument (tparms, full_targs, parm, arg, subr, strict,
18486 explain_p))
18487 return 1;
18490 if (parms
18491 && parms != void_list_node
18492 && TREE_CODE (TREE_VALUE (parms)) == TYPE_PACK_EXPANSION)
18494 /* Unify the remaining arguments with the pack expansion type. */
18495 tree argvec;
18496 tree parmvec = make_tree_vec (1);
18498 /* Allocate a TREE_VEC and copy in all of the arguments */
18499 argvec = make_tree_vec (nargs - ia);
18500 for (i = 0; ia < nargs; ++ia, ++i)
18501 TREE_VEC_ELT (argvec, i) = args[ia];
18503 /* Copy the parameter into parmvec. */
18504 TREE_VEC_ELT (parmvec, 0) = TREE_VALUE (parms);
18505 if (unify_pack_expansion (tparms, full_targs, parmvec, argvec, strict,
18506 /*subr=*/subr, explain_p))
18507 return 1;
18509 /* Advance to the end of the list of parameters. */
18510 parms = TREE_CHAIN (parms);
18513 /* Fail if we've reached the end of the parm list, and more args
18514 are present, and the parm list isn't variadic. */
18515 if (ia < nargs && parms == void_list_node)
18516 return unify_too_many_arguments (explain_p, nargs, ia);
18517 /* Fail if parms are left and they don't have default values and
18518 they aren't all deduced as empty packs (c++/57397). This is
18519 consistent with sufficient_parms_p. */
18520 if (parms && parms != void_list_node
18521 && TREE_PURPOSE (parms) == NULL_TREE)
18523 unsigned int count = nargs;
18524 tree p = parms;
18525 bool type_pack_p;
18528 type_pack_p = TREE_CODE (TREE_VALUE (p)) == TYPE_PACK_EXPANSION;
18529 if (!type_pack_p)
18530 count++;
18531 p = TREE_CHAIN (p);
18533 while (p && p != void_list_node);
18534 if (count != nargs)
18535 return unify_too_few_arguments (explain_p, ia, count,
18536 type_pack_p);
18539 if (!subr)
18541 tsubst_flags_t complain = (explain_p
18542 ? tf_warning_or_error
18543 : tf_none);
18545 for (i = 0; i < ntparms; i++)
18547 tree targ = TREE_VEC_ELT (targs, i);
18548 tree tparm = TREE_VEC_ELT (tparms, i);
18550 /* Clear the "incomplete" flags on all argument packs now so that
18551 substituting them into later default arguments works. */
18552 if (targ && ARGUMENT_PACK_P (targ))
18554 ARGUMENT_PACK_INCOMPLETE_P (targ) = 0;
18555 ARGUMENT_PACK_EXPLICIT_ARGS (targ) = NULL_TREE;
18558 if (targ || tparm == error_mark_node)
18559 continue;
18560 tparm = TREE_VALUE (tparm);
18562 /* If this is an undeduced nontype parameter that depends on
18563 a type parameter, try another pass; its type may have been
18564 deduced from a later argument than the one from which
18565 this parameter can be deduced. */
18566 if (TREE_CODE (tparm) == PARM_DECL
18567 && uses_template_parms (TREE_TYPE (tparm))
18568 && saw_undeduced < 2)
18570 saw_undeduced = 1;
18571 continue;
18574 /* Core issue #226 (C++0x) [temp.deduct]:
18576 If a template argument has not been deduced, its
18577 default template argument, if any, is used.
18579 When we are in C++98 mode, TREE_PURPOSE will either
18580 be NULL_TREE or ERROR_MARK_NODE, so we do not need
18581 to explicitly check cxx_dialect here. */
18582 if (TREE_PURPOSE (TREE_VEC_ELT (tparms, i)))
18583 /* OK, there is a default argument. Wait until after the
18584 conversion check to do substitution. */
18585 continue;
18587 /* If the type parameter is a parameter pack, then it will
18588 be deduced to an empty parameter pack. */
18589 if (template_parameter_pack_p (tparm))
18591 tree arg;
18593 if (TREE_CODE (tparm) == TEMPLATE_PARM_INDEX)
18595 arg = make_node (NONTYPE_ARGUMENT_PACK);
18596 TREE_TYPE (arg) = TREE_TYPE (TEMPLATE_PARM_DECL (tparm));
18597 TREE_CONSTANT (arg) = 1;
18599 else
18600 arg = cxx_make_type (TYPE_ARGUMENT_PACK);
18602 SET_ARGUMENT_PACK_ARGS (arg, make_tree_vec (0));
18604 TREE_VEC_ELT (targs, i) = arg;
18605 continue;
18608 return unify_parameter_deduction_failure (explain_p, tparm);
18611 /* DR 1391: All parameters have args, now check non-dependent parms for
18612 convertibility. */
18613 if (saw_undeduced < 2)
18614 for (ia = 0, parms = xparms, args = xargs, nargs = xnargs;
18615 parms && parms != void_list_node && ia < nargs; )
18617 parm = TREE_VALUE (parms);
18619 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION
18620 && (!TREE_CHAIN (parms)
18621 || TREE_CHAIN (parms) == void_list_node))
18622 /* For a function parameter pack that occurs at the end of the
18623 parameter-declaration-list, the type A of each remaining
18624 argument of the call is compared with the type P of the
18625 declarator-id of the function parameter pack. */
18626 break;
18628 parms = TREE_CHAIN (parms);
18630 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION)
18631 /* For a function parameter pack that does not occur at the
18632 end of the parameter-declaration-list, the type of the
18633 parameter pack is a non-deduced context. */
18634 continue;
18636 arg = args[ia];
18637 ++ia;
18639 if (uses_template_parms (parm))
18640 continue;
18641 if (check_non_deducible_conversion (parm, arg, strict, flags,
18642 explain_p))
18643 return 1;
18646 /* Now substitute into the default template arguments. */
18647 for (i = 0; i < ntparms; i++)
18649 tree targ = TREE_VEC_ELT (targs, i);
18650 tree tparm = TREE_VEC_ELT (tparms, i);
18652 if (targ || tparm == error_mark_node)
18653 continue;
18654 tree parm = TREE_VALUE (tparm);
18656 if (TREE_CODE (parm) == PARM_DECL
18657 && uses_template_parms (TREE_TYPE (parm))
18658 && saw_undeduced < 2)
18659 continue;
18661 tree arg = TREE_PURPOSE (tparm);
18662 reopen_deferring_access_checks (*checks);
18663 location_t save_loc = input_location;
18664 if (DECL_P (parm))
18665 input_location = DECL_SOURCE_LOCATION (parm);
18666 arg = tsubst_template_arg (arg, full_targs, complain, NULL_TREE);
18667 arg = convert_template_argument (parm, arg, full_targs, complain,
18668 i, NULL_TREE);
18669 input_location = save_loc;
18670 *checks = get_deferred_access_checks ();
18671 pop_deferring_access_checks ();
18672 if (arg == error_mark_node)
18673 return 1;
18674 else
18676 TREE_VEC_ELT (targs, i) = arg;
18677 /* The position of the first default template argument,
18678 is also the number of non-defaulted arguments in TARGS.
18679 Record that. */
18680 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
18681 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, i);
18682 continue;
18686 if (saw_undeduced++ == 1)
18687 goto again;
18690 if (CHECKING_P && !NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
18691 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, TREE_VEC_LENGTH (targs));
18693 return unify_success (explain_p);
18696 /* Subroutine of type_unification_real. Args are like the variables
18697 at the call site. ARG is an overloaded function (or template-id);
18698 we try deducing template args from each of the overloads, and if
18699 only one succeeds, we go with that. Modifies TARGS and returns
18700 true on success. */
18702 static bool
18703 resolve_overloaded_unification (tree tparms,
18704 tree targs,
18705 tree parm,
18706 tree arg,
18707 unification_kind_t strict,
18708 int sub_strict,
18709 bool explain_p)
18711 tree tempargs = copy_node (targs);
18712 int good = 0;
18713 tree goodfn = NULL_TREE;
18714 bool addr_p;
18716 if (TREE_CODE (arg) == ADDR_EXPR)
18718 arg = TREE_OPERAND (arg, 0);
18719 addr_p = true;
18721 else
18722 addr_p = false;
18724 if (TREE_CODE (arg) == COMPONENT_REF)
18725 /* Handle `&x' where `x' is some static or non-static member
18726 function name. */
18727 arg = TREE_OPERAND (arg, 1);
18729 if (TREE_CODE (arg) == OFFSET_REF)
18730 arg = TREE_OPERAND (arg, 1);
18732 /* Strip baselink information. */
18733 if (BASELINK_P (arg))
18734 arg = BASELINK_FUNCTIONS (arg);
18736 if (TREE_CODE (arg) == TEMPLATE_ID_EXPR)
18738 /* If we got some explicit template args, we need to plug them into
18739 the affected templates before we try to unify, in case the
18740 explicit args will completely resolve the templates in question. */
18742 int ok = 0;
18743 tree expl_subargs = TREE_OPERAND (arg, 1);
18744 arg = TREE_OPERAND (arg, 0);
18746 for (; arg; arg = OVL_NEXT (arg))
18748 tree fn = OVL_CURRENT (arg);
18749 tree subargs, elem;
18751 if (TREE_CODE (fn) != TEMPLATE_DECL)
18752 continue;
18754 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
18755 expl_subargs, NULL_TREE, tf_none,
18756 /*require_all_args=*/true,
18757 /*use_default_args=*/true);
18758 if (subargs != error_mark_node
18759 && !any_dependent_template_arguments_p (subargs))
18761 elem = TREE_TYPE (instantiate_template (fn, subargs, tf_none));
18762 if (try_one_overload (tparms, targs, tempargs, parm,
18763 elem, strict, sub_strict, addr_p, explain_p)
18764 && (!goodfn || !same_type_p (goodfn, elem)))
18766 goodfn = elem;
18767 ++good;
18770 else if (subargs)
18771 ++ok;
18773 /* If no templates (or more than one) are fully resolved by the
18774 explicit arguments, this template-id is a non-deduced context; it
18775 could still be OK if we deduce all template arguments for the
18776 enclosing call through other arguments. */
18777 if (good != 1)
18778 good = ok;
18780 else if (TREE_CODE (arg) != OVERLOAD
18781 && TREE_CODE (arg) != FUNCTION_DECL)
18782 /* If ARG is, for example, "(0, &f)" then its type will be unknown
18783 -- but the deduction does not succeed because the expression is
18784 not just the function on its own. */
18785 return false;
18786 else
18787 for (; arg; arg = OVL_NEXT (arg))
18788 if (try_one_overload (tparms, targs, tempargs, parm,
18789 TREE_TYPE (OVL_CURRENT (arg)),
18790 strict, sub_strict, addr_p, explain_p)
18791 && (!goodfn || !decls_match (goodfn, OVL_CURRENT (arg))))
18793 goodfn = OVL_CURRENT (arg);
18794 ++good;
18797 /* [temp.deduct.type] A template-argument can be deduced from a pointer
18798 to function or pointer to member function argument if the set of
18799 overloaded functions does not contain function templates and at most
18800 one of a set of overloaded functions provides a unique match.
18802 So if we found multiple possibilities, we return success but don't
18803 deduce anything. */
18805 if (good == 1)
18807 int i = TREE_VEC_LENGTH (targs);
18808 for (; i--; )
18809 if (TREE_VEC_ELT (tempargs, i))
18811 tree old = TREE_VEC_ELT (targs, i);
18812 tree new_ = TREE_VEC_ELT (tempargs, i);
18813 if (new_ && old && ARGUMENT_PACK_P (old)
18814 && ARGUMENT_PACK_EXPLICIT_ARGS (old))
18815 /* Don't forget explicit template arguments in a pack. */
18816 ARGUMENT_PACK_EXPLICIT_ARGS (new_)
18817 = ARGUMENT_PACK_EXPLICIT_ARGS (old);
18818 TREE_VEC_ELT (targs, i) = new_;
18821 if (good)
18822 return true;
18824 return false;
18827 /* Core DR 115: In contexts where deduction is done and fails, or in
18828 contexts where deduction is not done, if a template argument list is
18829 specified and it, along with any default template arguments, identifies
18830 a single function template specialization, then the template-id is an
18831 lvalue for the function template specialization. */
18833 tree
18834 resolve_nondeduced_context (tree orig_expr, tsubst_flags_t complain)
18836 tree expr, offset, baselink;
18837 bool addr;
18839 if (!type_unknown_p (orig_expr))
18840 return orig_expr;
18842 expr = orig_expr;
18843 addr = false;
18844 offset = NULL_TREE;
18845 baselink = NULL_TREE;
18847 if (TREE_CODE (expr) == ADDR_EXPR)
18849 expr = TREE_OPERAND (expr, 0);
18850 addr = true;
18852 if (TREE_CODE (expr) == OFFSET_REF)
18854 offset = expr;
18855 expr = TREE_OPERAND (expr, 1);
18857 if (BASELINK_P (expr))
18859 baselink = expr;
18860 expr = BASELINK_FUNCTIONS (expr);
18863 if (TREE_CODE (expr) == TEMPLATE_ID_EXPR)
18865 int good = 0;
18866 tree goodfn = NULL_TREE;
18868 /* If we got some explicit template args, we need to plug them into
18869 the affected templates before we try to unify, in case the
18870 explicit args will completely resolve the templates in question. */
18872 tree expl_subargs = TREE_OPERAND (expr, 1);
18873 tree arg = TREE_OPERAND (expr, 0);
18874 tree badfn = NULL_TREE;
18875 tree badargs = NULL_TREE;
18877 for (; arg; arg = OVL_NEXT (arg))
18879 tree fn = OVL_CURRENT (arg);
18880 tree subargs, elem;
18882 if (TREE_CODE (fn) != TEMPLATE_DECL)
18883 continue;
18885 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
18886 expl_subargs, NULL_TREE, tf_none,
18887 /*require_all_args=*/true,
18888 /*use_default_args=*/true);
18889 if (subargs != error_mark_node
18890 && !any_dependent_template_arguments_p (subargs))
18892 elem = instantiate_template (fn, subargs, tf_none);
18893 if (elem == error_mark_node)
18895 badfn = fn;
18896 badargs = subargs;
18898 else if (elem && (!goodfn || !decls_match (goodfn, elem)))
18900 goodfn = elem;
18901 ++good;
18905 if (good == 1)
18907 mark_used (goodfn);
18908 expr = goodfn;
18909 if (baselink)
18910 expr = build_baselink (BASELINK_BINFO (baselink),
18911 BASELINK_ACCESS_BINFO (baselink),
18912 expr, BASELINK_OPTYPE (baselink));
18913 if (offset)
18915 tree base
18916 = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (offset, 0)));
18917 expr = build_offset_ref (base, expr, addr, complain);
18919 if (addr)
18920 expr = cp_build_addr_expr (expr, complain);
18921 return expr;
18923 else if (good == 0 && badargs && (complain & tf_error))
18924 /* There were no good options and at least one bad one, so let the
18925 user know what the problem is. */
18926 instantiate_template (badfn, badargs, complain);
18928 return orig_expr;
18931 /* Subroutine of resolve_overloaded_unification; does deduction for a single
18932 overload. Fills TARGS with any deduced arguments, or error_mark_node if
18933 different overloads deduce different arguments for a given parm.
18934 ADDR_P is true if the expression for which deduction is being
18935 performed was of the form "& fn" rather than simply "fn".
18937 Returns 1 on success. */
18939 static int
18940 try_one_overload (tree tparms,
18941 tree orig_targs,
18942 tree targs,
18943 tree parm,
18944 tree arg,
18945 unification_kind_t strict,
18946 int sub_strict,
18947 bool addr_p,
18948 bool explain_p)
18950 int nargs;
18951 tree tempargs;
18952 int i;
18954 if (arg == error_mark_node)
18955 return 0;
18957 /* [temp.deduct.type] A template-argument can be deduced from a pointer
18958 to function or pointer to member function argument if the set of
18959 overloaded functions does not contain function templates and at most
18960 one of a set of overloaded functions provides a unique match.
18962 So if this is a template, just return success. */
18964 if (uses_template_parms (arg))
18965 return 1;
18967 if (TREE_CODE (arg) == METHOD_TYPE)
18968 arg = build_ptrmemfunc_type (build_pointer_type (arg));
18969 else if (addr_p)
18970 arg = build_pointer_type (arg);
18972 sub_strict |= maybe_adjust_types_for_deduction (strict, &parm, &arg, NULL);
18974 /* We don't copy orig_targs for this because if we have already deduced
18975 some template args from previous args, unify would complain when we
18976 try to deduce a template parameter for the same argument, even though
18977 there isn't really a conflict. */
18978 nargs = TREE_VEC_LENGTH (targs);
18979 tempargs = make_tree_vec (nargs);
18981 if (unify (tparms, tempargs, parm, arg, sub_strict, explain_p))
18982 return 0;
18984 /* First make sure we didn't deduce anything that conflicts with
18985 explicitly specified args. */
18986 for (i = nargs; i--; )
18988 tree elt = TREE_VEC_ELT (tempargs, i);
18989 tree oldelt = TREE_VEC_ELT (orig_targs, i);
18991 if (!elt)
18992 /*NOP*/;
18993 else if (uses_template_parms (elt))
18994 /* Since we're unifying against ourselves, we will fill in
18995 template args used in the function parm list with our own
18996 template parms. Discard them. */
18997 TREE_VEC_ELT (tempargs, i) = NULL_TREE;
18998 else if (oldelt && ARGUMENT_PACK_P (oldelt))
19000 /* Check that the argument at each index of the deduced argument pack
19001 is equivalent to the corresponding explicitly specified argument.
19002 We may have deduced more arguments than were explicitly specified,
19003 and that's OK. */
19004 gcc_assert (ARGUMENT_PACK_INCOMPLETE_P (oldelt));
19005 gcc_assert (ARGUMENT_PACK_ARGS (oldelt)
19006 == ARGUMENT_PACK_EXPLICIT_ARGS (oldelt));
19008 tree explicit_pack = ARGUMENT_PACK_ARGS (oldelt);
19009 tree deduced_pack = ARGUMENT_PACK_ARGS (elt);
19011 if (TREE_VEC_LENGTH (deduced_pack)
19012 < TREE_VEC_LENGTH (explicit_pack))
19013 return 0;
19015 for (int j = 0; j < TREE_VEC_LENGTH (explicit_pack); j++)
19016 if (!template_args_equal (TREE_VEC_ELT (explicit_pack, j),
19017 TREE_VEC_ELT (deduced_pack, j)))
19018 return 0;
19020 else if (oldelt && !template_args_equal (oldelt, elt))
19021 return 0;
19024 for (i = nargs; i--; )
19026 tree elt = TREE_VEC_ELT (tempargs, i);
19028 if (elt)
19029 TREE_VEC_ELT (targs, i) = elt;
19032 return 1;
19035 /* PARM is a template class (perhaps with unbound template
19036 parameters). ARG is a fully instantiated type. If ARG can be
19037 bound to PARM, return ARG, otherwise return NULL_TREE. TPARMS and
19038 TARGS are as for unify. */
19040 static tree
19041 try_class_unification (tree tparms, tree targs, tree parm, tree arg,
19042 bool explain_p)
19044 tree copy_of_targs;
19046 if (!CLASSTYPE_TEMPLATE_INFO (arg)
19047 || (most_general_template (CLASSTYPE_TI_TEMPLATE (arg))
19048 != most_general_template (CLASSTYPE_TI_TEMPLATE (parm))))
19049 return NULL_TREE;
19051 /* We need to make a new template argument vector for the call to
19052 unify. If we used TARGS, we'd clutter it up with the result of
19053 the attempted unification, even if this class didn't work out.
19054 We also don't want to commit ourselves to all the unifications
19055 we've already done, since unification is supposed to be done on
19056 an argument-by-argument basis. In other words, consider the
19057 following pathological case:
19059 template <int I, int J, int K>
19060 struct S {};
19062 template <int I, int J>
19063 struct S<I, J, 2> : public S<I, I, I>, S<J, J, J> {};
19065 template <int I, int J, int K>
19066 void f(S<I, J, K>, S<I, I, I>);
19068 void g() {
19069 S<0, 0, 0> s0;
19070 S<0, 1, 2> s2;
19072 f(s0, s2);
19075 Now, by the time we consider the unification involving `s2', we
19076 already know that we must have `f<0, 0, 0>'. But, even though
19077 `S<0, 1, 2>' is derived from `S<0, 0, 0>', the code is invalid
19078 because there are two ways to unify base classes of S<0, 1, 2>
19079 with S<I, I, I>. If we kept the already deduced knowledge, we
19080 would reject the possibility I=1. */
19081 copy_of_targs = make_tree_vec (TREE_VEC_LENGTH (targs));
19083 /* If unification failed, we're done. */
19084 if (unify (tparms, copy_of_targs, CLASSTYPE_TI_ARGS (parm),
19085 CLASSTYPE_TI_ARGS (arg), UNIFY_ALLOW_NONE, explain_p))
19086 return NULL_TREE;
19088 return arg;
19091 /* Given a template type PARM and a class type ARG, find the unique
19092 base type in ARG that is an instance of PARM. We do not examine
19093 ARG itself; only its base-classes. If there is not exactly one
19094 appropriate base class, return NULL_TREE. PARM may be the type of
19095 a partial specialization, as well as a plain template type. Used
19096 by unify. */
19098 static enum template_base_result
19099 get_template_base (tree tparms, tree targs, tree parm, tree arg,
19100 bool explain_p, tree *result)
19102 tree rval = NULL_TREE;
19103 tree binfo;
19105 gcc_assert (RECORD_OR_UNION_CODE_P (TREE_CODE (arg)));
19107 binfo = TYPE_BINFO (complete_type (arg));
19108 if (!binfo)
19110 /* The type could not be completed. */
19111 *result = NULL_TREE;
19112 return tbr_incomplete_type;
19115 /* Walk in inheritance graph order. The search order is not
19116 important, and this avoids multiple walks of virtual bases. */
19117 for (binfo = TREE_CHAIN (binfo); binfo; binfo = TREE_CHAIN (binfo))
19119 tree r = try_class_unification (tparms, targs, parm,
19120 BINFO_TYPE (binfo), explain_p);
19122 if (r)
19124 /* If there is more than one satisfactory baseclass, then:
19126 [temp.deduct.call]
19128 If they yield more than one possible deduced A, the type
19129 deduction fails.
19131 applies. */
19132 if (rval && !same_type_p (r, rval))
19134 *result = NULL_TREE;
19135 return tbr_ambiguous_baseclass;
19138 rval = r;
19142 *result = rval;
19143 return tbr_success;
19146 /* Returns the level of DECL, which declares a template parameter. */
19148 static int
19149 template_decl_level (tree decl)
19151 switch (TREE_CODE (decl))
19153 case TYPE_DECL:
19154 case TEMPLATE_DECL:
19155 return TEMPLATE_TYPE_LEVEL (TREE_TYPE (decl));
19157 case PARM_DECL:
19158 return TEMPLATE_PARM_LEVEL (DECL_INITIAL (decl));
19160 default:
19161 gcc_unreachable ();
19163 return 0;
19166 /* Decide whether ARG can be unified with PARM, considering only the
19167 cv-qualifiers of each type, given STRICT as documented for unify.
19168 Returns nonzero iff the unification is OK on that basis. */
19170 static int
19171 check_cv_quals_for_unify (int strict, tree arg, tree parm)
19173 int arg_quals = cp_type_quals (arg);
19174 int parm_quals = cp_type_quals (parm);
19176 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
19177 && !(strict & UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
19179 /* Although a CVR qualifier is ignored when being applied to a
19180 substituted template parameter ([8.3.2]/1 for example), that
19181 does not allow us to unify "const T" with "int&" because both
19182 types are not of the form "cv-list T" [14.8.2.5 temp.deduct.type].
19183 It is ok when we're allowing additional CV qualifiers
19184 at the outer level [14.8.2.1]/3,1st bullet. */
19185 if ((TREE_CODE (arg) == REFERENCE_TYPE
19186 || TREE_CODE (arg) == FUNCTION_TYPE
19187 || TREE_CODE (arg) == METHOD_TYPE)
19188 && (parm_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE)))
19189 return 0;
19191 if ((!POINTER_TYPE_P (arg) && TREE_CODE (arg) != TEMPLATE_TYPE_PARM)
19192 && (parm_quals & TYPE_QUAL_RESTRICT))
19193 return 0;
19196 if (!(strict & (UNIFY_ALLOW_MORE_CV_QUAL | UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
19197 && (arg_quals & parm_quals) != parm_quals)
19198 return 0;
19200 if (!(strict & (UNIFY_ALLOW_LESS_CV_QUAL | UNIFY_ALLOW_OUTER_LESS_CV_QUAL))
19201 && (parm_quals & arg_quals) != arg_quals)
19202 return 0;
19204 return 1;
19207 /* Determines the LEVEL and INDEX for the template parameter PARM. */
19208 void
19209 template_parm_level_and_index (tree parm, int* level, int* index)
19211 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
19212 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
19213 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
19215 *index = TEMPLATE_TYPE_IDX (parm);
19216 *level = TEMPLATE_TYPE_LEVEL (parm);
19218 else
19220 *index = TEMPLATE_PARM_IDX (parm);
19221 *level = TEMPLATE_PARM_LEVEL (parm);
19225 #define RECUR_AND_CHECK_FAILURE(TP, TA, P, A, S, EP) \
19226 do { \
19227 if (unify (TP, TA, P, A, S, EP)) \
19228 return 1; \
19229 } while (0);
19231 /* Unifies the remaining arguments in PACKED_ARGS with the pack
19232 expansion at the end of PACKED_PARMS. Returns 0 if the type
19233 deduction succeeds, 1 otherwise. STRICT is the same as in
19234 unify. CALL_ARGS_P is true iff PACKED_ARGS is actually a function
19235 call argument list. We'll need to adjust the arguments to make them
19236 types. SUBR tells us if this is from a recursive call to
19237 type_unification_real, or for comparing two template argument
19238 lists. */
19240 static int
19241 unify_pack_expansion (tree tparms, tree targs, tree packed_parms,
19242 tree packed_args, unification_kind_t strict,
19243 bool subr, bool explain_p)
19245 tree parm
19246 = TREE_VEC_ELT (packed_parms, TREE_VEC_LENGTH (packed_parms) - 1);
19247 tree pattern = PACK_EXPANSION_PATTERN (parm);
19248 tree pack, packs = NULL_TREE;
19249 int i, start = TREE_VEC_LENGTH (packed_parms) - 1;
19251 packed_args = expand_template_argument_pack (packed_args);
19253 int len = TREE_VEC_LENGTH (packed_args);
19255 /* Determine the parameter packs we will be deducing from the
19256 pattern, and record their current deductions. */
19257 for (pack = PACK_EXPANSION_PARAMETER_PACKS (parm);
19258 pack; pack = TREE_CHAIN (pack))
19260 tree parm_pack = TREE_VALUE (pack);
19261 int idx, level;
19263 /* Determine the index and level of this parameter pack. */
19264 template_parm_level_and_index (parm_pack, &level, &idx);
19266 /* Keep track of the parameter packs and their corresponding
19267 argument packs. */
19268 packs = tree_cons (parm_pack, TMPL_ARG (targs, level, idx), packs);
19269 TREE_TYPE (packs) = make_tree_vec (len - start);
19272 /* Loop through all of the arguments that have not yet been
19273 unified and unify each with the pattern. */
19274 for (i = start; i < len; i++)
19276 tree parm;
19277 bool any_explicit = false;
19278 tree arg = TREE_VEC_ELT (packed_args, i);
19280 /* For each parameter pack, set its TMPL_ARG to either NULL_TREE
19281 or the element of its argument pack at the current index if
19282 this argument was explicitly specified. */
19283 for (pack = packs; pack; pack = TREE_CHAIN (pack))
19285 int idx, level;
19286 tree arg, pargs;
19287 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
19289 arg = NULL_TREE;
19290 if (TREE_VALUE (pack)
19291 && (pargs = ARGUMENT_PACK_EXPLICIT_ARGS (TREE_VALUE (pack)))
19292 && (i - start < TREE_VEC_LENGTH (pargs)))
19294 any_explicit = true;
19295 arg = TREE_VEC_ELT (pargs, i - start);
19297 TMPL_ARG (targs, level, idx) = arg;
19300 /* If we had explicit template arguments, substitute them into the
19301 pattern before deduction. */
19302 if (any_explicit)
19304 /* Some arguments might still be unspecified or dependent. */
19305 bool dependent;
19306 ++processing_template_decl;
19307 dependent = any_dependent_template_arguments_p (targs);
19308 if (!dependent)
19309 --processing_template_decl;
19310 parm = tsubst (pattern, targs,
19311 explain_p ? tf_warning_or_error : tf_none,
19312 NULL_TREE);
19313 if (dependent)
19314 --processing_template_decl;
19315 if (parm == error_mark_node)
19316 return 1;
19318 else
19319 parm = pattern;
19321 /* Unify the pattern with the current argument. */
19322 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
19323 explain_p))
19324 return 1;
19326 /* For each parameter pack, collect the deduced value. */
19327 for (pack = packs; pack; pack = TREE_CHAIN (pack))
19329 int idx, level;
19330 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
19332 TREE_VEC_ELT (TREE_TYPE (pack), i - start) =
19333 TMPL_ARG (targs, level, idx);
19337 /* Verify that the results of unification with the parameter packs
19338 produce results consistent with what we've seen before, and make
19339 the deduced argument packs available. */
19340 for (pack = packs; pack; pack = TREE_CHAIN (pack))
19342 tree old_pack = TREE_VALUE (pack);
19343 tree new_args = TREE_TYPE (pack);
19344 int i, len = TREE_VEC_LENGTH (new_args);
19345 int idx, level;
19346 bool nondeduced_p = false;
19348 /* By default keep the original deduced argument pack.
19349 If necessary, more specific code is going to update the
19350 resulting deduced argument later down in this function. */
19351 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
19352 TMPL_ARG (targs, level, idx) = old_pack;
19354 /* If NEW_ARGS contains any NULL_TREE entries, we didn't
19355 actually deduce anything. */
19356 for (i = 0; i < len && !nondeduced_p; ++i)
19357 if (TREE_VEC_ELT (new_args, i) == NULL_TREE)
19358 nondeduced_p = true;
19359 if (nondeduced_p)
19360 continue;
19362 if (old_pack && ARGUMENT_PACK_INCOMPLETE_P (old_pack))
19364 /* If we had fewer function args than explicit template args,
19365 just use the explicits. */
19366 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
19367 int explicit_len = TREE_VEC_LENGTH (explicit_args);
19368 if (len < explicit_len)
19369 new_args = explicit_args;
19372 if (!old_pack)
19374 tree result;
19375 /* Build the deduced *_ARGUMENT_PACK. */
19376 if (TREE_CODE (TREE_PURPOSE (pack)) == TEMPLATE_PARM_INDEX)
19378 result = make_node (NONTYPE_ARGUMENT_PACK);
19379 TREE_TYPE (result) =
19380 TREE_TYPE (TEMPLATE_PARM_DECL (TREE_PURPOSE (pack)));
19381 TREE_CONSTANT (result) = 1;
19383 else
19384 result = cxx_make_type (TYPE_ARGUMENT_PACK);
19386 SET_ARGUMENT_PACK_ARGS (result, new_args);
19388 /* Note the deduced argument packs for this parameter
19389 pack. */
19390 TMPL_ARG (targs, level, idx) = result;
19392 else if (ARGUMENT_PACK_INCOMPLETE_P (old_pack)
19393 && (ARGUMENT_PACK_ARGS (old_pack)
19394 == ARGUMENT_PACK_EXPLICIT_ARGS (old_pack)))
19396 /* We only had the explicitly-provided arguments before, but
19397 now we have a complete set of arguments. */
19398 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
19400 SET_ARGUMENT_PACK_ARGS (old_pack, new_args);
19401 ARGUMENT_PACK_INCOMPLETE_P (old_pack) = 1;
19402 ARGUMENT_PACK_EXPLICIT_ARGS (old_pack) = explicit_args;
19404 else
19406 tree bad_old_arg = NULL_TREE, bad_new_arg = NULL_TREE;
19407 tree old_args = ARGUMENT_PACK_ARGS (old_pack);
19409 if (!comp_template_args (old_args, new_args,
19410 &bad_old_arg, &bad_new_arg))
19411 /* Inconsistent unification of this parameter pack. */
19412 return unify_parameter_pack_inconsistent (explain_p,
19413 bad_old_arg,
19414 bad_new_arg);
19418 return unify_success (explain_p);
19421 /* Handle unification of the domain of an array. PARM_DOM and ARG_DOM are
19422 INTEGER_TYPEs representing the TYPE_DOMAIN of ARRAY_TYPEs. The other
19423 parameters and return value are as for unify. */
19425 static int
19426 unify_array_domain (tree tparms, tree targs,
19427 tree parm_dom, tree arg_dom,
19428 bool explain_p)
19430 tree parm_max;
19431 tree arg_max;
19432 bool parm_cst;
19433 bool arg_cst;
19435 /* Our representation of array types uses "N - 1" as the
19436 TYPE_MAX_VALUE for an array with "N" elements, if "N" is
19437 not an integer constant. We cannot unify arbitrarily
19438 complex expressions, so we eliminate the MINUS_EXPRs
19439 here. */
19440 parm_max = TYPE_MAX_VALUE (parm_dom);
19441 parm_cst = TREE_CODE (parm_max) == INTEGER_CST;
19442 if (!parm_cst)
19444 gcc_assert (TREE_CODE (parm_max) == MINUS_EXPR);
19445 parm_max = TREE_OPERAND (parm_max, 0);
19447 arg_max = TYPE_MAX_VALUE (arg_dom);
19448 arg_cst = TREE_CODE (arg_max) == INTEGER_CST;
19449 if (!arg_cst)
19451 /* The ARG_MAX may not be a simple MINUS_EXPR, if we are
19452 trying to unify the type of a variable with the type
19453 of a template parameter. For example:
19455 template <unsigned int N>
19456 void f (char (&) [N]);
19457 int g();
19458 void h(int i) {
19459 char a[g(i)];
19460 f(a);
19463 Here, the type of the ARG will be "int [g(i)]", and
19464 may be a SAVE_EXPR, etc. */
19465 if (TREE_CODE (arg_max) != MINUS_EXPR)
19466 return unify_vla_arg (explain_p, arg_dom);
19467 arg_max = TREE_OPERAND (arg_max, 0);
19470 /* If only one of the bounds used a MINUS_EXPR, compensate
19471 by adding one to the other bound. */
19472 if (parm_cst && !arg_cst)
19473 parm_max = fold_build2_loc (input_location, PLUS_EXPR,
19474 integer_type_node,
19475 parm_max,
19476 integer_one_node);
19477 else if (arg_cst && !parm_cst)
19478 arg_max = fold_build2_loc (input_location, PLUS_EXPR,
19479 integer_type_node,
19480 arg_max,
19481 integer_one_node);
19483 return unify (tparms, targs, parm_max, arg_max,
19484 UNIFY_ALLOW_INTEGER, explain_p);
19487 /* Deduce the value of template parameters. TPARMS is the (innermost)
19488 set of template parameters to a template. TARGS is the bindings
19489 for those template parameters, as determined thus far; TARGS may
19490 include template arguments for outer levels of template parameters
19491 as well. PARM is a parameter to a template function, or a
19492 subcomponent of that parameter; ARG is the corresponding argument.
19493 This function attempts to match PARM with ARG in a manner
19494 consistent with the existing assignments in TARGS. If more values
19495 are deduced, then TARGS is updated.
19497 Returns 0 if the type deduction succeeds, 1 otherwise. The
19498 parameter STRICT is a bitwise or of the following flags:
19500 UNIFY_ALLOW_NONE:
19501 Require an exact match between PARM and ARG.
19502 UNIFY_ALLOW_MORE_CV_QUAL:
19503 Allow the deduced ARG to be more cv-qualified (by qualification
19504 conversion) than ARG.
19505 UNIFY_ALLOW_LESS_CV_QUAL:
19506 Allow the deduced ARG to be less cv-qualified than ARG.
19507 UNIFY_ALLOW_DERIVED:
19508 Allow the deduced ARG to be a template base class of ARG,
19509 or a pointer to a template base class of the type pointed to by
19510 ARG.
19511 UNIFY_ALLOW_INTEGER:
19512 Allow any integral type to be deduced. See the TEMPLATE_PARM_INDEX
19513 case for more information.
19514 UNIFY_ALLOW_OUTER_LEVEL:
19515 This is the outermost level of a deduction. Used to determine validity
19516 of qualification conversions. A valid qualification conversion must
19517 have const qualified pointers leading up to the inner type which
19518 requires additional CV quals, except at the outer level, where const
19519 is not required [conv.qual]. It would be normal to set this flag in
19520 addition to setting UNIFY_ALLOW_MORE_CV_QUAL.
19521 UNIFY_ALLOW_OUTER_MORE_CV_QUAL:
19522 This is the outermost level of a deduction, and PARM can be more CV
19523 qualified at this point.
19524 UNIFY_ALLOW_OUTER_LESS_CV_QUAL:
19525 This is the outermost level of a deduction, and PARM can be less CV
19526 qualified at this point. */
19528 static int
19529 unify (tree tparms, tree targs, tree parm, tree arg, int strict,
19530 bool explain_p)
19532 int idx;
19533 tree targ;
19534 tree tparm;
19535 int strict_in = strict;
19537 /* I don't think this will do the right thing with respect to types.
19538 But the only case I've seen it in so far has been array bounds, where
19539 signedness is the only information lost, and I think that will be
19540 okay. */
19541 while (TREE_CODE (parm) == NOP_EXPR)
19542 parm = TREE_OPERAND (parm, 0);
19544 if (arg == error_mark_node)
19545 return unify_invalid (explain_p);
19546 if (arg == unknown_type_node
19547 || arg == init_list_type_node)
19548 /* We can't deduce anything from this, but we might get all the
19549 template args from other function args. */
19550 return unify_success (explain_p);
19552 /* If PARM uses template parameters, then we can't bail out here,
19553 even if ARG == PARM, since we won't record unifications for the
19554 template parameters. We might need them if we're trying to
19555 figure out which of two things is more specialized. */
19556 if (arg == parm && !uses_template_parms (parm))
19557 return unify_success (explain_p);
19559 /* Handle init lists early, so the rest of the function can assume
19560 we're dealing with a type. */
19561 if (BRACE_ENCLOSED_INITIALIZER_P (arg))
19563 tree elt, elttype;
19564 unsigned i;
19565 tree orig_parm = parm;
19567 /* Replace T with std::initializer_list<T> for deduction. */
19568 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
19569 && flag_deduce_init_list)
19570 parm = listify (parm);
19572 if (!is_std_init_list (parm)
19573 && TREE_CODE (parm) != ARRAY_TYPE)
19574 /* We can only deduce from an initializer list argument if the
19575 parameter is std::initializer_list or an array; otherwise this
19576 is a non-deduced context. */
19577 return unify_success (explain_p);
19579 if (TREE_CODE (parm) == ARRAY_TYPE)
19580 elttype = TREE_TYPE (parm);
19581 else
19583 elttype = TREE_VEC_ELT (CLASSTYPE_TI_ARGS (parm), 0);
19584 /* Deduction is defined in terms of a single type, so just punt
19585 on the (bizarre) std::initializer_list<T...>. */
19586 if (PACK_EXPANSION_P (elttype))
19587 return unify_success (explain_p);
19590 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (arg), i, elt)
19592 int elt_strict = strict;
19594 if (elt == error_mark_node)
19595 return unify_invalid (explain_p);
19597 if (!BRACE_ENCLOSED_INITIALIZER_P (elt))
19599 tree type = TREE_TYPE (elt);
19600 if (type == error_mark_node)
19601 return unify_invalid (explain_p);
19602 /* It should only be possible to get here for a call. */
19603 gcc_assert (elt_strict & UNIFY_ALLOW_OUTER_LEVEL);
19604 elt_strict |= maybe_adjust_types_for_deduction
19605 (DEDUCE_CALL, &elttype, &type, elt);
19606 elt = type;
19609 RECUR_AND_CHECK_FAILURE (tparms, targs, elttype, elt, elt_strict,
19610 explain_p);
19613 if (TREE_CODE (parm) == ARRAY_TYPE
19614 && deducible_array_bound (TYPE_DOMAIN (parm)))
19616 /* Also deduce from the length of the initializer list. */
19617 tree max = size_int (CONSTRUCTOR_NELTS (arg));
19618 tree idx = compute_array_index_type (NULL_TREE, max, tf_none);
19619 if (idx == error_mark_node)
19620 return unify_invalid (explain_p);
19621 return unify_array_domain (tparms, targs, TYPE_DOMAIN (parm),
19622 idx, explain_p);
19625 /* If the std::initializer_list<T> deduction worked, replace the
19626 deduced A with std::initializer_list<A>. */
19627 if (orig_parm != parm)
19629 idx = TEMPLATE_TYPE_IDX (orig_parm);
19630 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
19631 targ = listify (targ);
19632 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = targ;
19634 return unify_success (explain_p);
19637 /* Immediately reject some pairs that won't unify because of
19638 cv-qualification mismatches. */
19639 if (TREE_CODE (arg) == TREE_CODE (parm)
19640 && TYPE_P (arg)
19641 /* It is the elements of the array which hold the cv quals of an array
19642 type, and the elements might be template type parms. We'll check
19643 when we recurse. */
19644 && TREE_CODE (arg) != ARRAY_TYPE
19645 /* We check the cv-qualifiers when unifying with template type
19646 parameters below. We want to allow ARG `const T' to unify with
19647 PARM `T' for example, when computing which of two templates
19648 is more specialized, for example. */
19649 && TREE_CODE (arg) != TEMPLATE_TYPE_PARM
19650 && !check_cv_quals_for_unify (strict_in, arg, parm))
19651 return unify_cv_qual_mismatch (explain_p, parm, arg);
19653 if (!(strict & UNIFY_ALLOW_OUTER_LEVEL)
19654 && TYPE_P (parm) && !CP_TYPE_CONST_P (parm))
19655 strict &= ~UNIFY_ALLOW_MORE_CV_QUAL;
19656 strict &= ~UNIFY_ALLOW_OUTER_LEVEL;
19657 strict &= ~UNIFY_ALLOW_DERIVED;
19658 strict &= ~UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
19659 strict &= ~UNIFY_ALLOW_OUTER_LESS_CV_QUAL;
19661 switch (TREE_CODE (parm))
19663 case TYPENAME_TYPE:
19664 case SCOPE_REF:
19665 case UNBOUND_CLASS_TEMPLATE:
19666 /* In a type which contains a nested-name-specifier, template
19667 argument values cannot be deduced for template parameters used
19668 within the nested-name-specifier. */
19669 return unify_success (explain_p);
19671 case TEMPLATE_TYPE_PARM:
19672 case TEMPLATE_TEMPLATE_PARM:
19673 case BOUND_TEMPLATE_TEMPLATE_PARM:
19674 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
19675 if (error_operand_p (tparm))
19676 return unify_invalid (explain_p);
19678 if (TEMPLATE_TYPE_LEVEL (parm)
19679 != template_decl_level (tparm))
19680 /* The PARM is not one we're trying to unify. Just check
19681 to see if it matches ARG. */
19683 if (TREE_CODE (arg) == TREE_CODE (parm)
19684 && (is_auto (parm) ? is_auto (arg)
19685 : same_type_p (parm, arg)))
19686 return unify_success (explain_p);
19687 else
19688 return unify_type_mismatch (explain_p, parm, arg);
19690 idx = TEMPLATE_TYPE_IDX (parm);
19691 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
19692 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, idx));
19693 if (error_operand_p (tparm))
19694 return unify_invalid (explain_p);
19696 /* Check for mixed types and values. */
19697 if ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
19698 && TREE_CODE (tparm) != TYPE_DECL)
19699 || (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
19700 && TREE_CODE (tparm) != TEMPLATE_DECL))
19701 gcc_unreachable ();
19703 if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
19705 /* ARG must be constructed from a template class or a template
19706 template parameter. */
19707 if (TREE_CODE (arg) != BOUND_TEMPLATE_TEMPLATE_PARM
19708 && !CLASSTYPE_SPECIALIZATION_OF_PRIMARY_TEMPLATE_P (arg))
19709 return unify_template_deduction_failure (explain_p, parm, arg);
19711 tree parmvec = TYPE_TI_ARGS (parm);
19712 /* An alias template name is never deduced. */
19713 if (TYPE_ALIAS_P (arg))
19714 arg = strip_typedefs (arg);
19715 tree argvec = INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (arg));
19716 tree full_argvec = add_to_template_args (targs, argvec);
19717 tree parm_parms
19718 = DECL_INNERMOST_TEMPLATE_PARMS
19719 (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (parm));
19720 int i, len;
19721 int parm_variadic_p = 0;
19723 /* The resolution to DR150 makes clear that default
19724 arguments for an N-argument may not be used to bind T
19725 to a template template parameter with fewer than N
19726 parameters. It is not safe to permit the binding of
19727 default arguments as an extension, as that may change
19728 the meaning of a conforming program. Consider:
19730 struct Dense { static const unsigned int dim = 1; };
19732 template <template <typename> class View,
19733 typename Block>
19734 void operator+(float, View<Block> const&);
19736 template <typename Block,
19737 unsigned int Dim = Block::dim>
19738 struct Lvalue_proxy { operator float() const; };
19740 void
19741 test_1d (void) {
19742 Lvalue_proxy<Dense> p;
19743 float b;
19744 b + p;
19747 Here, if Lvalue_proxy is permitted to bind to View, then
19748 the global operator+ will be used; if they are not, the
19749 Lvalue_proxy will be converted to float. */
19750 if (coerce_template_parms (parm_parms,
19751 full_argvec,
19752 TYPE_TI_TEMPLATE (parm),
19753 (explain_p
19754 ? tf_warning_or_error
19755 : tf_none),
19756 /*require_all_args=*/true,
19757 /*use_default_args=*/false)
19758 == error_mark_node)
19759 return 1;
19761 /* Deduce arguments T, i from TT<T> or TT<i>.
19762 We check each element of PARMVEC and ARGVEC individually
19763 rather than the whole TREE_VEC since they can have
19764 different number of elements. */
19766 parmvec = expand_template_argument_pack (parmvec);
19767 argvec = expand_template_argument_pack (argvec);
19769 len = TREE_VEC_LENGTH (parmvec);
19771 /* Check if the parameters end in a pack, making them
19772 variadic. */
19773 if (len > 0
19774 && PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, len - 1)))
19775 parm_variadic_p = 1;
19777 for (i = 0; i < len - parm_variadic_p; ++i)
19778 /* If the template argument list of P contains a pack
19779 expansion that is not the last template argument, the
19780 entire template argument list is a non-deduced
19781 context. */
19782 if (PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, i)))
19783 return unify_success (explain_p);
19785 if (TREE_VEC_LENGTH (argvec) < len - parm_variadic_p)
19786 return unify_too_few_arguments (explain_p,
19787 TREE_VEC_LENGTH (argvec), len);
19789 for (i = 0; i < len - parm_variadic_p; ++i)
19791 RECUR_AND_CHECK_FAILURE (tparms, targs,
19792 TREE_VEC_ELT (parmvec, i),
19793 TREE_VEC_ELT (argvec, i),
19794 UNIFY_ALLOW_NONE, explain_p);
19797 if (parm_variadic_p
19798 && unify_pack_expansion (tparms, targs,
19799 parmvec, argvec,
19800 DEDUCE_EXACT,
19801 /*subr=*/true, explain_p))
19802 return 1;
19804 arg = TYPE_TI_TEMPLATE (arg);
19806 /* Fall through to deduce template name. */
19809 if (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
19810 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
19812 /* Deduce template name TT from TT, TT<>, TT<T> and TT<i>. */
19814 /* Simple cases: Value already set, does match or doesn't. */
19815 if (targ != NULL_TREE && template_args_equal (targ, arg))
19816 return unify_success (explain_p);
19817 else if (targ)
19818 return unify_inconsistency (explain_p, parm, targ, arg);
19820 else
19822 /* If PARM is `const T' and ARG is only `int', we don't have
19823 a match unless we are allowing additional qualification.
19824 If ARG is `const int' and PARM is just `T' that's OK;
19825 that binds `const int' to `T'. */
19826 if (!check_cv_quals_for_unify (strict_in | UNIFY_ALLOW_LESS_CV_QUAL,
19827 arg, parm))
19828 return unify_cv_qual_mismatch (explain_p, parm, arg);
19830 /* Consider the case where ARG is `const volatile int' and
19831 PARM is `const T'. Then, T should be `volatile int'. */
19832 arg = cp_build_qualified_type_real
19833 (arg, cp_type_quals (arg) & ~cp_type_quals (parm), tf_none);
19834 if (arg == error_mark_node)
19835 return unify_invalid (explain_p);
19837 /* Simple cases: Value already set, does match or doesn't. */
19838 if (targ != NULL_TREE && same_type_p (targ, arg))
19839 return unify_success (explain_p);
19840 else if (targ)
19841 return unify_inconsistency (explain_p, parm, targ, arg);
19843 /* Make sure that ARG is not a variable-sized array. (Note
19844 that were talking about variable-sized arrays (like
19845 `int[n]'), rather than arrays of unknown size (like
19846 `int[]').) We'll get very confused by such a type since
19847 the bound of the array is not constant, and therefore
19848 not mangleable. Besides, such types are not allowed in
19849 ISO C++, so we can do as we please here. We do allow
19850 them for 'auto' deduction, since that isn't ABI-exposed. */
19851 if (!is_auto (parm) && variably_modified_type_p (arg, NULL_TREE))
19852 return unify_vla_arg (explain_p, arg);
19854 /* Strip typedefs as in convert_template_argument. */
19855 arg = canonicalize_type_argument (arg, tf_none);
19858 /* If ARG is a parameter pack or an expansion, we cannot unify
19859 against it unless PARM is also a parameter pack. */
19860 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
19861 && !template_parameter_pack_p (parm))
19862 return unify_parameter_pack_mismatch (explain_p, parm, arg);
19864 /* If the argument deduction results is a METHOD_TYPE,
19865 then there is a problem.
19866 METHOD_TYPE doesn't map to any real C++ type the result of
19867 the deduction can not be of that type. */
19868 if (TREE_CODE (arg) == METHOD_TYPE)
19869 return unify_method_type_error (explain_p, arg);
19871 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
19872 return unify_success (explain_p);
19874 case TEMPLATE_PARM_INDEX:
19875 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
19876 if (error_operand_p (tparm))
19877 return unify_invalid (explain_p);
19879 if (TEMPLATE_PARM_LEVEL (parm)
19880 != template_decl_level (tparm))
19882 /* The PARM is not one we're trying to unify. Just check
19883 to see if it matches ARG. */
19884 int result = !(TREE_CODE (arg) == TREE_CODE (parm)
19885 && cp_tree_equal (parm, arg));
19886 if (result)
19887 unify_expression_unequal (explain_p, parm, arg);
19888 return result;
19891 idx = TEMPLATE_PARM_IDX (parm);
19892 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
19894 if (targ)
19896 int x = !cp_tree_equal (targ, arg);
19897 if (x)
19898 unify_inconsistency (explain_p, parm, targ, arg);
19899 return x;
19902 /* [temp.deduct.type] If, in the declaration of a function template
19903 with a non-type template-parameter, the non-type
19904 template-parameter is used in an expression in the function
19905 parameter-list and, if the corresponding template-argument is
19906 deduced, the template-argument type shall match the type of the
19907 template-parameter exactly, except that a template-argument
19908 deduced from an array bound may be of any integral type.
19909 The non-type parameter might use already deduced type parameters. */
19910 tparm = tsubst (TREE_TYPE (parm), targs, 0, NULL_TREE);
19911 if (!TREE_TYPE (arg))
19912 /* Template-parameter dependent expression. Just accept it for now.
19913 It will later be processed in convert_template_argument. */
19915 else if (same_type_p (TREE_TYPE (arg), tparm))
19916 /* OK */;
19917 else if ((strict & UNIFY_ALLOW_INTEGER)
19918 && CP_INTEGRAL_TYPE_P (tparm))
19919 /* Convert the ARG to the type of PARM; the deduced non-type
19920 template argument must exactly match the types of the
19921 corresponding parameter. */
19922 arg = fold (build_nop (tparm, arg));
19923 else if (uses_template_parms (tparm))
19924 /* We haven't deduced the type of this parameter yet. Try again
19925 later. */
19926 return unify_success (explain_p);
19927 else
19928 return unify_type_mismatch (explain_p, tparm, TREE_TYPE (arg));
19930 /* If ARG is a parameter pack or an expansion, we cannot unify
19931 against it unless PARM is also a parameter pack. */
19932 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
19933 && !TEMPLATE_PARM_PARAMETER_PACK (parm))
19934 return unify_parameter_pack_mismatch (explain_p, parm, arg);
19937 bool removed_attr = false;
19938 arg = strip_typedefs_expr (arg, &removed_attr);
19940 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
19941 return unify_success (explain_p);
19943 case PTRMEM_CST:
19945 /* A pointer-to-member constant can be unified only with
19946 another constant. */
19947 if (TREE_CODE (arg) != PTRMEM_CST)
19948 return unify_ptrmem_cst_mismatch (explain_p, parm, arg);
19950 /* Just unify the class member. It would be useless (and possibly
19951 wrong, depending on the strict flags) to unify also
19952 PTRMEM_CST_CLASS, because we want to be sure that both parm and
19953 arg refer to the same variable, even if through different
19954 classes. For instance:
19956 struct A { int x; };
19957 struct B : A { };
19959 Unification of &A::x and &B::x must succeed. */
19960 return unify (tparms, targs, PTRMEM_CST_MEMBER (parm),
19961 PTRMEM_CST_MEMBER (arg), strict, explain_p);
19964 case POINTER_TYPE:
19966 if (!TYPE_PTR_P (arg))
19967 return unify_type_mismatch (explain_p, parm, arg);
19969 /* [temp.deduct.call]
19971 A can be another pointer or pointer to member type that can
19972 be converted to the deduced A via a qualification
19973 conversion (_conv.qual_).
19975 We pass down STRICT here rather than UNIFY_ALLOW_NONE.
19976 This will allow for additional cv-qualification of the
19977 pointed-to types if appropriate. */
19979 if (TREE_CODE (TREE_TYPE (arg)) == RECORD_TYPE)
19980 /* The derived-to-base conversion only persists through one
19981 level of pointers. */
19982 strict |= (strict_in & UNIFY_ALLOW_DERIVED);
19984 return unify (tparms, targs, TREE_TYPE (parm),
19985 TREE_TYPE (arg), strict, explain_p);
19988 case REFERENCE_TYPE:
19989 if (TREE_CODE (arg) != REFERENCE_TYPE)
19990 return unify_type_mismatch (explain_p, parm, arg);
19991 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
19992 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
19994 case ARRAY_TYPE:
19995 if (TREE_CODE (arg) != ARRAY_TYPE)
19996 return unify_type_mismatch (explain_p, parm, arg);
19997 if ((TYPE_DOMAIN (parm) == NULL_TREE)
19998 != (TYPE_DOMAIN (arg) == NULL_TREE))
19999 return unify_type_mismatch (explain_p, parm, arg);
20000 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
20001 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
20002 if (TYPE_DOMAIN (parm) != NULL_TREE)
20003 return unify_array_domain (tparms, targs, TYPE_DOMAIN (parm),
20004 TYPE_DOMAIN (arg), explain_p);
20005 return unify_success (explain_p);
20007 case REAL_TYPE:
20008 case COMPLEX_TYPE:
20009 case VECTOR_TYPE:
20010 case INTEGER_TYPE:
20011 case BOOLEAN_TYPE:
20012 case ENUMERAL_TYPE:
20013 case VOID_TYPE:
20014 case NULLPTR_TYPE:
20015 if (TREE_CODE (arg) != TREE_CODE (parm))
20016 return unify_type_mismatch (explain_p, parm, arg);
20018 /* We have already checked cv-qualification at the top of the
20019 function. */
20020 if (!same_type_ignoring_top_level_qualifiers_p (arg, parm))
20021 return unify_type_mismatch (explain_p, parm, arg);
20023 /* As far as unification is concerned, this wins. Later checks
20024 will invalidate it if necessary. */
20025 return unify_success (explain_p);
20027 /* Types INTEGER_CST and MINUS_EXPR can come from array bounds. */
20028 /* Type INTEGER_CST can come from ordinary constant template args. */
20029 case INTEGER_CST:
20030 while (TREE_CODE (arg) == NOP_EXPR)
20031 arg = TREE_OPERAND (arg, 0);
20033 if (TREE_CODE (arg) != INTEGER_CST)
20034 return unify_template_argument_mismatch (explain_p, parm, arg);
20035 return (tree_int_cst_equal (parm, arg)
20036 ? unify_success (explain_p)
20037 : unify_template_argument_mismatch (explain_p, parm, arg));
20039 case TREE_VEC:
20041 int i, len, argslen;
20042 int parm_variadic_p = 0;
20044 if (TREE_CODE (arg) != TREE_VEC)
20045 return unify_template_argument_mismatch (explain_p, parm, arg);
20047 len = TREE_VEC_LENGTH (parm);
20048 argslen = TREE_VEC_LENGTH (arg);
20050 /* Check for pack expansions in the parameters. */
20051 for (i = 0; i < len; ++i)
20053 if (PACK_EXPANSION_P (TREE_VEC_ELT (parm, i)))
20055 if (i == len - 1)
20056 /* We can unify against something with a trailing
20057 parameter pack. */
20058 parm_variadic_p = 1;
20059 else
20060 /* [temp.deduct.type]/9: If the template argument list of
20061 P contains a pack expansion that is not the last
20062 template argument, the entire template argument list
20063 is a non-deduced context. */
20064 return unify_success (explain_p);
20068 /* If we don't have enough arguments to satisfy the parameters
20069 (not counting the pack expression at the end), or we have
20070 too many arguments for a parameter list that doesn't end in
20071 a pack expression, we can't unify. */
20072 if (parm_variadic_p
20073 ? argslen < len - parm_variadic_p
20074 : argslen != len)
20075 return unify_arity (explain_p, TREE_VEC_LENGTH (arg), len);
20077 /* Unify all of the parameters that precede the (optional)
20078 pack expression. */
20079 for (i = 0; i < len - parm_variadic_p; ++i)
20081 RECUR_AND_CHECK_FAILURE (tparms, targs,
20082 TREE_VEC_ELT (parm, i),
20083 TREE_VEC_ELT (arg, i),
20084 UNIFY_ALLOW_NONE, explain_p);
20086 if (parm_variadic_p)
20087 return unify_pack_expansion (tparms, targs, parm, arg,
20088 DEDUCE_EXACT,
20089 /*subr=*/true, explain_p);
20090 return unify_success (explain_p);
20093 case RECORD_TYPE:
20094 case UNION_TYPE:
20095 if (TREE_CODE (arg) != TREE_CODE (parm))
20096 return unify_type_mismatch (explain_p, parm, arg);
20098 if (TYPE_PTRMEMFUNC_P (parm))
20100 if (!TYPE_PTRMEMFUNC_P (arg))
20101 return unify_type_mismatch (explain_p, parm, arg);
20103 return unify (tparms, targs,
20104 TYPE_PTRMEMFUNC_FN_TYPE (parm),
20105 TYPE_PTRMEMFUNC_FN_TYPE (arg),
20106 strict, explain_p);
20108 else if (TYPE_PTRMEMFUNC_P (arg))
20109 return unify_type_mismatch (explain_p, parm, arg);
20111 if (CLASSTYPE_TEMPLATE_INFO (parm))
20113 tree t = NULL_TREE;
20115 if (strict_in & UNIFY_ALLOW_DERIVED)
20117 /* First, we try to unify the PARM and ARG directly. */
20118 t = try_class_unification (tparms, targs,
20119 parm, arg, explain_p);
20121 if (!t)
20123 /* Fallback to the special case allowed in
20124 [temp.deduct.call]:
20126 If P is a class, and P has the form
20127 template-id, then A can be a derived class of
20128 the deduced A. Likewise, if P is a pointer to
20129 a class of the form template-id, A can be a
20130 pointer to a derived class pointed to by the
20131 deduced A. */
20132 enum template_base_result r;
20133 r = get_template_base (tparms, targs, parm, arg,
20134 explain_p, &t);
20136 if (!t)
20138 /* Don't give the derived diagnostic if we're
20139 already dealing with the same template. */
20140 bool same_template
20141 = (CLASSTYPE_TEMPLATE_INFO (arg)
20142 && (CLASSTYPE_TI_TEMPLATE (parm)
20143 == CLASSTYPE_TI_TEMPLATE (arg)));
20144 return unify_no_common_base (explain_p && !same_template,
20145 r, parm, arg);
20149 else if (CLASSTYPE_TEMPLATE_INFO (arg)
20150 && (CLASSTYPE_TI_TEMPLATE (parm)
20151 == CLASSTYPE_TI_TEMPLATE (arg)))
20152 /* Perhaps PARM is something like S<U> and ARG is S<int>.
20153 Then, we should unify `int' and `U'. */
20154 t = arg;
20155 else
20156 /* There's no chance of unification succeeding. */
20157 return unify_type_mismatch (explain_p, parm, arg);
20159 return unify (tparms, targs, CLASSTYPE_TI_ARGS (parm),
20160 CLASSTYPE_TI_ARGS (t), UNIFY_ALLOW_NONE, explain_p);
20162 else if (!same_type_ignoring_top_level_qualifiers_p (parm, arg))
20163 return unify_type_mismatch (explain_p, parm, arg);
20164 return unify_success (explain_p);
20166 case METHOD_TYPE:
20167 case FUNCTION_TYPE:
20169 unsigned int nargs;
20170 tree *args;
20171 tree a;
20172 unsigned int i;
20174 if (TREE_CODE (arg) != TREE_CODE (parm))
20175 return unify_type_mismatch (explain_p, parm, arg);
20177 /* CV qualifications for methods can never be deduced, they must
20178 match exactly. We need to check them explicitly here,
20179 because type_unification_real treats them as any other
20180 cv-qualified parameter. */
20181 if (TREE_CODE (parm) == METHOD_TYPE
20182 && (!check_cv_quals_for_unify
20183 (UNIFY_ALLOW_NONE,
20184 class_of_this_parm (arg),
20185 class_of_this_parm (parm))))
20186 return unify_cv_qual_mismatch (explain_p, parm, arg);
20188 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm),
20189 TREE_TYPE (arg), UNIFY_ALLOW_NONE, explain_p);
20191 nargs = list_length (TYPE_ARG_TYPES (arg));
20192 args = XALLOCAVEC (tree, nargs);
20193 for (a = TYPE_ARG_TYPES (arg), i = 0;
20194 a != NULL_TREE && a != void_list_node;
20195 a = TREE_CHAIN (a), ++i)
20196 args[i] = TREE_VALUE (a);
20197 nargs = i;
20199 return type_unification_real (tparms, targs, TYPE_ARG_TYPES (parm),
20200 args, nargs, 1, DEDUCE_EXACT,
20201 LOOKUP_NORMAL, NULL, explain_p);
20204 case OFFSET_TYPE:
20205 /* Unify a pointer to member with a pointer to member function, which
20206 deduces the type of the member as a function type. */
20207 if (TYPE_PTRMEMFUNC_P (arg))
20209 /* Check top-level cv qualifiers */
20210 if (!check_cv_quals_for_unify (UNIFY_ALLOW_NONE, arg, parm))
20211 return unify_cv_qual_mismatch (explain_p, parm, arg);
20213 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
20214 TYPE_PTRMEMFUNC_OBJECT_TYPE (arg),
20215 UNIFY_ALLOW_NONE, explain_p);
20217 /* Determine the type of the function we are unifying against. */
20218 tree fntype = static_fn_type (arg);
20220 return unify (tparms, targs, TREE_TYPE (parm), fntype, strict, explain_p);
20223 if (TREE_CODE (arg) != OFFSET_TYPE)
20224 return unify_type_mismatch (explain_p, parm, arg);
20225 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
20226 TYPE_OFFSET_BASETYPE (arg),
20227 UNIFY_ALLOW_NONE, explain_p);
20228 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
20229 strict, explain_p);
20231 case CONST_DECL:
20232 if (DECL_TEMPLATE_PARM_P (parm))
20233 return unify (tparms, targs, DECL_INITIAL (parm), arg, strict, explain_p);
20234 if (arg != scalar_constant_value (parm))
20235 return unify_template_argument_mismatch (explain_p, parm, arg);
20236 return unify_success (explain_p);
20238 case FIELD_DECL:
20239 case TEMPLATE_DECL:
20240 /* Matched cases are handled by the ARG == PARM test above. */
20241 return unify_template_argument_mismatch (explain_p, parm, arg);
20243 case VAR_DECL:
20244 /* We might get a variable as a non-type template argument in parm if the
20245 corresponding parameter is type-dependent. Make any necessary
20246 adjustments based on whether arg is a reference. */
20247 if (CONSTANT_CLASS_P (arg))
20248 parm = fold_non_dependent_expr (parm);
20249 else if (REFERENCE_REF_P (arg))
20251 tree sub = TREE_OPERAND (arg, 0);
20252 STRIP_NOPS (sub);
20253 if (TREE_CODE (sub) == ADDR_EXPR)
20254 arg = TREE_OPERAND (sub, 0);
20256 /* Now use the normal expression code to check whether they match. */
20257 goto expr;
20259 case TYPE_ARGUMENT_PACK:
20260 case NONTYPE_ARGUMENT_PACK:
20261 return unify (tparms, targs, ARGUMENT_PACK_ARGS (parm),
20262 ARGUMENT_PACK_ARGS (arg), strict, explain_p);
20264 case TYPEOF_TYPE:
20265 case DECLTYPE_TYPE:
20266 case UNDERLYING_TYPE:
20267 /* Cannot deduce anything from TYPEOF_TYPE, DECLTYPE_TYPE,
20268 or UNDERLYING_TYPE nodes. */
20269 return unify_success (explain_p);
20271 case ERROR_MARK:
20272 /* Unification fails if we hit an error node. */
20273 return unify_invalid (explain_p);
20275 case INDIRECT_REF:
20276 if (REFERENCE_REF_P (parm))
20278 if (REFERENCE_REF_P (arg))
20279 arg = TREE_OPERAND (arg, 0);
20280 return unify (tparms, targs, TREE_OPERAND (parm, 0), arg,
20281 strict, explain_p);
20283 /* FALLTHRU */
20285 default:
20286 /* An unresolved overload is a nondeduced context. */
20287 if (is_overloaded_fn (parm) || type_unknown_p (parm))
20288 return unify_success (explain_p);
20289 gcc_assert (EXPR_P (parm) || TREE_CODE (parm) == TRAIT_EXPR);
20290 expr:
20291 /* We must be looking at an expression. This can happen with
20292 something like:
20294 template <int I>
20295 void foo(S<I>, S<I + 2>);
20297 This is a "nondeduced context":
20299 [deduct.type]
20301 The nondeduced contexts are:
20303 --A type that is a template-id in which one or more of
20304 the template-arguments is an expression that references
20305 a template-parameter.
20307 In these cases, we assume deduction succeeded, but don't
20308 actually infer any unifications. */
20310 if (!uses_template_parms (parm)
20311 && !template_args_equal (parm, arg))
20312 return unify_expression_unequal (explain_p, parm, arg);
20313 else
20314 return unify_success (explain_p);
20317 #undef RECUR_AND_CHECK_FAILURE
20319 /* Note that DECL can be defined in this translation unit, if
20320 required. */
20322 static void
20323 mark_definable (tree decl)
20325 tree clone;
20326 DECL_NOT_REALLY_EXTERN (decl) = 1;
20327 FOR_EACH_CLONE (clone, decl)
20328 DECL_NOT_REALLY_EXTERN (clone) = 1;
20331 /* Called if RESULT is explicitly instantiated, or is a member of an
20332 explicitly instantiated class. */
20334 void
20335 mark_decl_instantiated (tree result, int extern_p)
20337 SET_DECL_EXPLICIT_INSTANTIATION (result);
20339 /* If this entity has already been written out, it's too late to
20340 make any modifications. */
20341 if (TREE_ASM_WRITTEN (result))
20342 return;
20344 /* For anonymous namespace we don't need to do anything. */
20345 if (decl_anon_ns_mem_p (result))
20347 gcc_assert (!TREE_PUBLIC (result));
20348 return;
20351 if (TREE_CODE (result) != FUNCTION_DECL)
20352 /* The TREE_PUBLIC flag for function declarations will have been
20353 set correctly by tsubst. */
20354 TREE_PUBLIC (result) = 1;
20356 /* This might have been set by an earlier implicit instantiation. */
20357 DECL_COMDAT (result) = 0;
20359 if (extern_p)
20360 DECL_NOT_REALLY_EXTERN (result) = 0;
20361 else
20363 mark_definable (result);
20364 mark_needed (result);
20365 /* Always make artificials weak. */
20366 if (DECL_ARTIFICIAL (result) && flag_weak)
20367 comdat_linkage (result);
20368 /* For WIN32 we also want to put explicit instantiations in
20369 linkonce sections. */
20370 else if (TREE_PUBLIC (result))
20371 maybe_make_one_only (result);
20374 /* If EXTERN_P, then this function will not be emitted -- unless
20375 followed by an explicit instantiation, at which point its linkage
20376 will be adjusted. If !EXTERN_P, then this function will be
20377 emitted here. In neither circumstance do we want
20378 import_export_decl to adjust the linkage. */
20379 DECL_INTERFACE_KNOWN (result) = 1;
20382 /* Subroutine of more_specialized_fn: check whether TARGS is missing any
20383 important template arguments. If any are missing, we check whether
20384 they're important by using error_mark_node for substituting into any
20385 args that were used for partial ordering (the ones between ARGS and END)
20386 and seeing if it bubbles up. */
20388 static bool
20389 check_undeduced_parms (tree targs, tree args, tree end)
20391 bool found = false;
20392 int i;
20393 for (i = TREE_VEC_LENGTH (targs) - 1; i >= 0; --i)
20394 if (TREE_VEC_ELT (targs, i) == NULL_TREE)
20396 found = true;
20397 TREE_VEC_ELT (targs, i) = error_mark_node;
20399 if (found)
20401 tree substed = tsubst_arg_types (args, targs, end, tf_none, NULL_TREE);
20402 if (substed == error_mark_node)
20403 return true;
20405 return false;
20408 /* Given two function templates PAT1 and PAT2, return:
20410 1 if PAT1 is more specialized than PAT2 as described in [temp.func.order].
20411 -1 if PAT2 is more specialized than PAT1.
20412 0 if neither is more specialized.
20414 LEN indicates the number of parameters we should consider
20415 (defaulted parameters should not be considered).
20417 The 1998 std underspecified function template partial ordering, and
20418 DR214 addresses the issue. We take pairs of arguments, one from
20419 each of the templates, and deduce them against each other. One of
20420 the templates will be more specialized if all the *other*
20421 template's arguments deduce against its arguments and at least one
20422 of its arguments *does* *not* deduce against the other template's
20423 corresponding argument. Deduction is done as for class templates.
20424 The arguments used in deduction have reference and top level cv
20425 qualifiers removed. Iff both arguments were originally reference
20426 types *and* deduction succeeds in both directions, an lvalue reference
20427 wins against an rvalue reference and otherwise the template
20428 with the more cv-qualified argument wins for that pairing (if
20429 neither is more cv-qualified, they both are equal). Unlike regular
20430 deduction, after all the arguments have been deduced in this way,
20431 we do *not* verify the deduced template argument values can be
20432 substituted into non-deduced contexts.
20434 The logic can be a bit confusing here, because we look at deduce1 and
20435 targs1 to see if pat2 is at least as specialized, and vice versa; if we
20436 can find template arguments for pat1 to make arg1 look like arg2, that
20437 means that arg2 is at least as specialized as arg1. */
20440 more_specialized_fn (tree pat1, tree pat2, int len)
20442 tree decl1 = DECL_TEMPLATE_RESULT (pat1);
20443 tree decl2 = DECL_TEMPLATE_RESULT (pat2);
20444 tree targs1 = make_tree_vec (DECL_NTPARMS (pat1));
20445 tree targs2 = make_tree_vec (DECL_NTPARMS (pat2));
20446 tree tparms1 = DECL_INNERMOST_TEMPLATE_PARMS (pat1);
20447 tree tparms2 = DECL_INNERMOST_TEMPLATE_PARMS (pat2);
20448 tree args1 = TYPE_ARG_TYPES (TREE_TYPE (decl1));
20449 tree args2 = TYPE_ARG_TYPES (TREE_TYPE (decl2));
20450 tree origs1, origs2;
20451 bool lose1 = false;
20452 bool lose2 = false;
20454 /* Remove the this parameter from non-static member functions. If
20455 one is a non-static member function and the other is not a static
20456 member function, remove the first parameter from that function
20457 also. This situation occurs for operator functions where we
20458 locate both a member function (with this pointer) and non-member
20459 operator (with explicit first operand). */
20460 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl1))
20462 len--; /* LEN is the number of significant arguments for DECL1 */
20463 args1 = TREE_CHAIN (args1);
20464 if (!DECL_STATIC_FUNCTION_P (decl2))
20465 args2 = TREE_CHAIN (args2);
20467 else if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl2))
20469 args2 = TREE_CHAIN (args2);
20470 if (!DECL_STATIC_FUNCTION_P (decl1))
20472 len--;
20473 args1 = TREE_CHAIN (args1);
20477 /* If only one is a conversion operator, they are unordered. */
20478 if (DECL_CONV_FN_P (decl1) != DECL_CONV_FN_P (decl2))
20479 return 0;
20481 /* Consider the return type for a conversion function */
20482 if (DECL_CONV_FN_P (decl1))
20484 args1 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl1)), args1);
20485 args2 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl2)), args2);
20486 len++;
20489 processing_template_decl++;
20491 origs1 = args1;
20492 origs2 = args2;
20494 while (len--
20495 /* Stop when an ellipsis is seen. */
20496 && args1 != NULL_TREE && args2 != NULL_TREE)
20498 tree arg1 = TREE_VALUE (args1);
20499 tree arg2 = TREE_VALUE (args2);
20500 int deduce1, deduce2;
20501 int quals1 = -1;
20502 int quals2 = -1;
20503 int ref1 = 0;
20504 int ref2 = 0;
20506 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
20507 && TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
20509 /* When both arguments are pack expansions, we need only
20510 unify the patterns themselves. */
20511 arg1 = PACK_EXPANSION_PATTERN (arg1);
20512 arg2 = PACK_EXPANSION_PATTERN (arg2);
20514 /* This is the last comparison we need to do. */
20515 len = 0;
20518 if (TREE_CODE (arg1) == REFERENCE_TYPE)
20520 ref1 = TYPE_REF_IS_RVALUE (arg1) + 1;
20521 arg1 = TREE_TYPE (arg1);
20522 quals1 = cp_type_quals (arg1);
20525 if (TREE_CODE (arg2) == REFERENCE_TYPE)
20527 ref2 = TYPE_REF_IS_RVALUE (arg2) + 1;
20528 arg2 = TREE_TYPE (arg2);
20529 quals2 = cp_type_quals (arg2);
20532 arg1 = TYPE_MAIN_VARIANT (arg1);
20533 arg2 = TYPE_MAIN_VARIANT (arg2);
20535 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION)
20537 int i, len2 = remaining_arguments (args2);
20538 tree parmvec = make_tree_vec (1);
20539 tree argvec = make_tree_vec (len2);
20540 tree ta = args2;
20542 /* Setup the parameter vector, which contains only ARG1. */
20543 TREE_VEC_ELT (parmvec, 0) = arg1;
20545 /* Setup the argument vector, which contains the remaining
20546 arguments. */
20547 for (i = 0; i < len2; i++, ta = TREE_CHAIN (ta))
20548 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
20550 deduce1 = (unify_pack_expansion (tparms1, targs1, parmvec,
20551 argvec, DEDUCE_EXACT,
20552 /*subr=*/true, /*explain_p=*/false)
20553 == 0);
20555 /* We cannot deduce in the other direction, because ARG1 is
20556 a pack expansion but ARG2 is not. */
20557 deduce2 = 0;
20559 else if (TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
20561 int i, len1 = remaining_arguments (args1);
20562 tree parmvec = make_tree_vec (1);
20563 tree argvec = make_tree_vec (len1);
20564 tree ta = args1;
20566 /* Setup the parameter vector, which contains only ARG1. */
20567 TREE_VEC_ELT (parmvec, 0) = arg2;
20569 /* Setup the argument vector, which contains the remaining
20570 arguments. */
20571 for (i = 0; i < len1; i++, ta = TREE_CHAIN (ta))
20572 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
20574 deduce2 = (unify_pack_expansion (tparms2, targs2, parmvec,
20575 argvec, DEDUCE_EXACT,
20576 /*subr=*/true, /*explain_p=*/false)
20577 == 0);
20579 /* We cannot deduce in the other direction, because ARG2 is
20580 a pack expansion but ARG1 is not.*/
20581 deduce1 = 0;
20584 else
20586 /* The normal case, where neither argument is a pack
20587 expansion. */
20588 deduce1 = (unify (tparms1, targs1, arg1, arg2,
20589 UNIFY_ALLOW_NONE, /*explain_p=*/false)
20590 == 0);
20591 deduce2 = (unify (tparms2, targs2, arg2, arg1,
20592 UNIFY_ALLOW_NONE, /*explain_p=*/false)
20593 == 0);
20596 /* If we couldn't deduce arguments for tparms1 to make arg1 match
20597 arg2, then arg2 is not as specialized as arg1. */
20598 if (!deduce1)
20599 lose2 = true;
20600 if (!deduce2)
20601 lose1 = true;
20603 /* "If, for a given type, deduction succeeds in both directions
20604 (i.e., the types are identical after the transformations above)
20605 and both P and A were reference types (before being replaced with
20606 the type referred to above):
20607 - if the type from the argument template was an lvalue reference and
20608 the type from the parameter template was not, the argument type is
20609 considered to be more specialized than the other; otherwise,
20610 - if the type from the argument template is more cv-qualified
20611 than the type from the parameter template (as described above),
20612 the argument type is considered to be more specialized than the other;
20613 otherwise,
20614 - neither type is more specialized than the other." */
20616 if (deduce1 && deduce2)
20618 if (ref1 && ref2 && ref1 != ref2)
20620 if (ref1 > ref2)
20621 lose1 = true;
20622 else
20623 lose2 = true;
20625 else if (quals1 != quals2 && quals1 >= 0 && quals2 >= 0)
20627 if ((quals1 & quals2) == quals2)
20628 lose2 = true;
20629 if ((quals1 & quals2) == quals1)
20630 lose1 = true;
20634 if (lose1 && lose2)
20635 /* We've failed to deduce something in either direction.
20636 These must be unordered. */
20637 break;
20639 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
20640 || TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
20641 /* We have already processed all of the arguments in our
20642 handing of the pack expansion type. */
20643 len = 0;
20645 args1 = TREE_CHAIN (args1);
20646 args2 = TREE_CHAIN (args2);
20649 /* "In most cases, all template parameters must have values in order for
20650 deduction to succeed, but for partial ordering purposes a template
20651 parameter may remain without a value provided it is not used in the
20652 types being used for partial ordering."
20654 Thus, if we are missing any of the targs1 we need to substitute into
20655 origs1, then pat2 is not as specialized as pat1. This can happen when
20656 there is a nondeduced context. */
20657 if (!lose2 && check_undeduced_parms (targs1, origs1, args1))
20658 lose2 = true;
20659 if (!lose1 && check_undeduced_parms (targs2, origs2, args2))
20660 lose1 = true;
20662 processing_template_decl--;
20664 /* If both deductions succeed, the partial ordering selects the more
20665 constrained template. */
20666 if (!lose1 && !lose2)
20668 tree c1 = get_constraints (DECL_TEMPLATE_RESULT (pat1));
20669 tree c2 = get_constraints (DECL_TEMPLATE_RESULT (pat2));
20670 lose1 = !subsumes_constraints (c1, c2);
20671 lose2 = !subsumes_constraints (c2, c1);
20674 /* All things being equal, if the next argument is a pack expansion
20675 for one function but not for the other, prefer the
20676 non-variadic function. FIXME this is bogus; see c++/41958. */
20677 if (lose1 == lose2
20678 && args1 && TREE_VALUE (args1)
20679 && args2 && TREE_VALUE (args2))
20681 lose1 = TREE_CODE (TREE_VALUE (args1)) == TYPE_PACK_EXPANSION;
20682 lose2 = TREE_CODE (TREE_VALUE (args2)) == TYPE_PACK_EXPANSION;
20685 if (lose1 == lose2)
20686 return 0;
20687 else if (!lose1)
20688 return 1;
20689 else
20690 return -1;
20693 /* Determine which of two partial specializations of TMPL is more
20694 specialized.
20696 PAT1 is a TREE_LIST whose TREE_VALUE is the TEMPLATE_DECL corresponding
20697 to the first partial specialization. The TREE_PURPOSE is the
20698 innermost set of template parameters for the partial
20699 specialization. PAT2 is similar, but for the second template.
20701 Return 1 if the first partial specialization is more specialized;
20702 -1 if the second is more specialized; 0 if neither is more
20703 specialized.
20705 See [temp.class.order] for information about determining which of
20706 two templates is more specialized. */
20708 static int
20709 more_specialized_partial_spec (tree tmpl, tree pat1, tree pat2)
20711 tree targs;
20712 int winner = 0;
20713 bool any_deductions = false;
20715 tree tmpl1 = TREE_VALUE (pat1);
20716 tree tmpl2 = TREE_VALUE (pat2);
20717 tree specargs1 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl1)));
20718 tree specargs2 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl2)));
20720 /* Just like what happens for functions, if we are ordering between
20721 different template specializations, we may encounter dependent
20722 types in the arguments, and we need our dependency check functions
20723 to behave correctly. */
20724 ++processing_template_decl;
20725 targs = get_partial_spec_bindings (tmpl, tmpl1, specargs2);
20726 if (targs)
20728 --winner;
20729 any_deductions = true;
20732 targs = get_partial_spec_bindings (tmpl, tmpl2, specargs1);
20733 if (targs)
20735 ++winner;
20736 any_deductions = true;
20738 --processing_template_decl;
20740 /* If both deductions succeed, the partial ordering selects the more
20741 constrained template. */
20742 if (!winner && any_deductions)
20743 return more_constrained (tmpl1, tmpl2);
20745 /* In the case of a tie where at least one of the templates
20746 has a parameter pack at the end, the template with the most
20747 non-packed parameters wins. */
20748 if (winner == 0
20749 && any_deductions
20750 && (template_args_variadic_p (TREE_PURPOSE (pat1))
20751 || template_args_variadic_p (TREE_PURPOSE (pat2))))
20753 tree args1 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat1));
20754 tree args2 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat2));
20755 int len1 = TREE_VEC_LENGTH (args1);
20756 int len2 = TREE_VEC_LENGTH (args2);
20758 /* We don't count the pack expansion at the end. */
20759 if (template_args_variadic_p (TREE_PURPOSE (pat1)))
20760 --len1;
20761 if (template_args_variadic_p (TREE_PURPOSE (pat2)))
20762 --len2;
20764 if (len1 > len2)
20765 return 1;
20766 else if (len1 < len2)
20767 return -1;
20770 return winner;
20773 /* Return the template arguments that will produce the function signature
20774 DECL from the function template FN, with the explicit template
20775 arguments EXPLICIT_ARGS. If CHECK_RETTYPE is true, the return type must
20776 also match. Return NULL_TREE if no satisfactory arguments could be
20777 found. */
20779 static tree
20780 get_bindings (tree fn, tree decl, tree explicit_args, bool check_rettype)
20782 int ntparms = DECL_NTPARMS (fn);
20783 tree targs = make_tree_vec (ntparms);
20784 tree decl_type = TREE_TYPE (decl);
20785 tree decl_arg_types;
20786 tree *args;
20787 unsigned int nargs, ix;
20788 tree arg;
20790 gcc_assert (decl != DECL_TEMPLATE_RESULT (fn));
20792 /* Never do unification on the 'this' parameter. */
20793 decl_arg_types = skip_artificial_parms_for (decl,
20794 TYPE_ARG_TYPES (decl_type));
20796 nargs = list_length (decl_arg_types);
20797 args = XALLOCAVEC (tree, nargs);
20798 for (arg = decl_arg_types, ix = 0;
20799 arg != NULL_TREE && arg != void_list_node;
20800 arg = TREE_CHAIN (arg), ++ix)
20801 args[ix] = TREE_VALUE (arg);
20803 if (fn_type_unification (fn, explicit_args, targs,
20804 args, ix,
20805 (check_rettype || DECL_CONV_FN_P (fn)
20806 ? TREE_TYPE (decl_type) : NULL_TREE),
20807 DEDUCE_EXACT, LOOKUP_NORMAL, /*explain_p=*/false,
20808 /*decltype*/false)
20809 == error_mark_node)
20810 return NULL_TREE;
20812 return targs;
20815 /* Return the innermost template arguments that, when applied to a partial
20816 specialization SPEC_TMPL of TMPL, yield the ARGS.
20818 For example, suppose we have:
20820 template <class T, class U> struct S {};
20821 template <class T> struct S<T*, int> {};
20823 Then, suppose we want to get `S<double*, int>'. SPEC_TMPL will be the
20824 partial specialization and the ARGS will be {double*, int}. The resulting
20825 vector will be {double}, indicating that `T' is bound to `double'. */
20827 static tree
20828 get_partial_spec_bindings (tree tmpl, tree spec_tmpl, tree args)
20830 tree tparms = DECL_INNERMOST_TEMPLATE_PARMS (spec_tmpl);
20831 tree spec_args
20832 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (spec_tmpl)));
20833 int i, ntparms = TREE_VEC_LENGTH (tparms);
20834 tree deduced_args;
20835 tree innermost_deduced_args;
20837 innermost_deduced_args = make_tree_vec (ntparms);
20838 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
20840 deduced_args = copy_node (args);
20841 SET_TMPL_ARGS_LEVEL (deduced_args,
20842 TMPL_ARGS_DEPTH (deduced_args),
20843 innermost_deduced_args);
20845 else
20846 deduced_args = innermost_deduced_args;
20848 if (unify (tparms, deduced_args,
20849 INNERMOST_TEMPLATE_ARGS (spec_args),
20850 INNERMOST_TEMPLATE_ARGS (args),
20851 UNIFY_ALLOW_NONE, /*explain_p=*/false))
20852 return NULL_TREE;
20854 for (i = 0; i < ntparms; ++i)
20855 if (! TREE_VEC_ELT (innermost_deduced_args, i))
20856 return NULL_TREE;
20858 tree tinst = build_tree_list (spec_tmpl, deduced_args);
20859 if (!push_tinst_level (tinst))
20861 excessive_deduction_depth = true;
20862 return NULL_TREE;
20865 /* Verify that nondeduced template arguments agree with the type
20866 obtained from argument deduction.
20868 For example:
20870 struct A { typedef int X; };
20871 template <class T, class U> struct C {};
20872 template <class T> struct C<T, typename T::X> {};
20874 Then with the instantiation `C<A, int>', we can deduce that
20875 `T' is `A' but unify () does not check whether `typename T::X'
20876 is `int'. */
20877 spec_args = tsubst (spec_args, deduced_args, tf_none, NULL_TREE);
20878 spec_args = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
20879 spec_args, tmpl,
20880 tf_none, false, false);
20882 pop_tinst_level ();
20884 if (spec_args == error_mark_node
20885 /* We only need to check the innermost arguments; the other
20886 arguments will always agree. */
20887 || !comp_template_args (INNERMOST_TEMPLATE_ARGS (spec_args),
20888 INNERMOST_TEMPLATE_ARGS (args)))
20889 return NULL_TREE;
20891 /* Now that we have bindings for all of the template arguments,
20892 ensure that the arguments deduced for the template template
20893 parameters have compatible template parameter lists. See the use
20894 of template_template_parm_bindings_ok_p in fn_type_unification
20895 for more information. */
20896 if (!template_template_parm_bindings_ok_p (tparms, deduced_args))
20897 return NULL_TREE;
20899 return deduced_args;
20902 // Compare two function templates T1 and T2 by deducing bindings
20903 // from one against the other. If both deductions succeed, compare
20904 // constraints to see which is more constrained.
20905 static int
20906 more_specialized_inst (tree t1, tree t2)
20908 int fate = 0;
20909 int count = 0;
20911 if (get_bindings (t1, DECL_TEMPLATE_RESULT (t2), NULL_TREE, true))
20913 --fate;
20914 ++count;
20917 if (get_bindings (t2, DECL_TEMPLATE_RESULT (t1), NULL_TREE, true))
20919 ++fate;
20920 ++count;
20923 // If both deductions succeed, then one may be more constrained.
20924 if (count == 2 && fate == 0)
20925 fate = more_constrained (t1, t2);
20927 return fate;
20930 /* TEMPLATES is a TREE_LIST. Each TREE_VALUE is a TEMPLATE_DECL.
20931 Return the TREE_LIST node with the most specialized template, if
20932 any. If there is no most specialized template, the error_mark_node
20933 is returned.
20935 Note that this function does not look at, or modify, the
20936 TREE_PURPOSE or TREE_TYPE of any of the nodes. Since the node
20937 returned is one of the elements of INSTANTIATIONS, callers may
20938 store information in the TREE_PURPOSE or TREE_TYPE of the nodes,
20939 and retrieve it from the value returned. */
20941 tree
20942 most_specialized_instantiation (tree templates)
20944 tree fn, champ;
20946 ++processing_template_decl;
20948 champ = templates;
20949 for (fn = TREE_CHAIN (templates); fn; fn = TREE_CHAIN (fn))
20951 int fate = more_specialized_inst (TREE_VALUE (champ), TREE_VALUE (fn));
20952 if (fate == -1)
20953 champ = fn;
20954 else if (!fate)
20956 /* Equally specialized, move to next function. If there
20957 is no next function, nothing's most specialized. */
20958 fn = TREE_CHAIN (fn);
20959 champ = fn;
20960 if (!fn)
20961 break;
20965 if (champ)
20966 /* Now verify that champ is better than everything earlier in the
20967 instantiation list. */
20968 for (fn = templates; fn != champ; fn = TREE_CHAIN (fn)) {
20969 if (more_specialized_inst (TREE_VALUE (champ), TREE_VALUE (fn)) != 1)
20971 champ = NULL_TREE;
20972 break;
20976 processing_template_decl--;
20978 if (!champ)
20979 return error_mark_node;
20981 return champ;
20984 /* If DECL is a specialization of some template, return the most
20985 general such template. Otherwise, returns NULL_TREE.
20987 For example, given:
20989 template <class T> struct S { template <class U> void f(U); };
20991 if TMPL is `template <class U> void S<int>::f(U)' this will return
20992 the full template. This function will not trace past partial
20993 specializations, however. For example, given in addition:
20995 template <class T> struct S<T*> { template <class U> void f(U); };
20997 if TMPL is `template <class U> void S<int*>::f(U)' this will return
20998 `template <class T> template <class U> S<T*>::f(U)'. */
21000 tree
21001 most_general_template (tree decl)
21003 if (TREE_CODE (decl) != TEMPLATE_DECL)
21005 if (tree tinfo = get_template_info (decl))
21006 decl = TI_TEMPLATE (tinfo);
21007 /* The TI_TEMPLATE can be an IDENTIFIER_NODE for a
21008 template friend, or a FIELD_DECL for a capture pack. */
21009 if (TREE_CODE (decl) != TEMPLATE_DECL)
21010 return NULL_TREE;
21013 /* Look for more and more general templates. */
21014 while (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl))
21016 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE in some cases.
21017 (See cp-tree.h for details.) */
21018 if (TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
21019 break;
21021 if (CLASS_TYPE_P (TREE_TYPE (decl))
21022 && !TYPE_DECL_ALIAS_P (TYPE_NAME (TREE_TYPE (decl)))
21023 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
21024 break;
21026 /* Stop if we run into an explicitly specialized class template. */
21027 if (!DECL_NAMESPACE_SCOPE_P (decl)
21028 && DECL_CONTEXT (decl)
21029 && CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (decl)))
21030 break;
21032 decl = DECL_TI_TEMPLATE (decl);
21035 return decl;
21038 /* Return the most specialized of the template partial specializations
21039 which can produce TARGET, a specialization of some class or variable
21040 template. The value returned is actually a TREE_LIST; the TREE_VALUE is
21041 a TEMPLATE_DECL node corresponding to the partial specialization, while
21042 the TREE_PURPOSE is the set of template arguments that must be
21043 substituted into the template pattern in order to generate TARGET.
21045 If the choice of partial specialization is ambiguous, a diagnostic
21046 is issued, and the error_mark_node is returned. If there are no
21047 partial specializations matching TARGET, then NULL_TREE is
21048 returned, indicating that the primary template should be used. */
21050 static tree
21051 most_specialized_partial_spec (tree target, tsubst_flags_t complain)
21053 tree list = NULL_TREE;
21054 tree t;
21055 tree champ;
21056 int fate;
21057 bool ambiguous_p;
21058 tree outer_args = NULL_TREE;
21059 tree tmpl, args;
21061 if (TYPE_P (target))
21063 tree tinfo = CLASSTYPE_TEMPLATE_INFO (target);
21064 tmpl = TI_TEMPLATE (tinfo);
21065 args = TI_ARGS (tinfo);
21067 else if (TREE_CODE (target) == TEMPLATE_ID_EXPR)
21069 tmpl = TREE_OPERAND (target, 0);
21070 args = TREE_OPERAND (target, 1);
21072 else if (VAR_P (target))
21074 tree tinfo = DECL_TEMPLATE_INFO (target);
21075 tmpl = TI_TEMPLATE (tinfo);
21076 args = TI_ARGS (tinfo);
21078 else
21079 gcc_unreachable ();
21081 tree main_tmpl = most_general_template (tmpl);
21083 /* For determining which partial specialization to use, only the
21084 innermost args are interesting. */
21085 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
21087 outer_args = strip_innermost_template_args (args, 1);
21088 args = INNERMOST_TEMPLATE_ARGS (args);
21091 for (t = DECL_TEMPLATE_SPECIALIZATIONS (main_tmpl); t; t = TREE_CHAIN (t))
21093 tree spec_args;
21094 tree spec_tmpl = TREE_VALUE (t);
21096 if (outer_args)
21098 /* Substitute in the template args from the enclosing class. */
21099 ++processing_template_decl;
21100 spec_tmpl = tsubst (spec_tmpl, outer_args, tf_none, NULL_TREE);
21101 --processing_template_decl;
21104 if (spec_tmpl == error_mark_node)
21105 return error_mark_node;
21107 spec_args = get_partial_spec_bindings (tmpl, spec_tmpl, args);
21108 if (spec_args)
21110 if (outer_args)
21111 spec_args = add_to_template_args (outer_args, spec_args);
21113 /* Keep the candidate only if the constraints are satisfied,
21114 or if we're not compiling with concepts. */
21115 if (!flag_concepts
21116 || constraints_satisfied_p (spec_tmpl, spec_args))
21118 list = tree_cons (spec_args, TREE_VALUE (t), list);
21119 TREE_TYPE (list) = TREE_TYPE (t);
21124 if (! list)
21125 return NULL_TREE;
21127 ambiguous_p = false;
21128 t = list;
21129 champ = t;
21130 t = TREE_CHAIN (t);
21131 for (; t; t = TREE_CHAIN (t))
21133 fate = more_specialized_partial_spec (tmpl, champ, t);
21134 if (fate == 1)
21136 else
21138 if (fate == 0)
21140 t = TREE_CHAIN (t);
21141 if (! t)
21143 ambiguous_p = true;
21144 break;
21147 champ = t;
21151 if (!ambiguous_p)
21152 for (t = list; t && t != champ; t = TREE_CHAIN (t))
21154 fate = more_specialized_partial_spec (tmpl, champ, t);
21155 if (fate != 1)
21157 ambiguous_p = true;
21158 break;
21162 if (ambiguous_p)
21164 const char *str;
21165 char *spaces = NULL;
21166 if (!(complain & tf_error))
21167 return error_mark_node;
21168 if (TYPE_P (target))
21169 error ("ambiguous template instantiation for %q#T", target);
21170 else
21171 error ("ambiguous template instantiation for %q#D", target);
21172 str = ngettext ("candidate is:", "candidates are:", list_length (list));
21173 for (t = list; t; t = TREE_CHAIN (t))
21175 tree subst = build_tree_list (TREE_VALUE (t), TREE_PURPOSE (t));
21176 inform (DECL_SOURCE_LOCATION (TREE_VALUE (t)),
21177 "%s %#S", spaces ? spaces : str, subst);
21178 spaces = spaces ? spaces : get_spaces (str);
21180 free (spaces);
21181 return error_mark_node;
21184 return champ;
21187 /* Explicitly instantiate DECL. */
21189 void
21190 do_decl_instantiation (tree decl, tree storage)
21192 tree result = NULL_TREE;
21193 int extern_p = 0;
21195 if (!decl || decl == error_mark_node)
21196 /* An error occurred, for which grokdeclarator has already issued
21197 an appropriate message. */
21198 return;
21199 else if (! DECL_LANG_SPECIFIC (decl))
21201 error ("explicit instantiation of non-template %q#D", decl);
21202 return;
21205 bool var_templ = (DECL_TEMPLATE_INFO (decl)
21206 && variable_template_p (DECL_TI_TEMPLATE (decl)));
21208 if (VAR_P (decl) && !var_templ)
21210 /* There is an asymmetry here in the way VAR_DECLs and
21211 FUNCTION_DECLs are handled by grokdeclarator. In the case of
21212 the latter, the DECL we get back will be marked as a
21213 template instantiation, and the appropriate
21214 DECL_TEMPLATE_INFO will be set up. This does not happen for
21215 VAR_DECLs so we do the lookup here. Probably, grokdeclarator
21216 should handle VAR_DECLs as it currently handles
21217 FUNCTION_DECLs. */
21218 if (!DECL_CLASS_SCOPE_P (decl))
21220 error ("%qD is not a static data member of a class template", decl);
21221 return;
21223 result = lookup_field (DECL_CONTEXT (decl), DECL_NAME (decl), 0, false);
21224 if (!result || !VAR_P (result))
21226 error ("no matching template for %qD found", decl);
21227 return;
21229 if (!same_type_p (TREE_TYPE (result), TREE_TYPE (decl)))
21231 error ("type %qT for explicit instantiation %qD does not match "
21232 "declared type %qT", TREE_TYPE (result), decl,
21233 TREE_TYPE (decl));
21234 return;
21237 else if (TREE_CODE (decl) != FUNCTION_DECL && !var_templ)
21239 error ("explicit instantiation of %q#D", decl);
21240 return;
21242 else
21243 result = decl;
21245 /* Check for various error cases. Note that if the explicit
21246 instantiation is valid the RESULT will currently be marked as an
21247 *implicit* instantiation; DECL_EXPLICIT_INSTANTIATION is not set
21248 until we get here. */
21250 if (DECL_TEMPLATE_SPECIALIZATION (result))
21252 /* DR 259 [temp.spec].
21254 Both an explicit instantiation and a declaration of an explicit
21255 specialization shall not appear in a program unless the explicit
21256 instantiation follows a declaration of the explicit specialization.
21258 For a given set of template parameters, if an explicit
21259 instantiation of a template appears after a declaration of an
21260 explicit specialization for that template, the explicit
21261 instantiation has no effect. */
21262 return;
21264 else if (DECL_EXPLICIT_INSTANTIATION (result))
21266 /* [temp.spec]
21268 No program shall explicitly instantiate any template more
21269 than once.
21271 We check DECL_NOT_REALLY_EXTERN so as not to complain when
21272 the first instantiation was `extern' and the second is not,
21273 and EXTERN_P for the opposite case. */
21274 if (DECL_NOT_REALLY_EXTERN (result) && !extern_p)
21275 permerror (input_location, "duplicate explicit instantiation of %q#D", result);
21276 /* If an "extern" explicit instantiation follows an ordinary
21277 explicit instantiation, the template is instantiated. */
21278 if (extern_p)
21279 return;
21281 else if (!DECL_IMPLICIT_INSTANTIATION (result))
21283 error ("no matching template for %qD found", result);
21284 return;
21286 else if (!DECL_TEMPLATE_INFO (result))
21288 permerror (input_location, "explicit instantiation of non-template %q#D", result);
21289 return;
21292 if (storage == NULL_TREE)
21294 else if (storage == ridpointers[(int) RID_EXTERN])
21296 if (!in_system_header_at (input_location) && (cxx_dialect == cxx98))
21297 pedwarn (input_location, OPT_Wpedantic,
21298 "ISO C++ 1998 forbids the use of %<extern%> on explicit "
21299 "instantiations");
21300 extern_p = 1;
21302 else
21303 error ("storage class %qD applied to template instantiation", storage);
21305 check_explicit_instantiation_namespace (result);
21306 mark_decl_instantiated (result, extern_p);
21307 if (! extern_p)
21308 instantiate_decl (result, /*defer_ok=*/1,
21309 /*expl_inst_class_mem_p=*/false);
21312 static void
21313 mark_class_instantiated (tree t, int extern_p)
21315 SET_CLASSTYPE_EXPLICIT_INSTANTIATION (t);
21316 SET_CLASSTYPE_INTERFACE_KNOWN (t);
21317 CLASSTYPE_INTERFACE_ONLY (t) = extern_p;
21318 TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (t)) = extern_p;
21319 if (! extern_p)
21321 CLASSTYPE_DEBUG_REQUESTED (t) = 1;
21322 rest_of_type_compilation (t, 1);
21326 /* Called from do_type_instantiation through binding_table_foreach to
21327 do recursive instantiation for the type bound in ENTRY. */
21328 static void
21329 bt_instantiate_type_proc (binding_entry entry, void *data)
21331 tree storage = *(tree *) data;
21333 if (MAYBE_CLASS_TYPE_P (entry->type)
21334 && !uses_template_parms (CLASSTYPE_TI_ARGS (entry->type)))
21335 do_type_instantiation (TYPE_MAIN_DECL (entry->type), storage, 0);
21338 /* Called from do_type_instantiation to instantiate a member
21339 (a member function or a static member variable) of an
21340 explicitly instantiated class template. */
21341 static void
21342 instantiate_class_member (tree decl, int extern_p)
21344 mark_decl_instantiated (decl, extern_p);
21345 if (! extern_p)
21346 instantiate_decl (decl, /*defer_ok=*/1,
21347 /*expl_inst_class_mem_p=*/true);
21350 /* Perform an explicit instantiation of template class T. STORAGE, if
21351 non-null, is the RID for extern, inline or static. COMPLAIN is
21352 nonzero if this is called from the parser, zero if called recursively,
21353 since the standard is unclear (as detailed below). */
21355 void
21356 do_type_instantiation (tree t, tree storage, tsubst_flags_t complain)
21358 int extern_p = 0;
21359 int nomem_p = 0;
21360 int static_p = 0;
21361 int previous_instantiation_extern_p = 0;
21363 if (TREE_CODE (t) == TYPE_DECL)
21364 t = TREE_TYPE (t);
21366 if (! CLASS_TYPE_P (t) || ! CLASSTYPE_TEMPLATE_INFO (t))
21368 tree tmpl =
21369 (TYPE_TEMPLATE_INFO (t)) ? TYPE_TI_TEMPLATE (t) : NULL;
21370 if (tmpl)
21371 error ("explicit instantiation of non-class template %qD", tmpl);
21372 else
21373 error ("explicit instantiation of non-template type %qT", t);
21374 return;
21377 complete_type (t);
21379 if (!COMPLETE_TYPE_P (t))
21381 if (complain & tf_error)
21382 error ("explicit instantiation of %q#T before definition of template",
21384 return;
21387 if (storage != NULL_TREE)
21389 if (!in_system_header_at (input_location))
21391 if (storage == ridpointers[(int) RID_EXTERN])
21393 if (cxx_dialect == cxx98)
21394 pedwarn (input_location, OPT_Wpedantic,
21395 "ISO C++ 1998 forbids the use of %<extern%> on "
21396 "explicit instantiations");
21398 else
21399 pedwarn (input_location, OPT_Wpedantic,
21400 "ISO C++ forbids the use of %qE"
21401 " on explicit instantiations", storage);
21404 if (storage == ridpointers[(int) RID_INLINE])
21405 nomem_p = 1;
21406 else if (storage == ridpointers[(int) RID_EXTERN])
21407 extern_p = 1;
21408 else if (storage == ridpointers[(int) RID_STATIC])
21409 static_p = 1;
21410 else
21412 error ("storage class %qD applied to template instantiation",
21413 storage);
21414 extern_p = 0;
21418 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (t))
21420 /* DR 259 [temp.spec].
21422 Both an explicit instantiation and a declaration of an explicit
21423 specialization shall not appear in a program unless the explicit
21424 instantiation follows a declaration of the explicit specialization.
21426 For a given set of template parameters, if an explicit
21427 instantiation of a template appears after a declaration of an
21428 explicit specialization for that template, the explicit
21429 instantiation has no effect. */
21430 return;
21432 else if (CLASSTYPE_EXPLICIT_INSTANTIATION (t))
21434 /* [temp.spec]
21436 No program shall explicitly instantiate any template more
21437 than once.
21439 If PREVIOUS_INSTANTIATION_EXTERN_P, then the first explicit
21440 instantiation was `extern'. If EXTERN_P then the second is.
21441 These cases are OK. */
21442 previous_instantiation_extern_p = CLASSTYPE_INTERFACE_ONLY (t);
21444 if (!previous_instantiation_extern_p && !extern_p
21445 && (complain & tf_error))
21446 permerror (input_location, "duplicate explicit instantiation of %q#T", t);
21448 /* If we've already instantiated the template, just return now. */
21449 if (!CLASSTYPE_INTERFACE_ONLY (t))
21450 return;
21453 check_explicit_instantiation_namespace (TYPE_NAME (t));
21454 mark_class_instantiated (t, extern_p);
21456 if (nomem_p)
21457 return;
21460 tree tmp;
21462 /* In contrast to implicit instantiation, where only the
21463 declarations, and not the definitions, of members are
21464 instantiated, we have here:
21466 [temp.explicit]
21468 The explicit instantiation of a class template specialization
21469 implies the instantiation of all of its members not
21470 previously explicitly specialized in the translation unit
21471 containing the explicit instantiation.
21473 Of course, we can't instantiate member template classes, since
21474 we don't have any arguments for them. Note that the standard
21475 is unclear on whether the instantiation of the members are
21476 *explicit* instantiations or not. However, the most natural
21477 interpretation is that it should be an explicit instantiation. */
21479 if (! static_p)
21480 for (tmp = TYPE_METHODS (t); tmp; tmp = DECL_CHAIN (tmp))
21481 if (TREE_CODE (tmp) == FUNCTION_DECL
21482 && DECL_TEMPLATE_INSTANTIATION (tmp))
21483 instantiate_class_member (tmp, extern_p);
21485 for (tmp = TYPE_FIELDS (t); tmp; tmp = DECL_CHAIN (tmp))
21486 if (VAR_P (tmp) && DECL_TEMPLATE_INSTANTIATION (tmp))
21487 instantiate_class_member (tmp, extern_p);
21489 if (CLASSTYPE_NESTED_UTDS (t))
21490 binding_table_foreach (CLASSTYPE_NESTED_UTDS (t),
21491 bt_instantiate_type_proc, &storage);
21495 /* Given a function DECL, which is a specialization of TMPL, modify
21496 DECL to be a re-instantiation of TMPL with the same template
21497 arguments. TMPL should be the template into which tsubst'ing
21498 should occur for DECL, not the most general template.
21500 One reason for doing this is a scenario like this:
21502 template <class T>
21503 void f(const T&, int i);
21505 void g() { f(3, 7); }
21507 template <class T>
21508 void f(const T& t, const int i) { }
21510 Note that when the template is first instantiated, with
21511 instantiate_template, the resulting DECL will have no name for the
21512 first parameter, and the wrong type for the second. So, when we go
21513 to instantiate the DECL, we regenerate it. */
21515 static void
21516 regenerate_decl_from_template (tree decl, tree tmpl, tree args)
21518 /* The arguments used to instantiate DECL, from the most general
21519 template. */
21520 tree code_pattern;
21522 code_pattern = DECL_TEMPLATE_RESULT (tmpl);
21524 /* Make sure that we can see identifiers, and compute access
21525 correctly. */
21526 push_access_scope (decl);
21528 if (TREE_CODE (decl) == FUNCTION_DECL)
21530 tree decl_parm;
21531 tree pattern_parm;
21532 tree specs;
21533 int args_depth;
21534 int parms_depth;
21536 args_depth = TMPL_ARGS_DEPTH (args);
21537 parms_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
21538 if (args_depth > parms_depth)
21539 args = get_innermost_template_args (args, parms_depth);
21541 specs = tsubst_exception_specification (TREE_TYPE (code_pattern),
21542 args, tf_error, NULL_TREE,
21543 /*defer_ok*/false);
21544 if (specs && specs != error_mark_node)
21545 TREE_TYPE (decl) = build_exception_variant (TREE_TYPE (decl),
21546 specs);
21548 /* Merge parameter declarations. */
21549 decl_parm = skip_artificial_parms_for (decl,
21550 DECL_ARGUMENTS (decl));
21551 pattern_parm
21552 = skip_artificial_parms_for (code_pattern,
21553 DECL_ARGUMENTS (code_pattern));
21554 while (decl_parm && !DECL_PACK_P (pattern_parm))
21556 tree parm_type;
21557 tree attributes;
21559 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
21560 DECL_NAME (decl_parm) = DECL_NAME (pattern_parm);
21561 parm_type = tsubst (TREE_TYPE (pattern_parm), args, tf_error,
21562 NULL_TREE);
21563 parm_type = type_decays_to (parm_type);
21564 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
21565 TREE_TYPE (decl_parm) = parm_type;
21566 attributes = DECL_ATTRIBUTES (pattern_parm);
21567 if (DECL_ATTRIBUTES (decl_parm) != attributes)
21569 DECL_ATTRIBUTES (decl_parm) = attributes;
21570 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
21572 decl_parm = DECL_CHAIN (decl_parm);
21573 pattern_parm = DECL_CHAIN (pattern_parm);
21575 /* Merge any parameters that match with the function parameter
21576 pack. */
21577 if (pattern_parm && DECL_PACK_P (pattern_parm))
21579 int i, len;
21580 tree expanded_types;
21581 /* Expand the TYPE_PACK_EXPANSION that provides the types for
21582 the parameters in this function parameter pack. */
21583 expanded_types = tsubst_pack_expansion (TREE_TYPE (pattern_parm),
21584 args, tf_error, NULL_TREE);
21585 len = TREE_VEC_LENGTH (expanded_types);
21586 for (i = 0; i < len; i++)
21588 tree parm_type;
21589 tree attributes;
21591 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
21592 /* Rename the parameter to include the index. */
21593 DECL_NAME (decl_parm) =
21594 make_ith_pack_parameter_name (DECL_NAME (pattern_parm), i);
21595 parm_type = TREE_VEC_ELT (expanded_types, i);
21596 parm_type = type_decays_to (parm_type);
21597 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
21598 TREE_TYPE (decl_parm) = parm_type;
21599 attributes = DECL_ATTRIBUTES (pattern_parm);
21600 if (DECL_ATTRIBUTES (decl_parm) != attributes)
21602 DECL_ATTRIBUTES (decl_parm) = attributes;
21603 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
21605 decl_parm = DECL_CHAIN (decl_parm);
21608 /* Merge additional specifiers from the CODE_PATTERN. */
21609 if (DECL_DECLARED_INLINE_P (code_pattern)
21610 && !DECL_DECLARED_INLINE_P (decl))
21611 DECL_DECLARED_INLINE_P (decl) = 1;
21613 else if (VAR_P (decl))
21615 DECL_INITIAL (decl) =
21616 tsubst_expr (DECL_INITIAL (code_pattern), args,
21617 tf_error, DECL_TI_TEMPLATE (decl),
21618 /*integral_constant_expression_p=*/false);
21619 if (VAR_HAD_UNKNOWN_BOUND (decl))
21620 TREE_TYPE (decl) = tsubst (TREE_TYPE (code_pattern), args,
21621 tf_error, DECL_TI_TEMPLATE (decl));
21623 else
21624 gcc_unreachable ();
21626 pop_access_scope (decl);
21629 /* Return the TEMPLATE_DECL into which DECL_TI_ARGS(DECL) should be
21630 substituted to get DECL. */
21632 tree
21633 template_for_substitution (tree decl)
21635 tree tmpl = DECL_TI_TEMPLATE (decl);
21637 /* Set TMPL to the template whose DECL_TEMPLATE_RESULT is the pattern
21638 for the instantiation. This is not always the most general
21639 template. Consider, for example:
21641 template <class T>
21642 struct S { template <class U> void f();
21643 template <> void f<int>(); };
21645 and an instantiation of S<double>::f<int>. We want TD to be the
21646 specialization S<T>::f<int>, not the more general S<T>::f<U>. */
21647 while (/* An instantiation cannot have a definition, so we need a
21648 more general template. */
21649 DECL_TEMPLATE_INSTANTIATION (tmpl)
21650 /* We must also deal with friend templates. Given:
21652 template <class T> struct S {
21653 template <class U> friend void f() {};
21656 S<int>::f<U> say, is not an instantiation of S<T>::f<U>,
21657 so far as the language is concerned, but that's still
21658 where we get the pattern for the instantiation from. On
21659 other hand, if the definition comes outside the class, say:
21661 template <class T> struct S {
21662 template <class U> friend void f();
21664 template <class U> friend void f() {}
21666 we don't need to look any further. That's what the check for
21667 DECL_INITIAL is for. */
21668 || (TREE_CODE (decl) == FUNCTION_DECL
21669 && DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (tmpl)
21670 && !DECL_INITIAL (DECL_TEMPLATE_RESULT (tmpl))))
21672 /* The present template, TD, should not be a definition. If it
21673 were a definition, we should be using it! Note that we
21674 cannot restructure the loop to just keep going until we find
21675 a template with a definition, since that might go too far if
21676 a specialization was declared, but not defined. */
21678 /* Fetch the more general template. */
21679 tmpl = DECL_TI_TEMPLATE (tmpl);
21682 return tmpl;
21685 /* Returns true if we need to instantiate this template instance even if we
21686 know we aren't going to emit it. */
21688 bool
21689 always_instantiate_p (tree decl)
21691 /* We always instantiate inline functions so that we can inline them. An
21692 explicit instantiation declaration prohibits implicit instantiation of
21693 non-inline functions. With high levels of optimization, we would
21694 normally inline non-inline functions -- but we're not allowed to do
21695 that for "extern template" functions. Therefore, we check
21696 DECL_DECLARED_INLINE_P, rather than possibly_inlined_p. */
21697 return ((TREE_CODE (decl) == FUNCTION_DECL
21698 && (DECL_DECLARED_INLINE_P (decl)
21699 || type_uses_auto (TREE_TYPE (TREE_TYPE (decl)))))
21700 /* And we need to instantiate static data members so that
21701 their initializers are available in integral constant
21702 expressions. */
21703 || (VAR_P (decl)
21704 && decl_maybe_constant_var_p (decl)));
21707 /* If FN has a noexcept-specifier that hasn't been instantiated yet,
21708 instantiate it now, modifying TREE_TYPE (fn). */
21710 void
21711 maybe_instantiate_noexcept (tree fn)
21713 tree fntype, spec, noex, clone;
21715 /* Don't instantiate a noexcept-specification from template context. */
21716 if (processing_template_decl)
21717 return;
21719 if (DECL_CLONED_FUNCTION_P (fn))
21720 fn = DECL_CLONED_FUNCTION (fn);
21721 fntype = TREE_TYPE (fn);
21722 spec = TYPE_RAISES_EXCEPTIONS (fntype);
21724 if (!spec || !TREE_PURPOSE (spec))
21725 return;
21727 noex = TREE_PURPOSE (spec);
21729 if (TREE_CODE (noex) == DEFERRED_NOEXCEPT)
21731 if (DEFERRED_NOEXCEPT_PATTERN (noex) == NULL_TREE)
21732 spec = get_defaulted_eh_spec (fn);
21733 else if (push_tinst_level (fn))
21735 push_access_scope (fn);
21736 push_deferring_access_checks (dk_no_deferred);
21737 input_location = DECL_SOURCE_LOCATION (fn);
21738 noex = tsubst_copy_and_build (DEFERRED_NOEXCEPT_PATTERN (noex),
21739 DEFERRED_NOEXCEPT_ARGS (noex),
21740 tf_warning_or_error, fn,
21741 /*function_p=*/false,
21742 /*integral_constant_expression_p=*/true);
21743 pop_deferring_access_checks ();
21744 pop_access_scope (fn);
21745 pop_tinst_level ();
21746 spec = build_noexcept_spec (noex, tf_warning_or_error);
21747 if (spec == error_mark_node)
21748 spec = noexcept_false_spec;
21750 else
21751 spec = noexcept_false_spec;
21753 TREE_TYPE (fn) = build_exception_variant (fntype, spec);
21756 FOR_EACH_CLONE (clone, fn)
21758 if (TREE_TYPE (clone) == fntype)
21759 TREE_TYPE (clone) = TREE_TYPE (fn);
21760 else
21761 TREE_TYPE (clone) = build_exception_variant (TREE_TYPE (clone), spec);
21765 /* Produce the definition of D, a _DECL generated from a template. If
21766 DEFER_OK is nonzero, then we don't have to actually do the
21767 instantiation now; we just have to do it sometime. Normally it is
21768 an error if this is an explicit instantiation but D is undefined.
21769 EXPL_INST_CLASS_MEM_P is true iff D is a member of an
21770 explicitly instantiated class template. */
21772 tree
21773 instantiate_decl (tree d, int defer_ok,
21774 bool expl_inst_class_mem_p)
21776 tree tmpl = DECL_TI_TEMPLATE (d);
21777 tree gen_args;
21778 tree args;
21779 tree td;
21780 tree code_pattern;
21781 tree spec;
21782 tree gen_tmpl;
21783 bool pattern_defined;
21784 location_t saved_loc = input_location;
21785 int saved_unevaluated_operand = cp_unevaluated_operand;
21786 int saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
21787 bool external_p;
21788 bool deleted_p;
21789 tree fn_context;
21790 bool nested = false;
21792 /* This function should only be used to instantiate templates for
21793 functions and static member variables. */
21794 gcc_assert (VAR_OR_FUNCTION_DECL_P (d));
21796 /* A concept is never instantiated. */
21797 gcc_assert (!DECL_DECLARED_CONCEPT_P (d));
21799 /* Variables are never deferred; if instantiation is required, they
21800 are instantiated right away. That allows for better code in the
21801 case that an expression refers to the value of the variable --
21802 if the variable has a constant value the referring expression can
21803 take advantage of that fact. */
21804 if (VAR_P (d)
21805 || DECL_DECLARED_CONSTEXPR_P (d))
21806 defer_ok = 0;
21808 /* Don't instantiate cloned functions. Instead, instantiate the
21809 functions they cloned. */
21810 if (TREE_CODE (d) == FUNCTION_DECL && DECL_CLONED_FUNCTION_P (d))
21811 d = DECL_CLONED_FUNCTION (d);
21813 if (DECL_TEMPLATE_INSTANTIATED (d)
21814 || (TREE_CODE (d) == FUNCTION_DECL
21815 && DECL_DEFAULTED_FN (d) && DECL_INITIAL (d))
21816 || DECL_TEMPLATE_SPECIALIZATION (d))
21817 /* D has already been instantiated or explicitly specialized, so
21818 there's nothing for us to do here.
21820 It might seem reasonable to check whether or not D is an explicit
21821 instantiation, and, if so, stop here. But when an explicit
21822 instantiation is deferred until the end of the compilation,
21823 DECL_EXPLICIT_INSTANTIATION is set, even though we still need to do
21824 the instantiation. */
21825 return d;
21827 /* Check to see whether we know that this template will be
21828 instantiated in some other file, as with "extern template"
21829 extension. */
21830 external_p = (DECL_INTERFACE_KNOWN (d) && DECL_REALLY_EXTERN (d));
21832 /* In general, we do not instantiate such templates. */
21833 if (external_p && !always_instantiate_p (d))
21834 return d;
21836 gen_tmpl = most_general_template (tmpl);
21837 gen_args = DECL_TI_ARGS (d);
21839 if (tmpl != gen_tmpl)
21840 /* We should already have the extra args. */
21841 gcc_assert (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (gen_tmpl))
21842 == TMPL_ARGS_DEPTH (gen_args));
21843 /* And what's in the hash table should match D. */
21844 gcc_assert ((spec = retrieve_specialization (gen_tmpl, gen_args, 0)) == d
21845 || spec == NULL_TREE);
21847 /* This needs to happen before any tsubsting. */
21848 if (! push_tinst_level (d))
21849 return d;
21851 timevar_push (TV_TEMPLATE_INST);
21853 /* Set TD to the template whose DECL_TEMPLATE_RESULT is the pattern
21854 for the instantiation. */
21855 td = template_for_substitution (d);
21856 args = gen_args;
21858 if (VAR_P (d))
21860 /* Look up an explicit specialization, if any. */
21861 tree tid = lookup_template_variable (gen_tmpl, gen_args);
21862 tree elt = most_specialized_partial_spec (tid, tf_warning_or_error);
21863 if (elt && elt != error_mark_node)
21865 td = TREE_VALUE (elt);
21866 args = TREE_PURPOSE (elt);
21870 code_pattern = DECL_TEMPLATE_RESULT (td);
21872 /* We should never be trying to instantiate a member of a class
21873 template or partial specialization. */
21874 gcc_assert (d != code_pattern);
21876 if ((DECL_NAMESPACE_SCOPE_P (d) && !DECL_INITIALIZED_IN_CLASS_P (d))
21877 || DECL_TEMPLATE_SPECIALIZATION (td))
21878 /* In the case of a friend template whose definition is provided
21879 outside the class, we may have too many arguments. Drop the
21880 ones we don't need. The same is true for specializations. */
21881 args = get_innermost_template_args
21882 (args, TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (td)));
21884 if (TREE_CODE (d) == FUNCTION_DECL)
21886 deleted_p = DECL_DELETED_FN (code_pattern);
21887 pattern_defined = ((DECL_SAVED_TREE (code_pattern) != NULL_TREE
21888 && DECL_INITIAL (code_pattern) != error_mark_node)
21889 || DECL_DEFAULTED_OUTSIDE_CLASS_P (code_pattern)
21890 || deleted_p);
21892 else
21894 deleted_p = false;
21895 if (DECL_CLASS_SCOPE_P (code_pattern))
21896 pattern_defined = ! DECL_IN_AGGR_P (code_pattern);
21897 else
21898 pattern_defined = ! DECL_EXTERNAL (code_pattern);
21901 /* We may be in the middle of deferred access check. Disable it now. */
21902 push_deferring_access_checks (dk_no_deferred);
21904 /* Unless an explicit instantiation directive has already determined
21905 the linkage of D, remember that a definition is available for
21906 this entity. */
21907 if (pattern_defined
21908 && !DECL_INTERFACE_KNOWN (d)
21909 && !DECL_NOT_REALLY_EXTERN (d))
21910 mark_definable (d);
21912 DECL_SOURCE_LOCATION (td) = DECL_SOURCE_LOCATION (code_pattern);
21913 DECL_SOURCE_LOCATION (d) = DECL_SOURCE_LOCATION (code_pattern);
21914 input_location = DECL_SOURCE_LOCATION (d);
21916 /* If D is a member of an explicitly instantiated class template,
21917 and no definition is available, treat it like an implicit
21918 instantiation. */
21919 if (!pattern_defined && expl_inst_class_mem_p
21920 && DECL_EXPLICIT_INSTANTIATION (d))
21922 /* Leave linkage flags alone on instantiations with anonymous
21923 visibility. */
21924 if (TREE_PUBLIC (d))
21926 DECL_NOT_REALLY_EXTERN (d) = 0;
21927 DECL_INTERFACE_KNOWN (d) = 0;
21929 SET_DECL_IMPLICIT_INSTANTIATION (d);
21932 /* Defer all other templates, unless we have been explicitly
21933 forbidden from doing so. */
21934 if (/* If there is no definition, we cannot instantiate the
21935 template. */
21936 ! pattern_defined
21937 /* If it's OK to postpone instantiation, do so. */
21938 || defer_ok
21939 /* If this is a static data member that will be defined
21940 elsewhere, we don't want to instantiate the entire data
21941 member, but we do want to instantiate the initializer so that
21942 we can substitute that elsewhere. */
21943 || (external_p && VAR_P (d))
21944 /* Handle here a deleted function too, avoid generating
21945 its body (c++/61080). */
21946 || deleted_p)
21948 /* The definition of the static data member is now required so
21949 we must substitute the initializer. */
21950 if (VAR_P (d)
21951 && !DECL_INITIAL (d)
21952 && DECL_INITIAL (code_pattern))
21954 tree ns;
21955 tree init;
21956 bool const_init = false;
21957 bool enter_context = DECL_CLASS_SCOPE_P (d);
21959 ns = decl_namespace_context (d);
21960 push_nested_namespace (ns);
21961 if (enter_context)
21962 push_nested_class (DECL_CONTEXT (d));
21963 init = tsubst_expr (DECL_INITIAL (code_pattern),
21964 args,
21965 tf_warning_or_error, NULL_TREE,
21966 /*integral_constant_expression_p=*/false);
21967 /* If instantiating the initializer involved instantiating this
21968 again, don't call cp_finish_decl twice. */
21969 if (!DECL_INITIAL (d))
21971 /* Make sure the initializer is still constant, in case of
21972 circular dependency (template/instantiate6.C). */
21973 const_init
21974 = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
21975 cp_finish_decl (d, init, /*init_const_expr_p=*/const_init,
21976 /*asmspec_tree=*/NULL_TREE,
21977 LOOKUP_ONLYCONVERTING);
21979 if (enter_context)
21980 pop_nested_class ();
21981 pop_nested_namespace (ns);
21984 /* We restore the source position here because it's used by
21985 add_pending_template. */
21986 input_location = saved_loc;
21988 if (at_eof && !pattern_defined
21989 && DECL_EXPLICIT_INSTANTIATION (d)
21990 && DECL_NOT_REALLY_EXTERN (d))
21991 /* [temp.explicit]
21993 The definition of a non-exported function template, a
21994 non-exported member function template, or a non-exported
21995 member function or static data member of a class template
21996 shall be present in every translation unit in which it is
21997 explicitly instantiated. */
21998 permerror (input_location, "explicit instantiation of %qD "
21999 "but no definition available", d);
22001 /* If we're in unevaluated context, we just wanted to get the
22002 constant value; this isn't an odr use, so don't queue
22003 a full instantiation. */
22004 if (cp_unevaluated_operand != 0)
22005 goto out;
22006 /* ??? Historically, we have instantiated inline functions, even
22007 when marked as "extern template". */
22008 if (!(external_p && VAR_P (d)))
22009 add_pending_template (d);
22010 goto out;
22012 /* Tell the repository that D is available in this translation unit
22013 -- and see if it is supposed to be instantiated here. */
22014 if (TREE_PUBLIC (d) && !DECL_REALLY_EXTERN (d) && !repo_emit_p (d))
22016 /* In a PCH file, despite the fact that the repository hasn't
22017 requested instantiation in the PCH it is still possible that
22018 an instantiation will be required in a file that includes the
22019 PCH. */
22020 if (pch_file)
22021 add_pending_template (d);
22022 /* Instantiate inline functions so that the inliner can do its
22023 job, even though we'll not be emitting a copy of this
22024 function. */
22025 if (!(TREE_CODE (d) == FUNCTION_DECL && possibly_inlined_p (d)))
22026 goto out;
22029 fn_context = decl_function_context (d);
22030 nested = (current_function_decl != NULL_TREE);
22031 vec<tree> omp_privatization_save;
22032 if (nested)
22033 save_omp_privatization_clauses (omp_privatization_save);
22035 if (!fn_context)
22036 push_to_top_level ();
22037 else
22039 if (nested)
22040 push_function_context ();
22041 cp_unevaluated_operand = 0;
22042 c_inhibit_evaluation_warnings = 0;
22045 /* Mark D as instantiated so that recursive calls to
22046 instantiate_decl do not try to instantiate it again. */
22047 DECL_TEMPLATE_INSTANTIATED (d) = 1;
22049 /* Regenerate the declaration in case the template has been modified
22050 by a subsequent redeclaration. */
22051 regenerate_decl_from_template (d, td, args);
22053 /* We already set the file and line above. Reset them now in case
22054 they changed as a result of calling regenerate_decl_from_template. */
22055 input_location = DECL_SOURCE_LOCATION (d);
22057 if (VAR_P (d))
22059 tree init;
22060 bool const_init = false;
22062 /* Clear out DECL_RTL; whatever was there before may not be right
22063 since we've reset the type of the declaration. */
22064 SET_DECL_RTL (d, NULL);
22065 DECL_IN_AGGR_P (d) = 0;
22067 /* The initializer is placed in DECL_INITIAL by
22068 regenerate_decl_from_template so we don't need to
22069 push/pop_access_scope again here. Pull it out so that
22070 cp_finish_decl can process it. */
22071 init = DECL_INITIAL (d);
22072 DECL_INITIAL (d) = NULL_TREE;
22073 DECL_INITIALIZED_P (d) = 0;
22075 /* Clear DECL_EXTERNAL so that cp_finish_decl will process the
22076 initializer. That function will defer actual emission until
22077 we have a chance to determine linkage. */
22078 DECL_EXTERNAL (d) = 0;
22080 /* Enter the scope of D so that access-checking works correctly. */
22081 bool enter_context = DECL_CLASS_SCOPE_P (d);
22082 if (enter_context)
22083 push_nested_class (DECL_CONTEXT (d));
22085 const_init = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
22086 cp_finish_decl (d, init, const_init, NULL_TREE, 0);
22088 if (enter_context)
22089 pop_nested_class ();
22091 if (variable_template_p (gen_tmpl))
22092 note_variable_template_instantiation (d);
22094 else if (TREE_CODE (d) == FUNCTION_DECL && DECL_DEFAULTED_FN (code_pattern))
22095 synthesize_method (d);
22096 else if (TREE_CODE (d) == FUNCTION_DECL)
22098 hash_map<tree, tree> *saved_local_specializations;
22099 tree tmpl_parm;
22100 tree spec_parm;
22101 tree block = NULL_TREE;
22103 /* Save away the current list, in case we are instantiating one
22104 template from within the body of another. */
22105 saved_local_specializations = local_specializations;
22107 /* Set up the list of local specializations. */
22108 local_specializations = new hash_map<tree, tree>;
22110 /* Set up context. */
22111 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern)
22112 && TREE_CODE (DECL_CONTEXT (code_pattern)) == FUNCTION_DECL)
22113 block = push_stmt_list ();
22114 else
22115 start_preparsed_function (d, NULL_TREE, SF_PRE_PARSED);
22117 /* Some typedefs referenced from within the template code need to be
22118 access checked at template instantiation time, i.e now. These
22119 types were added to the template at parsing time. Let's get those
22120 and perform the access checks then. */
22121 perform_typedefs_access_check (DECL_TEMPLATE_RESULT (td),
22122 args);
22124 /* Create substitution entries for the parameters. */
22125 tmpl_parm = DECL_ARGUMENTS (code_pattern);
22126 spec_parm = DECL_ARGUMENTS (d);
22127 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (d))
22129 register_local_specialization (spec_parm, tmpl_parm);
22130 spec_parm = skip_artificial_parms_for (d, spec_parm);
22131 tmpl_parm = skip_artificial_parms_for (code_pattern, tmpl_parm);
22133 for (; tmpl_parm; tmpl_parm = DECL_CHAIN (tmpl_parm))
22135 if (!DECL_PACK_P (tmpl_parm))
22137 register_local_specialization (spec_parm, tmpl_parm);
22138 spec_parm = DECL_CHAIN (spec_parm);
22140 else
22142 /* Register the (value) argument pack as a specialization of
22143 TMPL_PARM, then move on. */
22144 tree argpack = extract_fnparm_pack (tmpl_parm, &spec_parm);
22145 register_local_specialization (argpack, tmpl_parm);
22148 gcc_assert (!spec_parm);
22150 /* Substitute into the body of the function. */
22151 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern))
22152 tsubst_omp_udr (DECL_SAVED_TREE (code_pattern), args,
22153 tf_warning_or_error, tmpl);
22154 else
22156 tsubst_expr (DECL_SAVED_TREE (code_pattern), args,
22157 tf_warning_or_error, tmpl,
22158 /*integral_constant_expression_p=*/false);
22160 /* Set the current input_location to the end of the function
22161 so that finish_function knows where we are. */
22162 input_location
22163 = DECL_STRUCT_FUNCTION (code_pattern)->function_end_locus;
22165 /* Remember if we saw an infinite loop in the template. */
22166 current_function_infinite_loop
22167 = DECL_STRUCT_FUNCTION (code_pattern)->language->infinite_loop;
22170 /* We don't need the local specializations any more. */
22171 delete local_specializations;
22172 local_specializations = saved_local_specializations;
22174 /* Finish the function. */
22175 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern)
22176 && TREE_CODE (DECL_CONTEXT (code_pattern)) == FUNCTION_DECL)
22177 DECL_SAVED_TREE (d) = pop_stmt_list (block);
22178 else
22180 d = finish_function (0);
22181 expand_or_defer_fn (d);
22184 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern))
22185 cp_check_omp_declare_reduction (d);
22188 /* We're not deferring instantiation any more. */
22189 TI_PENDING_TEMPLATE_FLAG (DECL_TEMPLATE_INFO (d)) = 0;
22191 if (!fn_context)
22192 pop_from_top_level ();
22193 else if (nested)
22194 pop_function_context ();
22196 out:
22197 input_location = saved_loc;
22198 cp_unevaluated_operand = saved_unevaluated_operand;
22199 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
22200 pop_deferring_access_checks ();
22201 pop_tinst_level ();
22202 if (nested)
22203 restore_omp_privatization_clauses (omp_privatization_save);
22205 timevar_pop (TV_TEMPLATE_INST);
22207 return d;
22210 /* Run through the list of templates that we wish we could
22211 instantiate, and instantiate any we can. RETRIES is the
22212 number of times we retry pending template instantiation. */
22214 void
22215 instantiate_pending_templates (int retries)
22217 int reconsider;
22218 location_t saved_loc = input_location;
22220 /* Instantiating templates may trigger vtable generation. This in turn
22221 may require further template instantiations. We place a limit here
22222 to avoid infinite loop. */
22223 if (pending_templates && retries >= max_tinst_depth)
22225 tree decl = pending_templates->tinst->decl;
22227 fatal_error (input_location,
22228 "template instantiation depth exceeds maximum of %d"
22229 " instantiating %q+D, possibly from virtual table generation"
22230 " (use -ftemplate-depth= to increase the maximum)",
22231 max_tinst_depth, decl);
22232 if (TREE_CODE (decl) == FUNCTION_DECL)
22233 /* Pretend that we defined it. */
22234 DECL_INITIAL (decl) = error_mark_node;
22235 return;
22240 struct pending_template **t = &pending_templates;
22241 struct pending_template *last = NULL;
22242 reconsider = 0;
22243 while (*t)
22245 tree instantiation = reopen_tinst_level ((*t)->tinst);
22246 bool complete = false;
22248 if (TYPE_P (instantiation))
22250 tree fn;
22252 if (!COMPLETE_TYPE_P (instantiation))
22254 instantiate_class_template (instantiation);
22255 if (CLASSTYPE_TEMPLATE_INSTANTIATION (instantiation))
22256 for (fn = TYPE_METHODS (instantiation);
22258 fn = TREE_CHAIN (fn))
22259 if (! DECL_ARTIFICIAL (fn))
22260 instantiate_decl (fn,
22261 /*defer_ok=*/0,
22262 /*expl_inst_class_mem_p=*/false);
22263 if (COMPLETE_TYPE_P (instantiation))
22264 reconsider = 1;
22267 complete = COMPLETE_TYPE_P (instantiation);
22269 else
22271 if (!DECL_TEMPLATE_SPECIALIZATION (instantiation)
22272 && !DECL_TEMPLATE_INSTANTIATED (instantiation))
22274 instantiation
22275 = instantiate_decl (instantiation,
22276 /*defer_ok=*/0,
22277 /*expl_inst_class_mem_p=*/false);
22278 if (DECL_TEMPLATE_INSTANTIATED (instantiation))
22279 reconsider = 1;
22282 complete = (DECL_TEMPLATE_SPECIALIZATION (instantiation)
22283 || DECL_TEMPLATE_INSTANTIATED (instantiation));
22286 if (complete)
22287 /* If INSTANTIATION has been instantiated, then we don't
22288 need to consider it again in the future. */
22289 *t = (*t)->next;
22290 else
22292 last = *t;
22293 t = &(*t)->next;
22295 tinst_depth = 0;
22296 current_tinst_level = NULL;
22298 last_pending_template = last;
22300 while (reconsider);
22302 input_location = saved_loc;
22305 /* Substitute ARGVEC into T, which is a list of initializers for
22306 either base class or a non-static data member. The TREE_PURPOSEs
22307 are DECLs, and the TREE_VALUEs are the initializer values. Used by
22308 instantiate_decl. */
22310 static tree
22311 tsubst_initializer_list (tree t, tree argvec)
22313 tree inits = NULL_TREE;
22315 for (; t; t = TREE_CHAIN (t))
22317 tree decl;
22318 tree init;
22319 tree expanded_bases = NULL_TREE;
22320 tree expanded_arguments = NULL_TREE;
22321 int i, len = 1;
22323 if (TREE_CODE (TREE_PURPOSE (t)) == TYPE_PACK_EXPANSION)
22325 tree expr;
22326 tree arg;
22328 /* Expand the base class expansion type into separate base
22329 classes. */
22330 expanded_bases = tsubst_pack_expansion (TREE_PURPOSE (t), argvec,
22331 tf_warning_or_error,
22332 NULL_TREE);
22333 if (expanded_bases == error_mark_node)
22334 continue;
22336 /* We'll be building separate TREE_LISTs of arguments for
22337 each base. */
22338 len = TREE_VEC_LENGTH (expanded_bases);
22339 expanded_arguments = make_tree_vec (len);
22340 for (i = 0; i < len; i++)
22341 TREE_VEC_ELT (expanded_arguments, i) = NULL_TREE;
22343 /* Build a dummy EXPR_PACK_EXPANSION that will be used to
22344 expand each argument in the TREE_VALUE of t. */
22345 expr = make_node (EXPR_PACK_EXPANSION);
22346 PACK_EXPANSION_LOCAL_P (expr) = true;
22347 PACK_EXPANSION_PARAMETER_PACKS (expr) =
22348 PACK_EXPANSION_PARAMETER_PACKS (TREE_PURPOSE (t));
22350 if (TREE_VALUE (t) == void_type_node)
22351 /* VOID_TYPE_NODE is used to indicate
22352 value-initialization. */
22354 for (i = 0; i < len; i++)
22355 TREE_VEC_ELT (expanded_arguments, i) = void_type_node;
22357 else
22359 /* Substitute parameter packs into each argument in the
22360 TREE_LIST. */
22361 in_base_initializer = 1;
22362 for (arg = TREE_VALUE (t); arg; arg = TREE_CHAIN (arg))
22364 tree expanded_exprs;
22366 /* Expand the argument. */
22367 SET_PACK_EXPANSION_PATTERN (expr, TREE_VALUE (arg));
22368 expanded_exprs
22369 = tsubst_pack_expansion (expr, argvec,
22370 tf_warning_or_error,
22371 NULL_TREE);
22372 if (expanded_exprs == error_mark_node)
22373 continue;
22375 /* Prepend each of the expanded expressions to the
22376 corresponding TREE_LIST in EXPANDED_ARGUMENTS. */
22377 for (i = 0; i < len; i++)
22379 TREE_VEC_ELT (expanded_arguments, i) =
22380 tree_cons (NULL_TREE,
22381 TREE_VEC_ELT (expanded_exprs, i),
22382 TREE_VEC_ELT (expanded_arguments, i));
22385 in_base_initializer = 0;
22387 /* Reverse all of the TREE_LISTs in EXPANDED_ARGUMENTS,
22388 since we built them backwards. */
22389 for (i = 0; i < len; i++)
22391 TREE_VEC_ELT (expanded_arguments, i) =
22392 nreverse (TREE_VEC_ELT (expanded_arguments, i));
22397 for (i = 0; i < len; ++i)
22399 if (expanded_bases)
22401 decl = TREE_VEC_ELT (expanded_bases, i);
22402 decl = expand_member_init (decl);
22403 init = TREE_VEC_ELT (expanded_arguments, i);
22405 else
22407 tree tmp;
22408 decl = tsubst_copy (TREE_PURPOSE (t), argvec,
22409 tf_warning_or_error, NULL_TREE);
22411 decl = expand_member_init (decl);
22412 if (decl && !DECL_P (decl))
22413 in_base_initializer = 1;
22415 init = TREE_VALUE (t);
22416 tmp = init;
22417 if (init != void_type_node)
22418 init = tsubst_expr (init, argvec,
22419 tf_warning_or_error, NULL_TREE,
22420 /*integral_constant_expression_p=*/false);
22421 if (init == NULL_TREE && tmp != NULL_TREE)
22422 /* If we had an initializer but it instantiated to nothing,
22423 value-initialize the object. This will only occur when
22424 the initializer was a pack expansion where the parameter
22425 packs used in that expansion were of length zero. */
22426 init = void_type_node;
22427 in_base_initializer = 0;
22430 if (decl)
22432 init = build_tree_list (decl, init);
22433 TREE_CHAIN (init) = inits;
22434 inits = init;
22438 return inits;
22441 /* Set CURRENT_ACCESS_SPECIFIER based on the protection of DECL. */
22443 static void
22444 set_current_access_from_decl (tree decl)
22446 if (TREE_PRIVATE (decl))
22447 current_access_specifier = access_private_node;
22448 else if (TREE_PROTECTED (decl))
22449 current_access_specifier = access_protected_node;
22450 else
22451 current_access_specifier = access_public_node;
22454 /* Instantiate an enumerated type. TAG is the template type, NEWTAG
22455 is the instantiation (which should have been created with
22456 start_enum) and ARGS are the template arguments to use. */
22458 static void
22459 tsubst_enum (tree tag, tree newtag, tree args)
22461 tree e;
22463 if (SCOPED_ENUM_P (newtag))
22464 begin_scope (sk_scoped_enum, newtag);
22466 for (e = TYPE_VALUES (tag); e; e = TREE_CHAIN (e))
22468 tree value;
22469 tree decl;
22471 decl = TREE_VALUE (e);
22472 /* Note that in a template enum, the TREE_VALUE is the
22473 CONST_DECL, not the corresponding INTEGER_CST. */
22474 value = tsubst_expr (DECL_INITIAL (decl),
22475 args, tf_warning_or_error, NULL_TREE,
22476 /*integral_constant_expression_p=*/true);
22478 /* Give this enumeration constant the correct access. */
22479 set_current_access_from_decl (decl);
22481 /* Actually build the enumerator itself. Here we're assuming that
22482 enumerators can't have dependent attributes. */
22483 build_enumerator (DECL_NAME (decl), value, newtag,
22484 DECL_ATTRIBUTES (decl), DECL_SOURCE_LOCATION (decl));
22487 if (SCOPED_ENUM_P (newtag))
22488 finish_scope ();
22490 finish_enum_value_list (newtag);
22491 finish_enum (newtag);
22493 DECL_SOURCE_LOCATION (TYPE_NAME (newtag))
22494 = DECL_SOURCE_LOCATION (TYPE_NAME (tag));
22497 /* DECL is a FUNCTION_DECL that is a template specialization. Return
22498 its type -- but without substituting the innermost set of template
22499 arguments. So, innermost set of template parameters will appear in
22500 the type. */
22502 tree
22503 get_mostly_instantiated_function_type (tree decl)
22505 /* For a function, DECL_TI_TEMPLATE is partially instantiated. */
22506 return TREE_TYPE (DECL_TI_TEMPLATE (decl));
22509 /* Return truthvalue if we're processing a template different from
22510 the last one involved in diagnostics. */
22511 bool
22512 problematic_instantiation_changed (void)
22514 return current_tinst_level != last_error_tinst_level;
22517 /* Remember current template involved in diagnostics. */
22518 void
22519 record_last_problematic_instantiation (void)
22521 last_error_tinst_level = current_tinst_level;
22524 struct tinst_level *
22525 current_instantiation (void)
22527 return current_tinst_level;
22530 /* Return TRUE if current_function_decl is being instantiated, false
22531 otherwise. */
22533 bool
22534 instantiating_current_function_p (void)
22536 return (current_instantiation ()
22537 && current_instantiation ()->decl == current_function_decl);
22540 /* [temp.param] Check that template non-type parm TYPE is of an allowable
22541 type. Return zero for ok, nonzero for disallowed. Issue error and
22542 warning messages under control of COMPLAIN. */
22544 static int
22545 invalid_nontype_parm_type_p (tree type, tsubst_flags_t complain)
22547 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
22548 return 0;
22549 else if (POINTER_TYPE_P (type))
22550 return 0;
22551 else if (TYPE_PTRMEM_P (type))
22552 return 0;
22553 else if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
22554 return 0;
22555 else if (TREE_CODE (type) == TYPENAME_TYPE)
22556 return 0;
22557 else if (TREE_CODE (type) == DECLTYPE_TYPE)
22558 return 0;
22559 else if (TREE_CODE (type) == NULLPTR_TYPE)
22560 return 0;
22561 /* A bound template template parm could later be instantiated to have a valid
22562 nontype parm type via an alias template. */
22563 else if (cxx_dialect >= cxx11
22564 && TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
22565 return 0;
22567 if (complain & tf_error)
22569 if (type == error_mark_node)
22570 inform (input_location, "invalid template non-type parameter");
22571 else
22572 error ("%q#T is not a valid type for a template non-type parameter",
22573 type);
22575 return 1;
22578 /* Returns TRUE if TYPE is dependent, in the sense of [temp.dep.type].
22579 Assumes that TYPE really is a type, and not the ERROR_MARK_NODE.*/
22581 static bool
22582 dependent_type_p_r (tree type)
22584 tree scope;
22586 /* [temp.dep.type]
22588 A type is dependent if it is:
22590 -- a template parameter. Template template parameters are types
22591 for us (since TYPE_P holds true for them) so we handle
22592 them here. */
22593 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
22594 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM)
22595 return true;
22596 /* -- a qualified-id with a nested-name-specifier which contains a
22597 class-name that names a dependent type or whose unqualified-id
22598 names a dependent type. */
22599 if (TREE_CODE (type) == TYPENAME_TYPE)
22600 return true;
22602 /* An alias template specialization can be dependent even if the
22603 resulting type is not. */
22604 if (dependent_alias_template_spec_p (type))
22605 return true;
22607 /* -- a cv-qualified type where the cv-unqualified type is
22608 dependent.
22609 No code is necessary for this bullet; the code below handles
22610 cv-qualified types, and we don't want to strip aliases with
22611 TYPE_MAIN_VARIANT because of DR 1558. */
22612 /* -- a compound type constructed from any dependent type. */
22613 if (TYPE_PTRMEM_P (type))
22614 return (dependent_type_p (TYPE_PTRMEM_CLASS_TYPE (type))
22615 || dependent_type_p (TYPE_PTRMEM_POINTED_TO_TYPE
22616 (type)));
22617 else if (TYPE_PTR_P (type)
22618 || TREE_CODE (type) == REFERENCE_TYPE)
22619 return dependent_type_p (TREE_TYPE (type));
22620 else if (TREE_CODE (type) == FUNCTION_TYPE
22621 || TREE_CODE (type) == METHOD_TYPE)
22623 tree arg_type;
22625 if (dependent_type_p (TREE_TYPE (type)))
22626 return true;
22627 for (arg_type = TYPE_ARG_TYPES (type);
22628 arg_type;
22629 arg_type = TREE_CHAIN (arg_type))
22630 if (dependent_type_p (TREE_VALUE (arg_type)))
22631 return true;
22632 return false;
22634 /* -- an array type constructed from any dependent type or whose
22635 size is specified by a constant expression that is
22636 value-dependent.
22638 We checked for type- and value-dependence of the bounds in
22639 compute_array_index_type, so TYPE_DEPENDENT_P is already set. */
22640 if (TREE_CODE (type) == ARRAY_TYPE)
22642 if (TYPE_DOMAIN (type)
22643 && dependent_type_p (TYPE_DOMAIN (type)))
22644 return true;
22645 return dependent_type_p (TREE_TYPE (type));
22648 /* -- a template-id in which either the template name is a template
22649 parameter ... */
22650 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
22651 return true;
22652 /* ... or any of the template arguments is a dependent type or
22653 an expression that is type-dependent or value-dependent. */
22654 else if (CLASS_TYPE_P (type) && CLASSTYPE_TEMPLATE_INFO (type)
22655 && (any_dependent_template_arguments_p
22656 (INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type)))))
22657 return true;
22659 /* All TYPEOF_TYPEs, DECLTYPE_TYPEs, and UNDERLYING_TYPEs are
22660 dependent; if the argument of the `typeof' expression is not
22661 type-dependent, then it should already been have resolved. */
22662 if (TREE_CODE (type) == TYPEOF_TYPE
22663 || TREE_CODE (type) == DECLTYPE_TYPE
22664 || TREE_CODE (type) == UNDERLYING_TYPE)
22665 return true;
22667 /* A template argument pack is dependent if any of its packed
22668 arguments are. */
22669 if (TREE_CODE (type) == TYPE_ARGUMENT_PACK)
22671 tree args = ARGUMENT_PACK_ARGS (type);
22672 int i, len = TREE_VEC_LENGTH (args);
22673 for (i = 0; i < len; ++i)
22674 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
22675 return true;
22678 /* All TYPE_PACK_EXPANSIONs are dependent, because parameter packs must
22679 be template parameters. */
22680 if (TREE_CODE (type) == TYPE_PACK_EXPANSION)
22681 return true;
22683 if (any_dependent_type_attributes_p (TYPE_ATTRIBUTES (type)))
22684 return true;
22686 /* The standard does not specifically mention types that are local
22687 to template functions or local classes, but they should be
22688 considered dependent too. For example:
22690 template <int I> void f() {
22691 enum E { a = I };
22692 S<sizeof (E)> s;
22695 The size of `E' cannot be known until the value of `I' has been
22696 determined. Therefore, `E' must be considered dependent. */
22697 scope = TYPE_CONTEXT (type);
22698 if (scope && TYPE_P (scope))
22699 return dependent_type_p (scope);
22700 /* Don't use type_dependent_expression_p here, as it can lead
22701 to infinite recursion trying to determine whether a lambda
22702 nested in a lambda is dependent (c++/47687). */
22703 else if (scope && TREE_CODE (scope) == FUNCTION_DECL
22704 && DECL_LANG_SPECIFIC (scope)
22705 && DECL_TEMPLATE_INFO (scope)
22706 && (any_dependent_template_arguments_p
22707 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (scope)))))
22708 return true;
22710 /* Other types are non-dependent. */
22711 return false;
22714 /* Returns TRUE if TYPE is dependent, in the sense of
22715 [temp.dep.type]. Note that a NULL type is considered dependent. */
22717 bool
22718 dependent_type_p (tree type)
22720 /* If there are no template parameters in scope, then there can't be
22721 any dependent types. */
22722 if (!processing_template_decl)
22724 /* If we are not processing a template, then nobody should be
22725 providing us with a dependent type. */
22726 gcc_assert (type);
22727 gcc_assert (TREE_CODE (type) != TEMPLATE_TYPE_PARM || is_auto (type));
22728 return false;
22731 /* If the type is NULL, we have not computed a type for the entity
22732 in question; in that case, the type is dependent. */
22733 if (!type)
22734 return true;
22736 /* Erroneous types can be considered non-dependent. */
22737 if (type == error_mark_node)
22738 return false;
22740 /* If we have not already computed the appropriate value for TYPE,
22741 do so now. */
22742 if (!TYPE_DEPENDENT_P_VALID (type))
22744 TYPE_DEPENDENT_P (type) = dependent_type_p_r (type);
22745 TYPE_DEPENDENT_P_VALID (type) = 1;
22748 return TYPE_DEPENDENT_P (type);
22751 /* Returns TRUE if SCOPE is a dependent scope, in which we can't do any
22752 lookup. In other words, a dependent type that is not the current
22753 instantiation. */
22755 bool
22756 dependent_scope_p (tree scope)
22758 return (scope && TYPE_P (scope) && dependent_type_p (scope)
22759 && !currently_open_class (scope));
22762 /* T is a SCOPE_REF; return whether we need to consider it
22763 instantiation-dependent so that we can check access at instantiation
22764 time even though we know which member it resolves to. */
22766 static bool
22767 instantiation_dependent_scope_ref_p (tree t)
22769 if (DECL_P (TREE_OPERAND (t, 1))
22770 && CLASS_TYPE_P (TREE_OPERAND (t, 0))
22771 && accessible_in_template_p (TREE_OPERAND (t, 0),
22772 TREE_OPERAND (t, 1)))
22773 return false;
22774 else
22775 return true;
22778 /* Returns TRUE if the EXPRESSION is value-dependent, in the sense of
22779 [temp.dep.constexpr]. EXPRESSION is already known to be a constant
22780 expression. */
22782 /* Note that this predicate is not appropriate for general expressions;
22783 only constant expressions (that satisfy potential_constant_expression)
22784 can be tested for value dependence. */
22786 bool
22787 value_dependent_expression_p (tree expression)
22789 if (!processing_template_decl)
22790 return false;
22792 /* A name declared with a dependent type. */
22793 if (DECL_P (expression) && type_dependent_expression_p (expression))
22794 return true;
22796 switch (TREE_CODE (expression))
22798 case BASELINK:
22799 /* A dependent member function of the current instantiation. */
22800 return dependent_type_p (BINFO_TYPE (BASELINK_BINFO (expression)));
22802 case FUNCTION_DECL:
22803 /* A dependent member function of the current instantiation. */
22804 if (DECL_CLASS_SCOPE_P (expression)
22805 && dependent_type_p (DECL_CONTEXT (expression)))
22806 return true;
22807 break;
22809 case IDENTIFIER_NODE:
22810 /* A name that has not been looked up -- must be dependent. */
22811 return true;
22813 case TEMPLATE_PARM_INDEX:
22814 /* A non-type template parm. */
22815 return true;
22817 case CONST_DECL:
22818 /* A non-type template parm. */
22819 if (DECL_TEMPLATE_PARM_P (expression))
22820 return true;
22821 return value_dependent_expression_p (DECL_INITIAL (expression));
22823 case VAR_DECL:
22824 /* A constant with literal type and is initialized
22825 with an expression that is value-dependent.
22827 Note that a non-dependent parenthesized initializer will have
22828 already been replaced with its constant value, so if we see
22829 a TREE_LIST it must be dependent. */
22830 if (DECL_INITIAL (expression)
22831 && decl_constant_var_p (expression)
22832 && (TREE_CODE (DECL_INITIAL (expression)) == TREE_LIST
22833 /* cp_finish_decl doesn't fold reference initializers. */
22834 || TREE_CODE (TREE_TYPE (expression)) == REFERENCE_TYPE
22835 || type_dependent_expression_p (DECL_INITIAL (expression))
22836 || value_dependent_expression_p (DECL_INITIAL (expression))))
22837 return true;
22838 return false;
22840 case DYNAMIC_CAST_EXPR:
22841 case STATIC_CAST_EXPR:
22842 case CONST_CAST_EXPR:
22843 case REINTERPRET_CAST_EXPR:
22844 case CAST_EXPR:
22845 /* These expressions are value-dependent if the type to which
22846 the cast occurs is dependent or the expression being casted
22847 is value-dependent. */
22849 tree type = TREE_TYPE (expression);
22851 if (dependent_type_p (type))
22852 return true;
22854 /* A functional cast has a list of operands. */
22855 expression = TREE_OPERAND (expression, 0);
22856 if (!expression)
22858 /* If there are no operands, it must be an expression such
22859 as "int()". This should not happen for aggregate types
22860 because it would form non-constant expressions. */
22861 gcc_assert (cxx_dialect >= cxx11
22862 || INTEGRAL_OR_ENUMERATION_TYPE_P (type));
22864 return false;
22867 if (TREE_CODE (expression) == TREE_LIST)
22868 return any_value_dependent_elements_p (expression);
22870 return value_dependent_expression_p (expression);
22873 case SIZEOF_EXPR:
22874 if (SIZEOF_EXPR_TYPE_P (expression))
22875 return dependent_type_p (TREE_TYPE (TREE_OPERAND (expression, 0)));
22876 /* FALLTHRU */
22877 case ALIGNOF_EXPR:
22878 case TYPEID_EXPR:
22879 /* A `sizeof' expression is value-dependent if the operand is
22880 type-dependent or is a pack expansion. */
22881 expression = TREE_OPERAND (expression, 0);
22882 if (PACK_EXPANSION_P (expression))
22883 return true;
22884 else if (TYPE_P (expression))
22885 return dependent_type_p (expression);
22886 return instantiation_dependent_uneval_expression_p (expression);
22888 case AT_ENCODE_EXPR:
22889 /* An 'encode' expression is value-dependent if the operand is
22890 type-dependent. */
22891 expression = TREE_OPERAND (expression, 0);
22892 return dependent_type_p (expression);
22894 case NOEXCEPT_EXPR:
22895 expression = TREE_OPERAND (expression, 0);
22896 return instantiation_dependent_uneval_expression_p (expression);
22898 case SCOPE_REF:
22899 /* All instantiation-dependent expressions should also be considered
22900 value-dependent. */
22901 return instantiation_dependent_scope_ref_p (expression);
22903 case COMPONENT_REF:
22904 return (value_dependent_expression_p (TREE_OPERAND (expression, 0))
22905 || value_dependent_expression_p (TREE_OPERAND (expression, 1)));
22907 case NONTYPE_ARGUMENT_PACK:
22908 /* A NONTYPE_ARGUMENT_PACK is value-dependent if any packed argument
22909 is value-dependent. */
22911 tree values = ARGUMENT_PACK_ARGS (expression);
22912 int i, len = TREE_VEC_LENGTH (values);
22914 for (i = 0; i < len; ++i)
22915 if (value_dependent_expression_p (TREE_VEC_ELT (values, i)))
22916 return true;
22918 return false;
22921 case TRAIT_EXPR:
22923 tree type2 = TRAIT_EXPR_TYPE2 (expression);
22924 return (dependent_type_p (TRAIT_EXPR_TYPE1 (expression))
22925 || (type2 ? dependent_type_p (type2) : false));
22928 case MODOP_EXPR:
22929 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
22930 || (value_dependent_expression_p (TREE_OPERAND (expression, 2))));
22932 case ARRAY_REF:
22933 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
22934 || (value_dependent_expression_p (TREE_OPERAND (expression, 1))));
22936 case ADDR_EXPR:
22938 tree op = TREE_OPERAND (expression, 0);
22939 return (value_dependent_expression_p (op)
22940 || has_value_dependent_address (op));
22943 case REQUIRES_EXPR:
22944 /* Treat all requires-expressions as value-dependent so
22945 we don't try to fold them. */
22946 return true;
22948 case TYPE_REQ:
22949 return dependent_type_p (TREE_OPERAND (expression, 0));
22951 case CALL_EXPR:
22953 if (value_dependent_expression_p (CALL_EXPR_FN (expression)))
22954 return true;
22955 tree fn = get_callee_fndecl (expression);
22956 int i, nargs;
22957 nargs = call_expr_nargs (expression);
22958 for (i = 0; i < nargs; ++i)
22960 tree op = CALL_EXPR_ARG (expression, i);
22961 /* In a call to a constexpr member function, look through the
22962 implicit ADDR_EXPR on the object argument so that it doesn't
22963 cause the call to be considered value-dependent. We also
22964 look through it in potential_constant_expression. */
22965 if (i == 0 && fn && DECL_DECLARED_CONSTEXPR_P (fn)
22966 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
22967 && TREE_CODE (op) == ADDR_EXPR)
22968 op = TREE_OPERAND (op, 0);
22969 if (value_dependent_expression_p (op))
22970 return true;
22972 return false;
22975 case TEMPLATE_ID_EXPR:
22976 /* If a TEMPLATE_ID_EXPR involves a dependent name, it will be
22977 type-dependent. */
22978 return type_dependent_expression_p (expression)
22979 || variable_concept_p (TREE_OPERAND (expression, 0));
22981 case CONSTRUCTOR:
22983 unsigned ix;
22984 tree val;
22985 if (dependent_type_p (TREE_TYPE (expression)))
22986 return true;
22987 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), ix, val)
22988 if (value_dependent_expression_p (val))
22989 return true;
22990 return false;
22993 case STMT_EXPR:
22994 /* Treat a GNU statement expression as dependent to avoid crashing
22995 under instantiate_non_dependent_expr; it can't be constant. */
22996 return true;
22998 default:
22999 /* A constant expression is value-dependent if any subexpression is
23000 value-dependent. */
23001 switch (TREE_CODE_CLASS (TREE_CODE (expression)))
23003 case tcc_reference:
23004 case tcc_unary:
23005 case tcc_comparison:
23006 case tcc_binary:
23007 case tcc_expression:
23008 case tcc_vl_exp:
23010 int i, len = cp_tree_operand_length (expression);
23012 for (i = 0; i < len; i++)
23014 tree t = TREE_OPERAND (expression, i);
23016 /* In some cases, some of the operands may be missing.l
23017 (For example, in the case of PREDECREMENT_EXPR, the
23018 amount to increment by may be missing.) That doesn't
23019 make the expression dependent. */
23020 if (t && value_dependent_expression_p (t))
23021 return true;
23024 break;
23025 default:
23026 break;
23028 break;
23031 /* The expression is not value-dependent. */
23032 return false;
23035 /* Returns TRUE if the EXPRESSION is type-dependent, in the sense of
23036 [temp.dep.expr]. Note that an expression with no type is
23037 considered dependent. Other parts of the compiler arrange for an
23038 expression with type-dependent subexpressions to have no type, so
23039 this function doesn't have to be fully recursive. */
23041 bool
23042 type_dependent_expression_p (tree expression)
23044 if (!processing_template_decl)
23045 return false;
23047 if (expression == NULL_TREE || expression == error_mark_node)
23048 return false;
23050 /* An unresolved name is always dependent. */
23051 if (identifier_p (expression)
23052 || TREE_CODE (expression) == USING_DECL
23053 || TREE_CODE (expression) == WILDCARD_DECL)
23054 return true;
23056 /* A fold expression is type-dependent. */
23057 if (TREE_CODE (expression) == UNARY_LEFT_FOLD_EXPR
23058 || TREE_CODE (expression) == UNARY_RIGHT_FOLD_EXPR
23059 || TREE_CODE (expression) == BINARY_LEFT_FOLD_EXPR
23060 || TREE_CODE (expression) == BINARY_RIGHT_FOLD_EXPR)
23061 return true;
23063 /* Some expression forms are never type-dependent. */
23064 if (TREE_CODE (expression) == PSEUDO_DTOR_EXPR
23065 || TREE_CODE (expression) == SIZEOF_EXPR
23066 || TREE_CODE (expression) == ALIGNOF_EXPR
23067 || TREE_CODE (expression) == AT_ENCODE_EXPR
23068 || TREE_CODE (expression) == NOEXCEPT_EXPR
23069 || TREE_CODE (expression) == TRAIT_EXPR
23070 || TREE_CODE (expression) == TYPEID_EXPR
23071 || TREE_CODE (expression) == DELETE_EXPR
23072 || TREE_CODE (expression) == VEC_DELETE_EXPR
23073 || TREE_CODE (expression) == THROW_EXPR
23074 || TREE_CODE (expression) == REQUIRES_EXPR)
23075 return false;
23077 /* The types of these expressions depends only on the type to which
23078 the cast occurs. */
23079 if (TREE_CODE (expression) == DYNAMIC_CAST_EXPR
23080 || TREE_CODE (expression) == STATIC_CAST_EXPR
23081 || TREE_CODE (expression) == CONST_CAST_EXPR
23082 || TREE_CODE (expression) == REINTERPRET_CAST_EXPR
23083 || TREE_CODE (expression) == IMPLICIT_CONV_EXPR
23084 || TREE_CODE (expression) == CAST_EXPR)
23085 return dependent_type_p (TREE_TYPE (expression));
23087 /* The types of these expressions depends only on the type created
23088 by the expression. */
23089 if (TREE_CODE (expression) == NEW_EXPR
23090 || TREE_CODE (expression) == VEC_NEW_EXPR)
23092 /* For NEW_EXPR tree nodes created inside a template, either
23093 the object type itself or a TREE_LIST may appear as the
23094 operand 1. */
23095 tree type = TREE_OPERAND (expression, 1);
23096 if (TREE_CODE (type) == TREE_LIST)
23097 /* This is an array type. We need to check array dimensions
23098 as well. */
23099 return dependent_type_p (TREE_VALUE (TREE_PURPOSE (type)))
23100 || value_dependent_expression_p
23101 (TREE_OPERAND (TREE_VALUE (type), 1));
23102 else
23103 return dependent_type_p (type);
23106 if (TREE_CODE (expression) == SCOPE_REF)
23108 tree scope = TREE_OPERAND (expression, 0);
23109 tree name = TREE_OPERAND (expression, 1);
23111 /* 14.6.2.2 [temp.dep.expr]: An id-expression is type-dependent if it
23112 contains an identifier associated by name lookup with one or more
23113 declarations declared with a dependent type, or...a
23114 nested-name-specifier or qualified-id that names a member of an
23115 unknown specialization. */
23116 return (type_dependent_expression_p (name)
23117 || dependent_scope_p (scope));
23120 if (TREE_CODE (expression) == TEMPLATE_DECL
23121 && !DECL_TEMPLATE_TEMPLATE_PARM_P (expression))
23122 return uses_outer_template_parms (expression);
23124 if (TREE_CODE (expression) == STMT_EXPR)
23125 expression = stmt_expr_value_expr (expression);
23127 if (BRACE_ENCLOSED_INITIALIZER_P (expression))
23129 tree elt;
23130 unsigned i;
23132 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), i, elt)
23134 if (type_dependent_expression_p (elt))
23135 return true;
23137 return false;
23140 /* A static data member of the current instantiation with incomplete
23141 array type is type-dependent, as the definition and specializations
23142 can have different bounds. */
23143 if (VAR_P (expression)
23144 && DECL_CLASS_SCOPE_P (expression)
23145 && dependent_type_p (DECL_CONTEXT (expression))
23146 && VAR_HAD_UNKNOWN_BOUND (expression))
23147 return true;
23149 /* An array of unknown bound depending on a variadic parameter, eg:
23151 template<typename... Args>
23152 void foo (Args... args)
23154 int arr[] = { args... };
23157 template<int... vals>
23158 void bar ()
23160 int arr[] = { vals... };
23163 If the array has no length and has an initializer, it must be that
23164 we couldn't determine its length in cp_complete_array_type because
23165 it is dependent. */
23166 if (VAR_P (expression)
23167 && TREE_CODE (TREE_TYPE (expression)) == ARRAY_TYPE
23168 && !TYPE_DOMAIN (TREE_TYPE (expression))
23169 && DECL_INITIAL (expression))
23170 return true;
23172 /* A function or variable template-id is type-dependent if it has any
23173 dependent template arguments. Note that we only consider the innermost
23174 template arguments here, since those are the ones that come from the
23175 template-id; the template arguments for the enclosing class do not make it
23176 type-dependent, they only make a member function value-dependent. */
23177 if (VAR_OR_FUNCTION_DECL_P (expression)
23178 && DECL_LANG_SPECIFIC (expression)
23179 && DECL_TEMPLATE_INFO (expression)
23180 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (expression))
23181 && (any_dependent_template_arguments_p
23182 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (expression)))))
23183 return true;
23185 /* Always dependent, on the number of arguments if nothing else. */
23186 if (TREE_CODE (expression) == EXPR_PACK_EXPANSION)
23187 return true;
23189 if (TREE_TYPE (expression) == unknown_type_node)
23191 if (TREE_CODE (expression) == ADDR_EXPR)
23192 return type_dependent_expression_p (TREE_OPERAND (expression, 0));
23193 if (TREE_CODE (expression) == COMPONENT_REF
23194 || TREE_CODE (expression) == OFFSET_REF)
23196 if (type_dependent_expression_p (TREE_OPERAND (expression, 0)))
23197 return true;
23198 expression = TREE_OPERAND (expression, 1);
23199 if (identifier_p (expression))
23200 return false;
23202 /* SCOPE_REF with non-null TREE_TYPE is always non-dependent. */
23203 if (TREE_CODE (expression) == SCOPE_REF)
23204 return false;
23206 if (BASELINK_P (expression))
23208 if (BASELINK_OPTYPE (expression)
23209 && dependent_type_p (BASELINK_OPTYPE (expression)))
23210 return true;
23211 expression = BASELINK_FUNCTIONS (expression);
23214 if (TREE_CODE (expression) == TEMPLATE_ID_EXPR)
23216 if (any_dependent_template_arguments_p
23217 (TREE_OPERAND (expression, 1)))
23218 return true;
23219 expression = TREE_OPERAND (expression, 0);
23220 if (identifier_p (expression))
23221 return true;
23224 gcc_assert (TREE_CODE (expression) == OVERLOAD
23225 || TREE_CODE (expression) == FUNCTION_DECL);
23227 while (expression)
23229 if (type_dependent_expression_p (OVL_CURRENT (expression)))
23230 return true;
23231 expression = OVL_NEXT (expression);
23233 return false;
23236 gcc_assert (TREE_CODE (expression) != TYPE_DECL);
23238 /* Dependent type attributes might not have made it from the decl to
23239 the type yet. */
23240 if (DECL_P (expression)
23241 && any_dependent_type_attributes_p (DECL_ATTRIBUTES (expression)))
23242 return true;
23244 return (dependent_type_p (TREE_TYPE (expression)));
23247 /* [temp.dep.expr]/5: A class member access expression (5.2.5) is
23248 type-dependent if the expression refers to a member of the current
23249 instantiation and the type of the referenced member is dependent, or the
23250 class member access expression refers to a member of an unknown
23251 specialization.
23253 This function returns true if the OBJECT in such a class member access
23254 expression is of an unknown specialization. */
23256 bool
23257 type_dependent_object_expression_p (tree object)
23259 tree scope = TREE_TYPE (object);
23260 return (!scope || dependent_scope_p (scope));
23263 /* walk_tree callback function for instantiation_dependent_expression_p,
23264 below. Returns non-zero if a dependent subexpression is found. */
23266 static tree
23267 instantiation_dependent_r (tree *tp, int *walk_subtrees,
23268 void * /*data*/)
23270 if (TYPE_P (*tp))
23272 /* We don't have to worry about decltype currently because decltype
23273 of an instantiation-dependent expr is a dependent type. This
23274 might change depending on the resolution of DR 1172. */
23275 *walk_subtrees = false;
23276 return NULL_TREE;
23278 enum tree_code code = TREE_CODE (*tp);
23279 switch (code)
23281 /* Don't treat an argument list as dependent just because it has no
23282 TREE_TYPE. */
23283 case TREE_LIST:
23284 case TREE_VEC:
23285 return NULL_TREE;
23287 case TEMPLATE_PARM_INDEX:
23288 return *tp;
23290 /* Handle expressions with type operands. */
23291 case SIZEOF_EXPR:
23292 case ALIGNOF_EXPR:
23293 case TYPEID_EXPR:
23294 case AT_ENCODE_EXPR:
23296 tree op = TREE_OPERAND (*tp, 0);
23297 if (code == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (*tp))
23298 op = TREE_TYPE (op);
23299 if (TYPE_P (op))
23301 if (dependent_type_p (op))
23302 return *tp;
23303 else
23305 *walk_subtrees = false;
23306 return NULL_TREE;
23309 break;
23312 case COMPONENT_REF:
23313 if (identifier_p (TREE_OPERAND (*tp, 1)))
23314 /* In a template, finish_class_member_access_expr creates a
23315 COMPONENT_REF with an IDENTIFIER_NODE for op1 even if it isn't
23316 type-dependent, so that we can check access control at
23317 instantiation time (PR 42277). See also Core issue 1273. */
23318 return *tp;
23319 break;
23321 case SCOPE_REF:
23322 if (instantiation_dependent_scope_ref_p (*tp))
23323 return *tp;
23324 else
23325 break;
23327 /* Treat statement-expressions as dependent. */
23328 case BIND_EXPR:
23329 return *tp;
23331 /* Treat requires-expressions as dependent. */
23332 case REQUIRES_EXPR:
23333 return *tp;
23335 case CALL_EXPR:
23336 /* Treat calls to function concepts as dependent. */
23337 if (function_concept_check_p (*tp))
23338 return *tp;
23339 break;
23341 case TEMPLATE_ID_EXPR:
23342 /* And variable concepts. */
23343 if (variable_concept_p (TREE_OPERAND (*tp, 0)))
23344 return *tp;
23345 break;
23347 default:
23348 break;
23351 if (type_dependent_expression_p (*tp))
23352 return *tp;
23353 else
23354 return NULL_TREE;
23357 /* Returns TRUE if the EXPRESSION is instantiation-dependent, in the
23358 sense defined by the ABI:
23360 "An expression is instantiation-dependent if it is type-dependent
23361 or value-dependent, or it has a subexpression that is type-dependent
23362 or value-dependent."
23364 Except don't actually check value-dependence for unevaluated expressions,
23365 because in sizeof(i) we don't care about the value of i. Checking
23366 type-dependence will in turn check value-dependence of array bounds/template
23367 arguments as needed. */
23369 bool
23370 instantiation_dependent_uneval_expression_p (tree expression)
23372 tree result;
23374 if (!processing_template_decl)
23375 return false;
23377 if (expression == error_mark_node)
23378 return false;
23380 result = cp_walk_tree_without_duplicates (&expression,
23381 instantiation_dependent_r, NULL);
23382 return result != NULL_TREE;
23385 /* As above, but also check value-dependence of the expression as a whole. */
23387 bool
23388 instantiation_dependent_expression_p (tree expression)
23390 return (instantiation_dependent_uneval_expression_p (expression)
23391 || value_dependent_expression_p (expression));
23394 /* Like type_dependent_expression_p, but it also works while not processing
23395 a template definition, i.e. during substitution or mangling. */
23397 bool
23398 type_dependent_expression_p_push (tree expr)
23400 bool b;
23401 ++processing_template_decl;
23402 b = type_dependent_expression_p (expr);
23403 --processing_template_decl;
23404 return b;
23407 /* Returns TRUE if ARGS contains a type-dependent expression. */
23409 bool
23410 any_type_dependent_arguments_p (const vec<tree, va_gc> *args)
23412 unsigned int i;
23413 tree arg;
23415 FOR_EACH_VEC_SAFE_ELT (args, i, arg)
23417 if (type_dependent_expression_p (arg))
23418 return true;
23420 return false;
23423 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
23424 expressions) contains any type-dependent expressions. */
23426 bool
23427 any_type_dependent_elements_p (const_tree list)
23429 for (; list; list = TREE_CHAIN (list))
23430 if (type_dependent_expression_p (TREE_VALUE (list)))
23431 return true;
23433 return false;
23436 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
23437 expressions) contains any value-dependent expressions. */
23439 bool
23440 any_value_dependent_elements_p (const_tree list)
23442 for (; list; list = TREE_CHAIN (list))
23443 if (value_dependent_expression_p (TREE_VALUE (list)))
23444 return true;
23446 return false;
23449 /* Returns TRUE if the ARG (a template argument) is dependent. */
23451 bool
23452 dependent_template_arg_p (tree arg)
23454 if (!processing_template_decl)
23455 return false;
23457 /* Assume a template argument that was wrongly written by the user
23458 is dependent. This is consistent with what
23459 any_dependent_template_arguments_p [that calls this function]
23460 does. */
23461 if (!arg || arg == error_mark_node)
23462 return true;
23464 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
23465 arg = ARGUMENT_PACK_SELECT_ARG (arg);
23467 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
23468 return true;
23469 if (TREE_CODE (arg) == TEMPLATE_DECL)
23471 if (DECL_TEMPLATE_PARM_P (arg))
23472 return true;
23473 /* A member template of a dependent class is not necessarily
23474 type-dependent, but it is a dependent template argument because it
23475 will be a member of an unknown specialization to that template. */
23476 tree scope = CP_DECL_CONTEXT (arg);
23477 return TYPE_P (scope) && dependent_type_p (scope);
23479 else if (ARGUMENT_PACK_P (arg))
23481 tree args = ARGUMENT_PACK_ARGS (arg);
23482 int i, len = TREE_VEC_LENGTH (args);
23483 for (i = 0; i < len; ++i)
23485 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
23486 return true;
23489 return false;
23491 else if (TYPE_P (arg))
23492 return dependent_type_p (arg);
23493 else
23494 return (type_dependent_expression_p (arg)
23495 || value_dependent_expression_p (arg));
23498 /* Returns true if ARGS (a collection of template arguments) contains
23499 any types that require structural equality testing. */
23501 bool
23502 any_template_arguments_need_structural_equality_p (tree args)
23504 int i;
23505 int j;
23507 if (!args)
23508 return false;
23509 if (args == error_mark_node)
23510 return true;
23512 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
23514 tree level = TMPL_ARGS_LEVEL (args, i + 1);
23515 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
23517 tree arg = TREE_VEC_ELT (level, j);
23518 tree packed_args = NULL_TREE;
23519 int k, len = 1;
23521 if (ARGUMENT_PACK_P (arg))
23523 /* Look inside the argument pack. */
23524 packed_args = ARGUMENT_PACK_ARGS (arg);
23525 len = TREE_VEC_LENGTH (packed_args);
23528 for (k = 0; k < len; ++k)
23530 if (packed_args)
23531 arg = TREE_VEC_ELT (packed_args, k);
23533 if (error_operand_p (arg))
23534 return true;
23535 else if (TREE_CODE (arg) == TEMPLATE_DECL)
23536 continue;
23537 else if (TYPE_P (arg) && TYPE_STRUCTURAL_EQUALITY_P (arg))
23538 return true;
23539 else if (!TYPE_P (arg) && TREE_TYPE (arg)
23540 && TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (arg)))
23541 return true;
23546 return false;
23549 /* Returns true if ARGS (a collection of template arguments) contains
23550 any dependent arguments. */
23552 bool
23553 any_dependent_template_arguments_p (const_tree args)
23555 int i;
23556 int j;
23558 if (!args)
23559 return false;
23560 if (args == error_mark_node)
23561 return true;
23563 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
23565 const_tree level = TMPL_ARGS_LEVEL (args, i + 1);
23566 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
23567 if (dependent_template_arg_p (TREE_VEC_ELT (level, j)))
23568 return true;
23571 return false;
23574 /* Returns TRUE if the template TMPL is type-dependent. */
23576 bool
23577 dependent_template_p (tree tmpl)
23579 if (TREE_CODE (tmpl) == OVERLOAD)
23581 while (tmpl)
23583 if (dependent_template_p (OVL_CURRENT (tmpl)))
23584 return true;
23585 tmpl = OVL_NEXT (tmpl);
23587 return false;
23590 /* Template template parameters are dependent. */
23591 if (DECL_TEMPLATE_TEMPLATE_PARM_P (tmpl)
23592 || TREE_CODE (tmpl) == TEMPLATE_TEMPLATE_PARM)
23593 return true;
23594 /* So are names that have not been looked up. */
23595 if (TREE_CODE (tmpl) == SCOPE_REF || identifier_p (tmpl))
23596 return true;
23597 return false;
23600 /* Returns TRUE if the specialization TMPL<ARGS> is dependent. */
23602 bool
23603 dependent_template_id_p (tree tmpl, tree args)
23605 return (dependent_template_p (tmpl)
23606 || any_dependent_template_arguments_p (args));
23609 /* Returns TRUE if OMP_FOR with DECLV, INITV, CONDV and INCRV vectors
23610 are dependent. */
23612 bool
23613 dependent_omp_for_p (tree declv, tree initv, tree condv, tree incrv)
23615 int i;
23617 if (!processing_template_decl)
23618 return false;
23620 for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
23622 tree decl = TREE_VEC_ELT (declv, i);
23623 tree init = TREE_VEC_ELT (initv, i);
23624 tree cond = TREE_VEC_ELT (condv, i);
23625 tree incr = TREE_VEC_ELT (incrv, i);
23627 if (type_dependent_expression_p (decl)
23628 || TREE_CODE (decl) == SCOPE_REF)
23629 return true;
23631 if (init && type_dependent_expression_p (init))
23632 return true;
23634 if (type_dependent_expression_p (cond))
23635 return true;
23637 if (COMPARISON_CLASS_P (cond)
23638 && (type_dependent_expression_p (TREE_OPERAND (cond, 0))
23639 || type_dependent_expression_p (TREE_OPERAND (cond, 1))))
23640 return true;
23642 if (TREE_CODE (incr) == MODOP_EXPR)
23644 if (type_dependent_expression_p (TREE_OPERAND (incr, 0))
23645 || type_dependent_expression_p (TREE_OPERAND (incr, 2)))
23646 return true;
23648 else if (type_dependent_expression_p (incr))
23649 return true;
23650 else if (TREE_CODE (incr) == MODIFY_EXPR)
23652 if (type_dependent_expression_p (TREE_OPERAND (incr, 0)))
23653 return true;
23654 else if (BINARY_CLASS_P (TREE_OPERAND (incr, 1)))
23656 tree t = TREE_OPERAND (incr, 1);
23657 if (type_dependent_expression_p (TREE_OPERAND (t, 0))
23658 || type_dependent_expression_p (TREE_OPERAND (t, 1)))
23659 return true;
23664 return false;
23667 /* TYPE is a TYPENAME_TYPE. Returns the ordinary TYPE to which the
23668 TYPENAME_TYPE corresponds. Returns the original TYPENAME_TYPE if
23669 no such TYPE can be found. Note that this function peers inside
23670 uninstantiated templates and therefore should be used only in
23671 extremely limited situations. ONLY_CURRENT_P restricts this
23672 peering to the currently open classes hierarchy (which is required
23673 when comparing types). */
23675 tree
23676 resolve_typename_type (tree type, bool only_current_p)
23678 tree scope;
23679 tree name;
23680 tree decl;
23681 int quals;
23682 tree pushed_scope;
23683 tree result;
23685 gcc_assert (TREE_CODE (type) == TYPENAME_TYPE);
23687 scope = TYPE_CONTEXT (type);
23688 /* Usually the non-qualified identifier of a TYPENAME_TYPE is
23689 TYPE_IDENTIFIER (type). But when 'type' is a typedef variant of
23690 a TYPENAME_TYPE node, then TYPE_NAME (type) is set to the TYPE_DECL representing
23691 the typedef. In that case TYPE_IDENTIFIER (type) is not the non-qualified
23692 identifier of the TYPENAME_TYPE anymore.
23693 So by getting the TYPE_IDENTIFIER of the _main declaration_ of the
23694 TYPENAME_TYPE instead, we avoid messing up with a possible
23695 typedef variant case. */
23696 name = TYPE_IDENTIFIER (TYPE_MAIN_VARIANT (type));
23698 /* If the SCOPE is itself a TYPENAME_TYPE, then we need to resolve
23699 it first before we can figure out what NAME refers to. */
23700 if (TREE_CODE (scope) == TYPENAME_TYPE)
23702 if (TYPENAME_IS_RESOLVING_P (scope))
23703 /* Given a class template A with a dependent base with nested type C,
23704 typedef typename A::C::C C will land us here, as trying to resolve
23705 the initial A::C leads to the local C typedef, which leads back to
23706 A::C::C. So we break the recursion now. */
23707 return type;
23708 else
23709 scope = resolve_typename_type (scope, only_current_p);
23711 /* If we don't know what SCOPE refers to, then we cannot resolve the
23712 TYPENAME_TYPE. */
23713 if (!CLASS_TYPE_P (scope))
23714 return type;
23715 /* If this is a typedef, we don't want to look inside (c++/11987). */
23716 if (typedef_variant_p (type))
23717 return type;
23718 /* If SCOPE isn't the template itself, it will not have a valid
23719 TYPE_FIELDS list. */
23720 if (same_type_p (scope, CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope)))
23721 /* scope is either the template itself or a compatible instantiation
23722 like X<T>, so look up the name in the original template. */
23723 scope = CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope);
23724 /* We shouldn't have built a TYPENAME_TYPE with a non-dependent scope. */
23725 gcc_checking_assert (uses_template_parms (scope));
23726 /* If scope has no fields, it can't be a current instantiation. Check this
23727 before currently_open_class to avoid infinite recursion (71515). */
23728 if (!TYPE_FIELDS (scope))
23729 return type;
23730 /* If the SCOPE is not the current instantiation, there's no reason
23731 to look inside it. */
23732 if (only_current_p && !currently_open_class (scope))
23733 return type;
23734 /* Enter the SCOPE so that name lookup will be resolved as if we
23735 were in the class definition. In particular, SCOPE will no
23736 longer be considered a dependent type. */
23737 pushed_scope = push_scope (scope);
23738 /* Look up the declaration. */
23739 decl = lookup_member (scope, name, /*protect=*/0, /*want_type=*/true,
23740 tf_warning_or_error);
23742 result = NULL_TREE;
23744 /* For a TYPENAME_TYPE like "typename X::template Y<T>", we want to
23745 find a TEMPLATE_DECL. Otherwise, we want to find a TYPE_DECL. */
23746 if (!decl)
23747 /*nop*/;
23748 else if (identifier_p (TYPENAME_TYPE_FULLNAME (type))
23749 && TREE_CODE (decl) == TYPE_DECL)
23751 result = TREE_TYPE (decl);
23752 if (result == error_mark_node)
23753 result = NULL_TREE;
23755 else if (TREE_CODE (TYPENAME_TYPE_FULLNAME (type)) == TEMPLATE_ID_EXPR
23756 && DECL_CLASS_TEMPLATE_P (decl))
23758 tree tmpl;
23759 tree args;
23760 /* Obtain the template and the arguments. */
23761 tmpl = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 0);
23762 args = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 1);
23763 /* Instantiate the template. */
23764 result = lookup_template_class (tmpl, args, NULL_TREE, NULL_TREE,
23765 /*entering_scope=*/0,
23766 tf_error | tf_user);
23767 if (result == error_mark_node)
23768 result = NULL_TREE;
23771 /* Leave the SCOPE. */
23772 if (pushed_scope)
23773 pop_scope (pushed_scope);
23775 /* If we failed to resolve it, return the original typename. */
23776 if (!result)
23777 return type;
23779 /* If lookup found a typename type, resolve that too. */
23780 if (TREE_CODE (result) == TYPENAME_TYPE && !TYPENAME_IS_RESOLVING_P (result))
23782 /* Ill-formed programs can cause infinite recursion here, so we
23783 must catch that. */
23784 TYPENAME_IS_RESOLVING_P (result) = 1;
23785 result = resolve_typename_type (result, only_current_p);
23786 TYPENAME_IS_RESOLVING_P (result) = 0;
23789 /* Qualify the resulting type. */
23790 quals = cp_type_quals (type);
23791 if (quals)
23792 result = cp_build_qualified_type (result, cp_type_quals (result) | quals);
23794 return result;
23797 /* EXPR is an expression which is not type-dependent. Return a proxy
23798 for EXPR that can be used to compute the types of larger
23799 expressions containing EXPR. */
23801 tree
23802 build_non_dependent_expr (tree expr)
23804 tree inner_expr;
23806 /* When checking, try to get a constant value for all non-dependent
23807 expressions in order to expose bugs in *_dependent_expression_p
23808 and constexpr. This can affect code generation, see PR70704, so
23809 only do this for -fchecking=2. */
23810 if (flag_checking > 1
23811 && cxx_dialect >= cxx11
23812 /* Don't do this during nsdmi parsing as it can lead to
23813 unexpected recursive instantiations. */
23814 && !parsing_nsdmi ()
23815 /* Don't do this during concept expansion either and for
23816 the same reason. */
23817 && !expanding_concept ())
23818 fold_non_dependent_expr (expr);
23820 /* Preserve OVERLOADs; the functions must be available to resolve
23821 types. */
23822 inner_expr = expr;
23823 if (TREE_CODE (inner_expr) == STMT_EXPR)
23824 inner_expr = stmt_expr_value_expr (inner_expr);
23825 if (TREE_CODE (inner_expr) == ADDR_EXPR)
23826 inner_expr = TREE_OPERAND (inner_expr, 0);
23827 if (TREE_CODE (inner_expr) == COMPONENT_REF)
23828 inner_expr = TREE_OPERAND (inner_expr, 1);
23829 if (is_overloaded_fn (inner_expr)
23830 || TREE_CODE (inner_expr) == OFFSET_REF)
23831 return expr;
23832 /* There is no need to return a proxy for a variable. */
23833 if (VAR_P (expr))
23834 return expr;
23835 /* Preserve string constants; conversions from string constants to
23836 "char *" are allowed, even though normally a "const char *"
23837 cannot be used to initialize a "char *". */
23838 if (TREE_CODE (expr) == STRING_CST)
23839 return expr;
23840 /* Preserve void and arithmetic constants, as an optimization -- there is no
23841 reason to create a new node. */
23842 if (TREE_CODE (expr) == VOID_CST
23843 || TREE_CODE (expr) == INTEGER_CST
23844 || TREE_CODE (expr) == REAL_CST)
23845 return expr;
23846 /* Preserve THROW_EXPRs -- all throw-expressions have type "void".
23847 There is at least one place where we want to know that a
23848 particular expression is a throw-expression: when checking a ?:
23849 expression, there are special rules if the second or third
23850 argument is a throw-expression. */
23851 if (TREE_CODE (expr) == THROW_EXPR)
23852 return expr;
23854 /* Don't wrap an initializer list, we need to be able to look inside. */
23855 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
23856 return expr;
23858 /* Don't wrap a dummy object, we need to be able to test for it. */
23859 if (is_dummy_object (expr))
23860 return expr;
23862 if (TREE_CODE (expr) == COND_EXPR)
23863 return build3 (COND_EXPR,
23864 TREE_TYPE (expr),
23865 TREE_OPERAND (expr, 0),
23866 (TREE_OPERAND (expr, 1)
23867 ? build_non_dependent_expr (TREE_OPERAND (expr, 1))
23868 : build_non_dependent_expr (TREE_OPERAND (expr, 0))),
23869 build_non_dependent_expr (TREE_OPERAND (expr, 2)));
23870 if (TREE_CODE (expr) == COMPOUND_EXPR
23871 && !COMPOUND_EXPR_OVERLOADED (expr))
23872 return build2 (COMPOUND_EXPR,
23873 TREE_TYPE (expr),
23874 TREE_OPERAND (expr, 0),
23875 build_non_dependent_expr (TREE_OPERAND (expr, 1)));
23877 /* If the type is unknown, it can't really be non-dependent */
23878 gcc_assert (TREE_TYPE (expr) != unknown_type_node);
23880 /* Otherwise, build a NON_DEPENDENT_EXPR. */
23881 return build1 (NON_DEPENDENT_EXPR, TREE_TYPE (expr), expr);
23884 /* ARGS is a vector of expressions as arguments to a function call.
23885 Replace the arguments with equivalent non-dependent expressions.
23886 This modifies ARGS in place. */
23888 void
23889 make_args_non_dependent (vec<tree, va_gc> *args)
23891 unsigned int ix;
23892 tree arg;
23894 FOR_EACH_VEC_SAFE_ELT (args, ix, arg)
23896 tree newarg = build_non_dependent_expr (arg);
23897 if (newarg != arg)
23898 (*args)[ix] = newarg;
23902 /* Returns a type which represents 'auto' or 'decltype(auto)'. We use a
23903 TEMPLATE_TYPE_PARM with a level one deeper than the actual template
23904 parms. If set_canonical is true, we set TYPE_CANONICAL on it. */
23906 static tree
23907 make_auto_1 (tree name, bool set_canonical)
23909 tree au = cxx_make_type (TEMPLATE_TYPE_PARM);
23910 TYPE_NAME (au) = build_decl (input_location,
23911 TYPE_DECL, name, au);
23912 TYPE_STUB_DECL (au) = TYPE_NAME (au);
23913 TEMPLATE_TYPE_PARM_INDEX (au) = build_template_parm_index
23914 (0, processing_template_decl + 1, processing_template_decl + 1,
23915 TYPE_NAME (au), NULL_TREE);
23916 if (set_canonical)
23917 TYPE_CANONICAL (au) = canonical_type_parameter (au);
23918 DECL_ARTIFICIAL (TYPE_NAME (au)) = 1;
23919 SET_DECL_TEMPLATE_PARM_P (TYPE_NAME (au));
23921 return au;
23924 tree
23925 make_decltype_auto (void)
23927 return make_auto_1 (get_identifier ("decltype(auto)"), true);
23930 tree
23931 make_auto (void)
23933 return make_auto_1 (get_identifier ("auto"), true);
23936 /* Make a "constrained auto" type-specifier. This is an
23937 auto type with constraints that must be associated after
23938 deduction. The constraint is formed from the given
23939 CONC and its optional sequence of arguments, which are
23940 non-null if written as partial-concept-id. */
23942 tree
23943 make_constrained_auto (tree con, tree args)
23945 tree type = make_auto_1 (get_identifier ("auto"), false);
23947 /* Build the constraint. */
23948 tree tmpl = DECL_TI_TEMPLATE (con);
23949 tree expr;
23950 if (VAR_P (con))
23951 expr = build_concept_check (tmpl, type, args);
23952 else
23953 expr = build_concept_check (build_overload (tmpl, NULL_TREE), type, args);
23955 tree constr = normalize_expression (expr);
23956 PLACEHOLDER_TYPE_CONSTRAINTS (type) = constr;
23958 /* Our canonical type depends on the constraint. */
23959 TYPE_CANONICAL (type) = canonical_type_parameter (type);
23961 /* Attach the constraint to the type declaration. */
23962 tree decl = TYPE_NAME (type);
23963 return decl;
23966 /* Given type ARG, return std::initializer_list<ARG>. */
23968 static tree
23969 listify (tree arg)
23971 tree std_init_list = namespace_binding
23972 (get_identifier ("initializer_list"), std_node);
23973 tree argvec;
23974 if (!std_init_list || !DECL_CLASS_TEMPLATE_P (std_init_list))
23976 error ("deducing from brace-enclosed initializer list requires "
23977 "#include <initializer_list>");
23978 return error_mark_node;
23980 argvec = make_tree_vec (1);
23981 TREE_VEC_ELT (argvec, 0) = arg;
23982 return lookup_template_class (std_init_list, argvec, NULL_TREE,
23983 NULL_TREE, 0, tf_warning_or_error);
23986 /* Replace auto in TYPE with std::initializer_list<auto>. */
23988 static tree
23989 listify_autos (tree type, tree auto_node)
23991 tree init_auto = listify (auto_node);
23992 tree argvec = make_tree_vec (1);
23993 TREE_VEC_ELT (argvec, 0) = init_auto;
23994 if (processing_template_decl)
23995 argvec = add_to_template_args (current_template_args (), argvec);
23996 return tsubst (type, argvec, tf_warning_or_error, NULL_TREE);
23999 /* Hash traits for hashing possibly constrained 'auto'
24000 TEMPLATE_TYPE_PARMs for use by do_auto_deduction. */
24002 struct auto_hash : default_hash_traits<tree>
24004 static inline hashval_t hash (tree);
24005 static inline bool equal (tree, tree);
24008 /* Hash the 'auto' T. */
24010 inline hashval_t
24011 auto_hash::hash (tree t)
24013 if (tree c = PLACEHOLDER_TYPE_CONSTRAINTS (t))
24014 /* Matching constrained-type-specifiers denote the same template
24015 parameter, so hash the constraint. */
24016 return hash_placeholder_constraint (c);
24017 else
24018 /* But unconstrained autos are all separate, so just hash the pointer. */
24019 return iterative_hash_object (t, 0);
24022 /* Compare two 'auto's. */
24024 inline bool
24025 auto_hash::equal (tree t1, tree t2)
24027 if (t1 == t2)
24028 return true;
24030 tree c1 = PLACEHOLDER_TYPE_CONSTRAINTS (t1);
24031 tree c2 = PLACEHOLDER_TYPE_CONSTRAINTS (t2);
24033 /* Two unconstrained autos are distinct. */
24034 if (!c1 || !c2)
24035 return false;
24037 return equivalent_placeholder_constraints (c1, c2);
24040 /* for_each_template_parm callback for extract_autos: if t is a (possibly
24041 constrained) auto, add it to the vector. */
24043 static int
24044 extract_autos_r (tree t, void *data)
24046 hash_table<auto_hash> &hash = *(hash_table<auto_hash>*)data;
24047 if (is_auto_or_concept (t))
24049 /* All the autos were built with index 0; fix that up now. */
24050 tree *p = hash.find_slot (t, INSERT);
24051 unsigned idx;
24052 if (*p)
24053 /* If this is a repeated constrained-type-specifier, use the index we
24054 chose before. */
24055 idx = TEMPLATE_PARM_IDX (TEMPLATE_TYPE_PARM_INDEX (*p));
24056 else
24058 /* Otherwise this is new, so use the current count. */
24059 *p = t;
24060 idx = hash.elements () - 1;
24062 TEMPLATE_PARM_IDX (TEMPLATE_TYPE_PARM_INDEX (t)) = idx;
24065 /* Always keep walking. */
24066 return 0;
24069 /* Return a TREE_VEC of the 'auto's used in type under the Concepts TS, which
24070 says they can appear anywhere in the type. */
24072 static tree
24073 extract_autos (tree type)
24075 hash_set<tree> visited;
24076 hash_table<auto_hash> hash (2);
24078 for_each_template_parm (type, extract_autos_r, &hash, &visited, true);
24080 tree tree_vec = make_tree_vec (hash.elements());
24081 for (hash_table<auto_hash>::iterator iter = hash.begin();
24082 iter != hash.end(); ++iter)
24084 tree elt = *iter;
24085 unsigned i = TEMPLATE_PARM_IDX (TEMPLATE_TYPE_PARM_INDEX (elt));
24086 TREE_VEC_ELT (tree_vec, i)
24087 = build_tree_list (NULL_TREE, TYPE_NAME (elt));
24090 return tree_vec;
24093 /* Replace occurrences of 'auto' in TYPE with the appropriate type deduced
24094 from INIT. AUTO_NODE is the TEMPLATE_TYPE_PARM used for 'auto' in TYPE. */
24096 tree
24097 do_auto_deduction (tree type, tree init, tree auto_node)
24099 return do_auto_deduction (type, init, auto_node,
24100 tf_warning_or_error,
24101 adc_unspecified);
24104 /* Replace occurrences of 'auto' in TYPE with the appropriate type deduced
24105 from INIT. AUTO_NODE is the TEMPLATE_TYPE_PARM used for 'auto' in TYPE.
24106 The CONTEXT determines the context in which auto deduction is performed
24107 and is used to control error diagnostics.
24109 For partial-concept-ids, extra args may be appended to the list of deduced
24110 template arguments prior to determining constraint satisfaction. */
24112 tree
24113 do_auto_deduction (tree type, tree init, tree auto_node,
24114 tsubst_flags_t complain, auto_deduction_context context)
24116 tree targs;
24118 if (init == error_mark_node)
24119 return error_mark_node;
24121 if (type_dependent_expression_p (init))
24122 /* Defining a subset of type-dependent expressions that we can deduce
24123 from ahead of time isn't worth the trouble. */
24124 return type;
24126 /* [dcl.spec.auto]: Obtain P from T by replacing the occurrences of auto
24127 with either a new invented type template parameter U or, if the
24128 initializer is a braced-init-list (8.5.4), with
24129 std::initializer_list<U>. */
24130 if (BRACE_ENCLOSED_INITIALIZER_P (init))
24132 if (!DIRECT_LIST_INIT_P (init))
24133 type = listify_autos (type, auto_node);
24134 else if (CONSTRUCTOR_NELTS (init) == 1)
24135 init = CONSTRUCTOR_ELT (init, 0)->value;
24136 else
24138 if (complain & tf_warning_or_error)
24140 if (permerror (input_location, "direct-list-initialization of "
24141 "%<auto%> requires exactly one element"))
24142 inform (input_location,
24143 "for deduction to %<std::initializer_list%>, use copy-"
24144 "list-initialization (i.e. add %<=%> before the %<{%>)");
24146 type = listify_autos (type, auto_node);
24150 if (type == error_mark_node)
24151 return error_mark_node;
24153 init = resolve_nondeduced_context (init, complain);
24155 if (AUTO_IS_DECLTYPE (auto_node))
24157 bool id = (DECL_P (init)
24158 || ((TREE_CODE (init) == COMPONENT_REF
24159 || TREE_CODE (init) == SCOPE_REF)
24160 && !REF_PARENTHESIZED_P (init)));
24161 targs = make_tree_vec (1);
24162 TREE_VEC_ELT (targs, 0)
24163 = finish_decltype_type (init, id, tf_warning_or_error);
24164 if (type != auto_node)
24166 if (complain & tf_error)
24167 error ("%qT as type rather than plain %<decltype(auto)%>", type);
24168 return error_mark_node;
24171 else
24173 tree parms = build_tree_list (NULL_TREE, type);
24174 tree tparms;
24176 if (flag_concepts)
24177 tparms = extract_autos (type);
24178 else
24180 tparms = make_tree_vec (1);
24181 TREE_VEC_ELT (tparms, 0)
24182 = build_tree_list (NULL_TREE, TYPE_NAME (auto_node));
24185 targs = make_tree_vec (TREE_VEC_LENGTH (tparms));
24186 int val = type_unification_real (tparms, targs, parms, &init, 1, 0,
24187 DEDUCE_CALL, LOOKUP_NORMAL,
24188 NULL, /*explain_p=*/false);
24189 if (val > 0)
24191 if (processing_template_decl)
24192 /* Try again at instantiation time. */
24193 return type;
24194 if (type && type != error_mark_node
24195 && (complain & tf_error))
24196 /* If type is error_mark_node a diagnostic must have been
24197 emitted by now. Also, having a mention to '<type error>'
24198 in the diagnostic is not really useful to the user. */
24200 if (cfun && auto_node == current_function_auto_return_pattern
24201 && LAMBDA_FUNCTION_P (current_function_decl))
24202 error ("unable to deduce lambda return type from %qE", init);
24203 else
24204 error ("unable to deduce %qT from %qE", type, init);
24205 type_unification_real (tparms, targs, parms, &init, 1, 0,
24206 DEDUCE_CALL, LOOKUP_NORMAL,
24207 NULL, /*explain_p=*/true);
24209 return error_mark_node;
24213 /* Check any placeholder constraints against the deduced type. */
24214 if (flag_concepts && !processing_template_decl)
24215 if (tree constr = PLACEHOLDER_TYPE_CONSTRAINTS (auto_node))
24217 /* Use the deduced type to check the associated constraints. If we
24218 have a partial-concept-id, rebuild the argument list so that
24219 we check using the extra arguments. */
24220 gcc_assert (TREE_CODE (constr) == CHECK_CONSTR);
24221 tree cargs = CHECK_CONSTR_ARGS (constr);
24222 if (TREE_VEC_LENGTH (cargs) > 1)
24224 cargs = copy_node (cargs);
24225 TREE_VEC_ELT (cargs, 0) = TREE_VEC_ELT (targs, 0);
24227 else
24228 cargs = targs;
24229 if (!constraints_satisfied_p (constr, cargs))
24231 if (complain & tf_warning_or_error)
24233 switch (context)
24235 case adc_unspecified:
24236 error("placeholder constraints not satisfied");
24237 break;
24238 case adc_variable_type:
24239 error ("deduced initializer does not satisfy "
24240 "placeholder constraints");
24241 break;
24242 case adc_return_type:
24243 error ("deduced return type does not satisfy "
24244 "placeholder constraints");
24245 break;
24246 case adc_requirement:
24247 error ("deduced expression type does not saatisy "
24248 "placeholder constraints");
24249 break;
24251 diagnose_constraints (input_location, constr, targs);
24253 return error_mark_node;
24257 if (processing_template_decl)
24258 targs = add_to_template_args (current_template_args (), targs);
24259 return tsubst (type, targs, complain, NULL_TREE);
24262 /* Substitutes LATE_RETURN_TYPE for 'auto' in TYPE and returns the
24263 result. */
24265 tree
24266 splice_late_return_type (tree type, tree late_return_type)
24268 if (is_auto (type))
24270 if (late_return_type)
24271 return late_return_type;
24273 tree idx = get_template_parm_index (type);
24274 if (TEMPLATE_PARM_LEVEL (idx) <= processing_template_decl)
24275 /* In an abbreviated function template we didn't know we were dealing
24276 with a function template when we saw the auto return type, so update
24277 it to have the correct level. */
24278 return make_auto_1 (TYPE_IDENTIFIER (type), true);
24280 return type;
24283 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto' or
24284 'decltype(auto)'. */
24286 bool
24287 is_auto (const_tree type)
24289 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
24290 && (TYPE_IDENTIFIER (type) == get_identifier ("auto")
24291 || TYPE_IDENTIFIER (type) == get_identifier ("decltype(auto)")))
24292 return true;
24293 else
24294 return false;
24297 /* for_each_template_parm callback for type_uses_auto. */
24300 is_auto_r (tree tp, void */*data*/)
24302 return is_auto_or_concept (tp);
24305 /* Returns the TEMPLATE_TYPE_PARM in TYPE representing `auto' iff TYPE contains
24306 a use of `auto'. Returns NULL_TREE otherwise. */
24308 tree
24309 type_uses_auto (tree type)
24311 if (type == NULL_TREE)
24312 return NULL_TREE;
24313 else if (flag_concepts)
24315 /* The Concepts TS allows multiple autos in one type-specifier; just
24316 return the first one we find, do_auto_deduction will collect all of
24317 them. */
24318 if (uses_template_parms (type))
24319 return for_each_template_parm (type, is_auto_r, /*data*/NULL,
24320 /*visited*/NULL, /*nondeduced*/true);
24321 else
24322 return NULL_TREE;
24324 else
24325 return find_type_usage (type, is_auto);
24328 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto',
24329 'decltype(auto)' or a concept. */
24331 bool
24332 is_auto_or_concept (const_tree type)
24334 return is_auto (type); // or concept
24337 /* Returns the TEMPLATE_TYPE_PARM in TYPE representing a generic type (`auto' or
24338 a concept identifier) iff TYPE contains a use of a generic type. Returns
24339 NULL_TREE otherwise. */
24341 tree
24342 type_uses_auto_or_concept (tree type)
24344 return find_type_usage (type, is_auto_or_concept);
24348 /* For a given template T, return the vector of typedefs referenced
24349 in T for which access check is needed at T instantiation time.
24350 T is either a FUNCTION_DECL or a RECORD_TYPE.
24351 Those typedefs were added to T by the function
24352 append_type_to_template_for_access_check. */
24354 vec<qualified_typedef_usage_t, va_gc> *
24355 get_types_needing_access_check (tree t)
24357 tree ti;
24358 vec<qualified_typedef_usage_t, va_gc> *result = NULL;
24360 if (!t || t == error_mark_node)
24361 return NULL;
24363 if (!(ti = get_template_info (t)))
24364 return NULL;
24366 if (CLASS_TYPE_P (t)
24367 || TREE_CODE (t) == FUNCTION_DECL)
24369 if (!TI_TEMPLATE (ti))
24370 return NULL;
24372 result = TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti);
24375 return result;
24378 /* Append the typedef TYPE_DECL used in template T to a list of typedefs
24379 tied to T. That list of typedefs will be access checked at
24380 T instantiation time.
24381 T is either a FUNCTION_DECL or a RECORD_TYPE.
24382 TYPE_DECL is a TYPE_DECL node representing a typedef.
24383 SCOPE is the scope through which TYPE_DECL is accessed.
24384 LOCATION is the location of the usage point of TYPE_DECL.
24386 This function is a subroutine of
24387 append_type_to_template_for_access_check. */
24389 static void
24390 append_type_to_template_for_access_check_1 (tree t,
24391 tree type_decl,
24392 tree scope,
24393 location_t location)
24395 qualified_typedef_usage_t typedef_usage;
24396 tree ti;
24398 if (!t || t == error_mark_node)
24399 return;
24401 gcc_assert ((TREE_CODE (t) == FUNCTION_DECL
24402 || CLASS_TYPE_P (t))
24403 && type_decl
24404 && TREE_CODE (type_decl) == TYPE_DECL
24405 && scope);
24407 if (!(ti = get_template_info (t)))
24408 return;
24410 gcc_assert (TI_TEMPLATE (ti));
24412 typedef_usage.typedef_decl = type_decl;
24413 typedef_usage.context = scope;
24414 typedef_usage.locus = location;
24416 vec_safe_push (TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti), typedef_usage);
24419 /* Append TYPE_DECL to the template TEMPL.
24420 TEMPL is either a class type, a FUNCTION_DECL or a a TEMPLATE_DECL.
24421 At TEMPL instanciation time, TYPE_DECL will be checked to see
24422 if it can be accessed through SCOPE.
24423 LOCATION is the location of the usage point of TYPE_DECL.
24425 e.g. consider the following code snippet:
24427 class C
24429 typedef int myint;
24432 template<class U> struct S
24434 C::myint mi; // <-- usage point of the typedef C::myint
24437 S<char> s;
24439 At S<char> instantiation time, we need to check the access of C::myint
24440 In other words, we need to check the access of the myint typedef through
24441 the C scope. For that purpose, this function will add the myint typedef
24442 and the scope C through which its being accessed to a list of typedefs
24443 tied to the template S. That list will be walked at template instantiation
24444 time and access check performed on each typedefs it contains.
24445 Note that this particular code snippet should yield an error because
24446 myint is private to C. */
24448 void
24449 append_type_to_template_for_access_check (tree templ,
24450 tree type_decl,
24451 tree scope,
24452 location_t location)
24454 qualified_typedef_usage_t *iter;
24455 unsigned i;
24457 gcc_assert (type_decl && (TREE_CODE (type_decl) == TYPE_DECL));
24459 /* Make sure we don't append the type to the template twice. */
24460 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (templ), i, iter)
24461 if (iter->typedef_decl == type_decl && scope == iter->context)
24462 return;
24464 append_type_to_template_for_access_check_1 (templ, type_decl,
24465 scope, location);
24468 /* Convert the generic type parameters in PARM that match the types given in the
24469 range [START_IDX, END_IDX) from the current_template_parms into generic type
24470 packs. */
24472 tree
24473 convert_generic_types_to_packs (tree parm, int start_idx, int end_idx)
24475 tree current = current_template_parms;
24476 int depth = TMPL_PARMS_DEPTH (current);
24477 current = INNERMOST_TEMPLATE_PARMS (current);
24478 tree replacement = make_tree_vec (TREE_VEC_LENGTH (current));
24480 for (int i = 0; i < start_idx; ++i)
24481 TREE_VEC_ELT (replacement, i)
24482 = TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (current, i)));
24484 for (int i = start_idx; i < end_idx; ++i)
24486 /* Create a distinct parameter pack type from the current parm and add it
24487 to the replacement args to tsubst below into the generic function
24488 parameter. */
24490 tree o = TREE_TYPE (TREE_VALUE
24491 (TREE_VEC_ELT (current, i)));
24492 tree t = copy_type (o);
24493 TEMPLATE_TYPE_PARM_INDEX (t)
24494 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (o),
24495 o, 0, 0, tf_none);
24496 TREE_TYPE (TEMPLATE_TYPE_DECL (t)) = t;
24497 TYPE_STUB_DECL (t) = TYPE_NAME (t) = TEMPLATE_TYPE_DECL (t);
24498 TYPE_MAIN_VARIANT (t) = t;
24499 TEMPLATE_TYPE_PARAMETER_PACK (t) = true;
24500 TYPE_CANONICAL (t) = canonical_type_parameter (t);
24501 TREE_VEC_ELT (replacement, i) = t;
24502 TREE_VALUE (TREE_VEC_ELT (current, i)) = TREE_CHAIN (t);
24505 for (int i = end_idx, e = TREE_VEC_LENGTH (current); i < e; ++i)
24506 TREE_VEC_ELT (replacement, i)
24507 = TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (current, i)));
24509 /* If there are more levels then build up the replacement with the outer
24510 template parms. */
24511 if (depth > 1)
24512 replacement = add_to_template_args (template_parms_to_args
24513 (TREE_CHAIN (current_template_parms)),
24514 replacement);
24516 return tsubst (parm, replacement, tf_none, NULL_TREE);
24519 /* Entries in the decl_constraint hash table. */
24520 struct GTY((for_user)) constr_entry
24522 tree decl;
24523 tree ci;
24526 /* Hashing function and equality for constraint entries. */
24527 struct constr_hasher : ggc_ptr_hash<constr_entry>
24529 static hashval_t hash (constr_entry *e)
24531 return (hashval_t)DECL_UID (e->decl);
24534 static bool equal (constr_entry *e1, constr_entry *e2)
24536 return e1->decl == e2->decl;
24540 /* A mapping from declarations to constraint information. Note that
24541 both templates and their underlying declarations are mapped to the
24542 same constraint information.
24544 FIXME: This is defined in pt.c because garbage collection
24545 code is not being generated for constraint.cc. */
24547 static GTY (()) hash_table<constr_hasher> *decl_constraints;
24549 /* Returns the template constraints of declaration T. If T is not
24550 constrained, return NULL_TREE. Note that T must be non-null. */
24552 tree
24553 get_constraints (tree t)
24555 if (!flag_concepts)
24556 return NULL_TREE;
24558 gcc_assert (DECL_P (t));
24559 if (TREE_CODE (t) == TEMPLATE_DECL)
24560 t = DECL_TEMPLATE_RESULT (t);
24561 constr_entry elt = { t, NULL_TREE };
24562 constr_entry* found = decl_constraints->find (&elt);
24563 if (found)
24564 return found->ci;
24565 else
24566 return NULL_TREE;
24569 /* Associate the given constraint information CI with the declaration
24570 T. If T is a template, then the constraints are associated with
24571 its underlying declaration. Don't build associations if CI is
24572 NULL_TREE. */
24574 void
24575 set_constraints (tree t, tree ci)
24577 if (!ci)
24578 return;
24579 gcc_assert (t && flag_concepts);
24580 if (TREE_CODE (t) == TEMPLATE_DECL)
24581 t = DECL_TEMPLATE_RESULT (t);
24582 gcc_assert (!get_constraints (t));
24583 constr_entry elt = {t, ci};
24584 constr_entry** slot = decl_constraints->find_slot (&elt, INSERT);
24585 constr_entry* entry = ggc_alloc<constr_entry> ();
24586 *entry = elt;
24587 *slot = entry;
24590 /* Remove the associated constraints of the declaration T. */
24592 void
24593 remove_constraints (tree t)
24595 gcc_assert (DECL_P (t));
24596 if (TREE_CODE (t) == TEMPLATE_DECL)
24597 t = DECL_TEMPLATE_RESULT (t);
24599 constr_entry elt = {t, NULL_TREE};
24600 constr_entry** slot = decl_constraints->find_slot (&elt, NO_INSERT);
24601 if (slot)
24602 decl_constraints->clear_slot (slot);
24605 /* Memoized satisfaction results for declarations. This
24606 maps the pair (constraint_info, arguments) to the result computed
24607 by constraints_satisfied_p. */
24609 struct GTY((for_user)) constraint_sat_entry
24611 tree ci;
24612 tree args;
24613 tree result;
24616 /* Hashing function and equality for constraint entries. */
24618 struct constraint_sat_hasher : ggc_ptr_hash<constraint_sat_entry>
24620 static hashval_t hash (constraint_sat_entry *e)
24622 hashval_t val = iterative_hash_object(e->ci, 0);
24623 return iterative_hash_template_arg (e->args, val);
24626 static bool equal (constraint_sat_entry *e1, constraint_sat_entry *e2)
24628 return e1->ci == e2->ci && comp_template_args (e1->args, e2->args);
24632 /* Memoized satisfaction results for concept checks. */
24634 struct GTY((for_user)) concept_spec_entry
24636 tree tmpl;
24637 tree args;
24638 tree result;
24641 /* Hashing function and equality for constraint entries. */
24643 struct concept_spec_hasher : ggc_ptr_hash<concept_spec_entry>
24645 static hashval_t hash (concept_spec_entry *e)
24647 return hash_tmpl_and_args (e->tmpl, e->args);
24650 static bool equal (concept_spec_entry *e1, concept_spec_entry *e2)
24652 ++comparing_specializations;
24653 bool eq = e1->tmpl == e2->tmpl && comp_template_args (e1->args, e2->args);
24654 --comparing_specializations;
24655 return eq;
24659 static GTY (()) hash_table<constraint_sat_hasher> *constraint_memos;
24660 static GTY (()) hash_table<concept_spec_hasher> *concept_memos;
24662 /* Search for a memoized satisfaction result. Returns one of the
24663 truth value nodes if previously memoized, or NULL_TREE otherwise. */
24665 tree
24666 lookup_constraint_satisfaction (tree ci, tree args)
24668 constraint_sat_entry elt = { ci, args, NULL_TREE };
24669 constraint_sat_entry* found = constraint_memos->find (&elt);
24670 if (found)
24671 return found->result;
24672 else
24673 return NULL_TREE;
24676 /* Memoize the result of a satisfication test. Returns the saved result. */
24678 tree
24679 memoize_constraint_satisfaction (tree ci, tree args, tree result)
24681 constraint_sat_entry elt = {ci, args, result};
24682 constraint_sat_entry** slot = constraint_memos->find_slot (&elt, INSERT);
24683 constraint_sat_entry* entry = ggc_alloc<constraint_sat_entry> ();
24684 *entry = elt;
24685 *slot = entry;
24686 return result;
24689 /* Search for a memoized satisfaction result for a concept. */
24691 tree
24692 lookup_concept_satisfaction (tree tmpl, tree args)
24694 concept_spec_entry elt = { tmpl, args, NULL_TREE };
24695 concept_spec_entry* found = concept_memos->find (&elt);
24696 if (found)
24697 return found->result;
24698 else
24699 return NULL_TREE;
24702 /* Memoize the result of a concept check. Returns the saved result. */
24704 tree
24705 memoize_concept_satisfaction (tree tmpl, tree args, tree result)
24707 concept_spec_entry elt = {tmpl, args, result};
24708 concept_spec_entry** slot = concept_memos->find_slot (&elt, INSERT);
24709 concept_spec_entry* entry = ggc_alloc<concept_spec_entry> ();
24710 *entry = elt;
24711 *slot = entry;
24712 return result;
24715 static GTY (()) hash_table<concept_spec_hasher> *concept_expansions;
24717 /* Returns a prior concept specialization. This returns the substituted
24718 and normalized constraints defined by the concept. */
24720 tree
24721 get_concept_expansion (tree tmpl, tree args)
24723 concept_spec_entry elt = { tmpl, args, NULL_TREE };
24724 concept_spec_entry* found = concept_expansions->find (&elt);
24725 if (found)
24726 return found->result;
24727 else
24728 return NULL_TREE;
24731 /* Save a concept expansion for later. */
24733 tree
24734 save_concept_expansion (tree tmpl, tree args, tree def)
24736 concept_spec_entry elt = {tmpl, args, def};
24737 concept_spec_entry** slot = concept_expansions->find_slot (&elt, INSERT);
24738 concept_spec_entry* entry = ggc_alloc<concept_spec_entry> ();
24739 *entry = elt;
24740 *slot = entry;
24741 return def;
24744 static hashval_t
24745 hash_subsumption_args (tree t1, tree t2)
24747 gcc_assert (TREE_CODE (t1) == CHECK_CONSTR);
24748 gcc_assert (TREE_CODE (t2) == CHECK_CONSTR);
24749 int val = 0;
24750 val = iterative_hash_object (CHECK_CONSTR_CONCEPT (t1), val);
24751 val = iterative_hash_template_arg (CHECK_CONSTR_ARGS (t1), val);
24752 val = iterative_hash_object (CHECK_CONSTR_CONCEPT (t2), val);
24753 val = iterative_hash_template_arg (CHECK_CONSTR_ARGS (t2), val);
24754 return val;
24757 /* Compare the constraints of two subsumption entries. The LEFT1 and
24758 LEFT2 arguments comprise the first subsumption pair and the RIGHT1
24759 and RIGHT2 arguments comprise the second. These are all CHECK_CONSTRs. */
24761 static bool
24762 comp_subsumption_args (tree left1, tree left2, tree right1, tree right2)
24764 if (CHECK_CONSTR_CONCEPT (left1) == CHECK_CONSTR_CONCEPT (right1))
24765 if (CHECK_CONSTR_CONCEPT (left2) == CHECK_CONSTR_CONCEPT (right2))
24766 if (comp_template_args (CHECK_CONSTR_ARGS (left1),
24767 CHECK_CONSTR_ARGS (right1)))
24768 return comp_template_args (CHECK_CONSTR_ARGS (left2),
24769 CHECK_CONSTR_ARGS (right2));
24770 return false;
24773 /* Key/value pair for learning and memoizing subsumption results. This
24774 associates a pair of check constraints (including arguments) with
24775 a boolean value indicating the result. */
24777 struct GTY((for_user)) subsumption_entry
24779 tree t1;
24780 tree t2;
24781 bool result;
24784 /* Hashing function and equality for constraint entries. */
24786 struct subsumption_hasher : ggc_ptr_hash<subsumption_entry>
24788 static hashval_t hash (subsumption_entry *e)
24790 return hash_subsumption_args (e->t1, e->t2);
24793 static bool equal (subsumption_entry *e1, subsumption_entry *e2)
24795 ++comparing_specializations;
24796 bool eq = comp_subsumption_args(e1->t1, e1->t2, e2->t1, e2->t2);
24797 --comparing_specializations;
24798 return eq;
24802 static GTY (()) hash_table<subsumption_hasher> *subsumption_table;
24804 /* Search for a previously cached subsumption result. */
24806 bool*
24807 lookup_subsumption_result (tree t1, tree t2)
24809 subsumption_entry elt = { t1, t2, false };
24810 subsumption_entry* found = subsumption_table->find (&elt);
24811 if (found)
24812 return &found->result;
24813 else
24814 return 0;
24817 /* Save a subsumption result. */
24819 bool
24820 save_subsumption_result (tree t1, tree t2, bool result)
24822 subsumption_entry elt = {t1, t2, result};
24823 subsumption_entry** slot = subsumption_table->find_slot (&elt, INSERT);
24824 subsumption_entry* entry = ggc_alloc<subsumption_entry> ();
24825 *entry = elt;
24826 *slot = entry;
24827 return result;
24830 /* Set up the hash table for constraint association. */
24832 void
24833 init_constraint_processing (void)
24835 if (!flag_concepts)
24836 return;
24838 decl_constraints = hash_table<constr_hasher>::create_ggc(37);
24839 constraint_memos = hash_table<constraint_sat_hasher>::create_ggc(37);
24840 concept_memos = hash_table<concept_spec_hasher>::create_ggc(37);
24841 concept_expansions = hash_table<concept_spec_hasher>::create_ggc(37);
24842 subsumption_table = hash_table<subsumption_hasher>::create_ggc(37);
24845 /* Set up the hash tables for template instantiations. */
24847 void
24848 init_template_processing (void)
24850 decl_specializations = hash_table<spec_hasher>::create_ggc (37);
24851 type_specializations = hash_table<spec_hasher>::create_ggc (37);
24854 /* Print stats about the template hash tables for -fstats. */
24856 void
24857 print_template_statistics (void)
24859 fprintf (stderr, "decl_specializations: size %ld, %ld elements, "
24860 "%f collisions\n", (long) decl_specializations->size (),
24861 (long) decl_specializations->elements (),
24862 decl_specializations->collisions ());
24863 fprintf (stderr, "type_specializations: size %ld, %ld elements, "
24864 "%f collisions\n", (long) type_specializations->size (),
24865 (long) type_specializations->elements (),
24866 type_specializations->collisions ());
24869 #include "gt-cp-pt.h"