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)
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". */
29 #include "coretypes.h"
32 #include "stringpool.h"
35 #include "stor-layout.h"
37 #include "c-family/c-objc.h"
38 #include "cp-objcp-common.h"
40 #include "tree-iterator.h"
41 #include "type-utils.h"
44 /* The type of functions taking a tree, and some additional data, and
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
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
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
{
128 tbr_ambiguous_baseclass
,
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,
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
, tree
);
144 static tree
coerce_template_parms (tree
, tree
, tree
, tsubst_flags_t
,
146 static tree
coerce_innermost_template_parms (tree
, tree
, tree
, tsubst_flags_t
,
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
*,
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
> **,
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 void regenerate_decl_from_template (tree
, tree
);
186 static tree
most_specialized_partial_spec (tree
, tsubst_flags_t
);
187 static tree
tsubst_aggr_type (tree
, tree
, tsubst_flags_t
, tree
, int);
188 static tree
tsubst_arg_types (tree
, tree
, tree
, tsubst_flags_t
, tree
);
189 static tree
tsubst_function_type (tree
, tree
, tsubst_flags_t
, tree
);
190 static bool check_specialization_scope (void);
191 static tree
process_partial_specialization (tree
);
192 static void set_current_access_from_decl (tree
);
193 static enum template_base_result
get_template_base (tree
, tree
, tree
, tree
,
195 static tree
try_class_unification (tree
, tree
, tree
, tree
, bool);
196 static int coerce_template_template_parms (tree
, tree
, tsubst_flags_t
,
198 static bool template_template_parm_bindings_ok_p (tree
, tree
);
199 static int template_args_equal (tree
, tree
);
200 static void tsubst_default_arguments (tree
, tsubst_flags_t
);
201 static tree
for_each_template_parm_r (tree
*, int *, void *);
202 static tree
copy_default_args_to_explicit_spec_1 (tree
, tree
);
203 static void copy_default_args_to_explicit_spec (tree
);
204 static int invalid_nontype_parm_type_p (tree
, tsubst_flags_t
);
205 static bool dependent_template_arg_p (tree
);
206 static bool any_template_arguments_need_structural_equality_p (tree
);
207 static bool dependent_type_p_r (tree
);
208 static tree
tsubst_copy (tree
, tree
, tsubst_flags_t
, tree
);
209 static tree
tsubst_decl (tree
, tree
, tsubst_flags_t
);
210 static void perform_typedefs_access_check (tree tmpl
, tree targs
);
211 static void append_type_to_template_for_access_check_1 (tree
, tree
, tree
,
213 static tree
listify (tree
);
214 static tree
listify_autos (tree
, tree
);
215 static tree
tsubst_template_parm (tree
, tree
, tsubst_flags_t
);
216 static tree
instantiate_alias_template (tree
, tree
, tsubst_flags_t
);
217 static bool complex_alias_template_p (const_tree tmpl
);
218 static tree
tsubst_attributes (tree
, tree
, tsubst_flags_t
, tree
);
220 /* Make the current scope suitable for access checking when we are
221 processing T. T can be FUNCTION_DECL for instantiated function
222 template, VAR_DECL for static member variable, or TYPE_DECL for
223 alias template (needed by instantiate_decl). */
226 push_access_scope (tree t
)
228 gcc_assert (VAR_OR_FUNCTION_DECL_P (t
)
229 || TREE_CODE (t
) == TYPE_DECL
);
231 if (DECL_FRIEND_CONTEXT (t
))
232 push_nested_class (DECL_FRIEND_CONTEXT (t
));
233 else if (DECL_CLASS_SCOPE_P (t
))
234 push_nested_class (DECL_CONTEXT (t
));
236 push_to_top_level ();
238 if (TREE_CODE (t
) == FUNCTION_DECL
)
240 saved_access_scope
= tree_cons
241 (NULL_TREE
, current_function_decl
, saved_access_scope
);
242 current_function_decl
= t
;
246 /* Restore the scope set up by push_access_scope. T is the node we
250 pop_access_scope (tree t
)
252 if (TREE_CODE (t
) == FUNCTION_DECL
)
254 current_function_decl
= TREE_VALUE (saved_access_scope
);
255 saved_access_scope
= TREE_CHAIN (saved_access_scope
);
258 if (DECL_FRIEND_CONTEXT (t
) || DECL_CLASS_SCOPE_P (t
))
261 pop_from_top_level ();
264 /* Do any processing required when DECL (a member template
265 declaration) is finished. Returns the TEMPLATE_DECL corresponding
266 to DECL, unless it is a specialization, in which case the DECL
267 itself is returned. */
270 finish_member_template_decl (tree decl
)
272 if (decl
== error_mark_node
)
273 return error_mark_node
;
275 gcc_assert (DECL_P (decl
));
277 if (TREE_CODE (decl
) == TYPE_DECL
)
281 type
= TREE_TYPE (decl
);
282 if (type
== error_mark_node
)
283 return error_mark_node
;
284 if (MAYBE_CLASS_TYPE_P (type
)
285 && CLASSTYPE_TEMPLATE_INFO (type
)
286 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (type
))
288 tree tmpl
= CLASSTYPE_TI_TEMPLATE (type
);
289 check_member_template (tmpl
);
294 else if (TREE_CODE (decl
) == FIELD_DECL
)
295 error ("data member %qD cannot be a member template", decl
);
296 else if (DECL_TEMPLATE_INFO (decl
))
298 if (!DECL_TEMPLATE_SPECIALIZATION (decl
))
300 check_member_template (DECL_TI_TEMPLATE (decl
));
301 return DECL_TI_TEMPLATE (decl
);
307 error ("invalid member template declaration %qD", decl
);
309 return error_mark_node
;
312 /* Create a template info node. */
315 build_template_info (tree template_decl
, tree template_args
)
317 tree result
= make_node (TEMPLATE_INFO
);
318 TI_TEMPLATE (result
) = template_decl
;
319 TI_ARGS (result
) = template_args
;
323 /* Return the template info node corresponding to T, whatever T is. */
326 get_template_info (const_tree t
)
328 tree tinfo
= NULL_TREE
;
330 if (!t
|| t
== error_mark_node
)
333 if (TREE_CODE (t
) == NAMESPACE_DECL
334 || TREE_CODE (t
) == PARM_DECL
)
337 if (DECL_P (t
) && DECL_LANG_SPECIFIC (t
))
338 tinfo
= DECL_TEMPLATE_INFO (t
);
340 if (!tinfo
&& DECL_IMPLICIT_TYPEDEF_P (t
))
343 if (OVERLOAD_TYPE_P (t
))
344 tinfo
= TYPE_TEMPLATE_INFO (t
);
345 else if (TREE_CODE (t
) == BOUND_TEMPLATE_TEMPLATE_PARM
)
346 tinfo
= TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (t
);
351 /* Returns the template nesting level of the indicated class TYPE.
361 A<T>::B<U> has depth two, while A<T> has depth one.
362 Both A<T>::B<int> and A<int>::B<U> have depth one, if
363 they are instantiations, not specializations.
365 This function is guaranteed to return 0 if passed NULL_TREE so
366 that, for example, `template_class_depth (current_class_type)' is
370 template_class_depth (tree type
)
374 for (depth
= 0; type
&& TREE_CODE (type
) != NAMESPACE_DECL
; )
376 tree tinfo
= get_template_info (type
);
378 if (tinfo
&& PRIMARY_TEMPLATE_P (TI_TEMPLATE (tinfo
))
379 && uses_template_parms (INNERMOST_TEMPLATE_ARGS (TI_ARGS (tinfo
))))
383 type
= CP_DECL_CONTEXT (type
);
384 else if (LAMBDA_TYPE_P (type
))
385 type
= LAMBDA_TYPE_EXTRA_SCOPE (type
);
387 type
= CP_TYPE_CONTEXT (type
);
393 /* Subroutine of maybe_begin_member_template_processing.
394 Returns true if processing DECL needs us to push template parms. */
397 inline_needs_template_parms (tree decl
, bool nsdmi
)
399 if (!decl
|| (!nsdmi
&& ! DECL_TEMPLATE_INFO (decl
)))
402 return (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (most_general_template (decl
)))
403 > (processing_template_decl
+ DECL_TEMPLATE_SPECIALIZATION (decl
)));
406 /* Subroutine of maybe_begin_member_template_processing.
407 Push the template parms in PARMS, starting from LEVELS steps into the
408 chain, and ending at the beginning, since template parms are listed
412 push_inline_template_parms_recursive (tree parmlist
, int levels
)
414 tree parms
= TREE_VALUE (parmlist
);
418 push_inline_template_parms_recursive (TREE_CHAIN (parmlist
), levels
- 1);
420 ++processing_template_decl
;
421 current_template_parms
422 = tree_cons (size_int (processing_template_decl
),
423 parms
, current_template_parms
);
424 TEMPLATE_PARMS_FOR_INLINE (current_template_parms
) = 1;
426 begin_scope (TREE_VEC_LENGTH (parms
) ? sk_template_parms
: sk_template_spec
,
428 for (i
= 0; i
< TREE_VEC_LENGTH (parms
); ++i
)
430 tree parm
= TREE_VALUE (TREE_VEC_ELT (parms
, i
));
432 if (error_operand_p (parm
))
435 gcc_assert (DECL_P (parm
));
437 switch (TREE_CODE (parm
))
445 /* Push the CONST_DECL. */
446 pushdecl (TEMPLATE_PARM_DECL (DECL_INITIAL (parm
)));
455 /* Restore the template parameter context for a member template, a
456 friend template defined in a class definition, or a non-template
457 member of template class. */
460 maybe_begin_member_template_processing (tree decl
)
464 bool nsdmi
= TREE_CODE (decl
) == FIELD_DECL
;
468 tree ctx
= DECL_CONTEXT (decl
);
469 decl
= (CLASSTYPE_TEMPLATE_INFO (ctx
)
470 /* Disregard full specializations (c++/60999). */
471 && uses_template_parms (ctx
)
472 ? CLASSTYPE_TI_TEMPLATE (ctx
) : NULL_TREE
);
475 if (inline_needs_template_parms (decl
, nsdmi
))
477 parms
= DECL_TEMPLATE_PARMS (most_general_template (decl
));
478 levels
= TMPL_PARMS_DEPTH (parms
) - processing_template_decl
;
480 if (DECL_TEMPLATE_SPECIALIZATION (decl
))
483 parms
= TREE_CHAIN (parms
);
486 push_inline_template_parms_recursive (parms
, levels
);
489 /* Remember how many levels of template parameters we pushed so that
490 we can pop them later. */
491 inline_parm_levels
.safe_push (levels
);
494 /* Undo the effects of maybe_begin_member_template_processing. */
497 maybe_end_member_template_processing (void)
502 if (inline_parm_levels
.length () == 0)
505 last
= inline_parm_levels
.pop ();
506 for (i
= 0; i
< last
; ++i
)
508 --processing_template_decl
;
509 current_template_parms
= TREE_CHAIN (current_template_parms
);
514 /* Return a new template argument vector which contains all of ARGS,
515 but has as its innermost set of arguments the EXTRA_ARGS. */
518 add_to_template_args (tree args
, tree extra_args
)
525 if (args
== NULL_TREE
|| extra_args
== error_mark_node
)
528 extra_depth
= TMPL_ARGS_DEPTH (extra_args
);
529 new_args
= make_tree_vec (TMPL_ARGS_DEPTH (args
) + extra_depth
);
531 for (i
= 1; i
<= TMPL_ARGS_DEPTH (args
); ++i
)
532 SET_TMPL_ARGS_LEVEL (new_args
, i
, TMPL_ARGS_LEVEL (args
, i
));
534 for (j
= 1; j
<= extra_depth
; ++j
, ++i
)
535 SET_TMPL_ARGS_LEVEL (new_args
, i
, TMPL_ARGS_LEVEL (extra_args
, j
));
540 /* Like add_to_template_args, but only the outermost ARGS are added to
541 the EXTRA_ARGS. In particular, all but TMPL_ARGS_DEPTH
542 (EXTRA_ARGS) levels are added. This function is used to combine
543 the template arguments from a partial instantiation with the
544 template arguments used to attain the full instantiation from the
545 partial instantiation. */
548 add_outermost_template_args (tree args
, tree extra_args
)
552 /* If there are more levels of EXTRA_ARGS than there are ARGS,
553 something very fishy is going on. */
554 gcc_assert (TMPL_ARGS_DEPTH (args
) >= TMPL_ARGS_DEPTH (extra_args
));
556 /* If *all* the new arguments will be the EXTRA_ARGS, just return
558 if (TMPL_ARGS_DEPTH (args
) == TMPL_ARGS_DEPTH (extra_args
))
561 /* For the moment, we make ARGS look like it contains fewer levels. */
562 TREE_VEC_LENGTH (args
) -= TMPL_ARGS_DEPTH (extra_args
);
564 new_args
= add_to_template_args (args
, extra_args
);
566 /* Now, we restore ARGS to its full dimensions. */
567 TREE_VEC_LENGTH (args
) += TMPL_ARGS_DEPTH (extra_args
);
572 /* Return the N levels of innermost template arguments from the ARGS. */
575 get_innermost_template_args (tree args
, int n
)
583 /* If N is 1, just return the innermost set of template arguments. */
585 return TMPL_ARGS_LEVEL (args
, TMPL_ARGS_DEPTH (args
));
587 /* If we're not removing anything, just return the arguments we were
589 extra_levels
= TMPL_ARGS_DEPTH (args
) - n
;
590 gcc_assert (extra_levels
>= 0);
591 if (extra_levels
== 0)
594 /* Make a new set of arguments, not containing the outer arguments. */
595 new_args
= make_tree_vec (n
);
596 for (i
= 1; i
<= n
; ++i
)
597 SET_TMPL_ARGS_LEVEL (new_args
, i
,
598 TMPL_ARGS_LEVEL (args
, i
+ extra_levels
));
603 /* The inverse of get_innermost_template_args: Return all but the innermost
604 EXTRA_LEVELS levels of template arguments from the ARGS. */
607 strip_innermost_template_args (tree args
, int extra_levels
)
610 int n
= TMPL_ARGS_DEPTH (args
) - extra_levels
;
615 /* If N is 1, just return the outermost set of template arguments. */
617 return TMPL_ARGS_LEVEL (args
, 1);
619 /* If we're not removing anything, just return the arguments we were
621 gcc_assert (extra_levels
>= 0);
622 if (extra_levels
== 0)
625 /* Make a new set of arguments, not containing the inner arguments. */
626 new_args
= make_tree_vec (n
);
627 for (i
= 1; i
<= n
; ++i
)
628 SET_TMPL_ARGS_LEVEL (new_args
, i
,
629 TMPL_ARGS_LEVEL (args
, i
));
634 /* We've got a template header coming up; push to a new level for storing
638 begin_template_parm_list (void)
640 /* We use a non-tag-transparent scope here, which causes pushtag to
641 put tags in this scope, rather than in the enclosing class or
642 namespace scope. This is the right thing, since we want
643 TEMPLATE_DECLS, and not TYPE_DECLS for template classes. For a
644 global template class, push_template_decl handles putting the
645 TEMPLATE_DECL into top-level scope. For a nested template class,
648 template <class T> struct S1 {
649 template <class T> struct S2 {};
652 pushtag contains special code to call pushdecl_with_scope on the
653 TEMPLATE_DECL for S2. */
654 begin_scope (sk_template_parms
, NULL
);
655 ++processing_template_decl
;
656 ++processing_template_parmlist
;
657 note_template_header (0);
659 /* Add a dummy parameter level while we process the parameter list. */
660 current_template_parms
661 = tree_cons (size_int (processing_template_decl
),
663 current_template_parms
);
666 /* This routine is called when a specialization is declared. If it is
667 invalid to declare a specialization here, an error is reported and
668 false is returned, otherwise this routine will return true. */
671 check_specialization_scope (void)
673 tree scope
= current_scope ();
677 An explicit specialization shall be declared in the namespace of
678 which the template is a member, or, for member templates, in the
679 namespace of which the enclosing class or enclosing class
680 template is a member. An explicit specialization of a member
681 function, member class or static data member of a class template
682 shall be declared in the namespace of which the class template
684 if (scope
&& TREE_CODE (scope
) != NAMESPACE_DECL
)
686 error ("explicit specialization in non-namespace scope %qD", scope
);
692 In an explicit specialization declaration for a member of a class
693 template or a member template that appears in namespace scope,
694 the member template and some of its enclosing class templates may
695 remain unspecialized, except that the declaration shall not
696 explicitly specialize a class member template if its enclosing
697 class templates are not explicitly specialized as well. */
698 if (current_template_parms
)
700 error ("enclosing class templates are not explicitly specialized");
707 /* We've just seen template <>. */
710 begin_specialization (void)
712 begin_scope (sk_template_spec
, NULL
);
713 note_template_header (1);
714 return check_specialization_scope ();
717 /* Called at then end of processing a declaration preceded by
721 end_specialization (void)
724 reset_specialization ();
727 /* Any template <>'s that we have seen thus far are not referring to a
728 function specialization. */
731 reset_specialization (void)
733 processing_specialization
= 0;
734 template_header_count
= 0;
737 /* We've just seen a template header. If SPECIALIZATION is nonzero,
738 it was of the form template <>. */
741 note_template_header (int specialization
)
743 processing_specialization
= specialization
;
744 template_header_count
++;
747 /* We're beginning an explicit instantiation. */
750 begin_explicit_instantiation (void)
752 gcc_assert (!processing_explicit_instantiation
);
753 processing_explicit_instantiation
= true;
758 end_explicit_instantiation (void)
760 gcc_assert (processing_explicit_instantiation
);
761 processing_explicit_instantiation
= false;
764 /* An explicit specialization or partial specialization of TMPL is being
765 declared. Check that the namespace in which the specialization is
766 occurring is permissible. Returns false iff it is invalid to
767 specialize TMPL in the current namespace. */
770 check_specialization_namespace (tree tmpl
)
772 tree tpl_ns
= decl_namespace_context (tmpl
);
776 An explicit specialization shall be declared in the namespace of
777 which the template is a member, or, for member templates, in the
778 namespace of which the enclosing class or enclosing class
779 template is a member. An explicit specialization of a member
780 function, member class or static data member of a class template
781 shall be declared in the namespace of which the class template is
783 if (current_scope() != DECL_CONTEXT (tmpl
)
784 && !at_namespace_scope_p ())
786 error ("specialization of %qD must appear at namespace scope", tmpl
);
789 if (is_associated_namespace (current_namespace
, tpl_ns
))
790 /* Same or super-using namespace. */
794 permerror (input_location
,
795 "specialization of %qD in different namespace", tmpl
);
796 permerror (DECL_SOURCE_LOCATION (tmpl
),
797 " from definition of %q#D", tmpl
);
802 /* SPEC is an explicit instantiation. Check that it is valid to
803 perform this explicit instantiation in the current namespace. */
806 check_explicit_instantiation_namespace (tree spec
)
810 /* DR 275: An explicit instantiation shall appear in an enclosing
811 namespace of its template. */
812 ns
= decl_namespace_context (spec
);
813 if (!is_ancestor (current_namespace
, ns
))
814 permerror (input_location
, "explicit instantiation of %qD in namespace %qD "
815 "(which does not enclose namespace %qD)",
816 spec
, current_namespace
, ns
);
819 // Returns the type of a template specialization only if that
820 // specialization needs to be defined. Otherwise (e.g., if the type has
821 // already been defined), the function returns NULL_TREE.
823 maybe_new_partial_specialization (tree type
)
825 // An implicit instantiation of an incomplete type implies
826 // the definition of a new class template.
828 // template<typename T>
831 // template<typename T>
834 // Here, S<T*> is an implicit instantiation of S whose type
836 if (CLASSTYPE_IMPLICIT_INSTANTIATION (type
) && !COMPLETE_TYPE_P (type
))
839 // It can also be the case that TYPE is a completed specialization.
840 // Continuing the previous example, suppose we also declare:
842 // template<typename T>
843 // requires Integral<T>
846 // Here, S<T*> refers to the specialization S<T*> defined
847 // above. However, we need to differentiate definitions because
848 // we intend to define a new partial specialization. In this case,
849 // we rely on the fact that the constraints are different for
850 // this declaration than that above.
852 // Note that we also get here for injected class names and
853 // late-parsed template definitions. We must ensure that we
854 // do not create new type declarations for those cases.
855 if (flag_concepts
&& CLASSTYPE_TEMPLATE_SPECIALIZATION (type
))
857 tree tmpl
= CLASSTYPE_TI_TEMPLATE (type
);
858 tree args
= CLASSTYPE_TI_ARGS (type
);
860 // If there are no template parameters, this cannot be a new
861 // partial template specializtion?
862 if (!current_template_parms
)
865 // The injected-class-name is not a new partial specialization.
866 if (DECL_SELF_REFERENCE_P (TYPE_NAME (type
)))
869 // If the constraints are not the same as those of the primary
870 // then, we can probably create a new specialization.
871 tree type_constr
= current_template_constraints ();
873 if (type
== TREE_TYPE (tmpl
))
875 tree main_constr
= get_constraints (tmpl
);
876 if (equivalent_constraints (type_constr
, main_constr
))
880 // Also, if there's a pre-existing specialization with matching
881 // constraints, then this also isn't new.
882 tree specs
= DECL_TEMPLATE_SPECIALIZATIONS (tmpl
);
885 tree spec_tmpl
= TREE_VALUE (specs
);
886 tree spec_args
= TREE_PURPOSE (specs
);
887 tree spec_constr
= get_constraints (spec_tmpl
);
888 if (comp_template_args (args
, spec_args
)
889 && equivalent_constraints (type_constr
, spec_constr
))
891 specs
= TREE_CHAIN (specs
);
894 // Create a new type node (and corresponding type decl)
895 // for the newly declared specialization.
896 tree t
= make_class_type (TREE_CODE (type
));
897 CLASSTYPE_DECLARED_CLASS (t
) = CLASSTYPE_DECLARED_CLASS (type
);
898 TYPE_FOR_JAVA (t
) = TYPE_FOR_JAVA (type
);
899 SET_TYPE_TEMPLATE_INFO (t
, build_template_info (tmpl
, args
));
901 /* We only need a separate type node for storing the definition of this
902 partial specialization; uses of S<T*> are unconstrained, so all are
903 equivalent. So keep TYPE_CANONICAL the same. */
904 TYPE_CANONICAL (t
) = TYPE_CANONICAL (type
);
906 // Build the corresponding type decl.
907 tree d
= create_implicit_typedef (DECL_NAME (tmpl
), t
);
908 DECL_CONTEXT (d
) = TYPE_CONTEXT (t
);
909 DECL_SOURCE_LOCATION (d
) = input_location
;
917 /* The TYPE is being declared. If it is a template type, that means it
918 is a partial specialization. Do appropriate error-checking. */
921 maybe_process_partial_specialization (tree type
)
925 if (type
== error_mark_node
)
926 return error_mark_node
;
928 /* A lambda that appears in specialization context is not itself a
930 if (CLASS_TYPE_P (type
) && CLASSTYPE_LAMBDA_EXPR (type
))
933 if (TREE_CODE (type
) == BOUND_TEMPLATE_TEMPLATE_PARM
)
935 error ("name of class shadows template template parameter %qD",
937 return error_mark_node
;
940 context
= TYPE_CONTEXT (type
);
942 if (TYPE_ALIAS_P (type
))
944 if (TYPE_TEMPLATE_INFO (type
)
945 && DECL_ALIAS_TEMPLATE_P (TYPE_TI_TEMPLATE (type
)))
946 error ("specialization of alias template %qD",
947 TYPE_TI_TEMPLATE (type
));
949 error ("explicit specialization of non-template %qT", type
);
950 return error_mark_node
;
952 else if (CLASS_TYPE_P (type
) && CLASSTYPE_USE_TEMPLATE (type
))
954 /* This is for ordinary explicit specialization and partial
955 specialization of a template class such as:
957 template <> class C<int>;
961 template <class T> class C<T*>;
963 Make sure that `C<int>' and `C<T*>' are implicit instantiations. */
965 if (tree t
= maybe_new_partial_specialization (type
))
967 if (!check_specialization_namespace (CLASSTYPE_TI_TEMPLATE (t
))
968 && !at_namespace_scope_p ())
969 return error_mark_node
;
970 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (t
);
971 DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (t
)) = input_location
;
972 if (processing_template_decl
)
974 tree decl
= push_template_decl (TYPE_MAIN_DECL (t
));
975 if (decl
== error_mark_node
)
976 return error_mark_node
;
977 return TREE_TYPE (decl
);
980 else if (CLASSTYPE_TEMPLATE_INSTANTIATION (type
))
981 error ("specialization of %qT after instantiation", type
);
982 else if (errorcount
&& !processing_specialization
983 && CLASSTYPE_TEMPLATE_SPECIALIZATION (type
)
984 && !uses_template_parms (CLASSTYPE_TI_ARGS (type
)))
985 /* Trying to define a specialization either without a template<> header
986 or in an inappropriate place. We've already given an error, so just
987 bail now so we don't actually define the specialization. */
988 return error_mark_node
;
990 else if (CLASS_TYPE_P (type
)
991 && !CLASSTYPE_USE_TEMPLATE (type
)
992 && CLASSTYPE_TEMPLATE_INFO (type
)
993 && context
&& CLASS_TYPE_P (context
)
994 && CLASSTYPE_TEMPLATE_INFO (context
))
996 /* This is for an explicit specialization of member class
997 template according to [temp.expl.spec/18]:
999 template <> template <class U> class C<int>::D;
1001 The context `C<int>' must be an implicit instantiation.
1002 Otherwise this is just a member class template declared
1005 template <> class C<int> { template <class U> class D; };
1006 template <> template <class U> class C<int>::D;
1008 In the first case, `C<int>::D' is a specialization of `C<T>::D'
1009 while in the second case, `C<int>::D' is a primary template
1010 and `C<T>::D' may not exist. */
1012 if (CLASSTYPE_IMPLICIT_INSTANTIATION (context
)
1013 && !COMPLETE_TYPE_P (type
))
1016 tree tmpl
= CLASSTYPE_TI_TEMPLATE (type
);
1018 if (current_namespace
1019 != decl_namespace_context (tmpl
))
1021 permerror (input_location
,
1022 "specializing %q#T in different namespace", type
);
1023 permerror (DECL_SOURCE_LOCATION (tmpl
),
1024 " from definition of %q#D", tmpl
);
1027 /* Check for invalid specialization after instantiation:
1029 template <> template <> class C<int>::D<int>;
1030 template <> template <class U> class C<int>::D; */
1032 for (t
= DECL_TEMPLATE_INSTANTIATIONS (tmpl
);
1033 t
; t
= TREE_CHAIN (t
))
1035 tree inst
= TREE_VALUE (t
);
1036 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (inst
)
1037 || !COMPLETE_OR_OPEN_TYPE_P (inst
))
1039 /* We already have a full specialization of this partial
1040 instantiation, or a full specialization has been
1041 looked up but not instantiated. Reassign it to the
1042 new member specialization template. */
1046 elt
.tmpl
= most_general_template (tmpl
);
1047 elt
.args
= CLASSTYPE_TI_ARGS (inst
);
1050 type_specializations
->remove_elt (&elt
);
1053 elt
.args
= INNERMOST_TEMPLATE_ARGS (elt
.args
);
1056 = type_specializations
->find_slot (&elt
, INSERT
);
1057 entry
= ggc_alloc
<spec_entry
> ();
1062 /* But if we've had an implicit instantiation, that's a
1063 problem ([temp.expl.spec]/6). */
1064 error ("specialization %qT after instantiation %qT",
1068 /* Mark TYPE as a specialization. And as a result, we only
1069 have one level of template argument for the innermost
1071 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type
);
1072 DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type
)) = input_location
;
1073 CLASSTYPE_TI_ARGS (type
)
1074 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type
));
1077 else if (processing_specialization
)
1079 /* Someday C++0x may allow for enum template specialization. */
1080 if (cxx_dialect
> cxx98
&& TREE_CODE (type
) == ENUMERAL_TYPE
1081 && CLASS_TYPE_P (context
) && CLASSTYPE_USE_TEMPLATE (context
))
1082 pedwarn (input_location
, OPT_Wpedantic
, "template specialization "
1083 "of %qD not allowed by ISO C++", type
);
1086 error ("explicit specialization of non-template %qT", type
);
1087 return error_mark_node
;
1094 /* Returns nonzero if we can optimize the retrieval of specializations
1095 for TMPL, a TEMPLATE_DECL. In particular, for such a template, we
1096 do not use DECL_TEMPLATE_SPECIALIZATIONS at all. */
1099 optimize_specialization_lookup_p (tree tmpl
)
1101 return (DECL_FUNCTION_TEMPLATE_P (tmpl
)
1102 && DECL_CLASS_SCOPE_P (tmpl
)
1103 /* DECL_CLASS_SCOPE_P holds of T::f even if T is a template
1105 && CLASS_TYPE_P (DECL_CONTEXT (tmpl
))
1106 /* The optimized lookup depends on the fact that the
1107 template arguments for the member function template apply
1108 purely to the containing class, which is not true if the
1109 containing class is an explicit or partial
1111 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (tmpl
))
1112 && !DECL_MEMBER_TEMPLATE_P (tmpl
)
1113 && !DECL_CONV_FN_P (tmpl
)
1114 /* It is possible to have a template that is not a member
1115 template and is not a member of a template class:
1117 template <typename T>
1118 struct S { friend A::f(); };
1120 Here, the friend function is a template, but the context does
1121 not have template information. The optimized lookup relies
1122 on having ARGS be the template arguments for both the class
1123 and the function template. */
1124 && !DECL_FRIEND_P (DECL_TEMPLATE_RESULT (tmpl
)));
1127 /* Make sure ARGS doesn't use any inappropriate typedefs; we should have
1128 gone through coerce_template_parms by now. */
1131 verify_unstripped_args (tree args
)
1133 ++processing_template_decl
;
1134 if (!any_dependent_template_arguments_p (args
))
1136 tree inner
= INNERMOST_TEMPLATE_ARGS (args
);
1137 for (int i
= 0; i
< TREE_VEC_LENGTH (inner
); ++i
)
1139 tree arg
= TREE_VEC_ELT (inner
, i
);
1140 if (TREE_CODE (arg
) == TEMPLATE_DECL
)
1142 else if (TYPE_P (arg
))
1143 gcc_assert (strip_typedefs (arg
, NULL
) == arg
);
1144 else if (strip_typedefs (TREE_TYPE (arg
), NULL
) != TREE_TYPE (arg
))
1145 /* Allow typedefs on the type of a non-type argument, since a
1146 parameter can have them. */;
1148 gcc_assert (strip_typedefs_expr (arg
, NULL
) == arg
);
1151 --processing_template_decl
;
1154 /* Retrieve the specialization (in the sense of [temp.spec] - a
1155 specialization is either an instantiation or an explicit
1156 specialization) of TMPL for the given template ARGS. If there is
1157 no such specialization, return NULL_TREE. The ARGS are a vector of
1158 arguments, or a vector of vectors of arguments, in the case of
1159 templates with more than one level of parameters.
1161 If TMPL is a type template and CLASS_SPECIALIZATIONS_P is true,
1162 then we search for a partial specialization matching ARGS. This
1163 parameter is ignored if TMPL is not a class template.
1165 We can also look up a FIELD_DECL, if it is a lambda capture pack; the
1166 result is a NONTYPE_ARGUMENT_PACK. */
1169 retrieve_specialization (tree tmpl
, tree args
, hashval_t hash
)
1171 if (tmpl
== NULL_TREE
)
1174 if (args
== error_mark_node
)
1177 gcc_assert (TREE_CODE (tmpl
) == TEMPLATE_DECL
1178 || TREE_CODE (tmpl
) == FIELD_DECL
);
1180 /* There should be as many levels of arguments as there are
1181 levels of parameters. */
1182 gcc_assert (TMPL_ARGS_DEPTH (args
)
1183 == (TREE_CODE (tmpl
) == TEMPLATE_DECL
1184 ? TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl
))
1185 : template_class_depth (DECL_CONTEXT (tmpl
))));
1188 verify_unstripped_args (args
);
1190 if (optimize_specialization_lookup_p (tmpl
))
1192 tree class_template
;
1193 tree class_specialization
;
1194 vec
<tree
, va_gc
> *methods
;
1198 /* The template arguments actually apply to the containing
1199 class. Find the class specialization with those
1201 class_template
= CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (tmpl
));
1202 class_specialization
1203 = retrieve_specialization (class_template
, args
, 0);
1204 if (!class_specialization
)
1206 /* Now, find the appropriate entry in the CLASSTYPE_METHOD_VEC
1207 for the specialization. */
1208 idx
= class_method_index_for_fn (class_specialization
, tmpl
);
1211 /* Iterate through the methods with the indicated name, looking
1212 for the one that has an instance of TMPL. */
1213 methods
= CLASSTYPE_METHOD_VEC (class_specialization
);
1214 for (fns
= (*methods
)[idx
]; fns
; fns
= OVL_NEXT (fns
))
1216 tree fn
= OVL_CURRENT (fns
);
1217 if (DECL_TEMPLATE_INFO (fn
) && DECL_TI_TEMPLATE (fn
) == tmpl
1218 /* using-declarations can add base methods to the method vec,
1219 and we don't want those here. */
1220 && DECL_CONTEXT (fn
) == class_specialization
)
1229 hash_table
<spec_hasher
> *specializations
;
1233 elt
.spec
= NULL_TREE
;
1235 if (DECL_CLASS_TEMPLATE_P (tmpl
))
1236 specializations
= type_specializations
;
1238 specializations
= decl_specializations
;
1241 hash
= spec_hasher::hash (&elt
);
1242 found
= specializations
->find_with_hash (&elt
, hash
);
1250 /* Like retrieve_specialization, but for local declarations. */
1253 retrieve_local_specialization (tree tmpl
)
1255 if (local_specializations
== NULL
)
1258 tree
*slot
= local_specializations
->get (tmpl
);
1259 return slot
? *slot
: NULL_TREE
;
1262 /* Returns nonzero iff DECL is a specialization of TMPL. */
1265 is_specialization_of (tree decl
, tree tmpl
)
1269 if (TREE_CODE (decl
) == FUNCTION_DECL
)
1273 t
= DECL_TEMPLATE_INFO (t
) ? DECL_TI_TEMPLATE (t
) : NULL_TREE
)
1279 gcc_assert (TREE_CODE (decl
) == TYPE_DECL
);
1281 for (t
= TREE_TYPE (decl
);
1283 t
= CLASSTYPE_USE_TEMPLATE (t
)
1284 ? TREE_TYPE (CLASSTYPE_TI_TEMPLATE (t
)) : NULL_TREE
)
1285 if (same_type_ignoring_top_level_qualifiers_p (t
, TREE_TYPE (tmpl
)))
1292 /* Returns nonzero iff DECL is a specialization of friend declaration
1293 FRIEND_DECL according to [temp.friend]. */
1296 is_specialization_of_friend (tree decl
, tree friend_decl
)
1298 bool need_template
= true;
1301 gcc_assert (TREE_CODE (decl
) == FUNCTION_DECL
1302 || TREE_CODE (decl
) == TYPE_DECL
);
1304 /* For [temp.friend/6] when FRIEND_DECL is an ordinary member function
1305 of a template class, we want to check if DECL is a specialization
1307 if (TREE_CODE (friend_decl
) == FUNCTION_DECL
1308 && DECL_TEMPLATE_INFO (friend_decl
)
1309 && !DECL_USE_TEMPLATE (friend_decl
))
1311 /* We want a TEMPLATE_DECL for `is_specialization_of'. */
1312 friend_decl
= DECL_TI_TEMPLATE (friend_decl
);
1313 need_template
= false;
1315 else if (TREE_CODE (friend_decl
) == TEMPLATE_DECL
1316 && !PRIMARY_TEMPLATE_P (friend_decl
))
1317 need_template
= false;
1319 /* There is nothing to do if this is not a template friend. */
1320 if (TREE_CODE (friend_decl
) != TEMPLATE_DECL
)
1323 if (is_specialization_of (decl
, friend_decl
))
1327 A member of a class template may be declared to be a friend of a
1328 non-template class. In this case, the corresponding member of
1329 every specialization of the class template is a friend of the
1330 class granting friendship.
1332 For example, given a template friend declaration
1334 template <class T> friend void A<T>::f();
1336 the member function below is considered a friend
1338 template <> struct A<int> {
1342 For this type of template friend, TEMPLATE_DEPTH below will be
1343 nonzero. To determine if DECL is a friend of FRIEND, we first
1344 check if the enclosing class is a specialization of another. */
1346 template_depth
= template_class_depth (CP_DECL_CONTEXT (friend_decl
));
1348 && DECL_CLASS_SCOPE_P (decl
)
1349 && is_specialization_of (TYPE_NAME (DECL_CONTEXT (decl
)),
1350 CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (friend_decl
))))
1352 /* Next, we check the members themselves. In order to handle
1353 a few tricky cases, such as when FRIEND_DECL's are
1355 template <class T> friend void A<T>::g(T t);
1356 template <class T> template <T t> friend void A<T>::h();
1360 void A<int>::g(int);
1361 template <int> void A<int>::h();
1363 we need to figure out ARGS, the template arguments from
1364 the context of DECL. This is required for template substitution
1365 of `T' in the function parameter of `g' and template parameter
1366 of `h' in the above examples. Here ARGS corresponds to `int'. */
1368 tree context
= DECL_CONTEXT (decl
);
1369 tree args
= NULL_TREE
;
1370 int current_depth
= 0;
1372 while (current_depth
< template_depth
)
1374 if (CLASSTYPE_TEMPLATE_INFO (context
))
1376 if (current_depth
== 0)
1377 args
= TYPE_TI_ARGS (context
);
1379 args
= add_to_template_args (TYPE_TI_ARGS (context
), args
);
1382 context
= TYPE_CONTEXT (context
);
1385 if (TREE_CODE (decl
) == FUNCTION_DECL
)
1390 tree friend_args_type
;
1391 tree decl_args_type
;
1393 /* Make sure that both DECL and FRIEND_DECL are templates or
1395 is_template
= DECL_TEMPLATE_INFO (decl
)
1396 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl
));
1397 if (need_template
^ is_template
)
1399 else if (is_template
)
1401 /* If both are templates, check template parameter list. */
1403 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_decl
),
1405 if (!comp_template_parms
1406 (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (decl
)),
1410 decl_type
= TREE_TYPE (DECL_TI_TEMPLATE (decl
));
1413 decl_type
= TREE_TYPE (decl
);
1415 friend_type
= tsubst_function_type (TREE_TYPE (friend_decl
), args
,
1416 tf_none
, NULL_TREE
);
1417 if (friend_type
== error_mark_node
)
1420 /* Check if return types match. */
1421 if (!same_type_p (TREE_TYPE (decl_type
), TREE_TYPE (friend_type
)))
1424 /* Check if function parameter types match, ignoring the
1425 `this' parameter. */
1426 friend_args_type
= TYPE_ARG_TYPES (friend_type
);
1427 decl_args_type
= TYPE_ARG_TYPES (decl_type
);
1428 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (friend_decl
))
1429 friend_args_type
= TREE_CHAIN (friend_args_type
);
1430 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl
))
1431 decl_args_type
= TREE_CHAIN (decl_args_type
);
1433 return compparms (decl_args_type
, friend_args_type
);
1437 /* DECL is a TYPE_DECL */
1439 tree decl_type
= TREE_TYPE (decl
);
1441 /* Make sure that both DECL and FRIEND_DECL are templates or
1444 = CLASSTYPE_TEMPLATE_INFO (decl_type
)
1445 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (decl_type
));
1447 if (need_template
^ is_template
)
1449 else if (is_template
)
1452 /* If both are templates, check the name of the two
1453 TEMPLATE_DECL's first because is_friend didn't. */
1454 if (DECL_NAME (CLASSTYPE_TI_TEMPLATE (decl_type
))
1455 != DECL_NAME (friend_decl
))
1458 /* Now check template parameter list. */
1460 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_decl
),
1462 return comp_template_parms
1463 (DECL_TEMPLATE_PARMS (CLASSTYPE_TI_TEMPLATE (decl_type
)),
1467 return (DECL_NAME (decl
)
1468 == DECL_NAME (friend_decl
));
1474 /* Register the specialization SPEC as a specialization of TMPL with
1475 the indicated ARGS. IS_FRIEND indicates whether the specialization
1476 is actually just a friend declaration. Returns SPEC, or an
1477 equivalent prior declaration, if available.
1479 We also store instantiations of field packs in the hash table, even
1480 though they are not themselves templates, to make lookup easier. */
1483 register_specialization (tree spec
, tree tmpl
, tree args
, bool is_friend
,
1487 spec_entry
**slot
= NULL
;
1490 gcc_assert ((TREE_CODE (tmpl
) == TEMPLATE_DECL
&& DECL_P (spec
))
1491 || (TREE_CODE (tmpl
) == FIELD_DECL
1492 && TREE_CODE (spec
) == NONTYPE_ARGUMENT_PACK
));
1494 if (TREE_CODE (spec
) == FUNCTION_DECL
1495 && uses_template_parms (DECL_TI_ARGS (spec
)))
1496 /* This is the FUNCTION_DECL for a partial instantiation. Don't
1497 register it; we want the corresponding TEMPLATE_DECL instead.
1498 We use `uses_template_parms (DECL_TI_ARGS (spec))' rather than
1499 the more obvious `uses_template_parms (spec)' to avoid problems
1500 with default function arguments. In particular, given
1501 something like this:
1503 template <class T> void f(T t1, T t = T())
1505 the default argument expression is not substituted for in an
1506 instantiation unless and until it is actually needed. */
1509 if (optimize_specialization_lookup_p (tmpl
))
1510 /* We don't put these specializations in the hash table, but we might
1511 want to give an error about a mismatch. */
1512 fn
= retrieve_specialization (tmpl
, args
, 0);
1520 hash
= spec_hasher::hash (&elt
);
1523 decl_specializations
->find_slot_with_hash (&elt
, hash
, INSERT
);
1525 fn
= ((spec_entry
*) *slot
)->spec
;
1530 /* We can sometimes try to re-register a specialization that we've
1531 already got. In particular, regenerate_decl_from_template calls
1532 duplicate_decls which will update the specialization list. But,
1533 we'll still get called again here anyhow. It's more convenient
1534 to simply allow this than to try to prevent it. */
1537 else if (fn
&& DECL_TEMPLATE_SPECIALIZATION (spec
))
1539 if (DECL_TEMPLATE_INSTANTIATION (fn
))
1541 if (DECL_ODR_USED (fn
)
1542 || DECL_EXPLICIT_INSTANTIATION (fn
))
1544 error ("specialization of %qD after instantiation",
1546 return error_mark_node
;
1551 /* This situation should occur only if the first
1552 specialization is an implicit instantiation, the
1553 second is an explicit specialization, and the
1554 implicit instantiation has not yet been used. That
1555 situation can occur if we have implicitly
1556 instantiated a member function and then specialized
1559 We can also wind up here if a friend declaration that
1560 looked like an instantiation turns out to be a
1563 template <class T> void foo(T);
1564 class S { friend void foo<>(int) };
1565 template <> void foo(int);
1567 We transform the existing DECL in place so that any
1568 pointers to it become pointers to the updated
1571 If there was a definition for the template, but not
1572 for the specialization, we want this to look as if
1573 there were no definition, and vice versa. */
1574 DECL_INITIAL (fn
) = NULL_TREE
;
1575 duplicate_decls (spec
, fn
, is_friend
);
1576 /* The call to duplicate_decls will have applied
1579 An explicit specialization of a function template
1580 is inline only if it is explicitly declared to be,
1581 and independently of whether its function template
1584 to the primary function; now copy the inline bits to
1585 the various clones. */
1586 FOR_EACH_CLONE (clone
, fn
)
1588 DECL_DECLARED_INLINE_P (clone
)
1589 = DECL_DECLARED_INLINE_P (fn
);
1590 DECL_SOURCE_LOCATION (clone
)
1591 = DECL_SOURCE_LOCATION (fn
);
1592 DECL_DELETED_FN (clone
)
1593 = DECL_DELETED_FN (fn
);
1595 check_specialization_namespace (tmpl
);
1600 else if (DECL_TEMPLATE_SPECIALIZATION (fn
))
1602 if (!duplicate_decls (spec
, fn
, is_friend
) && DECL_INITIAL (spec
))
1603 /* Dup decl failed, but this is a new definition. Set the
1604 line number so any errors match this new
1606 DECL_SOURCE_LOCATION (fn
) = DECL_SOURCE_LOCATION (spec
);
1612 return duplicate_decls (spec
, fn
, is_friend
);
1614 /* A specialization must be declared in the same namespace as the
1615 template it is specializing. */
1616 if (DECL_P (spec
) && DECL_TEMPLATE_SPECIALIZATION (spec
)
1617 && !check_specialization_namespace (tmpl
))
1618 DECL_CONTEXT (spec
) = DECL_CONTEXT (tmpl
);
1620 if (slot
!= NULL
/* !optimize_specialization_lookup_p (tmpl) */)
1622 spec_entry
*entry
= ggc_alloc
<spec_entry
> ();
1623 gcc_assert (tmpl
&& args
&& spec
);
1626 if ((TREE_CODE (spec
) == FUNCTION_DECL
&& DECL_NAMESPACE_SCOPE_P (spec
)
1627 && PRIMARY_TEMPLATE_P (tmpl
)
1628 && DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (tmpl
)) == NULL_TREE
)
1629 || variable_template_p (tmpl
))
1630 /* If TMPL is a forward declaration of a template function, keep a list
1631 of all specializations in case we need to reassign them to a friend
1632 template later in tsubst_friend_function.
1634 Also keep a list of all variable template instantiations so that
1635 process_partial_specialization can check whether a later partial
1636 specialization would have used it. */
1637 DECL_TEMPLATE_INSTANTIATIONS (tmpl
)
1638 = tree_cons (args
, spec
, DECL_TEMPLATE_INSTANTIATIONS (tmpl
));
1644 /* Returns true iff two spec_entry nodes are equivalent. */
1646 int comparing_specializations
;
1649 spec_hasher::equal (spec_entry
*e1
, spec_entry
*e2
)
1653 ++comparing_specializations
;
1654 equal
= (e1
->tmpl
== e2
->tmpl
1655 && comp_template_args (e1
->args
, e2
->args
));
1656 if (equal
&& flag_concepts
1657 /* tmpl could be a FIELD_DECL for a capture pack. */
1658 && TREE_CODE (e1
->tmpl
) == TEMPLATE_DECL
1659 && VAR_P (DECL_TEMPLATE_RESULT (e1
->tmpl
))
1660 && uses_template_parms (e1
->args
))
1662 /* Partial specializations of a variable template can be distinguished by
1664 tree c1
= e1
->spec
? get_constraints (e1
->spec
) : NULL_TREE
;
1665 tree c2
= e2
->spec
? get_constraints (e2
->spec
) : NULL_TREE
;
1666 equal
= equivalent_constraints (c1
, c2
);
1668 --comparing_specializations
;
1673 /* Returns a hash for a template TMPL and template arguments ARGS. */
1676 hash_tmpl_and_args (tree tmpl
, tree args
)
1678 hashval_t val
= iterative_hash_object (DECL_UID (tmpl
), 0);
1679 return iterative_hash_template_arg (args
, val
);
1682 /* Returns a hash for a spec_entry node based on the TMPL and ARGS members,
1686 spec_hasher::hash (spec_entry
*e
)
1688 return hash_tmpl_and_args (e
->tmpl
, e
->args
);
1691 /* Recursively calculate a hash value for a template argument ARG, for use
1692 in the hash tables of template specializations. */
1695 iterative_hash_template_arg (tree arg
, hashval_t val
)
1697 unsigned HOST_WIDE_INT i
;
1698 enum tree_code code
;
1701 if (arg
== NULL_TREE
)
1702 return iterative_hash_object (arg
, val
);
1707 if (TREE_CODE (arg
) == ARGUMENT_PACK_SELECT
)
1708 /* We can get one of these when re-hashing a previous entry in the middle
1709 of substituting into a pack expansion. Just look through it. */
1710 arg
= ARGUMENT_PACK_SELECT_FROM_PACK (arg
);
1712 code
= TREE_CODE (arg
);
1713 tclass
= TREE_CODE_CLASS (code
);
1715 val
= iterative_hash_object (code
, val
);
1722 case IDENTIFIER_NODE
:
1723 return iterative_hash_object (IDENTIFIER_HASH_VALUE (arg
), val
);
1727 int i
, len
= TREE_VEC_LENGTH (arg
);
1728 for (i
= 0; i
< len
; ++i
)
1729 val
= iterative_hash_template_arg (TREE_VEC_ELT (arg
, i
), val
);
1733 case TYPE_PACK_EXPANSION
:
1734 case EXPR_PACK_EXPANSION
:
1735 val
= iterative_hash_template_arg (PACK_EXPANSION_PATTERN (arg
), val
);
1736 return iterative_hash_template_arg (PACK_EXPANSION_EXTRA_ARGS (arg
), val
);
1738 case TYPE_ARGUMENT_PACK
:
1739 case NONTYPE_ARGUMENT_PACK
:
1740 return iterative_hash_template_arg (ARGUMENT_PACK_ARGS (arg
), val
);
1743 for (; arg
; arg
= TREE_CHAIN (arg
))
1744 val
= iterative_hash_template_arg (TREE_VALUE (arg
), val
);
1748 for (; arg
; arg
= OVL_NEXT (arg
))
1749 val
= iterative_hash_template_arg (OVL_CURRENT (arg
), val
);
1755 iterative_hash_template_arg (TREE_TYPE (arg
), val
);
1756 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (arg
), i
, field
, value
)
1758 val
= iterative_hash_template_arg (field
, val
);
1759 val
= iterative_hash_template_arg (value
, val
);
1765 if (!DECL_ARTIFICIAL (arg
))
1767 val
= iterative_hash_object (DECL_PARM_INDEX (arg
), val
);
1768 val
= iterative_hash_object (DECL_PARM_LEVEL (arg
), val
);
1770 return iterative_hash_template_arg (TREE_TYPE (arg
), val
);
1773 return iterative_hash_template_arg (TARGET_EXPR_INITIAL (arg
), val
);
1776 val
= iterative_hash_template_arg (PTRMEM_CST_CLASS (arg
), val
);
1777 return iterative_hash_template_arg (PTRMEM_CST_MEMBER (arg
), val
);
1779 case TEMPLATE_PARM_INDEX
:
1780 val
= iterative_hash_template_arg
1781 (TREE_TYPE (TEMPLATE_PARM_DECL (arg
)), val
);
1782 val
= iterative_hash_object (TEMPLATE_PARM_LEVEL (arg
), val
);
1783 return iterative_hash_object (TEMPLATE_PARM_IDX (arg
), val
);
1786 val
= iterative_hash_object (TRAIT_EXPR_KIND (arg
), val
);
1787 val
= iterative_hash_template_arg (TRAIT_EXPR_TYPE1 (arg
), val
);
1788 return iterative_hash_template_arg (TRAIT_EXPR_TYPE2 (arg
), val
);
1791 val
= iterative_hash_template_arg (BINFO_TYPE (BASELINK_BINFO (arg
)),
1793 return iterative_hash_template_arg (DECL_NAME (get_first_fn (arg
)),
1797 val
= iterative_hash_template_arg (TREE_OPERAND (arg
, 0), val
);
1798 code
= TREE_CODE (TREE_OPERAND (arg
, 1));
1799 val
= iterative_hash_object (code
, val
);
1800 return iterative_hash_template_arg (TREE_OPERAND (arg
, 2), val
);
1803 /* A lambda can't appear in a template arg, but don't crash on
1805 gcc_assert (seen_error ());
1809 case IMPLICIT_CONV_EXPR
:
1810 case STATIC_CAST_EXPR
:
1811 case REINTERPRET_CAST_EXPR
:
1812 case CONST_CAST_EXPR
:
1813 case DYNAMIC_CAST_EXPR
:
1815 val
= iterative_hash_template_arg (TREE_TYPE (arg
), val
);
1816 /* Now hash operands as usual. */
1826 if (alias_template_specialization_p (arg
))
1828 // We want an alias specialization that survived strip_typedefs
1829 // to hash differently from its TYPE_CANONICAL, to avoid hash
1830 // collisions that compare as different in template_args_equal.
1831 // These could be dependent specializations that strip_typedefs
1832 // left alone, or untouched specializations because
1833 // coerce_template_parms returns the unconverted template
1834 // arguments if it sees incomplete argument packs.
1835 tree ti
= TYPE_TEMPLATE_INFO (arg
);
1836 return hash_tmpl_and_args (TI_TEMPLATE (ti
), TI_ARGS (ti
));
1838 if (TYPE_CANONICAL (arg
))
1839 return iterative_hash_object (TYPE_HASH (TYPE_CANONICAL (arg
)),
1841 else if (TREE_CODE (arg
) == DECLTYPE_TYPE
)
1842 return iterative_hash_template_arg (DECLTYPE_TYPE_EXPR (arg
), val
);
1843 /* Otherwise just compare the types during lookup. */
1846 case tcc_declaration
:
1848 return iterative_hash_expr (arg
, val
);
1851 gcc_assert (IS_EXPR_CODE_CLASS (tclass
));
1853 unsigned n
= cp_tree_operand_length (arg
);
1854 for (i
= 0; i
< n
; ++i
)
1855 val
= iterative_hash_template_arg (TREE_OPERAND (arg
, i
), val
);
1863 /* Unregister the specialization SPEC as a specialization of TMPL.
1864 Replace it with NEW_SPEC, if NEW_SPEC is non-NULL. Returns true
1865 if the SPEC was listed as a specialization of TMPL.
1867 Note that SPEC has been ggc_freed, so we can't look inside it. */
1870 reregister_specialization (tree spec
, tree tinfo
, tree new_spec
)
1875 elt
.tmpl
= most_general_template (TI_TEMPLATE (tinfo
));
1876 elt
.args
= TI_ARGS (tinfo
);
1877 elt
.spec
= NULL_TREE
;
1879 entry
= decl_specializations
->find (&elt
);
1882 gcc_assert (entry
->spec
== spec
|| entry
->spec
== new_spec
);
1883 gcc_assert (new_spec
!= NULL_TREE
);
1884 entry
->spec
= new_spec
;
1891 /* Like register_specialization, but for local declarations. We are
1892 registering SPEC, an instantiation of TMPL. */
1895 register_local_specialization (tree spec
, tree tmpl
)
1897 local_specializations
->put (tmpl
, spec
);
1900 /* TYPE is a class type. Returns true if TYPE is an explicitly
1901 specialized class. */
1904 explicit_class_specialization_p (tree type
)
1906 if (!CLASSTYPE_TEMPLATE_SPECIALIZATION (type
))
1908 return !uses_template_parms (CLASSTYPE_TI_ARGS (type
));
1911 /* Print the list of functions at FNS, going through all the overloads
1912 for each element of the list. Alternatively, FNS can not be a
1913 TREE_LIST, in which case it will be printed together with all the
1916 MORE and *STR should respectively be FALSE and NULL when the function
1917 is called from the outside. They are used internally on recursive
1918 calls. print_candidates manages the two parameters and leaves NULL
1919 in *STR when it ends. */
1922 print_candidates_1 (tree fns
, bool more
, const char **str
)
1925 char *spaces
= NULL
;
1927 for (fn
= fns
; fn
; fn
= OVL_NEXT (fn
))
1928 if (TREE_CODE (fn
) == TREE_LIST
)
1930 for (fn2
= fn
; fn2
!= NULL_TREE
; fn2
= TREE_CHAIN (fn2
))
1931 print_candidates_1 (TREE_VALUE (fn2
),
1932 TREE_CHAIN (fn2
) || more
, str
);
1936 tree cand
= OVL_CURRENT (fn
);
1939 /* Pick the prefix string. */
1940 if (!more
&& !OVL_NEXT (fns
))
1942 inform (DECL_SOURCE_LOCATION (cand
),
1943 "candidate is: %#D", cand
);
1947 *str
= _("candidates are:");
1948 spaces
= get_spaces (*str
);
1950 inform (DECL_SOURCE_LOCATION (cand
), "%s %#D", *str
, cand
);
1951 *str
= spaces
? spaces
: *str
;
1961 /* Print the list of candidate FNS in an error message. FNS can also
1962 be a TREE_LIST of non-functions in the case of an ambiguous lookup. */
1965 print_candidates (tree fns
)
1967 const char *str
= NULL
;
1968 print_candidates_1 (fns
, false, &str
);
1969 gcc_assert (str
== NULL
);
1972 /* Get a (possibly) constrained template declaration for the
1973 purpose of ordering candidates. */
1975 get_template_for_ordering (tree list
)
1977 gcc_assert (TREE_CODE (list
) == TREE_LIST
);
1978 tree f
= TREE_VALUE (list
);
1979 if (tree ti
= DECL_TEMPLATE_INFO (f
))
1980 return TI_TEMPLATE (ti
);
1984 /* Among candidates having the same signature, return the
1985 most constrained or NULL_TREE if there is no best candidate.
1986 If the signatures of candidates vary (e.g., template
1987 specialization vs. member function), then there can be no
1990 Note that we don't compare constraints on the functions
1991 themselves, but rather those of their templates. */
1993 most_constrained_function (tree candidates
)
1995 // Try to find the best candidate in a first pass.
1996 tree champ
= candidates
;
1997 for (tree c
= TREE_CHAIN (champ
); c
; c
= TREE_CHAIN (c
))
1999 int winner
= more_constrained (get_template_for_ordering (champ
),
2000 get_template_for_ordering (c
));
2002 champ
= c
; // The candidate is more constrained
2003 else if (winner
== 0)
2004 return NULL_TREE
; // Neither is more constrained
2007 // Verify that the champ is better than previous candidates.
2008 for (tree c
= candidates
; c
!= champ
; c
= TREE_CHAIN (c
)) {
2009 if (!more_constrained (get_template_for_ordering (champ
),
2010 get_template_for_ordering (c
)))
2018 /* Returns the template (one of the functions given by TEMPLATE_ID)
2019 which can be specialized to match the indicated DECL with the
2020 explicit template args given in TEMPLATE_ID. The DECL may be
2021 NULL_TREE if none is available. In that case, the functions in
2022 TEMPLATE_ID are non-members.
2024 If NEED_MEMBER_TEMPLATE is nonzero the function is known to be a
2025 specialization of a member template.
2027 The TEMPLATE_COUNT is the number of references to qualifying
2028 template classes that appeared in the name of the function. See
2029 check_explicit_specialization for a more accurate description.
2031 TSK indicates what kind of template declaration (if any) is being
2032 declared. TSK_TEMPLATE indicates that the declaration given by
2033 DECL, though a FUNCTION_DECL, has template parameters, and is
2034 therefore a template function.
2036 The template args (those explicitly specified and those deduced)
2037 are output in a newly created vector *TARGS_OUT.
2039 If it is impossible to determine the result, an error message is
2040 issued. The error_mark_node is returned to indicate failure. */
2043 determine_specialization (tree template_id
,
2046 int need_member_template
,
2052 tree explicit_targs
;
2053 tree candidates
= NULL_TREE
;
2055 /* A TREE_LIST of templates of which DECL may be a specialization.
2056 The TREE_VALUE of each node is a TEMPLATE_DECL. The
2057 corresponding TREE_PURPOSE is the set of template arguments that,
2058 when used to instantiate the template, would produce a function
2059 with the signature of DECL. */
2060 tree templates
= NULL_TREE
;
2062 cp_binding_level
*b
;
2064 *targs_out
= NULL_TREE
;
2066 if (template_id
== error_mark_node
|| decl
== error_mark_node
)
2067 return error_mark_node
;
2069 /* We shouldn't be specializing a member template of an
2070 unspecialized class template; we already gave an error in
2071 check_specialization_scope, now avoid crashing. */
2072 if (template_count
&& DECL_CLASS_SCOPE_P (decl
)
2073 && template_class_depth (DECL_CONTEXT (decl
)) > 0)
2075 gcc_assert (errorcount
);
2076 return error_mark_node
;
2079 fns
= TREE_OPERAND (template_id
, 0);
2080 explicit_targs
= TREE_OPERAND (template_id
, 1);
2082 if (fns
== error_mark_node
)
2083 return error_mark_node
;
2085 /* Check for baselinks. */
2086 if (BASELINK_P (fns
))
2087 fns
= BASELINK_FUNCTIONS (fns
);
2089 if (TREE_CODE (decl
) == FUNCTION_DECL
&& !is_overloaded_fn (fns
))
2091 error ("%qD is not a function template", fns
);
2092 return error_mark_node
;
2094 else if (VAR_P (decl
) && !variable_template_p (fns
))
2096 error ("%qD is not a variable template", fns
);
2097 return error_mark_node
;
2100 /* Count the number of template headers specified for this
2103 for (b
= current_binding_level
;
2104 b
->kind
== sk_template_parms
;
2108 tree orig_fns
= fns
;
2110 if (variable_template_p (fns
))
2112 tree parms
= INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (fns
));
2113 targs
= coerce_template_parms (parms
, explicit_targs
, fns
,
2114 tf_warning_or_error
,
2115 /*req_all*/true, /*use_defarg*/true);
2116 if (targs
!= error_mark_node
)
2117 templates
= tree_cons (targs
, fns
, templates
);
2119 else for (; fns
; fns
= OVL_NEXT (fns
))
2121 tree fn
= OVL_CURRENT (fns
);
2123 if (TREE_CODE (fn
) == TEMPLATE_DECL
)
2125 tree decl_arg_types
;
2129 /* In case of explicit specialization, we need to check if
2130 the number of template headers appearing in the specialization
2131 is correct. This is usually done in check_explicit_specialization,
2132 but the check done there cannot be exhaustive when specializing
2133 member functions. Consider the following code:
2135 template <> void A<int>::f(int);
2136 template <> template <> void A<int>::f(int);
2138 Assuming that A<int> is not itself an explicit specialization
2139 already, the first line specializes "f" which is a non-template
2140 member function, whilst the second line specializes "f" which
2141 is a template member function. So both lines are syntactically
2142 correct, and check_explicit_specialization does not reject
2145 Here, we can do better, as we are matching the specialization
2146 against the declarations. We count the number of template
2147 headers, and we check if they match TEMPLATE_COUNT + 1
2148 (TEMPLATE_COUNT is the number of qualifying template classes,
2149 plus there must be another header for the member template
2152 Notice that if header_count is zero, this is not a
2153 specialization but rather a template instantiation, so there
2154 is no check we can perform here. */
2155 if (header_count
&& header_count
!= template_count
+ 1)
2158 /* Check that the number of template arguments at the
2159 innermost level for DECL is the same as for FN. */
2160 if (current_binding_level
->kind
== sk_template_parms
2161 && !current_binding_level
->explicit_spec_p
2162 && (TREE_VEC_LENGTH (DECL_INNERMOST_TEMPLATE_PARMS (fn
))
2163 != TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS
2164 (current_template_parms
))))
2167 /* DECL might be a specialization of FN. */
2168 decl_arg_types
= TYPE_ARG_TYPES (TREE_TYPE (decl
));
2169 fn_arg_types
= TYPE_ARG_TYPES (TREE_TYPE (fn
));
2171 /* For a non-static member function, we need to make sure
2172 that the const qualification is the same. Since
2173 get_bindings does not try to merge the "this" parameter,
2174 we must do the comparison explicitly. */
2175 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn
)
2176 && !same_type_p (TREE_VALUE (fn_arg_types
),
2177 TREE_VALUE (decl_arg_types
)))
2180 /* Skip the "this" parameter and, for constructors of
2181 classes with virtual bases, the VTT parameter. A
2182 full specialization of a constructor will have a VTT
2183 parameter, but a template never will. */
2185 = skip_artificial_parms_for (decl
, decl_arg_types
);
2187 = skip_artificial_parms_for (fn
, fn_arg_types
);
2189 /* Function templates cannot be specializations; there are
2190 no partial specializations of functions. Therefore, if
2191 the type of DECL does not match FN, there is no
2194 Note that it should never be the case that we have both
2195 candidates added here, and for regular member functions
2197 if (tsk
== tsk_template
)
2199 if (compparms (fn_arg_types
, decl_arg_types
))
2200 candidates
= tree_cons (NULL_TREE
, fn
, candidates
);
2204 /* See whether this function might be a specialization of this
2205 template. Suppress access control because we might be trying
2206 to make this specialization a friend, and we have already done
2207 access control for the declaration of the specialization. */
2208 push_deferring_access_checks (dk_no_check
);
2209 targs
= get_bindings (fn
, decl
, explicit_targs
, /*check_ret=*/true);
2210 pop_deferring_access_checks ();
2213 /* We cannot deduce template arguments that when used to
2214 specialize TMPL will produce DECL. */
2217 /* Remove, from the set of candidates, all those functions
2218 whose constraints are not satisfied. */
2219 if (flag_concepts
&& !constraints_satisfied_p (fn
, targs
))
2222 // Then, try to form the new function type.
2223 insttype
= tsubst (TREE_TYPE (fn
), targs
, tf_none
, NULL_TREE
);
2224 if (insttype
== error_mark_node
)
2227 = skip_artificial_parms_for (fn
, TYPE_ARG_TYPES (insttype
));
2228 if (!compparms (fn_arg_types
, decl_arg_types
))
2231 /* Save this template, and the arguments deduced. */
2232 templates
= tree_cons (targs
, fn
, templates
);
2234 else if (need_member_template
)
2235 /* FN is an ordinary member function, and we need a
2236 specialization of a member template. */
2238 else if (TREE_CODE (fn
) != FUNCTION_DECL
)
2239 /* We can get IDENTIFIER_NODEs here in certain erroneous
2242 else if (!DECL_FUNCTION_MEMBER_P (fn
))
2243 /* This is just an ordinary non-member function. Nothing can
2244 be a specialization of that. */
2246 else if (DECL_ARTIFICIAL (fn
))
2247 /* Cannot specialize functions that are created implicitly. */
2251 tree decl_arg_types
;
2253 /* This is an ordinary member function. However, since
2254 we're here, we can assume its enclosing class is a
2255 template class. For example,
2257 template <typename T> struct S { void f(); };
2258 template <> void S<int>::f() {}
2260 Here, S<int>::f is a non-template, but S<int> is a
2261 template class. If FN has the same type as DECL, we
2262 might be in business. */
2264 if (!DECL_TEMPLATE_INFO (fn
))
2265 /* Its enclosing class is an explicit specialization
2266 of a template class. This is not a candidate. */
2269 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl
)),
2270 TREE_TYPE (TREE_TYPE (fn
))))
2271 /* The return types differ. */
2274 /* Adjust the type of DECL in case FN is a static member. */
2275 decl_arg_types
= TYPE_ARG_TYPES (TREE_TYPE (decl
));
2276 if (DECL_STATIC_FUNCTION_P (fn
)
2277 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl
))
2278 decl_arg_types
= TREE_CHAIN (decl_arg_types
);
2280 if (!compparms (TYPE_ARG_TYPES (TREE_TYPE (fn
)),
2284 // If the deduced arguments do not satisfy the constraints,
2285 // this is not a candidate.
2286 if (flag_concepts
&& !constraints_satisfied_p (fn
))
2289 // Add the candidate.
2290 candidates
= tree_cons (NULL_TREE
, fn
, candidates
);
2294 if (templates
&& TREE_CHAIN (templates
))
2300 It is possible for a specialization with a given function
2301 signature to be instantiated from more than one function
2302 template. In such cases, explicit specification of the
2303 template arguments must be used to uniquely identify the
2304 function template specialization being specialized.
2306 Note that here, there's no suggestion that we're supposed to
2307 determine which of the candidate templates is most
2308 specialized. However, we, also have:
2312 Partial ordering of overloaded function template
2313 declarations is used in the following contexts to select
2314 the function template to which a function template
2315 specialization refers:
2317 -- when an explicit specialization refers to a function
2320 So, we do use the partial ordering rules, at least for now.
2321 This extension can only serve to make invalid programs valid,
2322 so it's safe. And, there is strong anecdotal evidence that
2323 the committee intended the partial ordering rules to apply;
2324 the EDG front end has that behavior, and John Spicer claims
2325 that the committee simply forgot to delete the wording in
2326 [temp.expl.spec]. */
2327 tree tmpl
= most_specialized_instantiation (templates
);
2328 if (tmpl
!= error_mark_node
)
2331 TREE_CHAIN (templates
) = NULL_TREE
;
2335 // Concepts allows multiple declarations of member functions
2336 // with the same signature. Like above, we need to rely on
2337 // on the partial ordering of those candidates to determine which
2339 if (flag_concepts
&& candidates
&& TREE_CHAIN (candidates
))
2341 if (tree cand
= most_constrained_function (candidates
))
2344 TREE_CHAIN (cand
) = NULL_TREE
;
2348 if (templates
== NULL_TREE
&& candidates
== NULL_TREE
)
2350 error ("template-id %qD for %q+D does not match any template "
2351 "declaration", template_id
, decl
);
2352 if (header_count
&& header_count
!= template_count
+ 1)
2353 inform (input_location
, "saw %d %<template<>%>, need %d for "
2354 "specializing a member function template",
2355 header_count
, template_count
+ 1);
2357 print_candidates (orig_fns
);
2358 return error_mark_node
;
2360 else if ((templates
&& TREE_CHAIN (templates
))
2361 || (candidates
&& TREE_CHAIN (candidates
))
2362 || (templates
&& candidates
))
2364 error ("ambiguous template specialization %qD for %q+D",
2366 candidates
= chainon (candidates
, templates
);
2367 print_candidates (candidates
);
2368 return error_mark_node
;
2371 /* We have one, and exactly one, match. */
2374 tree fn
= TREE_VALUE (candidates
);
2375 *targs_out
= copy_node (DECL_TI_ARGS (fn
));
2377 // Propagate the candidate's constraints to the declaration.
2378 set_constraints (decl
, get_constraints (fn
));
2380 /* DECL is a re-declaration or partial instantiation of a template
2382 if (TREE_CODE (fn
) == TEMPLATE_DECL
)
2384 /* It was a specialization of an ordinary member function in a
2386 return DECL_TI_TEMPLATE (fn
);
2389 /* It was a specialization of a template. */
2390 targs
= DECL_TI_ARGS (DECL_TEMPLATE_RESULT (TREE_VALUE (templates
)));
2391 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (targs
))
2393 *targs_out
= copy_node (targs
);
2394 SET_TMPL_ARGS_LEVEL (*targs_out
,
2395 TMPL_ARGS_DEPTH (*targs_out
),
2396 TREE_PURPOSE (templates
));
2399 *targs_out
= TREE_PURPOSE (templates
);
2400 return TREE_VALUE (templates
);
2403 /* Returns a chain of parameter types, exactly like the SPEC_TYPES,
2404 but with the default argument values filled in from those in the
2408 copy_default_args_to_explicit_spec_1 (tree spec_types
,
2411 tree new_spec_types
;
2416 if (spec_types
== void_list_node
)
2417 return void_list_node
;
2419 /* Substitute into the rest of the list. */
2421 copy_default_args_to_explicit_spec_1 (TREE_CHAIN (spec_types
),
2422 TREE_CHAIN (tmpl_types
));
2424 /* Add the default argument for this parameter. */
2425 return hash_tree_cons (TREE_PURPOSE (tmpl_types
),
2426 TREE_VALUE (spec_types
),
2430 /* DECL is an explicit specialization. Replicate default arguments
2431 from the template it specializes. (That way, code like:
2433 template <class T> void f(T = 3);
2434 template <> void f(double);
2437 works, as required.) An alternative approach would be to look up
2438 the correct default arguments at the call-site, but this approach
2439 is consistent with how implicit instantiations are handled. */
2442 copy_default_args_to_explicit_spec (tree decl
)
2447 tree new_spec_types
;
2451 tree object_type
= NULL_TREE
;
2452 tree in_charge
= NULL_TREE
;
2453 tree vtt
= NULL_TREE
;
2455 /* See if there's anything we need to do. */
2456 tmpl
= DECL_TI_TEMPLATE (decl
);
2457 tmpl_types
= TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (tmpl
)));
2458 for (t
= tmpl_types
; t
; t
= TREE_CHAIN (t
))
2459 if (TREE_PURPOSE (t
))
2464 old_type
= TREE_TYPE (decl
);
2465 spec_types
= TYPE_ARG_TYPES (old_type
);
2467 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl
))
2469 /* Remove the this pointer, but remember the object's type for
2471 object_type
= TREE_TYPE (TREE_VALUE (spec_types
));
2472 spec_types
= TREE_CHAIN (spec_types
);
2473 tmpl_types
= TREE_CHAIN (tmpl_types
);
2475 if (DECL_HAS_IN_CHARGE_PARM_P (decl
))
2477 /* DECL may contain more parameters than TMPL due to the extra
2478 in-charge parameter in constructors and destructors. */
2479 in_charge
= spec_types
;
2480 spec_types
= TREE_CHAIN (spec_types
);
2482 if (DECL_HAS_VTT_PARM_P (decl
))
2485 spec_types
= TREE_CHAIN (spec_types
);
2489 /* Compute the merged default arguments. */
2491 copy_default_args_to_explicit_spec_1 (spec_types
, tmpl_types
);
2493 /* Compute the new FUNCTION_TYPE. */
2497 new_spec_types
= hash_tree_cons (TREE_PURPOSE (vtt
),
2502 /* Put the in-charge parameter back. */
2503 new_spec_types
= hash_tree_cons (TREE_PURPOSE (in_charge
),
2504 TREE_VALUE (in_charge
),
2507 new_type
= build_method_type_directly (object_type
,
2508 TREE_TYPE (old_type
),
2512 new_type
= build_function_type (TREE_TYPE (old_type
),
2514 new_type
= cp_build_type_attribute_variant (new_type
,
2515 TYPE_ATTRIBUTES (old_type
));
2516 new_type
= build_exception_variant (new_type
,
2517 TYPE_RAISES_EXCEPTIONS (old_type
));
2519 if (TYPE_HAS_LATE_RETURN_TYPE (old_type
))
2520 TYPE_HAS_LATE_RETURN_TYPE (new_type
) = 1;
2522 TREE_TYPE (decl
) = new_type
;
2525 /* Return the number of template headers we expect to see for a definition
2526 or specialization of CTYPE or one of its non-template members. */
2529 num_template_headers_for_class (tree ctype
)
2531 int num_templates
= 0;
2533 while (ctype
&& CLASS_TYPE_P (ctype
))
2535 /* You're supposed to have one `template <...>' for every
2536 template class, but you don't need one for a full
2537 specialization. For example:
2539 template <class T> struct S{};
2540 template <> struct S<int> { void f(); };
2541 void S<int>::f () {}
2543 is correct; there shouldn't be a `template <>' for the
2544 definition of `S<int>::f'. */
2545 if (!CLASSTYPE_TEMPLATE_INFO (ctype
))
2546 /* If CTYPE does not have template information of any
2547 kind, then it is not a template, nor is it nested
2548 within a template. */
2550 if (explicit_class_specialization_p (ctype
))
2552 if (PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (ctype
)))
2555 ctype
= TYPE_CONTEXT (ctype
);
2558 return num_templates
;
2561 /* Do a simple sanity check on the template headers that precede the
2562 variable declaration DECL. */
2565 check_template_variable (tree decl
)
2567 tree ctx
= CP_DECL_CONTEXT (decl
);
2568 int wanted
= num_template_headers_for_class (ctx
);
2569 if (DECL_LANG_SPECIFIC (decl
) && DECL_TEMPLATE_INFO (decl
)
2570 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl
)))
2572 if (cxx_dialect
< cxx14
)
2573 pedwarn (DECL_SOURCE_LOCATION (decl
), 0,
2574 "variable templates only available with "
2575 "-std=c++14 or -std=gnu++14");
2577 // Namespace-scope variable templates should have a template header.
2580 if (template_header_count
> wanted
)
2582 bool warned
= pedwarn (DECL_SOURCE_LOCATION (decl
), 0,
2583 "too many template headers for %D (should be %d)",
2585 if (warned
&& CLASS_TYPE_P (ctx
)
2586 && CLASSTYPE_TEMPLATE_SPECIALIZATION (ctx
))
2587 inform (DECL_SOURCE_LOCATION (decl
),
2588 "members of an explicitly specialized class are defined "
2589 "without a template header");
2593 /* Check to see if the function just declared, as indicated in
2594 DECLARATOR, and in DECL, is a specialization of a function
2595 template. We may also discover that the declaration is an explicit
2596 instantiation at this point.
2598 Returns DECL, or an equivalent declaration that should be used
2599 instead if all goes well. Issues an error message if something is
2600 amiss. Returns error_mark_node if the error is not easily
2603 FLAGS is a bitmask consisting of the following flags:
2605 2: The function has a definition.
2606 4: The function is a friend.
2608 The TEMPLATE_COUNT is the number of references to qualifying
2609 template classes that appeared in the name of the function. For
2612 template <class T> struct S { void f(); };
2615 the TEMPLATE_COUNT would be 1. However, explicitly specialized
2616 classes are not counted in the TEMPLATE_COUNT, so that in
2618 template <class T> struct S {};
2619 template <> struct S<int> { void f(); }
2620 template <> void S<int>::f();
2622 the TEMPLATE_COUNT would be 0. (Note that this declaration is
2623 invalid; there should be no template <>.)
2625 If the function is a specialization, it is marked as such via
2626 DECL_TEMPLATE_SPECIALIZATION. Furthermore, its DECL_TEMPLATE_INFO
2627 is set up correctly, and it is added to the list of specializations
2628 for that template. */
2631 check_explicit_specialization (tree declarator
,
2636 int have_def
= flags
& 2;
2637 int is_friend
= flags
& 4;
2638 bool is_concept
= flags
& 8;
2639 int specialization
= 0;
2640 int explicit_instantiation
= 0;
2641 int member_specialization
= 0;
2642 tree ctype
= DECL_CLASS_CONTEXT (decl
);
2643 tree dname
= DECL_NAME (decl
);
2648 if (!processing_specialization
)
2651 tsk
= tsk_excessive_parms
;
2654 tsk
= current_tmpl_spec_kind (template_count
);
2659 if (processing_specialization
&& !VAR_P (decl
))
2662 SET_DECL_TEMPLATE_SPECIALIZATION (decl
);
2664 else if (TREE_CODE (declarator
) == TEMPLATE_ID_EXPR
)
2667 /* This could be something like:
2669 template <class T> void f(T);
2670 class S { friend void f<>(int); } */
2674 /* This case handles bogus declarations like template <>
2675 template <class T> void f<int>(); */
2677 error ("template-id %qD in declaration of primary template",
2684 case tsk_invalid_member_spec
:
2685 /* The error has already been reported in
2686 check_specialization_scope. */
2687 return error_mark_node
;
2689 case tsk_invalid_expl_inst
:
2690 error ("template parameter list used in explicit instantiation");
2696 error ("definition provided for explicit instantiation");
2698 explicit_instantiation
= 1;
2701 case tsk_excessive_parms
:
2702 case tsk_insufficient_parms
:
2703 if (tsk
== tsk_excessive_parms
)
2704 error ("too many template parameter lists in declaration of %qD",
2706 else if (template_header_count
)
2707 error("too few template parameter lists in declaration of %qD", decl
);
2709 error("explicit specialization of %qD must be introduced by "
2710 "%<template <>%>", decl
);
2715 error ("explicit specialization declared %<concept%>");
2717 if (VAR_P (decl
) && TREE_CODE (declarator
) != TEMPLATE_ID_EXPR
)
2718 /* In cases like template<> constexpr bool v = true;
2719 We'll give an error in check_template_variable. */
2722 SET_DECL_TEMPLATE_SPECIALIZATION (decl
);
2724 member_specialization
= 1;
2730 if (TREE_CODE (declarator
) == TEMPLATE_ID_EXPR
)
2732 /* This case handles bogus declarations like template <>
2733 template <class T> void f<int>(); */
2735 if (!uses_template_parms (declarator
))
2736 error ("template-id %qD in declaration of primary template",
2738 else if (variable_template_p (TREE_OPERAND (declarator
, 0)))
2740 /* Partial specialization of variable template. */
2741 SET_DECL_TEMPLATE_SPECIALIZATION (decl
);
2745 else if (cxx_dialect
< cxx14
)
2746 error ("non-type partial specialization %qD "
2747 "is not allowed", declarator
);
2749 error ("non-class, non-variable partial specialization %qD "
2750 "is not allowed", declarator
);
2755 if (ctype
&& CLASSTYPE_TEMPLATE_INSTANTIATION (ctype
))
2756 /* This is a specialization of a member template, without
2757 specialization the containing class. Something like:
2759 template <class T> struct S {
2760 template <class U> void f (U);
2762 template <> template <class U> void S<int>::f(U) {}
2764 That's a specialization -- but of the entire template. */
2772 if ((specialization
|| member_specialization
)
2773 /* This doesn't apply to variable templates. */
2774 && (TREE_CODE (TREE_TYPE (decl
)) == FUNCTION_TYPE
2775 || TREE_CODE (TREE_TYPE (decl
)) == METHOD_TYPE
))
2777 tree t
= TYPE_ARG_TYPES (TREE_TYPE (decl
));
2778 for (; t
; t
= TREE_CHAIN (t
))
2779 if (TREE_PURPOSE (t
))
2781 permerror (input_location
,
2782 "default argument specified in explicit specialization");
2787 if (specialization
|| member_specialization
|| explicit_instantiation
)
2789 tree tmpl
= NULL_TREE
;
2790 tree targs
= NULL_TREE
;
2791 bool was_template_id
= (TREE_CODE (declarator
) == TEMPLATE_ID_EXPR
);
2793 /* Make sure that the declarator is a TEMPLATE_ID_EXPR. */
2794 if (!was_template_id
)
2798 gcc_assert (identifier_p (declarator
));
2803 /* If there is no class context, the explicit instantiation
2804 must be at namespace scope. */
2805 gcc_assert (DECL_NAMESPACE_SCOPE_P (decl
));
2807 /* Find the namespace binding, using the declaration
2809 fns
= lookup_qualified_name (CP_DECL_CONTEXT (decl
), dname
,
2811 if (fns
== error_mark_node
|| !is_overloaded_fn (fns
))
2813 error ("%qD is not a template function", dname
);
2814 fns
= error_mark_node
;
2818 declarator
= lookup_template_function (fns
, NULL_TREE
);
2821 if (declarator
== error_mark_node
)
2822 return error_mark_node
;
2824 if (ctype
!= NULL_TREE
&& TYPE_BEING_DEFINED (ctype
))
2826 if (!explicit_instantiation
)
2827 /* A specialization in class scope. This is invalid,
2828 but the error will already have been flagged by
2829 check_specialization_scope. */
2830 return error_mark_node
;
2833 /* It's not valid to write an explicit instantiation in
2836 class C { template void f(); }
2838 This case is caught by the parser. However, on
2841 template class C { void f(); };
2843 (which is invalid) we can get here. The error will be
2850 else if (ctype
!= NULL_TREE
2851 && (identifier_p (TREE_OPERAND (declarator
, 0))))
2853 // We'll match variable templates in start_decl.
2857 /* Find the list of functions in ctype that have the same
2858 name as the declared function. */
2859 tree name
= TREE_OPERAND (declarator
, 0);
2860 tree fns
= NULL_TREE
;
2863 if (constructor_name_p (name
, ctype
))
2865 int is_constructor
= DECL_CONSTRUCTOR_P (decl
);
2867 if (is_constructor
? !TYPE_HAS_USER_CONSTRUCTOR (ctype
)
2868 : !CLASSTYPE_DESTRUCTORS (ctype
))
2870 /* From [temp.expl.spec]:
2872 If such an explicit specialization for the member
2873 of a class template names an implicitly-declared
2874 special member function (clause _special_), the
2875 program is ill-formed.
2877 Similar language is found in [temp.explicit]. */
2878 error ("specialization of implicitly-declared special member function");
2879 return error_mark_node
;
2882 name
= is_constructor
? ctor_identifier
: dtor_identifier
;
2885 if (!DECL_CONV_FN_P (decl
))
2887 idx
= lookup_fnfields_1 (ctype
, name
);
2889 fns
= (*CLASSTYPE_METHOD_VEC (ctype
))[idx
];
2893 vec
<tree
, va_gc
> *methods
;
2896 /* For a type-conversion operator, we cannot do a
2897 name-based lookup. We might be looking for `operator
2898 int' which will be a specialization of `operator T'.
2899 So, we find *all* the conversion operators, and then
2900 select from them. */
2903 methods
= CLASSTYPE_METHOD_VEC (ctype
);
2905 for (idx
= CLASSTYPE_FIRST_CONVERSION_SLOT
;
2906 methods
->iterate (idx
, &ovl
);
2909 if (!DECL_CONV_FN_P (OVL_CURRENT (ovl
)))
2910 /* There are no more conversion functions. */
2913 /* Glue all these conversion functions together
2914 with those we already have. */
2915 for (; ovl
; ovl
= OVL_NEXT (ovl
))
2916 fns
= ovl_cons (OVL_CURRENT (ovl
), fns
);
2920 if (fns
== NULL_TREE
)
2922 error ("no member function %qD declared in %qT", name
, ctype
);
2923 return error_mark_node
;
2926 TREE_OPERAND (declarator
, 0) = fns
;
2929 /* Figure out what exactly is being specialized at this point.
2930 Note that for an explicit instantiation, even one for a
2931 member function, we cannot tell apriori whether the
2932 instantiation is for a member template, or just a member
2933 function of a template class. Even if a member template is
2934 being instantiated, the member template arguments may be
2935 elided if they can be deduced from the rest of the
2937 tmpl
= determine_specialization (declarator
, decl
,
2939 member_specialization
,
2943 if (!tmpl
|| tmpl
== error_mark_node
)
2944 /* We couldn't figure out what this declaration was
2946 return error_mark_node
;
2949 if (!ctype
&& !was_template_id
2950 && (specialization
|| member_specialization
2951 || explicit_instantiation
)
2952 && !is_associated_namespace (CP_DECL_CONTEXT (decl
),
2953 CP_DECL_CONTEXT (tmpl
)))
2954 error ("%qD is not declared in %qD",
2955 tmpl
, current_namespace
);
2957 tree gen_tmpl
= most_general_template (tmpl
);
2959 if (explicit_instantiation
)
2961 /* We don't set DECL_EXPLICIT_INSTANTIATION here; that
2962 is done by do_decl_instantiation later. */
2964 int arg_depth
= TMPL_ARGS_DEPTH (targs
);
2965 int parm_depth
= TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl
));
2967 if (arg_depth
> parm_depth
)
2969 /* If TMPL is not the most general template (for
2970 example, if TMPL is a friend template that is
2971 injected into namespace scope), then there will
2972 be too many levels of TARGS. Remove some of them
2977 new_targs
= make_tree_vec (parm_depth
);
2978 for (i
= arg_depth
- parm_depth
; i
< arg_depth
; ++i
)
2979 TREE_VEC_ELT (new_targs
, i
- (arg_depth
- parm_depth
))
2980 = TREE_VEC_ELT (targs
, i
);
2984 return instantiate_template (tmpl
, targs
, tf_error
);
2987 /* If we thought that the DECL was a member function, but it
2988 turns out to be specializing a static member function,
2989 make DECL a static member function as well. */
2990 if (DECL_FUNCTION_TEMPLATE_P (tmpl
)
2991 && DECL_STATIC_FUNCTION_P (tmpl
)
2992 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl
))
2993 revert_static_member_fn (decl
);
2995 /* If this is a specialization of a member template of a
2996 template class, we want to return the TEMPLATE_DECL, not
2997 the specialization of it. */
2998 if (tsk
== tsk_template
&& !was_template_id
)
3000 tree result
= DECL_TEMPLATE_RESULT (tmpl
);
3001 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl
);
3002 DECL_INITIAL (result
) = NULL_TREE
;
3006 DECL_SOURCE_LOCATION (tmpl
) = DECL_SOURCE_LOCATION (decl
);
3007 DECL_SOURCE_LOCATION (result
)
3008 = DECL_SOURCE_LOCATION (decl
);
3009 /* We want to use the argument list specified in the
3010 definition, not in the original declaration. */
3011 DECL_ARGUMENTS (result
) = DECL_ARGUMENTS (decl
);
3012 for (parm
= DECL_ARGUMENTS (result
); parm
;
3013 parm
= DECL_CHAIN (parm
))
3014 DECL_CONTEXT (parm
) = result
;
3016 return register_specialization (tmpl
, gen_tmpl
, targs
,
3020 /* Set up the DECL_TEMPLATE_INFO for DECL. */
3021 DECL_TEMPLATE_INFO (decl
) = build_template_info (tmpl
, targs
);
3023 if (was_template_id
)
3024 TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (decl
)) = true;
3026 /* Inherit default function arguments from the template
3027 DECL is specializing. */
3028 if (DECL_FUNCTION_TEMPLATE_P (tmpl
))
3029 copy_default_args_to_explicit_spec (decl
);
3031 /* This specialization has the same protection as the
3032 template it specializes. */
3033 TREE_PRIVATE (decl
) = TREE_PRIVATE (gen_tmpl
);
3034 TREE_PROTECTED (decl
) = TREE_PROTECTED (gen_tmpl
);
3036 /* 7.1.1-1 [dcl.stc]
3038 A storage-class-specifier shall not be specified in an
3039 explicit specialization...
3041 The parser rejects these, so unless action is taken here,
3042 explicit function specializations will always appear with
3045 The action recommended by the C++ CWG in response to C++
3046 defect report 605 is to make the storage class and linkage
3047 of the explicit specialization match the templated function:
3049 http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#605
3051 if (tsk
== tsk_expl_spec
&& DECL_FUNCTION_TEMPLATE_P (gen_tmpl
))
3053 tree tmpl_func
= DECL_TEMPLATE_RESULT (gen_tmpl
);
3054 gcc_assert (TREE_CODE (tmpl_func
) == FUNCTION_DECL
);
3056 /* A concept cannot be specialized. */
3057 if (DECL_DECLARED_CONCEPT_P (tmpl_func
))
3059 error ("explicit specialization of function concept %qD",
3061 return error_mark_node
;
3064 /* This specialization has the same linkage and visibility as
3065 the function template it specializes. */
3066 TREE_PUBLIC (decl
) = TREE_PUBLIC (tmpl_func
);
3067 if (! TREE_PUBLIC (decl
))
3069 DECL_INTERFACE_KNOWN (decl
) = 1;
3070 DECL_NOT_REALLY_EXTERN (decl
) = 1;
3072 DECL_THIS_STATIC (decl
) = DECL_THIS_STATIC (tmpl_func
);
3073 if (DECL_VISIBILITY_SPECIFIED (tmpl_func
))
3075 DECL_VISIBILITY_SPECIFIED (decl
) = 1;
3076 DECL_VISIBILITY (decl
) = DECL_VISIBILITY (tmpl_func
);
3080 /* If DECL is a friend declaration, declared using an
3081 unqualified name, the namespace associated with DECL may
3082 have been set incorrectly. For example, in:
3084 template <typename T> void f(T);
3086 struct S { friend void f<int>(int); }
3089 we will have set the DECL_CONTEXT for the friend
3090 declaration to N, rather than to the global namespace. */
3091 if (DECL_NAMESPACE_SCOPE_P (decl
))
3092 DECL_CONTEXT (decl
) = DECL_CONTEXT (tmpl
);
3094 if (is_friend
&& !have_def
)
3095 /* This is not really a declaration of a specialization.
3096 It's just the name of an instantiation. But, it's not
3097 a request for an instantiation, either. */
3098 SET_DECL_IMPLICIT_INSTANTIATION (decl
);
3099 else if (TREE_CODE (decl
) == FUNCTION_DECL
)
3100 /* A specialization is not necessarily COMDAT. */
3101 DECL_COMDAT (decl
) = (TREE_PUBLIC (decl
)
3102 && DECL_DECLARED_INLINE_P (decl
));
3103 else if (VAR_P (decl
))
3104 DECL_COMDAT (decl
) = false;
3106 /* If this is a full specialization, register it so that we can find
3107 it again. Partial specializations will be registered in
3108 process_partial_specialization. */
3109 if (!processing_template_decl
)
3110 decl
= register_specialization (decl
, gen_tmpl
, targs
,
3113 /* A 'structor should already have clones. */
3114 gcc_assert (decl
== error_mark_node
3115 || variable_template_p (tmpl
)
3116 || !(DECL_CONSTRUCTOR_P (decl
)
3117 || DECL_DESTRUCTOR_P (decl
))
3118 || DECL_CLONED_FUNCTION_P (DECL_CHAIN (decl
)));
3125 /* Returns 1 iff PARMS1 and PARMS2 are identical sets of template
3126 parameters. These are represented in the same format used for
3127 DECL_TEMPLATE_PARMS. */
3130 comp_template_parms (const_tree parms1
, const_tree parms2
)
3135 if (parms1
== parms2
)
3138 for (p1
= parms1
, p2
= parms2
;
3139 p1
!= NULL_TREE
&& p2
!= NULL_TREE
;
3140 p1
= TREE_CHAIN (p1
), p2
= TREE_CHAIN (p2
))
3142 tree t1
= TREE_VALUE (p1
);
3143 tree t2
= TREE_VALUE (p2
);
3146 gcc_assert (TREE_CODE (t1
) == TREE_VEC
);
3147 gcc_assert (TREE_CODE (t2
) == TREE_VEC
);
3149 if (TREE_VEC_LENGTH (t1
) != TREE_VEC_LENGTH (t2
))
3152 for (i
= 0; i
< TREE_VEC_LENGTH (t2
); ++i
)
3154 tree parm1
= TREE_VALUE (TREE_VEC_ELT (t1
, i
));
3155 tree parm2
= TREE_VALUE (TREE_VEC_ELT (t2
, i
));
3157 /* If either of the template parameters are invalid, assume
3158 they match for the sake of error recovery. */
3159 if (error_operand_p (parm1
) || error_operand_p (parm2
))
3162 if (TREE_CODE (parm1
) != TREE_CODE (parm2
))
3165 if (TREE_CODE (parm1
) == TEMPLATE_TYPE_PARM
3166 && (TEMPLATE_TYPE_PARAMETER_PACK (parm1
)
3167 == TEMPLATE_TYPE_PARAMETER_PACK (parm2
)))
3169 else if (!same_type_p (TREE_TYPE (parm1
), TREE_TYPE (parm2
)))
3174 if ((p1
!= NULL_TREE
) != (p2
!= NULL_TREE
))
3175 /* One set of parameters has more parameters lists than the
3182 /* Determine whether PARM is a parameter pack. */
3185 template_parameter_pack_p (const_tree parm
)
3187 /* Determine if we have a non-type template parameter pack. */
3188 if (TREE_CODE (parm
) == PARM_DECL
)
3189 return (DECL_TEMPLATE_PARM_P (parm
)
3190 && TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm
)));
3191 if (TREE_CODE (parm
) == TEMPLATE_PARM_INDEX
)
3192 return TEMPLATE_PARM_PARAMETER_PACK (parm
);
3194 /* If this is a list of template parameters, we could get a
3195 TYPE_DECL or a TEMPLATE_DECL. */
3196 if (TREE_CODE (parm
) == TYPE_DECL
|| TREE_CODE (parm
) == TEMPLATE_DECL
)
3197 parm
= TREE_TYPE (parm
);
3199 /* Otherwise it must be a type template parameter. */
3200 return ((TREE_CODE (parm
) == TEMPLATE_TYPE_PARM
3201 || TREE_CODE (parm
) == TEMPLATE_TEMPLATE_PARM
)
3202 && TEMPLATE_TYPE_PARAMETER_PACK (parm
));
3205 /* Determine if T is a function parameter pack. */
3208 function_parameter_pack_p (const_tree t
)
3210 if (t
&& TREE_CODE (t
) == PARM_DECL
)
3211 return DECL_PACK_P (t
);
3215 /* Return the function template declaration of PRIMARY_FUNC_TMPL_INST.
3216 PRIMARY_FUNC_TMPL_INST is a primary function template instantiation. */
3219 get_function_template_decl (const_tree primary_func_tmpl_inst
)
3221 if (! primary_func_tmpl_inst
3222 || TREE_CODE (primary_func_tmpl_inst
) != FUNCTION_DECL
3223 || ! primary_template_instantiation_p (primary_func_tmpl_inst
))
3226 return DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (primary_func_tmpl_inst
));
3229 /* Return true iff the function parameter PARAM_DECL was expanded
3230 from the function parameter pack PACK. */
3233 function_parameter_expanded_from_pack_p (tree param_decl
, tree pack
)
3235 if (DECL_ARTIFICIAL (param_decl
)
3236 || !function_parameter_pack_p (pack
))
3239 /* The parameter pack and its pack arguments have the same
3241 return DECL_PARM_INDEX (pack
) == DECL_PARM_INDEX (param_decl
);
3244 /* Determine whether ARGS describes a variadic template args list,
3245 i.e., one that is terminated by a template argument pack. */
3248 template_args_variadic_p (tree args
)
3253 if (args
== NULL_TREE
)
3256 args
= INNERMOST_TEMPLATE_ARGS (args
);
3257 nargs
= TREE_VEC_LENGTH (args
);
3262 last_parm
= TREE_VEC_ELT (args
, nargs
- 1);
3264 return ARGUMENT_PACK_P (last_parm
);
3267 /* Generate a new name for the parameter pack name NAME (an
3268 IDENTIFIER_NODE) that incorporates its */
3271 make_ith_pack_parameter_name (tree name
, int i
)
3273 /* Munge the name to include the parameter index. */
3274 #define NUMBUF_LEN 128
3275 char numbuf
[NUMBUF_LEN
];
3279 if (name
== NULL_TREE
)
3281 snprintf (numbuf
, NUMBUF_LEN
, "%i", i
);
3282 newname_len
= IDENTIFIER_LENGTH (name
)
3283 + strlen (numbuf
) + 2;
3284 newname
= (char*)alloca (newname_len
);
3285 snprintf (newname
, newname_len
,
3286 "%s#%i", IDENTIFIER_POINTER (name
), i
);
3287 return get_identifier (newname
);
3290 /* Return true if T is a primary function, class or alias template
3294 primary_template_instantiation_p (const_tree t
)
3299 if (TREE_CODE (t
) == FUNCTION_DECL
)
3300 return DECL_LANG_SPECIFIC (t
)
3301 && DECL_TEMPLATE_INSTANTIATION (t
)
3302 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (t
));
3303 else if (CLASS_TYPE_P (t
) && !TYPE_DECL_ALIAS_P (TYPE_NAME (t
)))
3304 return CLASSTYPE_TEMPLATE_INSTANTIATION (t
)
3305 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (t
));
3306 else if (alias_template_specialization_p (t
))
3311 /* Return true if PARM is a template template parameter. */
3314 template_template_parameter_p (const_tree parm
)
3316 return DECL_TEMPLATE_TEMPLATE_PARM_P (parm
);
3319 /* Return true iff PARM is a DECL representing a type template
3323 template_type_parameter_p (const_tree parm
)
3326 && (TREE_CODE (parm
) == TYPE_DECL
3327 || TREE_CODE (parm
) == TEMPLATE_DECL
)
3328 && DECL_TEMPLATE_PARM_P (parm
));
3331 /* Return the template parameters of T if T is a
3332 primary template instantiation, NULL otherwise. */
3335 get_primary_template_innermost_parameters (const_tree t
)
3337 tree parms
= NULL
, template_info
= NULL
;
3339 if ((template_info
= get_template_info (t
))
3340 && primary_template_instantiation_p (t
))
3341 parms
= INNERMOST_TEMPLATE_PARMS
3342 (DECL_TEMPLATE_PARMS (TI_TEMPLATE (template_info
)));
3347 /* Return the template parameters of the LEVELth level from the full list
3348 of template parameters PARMS. */
3351 get_template_parms_at_level (tree parms
, int level
)
3355 || TREE_CODE (parms
) != TREE_LIST
3356 || level
> TMPL_PARMS_DEPTH (parms
))
3359 for (p
= parms
; p
; p
= TREE_CHAIN (p
))
3360 if (TMPL_PARMS_DEPTH (p
) == level
)
3366 /* Returns the template arguments of T if T is a template instantiation,
3370 get_template_innermost_arguments (const_tree t
)
3372 tree args
= NULL
, template_info
= NULL
;
3374 if ((template_info
= get_template_info (t
))
3375 && TI_ARGS (template_info
))
3376 args
= INNERMOST_TEMPLATE_ARGS (TI_ARGS (template_info
));
3381 /* Return the argument pack elements of T if T is a template argument pack,
3385 get_template_argument_pack_elems (const_tree t
)
3387 if (TREE_CODE (t
) != TYPE_ARGUMENT_PACK
3388 && TREE_CODE (t
) != NONTYPE_ARGUMENT_PACK
)
3391 return ARGUMENT_PACK_ARGS (t
);
3394 /* Structure used to track the progress of find_parameter_packs_r. */
3395 struct find_parameter_pack_data
3397 /* TREE_LIST that will contain all of the parameter packs found by
3399 tree
* parameter_packs
;
3401 /* Set of AST nodes that have been visited by the traversal. */
3402 hash_set
<tree
> *visited
;
3404 /* True iff we're making a type pack expansion. */
3405 bool type_pack_expansion_p
;
3408 /* Identifies all of the argument packs that occur in a template
3409 argument and appends them to the TREE_LIST inside DATA, which is a
3410 find_parameter_pack_data structure. This is a subroutine of
3411 make_pack_expansion and uses_parameter_packs. */
3413 find_parameter_packs_r (tree
*tp
, int *walk_subtrees
, void* data
)
3416 struct find_parameter_pack_data
* ppd
=
3417 (struct find_parameter_pack_data
*)data
;
3418 bool parameter_pack_p
= false;
3420 /* Handle type aliases/typedefs. */
3421 if (TYPE_ALIAS_P (t
))
3423 if (TYPE_TEMPLATE_INFO (t
))
3424 cp_walk_tree (&TYPE_TI_ARGS (t
),
3425 &find_parameter_packs_r
,
3431 /* Identify whether this is a parameter pack or not. */
3432 switch (TREE_CODE (t
))
3434 case TEMPLATE_PARM_INDEX
:
3435 if (TEMPLATE_PARM_PARAMETER_PACK (t
))
3436 parameter_pack_p
= true;
3439 case TEMPLATE_TYPE_PARM
:
3440 t
= TYPE_MAIN_VARIANT (t
);
3441 case TEMPLATE_TEMPLATE_PARM
:
3442 /* If the placeholder appears in the decl-specifier-seq of a function
3443 parameter pack (14.6.3), or the type-specifier-seq of a type-id that
3444 is a pack expansion, the invented template parameter is a template
3446 if (ppd
->type_pack_expansion_p
&& is_auto_or_concept (t
))
3447 TEMPLATE_TYPE_PARAMETER_PACK (t
) = true;
3448 if (TEMPLATE_TYPE_PARAMETER_PACK (t
))
3449 parameter_pack_p
= true;
3454 if (DECL_PACK_P (t
))
3456 /* We don't want to walk into the type of a PARM_DECL,
3457 because we don't want to see the type parameter pack. */
3459 parameter_pack_p
= true;
3463 /* Look through a lambda capture proxy to the field pack. */
3465 if (DECL_HAS_VALUE_EXPR_P (t
))
3467 tree v
= DECL_VALUE_EXPR (t
);
3469 &find_parameter_packs_r
,
3473 else if (variable_template_specialization_p (t
))
3475 cp_walk_tree (&DECL_TI_ARGS (t
),
3476 find_parameter_packs_r
,
3483 parameter_pack_p
= true;
3486 /* Not a parameter pack. */
3490 if (parameter_pack_p
)
3492 /* Add this parameter pack to the list. */
3493 *ppd
->parameter_packs
= tree_cons (NULL_TREE
, t
, *ppd
->parameter_packs
);
3497 cp_walk_tree (&TYPE_CONTEXT (t
),
3498 &find_parameter_packs_r
, ppd
, ppd
->visited
);
3500 /* This switch statement will return immediately if we don't find a
3502 switch (TREE_CODE (t
))
3504 case TEMPLATE_PARM_INDEX
:
3507 case BOUND_TEMPLATE_TEMPLATE_PARM
:
3508 /* Check the template itself. */
3509 cp_walk_tree (&TREE_TYPE (TYPE_TI_TEMPLATE (t
)),
3510 &find_parameter_packs_r
, ppd
, ppd
->visited
);
3511 /* Check the template arguments. */
3512 cp_walk_tree (&TYPE_TI_ARGS (t
), &find_parameter_packs_r
, ppd
,
3517 case TEMPLATE_TYPE_PARM
:
3518 case TEMPLATE_TEMPLATE_PARM
:
3525 if (TYPE_PTRMEMFUNC_P (t
))
3531 if (TYPE_TEMPLATE_INFO (t
))
3532 cp_walk_tree (&TYPE_TI_ARGS (t
),
3533 &find_parameter_packs_r
, ppd
, ppd
->visited
);
3540 cp_walk_tree (&TREE_TYPE (t
),
3541 &find_parameter_packs_r
, ppd
, ppd
->visited
);
3545 cp_walk_tree (&TYPENAME_TYPE_FULLNAME (t
), &find_parameter_packs_r
,
3550 case TYPE_PACK_EXPANSION
:
3551 case EXPR_PACK_EXPANSION
:
3556 cp_walk_tree (&TYPE_MAX_VALUE (t
), &find_parameter_packs_r
,
3561 case IDENTIFIER_NODE
:
3562 cp_walk_tree (&TREE_TYPE (t
), &find_parameter_packs_r
, ppd
,
3569 /* When traversing a DECLTYPE_TYPE_EXPR, we need to set
3570 type_pack_expansion_p to false so that any placeholders
3571 within the expression don't get marked as parameter packs. */
3572 bool type_pack_expansion_p
= ppd
->type_pack_expansion_p
;
3573 ppd
->type_pack_expansion_p
= false;
3574 cp_walk_tree (&DECLTYPE_TYPE_EXPR (t
), &find_parameter_packs_r
,
3576 ppd
->type_pack_expansion_p
= type_pack_expansion_p
;
3588 /* Determines if the expression or type T uses any parameter packs. */
3590 uses_parameter_packs (tree t
)
3592 tree parameter_packs
= NULL_TREE
;
3593 struct find_parameter_pack_data ppd
;
3594 ppd
.parameter_packs
= ¶meter_packs
;
3595 ppd
.visited
= new hash_set
<tree
>;
3596 ppd
.type_pack_expansion_p
= false;
3597 cp_walk_tree (&t
, &find_parameter_packs_r
, &ppd
, ppd
.visited
);
3599 return parameter_packs
!= NULL_TREE
;
3602 /* Turn ARG, which may be an expression, type, or a TREE_LIST
3603 representation a base-class initializer into a parameter pack
3604 expansion. If all goes well, the resulting node will be an
3605 EXPR_PACK_EXPANSION, TYPE_PACK_EXPANSION, or TREE_LIST,
3608 make_pack_expansion (tree arg
)
3611 tree parameter_packs
= NULL_TREE
;
3612 bool for_types
= false;
3613 struct find_parameter_pack_data ppd
;
3615 if (!arg
|| arg
== error_mark_node
)
3618 if (TREE_CODE (arg
) == TREE_LIST
&& TREE_PURPOSE (arg
))
3620 /* A TREE_LIST with a non-null TREE_PURPOSE is for a base
3621 class initializer. In this case, the TREE_PURPOSE will be a
3622 _TYPE node (representing the base class expansion we're
3623 initializing) and the TREE_VALUE will be a TREE_LIST
3624 containing the initialization arguments.
3626 The resulting expansion looks somewhat different from most
3627 expansions. Rather than returning just one _EXPANSION, we
3628 return a TREE_LIST whose TREE_PURPOSE is a
3629 TYPE_PACK_EXPANSION containing the bases that will be
3630 initialized. The TREE_VALUE will be identical to the
3631 original TREE_VALUE, which is a list of arguments that will
3632 be passed to each base. We do not introduce any new pack
3633 expansion nodes into the TREE_VALUE (although it is possible
3634 that some already exist), because the TREE_PURPOSE and
3635 TREE_VALUE all need to be expanded together with the same
3636 _EXPANSION node. Note that the TYPE_PACK_EXPANSION in the
3637 resulting TREE_PURPOSE will mention the parameter packs in
3638 both the bases and the arguments to the bases. */
3641 tree parameter_packs
= NULL_TREE
;
3643 /* Determine which parameter packs will be used by the base
3645 ppd
.visited
= new hash_set
<tree
>;
3646 ppd
.parameter_packs
= ¶meter_packs
;
3647 ppd
.type_pack_expansion_p
= true;
3648 gcc_assert (TYPE_P (TREE_PURPOSE (arg
)));
3649 cp_walk_tree (&TREE_PURPOSE (arg
), &find_parameter_packs_r
,
3652 if (parameter_packs
== NULL_TREE
)
3654 error ("base initializer expansion %<%T%> contains no parameter packs", arg
);
3656 return error_mark_node
;
3659 if (TREE_VALUE (arg
) != void_type_node
)
3661 /* Collect the sets of parameter packs used in each of the
3662 initialization arguments. */
3663 for (value
= TREE_VALUE (arg
); value
; value
= TREE_CHAIN (value
))
3665 /* Determine which parameter packs will be expanded in this
3667 cp_walk_tree (&TREE_VALUE (value
), &find_parameter_packs_r
,
3674 /* Create the pack expansion type for the base type. */
3675 purpose
= cxx_make_type (TYPE_PACK_EXPANSION
);
3676 SET_PACK_EXPANSION_PATTERN (purpose
, TREE_PURPOSE (arg
));
3677 PACK_EXPANSION_PARAMETER_PACKS (purpose
) = parameter_packs
;
3679 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3680 they will rarely be compared to anything. */
3681 SET_TYPE_STRUCTURAL_EQUALITY (purpose
);
3683 return tree_cons (purpose
, TREE_VALUE (arg
), NULL_TREE
);
3686 if (TYPE_P (arg
) || TREE_CODE (arg
) == TEMPLATE_DECL
)
3689 /* Build the PACK_EXPANSION_* node. */
3691 ? cxx_make_type (TYPE_PACK_EXPANSION
)
3692 : make_node (EXPR_PACK_EXPANSION
);
3693 SET_PACK_EXPANSION_PATTERN (result
, arg
);
3694 if (TREE_CODE (result
) == EXPR_PACK_EXPANSION
)
3696 /* Propagate type and const-expression information. */
3697 TREE_TYPE (result
) = TREE_TYPE (arg
);
3698 TREE_CONSTANT (result
) = TREE_CONSTANT (arg
);
3699 /* Mark this read now, since the expansion might be length 0. */
3700 mark_exp_read (arg
);
3703 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3704 they will rarely be compared to anything. */
3705 SET_TYPE_STRUCTURAL_EQUALITY (result
);
3707 /* Determine which parameter packs will be expanded. */
3708 ppd
.parameter_packs
= ¶meter_packs
;
3709 ppd
.visited
= new hash_set
<tree
>;
3710 ppd
.type_pack_expansion_p
= TYPE_P (arg
);
3711 cp_walk_tree (&arg
, &find_parameter_packs_r
, &ppd
, ppd
.visited
);
3714 /* Make sure we found some parameter packs. */
3715 if (parameter_packs
== NULL_TREE
)
3718 error ("expansion pattern %<%T%> contains no argument packs", arg
);
3720 error ("expansion pattern %<%E%> contains no argument packs", arg
);
3721 return error_mark_node
;
3723 PACK_EXPANSION_PARAMETER_PACKS (result
) = parameter_packs
;
3725 PACK_EXPANSION_LOCAL_P (result
) = at_function_scope_p ();
3730 /* Checks T for any "bare" parameter packs, which have not yet been
3731 expanded, and issues an error if any are found. This operation can
3732 only be done on full expressions or types (e.g., an expression
3733 statement, "if" condition, etc.), because we could have expressions like:
3735 foo(f(g(h(args)))...)
3737 where "args" is a parameter pack. check_for_bare_parameter_packs
3738 should not be called for the subexpressions args, h(args),
3739 g(h(args)), or f(g(h(args))), because we would produce erroneous
3742 Returns TRUE and emits an error if there were bare parameter packs,
3743 returns FALSE otherwise. */
3745 check_for_bare_parameter_packs (tree t
)
3747 tree parameter_packs
= NULL_TREE
;
3748 struct find_parameter_pack_data ppd
;
3750 if (!processing_template_decl
|| !t
|| t
== error_mark_node
)
3753 if (TREE_CODE (t
) == TYPE_DECL
)
3756 ppd
.parameter_packs
= ¶meter_packs
;
3757 ppd
.visited
= new hash_set
<tree
>;
3758 ppd
.type_pack_expansion_p
= false;
3759 cp_walk_tree (&t
, &find_parameter_packs_r
, &ppd
, ppd
.visited
);
3762 if (parameter_packs
)
3764 error ("parameter packs not expanded with %<...%>:");
3765 while (parameter_packs
)
3767 tree pack
= TREE_VALUE (parameter_packs
);
3768 tree name
= NULL_TREE
;
3770 if (TREE_CODE (pack
) == TEMPLATE_TYPE_PARM
3771 || TREE_CODE (pack
) == TEMPLATE_TEMPLATE_PARM
)
3772 name
= TYPE_NAME (pack
);
3773 else if (TREE_CODE (pack
) == TEMPLATE_PARM_INDEX
)
3774 name
= DECL_NAME (TEMPLATE_PARM_DECL (pack
));
3776 name
= DECL_NAME (pack
);
3779 inform (input_location
, " %qD", name
);
3781 inform (input_location
, " <anonymous>");
3783 parameter_packs
= TREE_CHAIN (parameter_packs
);
3792 /* Expand any parameter packs that occur in the template arguments in
3795 expand_template_argument_pack (tree args
)
3797 tree result_args
= NULL_TREE
;
3798 int in_arg
, out_arg
= 0, nargs
= args
? TREE_VEC_LENGTH (args
) : 0;
3799 int num_result_args
= -1;
3800 int non_default_args_count
= -1;
3802 /* First, determine if we need to expand anything, and the number of
3803 slots we'll need. */
3804 for (in_arg
= 0; in_arg
< nargs
; ++in_arg
)
3806 tree arg
= TREE_VEC_ELT (args
, in_arg
);
3807 if (arg
== NULL_TREE
)
3809 if (ARGUMENT_PACK_P (arg
))
3811 int num_packed
= TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg
));
3812 if (num_result_args
< 0)
3813 num_result_args
= in_arg
+ num_packed
;
3815 num_result_args
+= num_packed
;
3819 if (num_result_args
>= 0)
3824 /* If no expansion is necessary, we're done. */
3825 if (num_result_args
< 0)
3828 /* Expand arguments. */
3829 result_args
= make_tree_vec (num_result_args
);
3830 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (args
))
3831 non_default_args_count
=
3832 GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (args
);
3833 for (in_arg
= 0; in_arg
< nargs
; ++in_arg
)
3835 tree arg
= TREE_VEC_ELT (args
, in_arg
);
3836 if (ARGUMENT_PACK_P (arg
))
3838 tree packed
= ARGUMENT_PACK_ARGS (arg
);
3839 int i
, num_packed
= TREE_VEC_LENGTH (packed
);
3840 for (i
= 0; i
< num_packed
; ++i
, ++out_arg
)
3841 TREE_VEC_ELT (result_args
, out_arg
) = TREE_VEC_ELT(packed
, i
);
3842 if (non_default_args_count
> 0)
3843 non_default_args_count
+= num_packed
- 1;
3847 TREE_VEC_ELT (result_args
, out_arg
) = arg
;
3851 if (non_default_args_count
>= 0)
3852 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (result_args
, non_default_args_count
);
3856 /* Checks if DECL shadows a template parameter.
3858 [temp.local]: A template-parameter shall not be redeclared within its
3859 scope (including nested scopes).
3861 Emits an error and returns TRUE if the DECL shadows a parameter,
3862 returns FALSE otherwise. */
3865 check_template_shadow (tree decl
)
3869 /* If we're not in a template, we can't possibly shadow a template
3871 if (!current_template_parms
)
3874 /* Figure out what we're shadowing. */
3875 if (TREE_CODE (decl
) == OVERLOAD
)
3876 decl
= OVL_CURRENT (decl
);
3877 olddecl
= innermost_non_namespace_value (DECL_NAME (decl
));
3879 /* If there's no previous binding for this name, we're not shadowing
3880 anything, let alone a template parameter. */
3884 /* If we're not shadowing a template parameter, we're done. Note
3885 that OLDDECL might be an OVERLOAD (or perhaps even an
3886 ERROR_MARK), so we can't just blithely assume it to be a _DECL
3888 if (!DECL_P (olddecl
) || !DECL_TEMPLATE_PARM_P (olddecl
))
3891 /* We check for decl != olddecl to avoid bogus errors for using a
3892 name inside a class. We check TPFI to avoid duplicate errors for
3893 inline member templates. */
3895 || (DECL_TEMPLATE_PARM_P (decl
)
3896 && TEMPLATE_PARMS_FOR_INLINE (current_template_parms
)))
3899 /* Don't complain about the injected class name, as we've already
3900 complained about the class itself. */
3901 if (DECL_SELF_REFERENCE_P (decl
))
3904 if (DECL_TEMPLATE_PARM_P (decl
))
3905 error ("declaration of template parameter %q+D shadows "
3906 "template parameter", decl
);
3908 error ("declaration of %q+#D shadows template parameter", decl
);
3909 inform (DECL_SOURCE_LOCATION (olddecl
),
3910 "template parameter %qD declared here", olddecl
);
3914 /* Return a new TEMPLATE_PARM_INDEX with the indicated INDEX, LEVEL,
3915 ORIG_LEVEL, DECL, and TYPE. */
3918 build_template_parm_index (int index
,
3924 tree t
= make_node (TEMPLATE_PARM_INDEX
);
3925 TEMPLATE_PARM_IDX (t
) = index
;
3926 TEMPLATE_PARM_LEVEL (t
) = level
;
3927 TEMPLATE_PARM_ORIG_LEVEL (t
) = orig_level
;
3928 TEMPLATE_PARM_DECL (t
) = decl
;
3929 TREE_TYPE (t
) = type
;
3930 TREE_CONSTANT (t
) = TREE_CONSTANT (decl
);
3931 TREE_READONLY (t
) = TREE_READONLY (decl
);
3936 /* Find the canonical type parameter for the given template type
3937 parameter. Returns the canonical type parameter, which may be TYPE
3938 if no such parameter existed. */
3941 canonical_type_parameter (tree type
)
3944 int idx
= TEMPLATE_TYPE_IDX (type
);
3945 if (!canonical_template_parms
)
3946 vec_alloc (canonical_template_parms
, idx
+1);
3948 while (canonical_template_parms
->length () <= (unsigned)idx
)
3949 vec_safe_push (canonical_template_parms
, NULL_TREE
);
3951 list
= (*canonical_template_parms
)[idx
];
3952 while (list
&& !comptypes (type
, TREE_VALUE (list
), COMPARE_STRUCTURAL
))
3953 list
= TREE_CHAIN (list
);
3956 return TREE_VALUE (list
);
3959 (*canonical_template_parms
)[idx
]
3960 = tree_cons (NULL_TREE
, type
,
3961 (*canonical_template_parms
)[idx
]);
3966 /* Return a TEMPLATE_PARM_INDEX, similar to INDEX, but whose
3967 TEMPLATE_PARM_LEVEL has been decreased by LEVELS. If such a
3968 TEMPLATE_PARM_INDEX already exists, it is returned; otherwise, a
3969 new one is created. */
3972 reduce_template_parm_level (tree index
, tree type
, int levels
, tree args
,
3973 tsubst_flags_t complain
)
3975 if (TEMPLATE_PARM_DESCENDANTS (index
) == NULL_TREE
3976 || (TEMPLATE_PARM_LEVEL (TEMPLATE_PARM_DESCENDANTS (index
))
3977 != TEMPLATE_PARM_LEVEL (index
) - levels
)
3978 || !same_type_p (type
, TREE_TYPE (TEMPLATE_PARM_DESCENDANTS (index
))))
3980 tree orig_decl
= TEMPLATE_PARM_DECL (index
);
3983 decl
= build_decl (DECL_SOURCE_LOCATION (orig_decl
),
3984 TREE_CODE (orig_decl
), DECL_NAME (orig_decl
), type
);
3985 TREE_CONSTANT (decl
) = TREE_CONSTANT (orig_decl
);
3986 TREE_READONLY (decl
) = TREE_READONLY (orig_decl
);
3987 DECL_ARTIFICIAL (decl
) = 1;
3988 SET_DECL_TEMPLATE_PARM_P (decl
);
3990 t
= build_template_parm_index (TEMPLATE_PARM_IDX (index
),
3991 TEMPLATE_PARM_LEVEL (index
) - levels
,
3992 TEMPLATE_PARM_ORIG_LEVEL (index
),
3994 TEMPLATE_PARM_DESCENDANTS (index
) = t
;
3995 TEMPLATE_PARM_PARAMETER_PACK (t
)
3996 = TEMPLATE_PARM_PARAMETER_PACK (index
);
3998 /* Template template parameters need this. */
3999 if (TREE_CODE (decl
) == TEMPLATE_DECL
)
4001 DECL_TEMPLATE_RESULT (decl
)
4002 = build_decl (DECL_SOURCE_LOCATION (decl
),
4003 TYPE_DECL
, DECL_NAME (decl
), type
);
4004 DECL_ARTIFICIAL (DECL_TEMPLATE_RESULT (decl
)) = true;
4005 DECL_TEMPLATE_PARMS (decl
) = tsubst_template_parms
4006 (DECL_TEMPLATE_PARMS (orig_decl
), args
, complain
);
4010 return TEMPLATE_PARM_DESCENDANTS (index
);
4013 /* Process information from new template parameter PARM and append it
4014 to the LIST being built. This new parameter is a non-type
4015 parameter iff IS_NON_TYPE is true. This new parameter is a
4016 parameter pack iff IS_PARAMETER_PACK is true. The location of PARM
4020 process_template_parm (tree list
, location_t parm_loc
, tree parm
,
4021 bool is_non_type
, bool is_parameter_pack
)
4026 gcc_assert (TREE_CODE (parm
) == TREE_LIST
);
4027 tree defval
= TREE_PURPOSE (parm
);
4028 tree constr
= TREE_TYPE (parm
);
4032 tree p
= tree_last (list
);
4034 if (p
&& TREE_VALUE (p
) != error_mark_node
)
4037 if (TREE_CODE (p
) == TYPE_DECL
|| TREE_CODE (p
) == TEMPLATE_DECL
)
4038 idx
= TEMPLATE_TYPE_IDX (TREE_TYPE (p
));
4040 idx
= TEMPLATE_PARM_IDX (DECL_INITIAL (p
));
4048 parm
= TREE_VALUE (parm
);
4050 SET_DECL_TEMPLATE_PARM_P (parm
);
4052 if (TREE_TYPE (parm
) != error_mark_node
)
4056 The top-level cv-qualifiers on the template-parameter are
4057 ignored when determining its type. */
4058 TREE_TYPE (parm
) = TYPE_MAIN_VARIANT (TREE_TYPE (parm
));
4059 if (invalid_nontype_parm_type_p (TREE_TYPE (parm
), 1))
4060 TREE_TYPE (parm
) = error_mark_node
;
4061 else if (uses_parameter_packs (TREE_TYPE (parm
))
4062 && !is_parameter_pack
4063 /* If we're in a nested template parameter list, the template
4064 template parameter could be a parameter pack. */
4065 && processing_template_parmlist
== 1)
4067 /* This template parameter is not a parameter pack, but it
4068 should be. Complain about "bare" parameter packs. */
4069 check_for_bare_parameter_packs (TREE_TYPE (parm
));
4071 /* Recover by calling this a parameter pack. */
4072 is_parameter_pack
= true;
4076 /* A template parameter is not modifiable. */
4077 TREE_CONSTANT (parm
) = 1;
4078 TREE_READONLY (parm
) = 1;
4079 decl
= build_decl (parm_loc
,
4080 CONST_DECL
, DECL_NAME (parm
), TREE_TYPE (parm
));
4081 TREE_CONSTANT (decl
) = 1;
4082 TREE_READONLY (decl
) = 1;
4083 DECL_INITIAL (parm
) = DECL_INITIAL (decl
)
4084 = build_template_parm_index (idx
, processing_template_decl
,
4085 processing_template_decl
,
4086 decl
, TREE_TYPE (parm
));
4088 TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm
))
4089 = is_parameter_pack
;
4094 parm
= TREE_VALUE (TREE_VALUE (parm
));
4096 if (parm
&& TREE_CODE (parm
) == TEMPLATE_DECL
)
4098 t
= cxx_make_type (TEMPLATE_TEMPLATE_PARM
);
4099 /* This is for distinguishing between real templates and template
4100 template parameters */
4101 TREE_TYPE (parm
) = t
;
4102 TREE_TYPE (DECL_TEMPLATE_RESULT (parm
)) = t
;
4107 t
= cxx_make_type (TEMPLATE_TYPE_PARM
);
4108 /* parm is either IDENTIFIER_NODE or NULL_TREE. */
4109 decl
= build_decl (parm_loc
,
4110 TYPE_DECL
, parm
, t
);
4113 TYPE_NAME (t
) = decl
;
4114 TYPE_STUB_DECL (t
) = decl
;
4116 TEMPLATE_TYPE_PARM_INDEX (t
)
4117 = build_template_parm_index (idx
, processing_template_decl
,
4118 processing_template_decl
,
4119 decl
, TREE_TYPE (parm
));
4120 TEMPLATE_TYPE_PARAMETER_PACK (t
) = is_parameter_pack
;
4121 TYPE_CANONICAL (t
) = canonical_type_parameter (t
);
4123 DECL_ARTIFICIAL (decl
) = 1;
4124 SET_DECL_TEMPLATE_PARM_P (decl
);
4126 /* Build requirements for the type/template parameter.
4127 This must be done after SET_DECL_TEMPLATE_PARM_P or
4128 process_template_parm could fail. */
4129 tree reqs
= finish_shorthand_constraint (parm
, constr
);
4133 /* Build the parameter node linking the parameter declaration,
4134 its default argument (if any), and its constraints (if any). */
4135 parm
= build_tree_list (defval
, parm
);
4136 TEMPLATE_PARM_CONSTRAINTS (parm
) = reqs
;
4138 return chainon (list
, parm
);
4141 /* The end of a template parameter list has been reached. Process the
4142 tree list into a parameter vector, converting each parameter into a more
4143 useful form. Type parameters are saved as IDENTIFIER_NODEs, and others
4147 end_template_parm_list (tree parms
)
4151 tree saved_parmlist
= make_tree_vec (list_length (parms
));
4153 /* Pop the dummy parameter level and add the real one. */
4154 current_template_parms
= TREE_CHAIN (current_template_parms
);
4156 current_template_parms
4157 = tree_cons (size_int (processing_template_decl
),
4158 saved_parmlist
, current_template_parms
);
4160 for (parm
= parms
, nparms
= 0; parm
; parm
= next
, nparms
++)
4162 next
= TREE_CHAIN (parm
);
4163 TREE_VEC_ELT (saved_parmlist
, nparms
) = parm
;
4164 TREE_CHAIN (parm
) = NULL_TREE
;
4167 --processing_template_parmlist
;
4169 return saved_parmlist
;
4172 // Explicitly indicate the end of the template parameter list. We assume
4173 // that the current template parameters have been constructed and/or
4174 // managed explicitly, as when creating new template template parameters
4175 // from a shorthand constraint.
4177 end_template_parm_list ()
4179 --processing_template_parmlist
;
4182 /* end_template_decl is called after a template declaration is seen. */
4185 end_template_decl (void)
4187 reset_specialization ();
4189 if (! processing_template_decl
)
4192 /* This matches the pushlevel in begin_template_parm_list. */
4195 --processing_template_decl
;
4196 current_template_parms
= TREE_CHAIN (current_template_parms
);
4199 /* Takes a TREE_LIST representing a template parameter and convert it
4200 into an argument suitable to be passed to the type substitution
4201 functions. Note that If the TREE_LIST contains an error_mark
4202 node, the returned argument is error_mark_node. */
4205 template_parm_to_arg (tree t
)
4209 || TREE_CODE (t
) != TREE_LIST
)
4212 if (error_operand_p (TREE_VALUE (t
)))
4213 return error_mark_node
;
4217 if (TREE_CODE (t
) == TYPE_DECL
4218 || TREE_CODE (t
) == TEMPLATE_DECL
)
4222 if (TEMPLATE_TYPE_PARAMETER_PACK (t
))
4224 /* Turn this argument into a TYPE_ARGUMENT_PACK
4225 with a single element, which expands T. */
4226 tree vec
= make_tree_vec (1);
4228 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (vec
, TREE_VEC_LENGTH (vec
));
4230 TREE_VEC_ELT (vec
, 0) = make_pack_expansion (t
);
4232 t
= cxx_make_type (TYPE_ARGUMENT_PACK
);
4233 SET_ARGUMENT_PACK_ARGS (t
, vec
);
4238 t
= DECL_INITIAL (t
);
4240 if (TEMPLATE_PARM_PARAMETER_PACK (t
))
4242 /* Turn this argument into a NONTYPE_ARGUMENT_PACK
4243 with a single element, which expands T. */
4244 tree vec
= make_tree_vec (1);
4245 tree type
= TREE_TYPE (TEMPLATE_PARM_DECL (t
));
4247 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (vec
, TREE_VEC_LENGTH (vec
));
4249 t
= convert_from_reference (t
);
4250 TREE_VEC_ELT (vec
, 0) = make_pack_expansion (t
);
4252 t
= make_node (NONTYPE_ARGUMENT_PACK
);
4253 SET_ARGUMENT_PACK_ARGS (t
, vec
);
4254 TREE_TYPE (t
) = type
;
4257 t
= convert_from_reference (t
);
4262 /* Given a set of template parameters, return them as a set of template
4263 arguments. The template parameters are represented as a TREE_VEC, in
4264 the form documented in cp-tree.h for template arguments. */
4267 template_parms_to_args (tree parms
)
4270 tree args
= NULL_TREE
;
4271 int length
= TMPL_PARMS_DEPTH (parms
);
4274 /* If there is only one level of template parameters, we do not
4275 create a TREE_VEC of TREE_VECs. Instead, we return a single
4276 TREE_VEC containing the arguments. */
4278 args
= make_tree_vec (length
);
4280 for (header
= parms
; header
; header
= TREE_CHAIN (header
))
4282 tree a
= copy_node (TREE_VALUE (header
));
4285 TREE_TYPE (a
) = NULL_TREE
;
4286 for (i
= TREE_VEC_LENGTH (a
) - 1; i
>= 0; --i
)
4287 TREE_VEC_ELT (a
, i
) = template_parm_to_arg (TREE_VEC_ELT (a
, i
));
4290 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (a
, TREE_VEC_LENGTH (a
));
4293 TREE_VEC_ELT (args
, --l
) = a
;
4301 /* Within the declaration of a template, return the currently active
4302 template parameters as an argument TREE_VEC. */
4305 current_template_args (void)
4307 return template_parms_to_args (current_template_parms
);
4310 /* Update the declared TYPE by doing any lookups which were thought to be
4311 dependent, but are not now that we know the SCOPE of the declarator. */
4314 maybe_update_decl_type (tree orig_type
, tree scope
)
4316 tree type
= orig_type
;
4318 if (type
== NULL_TREE
)
4321 if (TREE_CODE (orig_type
) == TYPE_DECL
)
4322 type
= TREE_TYPE (type
);
4324 if (scope
&& TYPE_P (scope
) && dependent_type_p (scope
)
4325 && dependent_type_p (type
)
4326 /* Don't bother building up the args in this case. */
4327 && TREE_CODE (type
) != TEMPLATE_TYPE_PARM
)
4329 /* tsubst in the args corresponding to the template parameters,
4330 including auto if present. Most things will be unchanged, but
4331 make_typename_type and tsubst_qualified_id will resolve
4332 TYPENAME_TYPEs and SCOPE_REFs that were previously dependent. */
4333 tree args
= current_template_args ();
4334 tree auto_node
= type_uses_auto (type
);
4338 tree auto_vec
= make_tree_vec (1);
4339 TREE_VEC_ELT (auto_vec
, 0) = auto_node
;
4340 args
= add_to_template_args (args
, auto_vec
);
4342 pushed
= push_scope (scope
);
4343 type
= tsubst (type
, args
, tf_warning_or_error
, NULL_TREE
);
4348 if (type
== error_mark_node
)
4351 if (TREE_CODE (orig_type
) == TYPE_DECL
)
4353 if (same_type_p (type
, TREE_TYPE (orig_type
)))
4356 type
= TYPE_NAME (type
);
4361 /* Return a TEMPLATE_DECL corresponding to DECL, using the indicated
4362 template PARMS and constraints, CONSTR. If MEMBER_TEMPLATE_P is true,
4363 the new template is a member template. */
4366 build_template_decl (tree decl
, tree parms
, bool member_template_p
)
4368 tree tmpl
= build_lang_decl (TEMPLATE_DECL
, DECL_NAME (decl
), NULL_TREE
);
4369 DECL_TEMPLATE_PARMS (tmpl
) = parms
;
4370 DECL_CONTEXT (tmpl
) = DECL_CONTEXT (decl
);
4371 DECL_SOURCE_LOCATION (tmpl
) = DECL_SOURCE_LOCATION (decl
);
4372 DECL_MEMBER_TEMPLATE_P (tmpl
) = member_template_p
;
4377 struct template_parm_data
4379 /* The level of the template parameters we are currently
4383 /* The index of the specialization argument we are currently
4387 /* An array whose size is the number of template parameters. The
4388 elements are nonzero if the parameter has been used in any one
4389 of the arguments processed so far. */
4392 /* An array whose size is the number of template arguments. The
4393 elements are nonzero if the argument makes use of template
4394 parameters of this level. */
4395 int* arg_uses_template_parms
;
4398 /* Subroutine of push_template_decl used to see if each template
4399 parameter in a partial specialization is used in the explicit
4400 argument list. If T is of the LEVEL given in DATA (which is
4401 treated as a template_parm_data*), then DATA->PARMS is marked
4405 mark_template_parm (tree t
, void* data
)
4409 struct template_parm_data
* tpd
= (struct template_parm_data
*) data
;
4411 template_parm_level_and_index (t
, &level
, &idx
);
4413 if (level
== tpd
->level
)
4415 tpd
->parms
[idx
] = 1;
4416 tpd
->arg_uses_template_parms
[tpd
->current_arg
] = 1;
4419 /* Return zero so that for_each_template_parm will continue the
4420 traversal of the tree; we want to mark *every* template parm. */
4424 /* Process the partial specialization DECL. */
4427 process_partial_specialization (tree decl
)
4429 tree type
= TREE_TYPE (decl
);
4430 tree tinfo
= get_template_info (decl
);
4431 tree maintmpl
= TI_TEMPLATE (tinfo
);
4432 tree specargs
= TI_ARGS (tinfo
);
4433 tree inner_args
= INNERMOST_TEMPLATE_ARGS (specargs
);
4434 tree main_inner_parms
= DECL_INNERMOST_TEMPLATE_PARMS (maintmpl
);
4437 int nargs
= TREE_VEC_LENGTH (inner_args
);
4440 bool did_error_intro
= false;
4441 struct template_parm_data tpd
;
4442 struct template_parm_data tpd2
;
4444 gcc_assert (current_template_parms
);
4446 /* A concept cannot be specialized. */
4447 if (flag_concepts
&& variable_concept_p (maintmpl
))
4449 error ("specialization of variable concept %q#D", maintmpl
);
4450 return error_mark_node
;
4453 inner_parms
= INNERMOST_TEMPLATE_PARMS (current_template_parms
);
4454 ntparms
= TREE_VEC_LENGTH (inner_parms
);
4456 /* We check that each of the template parameters given in the
4457 partial specialization is used in the argument list to the
4458 specialization. For example:
4460 template <class T> struct S;
4461 template <class T> struct S<T*>;
4463 The second declaration is OK because `T*' uses the template
4464 parameter T, whereas
4466 template <class T> struct S<int>;
4468 is no good. Even trickier is:
4479 The S2<T> declaration is actually invalid; it is a
4480 full-specialization. Of course,
4483 struct S2<T (*)(U)>;
4485 or some such would have been OK. */
4486 tpd
.level
= TMPL_PARMS_DEPTH (current_template_parms
);
4487 tpd
.parms
= XALLOCAVEC (int, ntparms
);
4488 memset (tpd
.parms
, 0, sizeof (int) * ntparms
);
4490 tpd
.arg_uses_template_parms
= XALLOCAVEC (int, nargs
);
4491 memset (tpd
.arg_uses_template_parms
, 0, sizeof (int) * nargs
);
4492 for (i
= 0; i
< nargs
; ++i
)
4494 tpd
.current_arg
= i
;
4495 for_each_template_parm (TREE_VEC_ELT (inner_args
, i
),
4496 &mark_template_parm
,
4499 /*include_nondeduced_p=*/false);
4501 for (i
= 0; i
< ntparms
; ++i
)
4502 if (tpd
.parms
[i
] == 0)
4504 /* One of the template parms was not used in a deduced context in the
4506 if (!did_error_intro
)
4508 error ("template parameters not deducible in "
4509 "partial specialization:");
4510 did_error_intro
= true;
4513 inform (input_location
, " %qD",
4514 TREE_VALUE (TREE_VEC_ELT (inner_parms
, i
)));
4517 if (did_error_intro
)
4518 return error_mark_node
;
4520 /* [temp.class.spec]
4522 The argument list of the specialization shall not be identical to
4523 the implicit argument list of the primary template. */
4525 = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (maintmpl
)));
4526 if (comp_template_args (inner_args
, INNERMOST_TEMPLATE_ARGS (main_args
))
4528 || !strictly_subsumes (current_template_constraints (),
4529 get_constraints (maintmpl
))))
4532 error ("partial specialization %q+D does not specialize "
4533 "any template arguments", decl
);
4535 error ("partial specialization %q+D does not specialize any "
4536 "template arguments and is not more constrained than", decl
);
4537 inform (DECL_SOURCE_LOCATION (maintmpl
), "primary template here");
4540 /* A partial specialization that replaces multiple parameters of the
4541 primary template with a pack expansion is less specialized for those
4543 if (nargs
< DECL_NTPARMS (maintmpl
))
4545 error ("partial specialization is not more specialized than the "
4546 "primary template because it replaces multiple parameters "
4547 "with a pack expansion");
4548 inform (DECL_SOURCE_LOCATION (maintmpl
), "primary template here");
4552 /* [temp.class.spec]
4554 A partially specialized non-type argument expression shall not
4555 involve template parameters of the partial specialization except
4556 when the argument expression is a simple identifier.
4558 The type of a template parameter corresponding to a specialized
4559 non-type argument shall not be dependent on a parameter of the
4562 Also, we verify that pack expansions only occur at the
4563 end of the argument list. */
4564 gcc_assert (nargs
== DECL_NTPARMS (maintmpl
));
4566 for (i
= 0; i
< nargs
; ++i
)
4568 tree parm
= TREE_VALUE (TREE_VEC_ELT (main_inner_parms
, i
));
4569 tree arg
= TREE_VEC_ELT (inner_args
, i
);
4570 tree packed_args
= NULL_TREE
;
4573 if (ARGUMENT_PACK_P (arg
))
4575 /* Extract the arguments from the argument pack. We'll be
4576 iterating over these in the following loop. */
4577 packed_args
= ARGUMENT_PACK_ARGS (arg
);
4578 len
= TREE_VEC_LENGTH (packed_args
);
4581 for (j
= 0; j
< len
; j
++)
4584 /* Get the Jth argument in the parameter pack. */
4585 arg
= TREE_VEC_ELT (packed_args
, j
);
4587 if (PACK_EXPANSION_P (arg
))
4589 /* Pack expansions must come at the end of the
4591 if ((packed_args
&& j
< len
- 1)
4592 || (!packed_args
&& i
< nargs
- 1))
4594 if (TREE_CODE (arg
) == EXPR_PACK_EXPANSION
)
4595 error ("parameter pack argument %qE must be at the "
4596 "end of the template argument list", arg
);
4598 error ("parameter pack argument %qT must be at the "
4599 "end of the template argument list", arg
);
4603 if (TREE_CODE (arg
) == EXPR_PACK_EXPANSION
)
4604 /* We only care about the pattern. */
4605 arg
= PACK_EXPANSION_PATTERN (arg
);
4607 if (/* These first two lines are the `non-type' bit. */
4609 && TREE_CODE (arg
) != TEMPLATE_DECL
4610 /* This next two lines are the `argument expression is not just a
4611 simple identifier' condition and also the `specialized
4612 non-type argument' bit. */
4613 && TREE_CODE (arg
) != TEMPLATE_PARM_INDEX
4614 && !(REFERENCE_REF_P (arg
)
4615 && TREE_CODE (TREE_OPERAND (arg
, 0)) == TEMPLATE_PARM_INDEX
))
4617 if ((!packed_args
&& tpd
.arg_uses_template_parms
[i
])
4618 || (packed_args
&& uses_template_parms (arg
)))
4619 error ("template argument %qE involves template parameter(s)",
4623 /* Look at the corresponding template parameter,
4624 marking which template parameters its type depends
4626 tree type
= TREE_TYPE (parm
);
4630 /* We haven't yet initialized TPD2. Do so now. */
4631 tpd2
.arg_uses_template_parms
= XALLOCAVEC (int, nargs
);
4632 /* The number of parameters here is the number in the
4633 main template, which, as checked in the assertion
4635 tpd2
.parms
= XALLOCAVEC (int, nargs
);
4637 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (maintmpl
));
4640 /* Mark the template parameters. But this time, we're
4641 looking for the template parameters of the main
4642 template, not in the specialization. */
4643 tpd2
.current_arg
= i
;
4644 tpd2
.arg_uses_template_parms
[i
] = 0;
4645 memset (tpd2
.parms
, 0, sizeof (int) * nargs
);
4646 for_each_template_parm (type
,
4647 &mark_template_parm
,
4650 /*include_nondeduced_p=*/false);
4652 if (tpd2
.arg_uses_template_parms
[i
])
4654 /* The type depended on some template parameters.
4655 If they are fully specialized in the
4656 specialization, that's OK. */
4659 for (j
= 0; j
< nargs
; ++j
)
4660 if (tpd2
.parms
[j
] != 0
4661 && tpd
.arg_uses_template_parms
[j
])
4664 error_n (input_location
, count
,
4665 "type %qT of template argument %qE depends "
4666 "on a template parameter",
4667 "type %qT of template argument %qE depends "
4668 "on template parameters",
4677 /* We should only get here once. */
4678 if (TREE_CODE (decl
) == TYPE_DECL
)
4679 gcc_assert (!COMPLETE_TYPE_P (type
));
4681 // Build the template decl.
4682 tree tmpl
= build_template_decl (decl
, current_template_parms
,
4683 DECL_MEMBER_TEMPLATE_P (maintmpl
));
4684 TREE_TYPE (tmpl
) = type
;
4685 DECL_TEMPLATE_RESULT (tmpl
) = decl
;
4686 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl
);
4687 DECL_TEMPLATE_INFO (tmpl
) = build_template_info (maintmpl
, specargs
);
4688 DECL_PRIMARY_TEMPLATE (tmpl
) = maintmpl
;
4691 /* We didn't register this in check_explicit_specialization so we could
4692 wait until the constraints were set. */
4693 decl
= register_specialization (decl
, maintmpl
, specargs
, false, 0);
4695 associate_classtype_constraints (type
);
4697 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl
)
4698 = tree_cons (specargs
, tmpl
,
4699 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl
));
4700 TREE_TYPE (DECL_TEMPLATE_SPECIALIZATIONS (maintmpl
)) = type
;
4702 for (inst
= DECL_TEMPLATE_INSTANTIATIONS (maintmpl
); inst
;
4703 inst
= TREE_CHAIN (inst
))
4705 tree instance
= TREE_VALUE (inst
);
4706 if (TYPE_P (instance
)
4707 ? (COMPLETE_TYPE_P (instance
)
4708 && CLASSTYPE_IMPLICIT_INSTANTIATION (instance
))
4709 : DECL_TEMPLATE_INSTANTIATION (instance
))
4711 tree spec
= most_specialized_partial_spec (instance
, tf_none
);
4712 tree inst_decl
= (DECL_P (instance
)
4713 ? instance
: TYPE_NAME (instance
));
4716 else if (spec
== error_mark_node
)
4717 permerror (input_location
,
4718 "declaration of %qD ambiguates earlier template "
4719 "instantiation for %qD", decl
, inst_decl
);
4720 else if (TREE_VALUE (spec
) == tmpl
)
4721 permerror (input_location
,
4722 "partial specialization of %qD after instantiation "
4723 "of %qD", decl
, inst_decl
);
4730 /* PARM is a template parameter of some form; return the corresponding
4731 TEMPLATE_PARM_INDEX. */
4734 get_template_parm_index (tree parm
)
4736 if (TREE_CODE (parm
) == PARM_DECL
4737 || TREE_CODE (parm
) == CONST_DECL
)
4738 parm
= DECL_INITIAL (parm
);
4739 else if (TREE_CODE (parm
) == TYPE_DECL
4740 || TREE_CODE (parm
) == TEMPLATE_DECL
)
4741 parm
= TREE_TYPE (parm
);
4742 if (TREE_CODE (parm
) == TEMPLATE_TYPE_PARM
4743 || TREE_CODE (parm
) == BOUND_TEMPLATE_TEMPLATE_PARM
4744 || TREE_CODE (parm
) == TEMPLATE_TEMPLATE_PARM
)
4745 parm
= TEMPLATE_TYPE_PARM_INDEX (parm
);
4746 gcc_assert (TREE_CODE (parm
) == TEMPLATE_PARM_INDEX
);
4750 /* Subroutine of fixed_parameter_pack_p below. Look for any template
4751 parameter packs used by the template parameter PARM. */
4754 fixed_parameter_pack_p_1 (tree parm
, struct find_parameter_pack_data
*ppd
)
4756 /* A type parm can't refer to another parm. */
4757 if (TREE_CODE (parm
) == TYPE_DECL
)
4759 else if (TREE_CODE (parm
) == PARM_DECL
)
4761 cp_walk_tree (&TREE_TYPE (parm
), &find_parameter_packs_r
,
4766 gcc_assert (TREE_CODE (parm
) == TEMPLATE_DECL
);
4768 tree vec
= INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (parm
));
4769 for (int i
= 0; i
< TREE_VEC_LENGTH (vec
); ++i
)
4770 fixed_parameter_pack_p_1 (TREE_VALUE (TREE_VEC_ELT (vec
, i
)), ppd
);
4773 /* PARM is a template parameter pack. Return any parameter packs used in
4774 its type or the type of any of its template parameters. If there are
4775 any such packs, it will be instantiated into a fixed template parameter
4776 list by partial instantiation rather than be fully deduced. */
4779 fixed_parameter_pack_p (tree parm
)
4781 /* This can only be true in a member template. */
4782 if (TEMPLATE_PARM_ORIG_LEVEL (get_template_parm_index (parm
)) < 2)
4784 /* This can only be true for a parameter pack. */
4785 if (!template_parameter_pack_p (parm
))
4787 /* A type parm can't refer to another parm. */
4788 if (TREE_CODE (parm
) == TYPE_DECL
)
4791 tree parameter_packs
= NULL_TREE
;
4792 struct find_parameter_pack_data ppd
;
4793 ppd
.parameter_packs
= ¶meter_packs
;
4794 ppd
.visited
= new hash_set
<tree
>;
4795 ppd
.type_pack_expansion_p
= false;
4797 fixed_parameter_pack_p_1 (parm
, &ppd
);
4800 return parameter_packs
;
4803 /* Check that a template declaration's use of default arguments and
4804 parameter packs is not invalid. Here, PARMS are the template
4805 parameters. IS_PRIMARY is true if DECL is the thing declared by
4806 a primary template. IS_PARTIAL is true if DECL is a partial
4809 IS_FRIEND_DECL is nonzero if DECL is a friend function template
4810 declaration (but not a definition); 1 indicates a declaration, 2
4811 indicates a redeclaration. When IS_FRIEND_DECL=2, no errors are
4812 emitted for extraneous default arguments.
4814 Returns TRUE if there were no errors found, FALSE otherwise. */
4817 check_default_tmpl_args (tree decl
, tree parms
, bool is_primary
,
4818 bool is_partial
, int is_friend_decl
)
4821 int last_level_to_check
;
4823 bool no_errors
= true;
4827 A default template-argument shall not be specified in a
4828 function template declaration or a function template definition, nor
4829 in the template-parameter-list of the definition of a member of a
4832 if (TREE_CODE (CP_DECL_CONTEXT (decl
)) == FUNCTION_DECL
4833 || (TREE_CODE (decl
) == FUNCTION_DECL
&& DECL_LOCAL_FUNCTION_P (decl
)))
4834 /* You can't have a function template declaration in a local
4835 scope, nor you can you define a member of a class template in a
4839 if ((TREE_CODE (decl
) == TYPE_DECL
4841 && LAMBDA_TYPE_P (TREE_TYPE (decl
)))
4842 || (TREE_CODE (decl
) == FUNCTION_DECL
4843 && LAMBDA_FUNCTION_P (decl
)))
4844 /* A lambda doesn't have an explicit declaration; don't complain
4845 about the parms of the enclosing class. */
4848 if (current_class_type
4849 && !TYPE_BEING_DEFINED (current_class_type
)
4850 && DECL_LANG_SPECIFIC (decl
)
4851 && DECL_DECLARES_FUNCTION_P (decl
)
4852 /* If this is either a friend defined in the scope of the class
4853 or a member function. */
4854 && (DECL_FUNCTION_MEMBER_P (decl
)
4855 ? same_type_p (DECL_CONTEXT (decl
), current_class_type
)
4856 : DECL_FRIEND_CONTEXT (decl
)
4857 ? same_type_p (DECL_FRIEND_CONTEXT (decl
), current_class_type
)
4859 /* And, if it was a member function, it really was defined in
4860 the scope of the class. */
4861 && (!DECL_FUNCTION_MEMBER_P (decl
)
4862 || DECL_INITIALIZED_IN_CLASS_P (decl
)))
4863 /* We already checked these parameters when the template was
4864 declared, so there's no need to do it again now. This function
4865 was defined in class scope, but we're processing its body now
4866 that the class is complete. */
4869 /* Core issue 226 (C++0x only): the following only applies to class
4872 && ((cxx_dialect
== cxx98
) || TREE_CODE (decl
) != FUNCTION_DECL
))
4876 If a template-parameter has a default template-argument, all
4877 subsequent template-parameters shall have a default
4878 template-argument supplied. */
4879 for (parm_level
= parms
; parm_level
; parm_level
= TREE_CHAIN (parm_level
))
4881 tree inner_parms
= TREE_VALUE (parm_level
);
4882 int ntparms
= TREE_VEC_LENGTH (inner_parms
);
4883 int seen_def_arg_p
= 0;
4886 for (i
= 0; i
< ntparms
; ++i
)
4888 tree parm
= TREE_VEC_ELT (inner_parms
, i
);
4890 if (parm
== error_mark_node
)
4893 if (TREE_PURPOSE (parm
))
4895 else if (seen_def_arg_p
4896 && !template_parameter_pack_p (TREE_VALUE (parm
)))
4898 error ("no default argument for %qD", TREE_VALUE (parm
));
4899 /* For better subsequent error-recovery, we indicate that
4900 there should have been a default argument. */
4901 TREE_PURPOSE (parm
) = error_mark_node
;
4904 else if (!is_partial
4906 /* Don't complain about an enclosing partial
4908 && parm_level
== parms
4909 && TREE_CODE (decl
) == TYPE_DECL
4911 && template_parameter_pack_p (TREE_VALUE (parm
))
4912 /* A fixed parameter pack will be partially
4913 instantiated into a fixed length list. */
4914 && !fixed_parameter_pack_p (TREE_VALUE (parm
)))
4916 /* A primary class template can only have one
4917 parameter pack, at the end of the template
4920 error ("parameter pack %q+D must be at the end of the"
4921 " template parameter list", TREE_VALUE (parm
));
4923 TREE_VALUE (TREE_VEC_ELT (inner_parms
, i
))
4931 if (((cxx_dialect
== cxx98
) && TREE_CODE (decl
) != TYPE_DECL
)
4935 /* For an ordinary class template, default template arguments are
4936 allowed at the innermost level, e.g.:
4937 template <class T = int>
4939 but, in a partial specialization, they're not allowed even
4940 there, as we have in [temp.class.spec]:
4942 The template parameter list of a specialization shall not
4943 contain default template argument values.
4945 So, for a partial specialization, or for a function template
4946 (in C++98/C++03), we look at all of them. */
4949 /* But, for a primary class template that is not a partial
4950 specialization we look at all template parameters except the
4952 parms
= TREE_CHAIN (parms
);
4954 /* Figure out what error message to issue. */
4955 if (is_friend_decl
== 2)
4956 msg
= G_("default template arguments may not be used in function template "
4957 "friend re-declaration");
4958 else if (is_friend_decl
)
4959 msg
= G_("default template arguments may not be used in function template "
4960 "friend declarations");
4961 else if (TREE_CODE (decl
) == FUNCTION_DECL
&& (cxx_dialect
== cxx98
))
4962 msg
= G_("default template arguments may not be used in function templates "
4963 "without -std=c++11 or -std=gnu++11");
4964 else if (is_partial
)
4965 msg
= G_("default template arguments may not be used in "
4966 "partial specializations");
4967 else if (current_class_type
&& CLASSTYPE_IS_TEMPLATE (current_class_type
))
4968 msg
= G_("default argument for template parameter for class enclosing %qD");
4970 /* Per [temp.param]/9, "A default template-argument shall not be
4971 specified in the template-parameter-lists of the definition of
4972 a member of a class template that appears outside of the member's
4973 class.", thus if we aren't handling a member of a class template
4974 there is no need to examine the parameters. */
4977 if (current_class_type
&& TYPE_BEING_DEFINED (current_class_type
))
4978 /* If we're inside a class definition, there's no need to
4979 examine the parameters to the class itself. On the one
4980 hand, they will be checked when the class is defined, and,
4981 on the other, default arguments are valid in things like:
4982 template <class T = double>
4983 struct S { template <class U> void f(U); };
4984 Here the default argument for `S' has no bearing on the
4985 declaration of `f'. */
4986 last_level_to_check
= template_class_depth (current_class_type
) + 1;
4988 /* Check everything. */
4989 last_level_to_check
= 0;
4991 for (parm_level
= parms
;
4992 parm_level
&& TMPL_PARMS_DEPTH (parm_level
) >= last_level_to_check
;
4993 parm_level
= TREE_CHAIN (parm_level
))
4995 tree inner_parms
= TREE_VALUE (parm_level
);
4999 ntparms
= TREE_VEC_LENGTH (inner_parms
);
5000 for (i
= 0; i
< ntparms
; ++i
)
5002 if (TREE_VEC_ELT (inner_parms
, i
) == error_mark_node
)
5005 if (TREE_PURPOSE (TREE_VEC_ELT (inner_parms
, i
)))
5010 if (is_friend_decl
== 2)
5017 /* Clear out the default argument so that we are not
5019 TREE_PURPOSE (TREE_VEC_ELT (inner_parms
, i
)) = NULL_TREE
;
5023 /* At this point, if we're still interested in issuing messages,
5024 they must apply to classes surrounding the object declared. */
5026 msg
= G_("default argument for template parameter for class "
5033 /* Worker for push_template_decl_real, called via
5034 for_each_template_parm. DATA is really an int, indicating the
5035 level of the parameters we are interested in. If T is a template
5036 parameter of that level, return nonzero. */
5039 template_parm_this_level_p (tree t
, void* data
)
5041 int this_level
= *(int *)data
;
5044 if (TREE_CODE (t
) == TEMPLATE_PARM_INDEX
)
5045 level
= TEMPLATE_PARM_LEVEL (t
);
5047 level
= TEMPLATE_TYPE_LEVEL (t
);
5048 return level
== this_level
;
5051 /* Creates a TEMPLATE_DECL for the indicated DECL using the template
5052 parameters given by current_template_args, or reuses a
5053 previously existing one, if appropriate. Returns the DECL, or an
5054 equivalent one, if it is replaced via a call to duplicate_decls.
5056 If IS_FRIEND is true, DECL is a friend declaration. */
5059 push_template_decl_real (tree decl
, bool is_friend
)
5067 int new_template_p
= 0;
5068 /* True if the template is a member template, in the sense of
5070 bool member_template_p
= false;
5072 if (decl
== error_mark_node
|| !current_template_parms
)
5073 return error_mark_node
;
5075 /* See if this is a partial specialization. */
5076 is_partial
= ((DECL_IMPLICIT_TYPEDEF_P (decl
)
5077 && TREE_CODE (TREE_TYPE (decl
)) != ENUMERAL_TYPE
5078 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl
)))
5080 && DECL_LANG_SPECIFIC (decl
)
5081 && DECL_TEMPLATE_SPECIALIZATION (decl
)
5082 && TINFO_USED_TEMPLATE_ID (DECL_TEMPLATE_INFO (decl
))));
5084 if (TREE_CODE (decl
) == FUNCTION_DECL
&& DECL_FRIEND_P (decl
))
5088 /* For a friend, we want the context of the friend function, not
5089 the type of which it is a friend. */
5090 ctx
= CP_DECL_CONTEXT (decl
);
5091 else if (CP_DECL_CONTEXT (decl
)
5092 && TREE_CODE (CP_DECL_CONTEXT (decl
)) != NAMESPACE_DECL
)
5093 /* In the case of a virtual function, we want the class in which
5095 ctx
= CP_DECL_CONTEXT (decl
);
5097 /* Otherwise, if we're currently defining some class, the DECL
5098 is assumed to be a member of the class. */
5099 ctx
= current_scope ();
5101 if (ctx
&& TREE_CODE (ctx
) == NAMESPACE_DECL
)
5104 if (!DECL_CONTEXT (decl
))
5105 DECL_CONTEXT (decl
) = FROB_CONTEXT (current_namespace
);
5107 /* See if this is a primary template. */
5108 if (is_friend
&& ctx
5109 && uses_template_parms_level (ctx
, processing_template_decl
))
5110 /* A friend template that specifies a class context, i.e.
5111 template <typename T> friend void A<T>::f();
5114 else if (TREE_CODE (decl
) == TYPE_DECL
5115 && LAMBDA_TYPE_P (TREE_TYPE (decl
)))
5118 is_primary
= template_parm_scope_p ();
5122 warning (OPT_Wtemplates
, "template %qD declared", decl
);
5124 if (DECL_CLASS_SCOPE_P (decl
))
5125 member_template_p
= true;
5126 if (TREE_CODE (decl
) == TYPE_DECL
5127 && anon_aggrname_p (DECL_NAME (decl
)))
5129 error ("template class without a name");
5130 return error_mark_node
;
5132 else if (TREE_CODE (decl
) == FUNCTION_DECL
)
5134 if (member_template_p
)
5136 if (DECL_OVERRIDE_P (decl
) || DECL_FINAL_P (decl
))
5137 error ("member template %qD may not have virt-specifiers", decl
);
5139 if (DECL_DESTRUCTOR_P (decl
))
5143 A destructor shall not be a member template. */
5144 error ("destructor %qD declared as member template", decl
);
5145 return error_mark_node
;
5147 if (NEW_DELETE_OPNAME_P (DECL_NAME (decl
))
5148 && (!prototype_p (TREE_TYPE (decl
))
5149 || TYPE_ARG_TYPES (TREE_TYPE (decl
)) == void_list_node
5150 || !TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (decl
)))
5151 || (TREE_CHAIN (TYPE_ARG_TYPES ((TREE_TYPE (decl
))))
5152 == void_list_node
)))
5154 /* [basic.stc.dynamic.allocation]
5156 An allocation function can be a function
5157 template. ... Template allocation functions shall
5158 have two or more parameters. */
5159 error ("invalid template declaration of %qD", decl
);
5160 return error_mark_node
;
5163 else if (DECL_IMPLICIT_TYPEDEF_P (decl
)
5164 && CLASS_TYPE_P (TREE_TYPE (decl
)))
5166 else if (TREE_CODE (decl
) == TYPE_DECL
5167 && TYPE_DECL_ALIAS_P (decl
))
5168 /* alias-declaration */
5169 gcc_assert (!DECL_ARTIFICIAL (decl
));
5170 else if (VAR_P (decl
))
5171 /* C++14 variable template. */;
5174 error ("template declaration of %q#D", decl
);
5175 return error_mark_node
;
5179 /* Check to see that the rules regarding the use of default
5180 arguments are not being violated. */
5181 check_default_tmpl_args (decl
, current_template_parms
,
5182 is_primary
, is_partial
, /*is_friend_decl=*/0);
5184 /* Ensure that there are no parameter packs in the type of this
5185 declaration that have not been expanded. */
5186 if (TREE_CODE (decl
) == FUNCTION_DECL
)
5188 /* Check each of the arguments individually to see if there are
5189 any bare parameter packs. */
5190 tree type
= TREE_TYPE (decl
);
5191 tree arg
= DECL_ARGUMENTS (decl
);
5192 tree argtype
= TYPE_ARG_TYPES (type
);
5194 while (arg
&& argtype
)
5196 if (!DECL_PACK_P (arg
)
5197 && check_for_bare_parameter_packs (TREE_TYPE (arg
)))
5199 /* This is a PARM_DECL that contains unexpanded parameter
5200 packs. We have already complained about this in the
5201 check_for_bare_parameter_packs call, so just replace
5202 these types with ERROR_MARK_NODE. */
5203 TREE_TYPE (arg
) = error_mark_node
;
5204 TREE_VALUE (argtype
) = error_mark_node
;
5207 arg
= DECL_CHAIN (arg
);
5208 argtype
= TREE_CHAIN (argtype
);
5211 /* Check for bare parameter packs in the return type and the
5212 exception specifiers. */
5213 if (check_for_bare_parameter_packs (TREE_TYPE (type
)))
5214 /* Errors were already issued, set return type to int
5215 as the frontend doesn't expect error_mark_node as
5217 TREE_TYPE (type
) = integer_type_node
;
5218 if (check_for_bare_parameter_packs (TYPE_RAISES_EXCEPTIONS (type
)))
5219 TYPE_RAISES_EXCEPTIONS (type
) = NULL_TREE
;
5221 else if (check_for_bare_parameter_packs ((TREE_CODE (decl
) == TYPE_DECL
5222 && TYPE_DECL_ALIAS_P (decl
))
5223 ? DECL_ORIGINAL_TYPE (decl
)
5224 : TREE_TYPE (decl
)))
5226 TREE_TYPE (decl
) = error_mark_node
;
5227 return error_mark_node
;
5231 return process_partial_specialization (decl
);
5233 args
= current_template_args ();
5236 || TREE_CODE (ctx
) == FUNCTION_DECL
5237 || (CLASS_TYPE_P (ctx
) && TYPE_BEING_DEFINED (ctx
))
5238 || (TREE_CODE (decl
) == TYPE_DECL
5239 && LAMBDA_TYPE_P (TREE_TYPE (decl
)))
5240 || (is_friend
&& !DECL_TEMPLATE_INFO (decl
)))
5242 if (DECL_LANG_SPECIFIC (decl
)
5243 && DECL_TEMPLATE_INFO (decl
)
5244 && DECL_TI_TEMPLATE (decl
))
5245 tmpl
= DECL_TI_TEMPLATE (decl
);
5246 /* If DECL is a TYPE_DECL for a class-template, then there won't
5247 be DECL_LANG_SPECIFIC. The information equivalent to
5248 DECL_TEMPLATE_INFO is found in TYPE_TEMPLATE_INFO instead. */
5249 else if (DECL_IMPLICIT_TYPEDEF_P (decl
)
5250 && TYPE_TEMPLATE_INFO (TREE_TYPE (decl
))
5251 && TYPE_TI_TEMPLATE (TREE_TYPE (decl
)))
5253 /* Since a template declaration already existed for this
5254 class-type, we must be redeclaring it here. Make sure
5255 that the redeclaration is valid. */
5256 redeclare_class_template (TREE_TYPE (decl
),
5257 current_template_parms
,
5258 current_template_constraints ());
5259 /* We don't need to create a new TEMPLATE_DECL; just use the
5260 one we already had. */
5261 tmpl
= TYPE_TI_TEMPLATE (TREE_TYPE (decl
));
5265 tmpl
= build_template_decl (decl
, current_template_parms
,
5269 if (DECL_LANG_SPECIFIC (decl
)
5270 && DECL_TEMPLATE_SPECIALIZATION (decl
))
5272 /* A specialization of a member template of a template
5274 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl
);
5275 DECL_TEMPLATE_INFO (tmpl
) = DECL_TEMPLATE_INFO (decl
);
5276 DECL_TEMPLATE_INFO (decl
) = NULL_TREE
;
5282 tree a
, t
, current
, parms
;
5284 tree tinfo
= get_template_info (decl
);
5288 error ("template definition of non-template %q#D", decl
);
5289 return error_mark_node
;
5292 tmpl
= TI_TEMPLATE (tinfo
);
5294 if (DECL_FUNCTION_TEMPLATE_P (tmpl
)
5295 && DECL_TEMPLATE_INFO (decl
) && DECL_TI_ARGS (decl
)
5296 && DECL_TEMPLATE_SPECIALIZATION (decl
)
5297 && DECL_MEMBER_TEMPLATE_P (tmpl
))
5301 /* The declaration is a specialization of a member
5302 template, declared outside the class. Therefore, the
5303 innermost template arguments will be NULL, so we
5304 replace them with the arguments determined by the
5305 earlier call to check_explicit_specialization. */
5306 args
= DECL_TI_ARGS (decl
);
5309 = build_template_decl (decl
, current_template_parms
,
5311 DECL_TEMPLATE_RESULT (new_tmpl
) = decl
;
5312 TREE_TYPE (new_tmpl
) = TREE_TYPE (decl
);
5313 DECL_TI_TEMPLATE (decl
) = new_tmpl
;
5314 SET_DECL_TEMPLATE_SPECIALIZATION (new_tmpl
);
5315 DECL_TEMPLATE_INFO (new_tmpl
)
5316 = build_template_info (tmpl
, args
);
5318 register_specialization (new_tmpl
,
5319 most_general_template (tmpl
),
5325 /* Make sure the template headers we got make sense. */
5327 parms
= DECL_TEMPLATE_PARMS (tmpl
);
5328 i
= TMPL_PARMS_DEPTH (parms
);
5329 if (TMPL_ARGS_DEPTH (args
) != i
)
5331 error ("expected %d levels of template parms for %q#D, got %d",
5332 i
, decl
, TMPL_ARGS_DEPTH (args
));
5333 DECL_INTERFACE_KNOWN (decl
) = 1;
5334 return error_mark_node
;
5337 for (current
= decl
; i
> 0; --i
, parms
= TREE_CHAIN (parms
))
5339 a
= TMPL_ARGS_LEVEL (args
, i
);
5340 t
= INNERMOST_TEMPLATE_PARMS (parms
);
5342 if (TREE_VEC_LENGTH (t
) != TREE_VEC_LENGTH (a
))
5344 if (current
== decl
)
5345 error ("got %d template parameters for %q#D",
5346 TREE_VEC_LENGTH (a
), decl
);
5348 error ("got %d template parameters for %q#T",
5349 TREE_VEC_LENGTH (a
), current
);
5350 error (" but %d required", TREE_VEC_LENGTH (t
));
5351 /* Avoid crash in import_export_decl. */
5352 DECL_INTERFACE_KNOWN (decl
) = 1;
5353 return error_mark_node
;
5356 if (current
== decl
)
5358 else if (current
== NULL_TREE
)
5359 /* Can happen in erroneous input. */
5362 current
= get_containing_scope (current
);
5365 /* Check that the parms are used in the appropriate qualifying scopes
5366 in the declarator. */
5367 if (!comp_template_args
5369 TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl
)))))
5372 template arguments to %qD do not match original template %qD",
5373 decl
, DECL_TEMPLATE_RESULT (tmpl
));
5374 if (!uses_template_parms (TI_ARGS (tinfo
)))
5375 inform (input_location
, "use template<> for an explicit specialization");
5376 /* Avoid crash in import_export_decl. */
5377 DECL_INTERFACE_KNOWN (decl
) = 1;
5378 return error_mark_node
;
5382 DECL_TEMPLATE_RESULT (tmpl
) = decl
;
5383 TREE_TYPE (tmpl
) = TREE_TYPE (decl
);
5385 /* Push template declarations for global functions and types. Note
5386 that we do not try to push a global template friend declared in a
5387 template class; such a thing may well depend on the template
5388 parameters of the class. */
5389 if (new_template_p
&& !ctx
5390 && !(is_friend
&& template_class_depth (current_class_type
) > 0))
5392 tmpl
= pushdecl_namespace_level (tmpl
, is_friend
);
5393 if (tmpl
== error_mark_node
)
5394 return error_mark_node
;
5396 /* Hide template friend classes that haven't been declared yet. */
5397 if (is_friend
&& TREE_CODE (decl
) == TYPE_DECL
)
5399 DECL_ANTICIPATED (tmpl
) = 1;
5400 DECL_FRIEND_P (tmpl
) = 1;
5406 tree parms
= DECL_TEMPLATE_PARMS (tmpl
);
5409 DECL_PRIMARY_TEMPLATE (tmpl
) = tmpl
;
5410 if (DECL_CONV_FN_P (tmpl
))
5412 int depth
= TMPL_PARMS_DEPTH (parms
);
5414 /* It is a conversion operator. See if the type converted to
5415 depends on innermost template operands. */
5417 if (uses_template_parms_level (TREE_TYPE (TREE_TYPE (tmpl
)),
5419 DECL_TEMPLATE_CONV_FN_P (tmpl
) = 1;
5422 /* Give template template parms a DECL_CONTEXT of the template
5423 for which they are a parameter. */
5424 parms
= INNERMOST_TEMPLATE_PARMS (parms
);
5425 for (i
= TREE_VEC_LENGTH (parms
) - 1; i
>= 0; --i
)
5427 tree parm
= TREE_VALUE (TREE_VEC_ELT (parms
, i
));
5428 if (TREE_CODE (parm
) == TEMPLATE_DECL
)
5429 DECL_CONTEXT (parm
) = tmpl
;
5432 if (TREE_CODE (decl
) == TYPE_DECL
5433 && TYPE_DECL_ALIAS_P (decl
)
5434 && complex_alias_template_p (tmpl
))
5435 TEMPLATE_DECL_COMPLEX_ALIAS_P (tmpl
) = true;
5438 /* The DECL_TI_ARGS of DECL contains full set of arguments referring
5439 back to its most general template. If TMPL is a specialization,
5440 ARGS may only have the innermost set of arguments. Add the missing
5441 argument levels if necessary. */
5442 if (DECL_TEMPLATE_INFO (tmpl
))
5443 args
= add_outermost_template_args (DECL_TI_ARGS (tmpl
), args
);
5445 info
= build_template_info (tmpl
, args
);
5447 if (DECL_IMPLICIT_TYPEDEF_P (decl
))
5448 SET_TYPE_TEMPLATE_INFO (TREE_TYPE (tmpl
), info
);
5451 if (is_primary
&& !DECL_LANG_SPECIFIC (decl
))
5452 retrofit_lang_decl (decl
);
5453 if (DECL_LANG_SPECIFIC (decl
))
5454 DECL_TEMPLATE_INFO (decl
) = info
;
5457 if (flag_implicit_templates
5459 && TREE_PUBLIC (decl
)
5460 && VAR_OR_FUNCTION_DECL_P (decl
))
5461 /* Set DECL_COMDAT on template instantiations; if we force
5462 them to be emitted by explicit instantiation or -frepo,
5463 mark_needed will tell cgraph to do the right thing. */
5464 DECL_COMDAT (decl
) = true;
5466 return DECL_TEMPLATE_RESULT (tmpl
);
5470 push_template_decl (tree decl
)
5472 return push_template_decl_real (decl
, false);
5475 /* FN is an inheriting constructor that inherits from the constructor
5476 template INHERITED; turn FN into a constructor template with a matching
5480 add_inherited_template_parms (tree fn
, tree inherited
)
5483 = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (inherited
));
5484 inner_parms
= copy_node (inner_parms
);
5486 = tree_cons (size_int (processing_template_decl
+ 1),
5487 inner_parms
, current_template_parms
);
5488 tree tmpl
= build_template_decl (fn
, parms
, /*member*/true);
5489 tree args
= template_parms_to_args (parms
);
5490 DECL_TEMPLATE_INFO (fn
) = build_template_info (tmpl
, args
);
5491 TREE_TYPE (tmpl
) = TREE_TYPE (fn
);
5492 DECL_TEMPLATE_RESULT (tmpl
) = fn
;
5493 DECL_ARTIFICIAL (tmpl
) = true;
5494 DECL_PRIMARY_TEMPLATE (tmpl
) = tmpl
;
5498 /* Called when a class template TYPE is redeclared with the indicated
5499 template PARMS, e.g.:
5501 template <class T> struct S;
5502 template <class T> struct S {}; */
5505 redeclare_class_template (tree type
, tree parms
, tree cons
)
5511 if (!TYPE_TEMPLATE_INFO (type
))
5513 error ("%qT is not a template type", type
);
5517 tmpl
= TYPE_TI_TEMPLATE (type
);
5518 if (!PRIMARY_TEMPLATE_P (tmpl
))
5519 /* The type is nested in some template class. Nothing to worry
5520 about here; there are no new template parameters for the nested
5526 error ("template specifiers not specified in declaration of %qD",
5531 parms
= INNERMOST_TEMPLATE_PARMS (parms
);
5532 tmpl_parms
= DECL_INNERMOST_TEMPLATE_PARMS (tmpl
);
5534 if (TREE_VEC_LENGTH (parms
) != TREE_VEC_LENGTH (tmpl_parms
))
5536 error_n (input_location
, TREE_VEC_LENGTH (parms
),
5537 "redeclared with %d template parameter",
5538 "redeclared with %d template parameters",
5539 TREE_VEC_LENGTH (parms
));
5540 inform_n (DECL_SOURCE_LOCATION (tmpl
), TREE_VEC_LENGTH (tmpl_parms
),
5541 "previous declaration %qD used %d template parameter",
5542 "previous declaration %qD used %d template parameters",
5543 tmpl
, TREE_VEC_LENGTH (tmpl_parms
));
5547 for (i
= 0; i
< TREE_VEC_LENGTH (tmpl_parms
); ++i
)
5554 if (TREE_VEC_ELT (tmpl_parms
, i
) == error_mark_node
5555 || TREE_VEC_ELT (parms
, i
) == error_mark_node
)
5558 tmpl_parm
= TREE_VALUE (TREE_VEC_ELT (tmpl_parms
, i
));
5559 if (error_operand_p (tmpl_parm
))
5562 parm
= TREE_VALUE (TREE_VEC_ELT (parms
, i
));
5563 tmpl_default
= TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms
, i
));
5564 parm_default
= TREE_PURPOSE (TREE_VEC_ELT (parms
, i
));
5566 /* TMPL_PARM and PARM can be either TYPE_DECL, PARM_DECL, or
5568 if (TREE_CODE (tmpl_parm
) != TREE_CODE (parm
)
5569 || (TREE_CODE (tmpl_parm
) != TYPE_DECL
5570 && !same_type_p (TREE_TYPE (tmpl_parm
), TREE_TYPE (parm
)))
5571 || (TREE_CODE (tmpl_parm
) != PARM_DECL
5572 && (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (tmpl_parm
))
5573 != TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm
))))
5574 || (TREE_CODE (tmpl_parm
) == PARM_DECL
5575 && (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (tmpl_parm
))
5576 != TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm
)))))
5578 error ("template parameter %q+#D", tmpl_parm
);
5579 error ("redeclared here as %q#D", parm
);
5583 if (tmpl_default
!= NULL_TREE
&& parm_default
!= NULL_TREE
)
5585 /* We have in [temp.param]:
5587 A template-parameter may not be given default arguments
5588 by two different declarations in the same scope. */
5589 error_at (input_location
, "redefinition of default argument for %q#D", parm
);
5590 inform (DECL_SOURCE_LOCATION (tmpl_parm
),
5591 "original definition appeared here");
5595 if (parm_default
!= NULL_TREE
)
5596 /* Update the previous template parameters (which are the ones
5597 that will really count) with the new default value. */
5598 TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms
, i
)) = parm_default
;
5599 else if (tmpl_default
!= NULL_TREE
)
5600 /* Update the new parameters, too; they'll be used as the
5601 parameters for any members. */
5602 TREE_PURPOSE (TREE_VEC_ELT (parms
, i
)) = tmpl_default
;
5604 /* Give each template template parm in this redeclaration a
5605 DECL_CONTEXT of the template for which they are a parameter. */
5606 if (TREE_CODE (parm
) == TEMPLATE_DECL
)
5608 gcc_assert (DECL_CONTEXT (parm
) == NULL_TREE
);
5609 DECL_CONTEXT (parm
) = tmpl
;
5613 // Cannot redeclare a class template with a different set of constraints.
5614 if (!equivalent_constraints (get_constraints (tmpl
), cons
))
5616 error_at (input_location
, "redeclaration %q#D with different "
5617 "constraints", tmpl
);
5618 inform (DECL_SOURCE_LOCATION (tmpl
),
5619 "original declaration appeared here");
5625 /* The actual substitution part of instantiate_non_dependent_expr_sfinae,
5626 to be used when the caller has already checked
5627 (processing_template_decl
5628 && !instantiation_dependent_expression_p (expr)
5629 && potential_constant_expression (expr))
5630 and cleared processing_template_decl. */
5633 instantiate_non_dependent_expr_internal (tree expr
, tsubst_flags_t complain
)
5635 return tsubst_copy_and_build (expr
,
5638 /*in_decl=*/NULL_TREE
,
5639 /*function_p=*/false,
5640 /*integral_constant_expression_p=*/true);
5643 /* Simplify EXPR if it is a non-dependent expression. Returns the
5644 (possibly simplified) expression. */
5647 instantiate_non_dependent_expr_sfinae (tree expr
, tsubst_flags_t complain
)
5649 if (expr
== NULL_TREE
)
5652 /* If we're in a template, but EXPR isn't value dependent, simplify
5653 it. We're supposed to treat:
5655 template <typename T> void f(T[1 + 1]);
5656 template <typename T> void f(T[2]);
5658 as two declarations of the same function, for example. */
5659 if (processing_template_decl
5660 && potential_nondependent_constant_expression (expr
))
5662 processing_template_decl_sentinel s
;
5663 expr
= instantiate_non_dependent_expr_internal (expr
, complain
);
5669 instantiate_non_dependent_expr (tree expr
)
5671 return instantiate_non_dependent_expr_sfinae (expr
, tf_error
);
5674 /* Like instantiate_non_dependent_expr, but return NULL_TREE rather than
5675 an uninstantiated expression. */
5678 instantiate_non_dependent_or_null (tree expr
)
5680 if (expr
== NULL_TREE
)
5682 if (processing_template_decl
)
5684 if (!potential_nondependent_constant_expression (expr
))
5688 processing_template_decl_sentinel s
;
5689 expr
= instantiate_non_dependent_expr_internal (expr
, tf_error
);
5695 /* True iff T is a specialization of a variable template. */
5698 variable_template_specialization_p (tree t
)
5700 if (!VAR_P (t
) || !DECL_LANG_SPECIFIC (t
) || !DECL_TEMPLATE_INFO (t
))
5702 tree tmpl
= DECL_TI_TEMPLATE (t
);
5703 return variable_template_p (tmpl
);
5706 /* Return TRUE iff T is a type alias, a TEMPLATE_DECL for an alias
5707 template declaration, or a TYPE_DECL for an alias declaration. */
5710 alias_type_or_template_p (tree t
)
5714 return ((TREE_CODE (t
) == TYPE_DECL
&& TYPE_DECL_ALIAS_P (t
))
5717 && TYPE_DECL_ALIAS_P (TYPE_NAME (t
)))
5718 || DECL_ALIAS_TEMPLATE_P (t
));
5721 /* Return TRUE iff T is a specialization of an alias template. */
5724 alias_template_specialization_p (const_tree t
)
5726 /* It's an alias template specialization if it's an alias and its
5727 TYPE_NAME is a specialization of a primary template. */
5728 if (TYPE_ALIAS_P (t
))
5730 tree name
= TYPE_NAME (t
);
5731 if (DECL_LANG_SPECIFIC (name
))
5732 if (tree ti
= DECL_TEMPLATE_INFO (name
))
5734 tree tmpl
= TI_TEMPLATE (ti
);
5735 return PRIMARY_TEMPLATE_P (tmpl
);
5741 /* An alias template is complex from a SFINAE perspective if a template-id
5742 using that alias can be ill-formed when the expansion is not, as with
5743 the void_t template. We determine this by checking whether the
5744 expansion for the alias template uses all its template parameters. */
5746 struct uses_all_template_parms_data
5753 uses_all_template_parms_r (tree t
, void *data_
)
5755 struct uses_all_template_parms_data
&data
5756 = *(struct uses_all_template_parms_data
*)data_
;
5757 tree idx
= get_template_parm_index (t
);
5759 if (TEMPLATE_PARM_LEVEL (idx
) == data
.level
)
5760 data
.seen
[TEMPLATE_PARM_IDX (idx
)] = true;
5765 complex_alias_template_p (const_tree tmpl
)
5767 struct uses_all_template_parms_data data
;
5768 tree pat
= DECL_ORIGINAL_TYPE (DECL_TEMPLATE_RESULT (tmpl
));
5769 tree parms
= DECL_TEMPLATE_PARMS (tmpl
);
5770 data
.level
= TMPL_PARMS_DEPTH (parms
);
5771 int len
= TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS (parms
));
5772 data
.seen
= XALLOCAVEC (bool, len
);
5773 for (int i
= 0; i
< len
; ++i
)
5774 data
.seen
[i
] = false;
5776 for_each_template_parm (pat
, uses_all_template_parms_r
, &data
, NULL
, true);
5777 for (int i
= 0; i
< len
; ++i
)
5783 /* Return TRUE iff T is a specialization of a complex alias template with
5784 dependent template-arguments. */
5787 dependent_alias_template_spec_p (const_tree t
)
5789 return (alias_template_specialization_p (t
)
5790 && TEMPLATE_DECL_COMPLEX_ALIAS_P (DECL_TI_TEMPLATE (TYPE_NAME (t
)))
5791 && (any_dependent_template_arguments_p
5792 (INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (t
)))));
5795 /* Return the number of innermost template parameters in TMPL. */
5798 num_innermost_template_parms (tree tmpl
)
5800 tree parms
= INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (tmpl
));
5801 return TREE_VEC_LENGTH (parms
);
5804 /* Return either TMPL or another template that it is equivalent to under DR
5805 1286: An alias that just changes the name of a template is equivalent to
5806 the other template. */
5809 get_underlying_template (tree tmpl
)
5811 gcc_assert (TREE_CODE (tmpl
) == TEMPLATE_DECL
);
5812 while (DECL_ALIAS_TEMPLATE_P (tmpl
))
5814 tree result
= DECL_ORIGINAL_TYPE (DECL_TEMPLATE_RESULT (tmpl
));
5815 if (TYPE_TEMPLATE_INFO (result
))
5817 tree sub
= TYPE_TI_TEMPLATE (result
);
5818 if (PRIMARY_TEMPLATE_P (sub
)
5819 && (num_innermost_template_parms (tmpl
)
5820 == num_innermost_template_parms (sub
)))
5822 tree alias_args
= INNERMOST_TEMPLATE_ARGS
5823 (template_parms_to_args (DECL_TEMPLATE_PARMS (tmpl
)));
5824 if (!comp_template_args (TYPE_TI_ARGS (result
), alias_args
))
5826 /* The alias type is equivalent to the pattern of the
5827 underlying template, so strip the alias. */
5837 /* Subroutine of convert_nontype_argument. Converts EXPR to TYPE, which
5838 must be a function or a pointer-to-function type, as specified
5839 in [temp.arg.nontype]: disambiguate EXPR if it is an overload set,
5840 and check that the resulting function has external linkage. */
5843 convert_nontype_argument_function (tree type
, tree expr
,
5844 tsubst_flags_t complain
)
5848 linkage_kind linkage
;
5850 fn
= instantiate_type (type
, fns
, tf_none
);
5851 if (fn
== error_mark_node
)
5852 return error_mark_node
;
5855 if (TREE_CODE (fn_no_ptr
) == ADDR_EXPR
)
5856 fn_no_ptr
= TREE_OPERAND (fn_no_ptr
, 0);
5857 if (BASELINK_P (fn_no_ptr
))
5858 fn_no_ptr
= BASELINK_FUNCTIONS (fn_no_ptr
);
5860 /* [temp.arg.nontype]/1
5862 A template-argument for a non-type, non-template template-parameter
5865 -- the address of an object or function with external [C++11: or
5866 internal] linkage. */
5868 if (TREE_CODE (fn_no_ptr
) != FUNCTION_DECL
)
5870 if (complain
& tf_error
)
5872 error ("%qE is not a valid template argument for type %qT",
5874 if (TYPE_PTR_P (type
))
5875 error ("it must be the address of a function with "
5876 "external linkage");
5878 error ("it must be the name of a function with "
5879 "external linkage");
5884 linkage
= decl_linkage (fn_no_ptr
);
5885 if (cxx_dialect
>= cxx11
? linkage
== lk_none
: linkage
!= lk_external
)
5887 if (complain
& tf_error
)
5889 if (cxx_dialect
>= cxx11
)
5890 error ("%qE is not a valid template argument for type %qT "
5891 "because %qD has no linkage",
5892 expr
, type
, fn_no_ptr
);
5894 error ("%qE is not a valid template argument for type %qT "
5895 "because %qD does not have external linkage",
5896 expr
, type
, fn_no_ptr
);
5904 /* Subroutine of convert_nontype_argument.
5905 Check if EXPR of type TYPE is a valid pointer-to-member constant.
5906 Emit an error otherwise. */
5909 check_valid_ptrmem_cst_expr (tree type
, tree expr
,
5910 tsubst_flags_t complain
)
5913 if (expr
&& (null_ptr_cst_p (expr
) || TREE_CODE (expr
) == PTRMEM_CST
))
5915 if (cxx_dialect
>= cxx11
&& null_member_pointer_value_p (expr
))
5917 if (processing_template_decl
5918 && TREE_CODE (expr
) == ADDR_EXPR
5919 && TREE_CODE (TREE_OPERAND (expr
, 0)) == OFFSET_REF
)
5921 if (complain
& tf_error
)
5923 error ("%qE is not a valid template argument for type %qT",
5925 error ("it must be a pointer-to-member of the form %<&X::Y%>");
5930 /* Returns TRUE iff the address of OP is value-dependent.
5932 14.6.2.4 [temp.dep.temp]:
5933 A non-integral non-type template-argument is dependent if its type is
5934 dependent or it has either of the following forms
5937 and contains a nested-name-specifier which specifies a class-name that
5938 names a dependent type.
5940 We generalize this to just say that the address of a member of a
5941 dependent class is value-dependent; the above doesn't cover the
5942 address of a static data member named with an unqualified-id. */
5945 has_value_dependent_address (tree op
)
5947 /* We could use get_inner_reference here, but there's no need;
5948 this is only relevant for template non-type arguments, which
5949 can only be expressed as &id-expression. */
5952 tree ctx
= CP_DECL_CONTEXT (op
);
5953 if (TYPE_P (ctx
) && dependent_type_p (ctx
))
5960 /* The next set of functions are used for providing helpful explanatory
5961 diagnostics for failed overload resolution. Their messages should be
5962 indented by two spaces for consistency with the messages in
5966 unify_success (bool /*explain_p*/)
5972 unify_parameter_deduction_failure (bool explain_p
, tree parm
)
5975 inform (input_location
,
5976 " couldn't deduce template parameter %qD", parm
);
5981 unify_invalid (bool /*explain_p*/)
5987 unify_cv_qual_mismatch (bool explain_p
, tree parm
, tree arg
)
5990 inform (input_location
,
5991 " types %qT and %qT have incompatible cv-qualifiers",
5997 unify_type_mismatch (bool explain_p
, tree parm
, tree arg
)
6000 inform (input_location
, " mismatched types %qT and %qT", parm
, arg
);
6005 unify_parameter_pack_mismatch (bool explain_p
, tree parm
, tree arg
)
6008 inform (input_location
,
6009 " template parameter %qD is not a parameter pack, but "
6016 unify_ptrmem_cst_mismatch (bool explain_p
, tree parm
, tree arg
)
6019 inform (input_location
,
6020 " template argument %qE does not match "
6021 "pointer-to-member constant %qE",
6027 unify_expression_unequal (bool explain_p
, tree parm
, tree arg
)
6030 inform (input_location
, " %qE is not equivalent to %qE", parm
, arg
);
6035 unify_parameter_pack_inconsistent (bool explain_p
, tree old_arg
, tree new_arg
)
6038 inform (input_location
,
6039 " inconsistent parameter pack deduction with %qT and %qT",
6045 unify_inconsistency (bool explain_p
, tree parm
, tree first
, tree second
)
6050 inform (input_location
,
6051 " deduced conflicting types for parameter %qT (%qT and %qT)",
6052 parm
, first
, second
);
6054 inform (input_location
,
6055 " deduced conflicting values for non-type parameter "
6056 "%qE (%qE and %qE)", parm
, first
, second
);
6062 unify_vla_arg (bool explain_p
, tree arg
)
6065 inform (input_location
,
6066 " variable-sized array type %qT is not "
6067 "a valid template argument",
6073 unify_method_type_error (bool explain_p
, tree arg
)
6076 inform (input_location
,
6077 " member function type %qT is not a valid template argument",
6083 unify_arity (bool explain_p
, int have
, int wanted
, bool least_p
= false)
6088 inform_n (input_location
, wanted
,
6089 " candidate expects at least %d argument, %d provided",
6090 " candidate expects at least %d arguments, %d provided",
6093 inform_n (input_location
, wanted
,
6094 " candidate expects %d argument, %d provided",
6095 " candidate expects %d arguments, %d provided",
6102 unify_too_many_arguments (bool explain_p
, int have
, int wanted
)
6104 return unify_arity (explain_p
, have
, wanted
);
6108 unify_too_few_arguments (bool explain_p
, int have
, int wanted
,
6109 bool least_p
= false)
6111 return unify_arity (explain_p
, have
, wanted
, least_p
);
6115 unify_arg_conversion (bool explain_p
, tree to_type
,
6116 tree from_type
, tree arg
)
6119 inform (EXPR_LOC_OR_LOC (arg
, input_location
),
6120 " cannot convert %qE (type %qT) to type %qT",
6121 arg
, from_type
, to_type
);
6126 unify_no_common_base (bool explain_p
, enum template_base_result r
,
6127 tree parm
, tree arg
)
6132 case tbr_ambiguous_baseclass
:
6133 inform (input_location
, " %qT is an ambiguous base class of %qT",
6137 inform (input_location
, " %qT is not derived from %qT", arg
, parm
);
6144 unify_inconsistent_template_template_parameters (bool explain_p
)
6147 inform (input_location
,
6148 " template parameters of a template template argument are "
6149 "inconsistent with other deduced template arguments");
6154 unify_template_deduction_failure (bool explain_p
, tree parm
, tree arg
)
6157 inform (input_location
,
6158 " can't deduce a template for %qT from non-template type %qT",
6164 unify_template_argument_mismatch (bool explain_p
, tree parm
, tree arg
)
6167 inform (input_location
,
6168 " template argument %qE does not match %qD", arg
, parm
);
6173 unify_overload_resolution_failure (bool explain_p
, tree arg
)
6176 inform (input_location
,
6177 " could not resolve address from overloaded function %qE",
6182 /* Attempt to convert the non-type template parameter EXPR to the
6183 indicated TYPE. If the conversion is successful, return the
6184 converted value. If the conversion is unsuccessful, return
6185 NULL_TREE if we issued an error message, or error_mark_node if we
6186 did not. We issue error messages for out-and-out bad template
6187 parameters, but not simply because the conversion failed, since we
6188 might be just trying to do argument deduction. Both TYPE and EXPR
6189 must be non-dependent.
6191 The conversion follows the special rules described in
6192 [temp.arg.nontype], and it is much more strict than an implicit
6195 This function is called twice for each template argument (see
6196 lookup_template_class for a more accurate description of this
6197 problem). This means that we need to handle expressions which
6198 are not valid in a C++ source, but can be created from the
6199 first call (for instance, casts to perform conversions). These
6200 hacks can go away after we fix the double coercion problem. */
6203 convert_nontype_argument (tree type
, tree expr
, tsubst_flags_t complain
)
6207 /* Detect immediately string literals as invalid non-type argument.
6208 This special-case is not needed for correctness (we would easily
6209 catch this later), but only to provide better diagnostic for this
6210 common user mistake. As suggested by DR 100, we do not mention
6211 linkage issues in the diagnostic as this is not the point. */
6212 /* FIXME we're making this OK. */
6213 if (TREE_CODE (expr
) == STRING_CST
)
6215 if (complain
& tf_error
)
6216 error ("%qE is not a valid template argument for type %qT "
6217 "because string literals can never be used in this context",
6222 /* Add the ADDR_EXPR now for the benefit of
6223 value_dependent_expression_p. */
6224 if (TYPE_PTROBV_P (type
)
6225 && TREE_CODE (TREE_TYPE (expr
)) == ARRAY_TYPE
)
6227 expr
= decay_conversion (expr
, complain
);
6228 if (expr
== error_mark_node
)
6229 return error_mark_node
;
6232 /* If we are in a template, EXPR may be non-dependent, but still
6233 have a syntactic, rather than semantic, form. For example, EXPR
6234 might be a SCOPE_REF, rather than the VAR_DECL to which the
6235 SCOPE_REF refers. Preserving the qualifying scope is necessary
6236 so that access checking can be performed when the template is
6237 instantiated -- but here we need the resolved form so that we can
6238 convert the argument. */
6239 bool non_dep
= false;
6240 if (TYPE_REF_OBJ_P (type
)
6241 && has_value_dependent_address (expr
))
6242 /* If we want the address and it's value-dependent, don't fold. */;
6243 else if (processing_template_decl
6244 && potential_nondependent_constant_expression (expr
))
6246 if (error_operand_p (expr
))
6247 return error_mark_node
;
6248 expr_type
= TREE_TYPE (expr
);
6249 if (TREE_CODE (type
) == REFERENCE_TYPE
)
6250 expr
= mark_lvalue_use (expr
);
6252 expr
= mark_rvalue_use (expr
);
6254 /* If the argument is non-dependent, perform any conversions in
6255 non-dependent context as well. */
6256 processing_template_decl_sentinel
s (non_dep
);
6258 expr
= instantiate_non_dependent_expr_internal (expr
, complain
);
6260 /* 14.3.2/5: The null pointer{,-to-member} conversion is applied
6261 to a non-type argument of "nullptr". */
6262 if (expr
== nullptr_node
&& TYPE_PTR_OR_PTRMEM_P (type
))
6263 expr
= fold_simple (convert (type
, expr
));
6265 /* In C++11, integral or enumeration non-type template arguments can be
6266 arbitrary constant expressions. Pointer and pointer to
6267 member arguments can be general constant expressions that evaluate
6268 to a null value, but otherwise still need to be of a specific form. */
6269 if (cxx_dialect
>= cxx11
)
6271 if (TREE_CODE (expr
) == PTRMEM_CST
)
6272 /* A PTRMEM_CST is already constant, and a valid template
6273 argument for a parameter of pointer to member type, we just want
6274 to leave it in that form rather than lower it to a
6276 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (type
))
6277 expr
= maybe_constant_value (expr
);
6278 else if (cxx_dialect
>= cxx1z
)
6280 if (TREE_CODE (type
) != REFERENCE_TYPE
)
6281 expr
= maybe_constant_value (expr
);
6282 else if (REFERENCE_REF_P (expr
))
6284 expr
= TREE_OPERAND (expr
, 0);
6285 expr
= maybe_constant_value (expr
);
6286 expr
= convert_from_reference (expr
);
6289 else if (TYPE_PTR_OR_PTRMEM_P (type
))
6291 tree folded
= maybe_constant_value (expr
);
6292 if (TYPE_PTR_P (type
) ? integer_zerop (folded
)
6293 : null_member_pointer_value_p (folded
))
6298 /* HACK: Due to double coercion, we can get a
6299 NOP_EXPR<REFERENCE_TYPE>(ADDR_EXPR<POINTER_TYPE> (arg)) here,
6300 which is the tree that we built on the first call (see
6301 below when coercing to reference to object or to reference to
6302 function). We just strip everything and get to the arg.
6303 See g++.old-deja/g++.oliva/template4.C and g++.dg/template/nontype9.C
6305 if (TYPE_REF_OBJ_P (type
) || TYPE_REFFN_P (type
))
6307 tree probe_type
, probe
= expr
;
6308 if (REFERENCE_REF_P (probe
))
6309 probe
= TREE_OPERAND (probe
, 0);
6310 probe_type
= TREE_TYPE (probe
);
6311 if (TREE_CODE (probe
) == NOP_EXPR
)
6313 /* ??? Maybe we could use convert_from_reference here, but we
6314 would need to relax its constraints because the NOP_EXPR
6315 could actually change the type to something more cv-qualified,
6316 and this is not folded by convert_from_reference. */
6317 tree addr
= TREE_OPERAND (probe
, 0);
6318 if (TREE_CODE (probe_type
) == REFERENCE_TYPE
6319 && TREE_CODE (addr
) == ADDR_EXPR
6320 && TYPE_PTR_P (TREE_TYPE (addr
))
6321 && (same_type_ignoring_top_level_qualifiers_p
6322 (TREE_TYPE (probe_type
),
6323 TREE_TYPE (TREE_TYPE (addr
)))))
6325 expr
= TREE_OPERAND (addr
, 0);
6326 expr_type
= TREE_TYPE (probe_type
);
6331 /* We could also generate a NOP_EXPR(ADDR_EXPR()) when the
6332 parameter is a pointer to object, through decay and
6333 qualification conversion. Let's strip everything. */
6334 else if (TREE_CODE (expr
) == NOP_EXPR
&& TYPE_PTROBV_P (type
))
6338 if (TREE_CODE (probe
) == ADDR_EXPR
6339 && TYPE_PTR_P (TREE_TYPE (probe
)))
6341 /* Skip the ADDR_EXPR only if it is part of the decay for
6342 an array. Otherwise, it is part of the original argument
6343 in the source code. */
6344 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (probe
, 0))) == ARRAY_TYPE
)
6345 probe
= TREE_OPERAND (probe
, 0);
6347 expr_type
= TREE_TYPE (expr
);
6351 /* [temp.arg.nontype]/5, bullet 1
6353 For a non-type template-parameter of integral or enumeration type,
6354 integral promotions (_conv.prom_) and integral conversions
6355 (_conv.integral_) are applied. */
6356 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type
))
6358 tree t
= build_integral_nontype_arg_conv (type
, expr
, complain
);
6359 t
= maybe_constant_value (t
);
6360 if (t
!= error_mark_node
)
6363 if (!same_type_ignoring_top_level_qualifiers_p (type
, TREE_TYPE (expr
)))
6364 return error_mark_node
;
6366 /* Notice that there are constant expressions like '4 % 0' which
6367 do not fold into integer constants. */
6368 if (TREE_CODE (expr
) != INTEGER_CST
)
6370 if (complain
& tf_error
)
6372 int errs
= errorcount
, warns
= warningcount
+ werrorcount
;
6373 if (processing_template_decl
6374 && !require_potential_constant_expression (expr
))
6376 expr
= cxx_constant_value (expr
);
6377 if (errorcount
> errs
|| warningcount
+ werrorcount
> warns
)
6378 inform (EXPR_LOC_OR_LOC (expr
, input_location
),
6379 "in template argument for type %qT ", type
);
6380 if (expr
== error_mark_node
)
6382 /* else cxx_constant_value complained but gave us
6383 a real constant, so go ahead. */
6384 gcc_assert (TREE_CODE (expr
) == INTEGER_CST
);
6390 /* Avoid typedef problems. */
6391 if (TREE_TYPE (expr
) != type
)
6392 expr
= fold_convert (type
, expr
);
6394 /* [temp.arg.nontype]/5, bullet 2
6396 For a non-type template-parameter of type pointer to object,
6397 qualification conversions (_conv.qual_) and the array-to-pointer
6398 conversion (_conv.array_) are applied. */
6399 else if (TYPE_PTROBV_P (type
))
6401 /* [temp.arg.nontype]/1 (TC1 version, DR 49):
6403 A template-argument for a non-type, non-template template-parameter
6404 shall be one of: [...]
6406 -- the name of a non-type template-parameter;
6407 -- the address of an object or function with external linkage, [...]
6408 expressed as "& id-expression" where the & is optional if the name
6409 refers to a function or array, or if the corresponding
6410 template-parameter is a reference.
6412 Here, we do not care about functions, as they are invalid anyway
6413 for a parameter of type pointer-to-object. */
6415 if (DECL_P (expr
) && DECL_TEMPLATE_PARM_P (expr
))
6416 /* Non-type template parameters are OK. */
6418 else if (cxx_dialect
>= cxx11
&& integer_zerop (expr
))
6419 /* Null pointer values are OK in C++11. */;
6420 else if (TREE_CODE (expr
) != ADDR_EXPR
6421 && TREE_CODE (expr_type
) != ARRAY_TYPE
)
6425 if (complain
& tf_error
)
6426 error ("%qD is not a valid template argument "
6427 "because %qD is a variable, not the address of "
6428 "a variable", expr
, expr
);
6431 if (POINTER_TYPE_P (expr_type
))
6433 if (complain
& tf_error
)
6434 error ("%qE is not a valid template argument for %qT "
6435 "because it is not the address of a variable",
6439 /* Other values, like integer constants, might be valid
6440 non-type arguments of some other type. */
6441 return error_mark_node
;
6447 decl
= ((TREE_CODE (expr
) == ADDR_EXPR
)
6448 ? TREE_OPERAND (expr
, 0) : expr
);
6451 if (complain
& tf_error
)
6452 error ("%qE is not a valid template argument of type %qT "
6453 "because %qE is not a variable", expr
, type
, decl
);
6456 else if (cxx_dialect
< cxx11
&& !DECL_EXTERNAL_LINKAGE_P (decl
))
6458 if (complain
& tf_error
)
6459 error ("%qE is not a valid template argument of type %qT "
6460 "because %qD does not have external linkage",
6464 else if (cxx_dialect
>= cxx11
&& decl_linkage (decl
) == lk_none
)
6466 if (complain
& tf_error
)
6467 error ("%qE is not a valid template argument of type %qT "
6468 "because %qD has no linkage", expr
, type
, decl
);
6473 expr
= decay_conversion (expr
, complain
);
6474 if (expr
== error_mark_node
)
6475 return error_mark_node
;
6477 expr
= perform_qualification_conversions (type
, expr
);
6478 if (expr
== error_mark_node
)
6479 return error_mark_node
;
6481 /* [temp.arg.nontype]/5, bullet 3
6483 For a non-type template-parameter of type reference to object, no
6484 conversions apply. The type referred to by the reference may be more
6485 cv-qualified than the (otherwise identical) type of the
6486 template-argument. The template-parameter is bound directly to the
6487 template-argument, which must be an lvalue. */
6488 else if (TYPE_REF_OBJ_P (type
))
6490 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (type
),
6492 return error_mark_node
;
6494 if (!at_least_as_qualified_p (TREE_TYPE (type
), expr_type
))
6496 if (complain
& tf_error
)
6497 error ("%qE is not a valid template argument for type %qT "
6498 "because of conflicts in cv-qualification", expr
, type
);
6502 if (!real_lvalue_p (expr
))
6504 if (complain
& tf_error
)
6505 error ("%qE is not a valid template argument for type %qT "
6506 "because it is not an lvalue", expr
, type
);
6510 /* [temp.arg.nontype]/1
6512 A template-argument for a non-type, non-template template-parameter
6513 shall be one of: [...]
6515 -- the address of an object or function with external linkage. */
6516 if (INDIRECT_REF_P (expr
)
6517 && TYPE_REF_OBJ_P (TREE_TYPE (TREE_OPERAND (expr
, 0))))
6519 expr
= TREE_OPERAND (expr
, 0);
6522 if (complain
& tf_error
)
6523 error ("%q#D is not a valid template argument for type %qT "
6524 "because a reference variable does not have a constant "
6525 "address", expr
, type
);
6532 if (complain
& tf_error
)
6533 error ("%qE is not a valid template argument for type %qT "
6534 "because it is not an object with linkage",
6539 /* DR 1155 allows internal linkage in C++11 and up. */
6540 linkage_kind linkage
= decl_linkage (expr
);
6541 if (linkage
< (cxx_dialect
>= cxx11
? lk_internal
: lk_external
))
6543 if (complain
& tf_error
)
6544 error ("%qE is not a valid template argument for type %qT "
6545 "because object %qD does not have linkage",
6550 expr
= build_nop (type
, build_address (expr
));
6552 /* [temp.arg.nontype]/5, bullet 4
6554 For a non-type template-parameter of type pointer to function, only
6555 the function-to-pointer conversion (_conv.func_) is applied. If the
6556 template-argument represents a set of overloaded functions (or a
6557 pointer to such), the matching function is selected from the set
6559 else if (TYPE_PTRFN_P (type
))
6561 /* If the argument is a template-id, we might not have enough
6562 context information to decay the pointer. */
6563 if (!type_unknown_p (expr_type
))
6565 expr
= decay_conversion (expr
, complain
);
6566 if (expr
== error_mark_node
)
6567 return error_mark_node
;
6570 if (cxx_dialect
>= cxx11
&& integer_zerop (expr
))
6571 /* Null pointer values are OK in C++11. */
6572 return perform_qualification_conversions (type
, expr
);
6574 expr
= convert_nontype_argument_function (type
, expr
, complain
);
6575 if (!expr
|| expr
== error_mark_node
)
6578 /* [temp.arg.nontype]/5, bullet 5
6580 For a non-type template-parameter of type reference to function, no
6581 conversions apply. If the template-argument represents a set of
6582 overloaded functions, the matching function is selected from the set
6584 else if (TYPE_REFFN_P (type
))
6586 if (TREE_CODE (expr
) == ADDR_EXPR
)
6588 if (complain
& tf_error
)
6590 error ("%qE is not a valid template argument for type %qT "
6591 "because it is a pointer", expr
, type
);
6592 inform (input_location
, "try using %qE instead",
6593 TREE_OPERAND (expr
, 0));
6598 expr
= convert_nontype_argument_function (type
, expr
, complain
);
6599 if (!expr
|| expr
== error_mark_node
)
6602 expr
= build_nop (type
, build_address (expr
));
6604 /* [temp.arg.nontype]/5, bullet 6
6606 For a non-type template-parameter of type pointer to member function,
6607 no conversions apply. If the template-argument represents a set of
6608 overloaded member functions, the matching member function is selected
6609 from the set (_over.over_). */
6610 else if (TYPE_PTRMEMFUNC_P (type
))
6612 expr
= instantiate_type (type
, expr
, tf_none
);
6613 if (expr
== error_mark_node
)
6614 return error_mark_node
;
6616 /* [temp.arg.nontype] bullet 1 says the pointer to member
6617 expression must be a pointer-to-member constant. */
6618 if (!check_valid_ptrmem_cst_expr (type
, expr
, complain
))
6619 return error_mark_node
;
6621 /* There is no way to disable standard conversions in
6622 resolve_address_of_overloaded_function (called by
6623 instantiate_type). It is possible that the call succeeded by
6624 converting &B::I to &D::I (where B is a base of D), so we need
6625 to reject this conversion here.
6627 Actually, even if there was a way to disable standard conversions,
6628 it would still be better to reject them here so that we can
6629 provide a superior diagnostic. */
6630 if (!same_type_p (TREE_TYPE (expr
), type
))
6632 if (complain
& tf_error
)
6634 error ("%qE is not a valid template argument for type %qT "
6635 "because it is of type %qT", expr
, type
,
6637 /* If we are just one standard conversion off, explain. */
6638 if (can_convert_standard (type
, TREE_TYPE (expr
), complain
))
6639 inform (input_location
,
6640 "standard conversions are not allowed in this context");
6645 /* [temp.arg.nontype]/5, bullet 7
6647 For a non-type template-parameter of type pointer to data member,
6648 qualification conversions (_conv.qual_) are applied. */
6649 else if (TYPE_PTRDATAMEM_P (type
))
6651 /* [temp.arg.nontype] bullet 1 says the pointer to member
6652 expression must be a pointer-to-member constant. */
6653 if (!check_valid_ptrmem_cst_expr (type
, expr
, complain
))
6654 return error_mark_node
;
6656 expr
= perform_qualification_conversions (type
, expr
);
6657 if (expr
== error_mark_node
)
6660 else if (NULLPTR_TYPE_P (type
))
6662 if (expr
!= nullptr_node
)
6664 if (complain
& tf_error
)
6665 error ("%qE is not a valid template argument for type %qT "
6666 "because it is of type %qT", expr
, type
, TREE_TYPE (expr
));
6671 /* A template non-type parameter must be one of the above. */
6675 /* Sanity check: did we actually convert the argument to the
6677 gcc_assert (same_type_ignoring_top_level_qualifiers_p
6678 (type
, TREE_TYPE (expr
)));
6679 return convert_from_reference (expr
);
6682 /* Subroutine of coerce_template_template_parms, which returns 1 if
6683 PARM_PARM and ARG_PARM match using the rule for the template
6684 parameters of template template parameters. Both PARM and ARG are
6685 template parameters; the rest of the arguments are the same as for
6686 coerce_template_template_parms.
6689 coerce_template_template_parm (tree parm
,
6691 tsubst_flags_t complain
,
6695 if (arg
== NULL_TREE
|| error_operand_p (arg
)
6696 || parm
== NULL_TREE
|| error_operand_p (parm
))
6699 if (TREE_CODE (arg
) != TREE_CODE (parm
))
6702 switch (TREE_CODE (parm
))
6705 /* We encounter instantiations of templates like
6706 template <template <template <class> class> class TT>
6709 tree parmparm
= DECL_INNERMOST_TEMPLATE_PARMS (parm
);
6710 tree argparm
= DECL_INNERMOST_TEMPLATE_PARMS (arg
);
6712 if (!coerce_template_template_parms
6713 (parmparm
, argparm
, complain
, in_decl
, outer_args
))
6719 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (arg
))
6720 && !TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm
)))
6721 /* Argument is a parameter pack but parameter is not. */
6726 /* The tsubst call is used to handle cases such as
6728 template <int> class C {};
6729 template <class T, template <T> class TT> class D {};
6732 i.e. the parameter list of TT depends on earlier parameters. */
6733 if (!uses_template_parms (TREE_TYPE (arg
)))
6735 tree t
= tsubst (TREE_TYPE (parm
), outer_args
, complain
, in_decl
);
6736 if (!uses_template_parms (t
)
6737 && !same_type_p (t
, TREE_TYPE (arg
)))
6741 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (arg
))
6742 && !TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm
)))
6743 /* Argument is a parameter pack but parameter is not. */
6756 /* Return 1 if PARM_PARMS and ARG_PARMS matches using rule for
6757 template template parameters. Both PARM_PARMS and ARG_PARMS are
6758 vectors of TREE_LIST nodes containing TYPE_DECL, TEMPLATE_DECL
6761 Consider the example:
6762 template <class T> class A;
6763 template<template <class U> class TT> class B;
6765 For B<A>, PARM_PARMS are the parameters to TT, while ARG_PARMS are
6766 the parameters to A, and OUTER_ARGS contains A. */
6769 coerce_template_template_parms (tree parm_parms
,
6771 tsubst_flags_t complain
,
6775 int nparms
, nargs
, i
;
6779 gcc_assert (TREE_CODE (parm_parms
) == TREE_VEC
);
6780 gcc_assert (TREE_CODE (arg_parms
) == TREE_VEC
);
6782 nparms
= TREE_VEC_LENGTH (parm_parms
);
6783 nargs
= TREE_VEC_LENGTH (arg_parms
);
6785 /* Determine whether we have a parameter pack at the end of the
6786 template template parameter's template parameter list. */
6787 if (TREE_VEC_ELT (parm_parms
, nparms
- 1) != error_mark_node
)
6789 parm
= TREE_VALUE (TREE_VEC_ELT (parm_parms
, nparms
- 1));
6791 if (error_operand_p (parm
))
6794 switch (TREE_CODE (parm
))
6798 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm
)))
6803 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm
)))
6813 && !(variadic_p
&& nargs
>= nparms
- 1))
6816 /* Check all of the template parameters except the parameter pack at
6817 the end (if any). */
6818 for (i
= 0; i
< nparms
- variadic_p
; ++i
)
6820 if (TREE_VEC_ELT (parm_parms
, i
) == error_mark_node
6821 || TREE_VEC_ELT (arg_parms
, i
) == error_mark_node
)
6824 parm
= TREE_VALUE (TREE_VEC_ELT (parm_parms
, i
));
6825 arg
= TREE_VALUE (TREE_VEC_ELT (arg_parms
, i
));
6827 if (!coerce_template_template_parm (parm
, arg
, complain
, in_decl
,
6835 /* Check each of the template parameters in the template
6836 argument against the template parameter pack at the end of
6837 the template template parameter. */
6838 if (TREE_VEC_ELT (parm_parms
, i
) == error_mark_node
)
6841 parm
= TREE_VALUE (TREE_VEC_ELT (parm_parms
, i
));
6843 for (; i
< nargs
; ++i
)
6845 if (TREE_VEC_ELT (arg_parms
, i
) == error_mark_node
)
6848 arg
= TREE_VALUE (TREE_VEC_ELT (arg_parms
, i
));
6850 if (!coerce_template_template_parm (parm
, arg
, complain
, in_decl
,
6859 /* Verifies that the deduced template arguments (in TARGS) for the
6860 template template parameters (in TPARMS) represent valid bindings,
6861 by comparing the template parameter list of each template argument
6862 to the template parameter list of its corresponding template
6863 template parameter, in accordance with DR150. This
6864 routine can only be called after all template arguments have been
6865 deduced. It will return TRUE if all of the template template
6866 parameter bindings are okay, FALSE otherwise. */
6868 template_template_parm_bindings_ok_p (tree tparms
, tree targs
)
6870 int i
, ntparms
= TREE_VEC_LENGTH (tparms
);
6873 /* We're dealing with template parms in this process. */
6874 ++processing_template_decl
;
6876 targs
= INNERMOST_TEMPLATE_ARGS (targs
);
6878 for (i
= 0; i
< ntparms
; ++i
)
6880 tree tparm
= TREE_VALUE (TREE_VEC_ELT (tparms
, i
));
6881 tree targ
= TREE_VEC_ELT (targs
, i
);
6883 if (TREE_CODE (tparm
) == TEMPLATE_DECL
&& targ
)
6885 tree packed_args
= NULL_TREE
;
6888 if (ARGUMENT_PACK_P (targ
))
6890 /* Look inside the argument pack. */
6891 packed_args
= ARGUMENT_PACK_ARGS (targ
);
6892 len
= TREE_VEC_LENGTH (packed_args
);
6895 for (idx
= 0; idx
< len
; ++idx
)
6897 tree targ_parms
= NULL_TREE
;
6900 /* Extract the next argument from the argument
6902 targ
= TREE_VEC_ELT (packed_args
, idx
);
6904 if (PACK_EXPANSION_P (targ
))
6905 /* Look at the pattern of the pack expansion. */
6906 targ
= PACK_EXPANSION_PATTERN (targ
);
6908 /* Extract the template parameters from the template
6910 if (TREE_CODE (targ
) == TEMPLATE_DECL
)
6911 targ_parms
= DECL_INNERMOST_TEMPLATE_PARMS (targ
);
6912 else if (TREE_CODE (targ
) == TEMPLATE_TEMPLATE_PARM
)
6913 targ_parms
= DECL_INNERMOST_TEMPLATE_PARMS (TYPE_NAME (targ
));
6915 /* Verify that we can coerce the template template
6916 parameters from the template argument to the template
6917 parameter. This requires an exact match. */
6919 && !coerce_template_template_parms
6920 (DECL_INNERMOST_TEMPLATE_PARMS (tparm
),
6935 --processing_template_decl
;
6939 /* Since type attributes aren't mangled, we need to strip them from
6940 template type arguments. */
6943 canonicalize_type_argument (tree arg
, tsubst_flags_t complain
)
6945 if (!arg
|| arg
== error_mark_node
|| arg
== TYPE_CANONICAL (arg
))
6947 bool removed_attributes
= false;
6948 tree canon
= strip_typedefs (arg
, &removed_attributes
);
6949 if (removed_attributes
6950 && (complain
& tf_warning
))
6951 warning (OPT_Wignored_attributes
,
6952 "ignoring attributes on template argument %qT", arg
);
6956 // A template declaration can be substituted for a constrained
6957 // template template parameter only when the argument is more
6958 // constrained than the parameter.
6960 is_compatible_template_arg (tree parm
, tree arg
)
6962 tree parm_cons
= get_constraints (parm
);
6964 /* For now, allow constrained template template arguments
6965 and unconstrained template template parameters. */
6966 if (parm_cons
== NULL_TREE
)
6969 tree arg_cons
= get_constraints (arg
);
6971 // If the template parameter is constrained, we need to rewrite its
6972 // constraints in terms of the ARG's template parameters. This ensures
6973 // that all of the template parameter types will have the same depth.
6975 // Note that this is only valid when coerce_template_template_parm is
6976 // true for the innermost template parameters of PARM and ARG. In other
6977 // words, because coercion is successful, this conversion will be valid.
6980 tree args
= template_parms_to_args (DECL_TEMPLATE_PARMS (arg
));
6981 parm_cons
= tsubst_constraint_info (parm_cons
,
6982 INNERMOST_TEMPLATE_ARGS (args
),
6983 tf_none
, NULL_TREE
);
6984 if (parm_cons
== error_mark_node
)
6988 return subsumes (parm_cons
, arg_cons
);
6991 // Convert a placeholder argument into a binding to the original
6992 // parameter. The original parameter is saved as the TREE_TYPE of
6995 convert_wildcard_argument (tree parm
, tree arg
)
6997 TREE_TYPE (arg
) = parm
;
7001 /* Convert the indicated template ARG as necessary to match the
7002 indicated template PARM. Returns the converted ARG, or
7003 error_mark_node if the conversion was unsuccessful. Error and
7004 warning messages are issued under control of COMPLAIN. This
7005 conversion is for the Ith parameter in the parameter list. ARGS is
7006 the full set of template arguments deduced so far. */
7009 convert_template_argument (tree parm
,
7012 tsubst_flags_t complain
,
7018 int is_type
, requires_type
, is_tmpl_type
, requires_tmpl_type
;
7020 if (parm
== error_mark_node
)
7021 return error_mark_node
;
7023 /* Trivially convert placeholders. */
7024 if (TREE_CODE (arg
) == WILDCARD_DECL
)
7025 return convert_wildcard_argument (parm
, arg
);
7027 if (TREE_CODE (arg
) == TREE_LIST
7028 && TREE_CODE (TREE_VALUE (arg
)) == OFFSET_REF
)
7030 /* The template argument was the name of some
7031 member function. That's usually
7032 invalid, but static members are OK. In any
7033 case, grab the underlying fields/functions
7034 and issue an error later if required. */
7035 orig_arg
= TREE_VALUE (arg
);
7036 TREE_TYPE (arg
) = unknown_type_node
;
7041 requires_tmpl_type
= TREE_CODE (parm
) == TEMPLATE_DECL
;
7042 requires_type
= (TREE_CODE (parm
) == TYPE_DECL
7043 || requires_tmpl_type
);
7045 /* When determining whether an argument pack expansion is a template,
7046 look at the pattern. */
7047 if (TREE_CODE (arg
) == TYPE_PACK_EXPANSION
)
7048 arg
= PACK_EXPANSION_PATTERN (arg
);
7050 /* Deal with an injected-class-name used as a template template arg. */
7051 if (requires_tmpl_type
&& CLASS_TYPE_P (arg
))
7053 tree t
= maybe_get_template_decl_from_type_decl (TYPE_NAME (arg
));
7054 if (TREE_CODE (t
) == TEMPLATE_DECL
)
7056 if (cxx_dialect
>= cxx11
)
7057 /* OK under DR 1004. */;
7058 else if (complain
& tf_warning_or_error
)
7059 pedwarn (input_location
, OPT_Wpedantic
, "injected-class-name %qD"
7060 " used as template template argument", TYPE_NAME (arg
));
7061 else if (flag_pedantic_errors
)
7069 ((TREE_CODE (arg
) == TEMPLATE_DECL
7070 && TREE_CODE (DECL_TEMPLATE_RESULT (arg
)) == TYPE_DECL
)
7071 || (requires_tmpl_type
&& TREE_CODE (arg
) == TYPE_ARGUMENT_PACK
)
7072 || TREE_CODE (arg
) == TEMPLATE_TEMPLATE_PARM
7073 || TREE_CODE (arg
) == UNBOUND_CLASS_TEMPLATE
);
7076 && (TREE_CODE (arg
) == TEMPLATE_TEMPLATE_PARM
7077 || TREE_CODE (arg
) == UNBOUND_CLASS_TEMPLATE
))
7078 arg
= TYPE_STUB_DECL (arg
);
7080 is_type
= TYPE_P (arg
) || is_tmpl_type
;
7082 if (requires_type
&& ! is_type
&& TREE_CODE (arg
) == SCOPE_REF
7083 && TREE_CODE (TREE_OPERAND (arg
, 0)) == TEMPLATE_TYPE_PARM
)
7085 if (TREE_CODE (TREE_OPERAND (arg
, 1)) == BIT_NOT_EXPR
)
7087 if (complain
& tf_error
)
7088 error ("invalid use of destructor %qE as a type", orig_arg
);
7089 return error_mark_node
;
7092 permerror (input_location
,
7093 "to refer to a type member of a template parameter, "
7094 "use %<typename %E%>", orig_arg
);
7096 orig_arg
= make_typename_type (TREE_OPERAND (arg
, 0),
7097 TREE_OPERAND (arg
, 1),
7103 if (is_type
!= requires_type
)
7107 if (complain
& tf_error
)
7109 error ("type/value mismatch at argument %d in template "
7110 "parameter list for %qD",
7113 inform (input_location
,
7114 " expected a constant of type %qT, got %qT",
7116 (DECL_P (arg
) ? DECL_NAME (arg
) : orig_arg
));
7117 else if (requires_tmpl_type
)
7118 inform (input_location
,
7119 " expected a class template, got %qE", orig_arg
);
7121 inform (input_location
,
7122 " expected a type, got %qE", orig_arg
);
7125 return error_mark_node
;
7127 if (is_tmpl_type
^ requires_tmpl_type
)
7129 if (in_decl
&& (complain
& tf_error
))
7131 error ("type/value mismatch at argument %d in template "
7132 "parameter list for %qD",
7135 inform (input_location
,
7136 " expected a type, got %qT", DECL_NAME (arg
));
7138 inform (input_location
,
7139 " expected a class template, got %qT", orig_arg
);
7141 return error_mark_node
;
7146 if (requires_tmpl_type
)
7148 if (template_parameter_pack_p (parm
) && ARGUMENT_PACK_P (orig_arg
))
7150 else if (TREE_CODE (TREE_TYPE (arg
)) == UNBOUND_CLASS_TEMPLATE
)
7151 /* The number of argument required is not known yet.
7152 Just accept it for now. */
7153 val
= TREE_TYPE (arg
);
7156 tree parmparm
= DECL_INNERMOST_TEMPLATE_PARMS (parm
);
7159 /* Strip alias templates that are equivalent to another
7161 arg
= get_underlying_template (arg
);
7162 argparm
= DECL_INNERMOST_TEMPLATE_PARMS (arg
);
7164 if (coerce_template_template_parms (parmparm
, argparm
,
7170 /* TEMPLATE_TEMPLATE_PARM node is preferred over
7172 if (val
!= error_mark_node
)
7174 if (DECL_TEMPLATE_TEMPLATE_PARM_P (val
))
7175 val
= TREE_TYPE (val
);
7176 if (TREE_CODE (orig_arg
) == TYPE_PACK_EXPANSION
)
7177 val
= make_pack_expansion (val
);
7182 if (in_decl
&& (complain
& tf_error
))
7184 error ("type/value mismatch at argument %d in "
7185 "template parameter list for %qD",
7187 inform (input_location
,
7188 " expected a template of type %qD, got %qT",
7192 val
= error_mark_node
;
7195 // Check that the constraints are compatible before allowing the
7197 if (val
!= error_mark_node
)
7198 if (!is_compatible_template_arg (parm
, arg
))
7200 if (in_decl
&& (complain
& tf_error
))
7202 error ("constraint mismatch at argument %d in "
7203 "template parameter list for %qD",
7205 inform (input_location
, " expected %qD but got %qD",
7208 val
= error_mark_node
;
7214 /* We only form one instance of each template specialization.
7215 Therefore, if we use a non-canonical variant (i.e., a
7216 typedef), any future messages referring to the type will use
7217 the typedef, which is confusing if those future uses do not
7218 themselves also use the typedef. */
7220 val
= canonicalize_type_argument (val
, complain
);
7224 tree t
= tsubst (TREE_TYPE (parm
), args
, complain
, in_decl
);
7226 if (invalid_nontype_parm_type_p (t
, complain
))
7227 return error_mark_node
;
7229 if (template_parameter_pack_p (parm
) && ARGUMENT_PACK_P (orig_arg
))
7231 if (same_type_p (t
, TREE_TYPE (orig_arg
)))
7235 /* Not sure if this is reachable, but it doesn't hurt
7237 error ("type mismatch in nontype parameter pack");
7238 val
= error_mark_node
;
7241 else if (!dependent_template_arg_p (orig_arg
)
7242 && !uses_template_parms (t
))
7243 /* We used to call digest_init here. However, digest_init
7244 will report errors, which we don't want when complain
7245 is zero. More importantly, digest_init will try too
7246 hard to convert things: for example, `0' should not be
7247 converted to pointer type at this point according to
7248 the standard. Accepting this is not merely an
7249 extension, since deciding whether or not these
7250 conversions can occur is part of determining which
7251 function template to call, or whether a given explicit
7252 argument specification is valid. */
7253 val
= convert_nontype_argument (t
, orig_arg
, complain
);
7256 bool removed_attr
= false;
7257 val
= strip_typedefs_expr (orig_arg
, &removed_attr
);
7260 if (val
== NULL_TREE
)
7261 val
= error_mark_node
;
7262 else if (val
== error_mark_node
&& (complain
& tf_error
))
7263 error ("could not convert template argument %qE to %qT", orig_arg
, t
);
7265 if (INDIRECT_REF_P (val
))
7267 /* Reject template arguments that are references to built-in
7268 functions with no library fallbacks. */
7269 const_tree inner
= TREE_OPERAND (val
, 0);
7270 if (TREE_CODE (TREE_TYPE (inner
)) == REFERENCE_TYPE
7271 && TREE_CODE (TREE_TYPE (TREE_TYPE (inner
))) == FUNCTION_TYPE
7272 && TREE_CODE (TREE_TYPE (inner
)) == REFERENCE_TYPE
7273 && 0 < TREE_OPERAND_LENGTH (inner
)
7274 && reject_gcc_builtin (TREE_OPERAND (inner
, 0)))
7275 return error_mark_node
;
7278 if (TREE_CODE (val
) == SCOPE_REF
)
7280 /* Strip typedefs from the SCOPE_REF. */
7281 tree type
= canonicalize_type_argument (TREE_TYPE (val
), complain
);
7282 tree scope
= canonicalize_type_argument (TREE_OPERAND (val
, 0),
7284 val
= build_qualified_name (type
, scope
, TREE_OPERAND (val
, 1),
7285 QUALIFIED_NAME_IS_TEMPLATE (val
));
7292 /* Coerces the remaining template arguments in INNER_ARGS (from
7293 ARG_IDX to the end) into the parameter pack at PARM_IDX in PARMS.
7294 Returns the coerced argument pack. PARM_IDX is the position of this
7295 parameter in the template parameter list. ARGS is the original
7296 template argument list. */
7298 coerce_template_parameter_pack (tree parms
,
7306 tsubst_flags_t complain
)
7308 tree parm
= TREE_VEC_ELT (parms
, parm_idx
);
7309 int nargs
= inner_args
? NUM_TMPL_ARGS (inner_args
) : 0;
7312 tree packed_parms
= NULL_TREE
;
7314 if (arg_idx
> nargs
)
7317 if (tree packs
= fixed_parameter_pack_p (TREE_VALUE (parm
)))
7319 /* When the template parameter is a non-type template parameter pack
7320 or template template parameter pack whose type or template
7321 parameters use parameter packs, we know exactly how many arguments
7322 we are looking for. Build a vector of the instantiated decls for
7323 these template parameters in PACKED_PARMS. */
7324 /* We can't use make_pack_expansion here because it would interpret a
7325 _DECL as a use rather than a declaration. */
7326 tree decl
= TREE_VALUE (parm
);
7327 tree exp
= cxx_make_type (TYPE_PACK_EXPANSION
);
7328 SET_PACK_EXPANSION_PATTERN (exp
, decl
);
7329 PACK_EXPANSION_PARAMETER_PACKS (exp
) = packs
;
7330 SET_TYPE_STRUCTURAL_EQUALITY (exp
);
7332 TREE_VEC_LENGTH (args
)--;
7333 packed_parms
= tsubst_pack_expansion (exp
, args
, complain
, decl
);
7334 TREE_VEC_LENGTH (args
)++;
7336 if (packed_parms
== error_mark_node
)
7337 return error_mark_node
;
7339 /* If we're doing a partial instantiation of a member template,
7340 verify that all of the types used for the non-type
7341 template parameter pack are, in fact, valid for non-type
7342 template parameters. */
7344 && PACK_EXPANSION_P (TREE_VEC_ELT (inner_args
, arg_idx
)))
7346 int j
, len
= TREE_VEC_LENGTH (packed_parms
);
7347 for (j
= 0; j
< len
; ++j
)
7349 tree t
= TREE_TYPE (TREE_VEC_ELT (packed_parms
, j
));
7350 if (invalid_nontype_parm_type_p (t
, complain
))
7351 return error_mark_node
;
7353 /* We don't know how many args we have yet, just
7354 use the unconverted ones for now. */
7358 packed_args
= make_tree_vec (TREE_VEC_LENGTH (packed_parms
));
7360 /* Check if we have a placeholder pack, which indicates we're
7361 in the context of a introduction list. In that case we want
7362 to match this pack to the single placeholder. */
7363 else if (arg_idx
< nargs
7364 && TREE_CODE (TREE_VEC_ELT (inner_args
, arg_idx
)) == WILDCARD_DECL
7365 && WILDCARD_PACK_P (TREE_VEC_ELT (inner_args
, arg_idx
)))
7367 nargs
= arg_idx
+ 1;
7368 packed_args
= make_tree_vec (1);
7371 packed_args
= make_tree_vec (nargs
- arg_idx
);
7373 /* Convert the remaining arguments, which will be a part of the
7374 parameter pack "parm". */
7375 for (; arg_idx
< nargs
; ++arg_idx
)
7377 tree arg
= TREE_VEC_ELT (inner_args
, arg_idx
);
7378 tree actual_parm
= TREE_VALUE (parm
);
7379 int pack_idx
= arg_idx
- parm_idx
;
7383 /* Once we've packed as many args as we have types, stop. */
7384 if (pack_idx
>= TREE_VEC_LENGTH (packed_parms
))
7386 else if (PACK_EXPANSION_P (arg
))
7387 /* We don't know how many args we have yet, just
7388 use the unconverted ones for now. */
7391 actual_parm
= TREE_VEC_ELT (packed_parms
, pack_idx
);
7394 if (arg
== error_mark_node
)
7396 if (complain
& tf_error
)
7397 error ("template argument %d is invalid", arg_idx
+ 1);
7400 arg
= convert_template_argument (actual_parm
,
7401 arg
, new_args
, complain
, parm_idx
,
7403 if (arg
== error_mark_node
)
7405 TREE_VEC_ELT (packed_args
, pack_idx
) = arg
;
7408 if (arg_idx
- parm_idx
< TREE_VEC_LENGTH (packed_args
)
7409 && TREE_VEC_LENGTH (packed_args
) > 0)
7411 if (complain
& tf_error
)
7412 error ("wrong number of template arguments (%d, should be %d)",
7413 arg_idx
- parm_idx
, TREE_VEC_LENGTH (packed_args
));
7414 return error_mark_node
;
7417 if (TREE_CODE (TREE_VALUE (parm
)) == TYPE_DECL
7418 || TREE_CODE (TREE_VALUE (parm
)) == TEMPLATE_DECL
)
7419 argument_pack
= cxx_make_type (TYPE_ARGUMENT_PACK
);
7422 argument_pack
= make_node (NONTYPE_ARGUMENT_PACK
);
7423 TREE_TYPE (argument_pack
)
7424 = tsubst (TREE_TYPE (TREE_VALUE (parm
)), new_args
, complain
, in_decl
);
7425 TREE_CONSTANT (argument_pack
) = 1;
7428 SET_ARGUMENT_PACK_ARGS (argument_pack
, packed_args
);
7430 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (packed_args
,
7431 TREE_VEC_LENGTH (packed_args
));
7432 return argument_pack
;
7435 /* Returns the number of pack expansions in the template argument vector
7439 pack_expansion_args_count (tree args
)
7444 for (i
= 0; i
< TREE_VEC_LENGTH (args
); ++i
)
7446 tree elt
= TREE_VEC_ELT (args
, i
);
7447 if (elt
&& PACK_EXPANSION_P (elt
))
7453 /* Convert all template arguments to their appropriate types, and
7454 return a vector containing the innermost resulting template
7455 arguments. If any error occurs, return error_mark_node. Error and
7456 warning messages are issued under control of COMPLAIN.
7458 If REQUIRE_ALL_ARGS is false, argument deduction will be performed
7459 for arguments not specified in ARGS. Otherwise, if
7460 USE_DEFAULT_ARGS is true, default arguments will be used to fill in
7461 unspecified arguments. If REQUIRE_ALL_ARGS is true, but
7462 USE_DEFAULT_ARGS is false, then all arguments must be specified in
7466 coerce_template_parms (tree parms
,
7469 tsubst_flags_t complain
,
7470 bool require_all_args
,
7471 bool use_default_args
)
7473 int nparms
, nargs
, parm_idx
, arg_idx
, lost
= 0;
7474 tree orig_inner_args
;
7477 tree new_inner_args
;
7478 int saved_unevaluated_operand
;
7479 int saved_inhibit_evaluation_warnings
;
7481 /* When used as a boolean value, indicates whether this is a
7482 variadic template parameter list. Since it's an int, we can also
7483 subtract it from nparms to get the number of non-variadic
7486 int variadic_args_p
= 0;
7487 int post_variadic_parms
= 0;
7489 /* Likewise for parameters with default arguments. */
7492 if (args
== error_mark_node
)
7493 return error_mark_node
;
7495 nparms
= TREE_VEC_LENGTH (parms
);
7497 /* Determine if there are any parameter packs or default arguments. */
7498 for (parm_idx
= 0; parm_idx
< nparms
; ++parm_idx
)
7500 tree parm
= TREE_VEC_ELT (parms
, parm_idx
);
7502 ++post_variadic_parms
;
7503 if (template_parameter_pack_p (TREE_VALUE (parm
)))
7505 if (TREE_PURPOSE (parm
))
7509 inner_args
= orig_inner_args
= INNERMOST_TEMPLATE_ARGS (args
);
7510 /* If there are no parameters that follow a parameter pack, we need to
7511 expand any argument packs so that we can deduce a parameter pack from
7512 some non-packed args followed by an argument pack, as in variadic85.C.
7513 If there are such parameters, we need to leave argument packs intact
7514 so the arguments are assigned properly. This can happen when dealing
7515 with a nested class inside a partial specialization of a class
7516 template, as in variadic92.C, or when deducing a template parameter pack
7517 from a sub-declarator, as in variadic114.C. */
7518 if (!post_variadic_parms
)
7519 inner_args
= expand_template_argument_pack (inner_args
);
7521 /* Count any pack expansion args. */
7522 variadic_args_p
= pack_expansion_args_count (inner_args
);
7524 nargs
= inner_args
? NUM_TMPL_ARGS (inner_args
) : 0;
7525 if ((nargs
> nparms
&& !variadic_p
)
7526 || (nargs
< nparms
- variadic_p
7529 && (!use_default_args
7530 || (TREE_VEC_ELT (parms
, nargs
) != error_mark_node
7531 && !TREE_PURPOSE (TREE_VEC_ELT (parms
, nargs
))))))
7533 if (complain
& tf_error
)
7535 if (variadic_p
|| default_p
)
7537 nparms
-= variadic_p
+ default_p
;
7538 error ("wrong number of template arguments "
7539 "(%d, should be at least %d)", nargs
, nparms
);
7542 error ("wrong number of template arguments "
7543 "(%d, should be %d)", nargs
, nparms
);
7546 inform (DECL_SOURCE_LOCATION (in_decl
),
7547 "provided for %qD", in_decl
);
7550 return error_mark_node
;
7552 /* We can't pass a pack expansion to a non-pack parameter of an alias
7553 template (DR 1430). */
7555 && (DECL_ALIAS_TEMPLATE_P (in_decl
)
7556 || concept_template_p (in_decl
))
7558 && nargs
- variadic_args_p
< nparms
- variadic_p
)
7560 if (complain
& tf_error
)
7562 for (int i
= 0; i
< TREE_VEC_LENGTH (inner_args
); ++i
)
7564 tree arg
= TREE_VEC_ELT (inner_args
, i
);
7565 tree parm
= TREE_VALUE (TREE_VEC_ELT (parms
, i
));
7567 if (PACK_EXPANSION_P (arg
)
7568 && !template_parameter_pack_p (parm
))
7570 if (DECL_ALIAS_TEMPLATE_P (in_decl
))
7571 error_at (location_of (arg
),
7572 "pack expansion argument for non-pack parameter "
7573 "%qD of alias template %qD", parm
, in_decl
);
7575 error_at (location_of (arg
),
7576 "pack expansion argument for non-pack parameter "
7577 "%qD of concept %qD", parm
, in_decl
);
7578 inform (DECL_SOURCE_LOCATION (parm
), "declared here");
7585 return error_mark_node
;
7588 /* We need to evaluate the template arguments, even though this
7589 template-id may be nested within a "sizeof". */
7590 saved_unevaluated_operand
= cp_unevaluated_operand
;
7591 cp_unevaluated_operand
= 0;
7592 saved_inhibit_evaluation_warnings
= c_inhibit_evaluation_warnings
;
7593 c_inhibit_evaluation_warnings
= 0;
7594 new_inner_args
= make_tree_vec (nparms
);
7595 new_args
= add_outermost_template_args (args
, new_inner_args
);
7596 int pack_adjust
= 0;
7597 for (parm_idx
= 0, arg_idx
= 0; parm_idx
< nparms
; parm_idx
++, arg_idx
++)
7602 /* Get the Ith template parameter. */
7603 parm
= TREE_VEC_ELT (parms
, parm_idx
);
7605 if (parm
== error_mark_node
)
7607 TREE_VEC_ELT (new_inner_args
, arg_idx
) = error_mark_node
;
7611 /* Calculate the next argument. */
7612 if (arg_idx
< nargs
)
7613 arg
= TREE_VEC_ELT (inner_args
, arg_idx
);
7617 if (template_parameter_pack_p (TREE_VALUE (parm
))
7618 && !(arg
&& ARGUMENT_PACK_P (arg
)))
7620 /* Some arguments will be placed in the
7621 template parameter pack PARM. */
7622 arg
= coerce_template_parameter_pack (parms
, parm_idx
, args
,
7623 inner_args
, arg_idx
,
7627 if (arg
== NULL_TREE
)
7629 /* We don't know how many args we have yet, just use the
7630 unconverted (and still packed) ones for now. */
7631 new_inner_args
= orig_inner_args
;
7636 TREE_VEC_ELT (new_inner_args
, parm_idx
) = arg
;
7638 /* Store this argument. */
7639 if (arg
== error_mark_node
)
7642 /* We are done with all of the arguments. */
7647 pack_adjust
= TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg
)) - 1;
7648 arg_idx
+= pack_adjust
;
7655 if (PACK_EXPANSION_P (arg
))
7657 /* "If every valid specialization of a variadic template
7658 requires an empty template parameter pack, the template is
7659 ill-formed, no diagnostic required." So check that the
7660 pattern works with this parameter. */
7661 tree pattern
= PACK_EXPANSION_PATTERN (arg
);
7662 tree conv
= convert_template_argument (TREE_VALUE (parm
),
7666 if (conv
== error_mark_node
)
7668 inform (input_location
, "so any instantiation with a "
7669 "non-empty parameter pack would be ill-formed");
7672 else if (TYPE_P (conv
) && !TYPE_P (pattern
))
7673 /* Recover from missing typename. */
7674 TREE_VEC_ELT (inner_args
, arg_idx
)
7675 = make_pack_expansion (conv
);
7677 /* We don't know how many args we have yet, just
7678 use the unconverted ones for now. */
7679 new_inner_args
= inner_args
;
7684 else if (require_all_args
)
7686 /* There must be a default arg in this case. */
7687 arg
= tsubst_template_arg (TREE_PURPOSE (parm
), new_args
,
7689 /* The position of the first default template argument,
7690 is also the number of non-defaulted arguments in NEW_INNER_ARGS.
7692 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args
))
7693 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args
,
7694 arg_idx
- pack_adjust
);
7699 if (arg
== error_mark_node
)
7701 if (complain
& tf_error
)
7702 error ("template argument %d is invalid", arg_idx
+ 1);
7705 /* This only occurs if there was an error in the template
7706 parameter list itself (which we would already have
7707 reported) that we are trying to recover from, e.g., a class
7708 template with a parameter list such as
7709 template<typename..., typename>. */
7712 arg
= convert_template_argument (TREE_VALUE (parm
),
7713 arg
, new_args
, complain
,
7716 if (arg
== error_mark_node
)
7718 TREE_VEC_ELT (new_inner_args
, arg_idx
- pack_adjust
) = arg
;
7720 cp_unevaluated_operand
= saved_unevaluated_operand
;
7721 c_inhibit_evaluation_warnings
= saved_inhibit_evaluation_warnings
;
7723 if (variadic_p
&& arg_idx
< nargs
)
7725 if (complain
& tf_error
)
7727 error ("wrong number of template arguments "
7728 "(%d, should be %d)", nargs
, arg_idx
);
7730 error ("provided for %q+D", in_decl
);
7732 return error_mark_node
;
7736 return error_mark_node
;
7738 if (CHECKING_P
&& !NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args
))
7739 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args
,
7740 TREE_VEC_LENGTH (new_inner_args
));
7742 return new_inner_args
;
7745 /* Convert all template arguments to their appropriate types, and
7746 return a vector containing the innermost resulting template
7747 arguments. If any error occurs, return error_mark_node. Error and
7748 warning messages are not issued.
7750 Note that no function argument deduction is performed, and default
7751 arguments are used to fill in unspecified arguments. */
7753 coerce_template_parms (tree parms
, tree args
, tree in_decl
)
7755 return coerce_template_parms (parms
, args
, in_decl
, tf_none
, true, true);
7758 /* Convert all template arguments to their appropriate type, and
7759 instantiate default arguments as needed. This returns a vector
7760 containing the innermost resulting template arguments, or
7761 error_mark_node if unsuccessful. */
7763 coerce_template_parms (tree parms
, tree args
, tree in_decl
,
7764 tsubst_flags_t complain
)
7766 return coerce_template_parms (parms
, args
, in_decl
, complain
, true, true);
7769 /* Like coerce_template_parms. If PARMS represents all template
7770 parameters levels, this function returns a vector of vectors
7771 representing all the resulting argument levels. Note that in this
7772 case, only the innermost arguments are coerced because the
7773 outermost ones are supposed to have been coerced already.
7775 Otherwise, if PARMS represents only (the innermost) vector of
7776 parameters, this function returns a vector containing just the
7777 innermost resulting arguments. */
7780 coerce_innermost_template_parms (tree parms
,
7783 tsubst_flags_t complain
,
7784 bool require_all_args
,
7785 bool use_default_args
)
7787 int parms_depth
= TMPL_PARMS_DEPTH (parms
);
7788 int args_depth
= TMPL_ARGS_DEPTH (args
);
7791 if (parms_depth
> 1)
7793 coerced_args
= make_tree_vec (parms_depth
);
7797 for (level
= parms
, cur_depth
= parms_depth
;
7798 parms_depth
> 0 && level
!= NULL_TREE
;
7799 level
= TREE_CHAIN (level
), --cur_depth
)
7802 if (cur_depth
== args_depth
)
7803 l
= coerce_template_parms (TREE_VALUE (level
),
7804 args
, in_decl
, complain
,
7808 l
= TMPL_ARGS_LEVEL (args
, cur_depth
);
7810 if (l
== error_mark_node
)
7811 return error_mark_node
;
7813 SET_TMPL_ARGS_LEVEL (coerced_args
, cur_depth
, l
);
7817 coerced_args
= coerce_template_parms (INNERMOST_TEMPLATE_PARMS (parms
),
7818 args
, in_decl
, complain
,
7821 return coerced_args
;
7824 /* Returns 1 if template args OT and NT are equivalent. */
7827 template_args_equal (tree ot
, tree nt
)
7831 if (nt
== NULL_TREE
|| ot
== NULL_TREE
)
7834 if (TREE_CODE (nt
) == TREE_VEC
)
7835 /* For member templates */
7836 return TREE_CODE (ot
) == TREE_VEC
&& comp_template_args (ot
, nt
);
7837 else if (PACK_EXPANSION_P (ot
))
7838 return (PACK_EXPANSION_P (nt
)
7839 && template_args_equal (PACK_EXPANSION_PATTERN (ot
),
7840 PACK_EXPANSION_PATTERN (nt
))
7841 && template_args_equal (PACK_EXPANSION_EXTRA_ARGS (ot
),
7842 PACK_EXPANSION_EXTRA_ARGS (nt
)));
7843 else if (ARGUMENT_PACK_P (ot
))
7848 if (!ARGUMENT_PACK_P (nt
))
7851 opack
= ARGUMENT_PACK_ARGS (ot
);
7852 npack
= ARGUMENT_PACK_ARGS (nt
);
7853 len
= TREE_VEC_LENGTH (opack
);
7854 if (TREE_VEC_LENGTH (npack
) != len
)
7856 for (i
= 0; i
< len
; ++i
)
7857 if (!template_args_equal (TREE_VEC_ELT (opack
, i
),
7858 TREE_VEC_ELT (npack
, i
)))
7862 else if (ot
&& TREE_CODE (ot
) == ARGUMENT_PACK_SELECT
)
7864 /* We get here probably because we are in the middle of substituting
7865 into the pattern of a pack expansion. In that case the
7866 ARGUMENT_PACK_SELECT temporarily replaces the pack argument we are
7867 interested in. So we want to use the initial pack argument for
7869 ot
= ARGUMENT_PACK_SELECT_FROM_PACK (ot
);
7870 if (nt
&& TREE_CODE (nt
) == ARGUMENT_PACK_SELECT
)
7871 nt
= ARGUMENT_PACK_SELECT_FROM_PACK (nt
);
7872 return template_args_equal (ot
, nt
);
7874 else if (TYPE_P (nt
))
7878 /* Don't treat an alias template specialization with dependent
7879 arguments as equivalent to its underlying type when used as a
7880 template argument; we need them to be distinct so that we
7881 substitute into the specialization arguments at instantiation
7882 time. And aliases can't be equivalent without being ==, so
7883 we don't need to look any deeper. */
7884 if (TYPE_ALIAS_P (nt
) || TYPE_ALIAS_P (ot
))
7887 return same_type_p (ot
, nt
);
7889 else if (TREE_CODE (ot
) == TREE_VEC
|| TYPE_P (ot
))
7893 /* Try to treat a template non-type argument that has been converted
7894 to the parameter type as equivalent to one that hasn't yet. */
7895 for (enum tree_code code1
= TREE_CODE (ot
);
7896 CONVERT_EXPR_CODE_P (code1
)
7897 || code1
== NON_LVALUE_EXPR
;
7898 code1
= TREE_CODE (ot
))
7899 ot
= TREE_OPERAND (ot
, 0);
7900 for (enum tree_code code2
= TREE_CODE (nt
);
7901 CONVERT_EXPR_CODE_P (code2
)
7902 || code2
== NON_LVALUE_EXPR
;
7903 code2
= TREE_CODE (nt
))
7904 nt
= TREE_OPERAND (nt
, 0);
7906 return cp_tree_equal (ot
, nt
);
7910 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets of
7911 template arguments. Returns 0 otherwise, and updates OLDARG_PTR and
7912 NEWARG_PTR with the offending arguments if they are non-NULL. */
7915 comp_template_args (tree oldargs
, tree newargs
,
7916 tree
*oldarg_ptr
, tree
*newarg_ptr
)
7920 if (oldargs
== newargs
)
7923 if (!oldargs
|| !newargs
)
7926 if (TREE_VEC_LENGTH (oldargs
) != TREE_VEC_LENGTH (newargs
))
7929 for (i
= 0; i
< TREE_VEC_LENGTH (oldargs
); ++i
)
7931 tree nt
= TREE_VEC_ELT (newargs
, i
);
7932 tree ot
= TREE_VEC_ELT (oldargs
, i
);
7934 if (! template_args_equal (ot
, nt
))
7936 if (oldarg_ptr
!= NULL
)
7938 if (newarg_ptr
!= NULL
)
7947 add_pending_template (tree d
)
7949 tree ti
= (TYPE_P (d
)
7950 ? CLASSTYPE_TEMPLATE_INFO (d
)
7951 : DECL_TEMPLATE_INFO (d
));
7952 struct pending_template
*pt
;
7955 if (TI_PENDING_TEMPLATE_FLAG (ti
))
7958 /* We are called both from instantiate_decl, where we've already had a
7959 tinst_level pushed, and instantiate_template, where we haven't.
7961 level
= !current_tinst_level
|| current_tinst_level
->decl
!= d
;
7964 push_tinst_level (d
);
7966 pt
= ggc_alloc
<pending_template
> ();
7968 pt
->tinst
= current_tinst_level
;
7969 if (last_pending_template
)
7970 last_pending_template
->next
= pt
;
7972 pending_templates
= pt
;
7974 last_pending_template
= pt
;
7976 TI_PENDING_TEMPLATE_FLAG (ti
) = 1;
7983 /* Return a TEMPLATE_ID_EXPR corresponding to the indicated FNS and
7984 ARGLIST. Valid choices for FNS are given in the cp-tree.def
7985 documentation for TEMPLATE_ID_EXPR. */
7988 lookup_template_function (tree fns
, tree arglist
)
7992 if (fns
== error_mark_node
|| arglist
== error_mark_node
)
7993 return error_mark_node
;
7995 gcc_assert (!arglist
|| TREE_CODE (arglist
) == TREE_VEC
);
7997 if (!is_overloaded_fn (fns
) && !identifier_p (fns
))
7999 error ("%q#D is not a function template", fns
);
8000 return error_mark_node
;
8003 if (BASELINK_P (fns
))
8005 BASELINK_FUNCTIONS (fns
) = build2 (TEMPLATE_ID_EXPR
,
8007 BASELINK_FUNCTIONS (fns
),
8012 type
= TREE_TYPE (fns
);
8013 if (TREE_CODE (fns
) == OVERLOAD
|| !type
)
8014 type
= unknown_type_node
;
8016 return build2 (TEMPLATE_ID_EXPR
, type
, fns
, arglist
);
8019 /* Within the scope of a template class S<T>, the name S gets bound
8020 (in build_self_reference) to a TYPE_DECL for the class, not a
8021 TEMPLATE_DECL. If DECL is a TYPE_DECL for current_class_type,
8022 or one of its enclosing classes, and that type is a template,
8023 return the associated TEMPLATE_DECL. Otherwise, the original
8026 Also handle the case when DECL is a TREE_LIST of ambiguous
8027 injected-class-names from different bases. */
8030 maybe_get_template_decl_from_type_decl (tree decl
)
8032 if (decl
== NULL_TREE
)
8035 /* DR 176: A lookup that finds an injected-class-name (10.2
8036 [class.member.lookup]) can result in an ambiguity in certain cases
8037 (for example, if it is found in more than one base class). If all of
8038 the injected-class-names that are found refer to specializations of
8039 the same class template, and if the name is followed by a
8040 template-argument-list, the reference refers to the class template
8041 itself and not a specialization thereof, and is not ambiguous. */
8042 if (TREE_CODE (decl
) == TREE_LIST
)
8044 tree t
, tmpl
= NULL_TREE
;
8045 for (t
= decl
; t
; t
= TREE_CHAIN (t
))
8047 tree elt
= maybe_get_template_decl_from_type_decl (TREE_VALUE (t
));
8050 else if (tmpl
!= elt
)
8053 if (tmpl
&& t
== NULL_TREE
)
8059 return (decl
!= NULL_TREE
8060 && DECL_SELF_REFERENCE_P (decl
)
8061 && CLASSTYPE_TEMPLATE_INFO (TREE_TYPE (decl
)))
8062 ? CLASSTYPE_TI_TEMPLATE (TREE_TYPE (decl
)) : decl
;
8065 /* Given an IDENTIFIER_NODE (or type TEMPLATE_DECL) and a chain of
8066 parameters, find the desired type.
8068 D1 is the PTYPENAME terminal, and ARGLIST is the list of arguments.
8070 IN_DECL, if non-NULL, is the template declaration we are trying to
8073 If ENTERING_SCOPE is nonzero, we are about to enter the scope of
8074 the class we are looking up.
8076 Issue error and warning messages under control of COMPLAIN.
8078 If the template class is really a local class in a template
8079 function, then the FUNCTION_CONTEXT is the function in which it is
8082 ??? Note that this function is currently called *twice* for each
8083 template-id: the first time from the parser, while creating the
8084 incomplete type (finish_template_type), and the second type during the
8085 real instantiation (instantiate_template_class). This is surely something
8086 that we want to avoid. It also causes some problems with argument
8087 coercion (see convert_nontype_argument for more information on this). */
8090 lookup_template_class_1 (tree d1
, tree arglist
, tree in_decl
, tree context
,
8091 int entering_scope
, tsubst_flags_t complain
)
8093 tree templ
= NULL_TREE
, parmlist
;
8100 if (identifier_p (d1
))
8102 tree value
= innermost_non_namespace_value (d1
);
8103 if (value
&& DECL_TEMPLATE_TEMPLATE_PARM_P (value
))
8108 push_decl_namespace (context
);
8109 templ
= lookup_name (d1
);
8110 templ
= maybe_get_template_decl_from_type_decl (templ
);
8112 pop_decl_namespace ();
8115 context
= DECL_CONTEXT (templ
);
8117 else if (TREE_CODE (d1
) == TYPE_DECL
&& MAYBE_CLASS_TYPE_P (TREE_TYPE (d1
)))
8119 tree type
= TREE_TYPE (d1
);
8121 /* If we are declaring a constructor, say A<T>::A<T>, we will get
8122 an implicit typename for the second A. Deal with it. */
8123 if (TREE_CODE (type
) == TYPENAME_TYPE
&& TREE_TYPE (type
))
8124 type
= TREE_TYPE (type
);
8126 if (CLASSTYPE_TEMPLATE_INFO (type
))
8128 templ
= CLASSTYPE_TI_TEMPLATE (type
);
8129 d1
= DECL_NAME (templ
);
8132 else if (TREE_CODE (d1
) == ENUMERAL_TYPE
8133 || (TYPE_P (d1
) && MAYBE_CLASS_TYPE_P (d1
)))
8135 templ
= TYPE_TI_TEMPLATE (d1
);
8136 d1
= DECL_NAME (templ
);
8138 else if (DECL_TYPE_TEMPLATE_P (d1
))
8141 d1
= DECL_NAME (templ
);
8142 context
= DECL_CONTEXT (templ
);
8144 else if (DECL_TEMPLATE_TEMPLATE_PARM_P (d1
))
8147 d1
= DECL_NAME (templ
);
8150 /* Issue an error message if we didn't find a template. */
8153 if (complain
& tf_error
)
8154 error ("%qT is not a template", d1
);
8155 return error_mark_node
;
8158 if (TREE_CODE (templ
) != TEMPLATE_DECL
8159 /* Make sure it's a user visible template, if it was named by
8161 || ((complain
& tf_user
) && !DECL_TEMPLATE_PARM_P (templ
)
8162 && !PRIMARY_TEMPLATE_P (templ
)))
8164 if (complain
& tf_error
)
8166 error ("non-template type %qT used as a template", d1
);
8168 error ("for template declaration %q+D", in_decl
);
8170 return error_mark_node
;
8173 complain
&= ~tf_user
;
8175 /* An alias that just changes the name of a template is equivalent to the
8176 other template, so if any of the arguments are pack expansions, strip
8177 the alias to avoid problems with a pack expansion passed to a non-pack
8178 alias template parameter (DR 1430). */
8179 if (pack_expansion_args_count (INNERMOST_TEMPLATE_ARGS (arglist
)))
8180 templ
= get_underlying_template (templ
);
8182 if (DECL_TEMPLATE_TEMPLATE_PARM_P (templ
))
8184 /* Create a new TEMPLATE_DECL and TEMPLATE_TEMPLATE_PARM node to store
8185 template arguments */
8191 parmlist
= DECL_INNERMOST_TEMPLATE_PARMS (templ
);
8193 /* Consider an example where a template template parameter declared as
8195 template <class T, class U = std::allocator<T> > class TT
8197 The template parameter level of T and U are one level larger than
8198 of TT. To proper process the default argument of U, say when an
8199 instantiation `TT<int>' is seen, we need to build the full
8200 arguments containing {int} as the innermost level. Outer levels,
8201 available when not appearing as default template argument, can be
8202 obtained from the arguments of the enclosing template.
8204 Suppose that TT is later substituted with std::vector. The above
8205 instantiation is `TT<int, std::allocator<T> >' with TT at
8206 level 1, and T at level 2, while the template arguments at level 1
8207 becomes {std::vector} and the inner level 2 is {int}. */
8209 outer
= DECL_CONTEXT (templ
);
8211 outer
= TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (outer
)));
8212 else if (current_template_parms
)
8214 /* This is an argument of the current template, so we haven't set
8215 DECL_CONTEXT yet. */
8216 tree relevant_template_parms
;
8218 /* Parameter levels that are greater than the level of the given
8219 template template parm are irrelevant. */
8220 relevant_template_parms
= current_template_parms
;
8221 while (TMPL_PARMS_DEPTH (relevant_template_parms
)
8222 != TEMPLATE_TYPE_LEVEL (TREE_TYPE (templ
)))
8223 relevant_template_parms
= TREE_CHAIN (relevant_template_parms
);
8225 outer
= template_parms_to_args (relevant_template_parms
);
8229 arglist
= add_to_template_args (outer
, arglist
);
8231 arglist2
= coerce_template_parms (parmlist
, arglist
, templ
,
8233 /*require_all_args=*/true,
8234 /*use_default_args=*/true);
8235 if (arglist2
== error_mark_node
8236 || (!uses_template_parms (arglist2
)
8237 && check_instantiated_args (templ
, arglist2
, complain
)))
8238 return error_mark_node
;
8240 parm
= bind_template_template_parm (TREE_TYPE (templ
), arglist2
);
8245 tree template_type
= TREE_TYPE (templ
);
8248 tree found
= NULL_TREE
;
8251 int is_dependent_type
;
8252 int use_partial_inst_tmpl
= false;
8254 if (template_type
== error_mark_node
)
8255 /* An error occurred while building the template TEMPL, and a
8256 diagnostic has most certainly been emitted for that
8257 already. Let's propagate that error. */
8258 return error_mark_node
;
8260 gen_tmpl
= most_general_template (templ
);
8261 parmlist
= DECL_TEMPLATE_PARMS (gen_tmpl
);
8262 parm_depth
= TMPL_PARMS_DEPTH (parmlist
);
8263 arg_depth
= TMPL_ARGS_DEPTH (arglist
);
8265 if (arg_depth
== 1 && parm_depth
> 1)
8267 /* We've been given an incomplete set of template arguments.
8270 template <class T> struct S1 {
8271 template <class U> struct S2 {};
8272 template <class U> struct S2<U*> {};
8275 we will be called with an ARGLIST of `U*', but the
8276 TEMPLATE will be `template <class T> template
8277 <class U> struct S1<T>::S2'. We must fill in the missing
8280 = add_outermost_template_args (TYPE_TI_ARGS (TREE_TYPE (templ
)),
8282 arg_depth
= TMPL_ARGS_DEPTH (arglist
);
8285 /* Now we should have enough arguments. */
8286 gcc_assert (parm_depth
== arg_depth
);
8288 /* From here on, we're only interested in the most general
8291 /* Calculate the BOUND_ARGS. These will be the args that are
8292 actually tsubst'd into the definition to create the
8294 arglist
= coerce_innermost_template_parms (parmlist
, arglist
, gen_tmpl
,
8296 /*require_all_args=*/true,
8297 /*use_default_args=*/true);
8299 if (arglist
== error_mark_node
)
8300 /* We were unable to bind the arguments. */
8301 return error_mark_node
;
8303 /* In the scope of a template class, explicit references to the
8304 template class refer to the type of the template, not any
8305 instantiation of it. For example, in:
8307 template <class T> class C { void f(C<T>); }
8309 the `C<T>' is just the same as `C'. Outside of the
8310 class, however, such a reference is an instantiation. */
8312 || !PRIMARY_TEMPLATE_P (gen_tmpl
)
8313 || currently_open_class (template_type
))
8314 /* comp_template_args is expensive, check it last. */
8315 && comp_template_args (TYPE_TI_ARGS (template_type
),
8317 return template_type
;
8319 /* If we already have this specialization, return it. */
8320 elt
.tmpl
= gen_tmpl
;
8322 elt
.spec
= NULL_TREE
;
8323 hash
= spec_hasher::hash (&elt
);
8324 entry
= type_specializations
->find_with_hash (&elt
, hash
);
8329 /* If the the template's constraints are not satisfied,
8330 then we cannot form a valid type.
8332 Note that the check is deferred until after the hash
8333 lookup. This prevents redundant checks on previously
8334 instantiated specializations. */
8335 if (flag_concepts
&& !constraints_satisfied_p (gen_tmpl
, arglist
))
8337 if (complain
& tf_error
)
8339 error ("template constraint failure");
8340 diagnose_constraints (input_location
, gen_tmpl
, arglist
);
8342 return error_mark_node
;
8345 is_dependent_type
= uses_template_parms (arglist
);
8347 /* If the deduced arguments are invalid, then the binding
8349 if (!is_dependent_type
8350 && check_instantiated_args (gen_tmpl
,
8351 INNERMOST_TEMPLATE_ARGS (arglist
),
8353 return error_mark_node
;
8355 if (!is_dependent_type
8356 && !PRIMARY_TEMPLATE_P (gen_tmpl
)
8357 && !LAMBDA_TYPE_P (TREE_TYPE (gen_tmpl
))
8358 && TREE_CODE (CP_DECL_CONTEXT (gen_tmpl
)) == NAMESPACE_DECL
)
8360 found
= xref_tag_from_type (TREE_TYPE (gen_tmpl
),
8361 DECL_NAME (gen_tmpl
),
8362 /*tag_scope=*/ts_global
);
8366 context
= tsubst (DECL_CONTEXT (gen_tmpl
), arglist
,
8368 if (context
== error_mark_node
)
8369 return error_mark_node
;
8372 context
= global_namespace
;
8374 /* Create the type. */
8375 if (DECL_ALIAS_TEMPLATE_P (gen_tmpl
))
8377 /* The user referred to a specialization of an alias
8378 template represented by GEN_TMPL.
8380 [temp.alias]/2 says:
8382 When a template-id refers to the specialization of an
8383 alias template, it is equivalent to the associated
8384 type obtained by substitution of its
8385 template-arguments for the template-parameters in the
8386 type-id of the alias template. */
8388 t
= tsubst (TREE_TYPE (gen_tmpl
), arglist
, complain
, in_decl
);
8389 /* Note that the call above (by indirectly calling
8390 register_specialization in tsubst_decl) registers the
8391 TYPE_DECL representing the specialization of the alias
8392 template. So next time someone substitutes ARGLIST for
8393 the template parms into the alias template (GEN_TMPL),
8394 she'll get that TYPE_DECL back. */
8396 if (t
== error_mark_node
)
8399 else if (TREE_CODE (template_type
) == ENUMERAL_TYPE
)
8401 if (!is_dependent_type
)
8403 set_current_access_from_decl (TYPE_NAME (template_type
));
8404 t
= start_enum (TYPE_IDENTIFIER (template_type
), NULL_TREE
,
8405 tsubst (ENUM_UNDERLYING_TYPE (template_type
),
8406 arglist
, complain
, in_decl
),
8407 tsubst_attributes (TYPE_ATTRIBUTES (template_type
),
8408 arglist
, complain
, in_decl
),
8409 SCOPED_ENUM_P (template_type
), NULL
);
8411 if (t
== error_mark_node
)
8416 /* We don't want to call start_enum for this type, since
8417 the values for the enumeration constants may involve
8418 template parameters. And, no one should be interested
8419 in the enumeration constants for such a type. */
8420 t
= cxx_make_type (ENUMERAL_TYPE
);
8421 SET_SCOPED_ENUM_P (t
, SCOPED_ENUM_P (template_type
));
8423 SET_OPAQUE_ENUM_P (t
, OPAQUE_ENUM_P (template_type
));
8424 ENUM_FIXED_UNDERLYING_TYPE_P (t
)
8425 = ENUM_FIXED_UNDERLYING_TYPE_P (template_type
);
8427 else if (CLASS_TYPE_P (template_type
))
8429 t
= make_class_type (TREE_CODE (template_type
));
8430 CLASSTYPE_DECLARED_CLASS (t
)
8431 = CLASSTYPE_DECLARED_CLASS (template_type
);
8432 SET_CLASSTYPE_IMPLICIT_INSTANTIATION (t
);
8433 TYPE_FOR_JAVA (t
) = TYPE_FOR_JAVA (template_type
);
8435 /* A local class. Make sure the decl gets registered properly. */
8436 if (context
== current_function_decl
)
8437 pushtag (DECL_NAME (gen_tmpl
), t
, /*tag_scope=*/ts_current
);
8439 if (comp_template_args (CLASSTYPE_TI_ARGS (template_type
), arglist
))
8440 /* This instantiation is another name for the primary
8441 template type. Set the TYPE_CANONICAL field
8443 TYPE_CANONICAL (t
) = template_type
;
8444 else if (any_template_arguments_need_structural_equality_p (arglist
))
8445 /* Some of the template arguments require structural
8446 equality testing, so this template class requires
8447 structural equality testing. */
8448 SET_TYPE_STRUCTURAL_EQUALITY (t
);
8453 /* If we called start_enum or pushtag above, this information
8454 will already be set up. */
8457 TYPE_CONTEXT (t
) = FROB_CONTEXT (context
);
8459 type_decl
= create_implicit_typedef (DECL_NAME (gen_tmpl
), t
);
8460 DECL_CONTEXT (type_decl
) = TYPE_CONTEXT (t
);
8461 DECL_SOURCE_LOCATION (type_decl
)
8462 = DECL_SOURCE_LOCATION (TYPE_STUB_DECL (template_type
));
8465 type_decl
= TYPE_NAME (t
);
8467 if (CLASS_TYPE_P (template_type
))
8469 TREE_PRIVATE (type_decl
)
8470 = TREE_PRIVATE (TYPE_MAIN_DECL (template_type
));
8471 TREE_PROTECTED (type_decl
)
8472 = TREE_PROTECTED (TYPE_MAIN_DECL (template_type
));
8473 if (CLASSTYPE_VISIBILITY_SPECIFIED (template_type
))
8475 DECL_VISIBILITY_SPECIFIED (type_decl
) = 1;
8476 DECL_VISIBILITY (type_decl
) = CLASSTYPE_VISIBILITY (template_type
);
8480 if (OVERLOAD_TYPE_P (t
)
8481 && !DECL_ALIAS_TEMPLATE_P (gen_tmpl
))
8483 static const char *tags
[] = {"abi_tag", "may_alias"};
8485 for (unsigned ix
= 0; ix
!= 2; ix
++)
8488 = lookup_attribute (tags
[ix
], TYPE_ATTRIBUTES (template_type
));
8492 = tree_cons (TREE_PURPOSE (attributes
),
8493 TREE_VALUE (attributes
),
8494 TYPE_ATTRIBUTES (t
));
8498 /* Let's consider the explicit specialization of a member
8499 of a class template specialization that is implicitly instantiated,
8504 template<class U> struct M {}; //#0
8509 struct S<int>::M<char> //#1
8513 [temp.expl.spec]/4 says this is valid.
8515 In this case, when we write:
8518 M is instantiated from the CLASSTYPE_TI_TEMPLATE of #1, not from
8521 When we encounter #1, we want to store the partial instantiation
8522 of M (template<class T> S<int>::M<T>) in its CLASSTYPE_TI_TEMPLATE.
8524 For all cases other than this "explicit specialization of member of a
8525 class template", we just want to store the most general template into
8526 the CLASSTYPE_TI_TEMPLATE of M.
8528 This case of "explicit specialization of member of a class template"
8530 1/ the enclosing class is an instantiation of, and therefore not
8531 the same as, the context of the most general template, and
8532 2/ we aren't looking at the partial instantiation itself, i.e.
8533 the innermost arguments are not the same as the innermost parms of
8534 the most general template.
8536 So it's only when 1/ and 2/ happens that we want to use the partial
8537 instantiation of the member template in lieu of its most general
8540 if (PRIMARY_TEMPLATE_P (gen_tmpl
)
8541 && TMPL_ARGS_HAVE_MULTIPLE_LEVELS (arglist
)
8542 /* the enclosing class must be an instantiation... */
8543 && CLASS_TYPE_P (context
)
8544 && !same_type_p (context
, DECL_CONTEXT (gen_tmpl
)))
8546 tree partial_inst_args
;
8547 TREE_VEC_LENGTH (arglist
)--;
8548 ++processing_template_decl
;
8550 tsubst (INNERMOST_TEMPLATE_ARGS
8551 (TYPE_TI_ARGS (TREE_TYPE (gen_tmpl
))),
8552 arglist
, complain
, NULL_TREE
);
8553 --processing_template_decl
;
8554 TREE_VEC_LENGTH (arglist
)++;
8555 if (partial_inst_args
== error_mark_node
)
8556 return error_mark_node
;
8557 use_partial_inst_tmpl
=
8558 /*...and we must not be looking at the partial instantiation
8560 !comp_template_args (INNERMOST_TEMPLATE_ARGS (arglist
),
8564 if (!use_partial_inst_tmpl
)
8565 /* This case is easy; there are no member templates involved. */
8569 /* This is a full instantiation of a member template. Find
8570 the partial instantiation of which this is an instance. */
8572 /* Temporarily reduce by one the number of levels in the ARGLIST
8573 so as to avoid comparing the last set of arguments. */
8574 TREE_VEC_LENGTH (arglist
)--;
8575 found
= tsubst (gen_tmpl
, arglist
, complain
, NULL_TREE
);
8576 TREE_VEC_LENGTH (arglist
)++;
8577 /* FOUND is either a proper class type, or an alias
8578 template specialization. In the later case, it's a
8579 TYPE_DECL, resulting from the substituting of arguments
8580 for parameters in the TYPE_DECL of the alias template
8581 done earlier. So be careful while getting the template
8583 found
= TREE_CODE (found
) == TYPE_DECL
8584 ? TYPE_TI_TEMPLATE (TREE_TYPE (found
))
8585 : CLASSTYPE_TI_TEMPLATE (found
);
8588 // Build template info for the new specialization.
8589 SET_TYPE_TEMPLATE_INFO (t
, build_template_info (found
, arglist
));
8592 slot
= type_specializations
->find_slot_with_hash (&elt
, hash
, INSERT
);
8593 entry
= ggc_alloc
<spec_entry
> ();
8597 /* Note this use of the partial instantiation so we can check it
8598 later in maybe_process_partial_specialization. */
8599 DECL_TEMPLATE_INSTANTIATIONS (found
)
8600 = tree_cons (arglist
, t
,
8601 DECL_TEMPLATE_INSTANTIATIONS (found
));
8603 if (TREE_CODE (template_type
) == ENUMERAL_TYPE
&& !is_dependent_type
8604 && !DECL_ALIAS_TEMPLATE_P (gen_tmpl
))
8605 /* Now that the type has been registered on the instantiations
8606 list, we set up the enumerators. Because the enumeration
8607 constants may involve the enumeration type itself, we make
8608 sure to register the type first, and then create the
8609 constants. That way, doing tsubst_expr for the enumeration
8610 constants won't result in recursive calls here; we'll find
8611 the instantiation and exit above. */
8612 tsubst_enum (template_type
, t
, arglist
);
8614 if (CLASS_TYPE_P (template_type
) && is_dependent_type
)
8615 /* If the type makes use of template parameters, the
8616 code that generates debugging information will crash. */
8617 DECL_IGNORED_P (TYPE_MAIN_DECL (t
)) = 1;
8619 /* Possibly limit visibility based on template args. */
8620 TREE_PUBLIC (type_decl
) = 1;
8621 determine_visibility (type_decl
);
8623 inherit_targ_abi_tags (t
);
8629 /* Wrapper for lookup_template_class_1. */
8632 lookup_template_class (tree d1
, tree arglist
, tree in_decl
, tree context
,
8633 int entering_scope
, tsubst_flags_t complain
)
8636 timevar_push (TV_TEMPLATE_INST
);
8637 ret
= lookup_template_class_1 (d1
, arglist
, in_decl
, context
,
8638 entering_scope
, complain
);
8639 timevar_pop (TV_TEMPLATE_INST
);
8643 /* Return a TEMPLATE_ID_EXPR for the given variable template and ARGLIST. */
8646 lookup_template_variable (tree templ
, tree arglist
)
8648 /* The type of the expression is NULL_TREE since the template-id could refer
8649 to an explicit or partial specialization. */
8650 tree type
= NULL_TREE
;
8651 if (flag_concepts
&& variable_concept_p (templ
))
8652 /* Except that concepts are always bool. */
8653 type
= boolean_type_node
;
8654 return build2 (TEMPLATE_ID_EXPR
, type
, templ
, arglist
);
8657 /* Instantiate a variable declaration from a TEMPLATE_ID_EXPR for use. */
8660 finish_template_variable (tree var
, tsubst_flags_t complain
)
8662 tree templ
= TREE_OPERAND (var
, 0);
8663 tree arglist
= TREE_OPERAND (var
, 1);
8665 /* We never want to return a VAR_DECL for a variable concept, since they
8666 aren't instantiated. In a template, leave the TEMPLATE_ID_EXPR alone. */
8667 bool concept_p
= flag_concepts
&& variable_concept_p (templ
);
8668 if (concept_p
&& processing_template_decl
)
8671 tree tmpl_args
= DECL_TI_ARGS (DECL_TEMPLATE_RESULT (templ
));
8672 arglist
= add_outermost_template_args (tmpl_args
, arglist
);
8674 tree parms
= DECL_TEMPLATE_PARMS (templ
);
8675 arglist
= coerce_innermost_template_parms (parms
, arglist
, templ
, complain
,
8677 /*use_default*/true);
8679 if (flag_concepts
&& !constraints_satisfied_p (templ
, arglist
))
8681 if (complain
& tf_error
)
8683 error ("constraints for %qD not satisfied", templ
);
8684 diagnose_constraints (location_of (var
), templ
, arglist
);
8686 return error_mark_node
;
8689 /* If a template-id refers to a specialization of a variable
8690 concept, then the expression is true if and only if the
8691 concept's constraints are satisfied by the given template
8694 NOTE: This is an extension of Concepts Lite TS that
8695 allows constraints to be used in expressions. */
8698 tree decl
= DECL_TEMPLATE_RESULT (templ
);
8699 return evaluate_variable_concept (decl
, arglist
);
8702 return instantiate_template (templ
, arglist
, complain
);
8705 /* Construct a TEMPLATE_ID_EXPR for the given variable template TEMPL having
8706 TARGS template args, and instantiate it if it's not dependent. */
8709 lookup_and_finish_template_variable (tree templ
, tree targs
,
8710 tsubst_flags_t complain
)
8712 templ
= lookup_template_variable (templ
, targs
);
8713 if (!any_dependent_template_arguments_p (targs
))
8715 templ
= finish_template_variable (templ
, complain
);
8719 return convert_from_reference (templ
);
8727 /* True when we should also visit template parameters that occur in
8728 non-deduced contexts. */
8729 bool include_nondeduced_p
;
8730 hash_set
<tree
> *visited
;
8733 /* Called from for_each_template_parm via walk_tree. */
8736 for_each_template_parm_r (tree
*tp
, int *walk_subtrees
, void *d
)
8739 struct pair_fn_data
*pfd
= (struct pair_fn_data
*) d
;
8740 tree_fn_t fn
= pfd
->fn
;
8741 void *data
= pfd
->data
;
8742 tree result
= NULL_TREE
;
8744 #define WALK_SUBTREE(NODE) \
8747 result = for_each_template_parm (NODE, fn, data, pfd->visited, \
8748 pfd->include_nondeduced_p); \
8749 if (result) goto out; \
8754 && (pfd
->include_nondeduced_p
|| TREE_CODE (t
) != TYPENAME_TYPE
))
8755 WALK_SUBTREE (TYPE_CONTEXT (t
));
8757 switch (TREE_CODE (t
))
8760 if (TYPE_PTRMEMFUNC_P (t
))
8766 if (!TYPE_TEMPLATE_INFO (t
))
8769 WALK_SUBTREE (TYPE_TI_ARGS (t
));
8773 WALK_SUBTREE (TYPE_MIN_VALUE (t
));
8774 WALK_SUBTREE (TYPE_MAX_VALUE (t
));
8778 /* Since we're not going to walk subtrees, we have to do this
8780 WALK_SUBTREE (TYPE_METHOD_BASETYPE (t
));
8784 /* Check the return type. */
8785 WALK_SUBTREE (TREE_TYPE (t
));
8787 /* Check the parameter types. Since default arguments are not
8788 instantiated until they are needed, the TYPE_ARG_TYPES may
8789 contain expressions that involve template parameters. But,
8790 no-one should be looking at them yet. And, once they're
8791 instantiated, they don't contain template parameters, so
8792 there's no point in looking at them then, either. */
8796 for (parm
= TYPE_ARG_TYPES (t
); parm
; parm
= TREE_CHAIN (parm
))
8797 WALK_SUBTREE (TREE_VALUE (parm
));
8799 /* Since we've already handled the TYPE_ARG_TYPES, we don't
8800 want walk_tree walking into them itself. */
8806 case UNDERLYING_TYPE
:
8807 if (pfd
->include_nondeduced_p
8808 && for_each_template_parm (TYPE_VALUES_RAW (t
), fn
, data
,
8810 pfd
->include_nondeduced_p
))
8811 return error_mark_node
;
8816 if (DECL_LANG_SPECIFIC (t
) && DECL_TEMPLATE_INFO (t
))
8817 WALK_SUBTREE (DECL_TI_ARGS (t
));
8822 if (TREE_CODE (t
) == CONST_DECL
&& DECL_TEMPLATE_PARM_P (t
))
8823 WALK_SUBTREE (DECL_INITIAL (t
));
8824 if (DECL_CONTEXT (t
)
8825 && pfd
->include_nondeduced_p
)
8826 WALK_SUBTREE (DECL_CONTEXT (t
));
8829 case BOUND_TEMPLATE_TEMPLATE_PARM
:
8830 /* Record template parameters such as `T' inside `TT<T>'. */
8831 WALK_SUBTREE (TYPE_TI_ARGS (t
));
8834 case TEMPLATE_TEMPLATE_PARM
:
8835 case TEMPLATE_TYPE_PARM
:
8836 case TEMPLATE_PARM_INDEX
:
8837 if (fn
&& (*fn
)(t
, data
))
8844 /* A template template parameter is encountered. */
8845 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t
))
8846 WALK_SUBTREE (TREE_TYPE (t
));
8848 /* Already substituted template template parameter */
8853 /* A template-id in a TYPENAME_TYPE might be a deduced context after
8854 partial instantiation. */
8855 WALK_SUBTREE (TYPENAME_TYPE_FULLNAME (t
));
8859 if (TREE_TYPE (t
) && TYPE_PTRMEMFUNC_P (TREE_TYPE (t
))
8860 && pfd
->include_nondeduced_p
)
8861 WALK_SUBTREE (TYPE_PTRMEMFUNC_FN_TYPE (TREE_TYPE (t
)));
8866 /* If there's no type, then this thing must be some expression
8867 involving template parameters. */
8868 if (!fn
&& !TREE_TYPE (t
))
8869 return error_mark_node
;
8874 case IMPLICIT_CONV_EXPR
:
8875 case REINTERPRET_CAST_EXPR
:
8876 case CONST_CAST_EXPR
:
8877 case STATIC_CAST_EXPR
:
8878 case DYNAMIC_CAST_EXPR
:
8882 case PSEUDO_DTOR_EXPR
:
8884 return error_mark_node
;
8893 /* We didn't find any template parameters we liked. */
8898 /* For each TEMPLATE_TYPE_PARM, TEMPLATE_TEMPLATE_PARM,
8899 BOUND_TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX in T,
8900 call FN with the parameter and the DATA.
8901 If FN returns nonzero, the iteration is terminated, and
8902 for_each_template_parm returns 1. Otherwise, the iteration
8903 continues. If FN never returns a nonzero value, the value
8904 returned by for_each_template_parm is 0. If FN is NULL, it is
8905 considered to be the function which always returns 1.
8907 If INCLUDE_NONDEDUCED_P, then this routine will also visit template
8908 parameters that occur in non-deduced contexts. When false, only
8909 visits those template parameters that can be deduced. */
8912 for_each_template_parm (tree t
, tree_fn_t fn
, void* data
,
8913 hash_set
<tree
> *visited
,
8914 bool include_nondeduced_p
)
8916 struct pair_fn_data pfd
;
8922 pfd
.include_nondeduced_p
= include_nondeduced_p
;
8924 /* Walk the tree. (Conceptually, we would like to walk without
8925 duplicates, but for_each_template_parm_r recursively calls
8926 for_each_template_parm, so we would need to reorganize a fair
8927 bit to use walk_tree_without_duplicates, so we keep our own
8930 pfd
.visited
= visited
;
8932 pfd
.visited
= new hash_set
<tree
>;
8933 result
= cp_walk_tree (&t
,
8934 for_each_template_parm_r
,
8948 /* Returns true if T depends on any template parameter. */
8951 uses_template_parms (tree t
)
8957 int saved_processing_template_decl
;
8959 saved_processing_template_decl
= processing_template_decl
;
8960 if (!saved_processing_template_decl
)
8961 processing_template_decl
= 1;
8963 dependent_p
= dependent_type_p (t
);
8964 else if (TREE_CODE (t
) == TREE_VEC
)
8965 dependent_p
= any_dependent_template_arguments_p (t
);
8966 else if (TREE_CODE (t
) == TREE_LIST
)
8967 dependent_p
= (uses_template_parms (TREE_VALUE (t
))
8968 || uses_template_parms (TREE_CHAIN (t
)));
8969 else if (TREE_CODE (t
) == TYPE_DECL
)
8970 dependent_p
= dependent_type_p (TREE_TYPE (t
));
8973 || TREE_CODE (t
) == TEMPLATE_PARM_INDEX
8974 || TREE_CODE (t
) == OVERLOAD
8977 || TREE_CODE (t
) == TRAIT_EXPR
8978 || TREE_CODE (t
) == CONSTRUCTOR
8979 || CONSTANT_CLASS_P (t
))
8980 dependent_p
= (type_dependent_expression_p (t
)
8981 || value_dependent_expression_p (t
));
8984 gcc_assert (t
== error_mark_node
);
8985 dependent_p
= false;
8988 processing_template_decl
= saved_processing_template_decl
;
8993 /* Returns true iff current_function_decl is an incompletely instantiated
8994 template. Useful instead of processing_template_decl because the latter
8995 is set to 0 during instantiate_non_dependent_expr. */
8998 in_template_function (void)
9000 tree fn
= current_function_decl
;
9002 ++processing_template_decl
;
9003 ret
= (fn
&& DECL_LANG_SPECIFIC (fn
)
9004 && DECL_TEMPLATE_INFO (fn
)
9005 && any_dependent_template_arguments_p (DECL_TI_ARGS (fn
)));
9006 --processing_template_decl
;
9010 /* Returns true if T depends on any template parameter with level LEVEL. */
9013 uses_template_parms_level (tree t
, int level
)
9015 return for_each_template_parm (t
, template_parm_this_level_p
, &level
, NULL
,
9016 /*include_nondeduced_p=*/true);
9019 /* Returns TRUE iff INST is an instantiation we don't need to do in an
9020 ill-formed translation unit, i.e. a variable or function that isn't
9021 usable in a constant expression. */
9024 neglectable_inst_p (tree d
)
9027 && !(TREE_CODE (d
) == FUNCTION_DECL
? DECL_DECLARED_CONSTEXPR_P (d
)
9028 : decl_maybe_constant_var_p (d
)));
9031 /* Returns TRUE iff we should refuse to instantiate DECL because it's
9032 neglectable and instantiated from within an erroneous instantiation. */
9035 limit_bad_template_recursion (tree decl
)
9037 struct tinst_level
*lev
= current_tinst_level
;
9038 int errs
= errorcount
+ sorrycount
;
9039 if (lev
== NULL
|| errs
== 0 || !neglectable_inst_p (decl
))
9042 for (; lev
; lev
= lev
->next
)
9043 if (neglectable_inst_p (lev
->decl
))
9046 return (lev
&& errs
> lev
->errors
);
9049 static int tinst_depth
;
9050 extern int max_tinst_depth
;
9053 static GTY(()) struct tinst_level
*last_error_tinst_level
;
9055 /* We're starting to instantiate D; record the template instantiation context
9056 for diagnostics and to restore it later. */
9059 push_tinst_level (tree d
)
9061 return push_tinst_level_loc (d
, input_location
);
9064 /* We're starting to instantiate D; record the template instantiation context
9065 at LOC for diagnostics and to restore it later. */
9068 push_tinst_level_loc (tree d
, location_t loc
)
9070 struct tinst_level
*new_level
;
9072 if (tinst_depth
>= max_tinst_depth
)
9074 fatal_error (input_location
,
9075 "template instantiation depth exceeds maximum of %d"
9076 " (use -ftemplate-depth= to increase the maximum)",
9081 /* If the current instantiation caused problems, don't let it instantiate
9082 anything else. Do allow deduction substitution and decls usable in
9083 constant expressions. */
9084 if (limit_bad_template_recursion (d
))
9087 new_level
= ggc_alloc
<tinst_level
> ();
9088 new_level
->decl
= d
;
9089 new_level
->locus
= loc
;
9090 new_level
->errors
= errorcount
+sorrycount
;
9091 new_level
->in_system_header_p
= in_system_header_at (input_location
);
9092 new_level
->next
= current_tinst_level
;
9093 current_tinst_level
= new_level
;
9096 if (GATHER_STATISTICS
&& (tinst_depth
> depth_reached
))
9097 depth_reached
= tinst_depth
;
9102 /* We're done instantiating this template; return to the instantiation
9106 pop_tinst_level (void)
9108 /* Restore the filename and line number stashed away when we started
9109 this instantiation. */
9110 input_location
= current_tinst_level
->locus
;
9111 current_tinst_level
= current_tinst_level
->next
;
9115 /* We're instantiating a deferred template; restore the template
9116 instantiation context in which the instantiation was requested, which
9117 is one step out from LEVEL. Return the corresponding DECL or TYPE. */
9120 reopen_tinst_level (struct tinst_level
*level
)
9122 struct tinst_level
*t
;
9125 for (t
= level
; t
; t
= t
->next
)
9128 current_tinst_level
= level
;
9130 if (current_tinst_level
)
9131 current_tinst_level
->errors
= errorcount
+sorrycount
;
9135 /* Returns the TINST_LEVEL which gives the original instantiation
9138 struct tinst_level
*
9139 outermost_tinst_level (void)
9141 struct tinst_level
*level
= current_tinst_level
;
9144 level
= level
->next
;
9148 /* DECL is a friend FUNCTION_DECL or TEMPLATE_DECL. ARGS is the
9149 vector of template arguments, as for tsubst.
9151 Returns an appropriate tsubst'd friend declaration. */
9154 tsubst_friend_function (tree decl
, tree args
)
9158 if (TREE_CODE (decl
) == FUNCTION_DECL
9159 && DECL_TEMPLATE_INSTANTIATION (decl
)
9160 && TREE_CODE (DECL_TI_TEMPLATE (decl
)) != TEMPLATE_DECL
)
9161 /* This was a friend declared with an explicit template
9162 argument list, e.g.:
9166 to indicate that f was a template instantiation, not a new
9167 function declaration. Now, we have to figure out what
9168 instantiation of what template. */
9170 tree template_id
, arglist
, fns
;
9173 tree ns
= decl_namespace_context (TYPE_MAIN_DECL (current_class_type
));
9175 /* Friend functions are looked up in the containing namespace scope.
9176 We must enter that scope, to avoid finding member functions of the
9177 current class with same name. */
9178 push_nested_namespace (ns
);
9179 fns
= tsubst_expr (DECL_TI_TEMPLATE (decl
), args
,
9180 tf_warning_or_error
, NULL_TREE
,
9181 /*integral_constant_expression_p=*/false);
9182 pop_nested_namespace (ns
);
9183 arglist
= tsubst (DECL_TI_ARGS (decl
), args
,
9184 tf_warning_or_error
, NULL_TREE
);
9185 template_id
= lookup_template_function (fns
, arglist
);
9187 new_friend
= tsubst (decl
, args
, tf_warning_or_error
, NULL_TREE
);
9188 tmpl
= determine_specialization (template_id
, new_friend
,
9190 /*need_member_template=*/0,
9191 TREE_VEC_LENGTH (args
),
9193 return instantiate_template (tmpl
, new_args
, tf_error
);
9196 new_friend
= tsubst (decl
, args
, tf_warning_or_error
, NULL_TREE
);
9198 /* The NEW_FRIEND will look like an instantiation, to the
9199 compiler, but is not an instantiation from the point of view of
9200 the language. For example, we might have had:
9202 template <class T> struct S {
9203 template <class U> friend void f(T, U);
9206 Then, in S<int>, template <class U> void f(int, U) is not an
9207 instantiation of anything. */
9208 if (new_friend
== error_mark_node
)
9209 return error_mark_node
;
9211 DECL_USE_TEMPLATE (new_friend
) = 0;
9212 if (TREE_CODE (decl
) == TEMPLATE_DECL
)
9214 DECL_USE_TEMPLATE (DECL_TEMPLATE_RESULT (new_friend
)) = 0;
9215 DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (new_friend
))
9216 = DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (decl
));
9219 /* The mangled name for the NEW_FRIEND is incorrect. The function
9220 is not a template instantiation and should not be mangled like
9221 one. Therefore, we forget the mangling here; we'll recompute it
9222 later if we need it. */
9223 if (TREE_CODE (new_friend
) != TEMPLATE_DECL
)
9225 SET_DECL_RTL (new_friend
, NULL
);
9226 SET_DECL_ASSEMBLER_NAME (new_friend
, NULL_TREE
);
9229 if (DECL_NAMESPACE_SCOPE_P (new_friend
))
9232 tree new_friend_template_info
;
9233 tree new_friend_result_template_info
;
9235 int new_friend_is_defn
;
9237 /* We must save some information from NEW_FRIEND before calling
9238 duplicate decls since that function will free NEW_FRIEND if
9240 new_friend_template_info
= DECL_TEMPLATE_INFO (new_friend
);
9241 new_friend_is_defn
=
9242 (DECL_INITIAL (DECL_TEMPLATE_RESULT
9243 (template_for_substitution (new_friend
)))
9245 if (TREE_CODE (new_friend
) == TEMPLATE_DECL
)
9247 /* This declaration is a `primary' template. */
9248 DECL_PRIMARY_TEMPLATE (new_friend
) = new_friend
;
9250 new_friend_result_template_info
9251 = DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (new_friend
));
9254 new_friend_result_template_info
= NULL_TREE
;
9256 /* Make the init_value nonzero so pushdecl knows this is a defn. */
9257 if (new_friend_is_defn
)
9258 DECL_INITIAL (new_friend
) = error_mark_node
;
9260 /* Inside pushdecl_namespace_level, we will push into the
9261 current namespace. However, the friend function should go
9262 into the namespace of the template. */
9263 ns
= decl_namespace_context (new_friend
);
9264 push_nested_namespace (ns
);
9265 old_decl
= pushdecl_namespace_level (new_friend
, /*is_friend=*/true);
9266 pop_nested_namespace (ns
);
9268 if (old_decl
== error_mark_node
)
9269 return error_mark_node
;
9271 if (old_decl
!= new_friend
)
9273 /* This new friend declaration matched an existing
9274 declaration. For example, given:
9276 template <class T> void f(T);
9277 template <class U> class C {
9278 template <class T> friend void f(T) {}
9281 the friend declaration actually provides the definition
9282 of `f', once C has been instantiated for some type. So,
9283 old_decl will be the out-of-class template declaration,
9284 while new_friend is the in-class definition.
9286 But, if `f' was called before this point, the
9287 instantiation of `f' will have DECL_TI_ARGS corresponding
9288 to `T' but not to `U', references to which might appear
9289 in the definition of `f'. Previously, the most general
9290 template for an instantiation of `f' was the out-of-class
9291 version; now it is the in-class version. Therefore, we
9292 run through all specialization of `f', adding to their
9293 DECL_TI_ARGS appropriately. In particular, they need a
9294 new set of outer arguments, corresponding to the
9295 arguments for this class instantiation.
9297 The same situation can arise with something like this:
9300 template <class T> class C {
9304 when `C<int>' is instantiated. Now, `f(int)' is defined
9307 if (!new_friend_is_defn
)
9308 /* On the other hand, if the in-class declaration does
9309 *not* provide a definition, then we don't want to alter
9310 existing definitions. We can just leave everything
9315 tree new_template
= TI_TEMPLATE (new_friend_template_info
);
9316 tree new_args
= TI_ARGS (new_friend_template_info
);
9318 /* Overwrite whatever template info was there before, if
9319 any, with the new template information pertaining to
9321 DECL_TEMPLATE_INFO (old_decl
) = new_friend_template_info
;
9323 if (TREE_CODE (old_decl
) != TEMPLATE_DECL
)
9325 /* We should have called reregister_specialization in
9327 gcc_assert (retrieve_specialization (new_template
,
9331 /* Instantiate it if the global has already been used. */
9332 if (DECL_ODR_USED (old_decl
))
9333 instantiate_decl (old_decl
, /*defer_ok=*/true,
9334 /*expl_inst_class_mem_p=*/false);
9340 /* Indicate that the old function template is a partial
9342 DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (old_decl
))
9343 = new_friend_result_template_info
;
9345 gcc_assert (new_template
9346 == most_general_template (new_template
));
9347 gcc_assert (new_template
!= old_decl
);
9349 /* Reassign any specializations already in the hash table
9350 to the new more general template, and add the
9351 additional template args. */
9352 for (t
= DECL_TEMPLATE_INSTANTIATIONS (old_decl
);
9356 tree spec
= TREE_VALUE (t
);
9359 elt
.tmpl
= old_decl
;
9360 elt
.args
= DECL_TI_ARGS (spec
);
9361 elt
.spec
= NULL_TREE
;
9363 decl_specializations
->remove_elt (&elt
);
9366 = add_outermost_template_args (new_args
,
9367 DECL_TI_ARGS (spec
));
9369 register_specialization
9370 (spec
, new_template
, DECL_TI_ARGS (spec
), true, 0);
9373 DECL_TEMPLATE_INSTANTIATIONS (old_decl
) = NULL_TREE
;
9377 /* The information from NEW_FRIEND has been merged into OLD_DECL
9378 by duplicate_decls. */
9379 new_friend
= old_decl
;
9384 tree context
= DECL_CONTEXT (new_friend
);
9388 template <class T> class C {
9389 template <class U> friend void C1<U>::f (); // case 1
9390 friend void C2<T>::f (); // case 2
9392 we only need to make sure CONTEXT is a complete type for
9393 case 2. To distinguish between the two cases, we note that
9394 CONTEXT of case 1 remains dependent type after tsubst while
9395 this isn't true for case 2. */
9396 ++processing_template_decl
;
9397 dependent_p
= dependent_type_p (context
);
9398 --processing_template_decl
;
9401 && !complete_type_or_else (context
, NULL_TREE
))
9402 return error_mark_node
;
9404 if (COMPLETE_TYPE_P (context
))
9406 tree fn
= new_friend
;
9407 /* do_friend adds the TEMPLATE_DECL for any member friend
9408 template even if it isn't a member template, i.e.
9409 template <class T> friend A<T>::f();
9410 Look through it in that case. */
9411 if (TREE_CODE (fn
) == TEMPLATE_DECL
9412 && !PRIMARY_TEMPLATE_P (fn
))
9413 fn
= DECL_TEMPLATE_RESULT (fn
);
9414 /* Check to see that the declaration is really present, and,
9415 possibly obtain an improved declaration. */
9416 fn
= check_classfn (context
, fn
, NULL_TREE
);
9426 /* FRIEND_TMPL is a friend TEMPLATE_DECL. ARGS is the vector of
9427 template arguments, as for tsubst.
9429 Returns an appropriate tsubst'd friend type or error_mark_node on
9433 tsubst_friend_class (tree friend_tmpl
, tree args
)
9439 if (DECL_TEMPLATE_TEMPLATE_PARM_P (friend_tmpl
))
9441 tree t
= tsubst (TREE_TYPE (friend_tmpl
), args
, tf_none
, NULL_TREE
);
9442 return TREE_TYPE (t
);
9445 context
= CP_DECL_CONTEXT (friend_tmpl
);
9447 if (context
!= global_namespace
)
9449 if (TREE_CODE (context
) == NAMESPACE_DECL
)
9450 push_nested_namespace (context
);
9452 push_nested_class (tsubst (context
, args
, tf_none
, NULL_TREE
));
9455 /* Look for a class template declaration. We look for hidden names
9456 because two friend declarations of the same template are the
9457 same. For example, in:
9460 template <typename> friend class F;
9462 template <typename> struct B {
9463 template <typename> friend class F;
9466 both F templates are the same. */
9467 tmpl
= lookup_name_real (DECL_NAME (friend_tmpl
), 0, 0,
9468 /*block_p=*/true, 0, LOOKUP_HIDDEN
);
9470 /* But, if we don't find one, it might be because we're in a
9471 situation like this:
9479 Here, in the scope of (say) S<int>, `S' is bound to a TYPE_DECL
9480 for `S<int>', not the TEMPLATE_DECL. */
9481 if (!tmpl
|| !DECL_CLASS_TEMPLATE_P (tmpl
))
9483 tmpl
= lookup_name_prefer_type (DECL_NAME (friend_tmpl
), 1);
9484 tmpl
= maybe_get_template_decl_from_type_decl (tmpl
);
9487 if (tmpl
&& DECL_CLASS_TEMPLATE_P (tmpl
))
9489 /* The friend template has already been declared. Just
9490 check to see that the declarations match, and install any new
9491 default parameters. We must tsubst the default parameters,
9492 of course. We only need the innermost template parameters
9493 because that is all that redeclare_class_template will look
9495 if (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (friend_tmpl
))
9496 > TMPL_ARGS_DEPTH (args
))
9499 location_t saved_input_location
;
9500 parms
= tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_tmpl
),
9501 args
, tf_warning_or_error
);
9503 saved_input_location
= input_location
;
9504 input_location
= DECL_SOURCE_LOCATION (friend_tmpl
);
9505 tree cons
= get_constraints (tmpl
);
9506 redeclare_class_template (TREE_TYPE (tmpl
), parms
, cons
);
9507 input_location
= saved_input_location
;
9511 friend_type
= TREE_TYPE (tmpl
);
9515 /* The friend template has not already been declared. In this
9516 case, the instantiation of the template class will cause the
9517 injection of this template into the global scope. */
9518 tmpl
= tsubst (friend_tmpl
, args
, tf_warning_or_error
, NULL_TREE
);
9519 if (tmpl
== error_mark_node
)
9520 return error_mark_node
;
9522 /* The new TMPL is not an instantiation of anything, so we
9523 forget its origins. We don't reset CLASSTYPE_TI_TEMPLATE for
9524 the new type because that is supposed to be the corresponding
9525 template decl, i.e., TMPL. */
9526 DECL_USE_TEMPLATE (tmpl
) = 0;
9527 DECL_TEMPLATE_INFO (tmpl
) = NULL_TREE
;
9528 CLASSTYPE_USE_TEMPLATE (TREE_TYPE (tmpl
)) = 0;
9529 CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl
))
9530 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl
)));
9532 /* Inject this template into the global scope. */
9533 friend_type
= TREE_TYPE (pushdecl_top_level_maybe_friend (tmpl
, true));
9536 if (context
!= global_namespace
)
9538 if (TREE_CODE (context
) == NAMESPACE_DECL
)
9539 pop_nested_namespace (context
);
9541 pop_nested_class ();
9547 /* Returns zero if TYPE cannot be completed later due to circularity.
9548 Otherwise returns one. */
9551 can_complete_type_without_circularity (tree type
)
9553 if (type
== NULL_TREE
|| type
== error_mark_node
)
9555 else if (COMPLETE_TYPE_P (type
))
9557 else if (TREE_CODE (type
) == ARRAY_TYPE
&& TYPE_DOMAIN (type
))
9558 return can_complete_type_without_circularity (TREE_TYPE (type
));
9559 else if (CLASS_TYPE_P (type
)
9560 && TYPE_BEING_DEFINED (TYPE_MAIN_VARIANT (type
)))
9566 static tree
tsubst_omp_clauses (tree
, enum c_omp_region_type
, tree
,
9567 tsubst_flags_t
, tree
);
9569 /* Instantiate a single dependent attribute T (a TREE_LIST), and return either
9570 T or a new TREE_LIST, possibly a chain in the case of a pack expansion. */
9573 tsubst_attribute (tree t
, tree
*decl_p
, tree args
,
9574 tsubst_flags_t complain
, tree in_decl
)
9576 gcc_assert (ATTR_IS_DEPENDENT (t
));
9578 tree val
= TREE_VALUE (t
);
9579 if (val
== NULL_TREE
)
9580 /* Nothing to do. */;
9581 else if ((flag_openmp
|| flag_openmp_simd
|| flag_cilkplus
)
9582 && is_attribute_p ("omp declare simd",
9583 get_attribute_name (t
)))
9585 tree clauses
= TREE_VALUE (val
);
9586 clauses
= tsubst_omp_clauses (clauses
, C_ORT_OMP_DECLARE_SIMD
, args
,
9588 c_omp_declare_simd_clauses_to_decls (*decl_p
, clauses
);
9589 clauses
= finish_omp_clauses (clauses
, C_ORT_OMP_DECLARE_SIMD
);
9590 tree parms
= DECL_ARGUMENTS (*decl_p
);
9592 = c_omp_declare_simd_clauses_to_numbers (parms
, clauses
);
9594 val
= build_tree_list (NULL_TREE
, clauses
);
9598 /* If the first attribute argument is an identifier, don't
9599 pass it through tsubst. Attributes like mode, format,
9600 cleanup and several target specific attributes expect it
9602 else if (attribute_takes_identifier_p (get_attribute_name (t
)))
9605 = tsubst_expr (TREE_CHAIN (val
), args
, complain
, in_decl
,
9606 /*integral_constant_expression_p=*/false);
9607 if (chain
!= TREE_CHAIN (val
))
9608 val
= tree_cons (NULL_TREE
, TREE_VALUE (val
), chain
);
9610 else if (PACK_EXPANSION_P (val
))
9612 /* An attribute pack expansion. */
9613 tree purp
= TREE_PURPOSE (t
);
9614 tree pack
= tsubst_pack_expansion (val
, args
, complain
, in_decl
);
9615 int len
= TREE_VEC_LENGTH (pack
);
9616 tree list
= NULL_TREE
;
9618 for (int i
= 0; i
< len
; ++i
)
9620 tree elt
= TREE_VEC_ELT (pack
, i
);
9621 *q
= build_tree_list (purp
, elt
);
9622 q
= &TREE_CHAIN (*q
);
9627 val
= tsubst_expr (val
, args
, complain
, in_decl
,
9628 /*integral_constant_expression_p=*/false);
9630 if (val
!= TREE_VALUE (t
))
9631 return build_tree_list (TREE_PURPOSE (t
), val
);
9635 /* Instantiate any dependent attributes in ATTRIBUTES, returning either it
9636 unchanged or a new TREE_LIST chain. */
9639 tsubst_attributes (tree attributes
, tree args
,
9640 tsubst_flags_t complain
, tree in_decl
)
9642 tree last_dep
= NULL_TREE
;
9644 for (tree t
= attributes
; t
; t
= TREE_CHAIN (t
))
9645 if (ATTR_IS_DEPENDENT (t
))
9648 attributes
= copy_list (attributes
);
9653 for (tree
*p
= &attributes
; *p
; p
= &TREE_CHAIN (*p
))
9656 if (ATTR_IS_DEPENDENT (t
))
9658 tree subst
= tsubst_attribute (t
, NULL
, args
, complain
, in_decl
);
9663 p
= &TREE_CHAIN (*p
);
9665 *p
= TREE_CHAIN (t
);
9672 /* Apply any attributes which had to be deferred until instantiation
9673 time. DECL_P, ATTRIBUTES and ATTR_FLAGS are as cplus_decl_attributes;
9674 ARGS, COMPLAIN, IN_DECL are as tsubst. */
9677 apply_late_template_attributes (tree
*decl_p
, tree attributes
, int attr_flags
,
9678 tree args
, tsubst_flags_t complain
, tree in_decl
)
9680 tree last_dep
= NULL_TREE
;
9684 for (t
= attributes
; t
; t
= TREE_CHAIN (t
))
9685 if (ATTR_IS_DEPENDENT (t
))
9688 attributes
= copy_list (attributes
);
9692 if (DECL_P (*decl_p
))
9694 if (TREE_TYPE (*decl_p
) == error_mark_node
)
9696 p
= &DECL_ATTRIBUTES (*decl_p
);
9699 p
= &TYPE_ATTRIBUTES (*decl_p
);
9703 tree late_attrs
= NULL_TREE
;
9704 tree
*q
= &late_attrs
;
9706 for (*p
= attributes
; *p
; )
9709 if (ATTR_IS_DEPENDENT (t
))
9711 *p
= TREE_CHAIN (t
);
9712 TREE_CHAIN (t
) = NULL_TREE
;
9713 *q
= tsubst_attribute (t
, decl_p
, args
, complain
, in_decl
);
9715 q
= &TREE_CHAIN (*q
);
9719 p
= &TREE_CHAIN (t
);
9722 cplus_decl_attributes (decl_p
, late_attrs
, attr_flags
);
9726 /* Perform (or defer) access check for typedefs that were referenced
9727 from within the template TMPL code.
9728 This is a subroutine of instantiate_decl and instantiate_class_template.
9729 TMPL is the template to consider and TARGS is the list of arguments of
9733 perform_typedefs_access_check (tree tmpl
, tree targs
)
9735 location_t saved_location
;
9737 qualified_typedef_usage_t
*iter
;
9740 || (!CLASS_TYPE_P (tmpl
)
9741 && TREE_CODE (tmpl
) != FUNCTION_DECL
))
9744 saved_location
= input_location
;
9745 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (tmpl
), i
, iter
)
9747 tree type_decl
= iter
->typedef_decl
;
9748 tree type_scope
= iter
->context
;
9750 if (!type_decl
|| !type_scope
|| !CLASS_TYPE_P (type_scope
))
9753 if (uses_template_parms (type_decl
))
9754 type_decl
= tsubst (type_decl
, targs
, tf_error
, NULL_TREE
);
9755 if (uses_template_parms (type_scope
))
9756 type_scope
= tsubst (type_scope
, targs
, tf_error
, NULL_TREE
);
9758 /* Make access check error messages point to the location
9759 of the use of the typedef. */
9760 input_location
= iter
->locus
;
9761 perform_or_defer_access_check (TYPE_BINFO (type_scope
),
9762 type_decl
, type_decl
,
9763 tf_warning_or_error
);
9765 input_location
= saved_location
;
9769 instantiate_class_template_1 (tree type
)
9771 tree templ
, args
, pattern
, t
, member
;
9775 unsigned int saved_maximum_field_alignment
;
9778 if (type
== error_mark_node
)
9779 return error_mark_node
;
9781 if (COMPLETE_OR_OPEN_TYPE_P (type
)
9782 || uses_template_parms (type
))
9785 /* Figure out which template is being instantiated. */
9786 templ
= most_general_template (CLASSTYPE_TI_TEMPLATE (type
));
9787 gcc_assert (TREE_CODE (templ
) == TEMPLATE_DECL
);
9789 /* Determine what specialization of the original template to
9791 t
= most_specialized_partial_spec (type
, tf_warning_or_error
);
9792 if (t
== error_mark_node
)
9794 TYPE_BEING_DEFINED (type
) = 1;
9795 return error_mark_node
;
9799 /* This TYPE is actually an instantiation of a partial
9800 specialization. We replace the innermost set of ARGS with
9801 the arguments appropriate for substitution. For example,
9804 template <class T> struct S {};
9805 template <class T> struct S<T*> {};
9807 and supposing that we are instantiating S<int*>, ARGS will
9808 presently be {int*} -- but we need {int}. */
9809 pattern
= TREE_TYPE (t
);
9810 args
= TREE_PURPOSE (t
);
9814 pattern
= TREE_TYPE (templ
);
9815 args
= CLASSTYPE_TI_ARGS (type
);
9818 /* If the template we're instantiating is incomplete, then clearly
9819 there's nothing we can do. */
9820 if (!COMPLETE_TYPE_P (pattern
))
9823 /* If we've recursively instantiated too many templates, stop. */
9824 if (! push_tinst_level (type
))
9827 /* Now we're really doing the instantiation. Mark the type as in
9828 the process of being defined. */
9829 TYPE_BEING_DEFINED (type
) = 1;
9831 /* We may be in the middle of deferred access check. Disable
9833 push_deferring_access_checks (dk_no_deferred
);
9835 int saved_unevaluated_operand
= cp_unevaluated_operand
;
9836 int saved_inhibit_evaluation_warnings
= c_inhibit_evaluation_warnings
;
9838 fn_context
= decl_function_context (TYPE_MAIN_DECL (type
));
9839 /* Also avoid push_to_top_level for a lambda in an NSDMI. */
9840 if (!fn_context
&& LAMBDA_TYPE_P (type
) && TYPE_CLASS_SCOPE_P (type
))
9841 fn_context
= error_mark_node
;
9843 push_to_top_level ();
9846 cp_unevaluated_operand
= 0;
9847 c_inhibit_evaluation_warnings
= 0;
9849 /* Use #pragma pack from the template context. */
9850 saved_maximum_field_alignment
= maximum_field_alignment
;
9851 maximum_field_alignment
= TYPE_PRECISION (pattern
);
9853 SET_CLASSTYPE_INTERFACE_UNKNOWN (type
);
9855 /* Set the input location to the most specialized template definition.
9856 This is needed if tsubsting causes an error. */
9857 typedecl
= TYPE_MAIN_DECL (pattern
);
9858 input_location
= DECL_SOURCE_LOCATION (TYPE_NAME (type
)) =
9859 DECL_SOURCE_LOCATION (typedecl
);
9861 TYPE_PACKED (type
) = TYPE_PACKED (pattern
);
9862 SET_TYPE_ALIGN (type
, TYPE_ALIGN (pattern
));
9863 TYPE_USER_ALIGN (type
) = TYPE_USER_ALIGN (pattern
);
9864 TYPE_FOR_JAVA (type
) = TYPE_FOR_JAVA (pattern
); /* For libjava's JArray<T> */
9865 if (ANON_AGGR_TYPE_P (pattern
))
9866 SET_ANON_AGGR_TYPE_P (type
);
9867 if (CLASSTYPE_VISIBILITY_SPECIFIED (pattern
))
9869 CLASSTYPE_VISIBILITY_SPECIFIED (type
) = 1;
9870 CLASSTYPE_VISIBILITY (type
) = CLASSTYPE_VISIBILITY (pattern
);
9871 /* Adjust visibility for template arguments. */
9872 determine_visibility (TYPE_MAIN_DECL (type
));
9874 if (CLASS_TYPE_P (type
))
9875 CLASSTYPE_FINAL (type
) = CLASSTYPE_FINAL (pattern
);
9877 pbinfo
= TYPE_BINFO (pattern
);
9879 /* We should never instantiate a nested class before its enclosing
9880 class; we need to look up the nested class by name before we can
9881 instantiate it, and that lookup should instantiate the enclosing
9883 gcc_assert (!DECL_CLASS_SCOPE_P (TYPE_MAIN_DECL (pattern
))
9884 || COMPLETE_OR_OPEN_TYPE_P (TYPE_CONTEXT (type
)));
9886 base_list
= NULL_TREE
;
9887 if (BINFO_N_BASE_BINFOS (pbinfo
))
9893 /* We must enter the scope containing the type, as that is where
9894 the accessibility of types named in dependent bases are
9896 pushed_scope
= push_scope (CP_TYPE_CONTEXT (type
));
9898 /* Substitute into each of the bases to determine the actual
9900 for (i
= 0; BINFO_BASE_ITERATE (pbinfo
, i
, pbase_binfo
); i
++)
9903 tree access
= BINFO_BASE_ACCESS (pbinfo
, i
);
9904 tree expanded_bases
= NULL_TREE
;
9907 if (PACK_EXPANSION_P (BINFO_TYPE (pbase_binfo
)))
9910 tsubst_pack_expansion (BINFO_TYPE (pbase_binfo
),
9911 args
, tf_error
, NULL_TREE
);
9912 if (expanded_bases
== error_mark_node
)
9915 len
= TREE_VEC_LENGTH (expanded_bases
);
9918 for (idx
= 0; idx
< len
; idx
++)
9921 /* Extract the already-expanded base class. */
9922 base
= TREE_VEC_ELT (expanded_bases
, idx
);
9924 /* Substitute to figure out the base class. */
9925 base
= tsubst (BINFO_TYPE (pbase_binfo
), args
, tf_error
,
9928 if (base
== error_mark_node
)
9931 base_list
= tree_cons (access
, base
, base_list
);
9932 if (BINFO_VIRTUAL_P (pbase_binfo
))
9933 TREE_TYPE (base_list
) = integer_type_node
;
9937 /* The list is now in reverse order; correct that. */
9938 base_list
= nreverse (base_list
);
9941 pop_scope (pushed_scope
);
9943 /* Now call xref_basetypes to set up all the base-class
9945 xref_basetypes (type
, base_list
);
9947 apply_late_template_attributes (&type
, TYPE_ATTRIBUTES (pattern
),
9948 (int) ATTR_FLAG_TYPE_IN_PLACE
,
9949 args
, tf_error
, NULL_TREE
);
9950 fixup_attribute_variants (type
);
9952 /* Now that our base classes are set up, enter the scope of the
9953 class, so that name lookups into base classes, etc. will work
9954 correctly. This is precisely analogous to what we do in
9955 begin_class_definition when defining an ordinary non-template
9956 class, except we also need to push the enclosing classes. */
9957 push_nested_class (type
);
9959 /* Now members are processed in the order of declaration. */
9960 for (member
= CLASSTYPE_DECL_LIST (pattern
);
9961 member
; member
= TREE_CHAIN (member
))
9963 tree t
= TREE_VALUE (member
);
9965 if (TREE_PURPOSE (member
))
9969 /* Build new CLASSTYPE_NESTED_UTDS. */
9972 bool class_template_p
;
9974 class_template_p
= (TREE_CODE (t
) != ENUMERAL_TYPE
9975 && TYPE_LANG_SPECIFIC (t
)
9976 && CLASSTYPE_IS_TEMPLATE (t
));
9977 /* If the member is a class template, then -- even after
9978 substitution -- there may be dependent types in the
9979 template argument list for the class. We increment
9980 PROCESSING_TEMPLATE_DECL so that dependent_type_p, as
9981 that function will assume that no types are dependent
9982 when outside of a template. */
9983 if (class_template_p
)
9984 ++processing_template_decl
;
9985 newtag
= tsubst (t
, args
, tf_error
, NULL_TREE
);
9986 if (class_template_p
)
9987 --processing_template_decl
;
9988 if (newtag
== error_mark_node
)
9991 if (TREE_CODE (newtag
) != ENUMERAL_TYPE
)
9993 tree name
= TYPE_IDENTIFIER (t
);
9995 if (class_template_p
)
9996 /* Unfortunately, lookup_template_class sets
9997 CLASSTYPE_IMPLICIT_INSTANTIATION for a partial
9998 instantiation (i.e., for the type of a member
9999 template class nested within a template class.)
10000 This behavior is required for
10001 maybe_process_partial_specialization to work
10002 correctly, but is not accurate in this case;
10003 the TAG is not an instantiation of anything.
10004 (The corresponding TEMPLATE_DECL is an
10005 instantiation, but the TYPE is not.) */
10006 CLASSTYPE_USE_TEMPLATE (newtag
) = 0;
10008 /* Now, we call pushtag to put this NEWTAG into the scope of
10009 TYPE. We first set up the IDENTIFIER_TYPE_VALUE to avoid
10010 pushtag calling push_template_decl. We don't have to do
10011 this for enums because it will already have been done in
10014 SET_IDENTIFIER_TYPE_VALUE (name
, newtag
);
10015 pushtag (name
, newtag
, /*tag_scope=*/ts_current
);
10018 else if (DECL_DECLARES_FUNCTION_P (t
))
10020 /* Build new TYPE_METHODS. */
10023 if (TREE_CODE (t
) == TEMPLATE_DECL
)
10024 ++processing_template_decl
;
10025 r
= tsubst (t
, args
, tf_error
, NULL_TREE
);
10026 if (TREE_CODE (t
) == TEMPLATE_DECL
)
10027 --processing_template_decl
;
10028 set_current_access_from_decl (r
);
10029 finish_member_declaration (r
);
10030 /* Instantiate members marked with attribute used. */
10031 if (r
!= error_mark_node
&& DECL_PRESERVE_P (r
))
10033 if (TREE_CODE (r
) == FUNCTION_DECL
10034 && DECL_OMP_DECLARE_REDUCTION_P (r
))
10035 cp_check_omp_declare_reduction (r
);
10037 else if (DECL_CLASS_TEMPLATE_P (t
)
10038 && LAMBDA_TYPE_P (TREE_TYPE (t
)))
10039 /* A closure type for a lambda in a default argument for a
10040 member template. Ignore it; it will be instantiated with
10041 the default argument. */;
10044 /* Build new TYPE_FIELDS. */
10045 if (TREE_CODE (t
) == STATIC_ASSERT
)
10049 ++c_inhibit_evaluation_warnings
;
10051 tsubst_expr (STATIC_ASSERT_CONDITION (t
), args
,
10052 tf_warning_or_error
, NULL_TREE
,
10053 /*integral_constant_expression_p=*/true);
10054 --c_inhibit_evaluation_warnings
;
10056 finish_static_assert (condition
,
10057 STATIC_ASSERT_MESSAGE (t
),
10058 STATIC_ASSERT_SOURCE_LOCATION (t
),
10059 /*member_p=*/true);
10061 else if (TREE_CODE (t
) != CONST_DECL
)
10064 tree vec
= NULL_TREE
;
10067 /* The file and line for this declaration, to
10068 assist in error message reporting. Since we
10069 called push_tinst_level above, we don't need to
10071 input_location
= DECL_SOURCE_LOCATION (t
);
10073 if (TREE_CODE (t
) == TEMPLATE_DECL
)
10074 ++processing_template_decl
;
10075 r
= tsubst (t
, args
, tf_warning_or_error
, NULL_TREE
);
10076 if (TREE_CODE (t
) == TEMPLATE_DECL
)
10077 --processing_template_decl
;
10079 if (TREE_CODE (r
) == TREE_VEC
)
10081 /* A capture pack became multiple fields. */
10083 len
= TREE_VEC_LENGTH (vec
);
10086 for (int i
= 0; i
< len
; ++i
)
10089 r
= TREE_VEC_ELT (vec
, i
);
10094 [t]he initialization (and any associated
10095 side-effects) of a static data member does
10096 not occur unless the static data member is
10097 itself used in a way that requires the
10098 definition of the static data member to
10101 Therefore, we do not substitute into the
10102 initialized for the static data member here. */
10103 finish_static_data_member_decl
10105 /*init=*/NULL_TREE
,
10106 /*init_const_expr_p=*/false,
10107 /*asmspec_tree=*/NULL_TREE
,
10109 /* Instantiate members marked with attribute used. */
10110 if (r
!= error_mark_node
&& DECL_PRESERVE_P (r
))
10113 else if (TREE_CODE (r
) == FIELD_DECL
)
10115 /* Determine whether R has a valid type and can be
10116 completed later. If R is invalid, then its type
10117 is replaced by error_mark_node. */
10118 tree rtype
= TREE_TYPE (r
);
10119 if (can_complete_type_without_circularity (rtype
))
10120 complete_type (rtype
);
10122 if (TREE_CODE (r
) == FIELD_DECL
10123 && TREE_CODE (rtype
) == ARRAY_TYPE
10124 && COMPLETE_TYPE_P (TREE_TYPE (rtype
))
10125 && !COMPLETE_TYPE_P (rtype
))
10127 /* Flexible array mmembers of elements
10128 of complete type have an incomplete type
10129 and that's okay. */
10131 else if (!COMPLETE_TYPE_P (rtype
))
10133 cxx_incomplete_type_error (r
, rtype
);
10134 TREE_TYPE (r
) = error_mark_node
;
10138 /* If it is a TYPE_DECL for a class-scoped ENUMERAL_TYPE,
10139 such a thing will already have been added to the field
10140 list by tsubst_enum in finish_member_declaration in the
10141 CLASSTYPE_NESTED_UTDS case above. */
10142 if (!(TREE_CODE (r
) == TYPE_DECL
10143 && TREE_CODE (TREE_TYPE (r
)) == ENUMERAL_TYPE
10144 && DECL_ARTIFICIAL (r
)))
10146 set_current_access_from_decl (r
);
10147 finish_member_declaration (r
);
10155 if (TYPE_P (t
) || DECL_CLASS_TEMPLATE_P (t
)
10156 || DECL_TEMPLATE_TEMPLATE_PARM_P (t
))
10158 /* Build new CLASSTYPE_FRIEND_CLASSES. */
10160 tree friend_type
= t
;
10161 bool adjust_processing_template_decl
= false;
10163 if (TREE_CODE (friend_type
) == TEMPLATE_DECL
)
10165 /* template <class T> friend class C; */
10166 friend_type
= tsubst_friend_class (friend_type
, args
);
10167 adjust_processing_template_decl
= true;
10169 else if (TREE_CODE (friend_type
) == UNBOUND_CLASS_TEMPLATE
)
10171 /* template <class T> friend class C::D; */
10172 friend_type
= tsubst (friend_type
, args
,
10173 tf_warning_or_error
, NULL_TREE
);
10174 if (TREE_CODE (friend_type
) == TEMPLATE_DECL
)
10175 friend_type
= TREE_TYPE (friend_type
);
10176 adjust_processing_template_decl
= true;
10178 else if (TREE_CODE (friend_type
) == TYPENAME_TYPE
10179 || TREE_CODE (friend_type
) == TEMPLATE_TYPE_PARM
)
10181 /* This could be either
10185 when dependent_type_p is false or
10187 template <class U> friend class T::C;
10190 /* Bump processing_template_decl in case this is something like
10191 template <class T> friend struct A<T>::B. */
10192 ++processing_template_decl
;
10193 friend_type
= tsubst (friend_type
, args
,
10194 tf_warning_or_error
, NULL_TREE
);
10195 if (dependent_type_p (friend_type
))
10196 adjust_processing_template_decl
= true;
10197 --processing_template_decl
;
10199 else if (!CLASSTYPE_USE_TEMPLATE (friend_type
)
10200 && hidden_name_p (TYPE_NAME (friend_type
)))
10204 where C hasn't been declared yet. Let's lookup name
10205 from namespace scope directly, bypassing any name that
10206 come from dependent base class. */
10207 tree ns
= decl_namespace_context (TYPE_MAIN_DECL (friend_type
));
10209 /* The call to xref_tag_from_type does injection for friend
10211 push_nested_namespace (ns
);
10213 xref_tag_from_type (friend_type
, NULL_TREE
,
10214 /*tag_scope=*/ts_current
);
10215 pop_nested_namespace (ns
);
10217 else if (uses_template_parms (friend_type
))
10218 /* friend class C<T>; */
10219 friend_type
= tsubst (friend_type
, args
,
10220 tf_warning_or_error
, NULL_TREE
);
10225 where C is already declared or
10227 friend class C<int>;
10229 We don't have to do anything in these cases. */
10231 if (adjust_processing_template_decl
)
10232 /* Trick make_friend_class into realizing that the friend
10233 we're adding is a template, not an ordinary class. It's
10234 important that we use make_friend_class since it will
10235 perform some error-checking and output cross-reference
10237 ++processing_template_decl
;
10239 if (friend_type
!= error_mark_node
)
10240 make_friend_class (type
, friend_type
, /*complain=*/false);
10242 if (adjust_processing_template_decl
)
10243 --processing_template_decl
;
10247 /* Build new DECL_FRIENDLIST. */
10250 /* The file and line for this declaration, to
10251 assist in error message reporting. Since we
10252 called push_tinst_level above, we don't need to
10254 input_location
= DECL_SOURCE_LOCATION (t
);
10256 if (TREE_CODE (t
) == TEMPLATE_DECL
)
10258 ++processing_template_decl
;
10259 push_deferring_access_checks (dk_no_check
);
10262 r
= tsubst_friend_function (t
, args
);
10263 add_friend (type
, r
, /*complain=*/false);
10264 if (TREE_CODE (t
) == TEMPLATE_DECL
)
10266 pop_deferring_access_checks ();
10267 --processing_template_decl
;
10275 /* Restore these before substituting into the lambda capture
10277 cp_unevaluated_operand
= saved_unevaluated_operand
;
10278 c_inhibit_evaluation_warnings
= saved_inhibit_evaluation_warnings
;
10281 if (tree expr
= CLASSTYPE_LAMBDA_EXPR (type
))
10283 tree decl
= lambda_function (type
);
10286 if (!DECL_TEMPLATE_INFO (decl
)
10287 || DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (decl
)) != decl
)
10289 /* Set function_depth to avoid garbage collection. */
10291 instantiate_decl (decl
, false, false);
10295 /* We need to instantiate the capture list from the template
10296 after we've instantiated the closure members, but before we
10297 consider adding the conversion op. Also keep any captures
10298 that may have been added during instantiation of the op(). */
10299 tree tmpl_expr
= CLASSTYPE_LAMBDA_EXPR (pattern
);
10301 = tsubst_copy_and_build (LAMBDA_EXPR_CAPTURE_LIST (tmpl_expr
),
10302 args
, tf_warning_or_error
, NULL_TREE
,
10305 LAMBDA_EXPR_CAPTURE_LIST (expr
)
10306 = chainon (tmpl_cap
, nreverse (LAMBDA_EXPR_CAPTURE_LIST (expr
)));
10308 maybe_add_lambda_conv_op (type
);
10311 gcc_assert (errorcount
);
10314 /* Set the file and line number information to whatever is given for
10315 the class itself. This puts error messages involving generated
10316 implicit functions at a predictable point, and the same point
10317 that would be used for non-template classes. */
10318 input_location
= DECL_SOURCE_LOCATION (typedecl
);
10320 unreverse_member_declarations (type
);
10321 finish_struct_1 (type
);
10322 TYPE_BEING_DEFINED (type
) = 0;
10324 /* We don't instantiate default arguments for member functions. 14.7.1:
10326 The implicit instantiation of a class template specialization causes
10327 the implicit instantiation of the declarations, but not of the
10328 definitions or default arguments, of the class member functions,
10329 member classes, static data members and member templates.... */
10331 /* Some typedefs referenced from within the template code need to be access
10332 checked at template instantiation time, i.e now. These types were
10333 added to the template at parsing time. Let's get those and perform
10334 the access checks then. */
10335 perform_typedefs_access_check (pattern
, args
);
10336 perform_deferred_access_checks (tf_warning_or_error
);
10337 pop_nested_class ();
10338 maximum_field_alignment
= saved_maximum_field_alignment
;
10340 pop_from_top_level ();
10341 pop_deferring_access_checks ();
10342 pop_tinst_level ();
10344 /* The vtable for a template class can be emitted in any translation
10345 unit in which the class is instantiated. When there is no key
10346 method, however, finish_struct_1 will already have added TYPE to
10347 the keyed_classes list. */
10348 if (TYPE_CONTAINS_VPTR_P (type
) && CLASSTYPE_KEY_METHOD (type
))
10349 keyed_classes
= tree_cons (NULL_TREE
, type
, keyed_classes
);
10354 /* Wrapper for instantiate_class_template_1. */
10357 instantiate_class_template (tree type
)
10360 timevar_push (TV_TEMPLATE_INST
);
10361 ret
= instantiate_class_template_1 (type
);
10362 timevar_pop (TV_TEMPLATE_INST
);
10367 tsubst_template_arg (tree t
, tree args
, tsubst_flags_t complain
, tree in_decl
)
10373 else if (TYPE_P (t
))
10374 r
= tsubst (t
, args
, complain
, in_decl
);
10377 if (!(complain
& tf_warning
))
10378 ++c_inhibit_evaluation_warnings
;
10379 r
= tsubst_expr (t
, args
, complain
, in_decl
,
10380 /*integral_constant_expression_p=*/true);
10381 if (!(complain
& tf_warning
))
10382 --c_inhibit_evaluation_warnings
;
10387 /* Given a function parameter pack TMPL_PARM and some function parameters
10388 instantiated from it at *SPEC_P, return a NONTYPE_ARGUMENT_PACK of them
10389 and set *SPEC_P to point at the next point in the list. */
10392 extract_fnparm_pack (tree tmpl_parm
, tree
*spec_p
)
10394 /* Collect all of the extra "packed" parameters into an
10398 tree argpack
= make_node (NONTYPE_ARGUMENT_PACK
);
10399 tree argtypepack
= cxx_make_type (TYPE_ARGUMENT_PACK
);
10400 tree spec_parm
= *spec_p
;
10403 for (len
= 0; spec_parm
; ++len
, spec_parm
= TREE_CHAIN (spec_parm
))
10405 && !function_parameter_expanded_from_pack_p (spec_parm
, tmpl_parm
))
10408 /* Fill in PARMVEC and PARMTYPEVEC with all of the parameters. */
10409 parmvec
= make_tree_vec (len
);
10410 parmtypevec
= make_tree_vec (len
);
10411 spec_parm
= *spec_p
;
10412 for (i
= 0; i
< len
; i
++, spec_parm
= DECL_CHAIN (spec_parm
))
10414 TREE_VEC_ELT (parmvec
, i
) = spec_parm
;
10415 TREE_VEC_ELT (parmtypevec
, i
) = TREE_TYPE (spec_parm
);
10418 /* Build the argument packs. */
10419 SET_ARGUMENT_PACK_ARGS (argpack
, parmvec
);
10420 SET_ARGUMENT_PACK_ARGS (argtypepack
, parmtypevec
);
10421 TREE_TYPE (argpack
) = argtypepack
;
10422 *spec_p
= spec_parm
;
10427 /* Give a chain SPEC_PARM of PARM_DECLs, pack them into a
10428 NONTYPE_ARGUMENT_PACK. */
10431 make_fnparm_pack (tree spec_parm
)
10433 return extract_fnparm_pack (NULL_TREE
, &spec_parm
);
10436 /* Return 1 if the Ith element of the argument pack ARG_PACK is a
10437 pack expansion with no extra args, 2 if it has extra args, or 0
10438 if it is not a pack expansion. */
10441 argument_pack_element_is_expansion_p (tree arg_pack
, int i
)
10443 tree vec
= ARGUMENT_PACK_ARGS (arg_pack
);
10444 if (i
>= TREE_VEC_LENGTH (vec
))
10446 tree elt
= TREE_VEC_ELT (vec
, i
);
10448 /* A decl pack is itself an expansion. */
10449 elt
= TREE_TYPE (elt
);
10450 if (!PACK_EXPANSION_P (elt
))
10452 if (PACK_EXPANSION_EXTRA_ARGS (elt
))
10458 /* Creates and return an ARGUMENT_PACK_SELECT tree node. */
10461 make_argument_pack_select (tree arg_pack
, unsigned index
)
10463 tree aps
= make_node (ARGUMENT_PACK_SELECT
);
10465 ARGUMENT_PACK_SELECT_FROM_PACK (aps
) = arg_pack
;
10466 ARGUMENT_PACK_SELECT_INDEX (aps
) = index
;
10471 /* This is a subroutine of tsubst_pack_expansion.
10473 It returns TRUE if we need to use the PACK_EXPANSION_EXTRA_ARGS
10474 mechanism to store the (non complete list of) arguments of the
10475 substitution and return a non substituted pack expansion, in order
10476 to wait for when we have enough arguments to really perform the
10480 use_pack_expansion_extra_args_p (tree parm_packs
,
10482 bool has_empty_arg
)
10484 /* If one pack has an expansion and another pack has a normal
10485 argument or if one pack has an empty argument and an another
10486 one hasn't then tsubst_pack_expansion cannot perform the
10487 substitution and need to fall back on the
10488 PACK_EXPANSION_EXTRA mechanism. */
10489 if (parm_packs
== NULL_TREE
)
10491 else if (has_empty_arg
)
10494 bool has_expansion_arg
= false;
10495 for (int i
= 0 ; i
< arg_pack_len
; ++i
)
10497 bool has_non_expansion_arg
= false;
10498 for (tree parm_pack
= parm_packs
;
10500 parm_pack
= TREE_CHAIN (parm_pack
))
10502 tree arg
= TREE_VALUE (parm_pack
);
10504 int exp
= argument_pack_element_is_expansion_p (arg
, i
);
10506 /* We can't substitute a pack expansion with extra args into
10510 has_expansion_arg
= true;
10512 has_non_expansion_arg
= true;
10515 if (has_expansion_arg
&& has_non_expansion_arg
)
10521 /* [temp.variadic]/6 says that:
10523 The instantiation of a pack expansion [...]
10524 produces a list E1,E2, ..., En, where N is the number of elements
10525 in the pack expansion parameters.
10527 This subroutine of tsubst_pack_expansion produces one of these Ei.
10529 PATTERN is the pattern of the pack expansion. PARM_PACKS is a
10530 TREE_LIST in which each TREE_PURPOSE is a parameter pack of
10531 PATTERN, and each TREE_VALUE is its corresponding argument pack.
10532 INDEX is the index 'i' of the element Ei to produce. ARGS,
10533 COMPLAIN, and IN_DECL are the same parameters as for the
10534 tsubst_pack_expansion function.
10536 The function returns the resulting Ei upon successful completion,
10537 or error_mark_node.
10539 Note that this function possibly modifies the ARGS parameter, so
10540 it's the responsibility of the caller to restore it. */
10543 gen_elem_of_pack_expansion_instantiation (tree pattern
,
10546 tree args
/* This parm gets
10548 tsubst_flags_t complain
,
10552 bool ith_elem_is_expansion
= false;
10554 /* For each parameter pack, change the substitution of the parameter
10555 pack to the ith argument in its argument pack, then expand the
10557 for (tree pack
= parm_packs
; pack
; pack
= TREE_CHAIN (pack
))
10559 tree parm
= TREE_PURPOSE (pack
);
10560 tree arg_pack
= TREE_VALUE (pack
);
10561 tree aps
; /* instance of ARGUMENT_PACK_SELECT. */
10563 ith_elem_is_expansion
|=
10564 argument_pack_element_is_expansion_p (arg_pack
, index
);
10566 /* Select the Ith argument from the pack. */
10567 if (TREE_CODE (parm
) == PARM_DECL
10568 || TREE_CODE (parm
) == FIELD_DECL
)
10572 aps
= make_argument_pack_select (arg_pack
, index
);
10573 if (!mark_used (parm
, complain
) && !(complain
& tf_error
))
10574 return error_mark_node
;
10575 register_local_specialization (aps
, parm
);
10578 aps
= retrieve_local_specialization (parm
);
10583 template_parm_level_and_index (parm
, &level
, &idx
);
10587 aps
= make_argument_pack_select (arg_pack
, index
);
10588 /* Update the corresponding argument. */
10589 TMPL_ARG (args
, level
, idx
) = aps
;
10592 /* Re-use the ARGUMENT_PACK_SELECT. */
10593 aps
= TMPL_ARG (args
, level
, idx
);
10595 ARGUMENT_PACK_SELECT_INDEX (aps
) = index
;
10598 /* Substitute into the PATTERN with the (possibly altered)
10600 if (pattern
== in_decl
)
10601 /* Expanding a fixed parameter pack from
10602 coerce_template_parameter_pack. */
10603 t
= tsubst_decl (pattern
, args
, complain
);
10604 else if (pattern
== error_mark_node
)
10605 t
= error_mark_node
;
10606 else if (constraint_p (pattern
))
10608 if (processing_template_decl
)
10609 t
= tsubst_constraint (pattern
, args
, complain
, in_decl
);
10611 t
= (constraints_satisfied_p (pattern
, args
)
10612 ? boolean_true_node
: boolean_false_node
);
10614 else if (!TYPE_P (pattern
))
10615 t
= tsubst_expr (pattern
, args
, complain
, in_decl
,
10616 /*integral_constant_expression_p=*/false);
10618 t
= tsubst (pattern
, args
, complain
, in_decl
);
10620 /* If the Ith argument pack element is a pack expansion, then
10621 the Ith element resulting from the substituting is going to
10622 be a pack expansion as well. */
10623 if (ith_elem_is_expansion
)
10624 t
= make_pack_expansion (t
);
10629 /* When the unexpanded parameter pack in a fold expression expands to an empty
10630 sequence, the value of the expression is as follows; the program is
10631 ill-formed if the operator is not listed in this table.
10638 expand_empty_fold (tree t
, tsubst_flags_t complain
)
10640 tree_code code
= (tree_code
)TREE_INT_CST_LOW (TREE_OPERAND (t
, 0));
10641 if (!FOLD_EXPR_MODIFY_P (t
))
10644 case TRUTH_ANDIF_EXPR
:
10645 return boolean_true_node
;
10646 case TRUTH_ORIF_EXPR
:
10647 return boolean_false_node
;
10648 case COMPOUND_EXPR
:
10654 if (complain
& tf_error
)
10655 error_at (location_of (t
),
10656 "fold of empty expansion over %O", code
);
10657 return error_mark_node
;
10660 /* Given a fold-expression T and a current LEFT and RIGHT operand,
10661 form an expression that combines the two terms using the
10665 fold_expression (tree t
, tree left
, tree right
, tsubst_flags_t complain
)
10667 tree op
= FOLD_EXPR_OP (t
);
10668 tree_code code
= (tree_code
)TREE_INT_CST_LOW (op
);
10670 // Handle compound assignment operators.
10671 if (FOLD_EXPR_MODIFY_P (t
))
10672 return build_x_modify_expr (input_location
, left
, code
, right
, complain
);
10676 case COMPOUND_EXPR
:
10677 return build_x_compound_expr (input_location
, left
, right
, complain
);
10679 return build_m_component_ref (left
, right
, complain
);
10681 return build_x_binary_op (input_location
, code
,
10682 left
, TREE_CODE (left
),
10683 right
, TREE_CODE (right
),
10689 /* Substitute ARGS into the pack of a fold expression T. */
10692 tsubst_fold_expr_pack (tree t
, tree args
, tsubst_flags_t complain
, tree in_decl
)
10694 return tsubst_pack_expansion (FOLD_EXPR_PACK (t
), args
, complain
, in_decl
);
10697 /* Substitute ARGS into the pack of a fold expression T. */
10700 tsubst_fold_expr_init (tree t
, tree args
, tsubst_flags_t complain
, tree in_decl
)
10702 return tsubst_expr (FOLD_EXPR_INIT (t
), args
, complain
, in_decl
, false);
10705 /* Expand a PACK of arguments into a grouped as left fold.
10706 Given a pack containing elements A0, A1, ..., An and an
10707 operator @, this builds the expression:
10709 ((A0 @ A1) @ A2) ... @ An
10711 Note that PACK must not be empty.
10713 The operator is defined by the original fold expression T. */
10716 expand_left_fold (tree t
, tree pack
, tsubst_flags_t complain
)
10718 tree left
= TREE_VEC_ELT (pack
, 0);
10719 for (int i
= 1; i
< TREE_VEC_LENGTH (pack
); ++i
)
10721 tree right
= TREE_VEC_ELT (pack
, i
);
10722 left
= fold_expression (t
, left
, right
, complain
);
10727 /* Substitute into a unary left fold expression. */
10730 tsubst_unary_left_fold (tree t
, tree args
, tsubst_flags_t complain
,
10733 tree pack
= tsubst_fold_expr_pack (t
, args
, complain
, in_decl
);
10734 if (pack
== error_mark_node
)
10735 return error_mark_node
;
10736 if (TREE_VEC_LENGTH (pack
) == 0)
10737 return expand_empty_fold (t
, complain
);
10739 return expand_left_fold (t
, pack
, complain
);
10742 /* Substitute into a binary left fold expression.
10744 Do ths by building a single (non-empty) vector of argumnts and
10745 building the expression from those elements. */
10748 tsubst_binary_left_fold (tree t
, tree args
, tsubst_flags_t complain
,
10751 tree pack
= tsubst_fold_expr_pack (t
, args
, complain
, in_decl
);
10752 if (pack
== error_mark_node
)
10753 return error_mark_node
;
10754 tree init
= tsubst_fold_expr_init (t
, args
, complain
, in_decl
);
10755 if (init
== error_mark_node
)
10756 return error_mark_node
;
10758 tree vec
= make_tree_vec (TREE_VEC_LENGTH (pack
) + 1);
10759 TREE_VEC_ELT (vec
, 0) = init
;
10760 for (int i
= 0; i
< TREE_VEC_LENGTH (pack
); ++i
)
10761 TREE_VEC_ELT (vec
, i
+ 1) = TREE_VEC_ELT (pack
, i
);
10763 return expand_left_fold (t
, vec
, complain
);
10766 /* Expand a PACK of arguments into a grouped as right fold.
10767 Given a pack containing elementns A0, A1, ..., and an
10768 operator @, this builds the expression:
10770 A0@ ... (An-2 @ (An-1 @ An))
10772 Note that PACK must not be empty.
10774 The operator is defined by the original fold expression T. */
10777 expand_right_fold (tree t
, tree pack
, tsubst_flags_t complain
)
10779 // Build the expression.
10780 int n
= TREE_VEC_LENGTH (pack
);
10781 tree right
= TREE_VEC_ELT (pack
, n
- 1);
10782 for (--n
; n
!= 0; --n
)
10784 tree left
= TREE_VEC_ELT (pack
, n
- 1);
10785 right
= fold_expression (t
, left
, right
, complain
);
10790 /* Substitute into a unary right fold expression. */
10793 tsubst_unary_right_fold (tree t
, tree args
, tsubst_flags_t complain
,
10796 tree pack
= tsubst_fold_expr_pack (t
, args
, complain
, in_decl
);
10797 if (pack
== error_mark_node
)
10798 return error_mark_node
;
10799 if (TREE_VEC_LENGTH (pack
) == 0)
10800 return expand_empty_fold (t
, complain
);
10802 return expand_right_fold (t
, pack
, complain
);
10805 /* Substitute into a binary right fold expression.
10807 Do ths by building a single (non-empty) vector of arguments and
10808 building the expression from those elements. */
10811 tsubst_binary_right_fold (tree t
, tree args
, tsubst_flags_t complain
,
10814 tree pack
= tsubst_fold_expr_pack (t
, args
, complain
, in_decl
);
10815 if (pack
== error_mark_node
)
10816 return error_mark_node
;
10817 tree init
= tsubst_fold_expr_init (t
, args
, complain
, in_decl
);
10818 if (init
== error_mark_node
)
10819 return error_mark_node
;
10821 int n
= TREE_VEC_LENGTH (pack
);
10822 tree vec
= make_tree_vec (n
+ 1);
10823 for (int i
= 0; i
< n
; ++i
)
10824 TREE_VEC_ELT (vec
, i
) = TREE_VEC_ELT (pack
, i
);
10825 TREE_VEC_ELT (vec
, n
) = init
;
10827 return expand_right_fold (t
, vec
, complain
);
10831 /* Substitute ARGS into T, which is an pack expansion
10832 (i.e. TYPE_PACK_EXPANSION or EXPR_PACK_EXPANSION). Returns a
10833 TREE_VEC with the substituted arguments, a PACK_EXPANSION_* node
10834 (if only a partial substitution could be performed) or
10835 ERROR_MARK_NODE if there was an error. */
10837 tsubst_pack_expansion (tree t
, tree args
, tsubst_flags_t complain
,
10841 tree pack
, packs
= NULL_TREE
;
10842 bool unsubstituted_packs
= false;
10845 hash_map
<tree
, tree
> *saved_local_specializations
= NULL
;
10846 bool need_local_specializations
= false;
10849 gcc_assert (PACK_EXPANSION_P (t
));
10850 pattern
= PACK_EXPANSION_PATTERN (t
);
10852 /* Add in any args remembered from an earlier partial instantiation. */
10853 args
= add_to_template_args (PACK_EXPANSION_EXTRA_ARGS (t
), args
);
10855 levels
= TMPL_ARGS_DEPTH (args
);
10857 /* Determine the argument packs that will instantiate the parameter
10858 packs used in the expansion expression. While we're at it,
10859 compute the number of arguments to be expanded and make sure it
10861 for (pack
= PACK_EXPANSION_PARAMETER_PACKS (t
); pack
;
10862 pack
= TREE_CHAIN (pack
))
10864 tree parm_pack
= TREE_VALUE (pack
);
10865 tree arg_pack
= NULL_TREE
;
10866 tree orig_arg
= NULL_TREE
;
10869 if (TREE_CODE (parm_pack
) == BASES
)
10871 if (BASES_DIRECT (parm_pack
))
10872 return calculate_direct_bases (tsubst_expr (BASES_TYPE (parm_pack
),
10873 args
, complain
, in_decl
, false));
10875 return calculate_bases (tsubst_expr (BASES_TYPE (parm_pack
),
10876 args
, complain
, in_decl
, false));
10878 if (TREE_CODE (parm_pack
) == PARM_DECL
)
10880 /* We know we have correct local_specializations if this
10881 expansion is at function scope, or if we're dealing with a
10882 local parameter in a requires expression; for the latter,
10883 tsubst_requires_expr set it up appropriately. */
10884 if (PACK_EXPANSION_LOCAL_P (t
) || CONSTRAINT_VAR_P (parm_pack
))
10885 arg_pack
= retrieve_local_specialization (parm_pack
);
10887 /* We can't rely on local_specializations for a parameter
10888 name used later in a function declaration (such as in a
10889 late-specified return type). Even if it exists, it might
10890 have the wrong value for a recursive call. */
10891 need_local_specializations
= true;
10895 /* This parameter pack was used in an unevaluated context. Just
10896 make a dummy decl, since it's only used for its type. */
10897 arg_pack
= tsubst_decl (parm_pack
, args
, complain
);
10898 if (arg_pack
&& DECL_PACK_P (arg_pack
))
10899 /* Partial instantiation of the parm_pack, we can't build
10900 up an argument pack yet. */
10901 arg_pack
= NULL_TREE
;
10903 arg_pack
= make_fnparm_pack (arg_pack
);
10906 else if (TREE_CODE (parm_pack
) == FIELD_DECL
)
10907 arg_pack
= tsubst_copy (parm_pack
, args
, complain
, in_decl
);
10911 template_parm_level_and_index (parm_pack
, &level
, &idx
);
10913 if (level
<= levels
)
10914 arg_pack
= TMPL_ARG (args
, level
, idx
);
10917 orig_arg
= arg_pack
;
10918 if (arg_pack
&& TREE_CODE (arg_pack
) == ARGUMENT_PACK_SELECT
)
10919 arg_pack
= ARGUMENT_PACK_SELECT_FROM_PACK (arg_pack
);
10921 if (arg_pack
&& !ARGUMENT_PACK_P (arg_pack
))
10922 /* This can only happen if we forget to expand an argument
10923 pack somewhere else. Just return an error, silently. */
10925 result
= make_tree_vec (1);
10926 TREE_VEC_ELT (result
, 0) = error_mark_node
;
10933 TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg_pack
));
10935 /* Don't bother trying to do a partial substitution with
10936 incomplete packs; we'll try again after deduction. */
10937 if (ARGUMENT_PACK_INCOMPLETE_P (arg_pack
))
10942 else if (len
!= my_len
)
10944 if (!(complain
& tf_error
))
10945 /* Fail quietly. */;
10946 else if (TREE_CODE (t
) == TYPE_PACK_EXPANSION
)
10947 error ("mismatched argument pack lengths while expanding "
10951 error ("mismatched argument pack lengths while expanding "
10954 return error_mark_node
;
10957 /* Keep track of the parameter packs and their corresponding
10959 packs
= tree_cons (parm_pack
, arg_pack
, packs
);
10960 TREE_TYPE (packs
) = orig_arg
;
10964 /* We can't substitute for this parameter pack. We use a flag as
10965 well as the missing_level counter because function parameter
10966 packs don't have a level. */
10967 gcc_assert (processing_template_decl
);
10968 unsubstituted_packs
= true;
10972 /* If the expansion is just T..., return the matching argument pack, unless
10973 we need to call convert_from_reference on all the elements. This is an
10974 important optimization; see c++/68422. */
10975 if (!unsubstituted_packs
10976 && TREE_PURPOSE (packs
) == pattern
)
10978 tree args
= ARGUMENT_PACK_ARGS (TREE_VALUE (packs
));
10979 /* Types need no adjustment, nor does sizeof..., and if we still have
10980 some pack expansion args we won't do anything yet. */
10981 if (TREE_CODE (t
) == TYPE_PACK_EXPANSION
10982 || PACK_EXPANSION_SIZEOF_P (t
)
10983 || pack_expansion_args_count (args
))
10985 /* Also optimize expression pack expansions if we can tell that the
10986 elements won't have reference type. */
10987 tree type
= TREE_TYPE (pattern
);
10988 if (type
&& TREE_CODE (type
) != REFERENCE_TYPE
10989 && !PACK_EXPANSION_P (type
)
10990 && !WILDCARD_TYPE_P (type
))
10992 /* Otherwise use the normal path so we get convert_from_reference. */
10995 /* We cannot expand this expansion expression, because we don't have
10996 all of the argument packs we need. */
10997 if (use_pack_expansion_extra_args_p (packs
, len
, unsubstituted_packs
))
10999 /* We got some full packs, but we can't substitute them in until we
11000 have values for all the packs. So remember these until then. */
11002 t
= make_pack_expansion (pattern
);
11003 PACK_EXPANSION_EXTRA_ARGS (t
) = args
;
11006 else if (unsubstituted_packs
)
11008 /* There were no real arguments, we're just replacing a parameter
11009 pack with another version of itself. Substitute into the
11010 pattern and return a PACK_EXPANSION_*. The caller will need to
11012 if (TREE_CODE (t
) == EXPR_PACK_EXPANSION
)
11013 t
= tsubst_expr (pattern
, args
, complain
, in_decl
,
11014 /*integral_constant_expression_p=*/false);
11016 t
= tsubst (pattern
, args
, complain
, in_decl
);
11017 t
= make_pack_expansion (t
);
11021 gcc_assert (len
>= 0);
11023 if (need_local_specializations
)
11025 /* We're in a late-specified return type, so create our own local
11026 specializations map; the current map is either NULL or (in the
11027 case of recursive unification) might have bindings that we don't
11028 want to use or alter. */
11029 saved_local_specializations
= local_specializations
;
11030 local_specializations
= new hash_map
<tree
, tree
>;
11033 /* For each argument in each argument pack, substitute into the
11035 result
= make_tree_vec (len
);
11036 tree elem_args
= copy_template_args (args
);
11037 for (i
= 0; i
< len
; ++i
)
11039 t
= gen_elem_of_pack_expansion_instantiation (pattern
, packs
,
11041 elem_args
, complain
,
11043 TREE_VEC_ELT (result
, i
) = t
;
11044 if (t
== error_mark_node
)
11046 result
= error_mark_node
;
11051 /* Update ARGS to restore the substitution from parameter packs to
11052 their argument packs. */
11053 for (pack
= packs
; pack
; pack
= TREE_CHAIN (pack
))
11055 tree parm
= TREE_PURPOSE (pack
);
11057 if (TREE_CODE (parm
) == PARM_DECL
11058 || TREE_CODE (parm
) == FIELD_DECL
)
11059 register_local_specialization (TREE_TYPE (pack
), parm
);
11064 if (TREE_VALUE (pack
) == NULL_TREE
)
11067 template_parm_level_and_index (parm
, &level
, &idx
);
11069 /* Update the corresponding argument. */
11070 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args
))
11071 TREE_VEC_ELT (TREE_VEC_ELT (args
, level
-1 ), idx
) =
11074 TREE_VEC_ELT (args
, idx
) = TREE_TYPE (pack
);
11078 if (need_local_specializations
)
11080 delete local_specializations
;
11081 local_specializations
= saved_local_specializations
;
11087 /* Given PARM_DECL PARM, find the corresponding PARM_DECL in the template
11088 TMPL. We do this using DECL_PARM_INDEX, which should work even with
11089 parameter packs; all parms generated from a function parameter pack will
11090 have the same DECL_PARM_INDEX. */
11093 get_pattern_parm (tree parm
, tree tmpl
)
11095 tree pattern
= DECL_TEMPLATE_RESULT (tmpl
);
11098 if (DECL_ARTIFICIAL (parm
))
11100 for (patparm
= DECL_ARGUMENTS (pattern
);
11101 patparm
; patparm
= DECL_CHAIN (patparm
))
11102 if (DECL_ARTIFICIAL (patparm
)
11103 && DECL_NAME (parm
) == DECL_NAME (patparm
))
11108 patparm
= FUNCTION_FIRST_USER_PARM (DECL_TEMPLATE_RESULT (tmpl
));
11109 patparm
= chain_index (DECL_PARM_INDEX (parm
)-1, patparm
);
11110 gcc_assert (DECL_PARM_INDEX (patparm
)
11111 == DECL_PARM_INDEX (parm
));
11117 /* Make an argument pack out of the TREE_VEC VEC. */
11120 make_argument_pack (tree vec
)
11123 tree elt
= TREE_VEC_ELT (vec
, 0);
11125 pack
= cxx_make_type (TYPE_ARGUMENT_PACK
);
11128 pack
= make_node (NONTYPE_ARGUMENT_PACK
);
11129 TREE_TYPE (pack
) = TREE_TYPE (elt
);
11130 TREE_CONSTANT (pack
) = 1;
11132 SET_ARGUMENT_PACK_ARGS (pack
, vec
);
11136 /* Return an exact copy of template args T that can be modified
11140 copy_template_args (tree t
)
11142 if (t
== error_mark_node
)
11145 int len
= TREE_VEC_LENGTH (t
);
11146 tree new_vec
= make_tree_vec (len
);
11148 for (int i
= 0; i
< len
; ++i
)
11150 tree elt
= TREE_VEC_ELT (t
, i
);
11151 if (elt
&& TREE_CODE (elt
) == TREE_VEC
)
11152 elt
= copy_template_args (elt
);
11153 TREE_VEC_ELT (new_vec
, i
) = elt
;
11156 NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_vec
)
11157 = NON_DEFAULT_TEMPLATE_ARGS_COUNT (t
);
11162 /* Substitute ARGS into the vector or list of template arguments T. */
11165 tsubst_template_args (tree t
, tree args
, tsubst_flags_t complain
, tree in_decl
)
11168 int len
, need_new
= 0, i
, expanded_len_adjust
= 0, out
;
11171 if (t
== error_mark_node
)
11172 return error_mark_node
;
11174 len
= TREE_VEC_LENGTH (t
);
11175 elts
= XALLOCAVEC (tree
, len
);
11177 for (i
= 0; i
< len
; i
++)
11179 tree orig_arg
= TREE_VEC_ELT (t
, i
);
11182 if (TREE_CODE (orig_arg
) == TREE_VEC
)
11183 new_arg
= tsubst_template_args (orig_arg
, args
, complain
, in_decl
);
11184 else if (PACK_EXPANSION_P (orig_arg
))
11186 /* Substitute into an expansion expression. */
11187 new_arg
= tsubst_pack_expansion (orig_arg
, args
, complain
, in_decl
);
11189 if (TREE_CODE (new_arg
) == TREE_VEC
)
11190 /* Add to the expanded length adjustment the number of
11191 expanded arguments. We subtract one from this
11192 measurement, because the argument pack expression
11193 itself is already counted as 1 in
11194 LEN. EXPANDED_LEN_ADJUST can actually be negative, if
11195 the argument pack is empty. */
11196 expanded_len_adjust
+= TREE_VEC_LENGTH (new_arg
) - 1;
11198 else if (ARGUMENT_PACK_P (orig_arg
))
11200 /* Substitute into each of the arguments. */
11201 new_arg
= TYPE_P (orig_arg
)
11202 ? cxx_make_type (TREE_CODE (orig_arg
))
11203 : make_node (TREE_CODE (orig_arg
));
11205 SET_ARGUMENT_PACK_ARGS (
11207 tsubst_template_args (ARGUMENT_PACK_ARGS (orig_arg
),
11208 args
, complain
, in_decl
));
11210 if (ARGUMENT_PACK_ARGS (new_arg
) == error_mark_node
)
11211 new_arg
= error_mark_node
;
11213 if (TREE_CODE (new_arg
) == NONTYPE_ARGUMENT_PACK
) {
11214 TREE_TYPE (new_arg
) = tsubst (TREE_TYPE (orig_arg
), args
,
11215 complain
, in_decl
);
11216 TREE_CONSTANT (new_arg
) = TREE_CONSTANT (orig_arg
);
11218 if (TREE_TYPE (new_arg
) == error_mark_node
)
11219 new_arg
= error_mark_node
;
11223 new_arg
= tsubst_template_arg (orig_arg
, args
, complain
, in_decl
);
11225 if (new_arg
== error_mark_node
)
11226 return error_mark_node
;
11229 if (new_arg
!= orig_arg
)
11236 /* Make space for the expanded arguments coming from template
11238 t
= make_tree_vec (len
+ expanded_len_adjust
);
11239 /* ORIG_T can contain TREE_VECs. That happens if ORIG_T contains the
11240 arguments for a member template.
11241 In that case each TREE_VEC in ORIG_T represents a level of template
11242 arguments, and ORIG_T won't carry any non defaulted argument count.
11243 It will rather be the nested TREE_VECs that will carry one.
11244 In other words, ORIG_T carries a non defaulted argument count only
11245 if it doesn't contain any nested TREE_VEC. */
11246 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t
))
11248 int count
= GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t
);
11249 count
+= expanded_len_adjust
;
11250 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (t
, count
);
11252 for (i
= 0, out
= 0; i
< len
; i
++)
11254 if ((PACK_EXPANSION_P (TREE_VEC_ELT (orig_t
, i
))
11255 || ARGUMENT_PACK_P (TREE_VEC_ELT (orig_t
, i
)))
11256 && TREE_CODE (elts
[i
]) == TREE_VEC
)
11260 /* Now expand the template argument pack "in place". */
11261 for (idx
= 0; idx
< TREE_VEC_LENGTH (elts
[i
]); idx
++, out
++)
11262 TREE_VEC_ELT (t
, out
) = TREE_VEC_ELT (elts
[i
], idx
);
11266 TREE_VEC_ELT (t
, out
) = elts
[i
];
11274 /* Return the result of substituting ARGS into the template parameters
11275 given by PARMS. If there are m levels of ARGS and m + n levels of
11276 PARMS, then the result will contain n levels of PARMS. For
11277 example, if PARMS is `template <class T> template <class U>
11278 template <T*, U, class V>' and ARGS is {{int}, {double}} then the
11279 result will be `template <int*, double, class V>'. */
11282 tsubst_template_parms (tree parms
, tree args
, tsubst_flags_t complain
)
11284 tree r
= NULL_TREE
;
11287 /* When substituting into a template, we must set
11288 PROCESSING_TEMPLATE_DECL as the template parameters may be
11289 dependent if they are based on one-another, and the dependency
11290 predicates are short-circuit outside of templates. */
11291 ++processing_template_decl
;
11293 for (new_parms
= &r
;
11294 parms
&& TMPL_PARMS_DEPTH (parms
) > TMPL_ARGS_DEPTH (args
);
11295 new_parms
= &(TREE_CHAIN (*new_parms
)),
11296 parms
= TREE_CHAIN (parms
))
11299 make_tree_vec (TREE_VEC_LENGTH (TREE_VALUE (parms
)));
11302 for (i
= 0; i
< TREE_VEC_LENGTH (new_vec
); ++i
)
11306 if (parms
== error_mark_node
)
11309 tuple
= TREE_VEC_ELT (TREE_VALUE (parms
), i
);
11311 if (tuple
== error_mark_node
)
11314 TREE_VEC_ELT (new_vec
, i
) =
11315 tsubst_template_parm (tuple
, args
, complain
);
11319 tree_cons (size_int (TMPL_PARMS_DEPTH (parms
)
11320 - TMPL_ARGS_DEPTH (args
)),
11321 new_vec
, NULL_TREE
);
11324 --processing_template_decl
;
11329 /* Return the result of substituting ARGS into one template parameter
11330 given by T. T Must be a TREE_LIST which TREE_VALUE is the template
11331 parameter and which TREE_PURPOSE is the default argument of the
11332 template parameter. */
11335 tsubst_template_parm (tree t
, tree args
, tsubst_flags_t complain
)
11337 tree default_value
, parm_decl
;
11339 if (args
== NULL_TREE
11341 || t
== error_mark_node
)
11344 gcc_assert (TREE_CODE (t
) == TREE_LIST
);
11346 default_value
= TREE_PURPOSE (t
);
11347 parm_decl
= TREE_VALUE (t
);
11349 parm_decl
= tsubst (parm_decl
, args
, complain
, NULL_TREE
);
11350 if (TREE_CODE (parm_decl
) == PARM_DECL
11351 && invalid_nontype_parm_type_p (TREE_TYPE (parm_decl
), complain
))
11352 parm_decl
= error_mark_node
;
11353 default_value
= tsubst_template_arg (default_value
, args
,
11354 complain
, NULL_TREE
);
11356 return build_tree_list (default_value
, parm_decl
);
11359 /* Substitute the ARGS into the indicated aggregate (or enumeration)
11360 type T. If T is not an aggregate or enumeration type, it is
11361 handled as if by tsubst. IN_DECL is as for tsubst. If
11362 ENTERING_SCOPE is nonzero, T is the context for a template which
11363 we are presently tsubst'ing. Return the substituted value. */
11366 tsubst_aggr_type (tree t
,
11368 tsubst_flags_t complain
,
11370 int entering_scope
)
11372 if (t
== NULL_TREE
)
11375 switch (TREE_CODE (t
))
11378 if (TYPE_PTRMEMFUNC_P (t
))
11379 return tsubst (TYPE_PTRMEMFUNC_FN_TYPE (t
), args
, complain
, in_decl
);
11381 /* Else fall through. */
11382 case ENUMERAL_TYPE
:
11384 if (TYPE_TEMPLATE_INFO (t
) && uses_template_parms (t
))
11389 int saved_unevaluated_operand
;
11390 int saved_inhibit_evaluation_warnings
;
11392 /* In "sizeof(X<I>)" we need to evaluate "I". */
11393 saved_unevaluated_operand
= cp_unevaluated_operand
;
11394 cp_unevaluated_operand
= 0;
11395 saved_inhibit_evaluation_warnings
= c_inhibit_evaluation_warnings
;
11396 c_inhibit_evaluation_warnings
= 0;
11398 /* First, determine the context for the type we are looking
11400 context
= TYPE_CONTEXT (t
);
11401 if (context
&& TYPE_P (context
))
11403 context
= tsubst_aggr_type (context
, args
, complain
,
11404 in_decl
, /*entering_scope=*/1);
11405 /* If context is a nested class inside a class template,
11406 it may still need to be instantiated (c++/33959). */
11407 context
= complete_type (context
);
11410 /* Then, figure out what arguments are appropriate for the
11411 type we are trying to find. For example, given:
11413 template <class T> struct S;
11414 template <class T, class U> void f(T, U) { S<U> su; }
11416 and supposing that we are instantiating f<int, double>,
11417 then our ARGS will be {int, double}, but, when looking up
11418 S we only want {double}. */
11419 argvec
= tsubst_template_args (TYPE_TI_ARGS (t
), args
,
11420 complain
, in_decl
);
11421 if (argvec
== error_mark_node
)
11422 r
= error_mark_node
;
11425 r
= lookup_template_class (t
, argvec
, in_decl
, context
,
11426 entering_scope
, complain
);
11427 r
= cp_build_qualified_type_real (r
, cp_type_quals (t
), complain
);
11430 cp_unevaluated_operand
= saved_unevaluated_operand
;
11431 c_inhibit_evaluation_warnings
= saved_inhibit_evaluation_warnings
;
11436 /* This is not a template type, so there's nothing to do. */
11440 return tsubst (t
, args
, complain
, in_decl
);
11444 /* Substitute into the default argument ARG (a default argument for
11445 FN), which has the indicated TYPE. */
11448 tsubst_default_argument (tree fn
, tree type
, tree arg
, tsubst_flags_t complain
)
11450 tree saved_class_ptr
= NULL_TREE
;
11451 tree saved_class_ref
= NULL_TREE
;
11452 int errs
= errorcount
+ sorrycount
;
11454 /* This can happen in invalid code. */
11455 if (TREE_CODE (arg
) == DEFAULT_ARG
)
11458 /* This default argument came from a template. Instantiate the
11459 default argument here, not in tsubst. In the case of
11468 we must be careful to do name lookup in the scope of S<T>,
11469 rather than in the current class. */
11470 push_access_scope (fn
);
11471 /* The "this" pointer is not valid in a default argument. */
11474 saved_class_ptr
= current_class_ptr
;
11475 cp_function_chain
->x_current_class_ptr
= NULL_TREE
;
11476 saved_class_ref
= current_class_ref
;
11477 cp_function_chain
->x_current_class_ref
= NULL_TREE
;
11480 push_deferring_access_checks(dk_no_deferred
);
11481 /* The default argument expression may cause implicitly defined
11482 member functions to be synthesized, which will result in garbage
11483 collection. We must treat this situation as if we were within
11484 the body of function so as to avoid collecting live data on the
11487 arg
= tsubst_expr (arg
, DECL_TI_ARGS (fn
),
11488 complain
, NULL_TREE
,
11489 /*integral_constant_expression_p=*/false);
11491 pop_deferring_access_checks();
11493 /* Restore the "this" pointer. */
11496 cp_function_chain
->x_current_class_ptr
= saved_class_ptr
;
11497 cp_function_chain
->x_current_class_ref
= saved_class_ref
;
11500 if (errorcount
+sorrycount
> errs
11501 && (complain
& tf_warning_or_error
))
11502 inform (input_location
,
11503 " when instantiating default argument for call to %D", fn
);
11505 /* Make sure the default argument is reasonable. */
11506 arg
= check_default_argument (type
, arg
, complain
);
11508 pop_access_scope (fn
);
11513 /* Substitute into all the default arguments for FN. */
11516 tsubst_default_arguments (tree fn
, tsubst_flags_t complain
)
11521 tmpl_args
= DECL_TI_ARGS (fn
);
11523 /* If this function is not yet instantiated, we certainly don't need
11524 its default arguments. */
11525 if (uses_template_parms (tmpl_args
))
11527 /* Don't do this again for clones. */
11528 if (DECL_CLONED_FUNCTION_P (fn
))
11531 for (arg
= TYPE_ARG_TYPES (TREE_TYPE (fn
));
11533 arg
= TREE_CHAIN (arg
))
11534 if (TREE_PURPOSE (arg
))
11535 TREE_PURPOSE (arg
) = tsubst_default_argument (fn
,
11537 TREE_PURPOSE (arg
),
11541 /* Substitute the ARGS into the T, which is a _DECL. Return the
11542 result of the substitution. Issue error and warning messages under
11543 control of COMPLAIN. */
11546 tsubst_decl (tree t
, tree args
, tsubst_flags_t complain
)
11548 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
11549 location_t saved_loc
;
11550 tree r
= NULL_TREE
;
11552 hashval_t hash
= 0;
11554 /* Set the filename and linenumber to improve error-reporting. */
11555 saved_loc
= input_location
;
11556 input_location
= DECL_SOURCE_LOCATION (t
);
11558 switch (TREE_CODE (t
))
11560 case TEMPLATE_DECL
:
11562 /* We can get here when processing a member function template,
11563 member class template, or template template parameter. */
11564 tree decl
= DECL_TEMPLATE_RESULT (t
);
11569 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t
))
11571 /* Template template parameter is treated here. */
11572 tree new_type
= tsubst (TREE_TYPE (t
), args
, complain
, in_decl
);
11573 if (new_type
== error_mark_node
)
11574 r
= error_mark_node
;
11575 /* If we get a real template back, return it. This can happen in
11576 the context of most_specialized_partial_spec. */
11577 else if (TREE_CODE (new_type
) == TEMPLATE_DECL
)
11580 /* The new TEMPLATE_DECL was built in
11581 reduce_template_parm_level. */
11582 r
= TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (new_type
);
11586 /* We might already have an instance of this template.
11587 The ARGS are for the surrounding class type, so the
11588 full args contain the tsubst'd args for the context,
11589 plus the innermost args from the template decl. */
11590 tmpl_args
= DECL_CLASS_TEMPLATE_P (t
)
11591 ? CLASSTYPE_TI_ARGS (TREE_TYPE (t
))
11592 : DECL_TI_ARGS (DECL_TEMPLATE_RESULT (t
));
11593 /* Because this is a template, the arguments will still be
11594 dependent, even after substitution. If
11595 PROCESSING_TEMPLATE_DECL is not set, the dependency
11596 predicates will short-circuit. */
11597 ++processing_template_decl
;
11598 full_args
= tsubst_template_args (tmpl_args
, args
,
11599 complain
, in_decl
);
11600 --processing_template_decl
;
11601 if (full_args
== error_mark_node
)
11602 RETURN (error_mark_node
);
11604 /* If this is a default template template argument,
11605 tsubst might not have changed anything. */
11606 if (full_args
== tmpl_args
)
11609 hash
= hash_tmpl_and_args (t
, full_args
);
11610 spec
= retrieve_specialization (t
, full_args
, hash
);
11611 if (spec
!= NULL_TREE
)
11617 /* Make a new template decl. It will be similar to the
11618 original, but will record the current template arguments.
11619 We also create a new function declaration, which is just
11620 like the old one, but points to this new template, rather
11621 than the old one. */
11623 gcc_assert (DECL_LANG_SPECIFIC (r
) != 0);
11624 DECL_CHAIN (r
) = NULL_TREE
;
11626 // Build new template info linking to the original template decl.
11627 DECL_TEMPLATE_INFO (r
) = build_template_info (t
, args
);
11629 if (TREE_CODE (decl
) == TYPE_DECL
11630 && !TYPE_DECL_ALIAS_P (decl
))
11633 ++processing_template_decl
;
11634 new_type
= tsubst (TREE_TYPE (t
), args
, complain
, in_decl
);
11635 --processing_template_decl
;
11636 if (new_type
== error_mark_node
)
11637 RETURN (error_mark_node
);
11639 TREE_TYPE (r
) = new_type
;
11640 /* For a partial specialization, we need to keep pointing to
11641 the primary template. */
11642 if (!DECL_TEMPLATE_SPECIALIZATION (t
))
11643 CLASSTYPE_TI_TEMPLATE (new_type
) = r
;
11644 DECL_TEMPLATE_RESULT (r
) = TYPE_MAIN_DECL (new_type
);
11645 DECL_TI_ARGS (r
) = CLASSTYPE_TI_ARGS (new_type
);
11646 DECL_CONTEXT (r
) = TYPE_CONTEXT (new_type
);
11651 ++processing_template_decl
;
11652 new_decl
= tsubst (decl
, args
, complain
, in_decl
);
11653 --processing_template_decl
;
11654 if (new_decl
== error_mark_node
)
11655 RETURN (error_mark_node
);
11657 DECL_TEMPLATE_RESULT (r
) = new_decl
;
11658 DECL_TI_TEMPLATE (new_decl
) = r
;
11659 TREE_TYPE (r
) = TREE_TYPE (new_decl
);
11660 DECL_TI_ARGS (r
) = DECL_TI_ARGS (new_decl
);
11661 DECL_CONTEXT (r
) = DECL_CONTEXT (new_decl
);
11664 SET_DECL_IMPLICIT_INSTANTIATION (r
);
11665 DECL_TEMPLATE_INSTANTIATIONS (r
) = NULL_TREE
;
11666 DECL_TEMPLATE_SPECIALIZATIONS (r
) = NULL_TREE
;
11668 /* The template parameters for this new template are all the
11669 template parameters for the old template, except the
11670 outermost level of parameters. */
11671 DECL_TEMPLATE_PARMS (r
)
11672 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t
), args
,
11675 if (PRIMARY_TEMPLATE_P (t
))
11676 DECL_PRIMARY_TEMPLATE (r
) = r
;
11678 if (TREE_CODE (decl
) != TYPE_DECL
&& !VAR_P (decl
))
11679 /* Record this non-type partial instantiation. */
11680 register_specialization (r
, t
,
11681 DECL_TI_ARGS (DECL_TEMPLATE_RESULT (r
)),
11686 case FUNCTION_DECL
:
11689 tree argvec
= NULL_TREE
;
11697 /* Nobody should be tsubst'ing into non-template functions. */
11698 gcc_assert (DECL_TEMPLATE_INFO (t
) != NULL_TREE
);
11700 if (TREE_CODE (DECL_TI_TEMPLATE (t
)) == TEMPLATE_DECL
)
11705 /* If T is not dependent, just return it. We have to
11706 increment PROCESSING_TEMPLATE_DECL because
11707 value_dependent_expression_p assumes that nothing is
11708 dependent when PROCESSING_TEMPLATE_DECL is zero. */
11709 ++processing_template_decl
;
11710 dependent_p
= value_dependent_expression_p (t
);
11711 --processing_template_decl
;
11715 /* Calculate the most general template of which R is a
11716 specialization, and the complete set of arguments used to
11718 gen_tmpl
= most_general_template (DECL_TI_TEMPLATE (t
));
11719 argvec
= tsubst_template_args (DECL_TI_ARGS
11720 (DECL_TEMPLATE_RESULT
11721 (DECL_TI_TEMPLATE (t
))),
11722 args
, complain
, in_decl
);
11723 if (argvec
== error_mark_node
)
11724 RETURN (error_mark_node
);
11726 /* Check to see if we already have this specialization. */
11727 hash
= hash_tmpl_and_args (gen_tmpl
, argvec
);
11728 spec
= retrieve_specialization (gen_tmpl
, argvec
, hash
);
11736 /* We can see more levels of arguments than parameters if
11737 there was a specialization of a member template, like
11740 template <class T> struct S { template <class U> void f(); }
11741 template <> template <class U> void S<int>::f(U);
11743 Here, we'll be substituting into the specialization,
11744 because that's where we can find the code we actually
11745 want to generate, but we'll have enough arguments for
11746 the most general template.
11748 We also deal with the peculiar case:
11750 template <class T> struct S {
11751 template <class U> friend void f();
11753 template <class U> void f() {}
11755 template void f<double>();
11757 Here, the ARGS for the instantiation of will be {int,
11758 double}. But, we only need as many ARGS as there are
11759 levels of template parameters in CODE_PATTERN. We are
11760 careful not to get fooled into reducing the ARGS in
11763 template <class T> struct S { template <class U> void f(U); }
11764 template <class T> template <> void S<T>::f(int) {}
11766 which we can spot because the pattern will be a
11767 specialization in this case. */
11768 args_depth
= TMPL_ARGS_DEPTH (args
);
11770 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (t
)));
11771 if (args_depth
> parms_depth
11772 && !DECL_TEMPLATE_SPECIALIZATION (t
))
11773 args
= get_innermost_template_args (args
, parms_depth
);
11777 /* This special case arises when we have something like this:
11779 template <class T> struct S {
11780 friend void f<int>(int, double);
11783 Here, the DECL_TI_TEMPLATE for the friend declaration
11784 will be an IDENTIFIER_NODE. We are being called from
11785 tsubst_friend_function, and we want only to create a
11786 new decl (R) with appropriate types so that we can call
11787 determine_specialization. */
11788 gen_tmpl
= NULL_TREE
;
11791 if (DECL_CLASS_SCOPE_P (t
))
11793 if (DECL_NAME (t
) == constructor_name (DECL_CONTEXT (t
)))
11797 ctx
= tsubst_aggr_type (DECL_CONTEXT (t
), args
,
11798 complain
, t
, /*entering_scope=*/1);
11803 ctx
= DECL_CONTEXT (t
);
11805 type
= tsubst (TREE_TYPE (t
), args
, complain
, in_decl
);
11806 if (type
== error_mark_node
)
11807 RETURN (error_mark_node
);
11809 /* If we hit excessive deduction depth, the type is bogus even if
11810 it isn't error_mark_node, so don't build a decl. */
11811 if (excessive_deduction_depth
)
11812 RETURN (error_mark_node
);
11814 /* We do NOT check for matching decls pushed separately at this
11815 point, as they may not represent instantiations of this
11816 template, and in any case are considered separate under the
11819 DECL_USE_TEMPLATE (r
) = 0;
11820 TREE_TYPE (r
) = type
;
11821 /* Clear out the mangled name and RTL for the instantiation. */
11822 SET_DECL_ASSEMBLER_NAME (r
, NULL_TREE
);
11823 SET_DECL_RTL (r
, NULL
);
11824 /* Leave DECL_INITIAL set on deleted instantiations. */
11825 if (!DECL_DELETED_FN (r
))
11826 DECL_INITIAL (r
) = NULL_TREE
;
11827 DECL_CONTEXT (r
) = ctx
;
11829 /* OpenMP UDRs have the only argument a reference to the declared
11830 type. We want to diagnose if the declared type is a reference,
11831 which is invalid, but as references to references are usually
11832 quietly merged, diagnose it here. */
11833 if (DECL_OMP_DECLARE_REDUCTION_P (t
))
11836 = TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (t
))));
11837 argtype
= tsubst (argtype
, args
, complain
, in_decl
);
11838 if (TREE_CODE (argtype
) == REFERENCE_TYPE
)
11839 error_at (DECL_SOURCE_LOCATION (t
),
11840 "reference type %qT in "
11841 "%<#pragma omp declare reduction%>", argtype
);
11842 if (strchr (IDENTIFIER_POINTER (DECL_NAME (t
)), '~') == NULL
)
11843 DECL_NAME (r
) = omp_reduction_id (ERROR_MARK
, DECL_NAME (t
),
11847 if (member
&& DECL_CONV_FN_P (r
))
11848 /* Type-conversion operator. Reconstruct the name, in
11849 case it's the name of one of the template's parameters. */
11850 DECL_NAME (r
) = mangle_conv_op_name_for_type (TREE_TYPE (type
));
11852 DECL_ARGUMENTS (r
) = tsubst (DECL_ARGUMENTS (t
), args
,
11854 DECL_RESULT (r
) = NULL_TREE
;
11856 TREE_STATIC (r
) = 0;
11857 TREE_PUBLIC (r
) = TREE_PUBLIC (t
);
11858 DECL_EXTERNAL (r
) = 1;
11859 /* If this is an instantiation of a function with internal
11860 linkage, we already know what object file linkage will be
11861 assigned to the instantiation. */
11862 DECL_INTERFACE_KNOWN (r
) = !TREE_PUBLIC (r
);
11863 DECL_DEFER_OUTPUT (r
) = 0;
11864 DECL_CHAIN (r
) = NULL_TREE
;
11865 DECL_PENDING_INLINE_INFO (r
) = 0;
11866 DECL_PENDING_INLINE_P (r
) = 0;
11867 DECL_SAVED_TREE (r
) = NULL_TREE
;
11868 DECL_STRUCT_FUNCTION (r
) = NULL
;
11870 /* We'll re-clone as appropriate in instantiate_template. */
11871 DECL_CLONED_FUNCTION (r
) = NULL_TREE
;
11873 /* If we aren't complaining now, return on error before we register
11874 the specialization so that we'll complain eventually. */
11875 if ((complain
& tf_error
) == 0
11876 && IDENTIFIER_OPNAME_P (DECL_NAME (r
))
11877 && !grok_op_properties (r
, /*complain=*/false))
11878 RETURN (error_mark_node
);
11880 /* When instantiating a constrained member, substitute
11881 into the constraints to create a new constraint. */
11882 if (tree ci
= get_constraints (t
))
11885 ci
= tsubst_constraint_info (ci
, argvec
, complain
, NULL_TREE
);
11886 set_constraints (r
, ci
);
11889 /* Set up the DECL_TEMPLATE_INFO for R. There's no need to do
11890 this in the special friend case mentioned above where
11891 GEN_TMPL is NULL. */
11894 DECL_TEMPLATE_INFO (r
)
11895 = build_template_info (gen_tmpl
, argvec
);
11896 SET_DECL_IMPLICIT_INSTANTIATION (r
);
11899 = register_specialization (r
, gen_tmpl
, argvec
, false, hash
);
11901 /* We instantiated this while substituting into
11902 the type earlier (template/friend54.C). */
11905 /* We're not supposed to instantiate default arguments
11906 until they are called, for a template. But, for a
11909 template <class T> void f ()
11910 { extern void g(int i = T()); }
11912 we should do the substitution when the template is
11913 instantiated. We handle the member function case in
11914 instantiate_class_template since the default arguments
11915 might refer to other members of the class. */
11917 && !PRIMARY_TEMPLATE_P (gen_tmpl
)
11918 && !uses_template_parms (argvec
))
11919 tsubst_default_arguments (r
, complain
);
11922 DECL_TEMPLATE_INFO (r
) = NULL_TREE
;
11924 /* Copy the list of befriending classes. */
11925 for (friends
= &DECL_BEFRIENDING_CLASSES (r
);
11927 friends
= &TREE_CHAIN (*friends
))
11929 *friends
= copy_node (*friends
);
11930 TREE_VALUE (*friends
) = tsubst (TREE_VALUE (*friends
),
11935 if (DECL_CONSTRUCTOR_P (r
) || DECL_DESTRUCTOR_P (r
))
11937 maybe_retrofit_in_chrg (r
);
11938 if (DECL_CONSTRUCTOR_P (r
))
11939 grok_ctor_properties (ctx
, r
);
11940 if (DECL_INHERITED_CTOR_BASE (r
))
11941 deduce_inheriting_ctor (r
);
11942 /* If this is an instantiation of a member template, clone it.
11943 If it isn't, that'll be handled by
11944 clone_constructors_and_destructors. */
11945 if (PRIMARY_TEMPLATE_P (gen_tmpl
))
11946 clone_function_decl (r
, /*update_method_vec_p=*/0);
11948 else if ((complain
& tf_error
) != 0
11949 && IDENTIFIER_OPNAME_P (DECL_NAME (r
))
11950 && !grok_op_properties (r
, /*complain=*/true))
11951 RETURN (error_mark_node
);
11953 if (DECL_FRIEND_P (t
) && DECL_FRIEND_CONTEXT (t
))
11954 SET_DECL_FRIEND_CONTEXT (r
,
11955 tsubst (DECL_FRIEND_CONTEXT (t
),
11956 args
, complain
, in_decl
));
11958 /* Possibly limit visibility based on template args. */
11959 DECL_VISIBILITY (r
) = VISIBILITY_DEFAULT
;
11960 if (DECL_VISIBILITY_SPECIFIED (t
))
11962 DECL_VISIBILITY_SPECIFIED (r
) = 0;
11963 DECL_ATTRIBUTES (r
)
11964 = remove_attribute ("visibility", DECL_ATTRIBUTES (r
));
11966 determine_visibility (r
);
11967 if (DECL_DEFAULTED_OUTSIDE_CLASS_P (r
)
11968 && !processing_template_decl
)
11969 defaulted_late_check (r
);
11971 apply_late_template_attributes (&r
, DECL_ATTRIBUTES (r
), 0,
11972 args
, complain
, in_decl
);
11978 tree type
= NULL_TREE
;
11980 tree expanded_types
= NULL_TREE
;
11981 tree prev_r
= NULL_TREE
;
11982 tree first_r
= NULL_TREE
;
11984 if (DECL_PACK_P (t
))
11986 /* If there is a local specialization that isn't a
11987 parameter pack, it means that we're doing a "simple"
11988 substitution from inside tsubst_pack_expansion. Just
11989 return the local specialization (which will be a single
11991 tree spec
= retrieve_local_specialization (t
);
11993 && TREE_CODE (spec
) == PARM_DECL
11994 && TREE_CODE (TREE_TYPE (spec
)) != TYPE_PACK_EXPANSION
)
11997 /* Expand the TYPE_PACK_EXPANSION that provides the types for
11998 the parameters in this function parameter pack. */
11999 expanded_types
= tsubst_pack_expansion (TREE_TYPE (t
), args
,
12000 complain
, in_decl
);
12001 if (TREE_CODE (expanded_types
) == TREE_VEC
)
12003 len
= TREE_VEC_LENGTH (expanded_types
);
12005 /* Zero-length parameter packs are boring. Just substitute
12008 RETURN (tsubst (TREE_CHAIN (t
), args
, complain
,
12013 /* All we did was update the type. Make a note of that. */
12014 type
= expanded_types
;
12015 expanded_types
= NULL_TREE
;
12019 /* Loop through all of the parameters we'll build. When T is
12020 a function parameter pack, LEN is the number of expanded
12021 types in EXPANDED_TYPES; otherwise, LEN is 1. */
12023 for (i
= 0; i
< len
; ++i
)
12027 if (DECL_TEMPLATE_PARM_P (t
))
12028 SET_DECL_TEMPLATE_PARM_P (r
);
12030 if (expanded_types
)
12031 /* We're on the Ith parameter of the function parameter
12034 /* Get the Ith type. */
12035 type
= TREE_VEC_ELT (expanded_types
, i
);
12037 /* Rename the parameter to include the index. */
12039 = make_ith_pack_parameter_name (DECL_NAME (r
), i
);
12042 /* We're dealing with a normal parameter. */
12043 type
= tsubst (TREE_TYPE (t
), args
, complain
, in_decl
);
12045 type
= type_decays_to (type
);
12046 TREE_TYPE (r
) = type
;
12047 cp_apply_type_quals_to_decl (cp_type_quals (type
), r
);
12049 if (DECL_INITIAL (r
))
12051 if (TREE_CODE (DECL_INITIAL (r
)) != TEMPLATE_PARM_INDEX
)
12052 DECL_INITIAL (r
) = TREE_TYPE (r
);
12054 DECL_INITIAL (r
) = tsubst (DECL_INITIAL (r
), args
,
12055 complain
, in_decl
);
12058 DECL_CONTEXT (r
) = NULL_TREE
;
12060 if (!DECL_TEMPLATE_PARM_P (r
))
12061 DECL_ARG_TYPE (r
) = type_passed_as (type
);
12063 apply_late_template_attributes (&r
, DECL_ATTRIBUTES (r
), 0,
12064 args
, complain
, in_decl
);
12066 /* Keep track of the first new parameter we
12067 generate. That's what will be returned to the
12072 /* Build a proper chain of parameters when substituting
12073 into a function parameter pack. */
12075 DECL_CHAIN (prev_r
) = r
;
12078 /* If cp_unevaluated_operand is set, we're just looking for a
12079 single dummy parameter, so don't keep going. */
12080 if (DECL_CHAIN (t
) && !cp_unevaluated_operand
)
12081 DECL_CHAIN (r
) = tsubst (DECL_CHAIN (t
), args
,
12082 complain
, DECL_CHAIN (t
));
12084 /* FIRST_R contains the start of the chain we've built. */
12091 tree type
= NULL_TREE
;
12092 tree vec
= NULL_TREE
;
12093 tree expanded_types
= NULL_TREE
;
12096 if (PACK_EXPANSION_P (TREE_TYPE (t
)))
12098 /* This field is a lambda capture pack. Return a TREE_VEC of
12099 the expanded fields to instantiate_class_template_1 and
12100 store them in the specializations hash table as a
12101 NONTYPE_ARGUMENT_PACK so that tsubst_copy can find them. */
12102 expanded_types
= tsubst_pack_expansion (TREE_TYPE (t
), args
,
12103 complain
, in_decl
);
12104 if (TREE_CODE (expanded_types
) == TREE_VEC
)
12106 len
= TREE_VEC_LENGTH (expanded_types
);
12107 vec
= make_tree_vec (len
);
12111 /* All we did was update the type. Make a note of that. */
12112 type
= expanded_types
;
12113 expanded_types
= NULL_TREE
;
12117 for (int i
= 0; i
< len
; ++i
)
12120 if (expanded_types
)
12122 type
= TREE_VEC_ELT (expanded_types
, i
);
12124 = make_ith_pack_parameter_name (DECL_NAME (r
), i
);
12127 type
= tsubst (TREE_TYPE (t
), args
, complain
, in_decl
);
12129 if (type
== error_mark_node
)
12130 RETURN (error_mark_node
);
12131 TREE_TYPE (r
) = type
;
12132 cp_apply_type_quals_to_decl (cp_type_quals (type
), r
);
12134 if (DECL_C_BIT_FIELD (r
))
12135 /* For bit-fields, DECL_INITIAL gives the number of bits. For
12136 non-bit-fields DECL_INITIAL is a non-static data member
12137 initializer, which gets deferred instantiation. */
12139 = tsubst_expr (DECL_INITIAL (t
), args
,
12141 /*integral_constant_expression_p=*/true);
12142 else if (DECL_INITIAL (t
))
12144 /* Set up DECL_TEMPLATE_INFO so that we can get at the
12145 NSDMI in perform_member_init. Still set DECL_INITIAL
12146 so that we know there is one. */
12147 DECL_INITIAL (r
) = void_node
;
12148 gcc_assert (DECL_LANG_SPECIFIC (r
) == NULL
);
12149 retrofit_lang_decl (r
);
12150 DECL_TEMPLATE_INFO (r
) = build_template_info (t
, args
);
12152 /* We don't have to set DECL_CONTEXT here; it is set by
12153 finish_member_declaration. */
12154 DECL_CHAIN (r
) = NULL_TREE
;
12156 apply_late_template_attributes (&r
, DECL_ATTRIBUTES (r
), 0,
12157 args
, complain
, in_decl
);
12160 TREE_VEC_ELT (vec
, i
) = r
;
12166 tree pack
= make_node (NONTYPE_ARGUMENT_PACK
);
12167 tree tpack
= cxx_make_type (TYPE_ARGUMENT_PACK
);
12168 SET_ARGUMENT_PACK_ARGS (pack
, vec
);
12169 SET_ARGUMENT_PACK_ARGS (tpack
, expanded_types
);
12170 TREE_TYPE (pack
) = tpack
;
12171 register_specialization (pack
, t
, args
, false, 0);
12177 /* We reach here only for member using decls. We also need to check
12178 uses_template_parms because DECL_DEPENDENT_P is not set for a
12179 using-declaration that designates a member of the current
12180 instantiation (c++/53549). */
12181 if (DECL_DEPENDENT_P (t
)
12182 || uses_template_parms (USING_DECL_SCOPE (t
)))
12184 tree inst_scope
= tsubst_copy (USING_DECL_SCOPE (t
), args
,
12185 complain
, in_decl
);
12186 tree name
= tsubst_copy (DECL_NAME (t
), args
, complain
, in_decl
);
12187 r
= do_class_using_decl (inst_scope
, name
);
12189 r
= error_mark_node
;
12192 TREE_PROTECTED (r
) = TREE_PROTECTED (t
);
12193 TREE_PRIVATE (r
) = TREE_PRIVATE (t
);
12199 DECL_CHAIN (r
) = NULL_TREE
;
12206 tree argvec
= NULL_TREE
;
12207 tree gen_tmpl
= NULL_TREE
;
12209 tree tmpl
= NULL_TREE
;
12211 tree type
= NULL_TREE
;
12214 if (TREE_TYPE (t
) == error_mark_node
)
12215 RETURN (error_mark_node
);
12217 if (TREE_CODE (t
) == TYPE_DECL
12218 && t
== TYPE_MAIN_DECL (TREE_TYPE (t
)))
12220 /* If this is the canonical decl, we don't have to
12221 mess with instantiations, and often we can't (for
12222 typename, template type parms and such). Note that
12223 TYPE_NAME is not correct for the above test if
12224 we've copied the type for a typedef. */
12225 type
= tsubst (TREE_TYPE (t
), args
, complain
, in_decl
);
12226 if (type
== error_mark_node
)
12227 RETURN (error_mark_node
);
12228 r
= TYPE_NAME (type
);
12232 /* Check to see if we already have the specialization we
12235 if (DECL_CLASS_SCOPE_P (t
) || DECL_NAMESPACE_SCOPE_P (t
))
12237 /* T is a static data member or namespace-scope entity.
12238 We have to substitute into namespace-scope variables
12239 (not just variable templates) because of cases like:
12241 template <class T> void f() { extern T t; }
12243 where the entity referenced is not known until
12244 instantiation time. */
12246 ctx
= DECL_CONTEXT (t
);
12247 if (DECL_CLASS_SCOPE_P (t
))
12249 ctx
= tsubst_aggr_type (ctx
, args
,
12251 in_decl
, /*entering_scope=*/1);
12252 /* If CTX is unchanged, then T is in fact the
12253 specialization we want. That situation occurs when
12254 referencing a static data member within in its own
12255 class. We can use pointer equality, rather than
12256 same_type_p, because DECL_CONTEXT is always
12258 if (ctx
== DECL_CONTEXT (t
)
12259 /* ... unless T is a member template; in which
12260 case our caller can be willing to create a
12261 specialization of that template represented
12263 && !(DECL_TI_TEMPLATE (t
)
12264 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (t
))))
12270 tmpl
= DECL_TI_TEMPLATE (t
);
12271 gen_tmpl
= most_general_template (tmpl
);
12272 argvec
= tsubst (DECL_TI_ARGS (t
), args
, complain
, in_decl
);
12273 if (argvec
!= error_mark_node
)
12274 argvec
= (coerce_innermost_template_parms
12275 (DECL_TEMPLATE_PARMS (gen_tmpl
),
12276 argvec
, t
, complain
,
12277 /*all*/true, /*defarg*/true));
12278 if (argvec
== error_mark_node
)
12279 RETURN (error_mark_node
);
12280 hash
= hash_tmpl_and_args (gen_tmpl
, argvec
);
12281 spec
= retrieve_specialization (gen_tmpl
, argvec
, hash
);
12286 /* A local variable. */
12288 /* Subsequent calls to pushdecl will fill this in. */
12290 spec
= retrieve_local_specialization (t
);
12292 /* If we already have the specialization we need, there is
12293 nothing more to do. */
12300 /* Create a new node for the specialization we need. */
12302 if (type
== NULL_TREE
)
12304 if (is_typedef_decl (t
))
12305 type
= DECL_ORIGINAL_TYPE (t
);
12307 type
= TREE_TYPE (t
);
12309 && VAR_HAD_UNKNOWN_BOUND (t
)
12310 && type
!= error_mark_node
)
12311 type
= strip_array_domain (type
);
12312 type
= tsubst (type
, args
, complain
, in_decl
);
12316 /* Even if the original location is out of scope, the
12317 newly substituted one is not. */
12318 DECL_DEAD_FOR_LOCAL (r
) = 0;
12319 DECL_INITIALIZED_P (r
) = 0;
12320 DECL_TEMPLATE_INSTANTIATED (r
) = 0;
12321 if (type
== error_mark_node
)
12322 RETURN (error_mark_node
);
12323 if (TREE_CODE (type
) == FUNCTION_TYPE
)
12325 /* It may seem that this case cannot occur, since:
12330 declares a function, not a variable. However:
12333 template <typename T> void g() { T t; }
12334 template void g<f>();
12336 is an attempt to declare a variable with function
12338 error ("variable %qD has function type",
12339 /* R is not yet sufficiently initialized, so we
12340 just use its name. */
12342 RETURN (error_mark_node
);
12344 type
= complete_type (type
);
12345 /* Wait until cp_finish_decl to set this again, to handle
12346 circular dependency (template/instantiate6.C). */
12347 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r
) = 0;
12348 type
= check_var_type (DECL_NAME (r
), type
);
12350 if (DECL_HAS_VALUE_EXPR_P (t
))
12352 tree ve
= DECL_VALUE_EXPR (t
);
12353 ve
= tsubst_expr (ve
, args
, complain
, in_decl
,
12354 /*constant_expression_p=*/false);
12355 if (REFERENCE_REF_P (ve
))
12357 gcc_assert (TREE_CODE (type
) == REFERENCE_TYPE
);
12358 ve
= TREE_OPERAND (ve
, 0);
12360 SET_DECL_VALUE_EXPR (r
, ve
);
12362 if (CP_DECL_THREAD_LOCAL_P (r
)
12363 && !processing_template_decl
)
12364 set_decl_tls_model (r
, decl_default_tls_model (r
));
12366 else if (DECL_SELF_REFERENCE_P (t
))
12367 SET_DECL_SELF_REFERENCE_P (r
);
12368 TREE_TYPE (r
) = type
;
12369 cp_apply_type_quals_to_decl (cp_type_quals (type
), r
);
12370 DECL_CONTEXT (r
) = ctx
;
12371 /* Clear out the mangled name and RTL for the instantiation. */
12372 SET_DECL_ASSEMBLER_NAME (r
, NULL_TREE
);
12373 if (CODE_CONTAINS_STRUCT (TREE_CODE (t
), TS_DECL_WRTL
))
12374 SET_DECL_RTL (r
, NULL
);
12375 /* The initializer must not be expanded until it is required;
12376 see [temp.inst]. */
12377 DECL_INITIAL (r
) = NULL_TREE
;
12379 DECL_MODE (r
) = VOIDmode
;
12380 if (CODE_CONTAINS_STRUCT (TREE_CODE (t
), TS_DECL_WRTL
))
12381 SET_DECL_RTL (r
, NULL
);
12382 DECL_SIZE (r
) = DECL_SIZE_UNIT (r
) = 0;
12385 /* Possibly limit visibility based on template args. */
12386 DECL_VISIBILITY (r
) = VISIBILITY_DEFAULT
;
12387 if (DECL_VISIBILITY_SPECIFIED (t
))
12389 DECL_VISIBILITY_SPECIFIED (r
) = 0;
12390 DECL_ATTRIBUTES (r
)
12391 = remove_attribute ("visibility", DECL_ATTRIBUTES (r
));
12393 determine_visibility (r
);
12398 /* A static data member declaration is always marked
12399 external when it is declared in-class, even if an
12400 initializer is present. We mimic the non-template
12401 processing here. */
12402 DECL_EXTERNAL (r
) = 1;
12403 if (DECL_NAMESPACE_SCOPE_P (t
))
12404 DECL_NOT_REALLY_EXTERN (r
) = 1;
12406 DECL_TEMPLATE_INFO (r
) = build_template_info (tmpl
, argvec
);
12407 SET_DECL_IMPLICIT_INSTANTIATION (r
);
12408 register_specialization (r
, gen_tmpl
, argvec
, false, hash
);
12412 if (DECL_LANG_SPECIFIC (r
))
12413 DECL_TEMPLATE_INFO (r
) = NULL_TREE
;
12414 if (!cp_unevaluated_operand
)
12415 register_local_specialization (r
, t
);
12418 DECL_CHAIN (r
) = NULL_TREE
;
12420 apply_late_template_attributes (&r
, DECL_ATTRIBUTES (r
),
12422 args
, complain
, in_decl
);
12424 /* Preserve a typedef that names a type. */
12425 if (is_typedef_decl (r
))
12427 DECL_ORIGINAL_TYPE (r
) = NULL_TREE
;
12428 set_underlying_type (r
);
12429 if (TYPE_DECL_ALIAS_P (r
) && type
!= error_mark_node
)
12430 /* An alias template specialization can be dependent
12431 even if its underlying type is not. */
12432 TYPE_DEPENDENT_P_VALID (TREE_TYPE (r
)) = false;
12435 layout_decl (r
, 0);
12440 gcc_unreachable ();
12445 /* Restore the file and line information. */
12446 input_location
= saved_loc
;
12451 /* Substitute into the ARG_TYPES of a function type.
12452 If END is a TREE_CHAIN, leave it and any following types
12456 tsubst_arg_types (tree arg_types
,
12459 tsubst_flags_t complain
,
12462 tree remaining_arg_types
;
12463 tree type
= NULL_TREE
;
12465 tree expanded_args
= NULL_TREE
;
12468 if (!arg_types
|| arg_types
== void_list_node
|| arg_types
== end
)
12471 remaining_arg_types
= tsubst_arg_types (TREE_CHAIN (arg_types
),
12472 args
, end
, complain
, in_decl
);
12473 if (remaining_arg_types
== error_mark_node
)
12474 return error_mark_node
;
12476 if (PACK_EXPANSION_P (TREE_VALUE (arg_types
)))
12478 /* For a pack expansion, perform substitution on the
12479 entire expression. Later on, we'll handle the arguments
12481 expanded_args
= tsubst_pack_expansion (TREE_VALUE (arg_types
),
12482 args
, complain
, in_decl
);
12484 if (TREE_CODE (expanded_args
) == TREE_VEC
)
12485 /* So that we'll spin through the parameters, one by one. */
12486 i
= TREE_VEC_LENGTH (expanded_args
);
12489 /* We only partially substituted into the parameter
12490 pack. Our type is TYPE_PACK_EXPANSION. */
12491 type
= expanded_args
;
12492 expanded_args
= NULL_TREE
;
12500 type
= TREE_VEC_ELT (expanded_args
, i
);
12502 type
= tsubst (TREE_VALUE (arg_types
), args
, complain
, in_decl
);
12504 if (type
== error_mark_node
)
12505 return error_mark_node
;
12506 if (VOID_TYPE_P (type
))
12508 if (complain
& tf_error
)
12510 error ("invalid parameter type %qT", type
);
12512 error ("in declaration %q+D", in_decl
);
12514 return error_mark_node
;
12517 if (abstract_virtuals_error_sfinae (ACU_PARM
, type
, complain
))
12518 return error_mark_node
;
12520 /* Do array-to-pointer, function-to-pointer conversion, and ignore
12521 top-level qualifiers as required. */
12522 type
= cv_unqualified (type_decays_to (type
));
12524 /* We do not substitute into default arguments here. The standard
12525 mandates that they be instantiated only when needed, which is
12526 done in build_over_call. */
12527 default_arg
= TREE_PURPOSE (arg_types
);
12529 if (default_arg
&& TREE_CODE (default_arg
) == DEFAULT_ARG
)
12531 /* We've instantiated a template before its default arguments
12532 have been parsed. This can happen for a nested template
12533 class, and is not an error unless we require the default
12534 argument in a call of this function. */
12535 remaining_arg_types
=
12536 tree_cons (default_arg
, type
, remaining_arg_types
);
12537 vec_safe_push (DEFARG_INSTANTIATIONS(default_arg
), remaining_arg_types
);
12540 remaining_arg_types
=
12541 hash_tree_cons (default_arg
, type
, remaining_arg_types
);
12544 return remaining_arg_types
;
12547 /* Substitute into a FUNCTION_TYPE or METHOD_TYPE. This routine does
12548 *not* handle the exception-specification for FNTYPE, because the
12549 initial substitution of explicitly provided template parameters
12550 during argument deduction forbids substitution into the
12551 exception-specification:
12555 All references in the function type of the function template to the
12556 corresponding template parameters are replaced by the specified tem-
12557 plate argument values. If a substitution in a template parameter or
12558 in the function type of the function template results in an invalid
12559 type, type deduction fails. [Note: The equivalent substitution in
12560 exception specifications is done only when the function is instanti-
12561 ated, at which point a program is ill-formed if the substitution
12562 results in an invalid type.] */
12565 tsubst_function_type (tree t
,
12567 tsubst_flags_t complain
,
12571 tree arg_types
= NULL_TREE
;
12574 /* The TYPE_CONTEXT is not used for function/method types. */
12575 gcc_assert (TYPE_CONTEXT (t
) == NULL_TREE
);
12577 /* DR 1227: Mixing immediate and non-immediate contexts in deduction
12579 bool late_return_type_p
= TYPE_HAS_LATE_RETURN_TYPE (t
);
12581 if (late_return_type_p
)
12583 /* Substitute the argument types. */
12584 arg_types
= tsubst_arg_types (TYPE_ARG_TYPES (t
), args
, NULL_TREE
,
12585 complain
, in_decl
);
12586 if (arg_types
== error_mark_node
)
12587 return error_mark_node
;
12589 tree save_ccp
= current_class_ptr
;
12590 tree save_ccr
= current_class_ref
;
12591 tree this_type
= (TREE_CODE (t
) == METHOD_TYPE
12592 ? TREE_TYPE (TREE_VALUE (arg_types
)) : NULL_TREE
);
12593 bool do_inject
= this_type
&& CLASS_TYPE_P (this_type
);
12596 /* DR 1207: 'this' is in scope in the trailing return type. */
12597 inject_this_parameter (this_type
, cp_type_quals (this_type
));
12600 /* Substitute the return type. */
12601 return_type
= tsubst (TREE_TYPE (t
), args
, complain
, in_decl
);
12605 current_class_ptr
= save_ccp
;
12606 current_class_ref
= save_ccr
;
12610 /* Substitute the return type. */
12611 return_type
= tsubst (TREE_TYPE (t
), args
, complain
, in_decl
);
12613 if (return_type
== error_mark_node
)
12614 return error_mark_node
;
12615 /* DR 486 clarifies that creation of a function type with an
12616 invalid return type is a deduction failure. */
12617 if (TREE_CODE (return_type
) == ARRAY_TYPE
12618 || TREE_CODE (return_type
) == FUNCTION_TYPE
)
12620 if (complain
& tf_error
)
12622 if (TREE_CODE (return_type
) == ARRAY_TYPE
)
12623 error ("function returning an array");
12625 error ("function returning a function");
12627 return error_mark_node
;
12630 if (abstract_virtuals_error_sfinae (ACU_RETURN
, return_type
, complain
))
12631 return error_mark_node
;
12633 if (!late_return_type_p
)
12635 /* Substitute the argument types. */
12636 arg_types
= tsubst_arg_types (TYPE_ARG_TYPES (t
), args
, NULL_TREE
,
12637 complain
, in_decl
);
12638 if (arg_types
== error_mark_node
)
12639 return error_mark_node
;
12642 /* Construct a new type node and return it. */
12643 if (TREE_CODE (t
) == FUNCTION_TYPE
)
12645 fntype
= build_function_type (return_type
, arg_types
);
12646 fntype
= apply_memfn_quals (fntype
,
12647 type_memfn_quals (t
),
12648 type_memfn_rqual (t
));
12652 tree r
= TREE_TYPE (TREE_VALUE (arg_types
));
12653 /* Don't pick up extra function qualifiers from the basetype. */
12654 r
= cp_build_qualified_type_real (r
, type_memfn_quals (t
), complain
);
12655 if (! MAYBE_CLASS_TYPE_P (r
))
12659 Type deduction may fail for any of the following
12662 -- Attempting to create "pointer to member of T" when T
12663 is not a class type. */
12664 if (complain
& tf_error
)
12665 error ("creating pointer to member function of non-class type %qT",
12667 return error_mark_node
;
12670 fntype
= build_method_type_directly (r
, return_type
,
12671 TREE_CHAIN (arg_types
));
12672 fntype
= build_ref_qualified_type (fntype
, type_memfn_rqual (t
));
12674 fntype
= cp_build_type_attribute_variant (fntype
, TYPE_ATTRIBUTES (t
));
12676 if (late_return_type_p
)
12677 TYPE_HAS_LATE_RETURN_TYPE (fntype
) = 1;
12682 /* FNTYPE is a FUNCTION_TYPE or METHOD_TYPE. Substitute the template
12683 ARGS into that specification, and return the substituted
12684 specification. If there is no specification, return NULL_TREE. */
12687 tsubst_exception_specification (tree fntype
,
12689 tsubst_flags_t complain
,
12696 specs
= TYPE_RAISES_EXCEPTIONS (fntype
);
12697 new_specs
= NULL_TREE
;
12698 if (specs
&& TREE_PURPOSE (specs
))
12700 /* A noexcept-specifier. */
12701 tree expr
= TREE_PURPOSE (specs
);
12702 if (TREE_CODE (expr
) == INTEGER_CST
)
12706 /* Defer instantiation of noexcept-specifiers to avoid
12707 excessive instantiations (c++/49107). */
12708 new_specs
= make_node (DEFERRED_NOEXCEPT
);
12709 if (DEFERRED_NOEXCEPT_SPEC_P (specs
))
12711 /* We already partially instantiated this member template,
12712 so combine the new args with the old. */
12713 DEFERRED_NOEXCEPT_PATTERN (new_specs
)
12714 = DEFERRED_NOEXCEPT_PATTERN (expr
);
12715 DEFERRED_NOEXCEPT_ARGS (new_specs
)
12716 = add_to_template_args (DEFERRED_NOEXCEPT_ARGS (expr
), args
);
12720 DEFERRED_NOEXCEPT_PATTERN (new_specs
) = expr
;
12721 DEFERRED_NOEXCEPT_ARGS (new_specs
) = args
;
12725 new_specs
= tsubst_copy_and_build
12726 (expr
, args
, complain
, in_decl
, /*function_p=*/false,
12727 /*integral_constant_expression_p=*/true);
12728 new_specs
= build_noexcept_spec (new_specs
, complain
);
12732 if (! TREE_VALUE (specs
))
12739 tree expanded_specs
= NULL_TREE
;
12741 if (PACK_EXPANSION_P (TREE_VALUE (specs
)))
12743 /* Expand the pack expansion type. */
12744 expanded_specs
= tsubst_pack_expansion (TREE_VALUE (specs
),
12748 if (expanded_specs
== error_mark_node
)
12749 return error_mark_node
;
12750 else if (TREE_CODE (expanded_specs
) == TREE_VEC
)
12751 len
= TREE_VEC_LENGTH (expanded_specs
);
12754 /* We're substituting into a member template, so
12755 we got a TYPE_PACK_EXPANSION back. Add that
12756 expansion and move on. */
12757 gcc_assert (TREE_CODE (expanded_specs
)
12758 == TYPE_PACK_EXPANSION
);
12759 new_specs
= add_exception_specifier (new_specs
,
12762 specs
= TREE_CHAIN (specs
);
12767 for (i
= 0; i
< len
; ++i
)
12769 if (expanded_specs
)
12770 spec
= TREE_VEC_ELT (expanded_specs
, i
);
12772 spec
= tsubst (TREE_VALUE (specs
), args
, complain
, in_decl
);
12773 if (spec
== error_mark_node
)
12775 new_specs
= add_exception_specifier (new_specs
, spec
,
12779 specs
= TREE_CHAIN (specs
);
12785 /* Take the tree structure T and replace template parameters used
12786 therein with the argument vector ARGS. IN_DECL is an associated
12787 decl for diagnostics. If an error occurs, returns ERROR_MARK_NODE.
12788 Issue error and warning messages under control of COMPLAIN. Note
12789 that we must be relatively non-tolerant of extensions here, in
12790 order to preserve conformance; if we allow substitutions that
12791 should not be allowed, we may allow argument deductions that should
12792 not succeed, and therefore report ambiguous overload situations
12793 where there are none. In theory, we could allow the substitution,
12794 but indicate that it should have failed, and allow our caller to
12795 make sure that the right thing happens, but we don't try to do this
12798 This function is used for dealing with types, decls and the like;
12799 for expressions, use tsubst_expr or tsubst_copy. */
12802 tsubst (tree t
, tree args
, tsubst_flags_t complain
, tree in_decl
)
12804 enum tree_code code
;
12805 tree type
, r
= NULL_TREE
;
12807 if (t
== NULL_TREE
|| t
== error_mark_node
12808 || t
== integer_type_node
12809 || t
== void_type_node
12810 || t
== char_type_node
12811 || t
== unknown_type_node
12812 || TREE_CODE (t
) == NAMESPACE_DECL
12813 || TREE_CODE (t
) == TRANSLATION_UNIT_DECL
)
12817 return tsubst_decl (t
, args
, complain
);
12819 if (args
== NULL_TREE
)
12822 code
= TREE_CODE (t
);
12824 if (code
== IDENTIFIER_NODE
)
12825 type
= IDENTIFIER_TYPE_VALUE (t
);
12827 type
= TREE_TYPE (t
);
12829 gcc_assert (type
!= unknown_type_node
);
12831 /* Reuse typedefs. We need to do this to handle dependent attributes,
12832 such as attribute aligned. */
12834 && typedef_variant_p (t
))
12836 tree decl
= TYPE_NAME (t
);
12838 if (alias_template_specialization_p (t
))
12840 /* DECL represents an alias template and we want to
12842 tree tmpl
= most_general_template (DECL_TI_TEMPLATE (decl
));
12843 tree gen_args
= tsubst (DECL_TI_ARGS (decl
), args
, complain
, in_decl
);
12844 r
= instantiate_alias_template (tmpl
, gen_args
, complain
);
12846 else if (DECL_CLASS_SCOPE_P (decl
)
12847 && CLASSTYPE_TEMPLATE_INFO (DECL_CONTEXT (decl
))
12848 && uses_template_parms (DECL_CONTEXT (decl
)))
12850 tree tmpl
= most_general_template (DECL_TI_TEMPLATE (decl
));
12851 tree gen_args
= tsubst (DECL_TI_ARGS (decl
), args
, complain
, in_decl
);
12852 r
= retrieve_specialization (tmpl
, gen_args
, 0);
12854 else if (DECL_FUNCTION_SCOPE_P (decl
)
12855 && DECL_TEMPLATE_INFO (DECL_CONTEXT (decl
))
12856 && uses_template_parms (DECL_TI_ARGS (DECL_CONTEXT (decl
))))
12857 r
= retrieve_local_specialization (decl
);
12859 /* The typedef is from a non-template context. */
12865 r
= cp_build_qualified_type_real
12866 (r
, cp_type_quals (t
) | cp_type_quals (r
),
12867 complain
| tf_ignore_bad_quals
);
12872 /* We don't have an instantiation yet, so drop the typedef. */
12873 int quals
= cp_type_quals (t
);
12874 t
= DECL_ORIGINAL_TYPE (decl
);
12875 t
= cp_build_qualified_type_real (t
, quals
,
12876 complain
| tf_ignore_bad_quals
);
12881 && code
!= TYPENAME_TYPE
12882 && code
!= TEMPLATE_TYPE_PARM
12883 && code
!= IDENTIFIER_NODE
12884 && code
!= FUNCTION_TYPE
12885 && code
!= METHOD_TYPE
)
12886 type
= tsubst (type
, args
, complain
, in_decl
);
12887 if (type
== error_mark_node
)
12888 return error_mark_node
;
12894 case ENUMERAL_TYPE
:
12895 return tsubst_aggr_type (t
, args
, complain
, in_decl
,
12896 /*entering_scope=*/0);
12899 case IDENTIFIER_NODE
:
12910 if (t
== integer_type_node
)
12913 if (TREE_CODE (TYPE_MIN_VALUE (t
)) == INTEGER_CST
12914 && TREE_CODE (TYPE_MAX_VALUE (t
)) == INTEGER_CST
)
12918 tree max
, omax
= TREE_OPERAND (TYPE_MAX_VALUE (t
), 0);
12920 max
= tsubst_expr (omax
, args
, complain
, in_decl
,
12921 /*integral_constant_expression_p=*/false);
12923 /* Fix up type of the magic NOP_EXPR with TREE_SIDE_EFFECTS if
12925 if (TREE_CODE (max
) == NOP_EXPR
12926 && TREE_SIDE_EFFECTS (omax
)
12927 && !TREE_TYPE (max
))
12928 TREE_TYPE (max
) = TREE_TYPE (TREE_OPERAND (max
, 0));
12930 /* If we're in a partial instantiation, preserve the magic NOP_EXPR
12931 with TREE_SIDE_EFFECTS that indicates this is not an integral
12932 constant expression. */
12933 if (processing_template_decl
12934 && TREE_SIDE_EFFECTS (omax
) && TREE_CODE (omax
) == NOP_EXPR
)
12936 gcc_assert (TREE_CODE (max
) == NOP_EXPR
);
12937 TREE_SIDE_EFFECTS (max
) = 1;
12940 return compute_array_index_type (NULL_TREE
, max
, complain
);
12943 case TEMPLATE_TYPE_PARM
:
12944 case TEMPLATE_TEMPLATE_PARM
:
12945 case BOUND_TEMPLATE_TEMPLATE_PARM
:
12946 case TEMPLATE_PARM_INDEX
:
12951 tree arg
= NULL_TREE
;
12953 /* Early in template argument deduction substitution, we don't
12954 want to reduce the level of 'auto', or it will be confused
12955 with a normal template parm in subsequent deduction. */
12956 if (is_auto (t
) && (complain
& tf_partial
))
12961 gcc_assert (TREE_VEC_LENGTH (args
) > 0);
12962 template_parm_level_and_index (t
, &level
, &idx
);
12964 levels
= TMPL_ARGS_DEPTH (args
);
12965 if (level
<= levels
12966 && TREE_VEC_LENGTH (TMPL_ARGS_LEVEL (args
, level
)) > 0)
12968 arg
= TMPL_ARG (args
, level
, idx
);
12970 if (arg
&& TREE_CODE (arg
) == ARGUMENT_PACK_SELECT
)
12972 /* See through ARGUMENT_PACK_SELECT arguments. */
12973 arg
= ARGUMENT_PACK_SELECT_ARG (arg
);
12974 /* If the selected argument is an expansion E, that most
12975 likely means we were called from
12976 gen_elem_of_pack_expansion_instantiation during the
12977 substituting of pack an argument pack (which Ith
12978 element is a pack expansion, where I is
12979 ARGUMENT_PACK_SELECT_INDEX) into a pack expansion.
12980 In this case, the Ith element resulting from this
12981 substituting is going to be a pack expansion, which
12982 pattern is the pattern of E. Let's return the
12984 gen_elem_of_pack_expansion_instantiation will
12985 build the resulting pack expansion from it. */
12986 if (PACK_EXPANSION_P (arg
))
12988 /* Make sure we aren't throwing away arg info. */
12989 gcc_assert (!PACK_EXPANSION_EXTRA_ARGS (arg
));
12990 arg
= PACK_EXPANSION_PATTERN (arg
);
12995 if (arg
== error_mark_node
)
12996 return error_mark_node
;
12997 else if (arg
!= NULL_TREE
)
12999 if (ARGUMENT_PACK_P (arg
))
13000 /* If ARG is an argument pack, we don't actually want to
13001 perform a substitution here, because substitutions
13002 for argument packs are only done
13003 element-by-element. We can get to this point when
13004 substituting the type of a non-type template
13005 parameter pack, when that type actually contains
13006 template parameter packs from an outer template, e.g.,
13008 template<typename... Types> struct A {
13009 template<Types... Values> struct B { };
13013 if (code
== TEMPLATE_TYPE_PARM
)
13016 gcc_assert (TYPE_P (arg
));
13018 quals
= cp_type_quals (arg
) | cp_type_quals (t
);
13020 return cp_build_qualified_type_real
13021 (arg
, quals
, complain
| tf_ignore_bad_quals
);
13023 else if (code
== BOUND_TEMPLATE_TEMPLATE_PARM
)
13025 /* We are processing a type constructed from a
13026 template template parameter. */
13027 tree argvec
= tsubst (TYPE_TI_ARGS (t
),
13028 args
, complain
, in_decl
);
13029 if (argvec
== error_mark_node
)
13030 return error_mark_node
;
13032 gcc_assert (TREE_CODE (arg
) == TEMPLATE_TEMPLATE_PARM
13033 || TREE_CODE (arg
) == TEMPLATE_DECL
13034 || TREE_CODE (arg
) == UNBOUND_CLASS_TEMPLATE
);
13036 if (TREE_CODE (arg
) == UNBOUND_CLASS_TEMPLATE
)
13037 /* Consider this code:
13039 template <template <class> class Template>
13041 template <class Arg> using Bind = Template<Arg>;
13044 template <template <class> class Template, class Arg>
13045 using Instantiate = Template<Arg>; //#0
13047 template <template <class> class Template,
13050 Instantiate<Internal<Template>::template Bind,
13053 When #1 is parsed, the
13054 BOUND_TEMPLATE_TEMPLATE_PARM representing the
13055 parameter `Template' in #0 matches the
13056 UNBOUND_CLASS_TEMPLATE representing the argument
13057 `Internal<Template>::template Bind'; We then want
13058 to assemble the type `Bind<Argument>' that can't
13059 be fully created right now, because
13060 `Internal<Template>' not being complete, the Bind
13061 template cannot be looked up in that context. So
13062 we need to "store" `Bind<Argument>' for later
13063 when the context of Bind becomes complete. Let's
13064 store that in a TYPENAME_TYPE. */
13065 return make_typename_type (TYPE_CONTEXT (arg
),
13066 build_nt (TEMPLATE_ID_EXPR
,
13067 TYPE_IDENTIFIER (arg
),
13072 /* We can get a TEMPLATE_TEMPLATE_PARM here when we
13073 are resolving nested-types in the signature of a
13074 member function templates. Otherwise ARG is a
13075 TEMPLATE_DECL and is the real template to be
13077 if (TREE_CODE (arg
) == TEMPLATE_TEMPLATE_PARM
)
13078 arg
= TYPE_NAME (arg
);
13080 r
= lookup_template_class (arg
,
13082 DECL_CONTEXT (arg
),
13083 /*entering_scope=*/0,
13085 return cp_build_qualified_type_real
13086 (r
, cp_type_quals (t
) | cp_type_quals (r
), complain
);
13089 /* TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX. */
13090 return convert_from_reference (unshare_expr (arg
));
13094 /* This can happen during the attempted tsubst'ing in
13095 unify. This means that we don't yet have any information
13096 about the template parameter in question. */
13099 /* If we get here, we must have been looking at a parm for a
13100 more deeply nested template. Make a new version of this
13101 template parameter, but with a lower level. */
13104 case TEMPLATE_TYPE_PARM
:
13105 case TEMPLATE_TEMPLATE_PARM
:
13106 case BOUND_TEMPLATE_TEMPLATE_PARM
:
13107 if (cp_type_quals (t
))
13109 r
= tsubst (TYPE_MAIN_VARIANT (t
), args
, complain
, in_decl
);
13110 r
= cp_build_qualified_type_real
13111 (r
, cp_type_quals (t
),
13112 complain
| (code
== TEMPLATE_TYPE_PARM
13113 ? tf_ignore_bad_quals
: 0));
13115 else if (TREE_CODE (t
) == TEMPLATE_TYPE_PARM
13116 && PLACEHOLDER_TYPE_CONSTRAINTS (t
)
13117 && (r
= (TEMPLATE_PARM_DESCENDANTS
13118 (TEMPLATE_TYPE_PARM_INDEX (t
))))
13119 && (r
= TREE_TYPE (r
))
13120 && !PLACEHOLDER_TYPE_CONSTRAINTS (r
))
13121 /* Break infinite recursion when substituting the constraints
13122 of a constrained placeholder. */;
13126 TEMPLATE_TYPE_PARM_INDEX (r
)
13127 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (t
),
13128 r
, levels
, args
, complain
);
13129 TYPE_STUB_DECL (r
) = TYPE_NAME (r
) = TEMPLATE_TYPE_DECL (r
);
13130 TYPE_MAIN_VARIANT (r
) = r
;
13131 TYPE_POINTER_TO (r
) = NULL_TREE
;
13132 TYPE_REFERENCE_TO (r
) = NULL_TREE
;
13134 /* Propagate constraints on placeholders. */
13135 if (TREE_CODE (t
) == TEMPLATE_TYPE_PARM
)
13136 if (tree constr
= PLACEHOLDER_TYPE_CONSTRAINTS (t
))
13137 PLACEHOLDER_TYPE_CONSTRAINTS (r
)
13138 = tsubst_constraint (constr
, args
, complain
, in_decl
);
13140 if (TREE_CODE (r
) == TEMPLATE_TEMPLATE_PARM
)
13141 /* We have reduced the level of the template
13142 template parameter, but not the levels of its
13143 template parameters, so canonical_type_parameter
13144 will not be able to find the canonical template
13145 template parameter for this level. Thus, we
13146 require structural equality checking to compare
13147 TEMPLATE_TEMPLATE_PARMs. */
13148 SET_TYPE_STRUCTURAL_EQUALITY (r
);
13149 else if (TYPE_STRUCTURAL_EQUALITY_P (t
))
13150 SET_TYPE_STRUCTURAL_EQUALITY (r
);
13152 TYPE_CANONICAL (r
) = canonical_type_parameter (r
);
13154 if (code
== BOUND_TEMPLATE_TEMPLATE_PARM
)
13156 tree argvec
= tsubst (TYPE_TI_ARGS (t
), args
,
13157 complain
, in_decl
);
13158 if (argvec
== error_mark_node
)
13159 return error_mark_node
;
13161 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (r
)
13162 = build_template_info (TYPE_TI_TEMPLATE (t
), argvec
);
13167 case TEMPLATE_PARM_INDEX
:
13168 r
= reduce_template_parm_level (t
, type
, levels
, args
, complain
);
13172 gcc_unreachable ();
13180 tree purpose
, value
, chain
;
13182 if (t
== void_list_node
)
13185 purpose
= TREE_PURPOSE (t
);
13188 purpose
= tsubst (purpose
, args
, complain
, in_decl
);
13189 if (purpose
== error_mark_node
)
13190 return error_mark_node
;
13192 value
= TREE_VALUE (t
);
13195 value
= tsubst (value
, args
, complain
, in_decl
);
13196 if (value
== error_mark_node
)
13197 return error_mark_node
;
13199 chain
= TREE_CHAIN (t
);
13200 if (chain
&& chain
!= void_type_node
)
13202 chain
= tsubst (chain
, args
, complain
, in_decl
);
13203 if (chain
== error_mark_node
)
13204 return error_mark_node
;
13206 if (purpose
== TREE_PURPOSE (t
)
13207 && value
== TREE_VALUE (t
)
13208 && chain
== TREE_CHAIN (t
))
13210 return hash_tree_cons (purpose
, value
, chain
);
13214 /* We should never be tsubsting a binfo. */
13215 gcc_unreachable ();
13218 /* A vector of template arguments. */
13219 gcc_assert (!type
);
13220 return tsubst_template_args (t
, args
, complain
, in_decl
);
13223 case REFERENCE_TYPE
:
13225 if (type
== TREE_TYPE (t
) && TREE_CODE (type
) != METHOD_TYPE
)
13230 Type deduction may fail for any of the following
13233 -- Attempting to create a pointer to reference type.
13234 -- Attempting to create a reference to a reference type or
13235 a reference to void.
13237 Core issue 106 says that creating a reference to a reference
13238 during instantiation is no longer a cause for failure. We
13239 only enforce this check in strict C++98 mode. */
13240 if ((TREE_CODE (type
) == REFERENCE_TYPE
13241 && (((cxx_dialect
== cxx98
) && flag_iso
) || code
!= REFERENCE_TYPE
))
13242 || (code
== REFERENCE_TYPE
&& VOID_TYPE_P (type
)))
13244 static location_t last_loc
;
13246 /* We keep track of the last time we issued this error
13247 message to avoid spewing a ton of messages during a
13248 single bad template instantiation. */
13249 if (complain
& tf_error
13250 && last_loc
!= input_location
)
13252 if (VOID_TYPE_P (type
))
13253 error ("forming reference to void");
13254 else if (code
== POINTER_TYPE
)
13255 error ("forming pointer to reference type %qT", type
);
13257 error ("forming reference to reference type %qT", type
);
13258 last_loc
= input_location
;
13261 return error_mark_node
;
13263 else if (TREE_CODE (type
) == FUNCTION_TYPE
13264 && (type_memfn_quals (type
) != TYPE_UNQUALIFIED
13265 || type_memfn_rqual (type
) != REF_QUAL_NONE
))
13267 if (complain
& tf_error
)
13269 if (code
== POINTER_TYPE
)
13270 error ("forming pointer to qualified function type %qT",
13273 error ("forming reference to qualified function type %qT",
13276 return error_mark_node
;
13278 else if (code
== POINTER_TYPE
)
13280 r
= build_pointer_type (type
);
13281 if (TREE_CODE (type
) == METHOD_TYPE
)
13282 r
= build_ptrmemfunc_type (r
);
13284 else if (TREE_CODE (type
) == REFERENCE_TYPE
)
13285 /* In C++0x, during template argument substitution, when there is an
13286 attempt to create a reference to a reference type, reference
13287 collapsing is applied as described in [14.3.1/4 temp.arg.type]:
13289 "If a template-argument for a template-parameter T names a type
13290 that is a reference to a type A, an attempt to create the type
13291 'lvalue reference to cv T' creates the type 'lvalue reference to
13292 A,' while an attempt to create the type type rvalue reference to
13293 cv T' creates the type T"
13295 r
= cp_build_reference_type
13297 TYPE_REF_IS_RVALUE (t
) && TYPE_REF_IS_RVALUE (type
));
13299 r
= cp_build_reference_type (type
, TYPE_REF_IS_RVALUE (t
));
13300 r
= cp_build_qualified_type_real (r
, cp_type_quals (t
), complain
);
13302 if (r
!= error_mark_node
)
13303 /* Will this ever be needed for TYPE_..._TO values? */
13310 r
= tsubst (TYPE_OFFSET_BASETYPE (t
), args
, complain
, in_decl
);
13311 if (r
== error_mark_node
|| !MAYBE_CLASS_TYPE_P (r
))
13315 Type deduction may fail for any of the following
13318 -- Attempting to create "pointer to member of T" when T
13319 is not a class type. */
13320 if (complain
& tf_error
)
13321 error ("creating pointer to member of non-class type %qT", r
);
13322 return error_mark_node
;
13324 if (TREE_CODE (type
) == REFERENCE_TYPE
)
13326 if (complain
& tf_error
)
13327 error ("creating pointer to member reference type %qT", type
);
13328 return error_mark_node
;
13330 if (VOID_TYPE_P (type
))
13332 if (complain
& tf_error
)
13333 error ("creating pointer to member of type void");
13334 return error_mark_node
;
13336 gcc_assert (TREE_CODE (type
) != METHOD_TYPE
);
13337 if (TREE_CODE (type
) == FUNCTION_TYPE
)
13339 /* The type of the implicit object parameter gets its
13340 cv-qualifiers from the FUNCTION_TYPE. */
13343 = build_memfn_type (type
, r
, type_memfn_quals (type
),
13344 type_memfn_rqual (type
));
13345 memptr
= build_ptrmemfunc_type (build_pointer_type (method_type
));
13346 return cp_build_qualified_type_real (memptr
, cp_type_quals (t
),
13350 return cp_build_qualified_type_real (build_ptrmem_type (r
, type
),
13354 case FUNCTION_TYPE
:
13359 fntype
= tsubst_function_type (t
, args
, complain
, in_decl
);
13360 if (fntype
== error_mark_node
)
13361 return error_mark_node
;
13363 /* Substitute the exception specification. */
13364 specs
= tsubst_exception_specification (t
, args
, complain
,
13365 in_decl
, /*defer_ok*/true);
13366 if (specs
== error_mark_node
)
13367 return error_mark_node
;
13369 fntype
= build_exception_variant (fntype
, specs
);
13374 tree domain
= tsubst (TYPE_DOMAIN (t
), args
, complain
, in_decl
);
13375 if (domain
== error_mark_node
)
13376 return error_mark_node
;
13378 /* As an optimization, we avoid regenerating the array type if
13379 it will obviously be the same as T. */
13380 if (type
== TREE_TYPE (t
) && domain
== TYPE_DOMAIN (t
))
13383 /* These checks should match the ones in create_array_type_for_decl.
13387 The deduction may fail for any of the following reasons:
13389 -- Attempting to create an array with an element type that
13390 is void, a function type, or a reference type, or [DR337]
13391 an abstract class type. */
13392 if (VOID_TYPE_P (type
)
13393 || TREE_CODE (type
) == FUNCTION_TYPE
13394 || (TREE_CODE (type
) == ARRAY_TYPE
13395 && TYPE_DOMAIN (type
) == NULL_TREE
)
13396 || TREE_CODE (type
) == REFERENCE_TYPE
)
13398 if (complain
& tf_error
)
13399 error ("creating array of %qT", type
);
13400 return error_mark_node
;
13403 if (abstract_virtuals_error_sfinae (ACU_ARRAY
, type
, complain
))
13404 return error_mark_node
;
13406 r
= build_cplus_array_type (type
, domain
);
13408 if (TYPE_USER_ALIGN (t
))
13410 SET_TYPE_ALIGN (r
, TYPE_ALIGN (t
));
13411 TYPE_USER_ALIGN (r
) = 1;
13417 case TYPENAME_TYPE
:
13419 tree ctx
= tsubst_aggr_type (TYPE_CONTEXT (t
), args
, complain
,
13420 in_decl
, /*entering_scope=*/1);
13421 tree f
= tsubst_copy (TYPENAME_TYPE_FULLNAME (t
), args
,
13422 complain
, in_decl
);
13424 if (ctx
== error_mark_node
|| f
== error_mark_node
)
13425 return error_mark_node
;
13427 if (!MAYBE_CLASS_TYPE_P (ctx
))
13429 if (complain
& tf_error
)
13430 error ("%qT is not a class, struct, or union type", ctx
);
13431 return error_mark_node
;
13433 else if (!uses_template_parms (ctx
) && !TYPE_BEING_DEFINED (ctx
))
13435 /* Normally, make_typename_type does not require that the CTX
13436 have complete type in order to allow things like:
13438 template <class T> struct S { typename S<T>::X Y; };
13440 But, such constructs have already been resolved by this
13441 point, so here CTX really should have complete type, unless
13442 it's a partial instantiation. */
13443 ctx
= complete_type (ctx
);
13444 if (!COMPLETE_TYPE_P (ctx
))
13446 if (complain
& tf_error
)
13447 cxx_incomplete_type_error (NULL_TREE
, ctx
);
13448 return error_mark_node
;
13452 f
= make_typename_type (ctx
, f
, typename_type
,
13453 complain
| tf_keep_type_decl
);
13454 if (f
== error_mark_node
)
13456 if (TREE_CODE (f
) == TYPE_DECL
)
13458 complain
|= tf_ignore_bad_quals
;
13462 if (TREE_CODE (f
) != TYPENAME_TYPE
)
13464 if (TYPENAME_IS_ENUM_P (t
) && TREE_CODE (f
) != ENUMERAL_TYPE
)
13466 if (complain
& tf_error
)
13467 error ("%qT resolves to %qT, which is not an enumeration type",
13470 return error_mark_node
;
13472 else if (TYPENAME_IS_CLASS_P (t
) && !CLASS_TYPE_P (f
))
13474 if (complain
& tf_error
)
13475 error ("%qT resolves to %qT, which is is not a class type",
13478 return error_mark_node
;
13482 return cp_build_qualified_type_real
13483 (f
, cp_type_quals (f
) | cp_type_quals (t
), complain
);
13486 case UNBOUND_CLASS_TEMPLATE
:
13488 tree ctx
= tsubst_aggr_type (TYPE_CONTEXT (t
), args
, complain
,
13489 in_decl
, /*entering_scope=*/1);
13490 tree name
= TYPE_IDENTIFIER (t
);
13491 tree parm_list
= DECL_TEMPLATE_PARMS (TYPE_NAME (t
));
13493 if (ctx
== error_mark_node
|| name
== error_mark_node
)
13494 return error_mark_node
;
13497 parm_list
= tsubst_template_parms (parm_list
, args
, complain
);
13498 return make_unbound_class_template (ctx
, name
, parm_list
, complain
);
13505 ++cp_unevaluated_operand
;
13506 ++c_inhibit_evaluation_warnings
;
13508 type
= tsubst_expr (TYPEOF_TYPE_EXPR (t
), args
,
13510 /*integral_constant_expression_p=*/false);
13512 --cp_unevaluated_operand
;
13513 --c_inhibit_evaluation_warnings
;
13515 type
= finish_typeof (type
);
13516 return cp_build_qualified_type_real (type
,
13518 | cp_type_quals (type
),
13522 case DECLTYPE_TYPE
:
13526 ++cp_unevaluated_operand
;
13527 ++c_inhibit_evaluation_warnings
;
13529 type
= tsubst_copy_and_build (DECLTYPE_TYPE_EXPR (t
), args
,
13530 complain
|tf_decltype
, in_decl
,
13531 /*function_p*/false,
13532 /*integral_constant_expression*/false);
13534 --cp_unevaluated_operand
;
13535 --c_inhibit_evaluation_warnings
;
13537 if (DECLTYPE_FOR_LAMBDA_CAPTURE (t
))
13538 type
= lambda_capture_field_type (type
,
13539 DECLTYPE_FOR_INIT_CAPTURE (t
));
13540 else if (DECLTYPE_FOR_LAMBDA_PROXY (t
))
13541 type
= lambda_proxy_type (type
);
13544 bool id
= DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t
);
13545 if (id
&& TREE_CODE (DECLTYPE_TYPE_EXPR (t
)) == BIT_NOT_EXPR
13547 /* In a template ~id could be either a complement expression
13548 or an unqualified-id naming a destructor; if instantiating
13549 it produces an expression, it's not an id-expression or
13552 type
= finish_decltype_type (type
, id
, complain
);
13554 return cp_build_qualified_type_real (type
,
13556 | cp_type_quals (type
),
13557 complain
| tf_ignore_bad_quals
);
13560 case UNDERLYING_TYPE
:
13562 tree type
= tsubst (UNDERLYING_TYPE_TYPE (t
), args
,
13563 complain
, in_decl
);
13564 return finish_underlying_type (type
);
13567 case TYPE_ARGUMENT_PACK
:
13568 case NONTYPE_ARGUMENT_PACK
:
13570 tree r
= TYPE_P (t
) ? cxx_make_type (code
) : make_node (code
);
13572 tsubst_template_args (ARGUMENT_PACK_ARGS (t
),
13576 SET_ARGUMENT_PACK_ARGS (r
, packed_out
);
13578 /* For template nontype argument packs, also substitute into
13580 if (code
== NONTYPE_ARGUMENT_PACK
)
13581 TREE_TYPE (r
) = tsubst (TREE_TYPE (t
), args
, complain
, in_decl
);
13600 /* We should use one of the expression tsubsts for these codes. */
13601 gcc_unreachable ();
13604 sorry ("use of %qs in template", get_tree_code_name (code
));
13605 return error_mark_node
;
13609 /* Like tsubst_expr for a BASELINK. OBJECT_TYPE, if non-NULL, is the
13610 type of the expression on the left-hand side of the "." or "->"
13614 tsubst_baselink (tree baselink
, tree object_type
,
13615 tree args
, tsubst_flags_t complain
, tree in_decl
)
13618 tree qualifying_scope
;
13621 tree template_args
= 0;
13622 bool template_id_p
= false;
13623 bool qualified
= BASELINK_QUALIFIED_P (baselink
);
13625 /* A baselink indicates a function from a base class. Both the
13626 BASELINK_ACCESS_BINFO and the base class referenced may
13627 indicate bases of the template class, rather than the
13628 instantiated class. In addition, lookups that were not
13629 ambiguous before may be ambiguous now. Therefore, we perform
13630 the lookup again. */
13631 qualifying_scope
= BINFO_TYPE (BASELINK_ACCESS_BINFO (baselink
));
13632 qualifying_scope
= tsubst (qualifying_scope
, args
,
13633 complain
, in_decl
);
13634 fns
= BASELINK_FUNCTIONS (baselink
);
13635 optype
= tsubst (BASELINK_OPTYPE (baselink
), args
, complain
, in_decl
);
13636 if (TREE_CODE (fns
) == TEMPLATE_ID_EXPR
)
13638 template_id_p
= true;
13639 template_args
= TREE_OPERAND (fns
, 1);
13640 fns
= TREE_OPERAND (fns
, 0);
13642 template_args
= tsubst_template_args (template_args
, args
,
13643 complain
, in_decl
);
13645 name
= DECL_NAME (get_first_fn (fns
));
13646 if (IDENTIFIER_TYPENAME_P (name
))
13647 name
= mangle_conv_op_name_for_type (optype
);
13648 baselink
= lookup_fnfields (qualifying_scope
, name
, /*protect=*/1);
13651 if (constructor_name_p (name
, qualifying_scope
))
13653 if (complain
& tf_error
)
13654 error ("cannot call constructor %<%T::%D%> directly",
13655 qualifying_scope
, name
);
13657 return error_mark_node
;
13660 /* If lookup found a single function, mark it as used at this
13661 point. (If it lookup found multiple functions the one selected
13662 later by overload resolution will be marked as used at that
13664 if (BASELINK_P (baselink
))
13665 fns
= BASELINK_FUNCTIONS (baselink
);
13666 if (!template_id_p
&& !really_overloaded_fn (fns
)
13667 && !mark_used (OVL_CURRENT (fns
), complain
) && !(complain
& tf_error
))
13668 return error_mark_node
;
13670 /* Add back the template arguments, if present. */
13671 if (BASELINK_P (baselink
) && template_id_p
)
13672 BASELINK_FUNCTIONS (baselink
)
13673 = build2 (TEMPLATE_ID_EXPR
,
13675 BASELINK_FUNCTIONS (baselink
),
13677 /* Update the conversion operator type. */
13678 BASELINK_OPTYPE (baselink
) = optype
;
13681 object_type
= current_class_type
;
13684 baselink
= adjust_result_of_qualified_name_lookup (baselink
,
13690 /* Like tsubst_expr for a SCOPE_REF, given by QUALIFIED_ID. DONE is
13691 true if the qualified-id will be a postfix-expression in-and-of
13692 itself; false if more of the postfix-expression follows the
13693 QUALIFIED_ID. ADDRESS_P is true if the qualified-id is the operand
13697 tsubst_qualified_id (tree qualified_id
, tree args
,
13698 tsubst_flags_t complain
, tree in_decl
,
13699 bool done
, bool address_p
)
13705 tree template_args
;
13706 location_t loc
= UNKNOWN_LOCATION
;
13708 gcc_assert (TREE_CODE (qualified_id
) == SCOPE_REF
);
13710 /* Figure out what name to look up. */
13711 name
= TREE_OPERAND (qualified_id
, 1);
13712 if (TREE_CODE (name
) == TEMPLATE_ID_EXPR
)
13714 is_template
= true;
13715 loc
= EXPR_LOCATION (name
);
13716 template_args
= TREE_OPERAND (name
, 1);
13718 template_args
= tsubst_template_args (template_args
, args
,
13719 complain
, in_decl
);
13720 name
= TREE_OPERAND (name
, 0);
13724 is_template
= false;
13725 template_args
= NULL_TREE
;
13728 /* Substitute into the qualifying scope. When there are no ARGS, we
13729 are just trying to simplify a non-dependent expression. In that
13730 case the qualifying scope may be dependent, and, in any case,
13731 substituting will not help. */
13732 scope
= TREE_OPERAND (qualified_id
, 0);
13735 scope
= tsubst (scope
, args
, complain
, in_decl
);
13736 expr
= tsubst_copy (name
, args
, complain
, in_decl
);
13741 if (dependent_scope_p (scope
))
13744 expr
= build_min_nt_loc (loc
, TEMPLATE_ID_EXPR
, expr
, template_args
);
13745 return build_qualified_name (NULL_TREE
, scope
, expr
,
13746 QUALIFIED_NAME_IS_TEMPLATE (qualified_id
));
13749 if (!BASELINK_P (name
) && !DECL_P (expr
))
13751 if (TREE_CODE (expr
) == BIT_NOT_EXPR
)
13753 /* A BIT_NOT_EXPR is used to represent a destructor. */
13754 if (!check_dtor_name (scope
, TREE_OPERAND (expr
, 0)))
13756 error ("qualifying type %qT does not match destructor name ~%qT",
13757 scope
, TREE_OPERAND (expr
, 0));
13758 expr
= error_mark_node
;
13761 expr
= lookup_qualified_name (scope
, complete_dtor_identifier
,
13762 /*is_type_p=*/0, false);
13765 expr
= lookup_qualified_name (scope
, expr
, /*is_type_p=*/0, false);
13766 if (TREE_CODE (TREE_CODE (expr
) == TEMPLATE_DECL
13767 ? DECL_TEMPLATE_RESULT (expr
) : expr
) == TYPE_DECL
)
13769 if (complain
& tf_error
)
13771 error ("dependent-name %qE is parsed as a non-type, but "
13772 "instantiation yields a type", qualified_id
);
13773 inform (input_location
, "say %<typename %E%> if a type is meant", qualified_id
);
13775 return error_mark_node
;
13781 check_accessibility_of_qualified_id (expr
, /*object_type=*/NULL_TREE
,
13783 /* Remember that there was a reference to this entity. */
13784 if (!mark_used (expr
, complain
) && !(complain
& tf_error
))
13785 return error_mark_node
;
13788 if (expr
== error_mark_node
|| TREE_CODE (expr
) == TREE_LIST
)
13790 if (complain
& tf_error
)
13791 qualified_name_lookup_error (scope
,
13792 TREE_OPERAND (qualified_id
, 1),
13793 expr
, input_location
);
13794 return error_mark_node
;
13799 if (variable_template_p (expr
))
13800 expr
= lookup_and_finish_template_variable (expr
, template_args
,
13803 expr
= lookup_template_function (expr
, template_args
);
13806 if (expr
== error_mark_node
&& complain
& tf_error
)
13807 qualified_name_lookup_error (scope
, TREE_OPERAND (qualified_id
, 1),
13808 expr
, input_location
);
13809 else if (TYPE_P (scope
))
13811 expr
= (adjust_result_of_qualified_name_lookup
13812 (expr
, scope
, current_nonlambda_class_type ()));
13813 expr
= (finish_qualified_id_expr
13814 (scope
, expr
, done
, address_p
&& PTRMEM_OK_P (qualified_id
),
13815 QUALIFIED_NAME_IS_TEMPLATE (qualified_id
),
13816 /*template_arg_p=*/false, complain
));
13819 /* Expressions do not generally have reference type. */
13820 if (TREE_CODE (expr
) != SCOPE_REF
13821 /* However, if we're about to form a pointer-to-member, we just
13822 want the referenced member referenced. */
13823 && TREE_CODE (expr
) != OFFSET_REF
)
13824 expr
= convert_from_reference (expr
);
13829 /* tsubst the initializer for a VAR_DECL. INIT is the unsubstituted
13830 initializer, DECL is the substituted VAR_DECL. Other arguments are as
13834 tsubst_init (tree init
, tree decl
, tree args
,
13835 tsubst_flags_t complain
, tree in_decl
)
13840 init
= tsubst_expr (init
, args
, complain
, in_decl
, false);
13844 /* If we had an initializer but it
13845 instantiated to nothing,
13846 value-initialize the object. This will
13847 only occur when the initializer was a
13848 pack expansion where the parameter packs
13849 used in that expansion were of length
13851 init
= build_value_init (TREE_TYPE (decl
),
13853 if (TREE_CODE (init
) == AGGR_INIT_EXPR
)
13854 init
= get_target_expr_sfinae (init
, complain
);
13860 /* Like tsubst, but deals with expressions. This function just replaces
13861 template parms; to finish processing the resultant expression, use
13862 tsubst_copy_and_build or tsubst_expr. */
13865 tsubst_copy (tree t
, tree args
, tsubst_flags_t complain
, tree in_decl
)
13867 enum tree_code code
;
13870 if (t
== NULL_TREE
|| t
== error_mark_node
|| args
== NULL_TREE
)
13873 code
= TREE_CODE (t
);
13878 r
= retrieve_local_specialization (t
);
13880 if (r
== NULL_TREE
)
13882 /* We get here for a use of 'this' in an NSDMI as part of a
13883 constructor call or as part of an aggregate initialization. */
13884 if (DECL_NAME (t
) == this_identifier
13885 && ((current_function_decl
13886 && DECL_CONSTRUCTOR_P (current_function_decl
))
13887 || (current_class_ref
13888 && TREE_CODE (current_class_ref
) == PLACEHOLDER_EXPR
)))
13889 return current_class_ptr
;
13891 /* This can happen for a parameter name used later in a function
13892 declaration (such as in a late-specified return type). Just
13893 make a dummy decl, since it's only used for its type. */
13894 gcc_assert (cp_unevaluated_operand
!= 0);
13895 r
= tsubst_decl (t
, args
, complain
);
13896 /* Give it the template pattern as its context; its true context
13897 hasn't been instantiated yet and this is good enough for
13899 DECL_CONTEXT (r
) = DECL_CONTEXT (t
);
13902 if (TREE_CODE (r
) == ARGUMENT_PACK_SELECT
)
13903 r
= ARGUMENT_PACK_SELECT_ARG (r
);
13904 if (!mark_used (r
, complain
) && !(complain
& tf_error
))
13905 return error_mark_node
;
13913 if (DECL_TEMPLATE_PARM_P (t
))
13914 return tsubst_copy (DECL_INITIAL (t
), args
, complain
, in_decl
);
13915 /* There is no need to substitute into namespace-scope
13917 if (DECL_NAMESPACE_SCOPE_P (t
))
13919 /* If ARGS is NULL, then T is known to be non-dependent. */
13920 if (args
== NULL_TREE
)
13921 return scalar_constant_value (t
);
13923 /* Unfortunately, we cannot just call lookup_name here.
13926 template <int I> int f() {
13928 struct S { void g() { E e = a; } };
13931 When we instantiate f<7>::S::g(), say, lookup_name is not
13932 clever enough to find f<7>::a. */
13934 = tsubst_aggr_type (DECL_CONTEXT (t
), args
, complain
, in_decl
,
13935 /*entering_scope=*/0);
13937 for (v
= TYPE_VALUES (enum_type
);
13939 v
= TREE_CHAIN (v
))
13940 if (TREE_PURPOSE (v
) == DECL_NAME (t
))
13941 return TREE_VALUE (v
);
13943 /* We didn't find the name. That should never happen; if
13944 name-lookup found it during preliminary parsing, we
13945 should find it again here during instantiation. */
13946 gcc_unreachable ();
13951 if (PACK_EXPANSION_P (TREE_TYPE (t
)))
13953 /* Check for a local specialization set up by
13954 tsubst_pack_expansion. */
13955 if (tree r
= retrieve_local_specialization (t
))
13957 if (TREE_CODE (r
) == ARGUMENT_PACK_SELECT
)
13958 r
= ARGUMENT_PACK_SELECT_ARG (r
);
13962 /* When retrieving a capture pack from a generic lambda, remove the
13963 lambda call op's own template argument list from ARGS. Only the
13964 template arguments active for the closure type should be used to
13965 retrieve the pack specialization. */
13966 if (LAMBDA_FUNCTION_P (current_function_decl
)
13967 && (template_class_depth (DECL_CONTEXT (t
))
13968 != TMPL_ARGS_DEPTH (args
)))
13969 args
= strip_innermost_template_args (args
, 1);
13971 /* Otherwise return the full NONTYPE_ARGUMENT_PACK that
13972 tsubst_decl put in the hash table. */
13973 return retrieve_specialization (t
, args
, 0);
13976 if (DECL_CONTEXT (t
))
13980 ctx
= tsubst_aggr_type (DECL_CONTEXT (t
), args
, complain
, in_decl
,
13981 /*entering_scope=*/1);
13982 if (ctx
!= DECL_CONTEXT (t
))
13984 tree r
= lookup_field (ctx
, DECL_NAME (t
), 0, false);
13987 if (complain
& tf_error
)
13988 error ("using invalid field %qD", t
);
13989 return error_mark_node
;
13998 case FUNCTION_DECL
:
13999 if (DECL_LANG_SPECIFIC (t
) && DECL_TEMPLATE_INFO (t
))
14000 r
= tsubst (t
, args
, complain
, in_decl
);
14001 else if (local_variable_p (t
))
14003 r
= retrieve_local_specialization (t
);
14004 if (r
== NULL_TREE
)
14006 /* First try name lookup to find the instantiation. */
14007 r
= lookup_name (DECL_NAME (t
));
14010 /* Make sure that the one we found is the one we want. */
14011 tree ctx
= DECL_CONTEXT (t
);
14012 if (DECL_LANG_SPECIFIC (ctx
) && DECL_TEMPLATE_INFO (ctx
))
14013 ctx
= tsubst (ctx
, args
, complain
, in_decl
);
14014 if (ctx
!= DECL_CONTEXT (r
))
14022 /* This can happen for a variable used in a
14023 late-specified return type of a local lambda, or for a
14024 local static or constant. Building a new VAR_DECL
14025 should be OK in all those cases. */
14026 r
= tsubst_decl (t
, args
, complain
);
14027 if (decl_maybe_constant_var_p (r
))
14029 /* We can't call cp_finish_decl, so handle the
14030 initializer by hand. */
14031 tree init
= tsubst_init (DECL_INITIAL (t
), r
, args
,
14032 complain
, in_decl
);
14033 if (!processing_template_decl
)
14034 init
= maybe_constant_init (init
);
14035 if (processing_template_decl
14036 ? potential_constant_expression (init
)
14037 : reduced_constant_expression_p (init
))
14038 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r
)
14039 = TREE_CONSTANT (r
) = true;
14040 DECL_INITIAL (r
) = init
;
14042 gcc_assert (cp_unevaluated_operand
|| TREE_STATIC (r
)
14043 || decl_constant_var_p (r
)
14044 || errorcount
|| sorrycount
);
14045 if (!processing_template_decl
)
14047 if (TREE_STATIC (r
))
14048 rest_of_decl_compilation (r
, toplevel_bindings_p (),
14051 r
= process_outer_var_ref (r
, complain
);
14054 /* Remember this for subsequent uses. */
14055 if (local_specializations
)
14056 register_local_specialization (r
, t
);
14061 if (!mark_used (r
, complain
) && !(complain
& tf_error
))
14062 return error_mark_node
;
14065 case NAMESPACE_DECL
:
14069 /* An OVERLOAD will always be a non-dependent overload set; an
14070 overload set from function scope will just be represented with an
14071 IDENTIFIER_NODE, and from class scope with a BASELINK. */
14072 gcc_assert (!uses_template_parms (t
));
14076 return tsubst_baselink (t
, current_nonlambda_class_type (),
14077 args
, complain
, in_decl
);
14079 case TEMPLATE_DECL
:
14080 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t
))
14081 return tsubst (TREE_TYPE (DECL_TEMPLATE_RESULT (t
)),
14082 args
, complain
, in_decl
);
14083 else if (DECL_FUNCTION_TEMPLATE_P (t
) && DECL_MEMBER_TEMPLATE_P (t
))
14084 return tsubst (t
, args
, complain
, in_decl
);
14085 else if (DECL_CLASS_SCOPE_P (t
)
14086 && uses_template_parms (DECL_CONTEXT (t
)))
14088 /* Template template argument like the following example need
14091 template <template <class> class TT> struct C {};
14092 template <class T> struct D {
14093 template <class U> struct E {};
14098 We are processing the template argument `E' in #1 for
14099 the template instantiation #2. Originally, `E' is a
14100 TEMPLATE_DECL with `D<T>' as its DECL_CONTEXT. Now we
14101 have to substitute this with one having context `D<int>'. */
14103 tree context
= tsubst (DECL_CONTEXT (t
), args
, complain
, in_decl
);
14104 return lookup_field (context
, DECL_NAME(t
), 0, false);
14107 /* Ordinary template template argument. */
14111 case REINTERPRET_CAST_EXPR
:
14112 case CONST_CAST_EXPR
:
14113 case STATIC_CAST_EXPR
:
14114 case DYNAMIC_CAST_EXPR
:
14115 case IMPLICIT_CONV_EXPR
:
14119 tree type
= tsubst (TREE_TYPE (t
), args
, complain
, in_decl
);
14120 tree op0
= tsubst_copy (TREE_OPERAND (t
, 0), args
, complain
, in_decl
);
14121 return build1 (code
, type
, op0
);
14125 if (PACK_EXPANSION_P (TREE_OPERAND (t
, 0))
14126 || ARGUMENT_PACK_P (TREE_OPERAND (t
, 0)))
14128 tree expanded
, op
= TREE_OPERAND (t
, 0);
14131 if (SIZEOF_EXPR_TYPE_P (t
))
14132 op
= TREE_TYPE (op
);
14134 ++cp_unevaluated_operand
;
14135 ++c_inhibit_evaluation_warnings
;
14136 /* We only want to compute the number of arguments. */
14137 if (PACK_EXPANSION_P (op
))
14138 expanded
= tsubst_pack_expansion (op
, args
, complain
, in_decl
);
14140 expanded
= tsubst_template_args (ARGUMENT_PACK_ARGS (op
),
14141 args
, complain
, in_decl
);
14142 --cp_unevaluated_operand
;
14143 --c_inhibit_evaluation_warnings
;
14145 if (TREE_CODE (expanded
) == TREE_VEC
)
14147 len
= TREE_VEC_LENGTH (expanded
);
14148 /* Set TREE_USED for the benefit of -Wunused. */
14149 for (int i
= 0; i
< len
; i
++)
14150 TREE_USED (TREE_VEC_ELT (expanded
, i
)) = true;
14153 if (expanded
== error_mark_node
)
14154 return error_mark_node
;
14155 else if (PACK_EXPANSION_P (expanded
)
14156 || (TREE_CODE (expanded
) == TREE_VEC
14157 && pack_expansion_args_count (expanded
)))
14160 if (PACK_EXPANSION_P (expanded
))
14162 else if (TREE_VEC_LENGTH (expanded
) == 1)
14163 expanded
= TREE_VEC_ELT (expanded
, 0);
14165 expanded
= make_argument_pack (expanded
);
14167 if (TYPE_P (expanded
))
14168 return cxx_sizeof_or_alignof_type (expanded
, SIZEOF_EXPR
,
14169 complain
& tf_error
);
14171 return cxx_sizeof_or_alignof_expr (expanded
, SIZEOF_EXPR
,
14172 complain
& tf_error
);
14175 return build_int_cst (size_type_node
, len
);
14177 if (SIZEOF_EXPR_TYPE_P (t
))
14179 r
= tsubst (TREE_TYPE (TREE_OPERAND (t
, 0)),
14180 args
, complain
, in_decl
);
14181 r
= build1 (NOP_EXPR
, r
, error_mark_node
);
14182 r
= build1 (SIZEOF_EXPR
,
14183 tsubst (TREE_TYPE (t
), args
, complain
, in_decl
), r
);
14184 SIZEOF_EXPR_TYPE_P (r
) = 1;
14191 case TRUTH_NOT_EXPR
:
14194 case UNARY_PLUS_EXPR
: /* Unary + */
14196 case AT_ENCODE_EXPR
:
14200 case REALPART_EXPR
:
14201 case IMAGPART_EXPR
:
14204 tree type
= tsubst (TREE_TYPE (t
), args
, complain
, in_decl
);
14205 tree op0
= tsubst_copy (TREE_OPERAND (t
, 0), args
, complain
, in_decl
);
14206 return build1 (code
, type
, op0
);
14209 case COMPONENT_REF
:
14214 object
= tsubst_copy (TREE_OPERAND (t
, 0), args
, complain
, in_decl
);
14215 name
= TREE_OPERAND (t
, 1);
14216 if (TREE_CODE (name
) == BIT_NOT_EXPR
)
14218 name
= tsubst_copy (TREE_OPERAND (name
, 0), args
,
14219 complain
, in_decl
);
14220 name
= build1 (BIT_NOT_EXPR
, NULL_TREE
, name
);
14222 else if (TREE_CODE (name
) == SCOPE_REF
14223 && TREE_CODE (TREE_OPERAND (name
, 1)) == BIT_NOT_EXPR
)
14225 tree base
= tsubst_copy (TREE_OPERAND (name
, 0), args
,
14226 complain
, in_decl
);
14227 name
= TREE_OPERAND (name
, 1);
14228 name
= tsubst_copy (TREE_OPERAND (name
, 0), args
,
14229 complain
, in_decl
);
14230 name
= build1 (BIT_NOT_EXPR
, NULL_TREE
, name
);
14231 name
= build_qualified_name (/*type=*/NULL_TREE
,
14233 /*template_p=*/false);
14235 else if (BASELINK_P (name
))
14236 name
= tsubst_baselink (name
,
14237 non_reference (TREE_TYPE (object
)),
14241 name
= tsubst_copy (name
, args
, complain
, in_decl
);
14242 return build_nt (COMPONENT_REF
, object
, name
, NULL_TREE
);
14248 case TRUNC_DIV_EXPR
:
14249 case CEIL_DIV_EXPR
:
14250 case FLOOR_DIV_EXPR
:
14251 case ROUND_DIV_EXPR
:
14252 case EXACT_DIV_EXPR
:
14256 case TRUNC_MOD_EXPR
:
14257 case FLOOR_MOD_EXPR
:
14258 case TRUTH_ANDIF_EXPR
:
14259 case TRUTH_ORIF_EXPR
:
14260 case TRUTH_AND_EXPR
:
14261 case TRUTH_OR_EXPR
:
14274 case COMPOUND_EXPR
:
14277 case PREDECREMENT_EXPR
:
14278 case PREINCREMENT_EXPR
:
14279 case POSTDECREMENT_EXPR
:
14280 case POSTINCREMENT_EXPR
:
14282 tree op0
= tsubst_copy (TREE_OPERAND (t
, 0), args
, complain
, in_decl
);
14283 tree op1
= tsubst_copy (TREE_OPERAND (t
, 1), args
, complain
, in_decl
);
14284 return build_nt (code
, op0
, op1
);
14289 tree op0
= tsubst_copy (TREE_OPERAND (t
, 0), args
, complain
, in_decl
);
14290 tree op1
= tsubst_copy (TREE_OPERAND (t
, 1), args
, complain
, in_decl
);
14291 return build_qualified_name (/*type=*/NULL_TREE
, op0
, op1
,
14292 QUALIFIED_NAME_IS_TEMPLATE (t
));
14297 tree op0
= tsubst_copy (TREE_OPERAND (t
, 0), args
, complain
, in_decl
);
14298 tree op1
= tsubst_copy (TREE_OPERAND (t
, 1), args
, complain
, in_decl
);
14299 return build_nt (ARRAY_REF
, op0
, op1
, NULL_TREE
, NULL_TREE
);
14304 int n
= VL_EXP_OPERAND_LENGTH (t
);
14305 tree result
= build_vl_exp (CALL_EXPR
, n
);
14307 for (i
= 0; i
< n
; i
++)
14308 TREE_OPERAND (t
, i
) = tsubst_copy (TREE_OPERAND (t
, i
), args
,
14309 complain
, in_decl
);
14315 case PSEUDO_DTOR_EXPR
:
14316 case VEC_PERM_EXPR
:
14318 tree op0
= tsubst_copy (TREE_OPERAND (t
, 0), args
, complain
, in_decl
);
14319 tree op1
= tsubst_copy (TREE_OPERAND (t
, 1), args
, complain
, in_decl
);
14320 tree op2
= tsubst_copy (TREE_OPERAND (t
, 2), args
, complain
, in_decl
);
14321 r
= build_nt (code
, op0
, op1
, op2
);
14322 TREE_NO_WARNING (r
) = TREE_NO_WARNING (t
);
14328 tree op0
= tsubst_copy (TREE_OPERAND (t
, 0), args
, complain
, in_decl
);
14329 tree op1
= tsubst_copy (TREE_OPERAND (t
, 1), args
, complain
, in_decl
);
14330 tree op2
= tsubst_copy (TREE_OPERAND (t
, 2), args
, complain
, in_decl
);
14331 r
= build_nt (code
, op0
, op1
, op2
);
14332 NEW_EXPR_USE_GLOBAL (r
) = NEW_EXPR_USE_GLOBAL (t
);
14338 tree op0
= tsubst_copy (TREE_OPERAND (t
, 0), args
, complain
, in_decl
);
14339 tree op1
= tsubst_copy (TREE_OPERAND (t
, 1), args
, complain
, in_decl
);
14340 r
= build_nt (code
, op0
, op1
);
14341 DELETE_EXPR_USE_GLOBAL (r
) = DELETE_EXPR_USE_GLOBAL (t
);
14342 DELETE_EXPR_USE_VEC (r
) = DELETE_EXPR_USE_VEC (t
);
14346 case TEMPLATE_ID_EXPR
:
14348 /* Substituted template arguments */
14349 tree fn
= TREE_OPERAND (t
, 0);
14350 tree targs
= TREE_OPERAND (t
, 1);
14352 fn
= tsubst_copy (fn
, args
, complain
, in_decl
);
14354 targs
= tsubst_template_args (targs
, args
, complain
, in_decl
);
14356 return lookup_template_function (fn
, targs
);
14361 tree purpose
, value
, chain
;
14363 if (t
== void_list_node
)
14366 purpose
= TREE_PURPOSE (t
);
14368 purpose
= tsubst_copy (purpose
, args
, complain
, in_decl
);
14369 value
= TREE_VALUE (t
);
14371 value
= tsubst_copy (value
, args
, complain
, in_decl
);
14372 chain
= TREE_CHAIN (t
);
14373 if (chain
&& chain
!= void_type_node
)
14374 chain
= tsubst_copy (chain
, args
, complain
, in_decl
);
14375 if (purpose
== TREE_PURPOSE (t
)
14376 && value
== TREE_VALUE (t
)
14377 && chain
== TREE_CHAIN (t
))
14379 return tree_cons (purpose
, value
, chain
);
14384 case ENUMERAL_TYPE
:
14386 case TEMPLATE_TYPE_PARM
:
14387 case TEMPLATE_TEMPLATE_PARM
:
14388 case BOUND_TEMPLATE_TEMPLATE_PARM
:
14389 case TEMPLATE_PARM_INDEX
:
14391 case REFERENCE_TYPE
:
14393 case FUNCTION_TYPE
:
14396 case TYPENAME_TYPE
:
14397 case UNBOUND_CLASS_TEMPLATE
:
14399 case DECLTYPE_TYPE
:
14401 return tsubst (t
, args
, complain
, in_decl
);
14405 /* Fall through. */
14406 case IDENTIFIER_NODE
:
14407 if (IDENTIFIER_TYPENAME_P (t
))
14409 tree new_type
= tsubst (TREE_TYPE (t
), args
, complain
, in_decl
);
14410 return mangle_conv_op_name_for_type (new_type
);
14416 /* This is handled by tsubst_copy_and_build. */
14417 gcc_unreachable ();
14421 tree op0
= tsubst_copy (TREE_OPERAND (t
, 0), args
, complain
, in_decl
);
14422 tree type
= tsubst (TREE_TYPE (t
), args
, complain
, in_decl
);
14423 return build_x_va_arg (EXPR_LOCATION (t
), op0
, type
);
14426 case CLEANUP_POINT_EXPR
:
14427 /* We shouldn't have built any of these during initial template
14428 generation. Instead, they should be built during instantiation
14429 in response to the saved STMT_IS_FULL_EXPR_P setting. */
14430 gcc_unreachable ();
14434 tree type
= tsubst (TREE_TYPE (t
), args
, complain
, in_decl
);
14435 tree op0
= tsubst_copy (TREE_OPERAND (t
, 0), args
, complain
, in_decl
);
14436 tree op1
= tsubst_copy (TREE_OPERAND (t
, 1), args
, complain
, in_decl
);
14437 r
= build2 (code
, type
, op0
, op1
);
14438 PTRMEM_OK_P (r
) = PTRMEM_OK_P (t
);
14439 if (!mark_used (TREE_OPERAND (r
, 1), complain
)
14440 && !(complain
& tf_error
))
14441 return error_mark_node
;
14445 case EXPR_PACK_EXPANSION
:
14446 error ("invalid use of pack expansion expression");
14447 return error_mark_node
;
14449 case NONTYPE_ARGUMENT_PACK
:
14450 error ("use %<...%> to expand argument pack");
14451 return error_mark_node
;
14454 gcc_checking_assert (t
== void_node
&& VOID_TYPE_P (TREE_TYPE (t
)));
14462 /* Instantiate any typedefs in the type. */
14463 tree type
= tsubst (TREE_TYPE (t
), args
, complain
, in_decl
);
14464 r
= fold_convert (type
, t
);
14465 gcc_assert (TREE_CODE (r
) == code
);
14470 /* These can sometimes show up in a partial instantiation, but never
14471 involve template parms. */
14472 gcc_assert (!uses_template_parms (t
));
14475 case UNARY_LEFT_FOLD_EXPR
:
14476 return tsubst_unary_left_fold (t
, args
, complain
, in_decl
);
14477 case UNARY_RIGHT_FOLD_EXPR
:
14478 return tsubst_unary_right_fold (t
, args
, complain
, in_decl
);
14479 case BINARY_LEFT_FOLD_EXPR
:
14480 return tsubst_binary_left_fold (t
, args
, complain
, in_decl
);
14481 case BINARY_RIGHT_FOLD_EXPR
:
14482 return tsubst_binary_right_fold (t
, args
, complain
, in_decl
);
14485 /* We shouldn't get here, but keep going if !flag_checking. */
14487 gcc_unreachable ();
14492 /* Helper function for tsubst_omp_clauses, used for instantiation of
14493 OMP_CLAUSE_DECL of clauses. */
14496 tsubst_omp_clause_decl (tree decl
, tree args
, tsubst_flags_t complain
,
14499 if (decl
== NULL_TREE
)
14502 /* Handle an OpenMP array section represented as a TREE_LIST (or
14503 OMP_CLAUSE_DEPEND_KIND). An OMP_CLAUSE_DEPEND (with a depend
14504 kind of OMP_CLAUSE_DEPEND_SINK) can also be represented as a
14505 TREE_LIST. We can handle it exactly the same as an array section
14506 (purpose, value, and a chain), even though the nomenclature
14507 (low_bound, length, etc) is different. */
14508 if (TREE_CODE (decl
) == TREE_LIST
)
14511 = tsubst_expr (TREE_PURPOSE (decl
), args
, complain
, in_decl
,
14512 /*integral_constant_expression_p=*/false);
14513 tree length
= tsubst_expr (TREE_VALUE (decl
), args
, complain
, in_decl
,
14514 /*integral_constant_expression_p=*/false);
14515 tree chain
= tsubst_omp_clause_decl (TREE_CHAIN (decl
), args
, complain
,
14517 if (TREE_PURPOSE (decl
) == low_bound
14518 && TREE_VALUE (decl
) == length
14519 && TREE_CHAIN (decl
) == chain
)
14521 tree ret
= tree_cons (low_bound
, length
, chain
);
14522 OMP_CLAUSE_DEPEND_SINK_NEGATIVE (ret
)
14523 = OMP_CLAUSE_DEPEND_SINK_NEGATIVE (decl
);
14526 tree ret
= tsubst_expr (decl
, args
, complain
, in_decl
,
14527 /*integral_constant_expression_p=*/false);
14528 /* Undo convert_from_reference tsubst_expr could have called. */
14530 && REFERENCE_REF_P (ret
)
14531 && !REFERENCE_REF_P (decl
))
14532 ret
= TREE_OPERAND (ret
, 0);
14536 /* Like tsubst_copy, but specifically for OpenMP clauses. */
14539 tsubst_omp_clauses (tree clauses
, enum c_omp_region_type ort
,
14540 tree args
, tsubst_flags_t complain
, tree in_decl
)
14542 tree new_clauses
= NULL_TREE
, nc
, oc
;
14543 tree linear_no_step
= NULL_TREE
;
14545 for (oc
= clauses
; oc
; oc
= OMP_CLAUSE_CHAIN (oc
))
14547 nc
= copy_node (oc
);
14548 OMP_CLAUSE_CHAIN (nc
) = new_clauses
;
14551 switch (OMP_CLAUSE_CODE (nc
))
14553 case OMP_CLAUSE_LASTPRIVATE
:
14554 if (OMP_CLAUSE_LASTPRIVATE_STMT (oc
))
14556 OMP_CLAUSE_LASTPRIVATE_STMT (nc
) = push_stmt_list ();
14557 tsubst_expr (OMP_CLAUSE_LASTPRIVATE_STMT (oc
), args
, complain
,
14558 in_decl
, /*integral_constant_expression_p=*/false);
14559 OMP_CLAUSE_LASTPRIVATE_STMT (nc
)
14560 = pop_stmt_list (OMP_CLAUSE_LASTPRIVATE_STMT (nc
));
14563 case OMP_CLAUSE_PRIVATE
:
14564 case OMP_CLAUSE_SHARED
:
14565 case OMP_CLAUSE_FIRSTPRIVATE
:
14566 case OMP_CLAUSE_COPYIN
:
14567 case OMP_CLAUSE_COPYPRIVATE
:
14568 case OMP_CLAUSE_UNIFORM
:
14569 case OMP_CLAUSE_DEPEND
:
14570 case OMP_CLAUSE_FROM
:
14571 case OMP_CLAUSE_TO
:
14572 case OMP_CLAUSE_MAP
:
14573 case OMP_CLAUSE_USE_DEVICE_PTR
:
14574 case OMP_CLAUSE_IS_DEVICE_PTR
:
14575 OMP_CLAUSE_DECL (nc
)
14576 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc
), args
, complain
,
14579 case OMP_CLAUSE_IF
:
14580 case OMP_CLAUSE_NUM_THREADS
:
14581 case OMP_CLAUSE_SCHEDULE
:
14582 case OMP_CLAUSE_COLLAPSE
:
14583 case OMP_CLAUSE_FINAL
:
14584 case OMP_CLAUSE_DEVICE
:
14585 case OMP_CLAUSE_DIST_SCHEDULE
:
14586 case OMP_CLAUSE_NUM_TEAMS
:
14587 case OMP_CLAUSE_THREAD_LIMIT
:
14588 case OMP_CLAUSE_SAFELEN
:
14589 case OMP_CLAUSE_SIMDLEN
:
14590 case OMP_CLAUSE_NUM_TASKS
:
14591 case OMP_CLAUSE_GRAINSIZE
:
14592 case OMP_CLAUSE_PRIORITY
:
14593 case OMP_CLAUSE_ORDERED
:
14594 case OMP_CLAUSE_HINT
:
14595 case OMP_CLAUSE_NUM_GANGS
:
14596 case OMP_CLAUSE_NUM_WORKERS
:
14597 case OMP_CLAUSE_VECTOR_LENGTH
:
14598 case OMP_CLAUSE_WORKER
:
14599 case OMP_CLAUSE_VECTOR
:
14600 case OMP_CLAUSE_ASYNC
:
14601 case OMP_CLAUSE_WAIT
:
14602 OMP_CLAUSE_OPERAND (nc
, 0)
14603 = tsubst_expr (OMP_CLAUSE_OPERAND (oc
, 0), args
, complain
,
14604 in_decl
, /*integral_constant_expression_p=*/false);
14606 case OMP_CLAUSE_REDUCTION
:
14607 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (oc
))
14609 tree placeholder
= OMP_CLAUSE_REDUCTION_PLACEHOLDER (oc
);
14610 if (TREE_CODE (placeholder
) == SCOPE_REF
)
14612 tree scope
= tsubst (TREE_OPERAND (placeholder
, 0), args
,
14613 complain
, in_decl
);
14614 OMP_CLAUSE_REDUCTION_PLACEHOLDER (nc
)
14615 = build_qualified_name (NULL_TREE
, scope
,
14616 TREE_OPERAND (placeholder
, 1),
14620 gcc_assert (identifier_p (placeholder
));
14622 OMP_CLAUSE_DECL (nc
)
14623 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc
), args
, complain
,
14626 case OMP_CLAUSE_GANG
:
14627 case OMP_CLAUSE_ALIGNED
:
14628 OMP_CLAUSE_DECL (nc
)
14629 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc
), args
, complain
,
14631 OMP_CLAUSE_OPERAND (nc
, 1)
14632 = tsubst_expr (OMP_CLAUSE_OPERAND (oc
, 1), args
, complain
,
14633 in_decl
, /*integral_constant_expression_p=*/false);
14635 case OMP_CLAUSE_LINEAR
:
14636 OMP_CLAUSE_DECL (nc
)
14637 = tsubst_omp_clause_decl (OMP_CLAUSE_DECL (oc
), args
, complain
,
14639 if (OMP_CLAUSE_LINEAR_STEP (oc
) == NULL_TREE
)
14641 gcc_assert (!linear_no_step
);
14642 linear_no_step
= nc
;
14644 else if (OMP_CLAUSE_LINEAR_VARIABLE_STRIDE (oc
))
14645 OMP_CLAUSE_LINEAR_STEP (nc
)
14646 = tsubst_omp_clause_decl (OMP_CLAUSE_LINEAR_STEP (oc
), args
,
14647 complain
, in_decl
);
14649 OMP_CLAUSE_LINEAR_STEP (nc
)
14650 = tsubst_expr (OMP_CLAUSE_LINEAR_STEP (oc
), args
, complain
,
14652 /*integral_constant_expression_p=*/false);
14654 case OMP_CLAUSE_NOWAIT
:
14655 case OMP_CLAUSE_DEFAULT
:
14656 case OMP_CLAUSE_UNTIED
:
14657 case OMP_CLAUSE_MERGEABLE
:
14658 case OMP_CLAUSE_INBRANCH
:
14659 case OMP_CLAUSE_NOTINBRANCH
:
14660 case OMP_CLAUSE_PROC_BIND
:
14661 case OMP_CLAUSE_FOR
:
14662 case OMP_CLAUSE_PARALLEL
:
14663 case OMP_CLAUSE_SECTIONS
:
14664 case OMP_CLAUSE_TASKGROUP
:
14665 case OMP_CLAUSE_NOGROUP
:
14666 case OMP_CLAUSE_THREADS
:
14667 case OMP_CLAUSE_SIMD
:
14668 case OMP_CLAUSE_DEFAULTMAP
:
14669 case OMP_CLAUSE_INDEPENDENT
:
14670 case OMP_CLAUSE_AUTO
:
14671 case OMP_CLAUSE_SEQ
:
14673 case OMP_CLAUSE_TILE
:
14676 for (lnc
= OMP_CLAUSE_TILE_LIST (nc
),
14677 loc
= OMP_CLAUSE_TILE_LIST (oc
);
14679 loc
= TREE_CHAIN (loc
), lnc
= TREE_CHAIN (lnc
))
14681 TREE_VALUE (lnc
) = tsubst_expr (TREE_VALUE (loc
), args
,
14682 complain
, in_decl
, false);
14687 gcc_unreachable ();
14689 if ((ort
& C_ORT_OMP_DECLARE_SIMD
) == C_ORT_OMP
)
14690 switch (OMP_CLAUSE_CODE (nc
))
14692 case OMP_CLAUSE_SHARED
:
14693 case OMP_CLAUSE_PRIVATE
:
14694 case OMP_CLAUSE_FIRSTPRIVATE
:
14695 case OMP_CLAUSE_LASTPRIVATE
:
14696 case OMP_CLAUSE_COPYPRIVATE
:
14697 case OMP_CLAUSE_LINEAR
:
14698 case OMP_CLAUSE_REDUCTION
:
14699 case OMP_CLAUSE_USE_DEVICE_PTR
:
14700 case OMP_CLAUSE_IS_DEVICE_PTR
:
14701 /* tsubst_expr on SCOPE_REF results in returning
14702 finish_non_static_data_member result. Undo that here. */
14703 if (TREE_CODE (OMP_CLAUSE_DECL (oc
)) == SCOPE_REF
14704 && (TREE_CODE (TREE_OPERAND (OMP_CLAUSE_DECL (oc
), 1))
14705 == IDENTIFIER_NODE
))
14707 tree t
= OMP_CLAUSE_DECL (nc
);
14710 switch (TREE_CODE (v
))
14712 case COMPONENT_REF
:
14716 case POINTER_PLUS_EXPR
:
14717 v
= TREE_OPERAND (v
, 0);
14720 if (DECL_CONTEXT (v
) == current_function_decl
14721 && DECL_ARTIFICIAL (v
)
14722 && DECL_NAME (v
) == this_identifier
)
14723 OMP_CLAUSE_DECL (nc
) = TREE_OPERAND (t
, 1);
14730 else if (VAR_P (OMP_CLAUSE_DECL (oc
))
14731 && DECL_HAS_VALUE_EXPR_P (OMP_CLAUSE_DECL (oc
))
14732 && DECL_ARTIFICIAL (OMP_CLAUSE_DECL (oc
))
14733 && DECL_LANG_SPECIFIC (OMP_CLAUSE_DECL (oc
))
14734 && DECL_OMP_PRIVATIZED_MEMBER (OMP_CLAUSE_DECL (oc
)))
14736 tree decl
= OMP_CLAUSE_DECL (nc
);
14739 if (!DECL_LANG_SPECIFIC (decl
))
14740 retrofit_lang_decl (decl
);
14741 DECL_OMP_PRIVATIZED_MEMBER (decl
) = 1;
14750 new_clauses
= nreverse (new_clauses
);
14751 if (ort
!= C_ORT_OMP_DECLARE_SIMD
)
14753 new_clauses
= finish_omp_clauses (new_clauses
, ort
);
14754 if (linear_no_step
)
14755 for (nc
= new_clauses
; nc
; nc
= OMP_CLAUSE_CHAIN (nc
))
14756 if (nc
== linear_no_step
)
14758 OMP_CLAUSE_LINEAR_STEP (nc
) = NULL_TREE
;
14762 return new_clauses
;
14765 /* Like tsubst_copy_and_build, but unshare TREE_LIST nodes. */
14768 tsubst_copy_asm_operands (tree t
, tree args
, tsubst_flags_t complain
,
14771 #define RECUR(t) tsubst_copy_asm_operands (t, args, complain, in_decl)
14773 tree purpose
, value
, chain
;
14778 if (TREE_CODE (t
) != TREE_LIST
)
14779 return tsubst_copy_and_build (t
, args
, complain
, in_decl
,
14780 /*function_p=*/false,
14781 /*integral_constant_expression_p=*/false);
14783 if (t
== void_list_node
)
14786 purpose
= TREE_PURPOSE (t
);
14788 purpose
= RECUR (purpose
);
14789 value
= TREE_VALUE (t
);
14792 if (TREE_CODE (value
) != LABEL_DECL
)
14793 value
= RECUR (value
);
14796 value
= lookup_label (DECL_NAME (value
));
14797 gcc_assert (TREE_CODE (value
) == LABEL_DECL
);
14798 TREE_USED (value
) = 1;
14801 chain
= TREE_CHAIN (t
);
14802 if (chain
&& chain
!= void_type_node
)
14803 chain
= RECUR (chain
);
14804 return tree_cons (purpose
, value
, chain
);
14808 /* Used to temporarily communicate the list of #pragma omp parallel
14809 clauses to #pragma omp for instantiation if they are combined
14812 static tree
*omp_parallel_combined_clauses
;
14814 /* Substitute one OMP_FOR iterator. */
14817 tsubst_omp_for_iterator (tree t
, int i
, tree declv
, tree orig_declv
,
14818 tree initv
, tree condv
, tree incrv
, tree
*clauses
,
14819 tree args
, tsubst_flags_t complain
, tree in_decl
,
14820 bool integral_constant_expression_p
)
14822 #define RECUR(NODE) \
14823 tsubst_expr ((NODE), args, complain, in_decl, \
14824 integral_constant_expression_p)
14825 tree decl
, init
, cond
, incr
;
14827 init
= TREE_VEC_ELT (OMP_FOR_INIT (t
), i
);
14828 gcc_assert (TREE_CODE (init
) == MODIFY_EXPR
);
14830 if (orig_declv
&& OMP_FOR_ORIG_DECLS (t
))
14832 tree o
= TREE_VEC_ELT (OMP_FOR_ORIG_DECLS (t
), i
);
14833 TREE_VEC_ELT (orig_declv
, i
) = RECUR (o
);
14836 decl
= TREE_OPERAND (init
, 0);
14837 init
= TREE_OPERAND (init
, 1);
14838 tree decl_expr
= NULL_TREE
;
14839 if (init
&& TREE_CODE (init
) == DECL_EXPR
)
14841 /* We need to jump through some hoops to handle declarations in the
14842 for-init-statement, since we might need to handle auto deduction,
14843 but we need to keep control of initialization. */
14845 init
= DECL_INITIAL (DECL_EXPR_DECL (init
));
14846 decl
= tsubst_decl (decl
, args
, complain
);
14850 if (TREE_CODE (decl
) == SCOPE_REF
)
14852 decl
= RECUR (decl
);
14853 if (TREE_CODE (decl
) == COMPONENT_REF
)
14857 switch (TREE_CODE (v
))
14859 case COMPONENT_REF
:
14863 case POINTER_PLUS_EXPR
:
14864 v
= TREE_OPERAND (v
, 0);
14867 if (DECL_CONTEXT (v
) == current_function_decl
14868 && DECL_ARTIFICIAL (v
)
14869 && DECL_NAME (v
) == this_identifier
)
14871 decl
= TREE_OPERAND (decl
, 1);
14872 decl
= omp_privatize_field (decl
, false);
14882 decl
= RECUR (decl
);
14884 init
= RECUR (init
);
14886 tree auto_node
= type_uses_auto (TREE_TYPE (decl
));
14887 if (auto_node
&& init
)
14889 = do_auto_deduction (TREE_TYPE (decl
), init
, auto_node
);
14891 gcc_assert (!type_dependent_expression_p (decl
));
14893 if (!CLASS_TYPE_P (TREE_TYPE (decl
)))
14897 /* Declare the variable, but don't let that initialize it. */
14898 tree init_sav
= DECL_INITIAL (DECL_EXPR_DECL (decl_expr
));
14899 DECL_INITIAL (DECL_EXPR_DECL (decl_expr
)) = NULL_TREE
;
14901 DECL_INITIAL (DECL_EXPR_DECL (decl_expr
)) = init_sav
;
14904 cond
= RECUR (TREE_VEC_ELT (OMP_FOR_COND (t
), i
));
14905 incr
= TREE_VEC_ELT (OMP_FOR_INCR (t
), i
);
14906 if (TREE_CODE (incr
) == MODIFY_EXPR
)
14908 tree lhs
= RECUR (TREE_OPERAND (incr
, 0));
14909 tree rhs
= RECUR (TREE_OPERAND (incr
, 1));
14910 incr
= build_x_modify_expr (EXPR_LOCATION (incr
), lhs
,
14911 NOP_EXPR
, rhs
, complain
);
14914 incr
= RECUR (incr
);
14915 TREE_VEC_ELT (declv
, i
) = decl
;
14916 TREE_VEC_ELT (initv
, i
) = init
;
14917 TREE_VEC_ELT (condv
, i
) = cond
;
14918 TREE_VEC_ELT (incrv
, i
) = incr
;
14924 /* Declare and initialize the variable. */
14932 for (j
= (omp_parallel_combined_clauses
== NULL
? 1 : 0); j
< 2; j
++)
14934 for (pc
= j
? clauses
: omp_parallel_combined_clauses
; *pc
; )
14936 if (OMP_CLAUSE_CODE (*pc
) == OMP_CLAUSE_PRIVATE
14937 && OMP_CLAUSE_DECL (*pc
) == decl
)
14939 else if (OMP_CLAUSE_CODE (*pc
) == OMP_CLAUSE_LASTPRIVATE
14940 && OMP_CLAUSE_DECL (*pc
) == decl
)
14944 /* Move lastprivate (decl) clause to OMP_FOR_CLAUSES. */
14946 *pc
= OMP_CLAUSE_CHAIN (c
);
14947 OMP_CLAUSE_CHAIN (c
) = *clauses
;
14950 else if (OMP_CLAUSE_CODE (*pc
) == OMP_CLAUSE_FIRSTPRIVATE
14951 && OMP_CLAUSE_DECL (*pc
) == decl
)
14953 error ("iteration variable %qD should not be firstprivate",
14955 *pc
= OMP_CLAUSE_CHAIN (*pc
);
14957 else if (OMP_CLAUSE_CODE (*pc
) == OMP_CLAUSE_REDUCTION
14958 && OMP_CLAUSE_DECL (*pc
) == decl
)
14960 error ("iteration variable %qD should not be reduction",
14962 *pc
= OMP_CLAUSE_CHAIN (*pc
);
14965 pc
= &OMP_CLAUSE_CHAIN (*pc
);
14970 if (*pc
== NULL_TREE
)
14972 tree c
= build_omp_clause (input_location
, OMP_CLAUSE_PRIVATE
);
14973 OMP_CLAUSE_DECL (c
) = decl
;
14974 c
= finish_omp_clauses (c
, C_ORT_OMP
);
14977 OMP_CLAUSE_CHAIN (c
) = *clauses
;
14982 cond
= TREE_VEC_ELT (OMP_FOR_COND (t
), i
);
14983 if (COMPARISON_CLASS_P (cond
))
14985 tree op0
= RECUR (TREE_OPERAND (cond
, 0));
14986 tree op1
= RECUR (TREE_OPERAND (cond
, 1));
14987 cond
= build2 (TREE_CODE (cond
), boolean_type_node
, op0
, op1
);
14990 cond
= RECUR (cond
);
14991 incr
= TREE_VEC_ELT (OMP_FOR_INCR (t
), i
);
14992 switch (TREE_CODE (incr
))
14994 case PREINCREMENT_EXPR
:
14995 case PREDECREMENT_EXPR
:
14996 case POSTINCREMENT_EXPR
:
14997 case POSTDECREMENT_EXPR
:
14998 incr
= build2 (TREE_CODE (incr
), TREE_TYPE (decl
),
14999 RECUR (TREE_OPERAND (incr
, 0)), NULL_TREE
);
15002 if (TREE_CODE (TREE_OPERAND (incr
, 1)) == PLUS_EXPR
15003 || TREE_CODE (TREE_OPERAND (incr
, 1)) == MINUS_EXPR
)
15005 tree rhs
= TREE_OPERAND (incr
, 1);
15006 tree lhs
= RECUR (TREE_OPERAND (incr
, 0));
15007 tree rhs0
= RECUR (TREE_OPERAND (rhs
, 0));
15008 tree rhs1
= RECUR (TREE_OPERAND (rhs
, 1));
15009 incr
= build2 (MODIFY_EXPR
, TREE_TYPE (decl
), lhs
,
15010 build2 (TREE_CODE (rhs
), TREE_TYPE (decl
),
15014 incr
= RECUR (incr
);
15017 if (TREE_CODE (TREE_OPERAND (incr
, 1)) == PLUS_EXPR
15018 || TREE_CODE (TREE_OPERAND (incr
, 1)) == MINUS_EXPR
)
15020 tree lhs
= RECUR (TREE_OPERAND (incr
, 0));
15021 incr
= build2 (MODIFY_EXPR
, TREE_TYPE (decl
), lhs
,
15022 build2 (TREE_CODE (TREE_OPERAND (incr
, 1)),
15023 TREE_TYPE (decl
), lhs
,
15024 RECUR (TREE_OPERAND (incr
, 2))));
15026 else if (TREE_CODE (TREE_OPERAND (incr
, 1)) == NOP_EXPR
15027 && (TREE_CODE (TREE_OPERAND (incr
, 2)) == PLUS_EXPR
15028 || (TREE_CODE (TREE_OPERAND (incr
, 2)) == MINUS_EXPR
)))
15030 tree rhs
= TREE_OPERAND (incr
, 2);
15031 tree lhs
= RECUR (TREE_OPERAND (incr
, 0));
15032 tree rhs0
= RECUR (TREE_OPERAND (rhs
, 0));
15033 tree rhs1
= RECUR (TREE_OPERAND (rhs
, 1));
15034 incr
= build2 (MODIFY_EXPR
, TREE_TYPE (decl
), lhs
,
15035 build2 (TREE_CODE (rhs
), TREE_TYPE (decl
),
15039 incr
= RECUR (incr
);
15042 incr
= RECUR (incr
);
15046 TREE_VEC_ELT (declv
, i
) = decl
;
15047 TREE_VEC_ELT (initv
, i
) = init
;
15048 TREE_VEC_ELT (condv
, i
) = cond
;
15049 TREE_VEC_ELT (incrv
, i
) = incr
;
15053 /* Helper function of tsubst_expr, find OMP_TEAMS inside
15054 of OMP_TARGET's body. */
15057 tsubst_find_omp_teams (tree
*tp
, int *walk_subtrees
, void *)
15059 *walk_subtrees
= 0;
15060 switch (TREE_CODE (*tp
))
15065 case STATEMENT_LIST
:
15066 *walk_subtrees
= 1;
15074 /* Like tsubst_copy for expressions, etc. but also does semantic
15078 tsubst_expr (tree t
, tree args
, tsubst_flags_t complain
, tree in_decl
,
15079 bool integral_constant_expression_p
)
15081 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
15082 #define RECUR(NODE) \
15083 tsubst_expr ((NODE), args, complain, in_decl, \
15084 integral_constant_expression_p)
15090 if (t
== NULL_TREE
|| t
== error_mark_node
)
15093 loc
= input_location
;
15094 if (EXPR_HAS_LOCATION (t
))
15095 input_location
= EXPR_LOCATION (t
);
15096 if (STATEMENT_CODE_P (TREE_CODE (t
)))
15097 current_stmt_tree ()->stmts_are_full_exprs_p
= STMT_IS_FULL_EXPR_P (t
);
15099 switch (TREE_CODE (t
))
15101 case STATEMENT_LIST
:
15103 tree_stmt_iterator i
;
15104 for (i
= tsi_start (t
); !tsi_end_p (i
); tsi_next (&i
))
15105 RECUR (tsi_stmt (i
));
15109 case CTOR_INITIALIZER
:
15110 finish_mem_initializers (tsubst_initializer_list
15111 (TREE_OPERAND (t
, 0), args
));
15115 finish_return_stmt (RECUR (TREE_OPERAND (t
, 0)));
15119 tmp
= RECUR (EXPR_STMT_EXPR (t
));
15120 if (EXPR_STMT_STMT_EXPR_RESULT (t
))
15121 finish_stmt_expr_expr (tmp
, cur_stmt_expr
);
15123 finish_expr_stmt (tmp
);
15127 do_using_directive (USING_STMT_NAMESPACE (t
));
15132 tree decl
, pattern_decl
;
15135 pattern_decl
= decl
= DECL_EXPR_DECL (t
);
15136 if (TREE_CODE (decl
) == LABEL_DECL
)
15137 finish_label_decl (DECL_NAME (decl
));
15138 else if (TREE_CODE (decl
) == USING_DECL
)
15140 tree scope
= USING_DECL_SCOPE (decl
);
15141 tree name
= DECL_NAME (decl
);
15143 scope
= tsubst (scope
, args
, complain
, in_decl
);
15144 decl
= lookup_qualified_name (scope
, name
,
15145 /*is_type_p=*/false,
15146 /*complain=*/false);
15147 if (decl
== error_mark_node
|| TREE_CODE (decl
) == TREE_LIST
)
15148 qualified_name_lookup_error (scope
, name
, decl
, input_location
);
15150 do_local_using_decl (decl
, scope
, name
);
15152 else if (DECL_PACK_P (decl
))
15154 /* Don't build up decls for a variadic capture proxy, we'll
15155 instantiate the elements directly as needed. */
15160 init
= DECL_INITIAL (decl
);
15161 decl
= tsubst (decl
, args
, complain
, in_decl
);
15162 if (decl
!= error_mark_node
)
15164 /* By marking the declaration as instantiated, we avoid
15165 trying to instantiate it. Since instantiate_decl can't
15166 handle local variables, and since we've already done
15167 all that needs to be done, that's the right thing to
15170 DECL_TEMPLATE_INSTANTIATED (decl
) = 1;
15172 && ANON_AGGR_TYPE_P (TREE_TYPE (decl
)))
15173 /* Anonymous aggregates are a special case. */
15174 finish_anon_union (decl
);
15175 else if (is_capture_proxy (DECL_EXPR_DECL (t
)))
15177 DECL_CONTEXT (decl
) = current_function_decl
;
15178 if (DECL_NAME (decl
) == this_identifier
)
15180 tree lam
= DECL_CONTEXT (current_function_decl
);
15181 lam
= CLASSTYPE_LAMBDA_EXPR (lam
);
15182 LAMBDA_EXPR_THIS_CAPTURE (lam
) = decl
;
15184 insert_capture_proxy (decl
);
15186 else if (DECL_IMPLICIT_TYPEDEF_P (t
))
15187 /* We already did a pushtag. */;
15188 else if (TREE_CODE (decl
) == FUNCTION_DECL
15189 && DECL_OMP_DECLARE_REDUCTION_P (decl
)
15190 && DECL_FUNCTION_SCOPE_P (pattern_decl
))
15192 DECL_CONTEXT (decl
) = NULL_TREE
;
15194 DECL_CONTEXT (decl
) = current_function_decl
;
15195 cp_check_omp_declare_reduction (decl
);
15199 int const_init
= false;
15200 maybe_push_decl (decl
);
15202 && DECL_PRETTY_FUNCTION_P (decl
))
15204 /* For __PRETTY_FUNCTION__ we have to adjust the
15206 const char *const name
15207 = cxx_printable_name (current_function_decl
, 2);
15208 init
= cp_fname_init (name
, &TREE_TYPE (decl
));
15211 init
= tsubst_init (init
, decl
, args
, complain
, in_decl
);
15214 const_init
= (DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P
15216 cp_finish_decl (decl
, init
, const_init
, NULL_TREE
, 0);
15225 stmt
= begin_for_stmt (NULL_TREE
, NULL_TREE
);
15226 RECUR (FOR_INIT_STMT (t
));
15227 finish_for_init_stmt (stmt
);
15228 tmp
= RECUR (FOR_COND (t
));
15229 finish_for_cond (tmp
, stmt
, false);
15230 tmp
= RECUR (FOR_EXPR (t
));
15231 finish_for_expr (tmp
, stmt
);
15232 RECUR (FOR_BODY (t
));
15233 finish_for_stmt (stmt
);
15236 case RANGE_FOR_STMT
:
15239 stmt
= begin_for_stmt (NULL_TREE
, NULL_TREE
);
15240 decl
= RANGE_FOR_DECL (t
);
15241 decl
= tsubst (decl
, args
, complain
, in_decl
);
15242 maybe_push_decl (decl
);
15243 expr
= RECUR (RANGE_FOR_EXPR (t
));
15244 stmt
= cp_convert_range_for (stmt
, decl
, expr
, RANGE_FOR_IVDEP (t
));
15245 RECUR (RANGE_FOR_BODY (t
));
15246 finish_for_stmt (stmt
);
15251 stmt
= begin_while_stmt ();
15252 tmp
= RECUR (WHILE_COND (t
));
15253 finish_while_stmt_cond (tmp
, stmt
, false);
15254 RECUR (WHILE_BODY (t
));
15255 finish_while_stmt (stmt
);
15259 stmt
= begin_do_stmt ();
15260 RECUR (DO_BODY (t
));
15261 finish_do_body (stmt
);
15262 tmp
= RECUR (DO_COND (t
));
15263 finish_do_stmt (tmp
, stmt
, false);
15267 stmt
= begin_if_stmt ();
15268 tmp
= RECUR (IF_COND (t
));
15269 finish_if_stmt_cond (tmp
, stmt
);
15270 RECUR (THEN_CLAUSE (t
));
15271 finish_then_clause (stmt
);
15273 if (ELSE_CLAUSE (t
))
15275 begin_else_clause (stmt
);
15276 RECUR (ELSE_CLAUSE (t
));
15277 finish_else_clause (stmt
);
15280 finish_if_stmt (stmt
);
15284 if (BIND_EXPR_BODY_BLOCK (t
))
15285 stmt
= begin_function_body ();
15287 stmt
= begin_compound_stmt (BIND_EXPR_TRY_BLOCK (t
)
15288 ? BCS_TRY_BLOCK
: 0);
15290 RECUR (BIND_EXPR_BODY (t
));
15292 if (BIND_EXPR_BODY_BLOCK (t
))
15293 finish_function_body (stmt
);
15295 finish_compound_stmt (stmt
);
15299 finish_break_stmt ();
15302 case CONTINUE_STMT
:
15303 finish_continue_stmt ();
15307 stmt
= begin_switch_stmt ();
15308 tmp
= RECUR (SWITCH_STMT_COND (t
));
15309 finish_switch_cond (tmp
, stmt
);
15310 RECUR (SWITCH_STMT_BODY (t
));
15311 finish_switch_stmt (stmt
);
15314 case CASE_LABEL_EXPR
:
15316 tree low
= RECUR (CASE_LOW (t
));
15317 tree high
= RECUR (CASE_HIGH (t
));
15318 finish_case_label (EXPR_LOCATION (t
), low
, high
);
15324 tree decl
= LABEL_EXPR_LABEL (t
);
15327 label
= finish_label_stmt (DECL_NAME (decl
));
15328 if (DECL_ATTRIBUTES (decl
) != NULL_TREE
)
15329 cplus_decl_attributes (&label
, DECL_ATTRIBUTES (decl
), 0);
15334 tmp
= GOTO_DESTINATION (t
);
15335 if (TREE_CODE (tmp
) != LABEL_DECL
)
15336 /* Computed goto's must be tsubst'd into. On the other hand,
15337 non-computed gotos must not be; the identifier in question
15338 will have no binding. */
15341 tmp
= DECL_NAME (tmp
);
15342 finish_goto_stmt (tmp
);
15347 tree string
= RECUR (ASM_STRING (t
));
15348 tree outputs
= tsubst_copy_asm_operands (ASM_OUTPUTS (t
), args
,
15349 complain
, in_decl
);
15350 tree inputs
= tsubst_copy_asm_operands (ASM_INPUTS (t
), args
,
15351 complain
, in_decl
);
15352 tree clobbers
= tsubst_copy_asm_operands (ASM_CLOBBERS (t
), args
,
15353 complain
, in_decl
);
15354 tree labels
= tsubst_copy_asm_operands (ASM_LABELS (t
), args
,
15355 complain
, in_decl
);
15356 tmp
= finish_asm_stmt (ASM_VOLATILE_P (t
), string
, outputs
, inputs
,
15358 tree asm_expr
= tmp
;
15359 if (TREE_CODE (asm_expr
) == CLEANUP_POINT_EXPR
)
15360 asm_expr
= TREE_OPERAND (asm_expr
, 0);
15361 ASM_INPUT_P (asm_expr
) = ASM_INPUT_P (t
);
15368 stmt
= begin_try_block ();
15369 RECUR (TRY_STMTS (t
));
15370 finish_cleanup_try_block (stmt
);
15371 finish_cleanup (RECUR (TRY_HANDLERS (t
)), stmt
);
15375 tree compound_stmt
= NULL_TREE
;
15377 if (FN_TRY_BLOCK_P (t
))
15378 stmt
= begin_function_try_block (&compound_stmt
);
15380 stmt
= begin_try_block ();
15382 RECUR (TRY_STMTS (t
));
15384 if (FN_TRY_BLOCK_P (t
))
15385 finish_function_try_block (stmt
);
15387 finish_try_block (stmt
);
15389 RECUR (TRY_HANDLERS (t
));
15390 if (FN_TRY_BLOCK_P (t
))
15391 finish_function_handler_sequence (stmt
, compound_stmt
);
15393 finish_handler_sequence (stmt
);
15399 tree decl
= HANDLER_PARMS (t
);
15403 decl
= tsubst (decl
, args
, complain
, in_decl
);
15404 /* Prevent instantiate_decl from trying to instantiate
15405 this variable. We've already done all that needs to be
15407 if (decl
!= error_mark_node
)
15408 DECL_TEMPLATE_INSTANTIATED (decl
) = 1;
15410 stmt
= begin_handler ();
15411 finish_handler_parms (decl
, stmt
);
15412 RECUR (HANDLER_BODY (t
));
15413 finish_handler (stmt
);
15418 tmp
= tsubst (TREE_TYPE (t
), args
, complain
, NULL_TREE
);
15419 if (CLASS_TYPE_P (tmp
))
15421 /* Local classes are not independent templates; they are
15422 instantiated along with their containing function. And this
15423 way we don't have to deal with pushing out of one local class
15424 to instantiate a member of another local class. */
15426 /* Closures are handled by the LAMBDA_EXPR. */
15427 gcc_assert (!LAMBDA_TYPE_P (TREE_TYPE (t
)));
15428 complete_type (tmp
);
15429 for (fn
= TYPE_METHODS (tmp
); fn
; fn
= DECL_CHAIN (fn
))
15430 if (!DECL_ARTIFICIAL (fn
))
15431 instantiate_decl (fn
, /*defer_ok*/0, /*expl_inst_class*/false);
15435 case STATIC_ASSERT
:
15439 ++c_inhibit_evaluation_warnings
;
15441 tsubst_expr (STATIC_ASSERT_CONDITION (t
),
15444 /*integral_constant_expression_p=*/true);
15445 --c_inhibit_evaluation_warnings
;
15447 finish_static_assert (condition
,
15448 STATIC_ASSERT_MESSAGE (t
),
15449 STATIC_ASSERT_SOURCE_LOCATION (t
),
15450 /*member_p=*/false);
15455 case OACC_PARALLEL
:
15456 tmp
= tsubst_omp_clauses (OMP_CLAUSES (t
), C_ORT_ACC
, args
, complain
,
15458 stmt
= begin_omp_parallel ();
15459 RECUR (OMP_BODY (t
));
15460 finish_omp_construct (TREE_CODE (t
), stmt
, tmp
);
15464 r
= push_omp_privatization_clauses (OMP_PARALLEL_COMBINED (t
));
15465 tmp
= tsubst_omp_clauses (OMP_PARALLEL_CLAUSES (t
), C_ORT_OMP
, args
,
15466 complain
, in_decl
);
15467 if (OMP_PARALLEL_COMBINED (t
))
15468 omp_parallel_combined_clauses
= &tmp
;
15469 stmt
= begin_omp_parallel ();
15470 RECUR (OMP_PARALLEL_BODY (t
));
15471 gcc_assert (omp_parallel_combined_clauses
== NULL
);
15472 OMP_PARALLEL_COMBINED (finish_omp_parallel (tmp
, stmt
))
15473 = OMP_PARALLEL_COMBINED (t
);
15474 pop_omp_privatization_clauses (r
);
15478 r
= push_omp_privatization_clauses (false);
15479 tmp
= tsubst_omp_clauses (OMP_TASK_CLAUSES (t
), C_ORT_OMP
, args
,
15480 complain
, in_decl
);
15481 stmt
= begin_omp_task ();
15482 RECUR (OMP_TASK_BODY (t
));
15483 finish_omp_task (tmp
, stmt
);
15484 pop_omp_privatization_clauses (r
);
15491 case OMP_DISTRIBUTE
:
15495 tree clauses
, body
, pre_body
;
15496 tree declv
= NULL_TREE
, initv
= NULL_TREE
, condv
= NULL_TREE
;
15497 tree orig_declv
= NULL_TREE
;
15498 tree incrv
= NULL_TREE
;
15499 enum c_omp_region_type ort
= C_ORT_OMP
;
15502 if (TREE_CODE (t
) == CILK_SIMD
|| TREE_CODE (t
) == CILK_FOR
)
15504 else if (TREE_CODE (t
) == OACC_LOOP
)
15507 r
= push_omp_privatization_clauses (OMP_FOR_INIT (t
) == NULL_TREE
);
15508 clauses
= tsubst_omp_clauses (OMP_FOR_CLAUSES (t
), ort
, args
, complain
,
15510 if (OMP_FOR_INIT (t
) != NULL_TREE
)
15512 declv
= make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t
)));
15513 if (OMP_FOR_ORIG_DECLS (t
))
15514 orig_declv
= make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t
)));
15515 initv
= make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t
)));
15516 condv
= make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t
)));
15517 incrv
= make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t
)));
15520 stmt
= begin_omp_structured_block ();
15522 pre_body
= push_stmt_list ();
15523 RECUR (OMP_FOR_PRE_BODY (t
));
15524 pre_body
= pop_stmt_list (pre_body
);
15526 if (OMP_FOR_INIT (t
) != NULL_TREE
)
15527 for (i
= 0; i
< TREE_VEC_LENGTH (OMP_FOR_INIT (t
)); i
++)
15528 tsubst_omp_for_iterator (t
, i
, declv
, orig_declv
, initv
, condv
,
15529 incrv
, &clauses
, args
, complain
, in_decl
,
15530 integral_constant_expression_p
);
15531 omp_parallel_combined_clauses
= NULL
;
15533 body
= push_stmt_list ();
15534 RECUR (OMP_FOR_BODY (t
));
15535 body
= pop_stmt_list (body
);
15537 if (OMP_FOR_INIT (t
) != NULL_TREE
)
15538 t
= finish_omp_for (EXPR_LOCATION (t
), TREE_CODE (t
), declv
,
15539 orig_declv
, initv
, condv
, incrv
, body
, pre_body
,
15543 t
= make_node (TREE_CODE (t
));
15544 TREE_TYPE (t
) = void_type_node
;
15545 OMP_FOR_BODY (t
) = body
;
15546 OMP_FOR_PRE_BODY (t
) = pre_body
;
15547 OMP_FOR_CLAUSES (t
) = clauses
;
15548 SET_EXPR_LOCATION (t
, EXPR_LOCATION (t
));
15552 add_stmt (finish_omp_structured_block (stmt
));
15553 pop_omp_privatization_clauses (r
);
15558 omp_parallel_combined_clauses
= NULL
;
15563 r
= push_omp_privatization_clauses (TREE_CODE (t
) == OMP_TEAMS
15564 && OMP_TEAMS_COMBINED (t
));
15565 tmp
= tsubst_omp_clauses (OMP_CLAUSES (t
), C_ORT_OMP
, args
, complain
,
15567 stmt
= push_stmt_list ();
15568 RECUR (OMP_BODY (t
));
15569 stmt
= pop_stmt_list (stmt
);
15572 OMP_BODY (t
) = stmt
;
15573 OMP_CLAUSES (t
) = tmp
;
15575 pop_omp_privatization_clauses (r
);
15579 case OMP_TARGET_DATA
:
15581 tmp
= tsubst_omp_clauses (OMP_CLAUSES (t
), (TREE_CODE (t
) == OACC_DATA
)
15582 ? C_ORT_ACC
: C_ORT_OMP
, args
, complain
,
15584 keep_next_level (true);
15585 stmt
= begin_omp_structured_block ();
15587 RECUR (OMP_BODY (t
));
15588 stmt
= finish_omp_structured_block (stmt
);
15591 OMP_BODY (t
) = stmt
;
15592 OMP_CLAUSES (t
) = tmp
;
15593 if (TREE_CODE (t
) == OMP_TARGET
&& OMP_TARGET_COMBINED (t
))
15595 tree teams
= cp_walk_tree (&stmt
, tsubst_find_omp_teams
, NULL
, NULL
);
15598 /* For combined target teams, ensure the num_teams and
15599 thread_limit clause expressions are evaluated on the host,
15600 before entering the target construct. */
15602 for (c
= OMP_TEAMS_CLAUSES (teams
);
15603 c
; c
= OMP_CLAUSE_CHAIN (c
))
15604 if ((OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_NUM_TEAMS
15605 || OMP_CLAUSE_CODE (c
) == OMP_CLAUSE_THREAD_LIMIT
)
15606 && TREE_CODE (OMP_CLAUSE_OPERAND (c
, 0)) != INTEGER_CST
)
15608 tree expr
= OMP_CLAUSE_OPERAND (c
, 0);
15609 expr
= force_target_expr (TREE_TYPE (expr
), expr
, tf_none
);
15610 if (expr
== error_mark_node
)
15612 tmp
= TARGET_EXPR_SLOT (expr
);
15614 OMP_CLAUSE_OPERAND (c
, 0) = expr
;
15615 tree tc
= build_omp_clause (OMP_CLAUSE_LOCATION (c
),
15616 OMP_CLAUSE_FIRSTPRIVATE
);
15617 OMP_CLAUSE_DECL (tc
) = tmp
;
15618 OMP_CLAUSE_CHAIN (tc
) = OMP_TARGET_CLAUSES (t
);
15619 OMP_TARGET_CLAUSES (t
) = tc
;
15628 tmp
= tsubst_omp_clauses (OACC_DECLARE_CLAUSES (t
), C_ORT_ACC
, args
,
15629 complain
, in_decl
);
15630 OACC_DECLARE_CLAUSES (t
) = tmp
;
15634 case OMP_TARGET_UPDATE
:
15635 case OMP_TARGET_ENTER_DATA
:
15636 case OMP_TARGET_EXIT_DATA
:
15637 tmp
= tsubst_omp_clauses (OMP_STANDALONE_CLAUSES (t
), C_ORT_OMP
, args
,
15638 complain
, in_decl
);
15640 OMP_STANDALONE_CLAUSES (t
) = tmp
;
15644 case OACC_ENTER_DATA
:
15645 case OACC_EXIT_DATA
:
15647 tmp
= tsubst_omp_clauses (OMP_STANDALONE_CLAUSES (t
), C_ORT_ACC
, args
,
15648 complain
, in_decl
);
15650 OMP_STANDALONE_CLAUSES (t
) = tmp
;
15655 tmp
= tsubst_omp_clauses (OMP_ORDERED_CLAUSES (t
), C_ORT_OMP
, args
,
15656 complain
, in_decl
);
15657 stmt
= push_stmt_list ();
15658 RECUR (OMP_BODY (t
));
15659 stmt
= pop_stmt_list (stmt
);
15662 OMP_BODY (t
) = stmt
;
15663 OMP_ORDERED_CLAUSES (t
) = tmp
;
15669 case OMP_TASKGROUP
:
15670 stmt
= push_stmt_list ();
15671 RECUR (OMP_BODY (t
));
15672 stmt
= pop_stmt_list (stmt
);
15675 OMP_BODY (t
) = stmt
;
15680 gcc_assert (OMP_ATOMIC_DEPENDENT_P (t
));
15681 if (TREE_CODE (TREE_OPERAND (t
, 1)) != MODIFY_EXPR
)
15683 tree op1
= TREE_OPERAND (t
, 1);
15684 tree rhs1
= NULL_TREE
;
15686 if (TREE_CODE (op1
) == COMPOUND_EXPR
)
15688 rhs1
= RECUR (TREE_OPERAND (op1
, 0));
15689 op1
= TREE_OPERAND (op1
, 1);
15691 lhs
= RECUR (TREE_OPERAND (op1
, 0));
15692 rhs
= RECUR (TREE_OPERAND (op1
, 1));
15693 finish_omp_atomic (OMP_ATOMIC
, TREE_CODE (op1
), lhs
, rhs
,
15694 NULL_TREE
, NULL_TREE
, rhs1
,
15695 OMP_ATOMIC_SEQ_CST (t
));
15699 tree op1
= TREE_OPERAND (t
, 1);
15700 tree v
= NULL_TREE
, lhs
, rhs
= NULL_TREE
, lhs1
= NULL_TREE
;
15701 tree rhs1
= NULL_TREE
;
15702 enum tree_code code
= TREE_CODE (TREE_OPERAND (op1
, 1));
15703 enum tree_code opcode
= NOP_EXPR
;
15704 if (code
== OMP_ATOMIC_READ
)
15706 v
= RECUR (TREE_OPERAND (op1
, 0));
15707 lhs
= RECUR (TREE_OPERAND (TREE_OPERAND (op1
, 1), 0));
15709 else if (code
== OMP_ATOMIC_CAPTURE_OLD
15710 || code
== OMP_ATOMIC_CAPTURE_NEW
)
15712 tree op11
= TREE_OPERAND (TREE_OPERAND (op1
, 1), 1);
15713 v
= RECUR (TREE_OPERAND (op1
, 0));
15714 lhs1
= RECUR (TREE_OPERAND (TREE_OPERAND (op1
, 1), 0));
15715 if (TREE_CODE (op11
) == COMPOUND_EXPR
)
15717 rhs1
= RECUR (TREE_OPERAND (op11
, 0));
15718 op11
= TREE_OPERAND (op11
, 1);
15720 lhs
= RECUR (TREE_OPERAND (op11
, 0));
15721 rhs
= RECUR (TREE_OPERAND (op11
, 1));
15722 opcode
= TREE_CODE (op11
);
15723 if (opcode
== MODIFY_EXPR
)
15729 lhs
= RECUR (TREE_OPERAND (op1
, 0));
15730 rhs
= RECUR (TREE_OPERAND (op1
, 1));
15732 finish_omp_atomic (code
, opcode
, lhs
, rhs
, v
, lhs1
, rhs1
,
15733 OMP_ATOMIC_SEQ_CST (t
));
15737 case TRANSACTION_EXPR
:
15740 flags
|= (TRANSACTION_EXPR_OUTER (t
) ? TM_STMT_ATTR_OUTER
: 0);
15741 flags
|= (TRANSACTION_EXPR_RELAXED (t
) ? TM_STMT_ATTR_RELAXED
: 0);
15743 if (TRANSACTION_EXPR_IS_STMT (t
))
15745 tree body
= TRANSACTION_EXPR_BODY (t
);
15746 tree noex
= NULL_TREE
;
15747 if (TREE_CODE (body
) == MUST_NOT_THROW_EXPR
)
15749 noex
= MUST_NOT_THROW_COND (body
);
15750 if (noex
== NULL_TREE
)
15751 noex
= boolean_true_node
;
15752 body
= TREE_OPERAND (body
, 0);
15754 stmt
= begin_transaction_stmt (input_location
, NULL
, flags
);
15756 finish_transaction_stmt (stmt
, NULL
, flags
, RECUR (noex
));
15760 stmt
= build_transaction_expr (EXPR_LOCATION (t
),
15761 RECUR (TRANSACTION_EXPR_BODY (t
)),
15768 case MUST_NOT_THROW_EXPR
:
15770 tree op0
= RECUR (TREE_OPERAND (t
, 0));
15771 tree cond
= RECUR (MUST_NOT_THROW_COND (t
));
15772 RETURN (build_must_not_throw_expr (op0
, cond
));
15775 case EXPR_PACK_EXPANSION
:
15776 error ("invalid use of pack expansion expression");
15777 RETURN (error_mark_node
);
15779 case NONTYPE_ARGUMENT_PACK
:
15780 error ("use %<...%> to expand argument pack");
15781 RETURN (error_mark_node
);
15783 case CILK_SPAWN_STMT
:
15784 cfun
->calls_cilk_spawn
= 1;
15785 RETURN (build_cilk_spawn (EXPR_LOCATION (t
), RECUR (CILK_SPAWN_FN (t
))));
15787 case CILK_SYNC_STMT
:
15788 RETURN (build_cilk_sync ());
15790 case COMPOUND_EXPR
:
15791 tmp
= RECUR (TREE_OPERAND (t
, 0));
15792 if (tmp
== NULL_TREE
)
15793 /* If the first operand was a statement, we're done with it. */
15794 RETURN (RECUR (TREE_OPERAND (t
, 1)));
15795 RETURN (build_x_compound_expr (EXPR_LOCATION (t
), tmp
,
15796 RECUR (TREE_OPERAND (t
, 1)),
15799 case ANNOTATE_EXPR
:
15800 tmp
= RECUR (TREE_OPERAND (t
, 0));
15801 RETURN (build2_loc (EXPR_LOCATION (t
), ANNOTATE_EXPR
,
15802 TREE_TYPE (tmp
), tmp
, RECUR (TREE_OPERAND (t
, 1))));
15805 gcc_assert (!STATEMENT_CODE_P (TREE_CODE (t
)));
15807 RETURN (tsubst_copy_and_build (t
, args
, complain
, in_decl
,
15808 /*function_p=*/false,
15809 integral_constant_expression_p
));
15812 RETURN (NULL_TREE
);
15814 input_location
= loc
;
15820 /* Instantiate the special body of the artificial DECL_OMP_DECLARE_REDUCTION
15821 function. For description of the body see comment above
15822 cp_parser_omp_declare_reduction_exprs. */
15825 tsubst_omp_udr (tree t
, tree args
, tsubst_flags_t complain
, tree in_decl
)
15827 if (t
== NULL_TREE
|| t
== error_mark_node
)
15830 gcc_assert (TREE_CODE (t
) == STATEMENT_LIST
);
15832 tree_stmt_iterator tsi
;
15835 memset (stmts
, 0, sizeof stmts
);
15836 for (i
= 0, tsi
= tsi_start (t
);
15837 i
< 7 && !tsi_end_p (tsi
);
15838 i
++, tsi_next (&tsi
))
15839 stmts
[i
] = tsi_stmt (tsi
);
15840 gcc_assert (tsi_end_p (tsi
));
15844 gcc_assert (TREE_CODE (stmts
[0]) == DECL_EXPR
15845 && TREE_CODE (stmts
[1]) == DECL_EXPR
);
15846 tree omp_out
= tsubst (DECL_EXPR_DECL (stmts
[0]),
15847 args
, complain
, in_decl
);
15848 tree omp_in
= tsubst (DECL_EXPR_DECL (stmts
[1]),
15849 args
, complain
, in_decl
);
15850 DECL_CONTEXT (omp_out
) = current_function_decl
;
15851 DECL_CONTEXT (omp_in
) = current_function_decl
;
15852 keep_next_level (true);
15853 tree block
= begin_omp_structured_block ();
15854 tsubst_expr (stmts
[2], args
, complain
, in_decl
, false);
15855 block
= finish_omp_structured_block (block
);
15856 block
= maybe_cleanup_point_expr_void (block
);
15857 add_decl_expr (omp_out
);
15858 if (TREE_NO_WARNING (DECL_EXPR_DECL (stmts
[0])))
15859 TREE_NO_WARNING (omp_out
) = 1;
15860 add_decl_expr (omp_in
);
15861 finish_expr_stmt (block
);
15865 gcc_assert (TREE_CODE (stmts
[3]) == DECL_EXPR
15866 && TREE_CODE (stmts
[4]) == DECL_EXPR
);
15867 tree omp_priv
= tsubst (DECL_EXPR_DECL (stmts
[3]),
15868 args
, complain
, in_decl
);
15869 tree omp_orig
= tsubst (DECL_EXPR_DECL (stmts
[4]),
15870 args
, complain
, in_decl
);
15871 DECL_CONTEXT (omp_priv
) = current_function_decl
;
15872 DECL_CONTEXT (omp_orig
) = current_function_decl
;
15873 keep_next_level (true);
15874 tree block
= begin_omp_structured_block ();
15875 tsubst_expr (stmts
[5], args
, complain
, in_decl
, false);
15876 block
= finish_omp_structured_block (block
);
15877 block
= maybe_cleanup_point_expr_void (block
);
15878 cp_walk_tree (&block
, cp_remove_omp_priv_cleanup_stmt
, omp_priv
, NULL
);
15879 add_decl_expr (omp_priv
);
15880 add_decl_expr (omp_orig
);
15881 finish_expr_stmt (block
);
15883 add_decl_expr (omp_orig
);
15887 /* T is a postfix-expression that is not being used in a function
15888 call. Return the substituted version of T. */
15891 tsubst_non_call_postfix_expression (tree t
, tree args
,
15892 tsubst_flags_t complain
,
15895 if (TREE_CODE (t
) == SCOPE_REF
)
15896 t
= tsubst_qualified_id (t
, args
, complain
, in_decl
,
15897 /*done=*/false, /*address_p=*/false);
15899 t
= tsubst_copy_and_build (t
, args
, complain
, in_decl
,
15900 /*function_p=*/false,
15901 /*integral_constant_expression_p=*/false);
15906 /* Like tsubst but deals with expressions and performs semantic
15907 analysis. FUNCTION_P is true if T is the "F" in "F (ARGS)". */
15910 tsubst_copy_and_build (tree t
,
15912 tsubst_flags_t complain
,
15915 bool integral_constant_expression_p
)
15917 #define RETURN(EXP) do { retval = (EXP); goto out; } while(0)
15918 #define RECUR(NODE) \
15919 tsubst_copy_and_build (NODE, args, complain, in_decl, \
15920 /*function_p=*/false, \
15921 integral_constant_expression_p)
15926 if (t
== NULL_TREE
|| t
== error_mark_node
)
15929 loc
= input_location
;
15930 if (EXPR_HAS_LOCATION (t
))
15931 input_location
= EXPR_LOCATION (t
);
15933 /* N3276 decltype magic only applies to calls at the top level or on the
15934 right side of a comma. */
15935 tsubst_flags_t decltype_flag
= (complain
& tf_decltype
);
15936 complain
&= ~tf_decltype
;
15938 switch (TREE_CODE (t
))
15942 /* Fall through. */
15943 case IDENTIFIER_NODE
:
15947 bool non_integral_constant_expression_p
;
15948 const char *error_msg
;
15950 if (IDENTIFIER_TYPENAME_P (t
))
15952 tree new_type
= tsubst (TREE_TYPE (t
), args
, complain
, in_decl
);
15953 t
= mangle_conv_op_name_for_type (new_type
);
15956 /* Look up the name. */
15957 decl
= lookup_name (t
);
15959 /* By convention, expressions use ERROR_MARK_NODE to indicate
15960 failure, not NULL_TREE. */
15961 if (decl
== NULL_TREE
)
15962 decl
= error_mark_node
;
15964 decl
= finish_id_expression (t
, decl
, NULL_TREE
,
15966 integral_constant_expression_p
,
15967 /*allow_non_integral_constant_expression_p=*/(cxx_dialect
>= cxx11
),
15968 &non_integral_constant_expression_p
,
15969 /*template_p=*/false,
15971 /*address_p=*/false,
15972 /*template_arg_p=*/false,
15977 if (!function_p
&& identifier_p (decl
))
15979 if (complain
& tf_error
)
15980 unqualified_name_lookup_error (decl
);
15981 decl
= error_mark_node
;
15986 case TEMPLATE_ID_EXPR
:
15989 tree templ
= RECUR (TREE_OPERAND (t
, 0));
15990 tree targs
= TREE_OPERAND (t
, 1);
15993 targs
= tsubst_template_args (targs
, args
, complain
, in_decl
);
15994 if (targs
== error_mark_node
)
15995 return error_mark_node
;
15997 if (variable_template_p (templ
))
15998 RETURN (lookup_and_finish_template_variable (templ
, targs
, complain
));
16000 if (TREE_CODE (templ
) == COMPONENT_REF
)
16002 object
= TREE_OPERAND (templ
, 0);
16003 templ
= TREE_OPERAND (templ
, 1);
16006 object
= NULL_TREE
;
16007 templ
= lookup_template_function (templ
, targs
);
16010 RETURN (build3 (COMPONENT_REF
, TREE_TYPE (templ
),
16011 object
, templ
, NULL_TREE
));
16013 RETURN (baselink_for_fns (templ
));
16018 tree r
= RECUR (TREE_OPERAND (t
, 0));
16020 if (REFERENCE_REF_P (t
))
16022 /* A type conversion to reference type will be enclosed in
16023 such an indirect ref, but the substitution of the cast
16024 will have also added such an indirect ref. */
16025 if (TREE_CODE (TREE_TYPE (r
)) == REFERENCE_TYPE
)
16026 r
= convert_from_reference (r
);
16029 r
= build_x_indirect_ref (input_location
, r
, RO_UNARY_STAR
,
16030 complain
|decltype_flag
);
16032 if (TREE_CODE (r
) == INDIRECT_REF
)
16033 REF_PARENTHESIZED_P (r
) = REF_PARENTHESIZED_P (t
);
16040 tree type
= tsubst (TREE_TYPE (t
), args
, complain
, in_decl
);
16041 tree op0
= RECUR (TREE_OPERAND (t
, 0));
16042 RETURN (build_nop (type
, op0
));
16045 case IMPLICIT_CONV_EXPR
:
16047 tree type
= tsubst (TREE_TYPE (t
), args
, complain
, in_decl
);
16048 tree expr
= RECUR (TREE_OPERAND (t
, 0));
16049 int flags
= LOOKUP_IMPLICIT
;
16050 if (IMPLICIT_CONV_EXPR_DIRECT_INIT (t
))
16051 flags
= LOOKUP_NORMAL
;
16052 RETURN (perform_implicit_conversion_flags (type
, expr
, complain
,
16058 tree type
= tsubst (TREE_TYPE (t
), args
, complain
, in_decl
);
16059 tree op0
= RECUR (TREE_OPERAND (t
, 0));
16060 RETURN (build1 (CONVERT_EXPR
, type
, op0
));
16064 case REINTERPRET_CAST_EXPR
:
16065 case CONST_CAST_EXPR
:
16066 case DYNAMIC_CAST_EXPR
:
16067 case STATIC_CAST_EXPR
:
16070 tree op
, r
= NULL_TREE
;
16072 type
= tsubst (TREE_TYPE (t
), args
, complain
, in_decl
);
16073 if (integral_constant_expression_p
16074 && !cast_valid_in_integral_constant_expression_p (type
))
16076 if (complain
& tf_error
)
16077 error ("a cast to a type other than an integral or "
16078 "enumeration type cannot appear in a constant-expression");
16079 RETURN (error_mark_node
);
16082 op
= RECUR (TREE_OPERAND (t
, 0));
16084 warning_sentinel
s(warn_useless_cast
);
16085 switch (TREE_CODE (t
))
16088 r
= build_functional_cast (type
, op
, complain
);
16090 case REINTERPRET_CAST_EXPR
:
16091 r
= build_reinterpret_cast (type
, op
, complain
);
16093 case CONST_CAST_EXPR
:
16094 r
= build_const_cast (type
, op
, complain
);
16096 case DYNAMIC_CAST_EXPR
:
16097 r
= build_dynamic_cast (type
, op
, complain
);
16099 case STATIC_CAST_EXPR
:
16100 r
= build_static_cast (type
, op
, complain
);
16103 gcc_unreachable ();
16109 case POSTDECREMENT_EXPR
:
16110 case POSTINCREMENT_EXPR
:
16111 op1
= tsubst_non_call_postfix_expression (TREE_OPERAND (t
, 0),
16112 args
, complain
, in_decl
);
16113 RETURN (build_x_unary_op (input_location
, TREE_CODE (t
), op1
,
16114 complain
|decltype_flag
));
16116 case PREDECREMENT_EXPR
:
16117 case PREINCREMENT_EXPR
:
16121 case TRUTH_NOT_EXPR
:
16122 case UNARY_PLUS_EXPR
: /* Unary + */
16123 case REALPART_EXPR
:
16124 case IMAGPART_EXPR
:
16125 RETURN (build_x_unary_op (input_location
, TREE_CODE (t
),
16126 RECUR (TREE_OPERAND (t
, 0)),
16127 complain
|decltype_flag
));
16129 case FIX_TRUNC_EXPR
:
16130 RETURN (cp_build_unary_op (FIX_TRUNC_EXPR
, RECUR (TREE_OPERAND (t
, 0)),
16134 op1
= TREE_OPERAND (t
, 0);
16135 if (TREE_CODE (op1
) == LABEL_DECL
)
16136 RETURN (finish_label_address_expr (DECL_NAME (op1
),
16137 EXPR_LOCATION (op1
)));
16138 if (TREE_CODE (op1
) == SCOPE_REF
)
16139 op1
= tsubst_qualified_id (op1
, args
, complain
, in_decl
,
16140 /*done=*/true, /*address_p=*/true);
16142 op1
= tsubst_non_call_postfix_expression (op1
, args
, complain
,
16144 RETURN (build_x_unary_op (input_location
, ADDR_EXPR
, op1
,
16145 complain
|decltype_flag
));
16150 case TRUNC_DIV_EXPR
:
16151 case CEIL_DIV_EXPR
:
16152 case FLOOR_DIV_EXPR
:
16153 case ROUND_DIV_EXPR
:
16154 case EXACT_DIV_EXPR
:
16158 case TRUNC_MOD_EXPR
:
16159 case FLOOR_MOD_EXPR
:
16160 case TRUTH_ANDIF_EXPR
:
16161 case TRUTH_ORIF_EXPR
:
16162 case TRUTH_AND_EXPR
:
16163 case TRUTH_OR_EXPR
:
16179 warning_sentinel
s1(warn_type_limits
);
16180 warning_sentinel
s2(warn_div_by_zero
);
16181 warning_sentinel
s3(warn_logical_op
);
16182 warning_sentinel
s4(warn_tautological_compare
);
16183 tree op0
= RECUR (TREE_OPERAND (t
, 0));
16184 tree op1
= RECUR (TREE_OPERAND (t
, 1));
16185 tree r
= build_x_binary_op
16186 (input_location
, TREE_CODE (t
),
16188 (TREE_NO_WARNING (TREE_OPERAND (t
, 0))
16190 : TREE_CODE (TREE_OPERAND (t
, 0))),
16192 (TREE_NO_WARNING (TREE_OPERAND (t
, 1))
16194 : TREE_CODE (TREE_OPERAND (t
, 1))),
16196 complain
|decltype_flag
);
16197 if (EXPR_P (r
) && TREE_NO_WARNING (t
))
16198 TREE_NO_WARNING (r
) = TREE_NO_WARNING (t
);
16203 case POINTER_PLUS_EXPR
:
16205 tree op0
= RECUR (TREE_OPERAND (t
, 0));
16206 tree op1
= RECUR (TREE_OPERAND (t
, 1));
16207 return fold_build_pointer_plus (op0
, op1
);
16211 RETURN (tsubst_qualified_id (t
, args
, complain
, in_decl
, /*done=*/true,
16212 /*address_p=*/false));
16214 op1
= tsubst_non_call_postfix_expression (TREE_OPERAND (t
, 0),
16215 args
, complain
, in_decl
);
16216 RETURN (build_x_array_ref (EXPR_LOCATION (t
), op1
,
16217 RECUR (TREE_OPERAND (t
, 1)),
16218 complain
|decltype_flag
));
16220 case ARRAY_NOTATION_REF
:
16222 tree start_index
, length
, stride
;
16223 op1
= tsubst_non_call_postfix_expression (ARRAY_NOTATION_ARRAY (t
),
16224 args
, complain
, in_decl
);
16225 start_index
= RECUR (ARRAY_NOTATION_START (t
));
16226 length
= RECUR (ARRAY_NOTATION_LENGTH (t
));
16227 stride
= RECUR (ARRAY_NOTATION_STRIDE (t
));
16228 RETURN (build_array_notation_ref (EXPR_LOCATION (t
), op1
, start_index
,
16229 length
, stride
, TREE_TYPE (op1
)));
16232 if (PACK_EXPANSION_P (TREE_OPERAND (t
, 0))
16233 || ARGUMENT_PACK_P (TREE_OPERAND (t
, 0)))
16234 RETURN (tsubst_copy (t
, args
, complain
, in_decl
));
16241 op1
= TREE_OPERAND (t
, 0);
16242 if (TREE_CODE (t
) == SIZEOF_EXPR
&& SIZEOF_EXPR_TYPE_P (t
))
16243 op1
= TREE_TYPE (op1
);
16246 /* When there are no ARGS, we are trying to evaluate a
16247 non-dependent expression from the parser. Trying to do
16248 the substitutions may not work. */
16250 op1
= TREE_TYPE (op1
);
16254 ++cp_unevaluated_operand
;
16255 ++c_inhibit_evaluation_warnings
;
16257 op1
= tsubst (op1
, args
, complain
, in_decl
);
16259 op1
= tsubst_copy_and_build (op1
, args
, complain
, in_decl
,
16260 /*function_p=*/false,
16261 /*integral_constant_expression_p=*/
16263 --cp_unevaluated_operand
;
16264 --c_inhibit_evaluation_warnings
;
16267 r
= cxx_sizeof_or_alignof_type (op1
, TREE_CODE (t
),
16268 complain
& tf_error
);
16270 r
= cxx_sizeof_or_alignof_expr (op1
, TREE_CODE (t
),
16271 complain
& tf_error
);
16272 if (TREE_CODE (t
) == SIZEOF_EXPR
&& r
!= error_mark_node
)
16274 if (TREE_CODE (r
) != SIZEOF_EXPR
|| TYPE_P (op1
))
16276 if (!processing_template_decl
&& TYPE_P (op1
))
16278 r
= build_min (SIZEOF_EXPR
, size_type_node
,
16279 build1 (NOP_EXPR
, op1
, error_mark_node
));
16280 SIZEOF_EXPR_TYPE_P (r
) = 1;
16283 r
= build_min (SIZEOF_EXPR
, size_type_node
, op1
);
16284 TREE_SIDE_EFFECTS (r
) = 0;
16285 TREE_READONLY (r
) = 1;
16287 SET_EXPR_LOCATION (r
, EXPR_LOCATION (t
));
16292 case AT_ENCODE_EXPR
:
16294 op1
= TREE_OPERAND (t
, 0);
16295 ++cp_unevaluated_operand
;
16296 ++c_inhibit_evaluation_warnings
;
16297 op1
= tsubst_copy_and_build (op1
, args
, complain
, in_decl
,
16298 /*function_p=*/false,
16299 /*integral_constant_expression_p=*/false);
16300 --cp_unevaluated_operand
;
16301 --c_inhibit_evaluation_warnings
;
16302 RETURN (objc_build_encode_expr (op1
));
16305 case NOEXCEPT_EXPR
:
16306 op1
= TREE_OPERAND (t
, 0);
16307 ++cp_unevaluated_operand
;
16308 ++c_inhibit_evaluation_warnings
;
16309 ++cp_noexcept_operand
;
16310 op1
= tsubst_copy_and_build (op1
, args
, complain
, in_decl
,
16311 /*function_p=*/false,
16312 /*integral_constant_expression_p=*/false);
16313 --cp_unevaluated_operand
;
16314 --c_inhibit_evaluation_warnings
;
16315 --cp_noexcept_operand
;
16316 RETURN (finish_noexcept_expr (op1
, complain
));
16320 warning_sentinel
s(warn_div_by_zero
);
16321 tree lhs
= RECUR (TREE_OPERAND (t
, 0));
16322 tree rhs
= RECUR (TREE_OPERAND (t
, 2));
16323 tree r
= build_x_modify_expr
16324 (EXPR_LOCATION (t
), lhs
, TREE_CODE (TREE_OPERAND (t
, 1)), rhs
,
16325 complain
|decltype_flag
);
16326 /* TREE_NO_WARNING must be set if either the expression was
16327 parenthesized or it uses an operator such as >>= rather
16328 than plain assignment. In the former case, it was already
16329 set and must be copied. In the latter case,
16330 build_x_modify_expr sets it and it must not be reset
16332 if (TREE_NO_WARNING (t
))
16333 TREE_NO_WARNING (r
) = TREE_NO_WARNING (t
);
16339 op1
= tsubst_non_call_postfix_expression (TREE_OPERAND (t
, 0),
16340 args
, complain
, in_decl
);
16341 /* Remember that there was a reference to this entity. */
16343 && !mark_used (op1
, complain
) && !(complain
& tf_error
))
16344 RETURN (error_mark_node
);
16345 RETURN (build_x_arrow (input_location
, op1
, complain
));
16349 tree placement
= RECUR (TREE_OPERAND (t
, 0));
16350 tree init
= RECUR (TREE_OPERAND (t
, 3));
16351 vec
<tree
, va_gc
> *placement_vec
;
16352 vec
<tree
, va_gc
> *init_vec
;
16355 if (placement
== NULL_TREE
)
16356 placement_vec
= NULL
;
16359 placement_vec
= make_tree_vector ();
16360 for (; placement
!= NULL_TREE
; placement
= TREE_CHAIN (placement
))
16361 vec_safe_push (placement_vec
, TREE_VALUE (placement
));
16364 /* If there was an initializer in the original tree, but it
16365 instantiated to an empty list, then we should pass a
16366 non-NULL empty vector to tell build_new that it was an
16367 empty initializer() rather than no initializer. This can
16368 only happen when the initializer is a pack expansion whose
16369 parameter packs are of length zero. */
16370 if (init
== NULL_TREE
&& TREE_OPERAND (t
, 3) == NULL_TREE
)
16374 init_vec
= make_tree_vector ();
16375 if (init
== void_node
)
16376 gcc_assert (init_vec
!= NULL
);
16379 for (; init
!= NULL_TREE
; init
= TREE_CHAIN (init
))
16380 vec_safe_push (init_vec
, TREE_VALUE (init
));
16384 tree op1
= tsubst (TREE_OPERAND (t
, 1), args
, complain
, in_decl
);
16385 tree op2
= RECUR (TREE_OPERAND (t
, 2));
16386 ret
= build_new (&placement_vec
, op1
, op2
, &init_vec
,
16387 NEW_EXPR_USE_GLOBAL (t
),
16390 if (placement_vec
!= NULL
)
16391 release_tree_vector (placement_vec
);
16392 if (init_vec
!= NULL
)
16393 release_tree_vector (init_vec
);
16400 tree op0
= RECUR (TREE_OPERAND (t
, 0));
16401 tree op1
= RECUR (TREE_OPERAND (t
, 1));
16402 RETURN (delete_sanity (op0
, op1
,
16403 DELETE_EXPR_USE_VEC (t
),
16404 DELETE_EXPR_USE_GLOBAL (t
),
16408 case COMPOUND_EXPR
:
16410 tree op0
= tsubst_copy_and_build (TREE_OPERAND (t
, 0), args
,
16411 complain
& ~tf_decltype
, in_decl
,
16412 /*function_p=*/false,
16413 integral_constant_expression_p
);
16414 RETURN (build_x_compound_expr (EXPR_LOCATION (t
),
16416 RECUR (TREE_OPERAND (t
, 1)),
16417 complain
|decltype_flag
));
16423 vec
<tree
, va_gc
> *call_args
;
16424 unsigned int nargs
, i
;
16429 function
= CALL_EXPR_FN (t
);
16430 /* When we parsed the expression, we determined whether or
16431 not Koenig lookup should be performed. */
16432 koenig_p
= KOENIG_LOOKUP_P (t
);
16433 if (TREE_CODE (function
) == SCOPE_REF
)
16435 qualified_p
= true;
16436 function
= tsubst_qualified_id (function
, args
, complain
, in_decl
,
16438 /*address_p=*/false);
16440 else if (koenig_p
&& identifier_p (function
))
16442 /* Do nothing; calling tsubst_copy_and_build on an identifier
16443 would incorrectly perform unqualified lookup again.
16445 Note that we can also have an IDENTIFIER_NODE if the earlier
16446 unqualified lookup found a member function; in that case
16447 koenig_p will be false and we do want to do the lookup
16448 again to find the instantiated member function.
16450 FIXME but doing that causes c++/15272, so we need to stop
16451 using IDENTIFIER_NODE in that situation. */
16452 qualified_p
= false;
16456 if (TREE_CODE (function
) == COMPONENT_REF
)
16458 tree op
= TREE_OPERAND (function
, 1);
16460 qualified_p
= (TREE_CODE (op
) == SCOPE_REF
16461 || (BASELINK_P (op
)
16462 && BASELINK_QUALIFIED_P (op
)));
16465 qualified_p
= false;
16467 if (TREE_CODE (function
) == ADDR_EXPR
16468 && TREE_CODE (TREE_OPERAND (function
, 0)) == FUNCTION_DECL
)
16469 /* Avoid error about taking the address of a constructor. */
16470 function
= TREE_OPERAND (function
, 0);
16472 function
= tsubst_copy_and_build (function
, args
, complain
,
16475 integral_constant_expression_p
);
16477 if (BASELINK_P (function
))
16478 qualified_p
= true;
16481 nargs
= call_expr_nargs (t
);
16482 call_args
= make_tree_vector ();
16483 for (i
= 0; i
< nargs
; ++i
)
16485 tree arg
= CALL_EXPR_ARG (t
, i
);
16487 if (!PACK_EXPANSION_P (arg
))
16488 vec_safe_push (call_args
, RECUR (CALL_EXPR_ARG (t
, i
)));
16491 /* Expand the pack expansion and push each entry onto
16493 arg
= tsubst_pack_expansion (arg
, args
, complain
, in_decl
);
16494 if (TREE_CODE (arg
) == TREE_VEC
)
16496 unsigned int len
, j
;
16498 len
= TREE_VEC_LENGTH (arg
);
16499 for (j
= 0; j
< len
; ++j
)
16501 tree value
= TREE_VEC_ELT (arg
, j
);
16502 if (value
!= NULL_TREE
)
16503 value
= convert_from_reference (value
);
16504 vec_safe_push (call_args
, value
);
16509 /* A partial substitution. Add one entry. */
16510 vec_safe_push (call_args
, arg
);
16515 /* We do not perform argument-dependent lookup if normal
16516 lookup finds a non-function, in accordance with the
16517 expected resolution of DR 218. */
16519 && ((is_overloaded_fn (function
)
16520 /* If lookup found a member function, the Koenig lookup is
16521 not appropriate, even if an unqualified-name was used
16522 to denote the function. */
16523 && !DECL_FUNCTION_MEMBER_P (get_first_fn (function
)))
16524 || identifier_p (function
))
16525 /* Only do this when substitution turns a dependent call
16526 into a non-dependent call. */
16527 && type_dependent_expression_p_push (t
)
16528 && !any_type_dependent_arguments_p (call_args
))
16529 function
= perform_koenig_lookup (function
, call_args
, tf_none
);
16531 if (identifier_p (function
)
16532 && !any_type_dependent_arguments_p (call_args
))
16534 if (koenig_p
&& (complain
& tf_warning_or_error
))
16536 /* For backwards compatibility and good diagnostics, try
16537 the unqualified lookup again if we aren't in SFINAE
16539 tree unq
= (tsubst_copy_and_build
16540 (function
, args
, complain
, in_decl
, true,
16541 integral_constant_expression_p
));
16542 if (unq
== error_mark_node
)
16543 RETURN (error_mark_node
);
16545 if (unq
!= function
)
16548 if (INDIRECT_REF_P (fn
))
16549 fn
= TREE_OPERAND (fn
, 0);
16550 if (TREE_CODE (fn
) == COMPONENT_REF
)
16551 fn
= TREE_OPERAND (fn
, 1);
16552 if (is_overloaded_fn (fn
))
16553 fn
= get_first_fn (fn
);
16554 if (permerror (EXPR_LOC_OR_LOC (t
, input_location
),
16555 "%qD was not declared in this scope, "
16556 "and no declarations were found by "
16557 "argument-dependent lookup at the point "
16558 "of instantiation", function
))
16561 /* Can't say anything more. */;
16562 else if (DECL_CLASS_SCOPE_P (fn
))
16564 location_t loc
= EXPR_LOC_OR_LOC (t
,
16567 "declarations in dependent base %qT are "
16568 "not found by unqualified lookup",
16569 DECL_CLASS_CONTEXT (fn
));
16570 if (current_class_ptr
)
16572 "use %<this->%D%> instead", function
);
16575 "use %<%T::%D%> instead",
16576 current_class_name
, function
);
16579 inform (DECL_SOURCE_LOCATION (fn
),
16580 "%qD declared here, later in the "
16581 "translation unit", fn
);
16586 if (identifier_p (function
))
16588 if (complain
& tf_error
)
16589 unqualified_name_lookup_error (function
);
16590 release_tree_vector (call_args
);
16591 RETURN (error_mark_node
);
16595 /* Remember that there was a reference to this entity. */
16596 if (DECL_P (function
)
16597 && !mark_used (function
, complain
) && !(complain
& tf_error
))
16598 RETURN (error_mark_node
);
16600 /* Put back tf_decltype for the actual call. */
16601 complain
|= decltype_flag
;
16603 if (TREE_CODE (function
) == OFFSET_REF
)
16604 ret
= build_offset_ref_call_from_tree (function
, &call_args
,
16606 else if (TREE_CODE (function
) == COMPONENT_REF
)
16608 tree instance
= TREE_OPERAND (function
, 0);
16609 tree fn
= TREE_OPERAND (function
, 1);
16611 if (processing_template_decl
16612 && (type_dependent_expression_p (instance
)
16613 || (!BASELINK_P (fn
)
16614 && TREE_CODE (fn
) != FIELD_DECL
)
16615 || type_dependent_expression_p (fn
)
16616 || any_type_dependent_arguments_p (call_args
)))
16617 ret
= build_nt_call_vec (function
, call_args
);
16618 else if (!BASELINK_P (fn
))
16619 ret
= finish_call_expr (function
, &call_args
,
16620 /*disallow_virtual=*/false,
16621 /*koenig_p=*/false,
16624 ret
= (build_new_method_call
16626 &call_args
, NULL_TREE
,
16627 qualified_p
? LOOKUP_NONVIRTUAL
: LOOKUP_NORMAL
,
16632 ret
= finish_call_expr (function
, &call_args
,
16633 /*disallow_virtual=*/qualified_p
,
16637 release_tree_vector (call_args
);
16644 tree cond
= RECUR (TREE_OPERAND (t
, 0));
16645 tree folded_cond
= fold_non_dependent_expr (cond
);
16648 if (TREE_CODE (folded_cond
) == INTEGER_CST
)
16650 if (integer_zerop (folded_cond
))
16652 ++c_inhibit_evaluation_warnings
;
16653 exp1
= RECUR (TREE_OPERAND (t
, 1));
16654 --c_inhibit_evaluation_warnings
;
16655 exp2
= RECUR (TREE_OPERAND (t
, 2));
16659 exp1
= RECUR (TREE_OPERAND (t
, 1));
16660 ++c_inhibit_evaluation_warnings
;
16661 exp2
= RECUR (TREE_OPERAND (t
, 2));
16662 --c_inhibit_evaluation_warnings
;
16664 cond
= folded_cond
;
16668 exp1
= RECUR (TREE_OPERAND (t
, 1));
16669 exp2
= RECUR (TREE_OPERAND (t
, 2));
16672 RETURN (build_x_conditional_expr (EXPR_LOCATION (t
),
16673 cond
, exp1
, exp2
, complain
));
16676 case PSEUDO_DTOR_EXPR
:
16678 tree op0
= RECUR (TREE_OPERAND (t
, 0));
16679 tree op1
= RECUR (TREE_OPERAND (t
, 1));
16680 tree op2
= tsubst (TREE_OPERAND (t
, 2), args
, complain
, in_decl
);
16681 RETURN (finish_pseudo_destructor_expr (op0
, op1
, op2
,
16687 tree purpose
, value
, chain
;
16689 if (t
== void_list_node
)
16692 if ((TREE_PURPOSE (t
) && PACK_EXPANSION_P (TREE_PURPOSE (t
)))
16693 || (TREE_VALUE (t
) && PACK_EXPANSION_P (TREE_VALUE (t
))))
16695 /* We have pack expansions, so expand those and
16696 create a new list out of it. */
16697 tree purposevec
= NULL_TREE
;
16698 tree valuevec
= NULL_TREE
;
16702 /* Expand the argument expressions. */
16703 if (TREE_PURPOSE (t
))
16704 purposevec
= tsubst_pack_expansion (TREE_PURPOSE (t
), args
,
16705 complain
, in_decl
);
16706 if (TREE_VALUE (t
))
16707 valuevec
= tsubst_pack_expansion (TREE_VALUE (t
), args
,
16708 complain
, in_decl
);
16710 /* Build the rest of the list. */
16711 chain
= TREE_CHAIN (t
);
16712 if (chain
&& chain
!= void_type_node
)
16713 chain
= RECUR (chain
);
16715 /* Determine the number of arguments. */
16716 if (purposevec
&& TREE_CODE (purposevec
) == TREE_VEC
)
16718 len
= TREE_VEC_LENGTH (purposevec
);
16719 gcc_assert (!valuevec
|| len
== TREE_VEC_LENGTH (valuevec
));
16721 else if (TREE_CODE (valuevec
) == TREE_VEC
)
16722 len
= TREE_VEC_LENGTH (valuevec
);
16725 /* Since we only performed a partial substitution into
16726 the argument pack, we only RETURN (a single list
16728 if (purposevec
== TREE_PURPOSE (t
)
16729 && valuevec
== TREE_VALUE (t
)
16730 && chain
== TREE_CHAIN (t
))
16733 RETURN (tree_cons (purposevec
, valuevec
, chain
));
16736 /* Convert the argument vectors into a TREE_LIST */
16740 /* Grab the Ith values. */
16742 purpose
= purposevec
? TREE_VEC_ELT (purposevec
, i
)
16745 = valuevec
? convert_from_reference (TREE_VEC_ELT (valuevec
, i
))
16748 /* Build the list (backwards). */
16749 chain
= tree_cons (purpose
, value
, chain
);
16755 purpose
= TREE_PURPOSE (t
);
16757 purpose
= RECUR (purpose
);
16758 value
= TREE_VALUE (t
);
16760 value
= RECUR (value
);
16761 chain
= TREE_CHAIN (t
);
16762 if (chain
&& chain
!= void_type_node
)
16763 chain
= RECUR (chain
);
16764 if (purpose
== TREE_PURPOSE (t
)
16765 && value
== TREE_VALUE (t
)
16766 && chain
== TREE_CHAIN (t
))
16768 RETURN (tree_cons (purpose
, value
, chain
));
16771 case COMPONENT_REF
:
16778 object
= tsubst_non_call_postfix_expression (TREE_OPERAND (t
, 0),
16779 args
, complain
, in_decl
);
16780 /* Remember that there was a reference to this entity. */
16781 if (DECL_P (object
)
16782 && !mark_used (object
, complain
) && !(complain
& tf_error
))
16783 RETURN (error_mark_node
);
16784 object_type
= TREE_TYPE (object
);
16786 member
= TREE_OPERAND (t
, 1);
16787 if (BASELINK_P (member
))
16788 member
= tsubst_baselink (member
,
16789 non_reference (TREE_TYPE (object
)),
16790 args
, complain
, in_decl
);
16792 member
= tsubst_copy (member
, args
, complain
, in_decl
);
16793 if (member
== error_mark_node
)
16794 RETURN (error_mark_node
);
16796 if (type_dependent_expression_p (object
))
16797 /* We can't do much here. */;
16798 else if (!CLASS_TYPE_P (object_type
))
16800 if (scalarish_type_p (object_type
))
16802 tree s
= NULL_TREE
;
16803 tree dtor
= member
;
16805 if (TREE_CODE (dtor
) == SCOPE_REF
)
16807 s
= TREE_OPERAND (dtor
, 0);
16808 dtor
= TREE_OPERAND (dtor
, 1);
16810 if (TREE_CODE (dtor
) == BIT_NOT_EXPR
)
16812 dtor
= TREE_OPERAND (dtor
, 0);
16814 RETURN (finish_pseudo_destructor_expr
16815 (object
, s
, dtor
, input_location
));
16819 else if (TREE_CODE (member
) == SCOPE_REF
16820 && TREE_CODE (TREE_OPERAND (member
, 1)) == TEMPLATE_ID_EXPR
)
16822 /* Lookup the template functions now that we know what the
16824 tree scope
= TREE_OPERAND (member
, 0);
16825 tree tmpl
= TREE_OPERAND (TREE_OPERAND (member
, 1), 0);
16826 tree args
= TREE_OPERAND (TREE_OPERAND (member
, 1), 1);
16827 member
= lookup_qualified_name (scope
, tmpl
,
16828 /*is_type_p=*/false,
16829 /*complain=*/false);
16830 if (BASELINK_P (member
))
16832 BASELINK_FUNCTIONS (member
)
16833 = build_nt (TEMPLATE_ID_EXPR
, BASELINK_FUNCTIONS (member
),
16835 member
= (adjust_result_of_qualified_name_lookup
16836 (member
, BINFO_TYPE (BASELINK_BINFO (member
)),
16841 qualified_name_lookup_error (scope
, tmpl
, member
,
16843 RETURN (error_mark_node
);
16846 else if (TREE_CODE (member
) == SCOPE_REF
16847 && !CLASS_TYPE_P (TREE_OPERAND (member
, 0))
16848 && TREE_CODE (TREE_OPERAND (member
, 0)) != NAMESPACE_DECL
)
16850 if (complain
& tf_error
)
16852 if (TYPE_P (TREE_OPERAND (member
, 0)))
16853 error ("%qT is not a class or namespace",
16854 TREE_OPERAND (member
, 0));
16856 error ("%qD is not a class or namespace",
16857 TREE_OPERAND (member
, 0));
16859 RETURN (error_mark_node
);
16861 else if (TREE_CODE (member
) == FIELD_DECL
)
16863 r
= finish_non_static_data_member (member
, object
, NULL_TREE
);
16864 if (TREE_CODE (r
) == COMPONENT_REF
)
16865 REF_PARENTHESIZED_P (r
) = REF_PARENTHESIZED_P (t
);
16869 r
= finish_class_member_access_expr (object
, member
,
16870 /*template_p=*/false,
16872 if (TREE_CODE (r
) == COMPONENT_REF
)
16873 REF_PARENTHESIZED_P (r
) = REF_PARENTHESIZED_P (t
);
16878 RETURN (build_throw
16879 (RECUR (TREE_OPERAND (t
, 0))));
16883 vec
<constructor_elt
, va_gc
> *n
;
16884 constructor_elt
*ce
;
16885 unsigned HOST_WIDE_INT idx
;
16886 tree type
= tsubst (TREE_TYPE (t
), args
, complain
, in_decl
);
16887 bool process_index_p
;
16889 bool need_copy_p
= false;
16892 if (type
== error_mark_node
)
16893 RETURN (error_mark_node
);
16895 /* digest_init will do the wrong thing if we let it. */
16896 if (type
&& TYPE_PTRMEMFUNC_P (type
))
16899 /* We do not want to process the index of aggregate
16900 initializers as they are identifier nodes which will be
16901 looked up by digest_init. */
16902 process_index_p
= !(type
&& MAYBE_CLASS_TYPE_P (type
));
16904 n
= vec_safe_copy (CONSTRUCTOR_ELTS (t
));
16905 newlen
= vec_safe_length (n
);
16906 FOR_EACH_VEC_SAFE_ELT (n
, idx
, ce
)
16908 if (ce
->index
&& process_index_p
16909 /* An identifier index is looked up in the type
16910 being initialized, not the current scope. */
16911 && TREE_CODE (ce
->index
) != IDENTIFIER_NODE
)
16912 ce
->index
= RECUR (ce
->index
);
16914 if (PACK_EXPANSION_P (ce
->value
))
16916 /* Substitute into the pack expansion. */
16917 ce
->value
= tsubst_pack_expansion (ce
->value
, args
, complain
,
16920 if (ce
->value
== error_mark_node
16921 || PACK_EXPANSION_P (ce
->value
))
16923 else if (TREE_VEC_LENGTH (ce
->value
) == 1)
16924 /* Just move the argument into place. */
16925 ce
->value
= TREE_VEC_ELT (ce
->value
, 0);
16928 /* Update the length of the final CONSTRUCTOR
16929 arguments vector, and note that we will need to
16931 newlen
= newlen
+ TREE_VEC_LENGTH (ce
->value
) - 1;
16932 need_copy_p
= true;
16936 ce
->value
= RECUR (ce
->value
);
16941 vec
<constructor_elt
, va_gc
> *old_n
= n
;
16943 vec_alloc (n
, newlen
);
16944 FOR_EACH_VEC_ELT (*old_n
, idx
, ce
)
16946 if (TREE_CODE (ce
->value
) == TREE_VEC
)
16948 int i
, len
= TREE_VEC_LENGTH (ce
->value
);
16949 for (i
= 0; i
< len
; ++i
)
16950 CONSTRUCTOR_APPEND_ELT (n
, 0,
16951 TREE_VEC_ELT (ce
->value
, i
));
16954 CONSTRUCTOR_APPEND_ELT (n
, 0, ce
->value
);
16958 r
= build_constructor (init_list_type_node
, n
);
16959 CONSTRUCTOR_IS_DIRECT_INIT (r
) = CONSTRUCTOR_IS_DIRECT_INIT (t
);
16961 if (TREE_HAS_CONSTRUCTOR (t
))
16962 RETURN (finish_compound_literal (type
, r
, complain
));
16964 TREE_TYPE (r
) = type
;
16970 tree operand_0
= TREE_OPERAND (t
, 0);
16971 if (TYPE_P (operand_0
))
16973 operand_0
= tsubst (operand_0
, args
, complain
, in_decl
);
16974 RETURN (get_typeid (operand_0
, complain
));
16978 operand_0
= RECUR (operand_0
);
16979 RETURN (build_typeid (operand_0
, complain
));
16986 else if (DECL_PACK_P (t
))
16988 /* We don't build decls for an instantiation of a
16989 variadic capture proxy, we instantiate the elements
16991 gcc_assert (DECL_HAS_VALUE_EXPR_P (t
));
16992 return RECUR (DECL_VALUE_EXPR (t
));
16998 tree r
= tsubst_copy (t
, args
, complain
, in_decl
);
16999 /* ??? We're doing a subset of finish_id_expression here. */
17001 && !processing_template_decl
17002 && !cp_unevaluated_operand
17003 && (TREE_STATIC (r
) || DECL_EXTERNAL (r
))
17004 && CP_DECL_THREAD_LOCAL_P (r
))
17006 if (tree wrap
= get_tls_wrapper_fn (r
))
17007 /* Replace an evaluated use of the thread_local variable with
17008 a call to its wrapper. */
17009 r
= build_cxx_call (wrap
, 0, NULL
, tf_warning_or_error
);
17011 else if (outer_automatic_var_p (r
))
17013 r
= process_outer_var_ref (r
, complain
);
17014 if (is_capture_proxy (r
))
17015 register_local_specialization (r
, t
);
17018 if (TREE_CODE (TREE_TYPE (t
)) != REFERENCE_TYPE
)
17019 /* If the original type was a reference, we'll be wrapped in
17020 the appropriate INDIRECT_REF. */
17021 r
= convert_from_reference (r
);
17027 tree op0
= RECUR (TREE_OPERAND (t
, 0));
17028 tree type
= tsubst (TREE_TYPE (t
), args
, complain
, in_decl
);
17029 RETURN (build_x_va_arg (EXPR_LOCATION (t
), op0
, type
));
17032 case OFFSETOF_EXPR
:
17033 RETURN (finish_offsetof (RECUR (TREE_OPERAND (t
, 0)),
17034 EXPR_LOCATION (t
)));
17038 tree type1
= tsubst (TRAIT_EXPR_TYPE1 (t
), args
,
17039 complain
, in_decl
);
17041 tree type2
= TRAIT_EXPR_TYPE2 (t
);
17042 if (type2
&& TREE_CODE (type2
) == TREE_LIST
)
17043 type2
= RECUR (type2
);
17045 type2
= tsubst (type2
, args
, complain
, in_decl
);
17047 RETURN (finish_trait_expr (TRAIT_EXPR_KIND (t
), type1
, type2
));
17052 tree old_stmt_expr
= cur_stmt_expr
;
17053 tree stmt_expr
= begin_stmt_expr ();
17055 cur_stmt_expr
= stmt_expr
;
17056 tsubst_expr (STMT_EXPR_STMT (t
), args
, complain
, in_decl
,
17057 integral_constant_expression_p
);
17058 stmt_expr
= finish_stmt_expr (stmt_expr
, false);
17059 cur_stmt_expr
= old_stmt_expr
;
17061 /* If the resulting list of expression statement is empty,
17062 fold it further into void_node. */
17063 if (empty_expr_stmt_p (stmt_expr
))
17064 stmt_expr
= void_node
;
17066 RETURN (stmt_expr
);
17071 tree r
= build_lambda_expr ();
17073 tree type
= tsubst (LAMBDA_EXPR_CLOSURE (t
), args
, complain
, NULL_TREE
);
17074 LAMBDA_EXPR_CLOSURE (r
) = type
;
17075 CLASSTYPE_LAMBDA_EXPR (type
) = r
;
17077 LAMBDA_EXPR_LOCATION (r
)
17078 = LAMBDA_EXPR_LOCATION (t
);
17079 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (r
)
17080 = LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (t
);
17081 LAMBDA_EXPR_MUTABLE_P (r
) = LAMBDA_EXPR_MUTABLE_P (t
);
17082 LAMBDA_EXPR_DISCRIMINATOR (r
)
17083 = (LAMBDA_EXPR_DISCRIMINATOR (t
));
17084 tree scope
= LAMBDA_EXPR_EXTRA_SCOPE (t
);
17086 /* No substitution needed. */;
17087 else if (VAR_OR_FUNCTION_DECL_P (scope
))
17088 /* For a function or variable scope, we want to use tsubst so that we
17089 don't complain about referring to an auto before deduction. */
17090 scope
= tsubst (scope
, args
, complain
, in_decl
);
17091 else if (TREE_CODE (scope
) == PARM_DECL
)
17093 /* Look up the parameter we want directly, as tsubst_copy
17094 doesn't do what we need. */
17095 tree fn
= tsubst (DECL_CONTEXT (scope
), args
, complain
, in_decl
);
17096 tree parm
= FUNCTION_FIRST_USER_PARM (fn
);
17097 while (DECL_PARM_INDEX (parm
) != DECL_PARM_INDEX (scope
))
17098 parm
= DECL_CHAIN (parm
);
17100 /* FIXME Work around the parm not having DECL_CONTEXT set. */
17101 if (DECL_CONTEXT (scope
) == NULL_TREE
)
17102 DECL_CONTEXT (scope
) = fn
;
17104 else if (TREE_CODE (scope
) == FIELD_DECL
)
17105 /* For a field, use tsubst_copy so that we look up the existing field
17106 rather than build a new one. */
17107 scope
= RECUR (scope
);
17109 gcc_unreachable ();
17110 LAMBDA_EXPR_EXTRA_SCOPE (r
) = scope
;
17112 gcc_assert (LAMBDA_EXPR_THIS_CAPTURE (t
) == NULL_TREE
17113 && LAMBDA_EXPR_PENDING_PROXIES (t
) == NULL
);
17115 /* Do this again now that LAMBDA_EXPR_EXTRA_SCOPE is set. */
17116 determine_visibility (TYPE_NAME (type
));
17117 /* Now that we know visibility, instantiate the type so we have a
17118 declaration of the op() for later calls to lambda_function. */
17119 complete_type (type
);
17121 if (tree fn
= lambda_function (type
))
17122 LAMBDA_EXPR_RETURN_TYPE (r
) = TREE_TYPE (TREE_TYPE (fn
));
17124 LAMBDA_EXPR_THIS_CAPTURE (r
) = NULL_TREE
;
17126 insert_pending_capture_proxies ();
17128 RETURN (build_lambda_object (r
));
17132 /* We can get here for a constant initializer of non-dependent type.
17133 FIXME stop folding in cp_parser_initializer_clause. */
17135 tree r
= get_target_expr_sfinae (RECUR (TARGET_EXPR_INITIAL (t
)),
17140 case TRANSACTION_EXPR
:
17141 RETURN (tsubst_expr(t
, args
, complain
, in_decl
,
17142 integral_constant_expression_p
));
17145 RETURN (finish_parenthesized_expr (RECUR (TREE_OPERAND (t
, 0))));
17147 case VEC_PERM_EXPR
:
17149 tree op0
= RECUR (TREE_OPERAND (t
, 0));
17150 tree op1
= RECUR (TREE_OPERAND (t
, 1));
17151 tree op2
= RECUR (TREE_OPERAND (t
, 2));
17152 RETURN (build_x_vec_perm_expr (input_location
, op0
, op1
, op2
,
17156 case REQUIRES_EXPR
:
17157 RETURN (tsubst_requires_expr (t
, args
, complain
, in_decl
));
17160 /* Handle Objective-C++ constructs, if appropriate. */
17163 = objcp_tsubst_copy_and_build (t
, args
, complain
,
17164 in_decl
, /*function_p=*/false);
17168 RETURN (tsubst_copy (t
, args
, complain
, in_decl
));
17174 input_location
= loc
;
17178 /* Verify that the instantiated ARGS are valid. For type arguments,
17179 make sure that the type's linkage is ok. For non-type arguments,
17180 make sure they are constants if they are integral or enumerations.
17181 Emit an error under control of COMPLAIN, and return TRUE on error. */
17184 check_instantiated_arg (tree tmpl
, tree t
, tsubst_flags_t complain
)
17186 if (dependent_template_arg_p (t
))
17188 if (ARGUMENT_PACK_P (t
))
17190 tree vec
= ARGUMENT_PACK_ARGS (t
);
17191 int len
= TREE_VEC_LENGTH (vec
);
17192 bool result
= false;
17195 for (i
= 0; i
< len
; ++i
)
17196 if (check_instantiated_arg (tmpl
, TREE_VEC_ELT (vec
, i
), complain
))
17200 else if (TYPE_P (t
))
17202 /* [basic.link]: A name with no linkage (notably, the name
17203 of a class or enumeration declared in a local scope)
17204 shall not be used to declare an entity with linkage.
17205 This implies that names with no linkage cannot be used as
17208 DR 757 relaxes this restriction for C++0x. */
17209 tree nt
= (cxx_dialect
> cxx98
? NULL_TREE
17210 : no_linkage_check (t
, /*relaxed_p=*/false));
17214 /* DR 488 makes use of a type with no linkage cause
17215 type deduction to fail. */
17216 if (complain
& tf_error
)
17218 if (TYPE_ANONYMOUS_P (nt
))
17219 error ("%qT is/uses anonymous type", t
);
17221 error ("template argument for %qD uses local type %qT",
17226 /* In order to avoid all sorts of complications, we do not
17227 allow variably-modified types as template arguments. */
17228 else if (variably_modified_type_p (t
, NULL_TREE
))
17230 if (complain
& tf_error
)
17231 error ("%qT is a variably modified type", t
);
17235 /* Class template and alias template arguments should be OK. */
17236 else if (DECL_TYPE_TEMPLATE_P (t
))
17238 /* A non-type argument of integral or enumerated type must be a
17240 else if (TREE_TYPE (t
)
17241 && INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (t
))
17242 && !REFERENCE_REF_P (t
)
17243 && !TREE_CONSTANT (t
))
17245 if (complain
& tf_error
)
17246 error ("integral expression %qE is not constant", t
);
17253 check_instantiated_args (tree tmpl
, tree args
, tsubst_flags_t complain
)
17255 int ix
, len
= DECL_NTPARMS (tmpl
);
17256 bool result
= false;
17258 for (ix
= 0; ix
!= len
; ix
++)
17260 if (check_instantiated_arg (tmpl
, TREE_VEC_ELT (args
, ix
), complain
))
17263 if (result
&& (complain
& tf_error
))
17264 error (" trying to instantiate %qD", tmpl
);
17268 /* We're out of SFINAE context now, so generate diagnostics for the access
17269 errors we saw earlier when instantiating D from TMPL and ARGS. */
17272 recheck_decl_substitution (tree d
, tree tmpl
, tree args
)
17274 tree pattern
= DECL_TEMPLATE_RESULT (tmpl
);
17275 tree type
= TREE_TYPE (pattern
);
17276 location_t loc
= input_location
;
17278 push_access_scope (d
);
17279 push_deferring_access_checks (dk_no_deferred
);
17280 input_location
= DECL_SOURCE_LOCATION (pattern
);
17281 tsubst (type
, args
, tf_warning_or_error
, d
);
17282 input_location
= loc
;
17283 pop_deferring_access_checks ();
17284 pop_access_scope (d
);
17287 /* Instantiate the indicated variable, function, or alias template TMPL with
17288 the template arguments in TARG_PTR. */
17291 instantiate_template_1 (tree tmpl
, tree orig_args
, tsubst_flags_t complain
)
17293 tree targ_ptr
= orig_args
;
17297 bool access_ok
= true;
17299 if (tmpl
== error_mark_node
)
17300 return error_mark_node
;
17302 gcc_assert (TREE_CODE (tmpl
) == TEMPLATE_DECL
);
17304 /* If this function is a clone, handle it specially. */
17305 if (DECL_CLONED_FUNCTION_P (tmpl
))
17310 /* Use DECL_ABSTRACT_ORIGIN because only FUNCTION_DECLs have
17311 DECL_CLONED_FUNCTION. */
17312 spec
= instantiate_template (DECL_ABSTRACT_ORIGIN (tmpl
),
17313 targ_ptr
, complain
);
17314 if (spec
== error_mark_node
)
17315 return error_mark_node
;
17317 /* Look for the clone. */
17318 FOR_EACH_CLONE (clone
, spec
)
17319 if (DECL_NAME (clone
) == DECL_NAME (tmpl
))
17321 /* We should always have found the clone by now. */
17322 gcc_unreachable ();
17326 if (targ_ptr
== error_mark_node
)
17327 return error_mark_node
;
17329 /* Check to see if we already have this specialization. */
17330 gen_tmpl
= most_general_template (tmpl
);
17331 if (tmpl
!= gen_tmpl
)
17332 /* The TMPL is a partial instantiation. To get a full set of
17333 arguments we must add the arguments used to perform the
17334 partial instantiation. */
17335 targ_ptr
= add_outermost_template_args (DECL_TI_ARGS (tmpl
),
17338 /* It would be nice to avoid hashing here and then again in tsubst_decl,
17339 but it doesn't seem to be on the hot path. */
17340 spec
= retrieve_specialization (gen_tmpl
, targ_ptr
, 0);
17342 gcc_assert (tmpl
== gen_tmpl
17343 || ((fndecl
= retrieve_specialization (tmpl
, orig_args
, 0))
17345 || fndecl
== NULL_TREE
);
17347 if (spec
!= NULL_TREE
)
17349 if (FNDECL_HAS_ACCESS_ERRORS (spec
))
17351 if (complain
& tf_error
)
17352 recheck_decl_substitution (spec
, gen_tmpl
, targ_ptr
);
17353 return error_mark_node
;
17358 if (check_instantiated_args (gen_tmpl
, INNERMOST_TEMPLATE_ARGS (targ_ptr
),
17360 return error_mark_node
;
17362 /* We are building a FUNCTION_DECL, during which the access of its
17363 parameters and return types have to be checked. However this
17364 FUNCTION_DECL which is the desired context for access checking
17365 is not built yet. We solve this chicken-and-egg problem by
17366 deferring all checks until we have the FUNCTION_DECL. */
17367 push_deferring_access_checks (dk_deferred
);
17369 /* Instantiation of the function happens in the context of the function
17370 template, not the context of the overload resolution we're doing. */
17371 push_to_top_level ();
17372 /* If there are dependent arguments, e.g. because we're doing partial
17373 ordering, make sure processing_template_decl stays set. */
17374 if (uses_template_parms (targ_ptr
))
17375 ++processing_template_decl
;
17376 if (DECL_CLASS_SCOPE_P (gen_tmpl
))
17378 tree ctx
= tsubst_aggr_type (DECL_CONTEXT (gen_tmpl
), targ_ptr
,
17379 complain
, gen_tmpl
, true);
17380 push_nested_class (ctx
);
17383 tree pattern
= DECL_TEMPLATE_RESULT (gen_tmpl
);
17385 if (VAR_P (pattern
))
17387 /* We need to determine if we're using a partial or explicit
17388 specialization now, because the type of the variable could be
17390 tree tid
= lookup_template_variable (gen_tmpl
, targ_ptr
);
17391 tree elt
= most_specialized_partial_spec (tid
, complain
);
17392 if (elt
== error_mark_node
)
17393 pattern
= error_mark_node
;
17396 tmpl
= TREE_VALUE (elt
);
17397 pattern
= DECL_TEMPLATE_RESULT (tmpl
);
17398 targ_ptr
= TREE_PURPOSE (elt
);
17402 /* Substitute template parameters to obtain the specialization. */
17403 fndecl
= tsubst (pattern
, targ_ptr
, complain
, gen_tmpl
);
17404 if (DECL_CLASS_SCOPE_P (gen_tmpl
))
17405 pop_nested_class ();
17406 pop_from_top_level ();
17408 if (fndecl
== error_mark_node
)
17410 pop_deferring_access_checks ();
17411 return error_mark_node
;
17414 /* The DECL_TI_TEMPLATE should always be the immediate parent
17415 template, not the most general template. */
17416 DECL_TI_TEMPLATE (fndecl
) = tmpl
;
17417 DECL_TI_ARGS (fndecl
) = targ_ptr
;
17419 /* Now we know the specialization, compute access previously
17421 push_access_scope (fndecl
);
17422 if (!perform_deferred_access_checks (complain
))
17424 pop_access_scope (fndecl
);
17425 pop_deferring_access_checks ();
17427 /* If we've just instantiated the main entry point for a function,
17428 instantiate all the alternate entry points as well. We do this
17429 by cloning the instantiation of the main entry point, not by
17430 instantiating the template clones. */
17431 if (DECL_CHAIN (gen_tmpl
) && DECL_CLONED_FUNCTION_P (DECL_CHAIN (gen_tmpl
)))
17432 clone_function_decl (fndecl
, /*update_method_vec_p=*/0);
17436 if (!(complain
& tf_error
))
17438 /* Remember to reinstantiate when we're out of SFINAE so the user
17439 can see the errors. */
17440 FNDECL_HAS_ACCESS_ERRORS (fndecl
) = true;
17442 return error_mark_node
;
17447 /* Wrapper for instantiate_template_1. */
17450 instantiate_template (tree tmpl
, tree orig_args
, tsubst_flags_t complain
)
17453 timevar_push (TV_TEMPLATE_INST
);
17454 ret
= instantiate_template_1 (tmpl
, orig_args
, complain
);
17455 timevar_pop (TV_TEMPLATE_INST
);
17459 /* Instantiate the alias template TMPL with ARGS. Also push a template
17460 instantiation level, which instantiate_template doesn't do because
17461 functions and variables have sufficient context established by the
17465 instantiate_alias_template (tree tmpl
, tree args
, tsubst_flags_t complain
)
17467 struct pending_template
*old_last_pend
= last_pending_template
;
17468 struct tinst_level
*old_error_tinst
= last_error_tinst_level
;
17469 if (tmpl
== error_mark_node
|| args
== error_mark_node
)
17470 return error_mark_node
;
17471 tree tinst
= build_tree_list (tmpl
, args
);
17472 if (!push_tinst_level (tinst
))
17475 return error_mark_node
;
17479 coerce_innermost_template_parms (DECL_TEMPLATE_PARMS (tmpl
),
17480 args
, tmpl
, complain
,
17481 /*require_all_args=*/true,
17482 /*use_default_args=*/true);
17484 tree r
= instantiate_template (tmpl
, args
, complain
);
17485 pop_tinst_level ();
17486 /* We can't free this if a pending_template entry or last_error_tinst_level
17487 is pointing at it. */
17488 if (last_pending_template
== old_last_pend
17489 && last_error_tinst_level
== old_error_tinst
)
17495 /* PARM is a template parameter pack for FN. Returns true iff
17496 PARM is used in a deducible way in the argument list of FN. */
17499 pack_deducible_p (tree parm
, tree fn
)
17501 tree t
= FUNCTION_FIRST_USER_PARMTYPE (fn
);
17502 for (; t
; t
= TREE_CHAIN (t
))
17504 tree type
= TREE_VALUE (t
);
17506 if (!PACK_EXPANSION_P (type
))
17508 for (packs
= PACK_EXPANSION_PARAMETER_PACKS (type
);
17509 packs
; packs
= TREE_CHAIN (packs
))
17510 if (template_args_equal (TREE_VALUE (packs
), parm
))
17512 /* The template parameter pack is used in a function parameter
17513 pack. If this is the end of the parameter list, the
17514 template parameter pack is deducible. */
17515 if (TREE_CHAIN (t
) == void_list_node
)
17518 /* Otherwise, not. Well, it could be deduced from
17519 a non-pack parameter, but doing so would end up with
17520 a deduction mismatch, so don't bother. */
17524 /* The template parameter pack isn't used in any function parameter
17525 packs, but it might be used deeper, e.g. tuple<Args...>. */
17529 /* The FN is a TEMPLATE_DECL for a function. ARGS is an array with
17530 NARGS elements of the arguments that are being used when calling
17531 it. TARGS is a vector into which the deduced template arguments
17534 Returns either a FUNCTION_DECL for the matching specialization of FN or
17535 NULL_TREE if no suitable specialization can be found. If EXPLAIN_P is
17536 true, diagnostics will be printed to explain why it failed.
17538 If FN is a conversion operator, or we are trying to produce a specific
17539 specialization, RETURN_TYPE is the return type desired.
17541 The EXPLICIT_TARGS are explicit template arguments provided via a
17544 The parameter STRICT is one of:
17547 We are deducing arguments for a function call, as in
17548 [temp.deduct.call]. If RETURN_TYPE is non-null, we are
17549 deducing arguments for a call to the result of a conversion
17550 function template, as in [over.call.object].
17553 We are deducing arguments for a conversion function, as in
17554 [temp.deduct.conv].
17557 We are deducing arguments when doing an explicit instantiation
17558 as in [temp.explicit], when determining an explicit specialization
17559 as in [temp.expl.spec], or when taking the address of a function
17560 template, as in [temp.deduct.funcaddr]. */
17563 fn_type_unification (tree fn
,
17564 tree explicit_targs
,
17567 unsigned int nargs
,
17569 unification_kind_t strict
,
17576 tree decl
= NULL_TREE
;
17577 tsubst_flags_t complain
= (explain_p
? tf_warning_or_error
: tf_none
);
17579 static int deduction_depth
;
17580 struct pending_template
*old_last_pend
= last_pending_template
;
17581 struct tinst_level
*old_error_tinst
= last_error_tinst_level
;
17582 tree tparms
= DECL_INNERMOST_TEMPLATE_PARMS (fn
);
17584 tree r
= error_mark_node
;
17587 complain
|= tf_decltype
;
17589 /* In C++0x, it's possible to have a function template whose type depends
17590 on itself recursively. This is most obvious with decltype, but can also
17591 occur with enumeration scope (c++/48969). So we need to catch infinite
17592 recursion and reject the substitution at deduction time; this function
17593 will return error_mark_node for any repeated substitution.
17595 This also catches excessive recursion such as when f<N> depends on
17596 f<N-1> across all integers, and returns error_mark_node for all the
17597 substitutions back up to the initial one.
17599 This is, of course, not reentrant. */
17600 if (excessive_deduction_depth
)
17601 return error_mark_node
;
17602 tinst
= build_tree_list (fn
, NULL_TREE
);
17605 gcc_assert (TREE_CODE (fn
) == TEMPLATE_DECL
);
17607 fntype
= TREE_TYPE (fn
);
17608 if (explicit_targs
)
17612 The specified template arguments must match the template
17613 parameters in kind (i.e., type, nontype, template), and there
17614 must not be more arguments than there are parameters;
17615 otherwise type deduction fails.
17617 Nontype arguments must match the types of the corresponding
17618 nontype template parameters, or must be convertible to the
17619 types of the corresponding nontype parameters as specified in
17620 _temp.arg.nontype_, otherwise type deduction fails.
17622 All references in the function type of the function template
17623 to the corresponding template parameters are replaced by the
17624 specified template argument values. If a substitution in a
17625 template parameter or in the function type of the function
17626 template results in an invalid type, type deduction fails. */
17627 int i
, len
= TREE_VEC_LENGTH (tparms
);
17628 location_t loc
= input_location
;
17629 bool incomplete
= false;
17631 /* Adjust any explicit template arguments before entering the
17632 substitution context. */
17634 = (coerce_template_parms (tparms
, explicit_targs
, NULL_TREE
,
17636 /*require_all_args=*/false,
17637 /*use_default_args=*/false));
17638 if (explicit_targs
== error_mark_node
)
17641 /* Substitute the explicit args into the function type. This is
17642 necessary so that, for instance, explicitly declared function
17643 arguments can match null pointed constants. If we were given
17644 an incomplete set of explicit args, we must not do semantic
17645 processing during substitution as we could create partial
17647 for (i
= 0; i
< len
; i
++)
17649 tree parm
= TREE_VALUE (TREE_VEC_ELT (tparms
, i
));
17650 bool parameter_pack
= false;
17651 tree targ
= TREE_VEC_ELT (explicit_targs
, i
);
17653 /* Dig out the actual parm. */
17654 if (TREE_CODE (parm
) == TYPE_DECL
17655 || TREE_CODE (parm
) == TEMPLATE_DECL
)
17657 parm
= TREE_TYPE (parm
);
17658 parameter_pack
= TEMPLATE_TYPE_PARAMETER_PACK (parm
);
17660 else if (TREE_CODE (parm
) == PARM_DECL
)
17662 parm
= DECL_INITIAL (parm
);
17663 parameter_pack
= TEMPLATE_PARM_PARAMETER_PACK (parm
);
17666 if (!parameter_pack
&& targ
== NULL_TREE
)
17667 /* No explicit argument for this template parameter. */
17670 if (parameter_pack
&& pack_deducible_p (parm
, fn
))
17672 /* Mark the argument pack as "incomplete". We could
17673 still deduce more arguments during unification.
17674 We remove this mark in type_unification_real. */
17677 ARGUMENT_PACK_INCOMPLETE_P(targ
) = 1;
17678 ARGUMENT_PACK_EXPLICIT_ARGS (targ
)
17679 = ARGUMENT_PACK_ARGS (targ
);
17682 /* We have some incomplete argument packs. */
17687 TREE_VALUE (tinst
) = explicit_targs
;
17688 if (!push_tinst_level (tinst
))
17690 excessive_deduction_depth
= true;
17693 processing_template_decl
+= incomplete
;
17694 input_location
= DECL_SOURCE_LOCATION (fn
);
17695 /* Ignore any access checks; we'll see them again in
17696 instantiate_template and they might have the wrong
17697 access path at this point. */
17698 push_deferring_access_checks (dk_deferred
);
17699 fntype
= tsubst (TREE_TYPE (fn
), explicit_targs
,
17700 complain
| tf_partial
, NULL_TREE
);
17701 pop_deferring_access_checks ();
17702 input_location
= loc
;
17703 processing_template_decl
-= incomplete
;
17704 pop_tinst_level ();
17706 if (fntype
== error_mark_node
)
17709 /* Place the explicitly specified arguments in TARGS. */
17710 for (i
= NUM_TMPL_ARGS (explicit_targs
); i
--;)
17711 TREE_VEC_ELT (targs
, i
) = TREE_VEC_ELT (explicit_targs
, i
);
17714 /* Never do unification on the 'this' parameter. */
17715 parms
= skip_artificial_parms_for (fn
, TYPE_ARG_TYPES (fntype
));
17717 if (return_type
&& strict
== DEDUCE_CALL
)
17719 /* We're deducing for a call to the result of a template conversion
17720 function. The parms we really want are in return_type. */
17721 if (POINTER_TYPE_P (return_type
))
17722 return_type
= TREE_TYPE (return_type
);
17723 parms
= TYPE_ARG_TYPES (return_type
);
17725 else if (return_type
)
17729 parms
= tree_cons (NULL_TREE
, TREE_TYPE (fntype
), parms
);
17730 new_args
= XALLOCAVEC (tree
, nargs
+ 1);
17731 new_args
[0] = return_type
;
17732 memcpy (new_args
+ 1, args
, nargs
* sizeof (tree
));
17737 /* We allow incomplete unification without an error message here
17738 because the standard doesn't seem to explicitly prohibit it. Our
17739 callers must be ready to deal with unification failures in any
17742 TREE_VALUE (tinst
) = targs
;
17743 /* If we aren't explaining yet, push tinst context so we can see where
17744 any errors (e.g. from class instantiations triggered by instantiation
17745 of default template arguments) come from. If we are explaining, this
17746 context is redundant. */
17747 if (!explain_p
&& !push_tinst_level (tinst
))
17749 excessive_deduction_depth
= true;
17753 /* type_unification_real will pass back any access checks from default
17754 template argument substitution. */
17755 vec
<deferred_access_check
, va_gc
> *checks
;
17758 ok
= !type_unification_real (DECL_INNERMOST_TEMPLATE_PARMS (fn
),
17759 targs
, parms
, args
, nargs
, /*subr=*/0,
17760 strict
, flags
, &checks
, explain_p
);
17762 pop_tinst_level ();
17766 /* Now that we have bindings for all of the template arguments,
17767 ensure that the arguments deduced for the template template
17768 parameters have compatible template parameter lists. We cannot
17769 check this property before we have deduced all template
17770 arguments, because the template parameter types of a template
17771 template parameter might depend on prior template parameters
17772 deduced after the template template parameter. The following
17773 ill-formed example illustrates this issue:
17775 template<typename T, template<T> class C> void f(C<5>, T);
17777 template<int N> struct X {};
17780 f(X<5>(), 5l); // error: template argument deduction fails
17783 The template parameter list of 'C' depends on the template type
17784 parameter 'T', but 'C' is deduced to 'X' before 'T' is deduced to
17785 'long'. Thus, we can't check that 'C' cannot bind to 'X' at the
17786 time that we deduce 'C'. */
17787 if (!template_template_parm_bindings_ok_p
17788 (DECL_INNERMOST_TEMPLATE_PARMS (fn
), targs
))
17790 unify_inconsistent_template_template_parameters (explain_p
);
17794 /* All is well so far. Now, check:
17798 When all template arguments have been deduced, all uses of
17799 template parameters in nondeduced contexts are replaced with
17800 the corresponding deduced argument values. If the
17801 substitution results in an invalid type, as described above,
17802 type deduction fails. */
17803 TREE_VALUE (tinst
) = targs
;
17804 if (!push_tinst_level (tinst
))
17806 excessive_deduction_depth
= true;
17810 /* Also collect access checks from the instantiation. */
17811 reopen_deferring_access_checks (checks
);
17813 decl
= instantiate_template (fn
, targs
, complain
);
17815 checks
= get_deferred_access_checks ();
17816 pop_deferring_access_checks ();
17818 pop_tinst_level ();
17820 if (decl
== error_mark_node
)
17823 /* Now perform any access checks encountered during substitution. */
17824 push_access_scope (decl
);
17825 ok
= perform_access_checks (checks
, complain
);
17826 pop_access_scope (decl
);
17830 /* If we're looking for an exact match, check that what we got
17831 is indeed an exact match. It might not be if some template
17832 parameters are used in non-deduced contexts. But don't check
17833 for an exact match if we have dependent template arguments;
17834 in that case we're doing partial ordering, and we already know
17835 that we have two candidates that will provide the actual type. */
17836 if (strict
== DEDUCE_EXACT
&& !any_dependent_template_arguments_p (targs
))
17838 tree substed
= TREE_TYPE (decl
);
17842 = skip_artificial_parms_for (decl
, TYPE_ARG_TYPES (substed
));
17844 sarg
= tree_cons (NULL_TREE
, TREE_TYPE (substed
), sarg
);
17845 for (i
= 0; i
< nargs
&& sarg
; ++i
, sarg
= TREE_CHAIN (sarg
))
17846 if (!same_type_p (args
[i
], TREE_VALUE (sarg
)))
17848 unify_type_mismatch (explain_p
, args
[i
],
17849 TREE_VALUE (sarg
));
17858 if (excessive_deduction_depth
)
17860 if (deduction_depth
== 0)
17861 /* Reset once we're all the way out. */
17862 excessive_deduction_depth
= false;
17865 /* We can't free this if a pending_template entry or last_error_tinst_level
17866 is pointing at it. */
17867 if (last_pending_template
== old_last_pend
17868 && last_error_tinst_level
== old_error_tinst
)
17874 /* Adjust types before performing type deduction, as described in
17875 [temp.deduct.call] and [temp.deduct.conv]. The rules in these two
17876 sections are symmetric. PARM is the type of a function parameter
17877 or the return type of the conversion function. ARG is the type of
17878 the argument passed to the call, or the type of the value
17879 initialized with the result of the conversion function.
17880 ARG_EXPR is the original argument expression, which may be null. */
17883 maybe_adjust_types_for_deduction (unification_kind_t strict
,
17896 /* Swap PARM and ARG throughout the remainder of this
17897 function; the handling is precisely symmetric since PARM
17898 will initialize ARG rather than vice versa. */
17899 std::swap (parm
, arg
);
17903 /* Core issue #873: Do the DR606 thing (see below) for these cases,
17904 too, but here handle it by stripping the reference from PARM
17905 rather than by adding it to ARG. */
17906 if (TREE_CODE (*parm
) == REFERENCE_TYPE
17907 && TYPE_REF_IS_RVALUE (*parm
)
17908 && TREE_CODE (TREE_TYPE (*parm
)) == TEMPLATE_TYPE_PARM
17909 && cp_type_quals (TREE_TYPE (*parm
)) == TYPE_UNQUALIFIED
17910 && TREE_CODE (*arg
) == REFERENCE_TYPE
17911 && !TYPE_REF_IS_RVALUE (*arg
))
17912 *parm
= TREE_TYPE (*parm
);
17913 /* Nothing else to do in this case. */
17917 gcc_unreachable ();
17920 if (TREE_CODE (*parm
) != REFERENCE_TYPE
)
17922 /* [temp.deduct.call]
17924 If P is not a reference type:
17926 --If A is an array type, the pointer type produced by the
17927 array-to-pointer standard conversion (_conv.array_) is
17928 used in place of A for type deduction; otherwise,
17930 --If A is a function type, the pointer type produced by
17931 the function-to-pointer standard conversion
17932 (_conv.func_) is used in place of A for type deduction;
17935 --If A is a cv-qualified type, the top level
17936 cv-qualifiers of A's type are ignored for type
17938 if (TREE_CODE (*arg
) == ARRAY_TYPE
)
17939 *arg
= build_pointer_type (TREE_TYPE (*arg
));
17940 else if (TREE_CODE (*arg
) == FUNCTION_TYPE
)
17941 *arg
= build_pointer_type (*arg
);
17943 *arg
= TYPE_MAIN_VARIANT (*arg
);
17946 /* From C++0x [14.8.2.1/3 temp.deduct.call] (after DR606), "If P is
17947 of the form T&&, where T is a template parameter, and the argument
17948 is an lvalue, T is deduced as A& */
17949 if (TREE_CODE (*parm
) == REFERENCE_TYPE
17950 && TYPE_REF_IS_RVALUE (*parm
)
17951 && TREE_CODE (TREE_TYPE (*parm
)) == TEMPLATE_TYPE_PARM
17952 && cp_type_quals (TREE_TYPE (*parm
)) == TYPE_UNQUALIFIED
17953 && (arg_expr
? real_lvalue_p (arg_expr
)
17954 /* try_one_overload doesn't provide an arg_expr, but
17955 functions are always lvalues. */
17956 : TREE_CODE (*arg
) == FUNCTION_TYPE
))
17957 *arg
= build_reference_type (*arg
);
17959 /* [temp.deduct.call]
17961 If P is a cv-qualified type, the top level cv-qualifiers
17962 of P's type are ignored for type deduction. If P is a
17963 reference type, the type referred to by P is used for
17965 *parm
= TYPE_MAIN_VARIANT (*parm
);
17966 if (TREE_CODE (*parm
) == REFERENCE_TYPE
)
17968 *parm
= TREE_TYPE (*parm
);
17969 result
|= UNIFY_ALLOW_OUTER_MORE_CV_QUAL
;
17972 /* DR 322. For conversion deduction, remove a reference type on parm
17973 too (which has been swapped into ARG). */
17974 if (strict
== DEDUCE_CONV
&& TREE_CODE (*arg
) == REFERENCE_TYPE
)
17975 *arg
= TREE_TYPE (*arg
);
17980 /* Subroutine of unify_one_argument. PARM is a function parameter of a
17981 template which does contain any deducible template parameters; check if
17982 ARG is a suitable match for it. STRICT, FLAGS and EXPLAIN_P are as in
17983 unify_one_argument. */
17986 check_non_deducible_conversion (tree parm
, tree arg
, int strict
,
17987 int flags
, bool explain_p
)
17992 type
= TREE_TYPE (arg
);
17996 if (same_type_p (parm
, type
))
17997 return unify_success (explain_p
);
17999 if (strict
== DEDUCE_CONV
)
18001 if (can_convert_arg (type
, parm
, NULL_TREE
, flags
,
18002 explain_p
? tf_warning_or_error
: tf_none
))
18003 return unify_success (explain_p
);
18005 else if (strict
!= DEDUCE_EXACT
)
18007 if (can_convert_arg (parm
, type
,
18008 TYPE_P (arg
) ? NULL_TREE
: arg
,
18009 flags
, explain_p
? tf_warning_or_error
: tf_none
))
18010 return unify_success (explain_p
);
18013 if (strict
== DEDUCE_EXACT
)
18014 return unify_type_mismatch (explain_p
, parm
, arg
);
18016 return unify_arg_conversion (explain_p
, parm
, type
, arg
);
18019 static bool uses_deducible_template_parms (tree type
);
18021 /* Returns true iff the expression EXPR is one from which a template
18022 argument can be deduced. In other words, if it's an undecorated
18023 use of a template non-type parameter. */
18026 deducible_expression (tree expr
)
18028 return (TREE_CODE (expr
) == TEMPLATE_PARM_INDEX
);
18031 /* Returns true iff the array domain DOMAIN uses a template parameter in a
18032 deducible way; that is, if it has a max value of <PARM> - 1. */
18035 deducible_array_bound (tree domain
)
18037 if (domain
== NULL_TREE
)
18040 tree max
= TYPE_MAX_VALUE (domain
);
18041 if (TREE_CODE (max
) != MINUS_EXPR
)
18044 return deducible_expression (TREE_OPERAND (max
, 0));
18047 /* Returns true iff the template arguments ARGS use a template parameter
18048 in a deducible way. */
18051 deducible_template_args (tree args
)
18053 for (int i
= 0; i
< TREE_VEC_LENGTH (args
); ++i
)
18056 tree elt
= TREE_VEC_ELT (args
, i
);
18057 if (ARGUMENT_PACK_P (elt
))
18058 deducible
= deducible_template_args (ARGUMENT_PACK_ARGS (elt
));
18061 if (PACK_EXPANSION_P (elt
))
18062 elt
= PACK_EXPANSION_PATTERN (elt
);
18063 if (TREE_CODE (elt
) == TEMPLATE_TEMPLATE_PARM
)
18065 else if (TYPE_P (elt
))
18066 deducible
= uses_deducible_template_parms (elt
);
18068 deducible
= deducible_expression (elt
);
18076 /* Returns true iff TYPE contains any deducible references to template
18077 parameters, as per 14.8.2.5. */
18080 uses_deducible_template_parms (tree type
)
18082 if (PACK_EXPANSION_P (type
))
18083 type
= PACK_EXPANSION_PATTERN (type
);
18090 if (TREE_CODE (type
) == TEMPLATE_TYPE_PARM
18091 || TREE_CODE (type
) == BOUND_TEMPLATE_TEMPLATE_PARM
)
18097 if (POINTER_TYPE_P (type
))
18098 return uses_deducible_template_parms (TREE_TYPE (type
));
18100 /* T[integer-constant ]
18102 if (TREE_CODE (type
) == ARRAY_TYPE
)
18103 return (uses_deducible_template_parms (TREE_TYPE (type
))
18104 || deducible_array_bound (TYPE_DOMAIN (type
)));
18116 if (TYPE_PTRMEM_P (type
))
18117 return (uses_deducible_template_parms (TYPE_PTRMEM_CLASS_TYPE (type
))
18118 || (uses_deducible_template_parms
18119 (TYPE_PTRMEM_POINTED_TO_TYPE (type
))));
18121 /* template-name <T> (where template-name refers to a class template)
18122 template-name <i> (where template-name refers to a class template) */
18123 if (CLASS_TYPE_P (type
)
18124 && CLASSTYPE_TEMPLATE_INFO (type
)
18125 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type
)))
18126 return deducible_template_args (INNERMOST_TEMPLATE_ARGS
18127 (CLASSTYPE_TI_ARGS (type
)));
18132 if (TREE_CODE (type
) == FUNCTION_TYPE
18133 || TREE_CODE (type
) == METHOD_TYPE
)
18135 if (uses_deducible_template_parms (TREE_TYPE (type
)))
18137 tree parm
= TYPE_ARG_TYPES (type
);
18138 if (TREE_CODE (type
) == METHOD_TYPE
)
18139 parm
= TREE_CHAIN (parm
);
18140 for (; parm
; parm
= TREE_CHAIN (parm
))
18141 if (uses_deducible_template_parms (TREE_VALUE (parm
)))
18148 /* Subroutine of type_unification_real and unify_pack_expansion to
18149 handle unification of a single P/A pair. Parameters are as
18150 for those functions. */
18153 unify_one_argument (tree tparms
, tree targs
, tree parm
, tree arg
,
18154 int subr
, unification_kind_t strict
,
18157 tree arg_expr
= NULL_TREE
;
18160 if (arg
== error_mark_node
|| parm
== error_mark_node
)
18161 return unify_invalid (explain_p
);
18162 if (arg
== unknown_type_node
)
18163 /* We can't deduce anything from this, but we might get all the
18164 template args from other function args. */
18165 return unify_success (explain_p
);
18167 /* Implicit conversions (Clause 4) will be performed on a function
18168 argument to convert it to the type of the corresponding function
18169 parameter if the parameter type contains no template-parameters that
18170 participate in template argument deduction. */
18171 if (strict
!= DEDUCE_EXACT
18172 && TYPE_P (parm
) && !uses_deducible_template_parms (parm
))
18173 /* For function parameters with no deducible template parameters,
18174 just return. We'll check non-dependent conversions later. */
18175 return unify_success (explain_p
);
18180 arg_strict
= (UNIFY_ALLOW_OUTER_LEVEL
18181 | UNIFY_ALLOW_MORE_CV_QUAL
18182 | UNIFY_ALLOW_DERIVED
);
18186 arg_strict
= UNIFY_ALLOW_LESS_CV_QUAL
;
18190 arg_strict
= UNIFY_ALLOW_NONE
;
18194 gcc_unreachable ();
18197 /* We only do these transformations if this is the top-level
18198 parameter_type_list in a call or declaration matching; in other
18199 situations (nested function declarators, template argument lists) we
18200 won't be comparing a type to an expression, and we don't do any type
18206 gcc_assert (TREE_TYPE (arg
) != NULL_TREE
);
18207 if (type_unknown_p (arg
))
18209 /* [temp.deduct.type] A template-argument can be
18210 deduced from a pointer to function or pointer
18211 to member function argument if the set of
18212 overloaded functions does not contain function
18213 templates and at most one of a set of
18214 overloaded functions provides a unique
18217 if (resolve_overloaded_unification
18218 (tparms
, targs
, parm
, arg
, strict
,
18219 arg_strict
, explain_p
))
18220 return unify_success (explain_p
);
18221 return unify_overload_resolution_failure (explain_p
, arg
);
18225 arg
= unlowered_expr_type (arg
);
18226 if (arg
== error_mark_node
)
18227 return unify_invalid (explain_p
);
18231 maybe_adjust_types_for_deduction (strict
, &parm
, &arg
, arg_expr
);
18234 if ((TYPE_P (parm
) || TREE_CODE (parm
) == TEMPLATE_DECL
)
18235 != (TYPE_P (arg
) || TREE_CODE (arg
) == TEMPLATE_DECL
))
18236 return unify_template_argument_mismatch (explain_p
, parm
, arg
);
18238 /* For deduction from an init-list we need the actual list. */
18239 if (arg_expr
&& BRACE_ENCLOSED_INITIALIZER_P (arg_expr
))
18241 return unify (tparms
, targs
, parm
, arg
, arg_strict
, explain_p
);
18244 /* Most parms like fn_type_unification.
18246 If SUBR is 1, we're being called recursively (to unify the
18247 arguments of a function or method parameter of a function
18250 CHECKS is a pointer to a vector of access checks encountered while
18251 substituting default template arguments. */
18254 type_unification_real (tree tparms
,
18258 unsigned int xnargs
,
18260 unification_kind_t strict
,
18262 vec
<deferred_access_check
, va_gc
> **checks
,
18267 int ntparms
= TREE_VEC_LENGTH (tparms
);
18268 int saw_undeduced
= 0;
18271 unsigned int nargs
;
18274 gcc_assert (TREE_CODE (tparms
) == TREE_VEC
);
18275 gcc_assert (xparms
== NULL_TREE
|| TREE_CODE (xparms
) == TREE_LIST
);
18276 gcc_assert (ntparms
> 0);
18278 /* Reset the number of non-defaulted template arguments contained
18280 NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs
) = NULL_TREE
;
18288 while (parms
&& parms
!= void_list_node
18291 parm
= TREE_VALUE (parms
);
18293 if (TREE_CODE (parm
) == TYPE_PACK_EXPANSION
18294 && (!TREE_CHAIN (parms
) || TREE_CHAIN (parms
) == void_list_node
))
18295 /* For a function parameter pack that occurs at the end of the
18296 parameter-declaration-list, the type A of each remaining
18297 argument of the call is compared with the type P of the
18298 declarator-id of the function parameter pack. */
18301 parms
= TREE_CHAIN (parms
);
18303 if (TREE_CODE (parm
) == TYPE_PACK_EXPANSION
)
18304 /* For a function parameter pack that does not occur at the
18305 end of the parameter-declaration-list, the type of the
18306 parameter pack is a non-deduced context. */
18312 if (unify_one_argument (tparms
, targs
, parm
, arg
, subr
, strict
,
18318 && parms
!= void_list_node
18319 && TREE_CODE (TREE_VALUE (parms
)) == TYPE_PACK_EXPANSION
)
18321 /* Unify the remaining arguments with the pack expansion type. */
18323 tree parmvec
= make_tree_vec (1);
18325 /* Allocate a TREE_VEC and copy in all of the arguments */
18326 argvec
= make_tree_vec (nargs
- ia
);
18327 for (i
= 0; ia
< nargs
; ++ia
, ++i
)
18328 TREE_VEC_ELT (argvec
, i
) = args
[ia
];
18330 /* Copy the parameter into parmvec. */
18331 TREE_VEC_ELT (parmvec
, 0) = TREE_VALUE (parms
);
18332 if (unify_pack_expansion (tparms
, targs
, parmvec
, argvec
, strict
,
18333 /*subr=*/subr
, explain_p
))
18336 /* Advance to the end of the list of parameters. */
18337 parms
= TREE_CHAIN (parms
);
18340 /* Fail if we've reached the end of the parm list, and more args
18341 are present, and the parm list isn't variadic. */
18342 if (ia
< nargs
&& parms
== void_list_node
)
18343 return unify_too_many_arguments (explain_p
, nargs
, ia
);
18344 /* Fail if parms are left and they don't have default values and
18345 they aren't all deduced as empty packs (c++/57397). This is
18346 consistent with sufficient_parms_p. */
18347 if (parms
&& parms
!= void_list_node
18348 && TREE_PURPOSE (parms
) == NULL_TREE
)
18350 unsigned int count
= nargs
;
18355 type_pack_p
= TREE_CODE (TREE_VALUE (p
)) == TYPE_PACK_EXPANSION
;
18358 p
= TREE_CHAIN (p
);
18360 while (p
&& p
!= void_list_node
);
18361 if (count
!= nargs
)
18362 return unify_too_few_arguments (explain_p
, ia
, count
,
18368 tsubst_flags_t complain
= (explain_p
18369 ? tf_warning_or_error
18372 for (i
= 0; i
< ntparms
; i
++)
18374 tree targ
= TREE_VEC_ELT (targs
, i
);
18375 tree tparm
= TREE_VEC_ELT (tparms
, i
);
18377 /* Clear the "incomplete" flags on all argument packs now so that
18378 substituting them into later default arguments works. */
18379 if (targ
&& ARGUMENT_PACK_P (targ
))
18381 ARGUMENT_PACK_INCOMPLETE_P (targ
) = 0;
18382 ARGUMENT_PACK_EXPLICIT_ARGS (targ
) = NULL_TREE
;
18385 if (targ
|| tparm
== error_mark_node
)
18387 tparm
= TREE_VALUE (tparm
);
18389 /* If this is an undeduced nontype parameter that depends on
18390 a type parameter, try another pass; its type may have been
18391 deduced from a later argument than the one from which
18392 this parameter can be deduced. */
18393 if (TREE_CODE (tparm
) == PARM_DECL
18394 && uses_template_parms (TREE_TYPE (tparm
))
18395 && saw_undeduced
< 2)
18401 /* Core issue #226 (C++0x) [temp.deduct]:
18403 If a template argument has not been deduced, its
18404 default template argument, if any, is used.
18406 When we are in C++98 mode, TREE_PURPOSE will either
18407 be NULL_TREE or ERROR_MARK_NODE, so we do not need
18408 to explicitly check cxx_dialect here. */
18409 if (TREE_PURPOSE (TREE_VEC_ELT (tparms
, i
)))
18410 /* OK, there is a default argument. Wait until after the
18411 conversion check to do substitution. */
18414 /* If the type parameter is a parameter pack, then it will
18415 be deduced to an empty parameter pack. */
18416 if (template_parameter_pack_p (tparm
))
18420 if (TREE_CODE (tparm
) == TEMPLATE_PARM_INDEX
)
18422 arg
= make_node (NONTYPE_ARGUMENT_PACK
);
18423 TREE_TYPE (arg
) = TREE_TYPE (TEMPLATE_PARM_DECL (tparm
));
18424 TREE_CONSTANT (arg
) = 1;
18427 arg
= cxx_make_type (TYPE_ARGUMENT_PACK
);
18429 SET_ARGUMENT_PACK_ARGS (arg
, make_tree_vec (0));
18431 TREE_VEC_ELT (targs
, i
) = arg
;
18435 return unify_parameter_deduction_failure (explain_p
, tparm
);
18438 /* DR 1391: All parameters have args, now check non-dependent parms for
18440 if (saw_undeduced
< 2)
18441 for (ia
= 0, parms
= xparms
, args
= xargs
, nargs
= xnargs
;
18442 parms
&& parms
!= void_list_node
&& ia
< nargs
; )
18444 parm
= TREE_VALUE (parms
);
18446 if (TREE_CODE (parm
) == TYPE_PACK_EXPANSION
18447 && (!TREE_CHAIN (parms
)
18448 || TREE_CHAIN (parms
) == void_list_node
))
18449 /* For a function parameter pack that occurs at the end of the
18450 parameter-declaration-list, the type A of each remaining
18451 argument of the call is compared with the type P of the
18452 declarator-id of the function parameter pack. */
18455 parms
= TREE_CHAIN (parms
);
18457 if (TREE_CODE (parm
) == TYPE_PACK_EXPANSION
)
18458 /* For a function parameter pack that does not occur at the
18459 end of the parameter-declaration-list, the type of the
18460 parameter pack is a non-deduced context. */
18466 if (uses_template_parms (parm
))
18468 if (check_non_deducible_conversion (parm
, arg
, strict
, flags
,
18473 /* Now substitute into the default template arguments. */
18474 for (i
= 0; i
< ntparms
; i
++)
18476 tree targ
= TREE_VEC_ELT (targs
, i
);
18477 tree tparm
= TREE_VEC_ELT (tparms
, i
);
18479 if (targ
|| tparm
== error_mark_node
)
18481 tree parm
= TREE_VALUE (tparm
);
18483 if (TREE_CODE (parm
) == PARM_DECL
18484 && uses_template_parms (TREE_TYPE (parm
))
18485 && saw_undeduced
< 2)
18488 tree arg
= TREE_PURPOSE (tparm
);
18489 reopen_deferring_access_checks (*checks
);
18490 location_t save_loc
= input_location
;
18492 input_location
= DECL_SOURCE_LOCATION (parm
);
18493 arg
= tsubst_template_arg (arg
, targs
, complain
, NULL_TREE
);
18494 arg
= convert_template_argument (parm
, arg
, targs
, complain
,
18496 input_location
= save_loc
;
18497 *checks
= get_deferred_access_checks ();
18498 pop_deferring_access_checks ();
18499 if (arg
== error_mark_node
)
18503 TREE_VEC_ELT (targs
, i
) = arg
;
18504 /* The position of the first default template argument,
18505 is also the number of non-defaulted arguments in TARGS.
18507 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs
))
18508 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs
, i
);
18513 if (saw_undeduced
++ == 1)
18517 if (CHECKING_P
&& !NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs
))
18518 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs
, TREE_VEC_LENGTH (targs
));
18520 return unify_success (explain_p
);
18523 /* Subroutine of type_unification_real. Args are like the variables
18524 at the call site. ARG is an overloaded function (or template-id);
18525 we try deducing template args from each of the overloads, and if
18526 only one succeeds, we go with that. Modifies TARGS and returns
18527 true on success. */
18530 resolve_overloaded_unification (tree tparms
,
18534 unification_kind_t strict
,
18538 tree tempargs
= copy_node (targs
);
18540 tree goodfn
= NULL_TREE
;
18543 if (TREE_CODE (arg
) == ADDR_EXPR
)
18545 arg
= TREE_OPERAND (arg
, 0);
18551 if (TREE_CODE (arg
) == COMPONENT_REF
)
18552 /* Handle `&x' where `x' is some static or non-static member
18554 arg
= TREE_OPERAND (arg
, 1);
18556 if (TREE_CODE (arg
) == OFFSET_REF
)
18557 arg
= TREE_OPERAND (arg
, 1);
18559 /* Strip baselink information. */
18560 if (BASELINK_P (arg
))
18561 arg
= BASELINK_FUNCTIONS (arg
);
18563 if (TREE_CODE (arg
) == TEMPLATE_ID_EXPR
)
18565 /* If we got some explicit template args, we need to plug them into
18566 the affected templates before we try to unify, in case the
18567 explicit args will completely resolve the templates in question. */
18570 tree expl_subargs
= TREE_OPERAND (arg
, 1);
18571 arg
= TREE_OPERAND (arg
, 0);
18573 for (; arg
; arg
= OVL_NEXT (arg
))
18575 tree fn
= OVL_CURRENT (arg
);
18576 tree subargs
, elem
;
18578 if (TREE_CODE (fn
) != TEMPLATE_DECL
)
18581 subargs
= coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn
),
18582 expl_subargs
, NULL_TREE
, tf_none
,
18583 /*require_all_args=*/true,
18584 /*use_default_args=*/true);
18585 if (subargs
!= error_mark_node
18586 && !any_dependent_template_arguments_p (subargs
))
18588 elem
= TREE_TYPE (instantiate_template (fn
, subargs
, tf_none
));
18589 if (try_one_overload (tparms
, targs
, tempargs
, parm
,
18590 elem
, strict
, sub_strict
, addr_p
, explain_p
)
18591 && (!goodfn
|| !same_type_p (goodfn
, elem
)))
18600 /* If no templates (or more than one) are fully resolved by the
18601 explicit arguments, this template-id is a non-deduced context; it
18602 could still be OK if we deduce all template arguments for the
18603 enclosing call through other arguments. */
18607 else if (TREE_CODE (arg
) != OVERLOAD
18608 && TREE_CODE (arg
) != FUNCTION_DECL
)
18609 /* If ARG is, for example, "(0, &f)" then its type will be unknown
18610 -- but the deduction does not succeed because the expression is
18611 not just the function on its own. */
18614 for (; arg
; arg
= OVL_NEXT (arg
))
18615 if (try_one_overload (tparms
, targs
, tempargs
, parm
,
18616 TREE_TYPE (OVL_CURRENT (arg
)),
18617 strict
, sub_strict
, addr_p
, explain_p
)
18618 && (!goodfn
|| !decls_match (goodfn
, OVL_CURRENT (arg
))))
18620 goodfn
= OVL_CURRENT (arg
);
18624 /* [temp.deduct.type] A template-argument can be deduced from a pointer
18625 to function or pointer to member function argument if the set of
18626 overloaded functions does not contain function templates and at most
18627 one of a set of overloaded functions provides a unique match.
18629 So if we found multiple possibilities, we return success but don't
18630 deduce anything. */
18634 int i
= TREE_VEC_LENGTH (targs
);
18636 if (TREE_VEC_ELT (tempargs
, i
))
18638 tree old
= TREE_VEC_ELT (targs
, i
);
18639 tree new_
= TREE_VEC_ELT (tempargs
, i
);
18640 if (new_
&& old
&& ARGUMENT_PACK_P (old
)
18641 && ARGUMENT_PACK_EXPLICIT_ARGS (old
))
18642 /* Don't forget explicit template arguments in a pack. */
18643 ARGUMENT_PACK_EXPLICIT_ARGS (new_
)
18644 = ARGUMENT_PACK_EXPLICIT_ARGS (old
);
18645 TREE_VEC_ELT (targs
, i
) = new_
;
18654 /* Core DR 115: In contexts where deduction is done and fails, or in
18655 contexts where deduction is not done, if a template argument list is
18656 specified and it, along with any default template arguments, identifies
18657 a single function template specialization, then the template-id is an
18658 lvalue for the function template specialization. */
18661 resolve_nondeduced_context (tree orig_expr
, tsubst_flags_t complain
)
18663 tree expr
, offset
, baselink
;
18666 if (!type_unknown_p (orig_expr
))
18671 offset
= NULL_TREE
;
18672 baselink
= NULL_TREE
;
18674 if (TREE_CODE (expr
) == ADDR_EXPR
)
18676 expr
= TREE_OPERAND (expr
, 0);
18679 if (TREE_CODE (expr
) == OFFSET_REF
)
18682 expr
= TREE_OPERAND (expr
, 1);
18684 if (BASELINK_P (expr
))
18687 expr
= BASELINK_FUNCTIONS (expr
);
18690 if (TREE_CODE (expr
) == TEMPLATE_ID_EXPR
)
18693 tree goodfn
= NULL_TREE
;
18695 /* If we got some explicit template args, we need to plug them into
18696 the affected templates before we try to unify, in case the
18697 explicit args will completely resolve the templates in question. */
18699 tree expl_subargs
= TREE_OPERAND (expr
, 1);
18700 tree arg
= TREE_OPERAND (expr
, 0);
18701 tree badfn
= NULL_TREE
;
18702 tree badargs
= NULL_TREE
;
18704 for (; arg
; arg
= OVL_NEXT (arg
))
18706 tree fn
= OVL_CURRENT (arg
);
18707 tree subargs
, elem
;
18709 if (TREE_CODE (fn
) != TEMPLATE_DECL
)
18712 subargs
= coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn
),
18713 expl_subargs
, NULL_TREE
, tf_none
,
18714 /*require_all_args=*/true,
18715 /*use_default_args=*/true);
18716 if (subargs
!= error_mark_node
18717 && !any_dependent_template_arguments_p (subargs
))
18719 elem
= instantiate_template (fn
, subargs
, tf_none
);
18720 if (elem
== error_mark_node
)
18725 else if (elem
&& (!goodfn
|| !decls_match (goodfn
, elem
)))
18734 mark_used (goodfn
);
18737 expr
= build_baselink (BASELINK_BINFO (baselink
),
18738 BASELINK_ACCESS_BINFO (baselink
),
18739 expr
, BASELINK_OPTYPE (baselink
));
18743 = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (offset
, 0)));
18744 expr
= build_offset_ref (base
, expr
, addr
, complain
);
18747 expr
= cp_build_addr_expr (expr
, complain
);
18750 else if (good
== 0 && badargs
&& (complain
& tf_error
))
18751 /* There were no good options and at least one bad one, so let the
18752 user know what the problem is. */
18753 instantiate_template (badfn
, badargs
, complain
);
18758 /* Subroutine of resolve_overloaded_unification; does deduction for a single
18759 overload. Fills TARGS with any deduced arguments, or error_mark_node if
18760 different overloads deduce different arguments for a given parm.
18761 ADDR_P is true if the expression for which deduction is being
18762 performed was of the form "& fn" rather than simply "fn".
18764 Returns 1 on success. */
18767 try_one_overload (tree tparms
,
18772 unification_kind_t strict
,
18781 if (arg
== error_mark_node
)
18784 /* [temp.deduct.type] A template-argument can be deduced from a pointer
18785 to function or pointer to member function argument if the set of
18786 overloaded functions does not contain function templates and at most
18787 one of a set of overloaded functions provides a unique match.
18789 So if this is a template, just return success. */
18791 if (uses_template_parms (arg
))
18794 if (TREE_CODE (arg
) == METHOD_TYPE
)
18795 arg
= build_ptrmemfunc_type (build_pointer_type (arg
));
18797 arg
= build_pointer_type (arg
);
18799 sub_strict
|= maybe_adjust_types_for_deduction (strict
, &parm
, &arg
, NULL
);
18801 /* We don't copy orig_targs for this because if we have already deduced
18802 some template args from previous args, unify would complain when we
18803 try to deduce a template parameter for the same argument, even though
18804 there isn't really a conflict. */
18805 nargs
= TREE_VEC_LENGTH (targs
);
18806 tempargs
= make_tree_vec (nargs
);
18808 if (unify (tparms
, tempargs
, parm
, arg
, sub_strict
, explain_p
))
18811 /* First make sure we didn't deduce anything that conflicts with
18812 explicitly specified args. */
18813 for (i
= nargs
; i
--; )
18815 tree elt
= TREE_VEC_ELT (tempargs
, i
);
18816 tree oldelt
= TREE_VEC_ELT (orig_targs
, i
);
18820 else if (uses_template_parms (elt
))
18821 /* Since we're unifying against ourselves, we will fill in
18822 template args used in the function parm list with our own
18823 template parms. Discard them. */
18824 TREE_VEC_ELT (tempargs
, i
) = NULL_TREE
;
18825 else if (oldelt
&& ARGUMENT_PACK_P (oldelt
))
18827 /* Check that the argument at each index of the deduced argument pack
18828 is equivalent to the corresponding explicitly specified argument.
18829 We may have deduced more arguments than were explicitly specified,
18831 gcc_assert (ARGUMENT_PACK_INCOMPLETE_P (oldelt
));
18832 gcc_assert (ARGUMENT_PACK_ARGS (oldelt
)
18833 == ARGUMENT_PACK_EXPLICIT_ARGS (oldelt
));
18835 tree explicit_pack
= ARGUMENT_PACK_ARGS (oldelt
);
18836 tree deduced_pack
= ARGUMENT_PACK_ARGS (elt
);
18838 if (TREE_VEC_LENGTH (deduced_pack
)
18839 < TREE_VEC_LENGTH (explicit_pack
))
18842 for (int j
= 0; j
< TREE_VEC_LENGTH (explicit_pack
); j
++)
18843 if (!template_args_equal (TREE_VEC_ELT (explicit_pack
, j
),
18844 TREE_VEC_ELT (deduced_pack
, j
)))
18847 else if (oldelt
&& !template_args_equal (oldelt
, elt
))
18851 for (i
= nargs
; i
--; )
18853 tree elt
= TREE_VEC_ELT (tempargs
, i
);
18856 TREE_VEC_ELT (targs
, i
) = elt
;
18862 /* PARM is a template class (perhaps with unbound template
18863 parameters). ARG is a fully instantiated type. If ARG can be
18864 bound to PARM, return ARG, otherwise return NULL_TREE. TPARMS and
18865 TARGS are as for unify. */
18868 try_class_unification (tree tparms
, tree targs
, tree parm
, tree arg
,
18871 tree copy_of_targs
;
18873 if (!CLASSTYPE_TEMPLATE_INFO (arg
)
18874 || (most_general_template (CLASSTYPE_TI_TEMPLATE (arg
))
18875 != most_general_template (CLASSTYPE_TI_TEMPLATE (parm
))))
18878 /* We need to make a new template argument vector for the call to
18879 unify. If we used TARGS, we'd clutter it up with the result of
18880 the attempted unification, even if this class didn't work out.
18881 We also don't want to commit ourselves to all the unifications
18882 we've already done, since unification is supposed to be done on
18883 an argument-by-argument basis. In other words, consider the
18884 following pathological case:
18886 template <int I, int J, int K>
18889 template <int I, int J>
18890 struct S<I, J, 2> : public S<I, I, I>, S<J, J, J> {};
18892 template <int I, int J, int K>
18893 void f(S<I, J, K>, S<I, I, I>);
18902 Now, by the time we consider the unification involving `s2', we
18903 already know that we must have `f<0, 0, 0>'. But, even though
18904 `S<0, 1, 2>' is derived from `S<0, 0, 0>', the code is invalid
18905 because there are two ways to unify base classes of S<0, 1, 2>
18906 with S<I, I, I>. If we kept the already deduced knowledge, we
18907 would reject the possibility I=1. */
18908 copy_of_targs
= make_tree_vec (TREE_VEC_LENGTH (targs
));
18910 /* If unification failed, we're done. */
18911 if (unify (tparms
, copy_of_targs
, CLASSTYPE_TI_ARGS (parm
),
18912 CLASSTYPE_TI_ARGS (arg
), UNIFY_ALLOW_NONE
, explain_p
))
18918 /* Given a template type PARM and a class type ARG, find the unique
18919 base type in ARG that is an instance of PARM. We do not examine
18920 ARG itself; only its base-classes. If there is not exactly one
18921 appropriate base class, return NULL_TREE. PARM may be the type of
18922 a partial specialization, as well as a plain template type. Used
18925 static enum template_base_result
18926 get_template_base (tree tparms
, tree targs
, tree parm
, tree arg
,
18927 bool explain_p
, tree
*result
)
18929 tree rval
= NULL_TREE
;
18932 gcc_assert (RECORD_OR_UNION_CODE_P (TREE_CODE (arg
)));
18934 binfo
= TYPE_BINFO (complete_type (arg
));
18937 /* The type could not be completed. */
18938 *result
= NULL_TREE
;
18939 return tbr_incomplete_type
;
18942 /* Walk in inheritance graph order. The search order is not
18943 important, and this avoids multiple walks of virtual bases. */
18944 for (binfo
= TREE_CHAIN (binfo
); binfo
; binfo
= TREE_CHAIN (binfo
))
18946 tree r
= try_class_unification (tparms
, targs
, parm
,
18947 BINFO_TYPE (binfo
), explain_p
);
18951 /* If there is more than one satisfactory baseclass, then:
18955 If they yield more than one possible deduced A, the type
18959 if (rval
&& !same_type_p (r
, rval
))
18961 *result
= NULL_TREE
;
18962 return tbr_ambiguous_baseclass
;
18970 return tbr_success
;
18973 /* Returns the level of DECL, which declares a template parameter. */
18976 template_decl_level (tree decl
)
18978 switch (TREE_CODE (decl
))
18981 case TEMPLATE_DECL
:
18982 return TEMPLATE_TYPE_LEVEL (TREE_TYPE (decl
));
18985 return TEMPLATE_PARM_LEVEL (DECL_INITIAL (decl
));
18988 gcc_unreachable ();
18993 /* Decide whether ARG can be unified with PARM, considering only the
18994 cv-qualifiers of each type, given STRICT as documented for unify.
18995 Returns nonzero iff the unification is OK on that basis. */
18998 check_cv_quals_for_unify (int strict
, tree arg
, tree parm
)
19000 int arg_quals
= cp_type_quals (arg
);
19001 int parm_quals
= cp_type_quals (parm
);
19003 if (TREE_CODE (parm
) == TEMPLATE_TYPE_PARM
19004 && !(strict
& UNIFY_ALLOW_OUTER_MORE_CV_QUAL
))
19006 /* Although a CVR qualifier is ignored when being applied to a
19007 substituted template parameter ([8.3.2]/1 for example), that
19008 does not allow us to unify "const T" with "int&" because both
19009 types are not of the form "cv-list T" [14.8.2.5 temp.deduct.type].
19010 It is ok when we're allowing additional CV qualifiers
19011 at the outer level [14.8.2.1]/3,1st bullet. */
19012 if ((TREE_CODE (arg
) == REFERENCE_TYPE
19013 || TREE_CODE (arg
) == FUNCTION_TYPE
19014 || TREE_CODE (arg
) == METHOD_TYPE
)
19015 && (parm_quals
& (TYPE_QUAL_CONST
| TYPE_QUAL_VOLATILE
)))
19018 if ((!POINTER_TYPE_P (arg
) && TREE_CODE (arg
) != TEMPLATE_TYPE_PARM
)
19019 && (parm_quals
& TYPE_QUAL_RESTRICT
))
19023 if (!(strict
& (UNIFY_ALLOW_MORE_CV_QUAL
| UNIFY_ALLOW_OUTER_MORE_CV_QUAL
))
19024 && (arg_quals
& parm_quals
) != parm_quals
)
19027 if (!(strict
& (UNIFY_ALLOW_LESS_CV_QUAL
| UNIFY_ALLOW_OUTER_LESS_CV_QUAL
))
19028 && (parm_quals
& arg_quals
) != arg_quals
)
19034 /* Determines the LEVEL and INDEX for the template parameter PARM. */
19036 template_parm_level_and_index (tree parm
, int* level
, int* index
)
19038 if (TREE_CODE (parm
) == TEMPLATE_TYPE_PARM
19039 || TREE_CODE (parm
) == TEMPLATE_TEMPLATE_PARM
19040 || TREE_CODE (parm
) == BOUND_TEMPLATE_TEMPLATE_PARM
)
19042 *index
= TEMPLATE_TYPE_IDX (parm
);
19043 *level
= TEMPLATE_TYPE_LEVEL (parm
);
19047 *index
= TEMPLATE_PARM_IDX (parm
);
19048 *level
= TEMPLATE_PARM_LEVEL (parm
);
19052 #define RECUR_AND_CHECK_FAILURE(TP, TA, P, A, S, EP) \
19054 if (unify (TP, TA, P, A, S, EP)) \
19058 /* Unifies the remaining arguments in PACKED_ARGS with the pack
19059 expansion at the end of PACKED_PARMS. Returns 0 if the type
19060 deduction succeeds, 1 otherwise. STRICT is the same as in
19061 unify. CALL_ARGS_P is true iff PACKED_ARGS is actually a function
19062 call argument list. We'll need to adjust the arguments to make them
19063 types. SUBR tells us if this is from a recursive call to
19064 type_unification_real, or for comparing two template argument
19068 unify_pack_expansion (tree tparms
, tree targs
, tree packed_parms
,
19069 tree packed_args
, unification_kind_t strict
,
19070 bool subr
, bool explain_p
)
19073 = TREE_VEC_ELT (packed_parms
, TREE_VEC_LENGTH (packed_parms
) - 1);
19074 tree pattern
= PACK_EXPANSION_PATTERN (parm
);
19075 tree pack
, packs
= NULL_TREE
;
19076 int i
, start
= TREE_VEC_LENGTH (packed_parms
) - 1;
19078 packed_args
= expand_template_argument_pack (packed_args
);
19080 int len
= TREE_VEC_LENGTH (packed_args
);
19082 /* Determine the parameter packs we will be deducing from the
19083 pattern, and record their current deductions. */
19084 for (pack
= PACK_EXPANSION_PARAMETER_PACKS (parm
);
19085 pack
; pack
= TREE_CHAIN (pack
))
19087 tree parm_pack
= TREE_VALUE (pack
);
19090 /* Determine the index and level of this parameter pack. */
19091 template_parm_level_and_index (parm_pack
, &level
, &idx
);
19093 /* Keep track of the parameter packs and their corresponding
19095 packs
= tree_cons (parm_pack
, TMPL_ARG (targs
, level
, idx
), packs
);
19096 TREE_TYPE (packs
) = make_tree_vec (len
- start
);
19099 /* Loop through all of the arguments that have not yet been
19100 unified and unify each with the pattern. */
19101 for (i
= start
; i
< len
; i
++)
19104 bool any_explicit
= false;
19105 tree arg
= TREE_VEC_ELT (packed_args
, i
);
19107 /* For each parameter pack, set its TMPL_ARG to either NULL_TREE
19108 or the element of its argument pack at the current index if
19109 this argument was explicitly specified. */
19110 for (pack
= packs
; pack
; pack
= TREE_CHAIN (pack
))
19114 template_parm_level_and_index (TREE_PURPOSE (pack
), &level
, &idx
);
19117 if (TREE_VALUE (pack
)
19118 && (pargs
= ARGUMENT_PACK_EXPLICIT_ARGS (TREE_VALUE (pack
)))
19119 && (i
- start
< TREE_VEC_LENGTH (pargs
)))
19121 any_explicit
= true;
19122 arg
= TREE_VEC_ELT (pargs
, i
- start
);
19124 TMPL_ARG (targs
, level
, idx
) = arg
;
19127 /* If we had explicit template arguments, substitute them into the
19128 pattern before deduction. */
19131 /* Some arguments might still be unspecified or dependent. */
19133 ++processing_template_decl
;
19134 dependent
= any_dependent_template_arguments_p (targs
);
19136 --processing_template_decl
;
19137 parm
= tsubst (pattern
, targs
,
19138 explain_p
? tf_warning_or_error
: tf_none
,
19141 --processing_template_decl
;
19142 if (parm
== error_mark_node
)
19148 /* Unify the pattern with the current argument. */
19149 if (unify_one_argument (tparms
, targs
, parm
, arg
, subr
, strict
,
19153 /* For each parameter pack, collect the deduced value. */
19154 for (pack
= packs
; pack
; pack
= TREE_CHAIN (pack
))
19157 template_parm_level_and_index (TREE_PURPOSE (pack
), &level
, &idx
);
19159 TREE_VEC_ELT (TREE_TYPE (pack
), i
- start
) =
19160 TMPL_ARG (targs
, level
, idx
);
19164 /* Verify that the results of unification with the parameter packs
19165 produce results consistent with what we've seen before, and make
19166 the deduced argument packs available. */
19167 for (pack
= packs
; pack
; pack
= TREE_CHAIN (pack
))
19169 tree old_pack
= TREE_VALUE (pack
);
19170 tree new_args
= TREE_TYPE (pack
);
19171 int i
, len
= TREE_VEC_LENGTH (new_args
);
19173 bool nondeduced_p
= false;
19175 /* By default keep the original deduced argument pack.
19176 If necessary, more specific code is going to update the
19177 resulting deduced argument later down in this function. */
19178 template_parm_level_and_index (TREE_PURPOSE (pack
), &level
, &idx
);
19179 TMPL_ARG (targs
, level
, idx
) = old_pack
;
19181 /* If NEW_ARGS contains any NULL_TREE entries, we didn't
19182 actually deduce anything. */
19183 for (i
= 0; i
< len
&& !nondeduced_p
; ++i
)
19184 if (TREE_VEC_ELT (new_args
, i
) == NULL_TREE
)
19185 nondeduced_p
= true;
19189 if (old_pack
&& ARGUMENT_PACK_INCOMPLETE_P (old_pack
))
19191 /* If we had fewer function args than explicit template args,
19192 just use the explicits. */
19193 tree explicit_args
= ARGUMENT_PACK_EXPLICIT_ARGS (old_pack
);
19194 int explicit_len
= TREE_VEC_LENGTH (explicit_args
);
19195 if (len
< explicit_len
)
19196 new_args
= explicit_args
;
19202 /* Build the deduced *_ARGUMENT_PACK. */
19203 if (TREE_CODE (TREE_PURPOSE (pack
)) == TEMPLATE_PARM_INDEX
)
19205 result
= make_node (NONTYPE_ARGUMENT_PACK
);
19206 TREE_TYPE (result
) =
19207 TREE_TYPE (TEMPLATE_PARM_DECL (TREE_PURPOSE (pack
)));
19208 TREE_CONSTANT (result
) = 1;
19211 result
= cxx_make_type (TYPE_ARGUMENT_PACK
);
19213 SET_ARGUMENT_PACK_ARGS (result
, new_args
);
19215 /* Note the deduced argument packs for this parameter
19217 TMPL_ARG (targs
, level
, idx
) = result
;
19219 else if (ARGUMENT_PACK_INCOMPLETE_P (old_pack
)
19220 && (ARGUMENT_PACK_ARGS (old_pack
)
19221 == ARGUMENT_PACK_EXPLICIT_ARGS (old_pack
)))
19223 /* We only had the explicitly-provided arguments before, but
19224 now we have a complete set of arguments. */
19225 tree explicit_args
= ARGUMENT_PACK_EXPLICIT_ARGS (old_pack
);
19227 SET_ARGUMENT_PACK_ARGS (old_pack
, new_args
);
19228 ARGUMENT_PACK_INCOMPLETE_P (old_pack
) = 1;
19229 ARGUMENT_PACK_EXPLICIT_ARGS (old_pack
) = explicit_args
;
19233 tree bad_old_arg
= NULL_TREE
, bad_new_arg
= NULL_TREE
;
19234 tree old_args
= ARGUMENT_PACK_ARGS (old_pack
);
19236 if (!comp_template_args (old_args
, new_args
,
19237 &bad_old_arg
, &bad_new_arg
))
19238 /* Inconsistent unification of this parameter pack. */
19239 return unify_parameter_pack_inconsistent (explain_p
,
19245 return unify_success (explain_p
);
19248 /* Handle unification of the domain of an array. PARM_DOM and ARG_DOM are
19249 INTEGER_TYPEs representing the TYPE_DOMAIN of ARRAY_TYPEs. The other
19250 parameters and return value are as for unify. */
19253 unify_array_domain (tree tparms
, tree targs
,
19254 tree parm_dom
, tree arg_dom
,
19262 /* Our representation of array types uses "N - 1" as the
19263 TYPE_MAX_VALUE for an array with "N" elements, if "N" is
19264 not an integer constant. We cannot unify arbitrarily
19265 complex expressions, so we eliminate the MINUS_EXPRs
19267 parm_max
= TYPE_MAX_VALUE (parm_dom
);
19268 parm_cst
= TREE_CODE (parm_max
) == INTEGER_CST
;
19271 gcc_assert (TREE_CODE (parm_max
) == MINUS_EXPR
);
19272 parm_max
= TREE_OPERAND (parm_max
, 0);
19274 arg_max
= TYPE_MAX_VALUE (arg_dom
);
19275 arg_cst
= TREE_CODE (arg_max
) == INTEGER_CST
;
19278 /* The ARG_MAX may not be a simple MINUS_EXPR, if we are
19279 trying to unify the type of a variable with the type
19280 of a template parameter. For example:
19282 template <unsigned int N>
19283 void f (char (&) [N]);
19290 Here, the type of the ARG will be "int [g(i)]", and
19291 may be a SAVE_EXPR, etc. */
19292 if (TREE_CODE (arg_max
) != MINUS_EXPR
)
19293 return unify_vla_arg (explain_p
, arg_dom
);
19294 arg_max
= TREE_OPERAND (arg_max
, 0);
19297 /* If only one of the bounds used a MINUS_EXPR, compensate
19298 by adding one to the other bound. */
19299 if (parm_cst
&& !arg_cst
)
19300 parm_max
= fold_build2_loc (input_location
, PLUS_EXPR
,
19304 else if (arg_cst
&& !parm_cst
)
19305 arg_max
= fold_build2_loc (input_location
, PLUS_EXPR
,
19310 return unify (tparms
, targs
, parm_max
, arg_max
,
19311 UNIFY_ALLOW_INTEGER
, explain_p
);
19314 /* Deduce the value of template parameters. TPARMS is the (innermost)
19315 set of template parameters to a template. TARGS is the bindings
19316 for those template parameters, as determined thus far; TARGS may
19317 include template arguments for outer levels of template parameters
19318 as well. PARM is a parameter to a template function, or a
19319 subcomponent of that parameter; ARG is the corresponding argument.
19320 This function attempts to match PARM with ARG in a manner
19321 consistent with the existing assignments in TARGS. If more values
19322 are deduced, then TARGS is updated.
19324 Returns 0 if the type deduction succeeds, 1 otherwise. The
19325 parameter STRICT is a bitwise or of the following flags:
19328 Require an exact match between PARM and ARG.
19329 UNIFY_ALLOW_MORE_CV_QUAL:
19330 Allow the deduced ARG to be more cv-qualified (by qualification
19331 conversion) than ARG.
19332 UNIFY_ALLOW_LESS_CV_QUAL:
19333 Allow the deduced ARG to be less cv-qualified than ARG.
19334 UNIFY_ALLOW_DERIVED:
19335 Allow the deduced ARG to be a template base class of ARG,
19336 or a pointer to a template base class of the type pointed to by
19338 UNIFY_ALLOW_INTEGER:
19339 Allow any integral type to be deduced. See the TEMPLATE_PARM_INDEX
19340 case for more information.
19341 UNIFY_ALLOW_OUTER_LEVEL:
19342 This is the outermost level of a deduction. Used to determine validity
19343 of qualification conversions. A valid qualification conversion must
19344 have const qualified pointers leading up to the inner type which
19345 requires additional CV quals, except at the outer level, where const
19346 is not required [conv.qual]. It would be normal to set this flag in
19347 addition to setting UNIFY_ALLOW_MORE_CV_QUAL.
19348 UNIFY_ALLOW_OUTER_MORE_CV_QUAL:
19349 This is the outermost level of a deduction, and PARM can be more CV
19350 qualified at this point.
19351 UNIFY_ALLOW_OUTER_LESS_CV_QUAL:
19352 This is the outermost level of a deduction, and PARM can be less CV
19353 qualified at this point. */
19356 unify (tree tparms
, tree targs
, tree parm
, tree arg
, int strict
,
19362 int strict_in
= strict
;
19364 /* I don't think this will do the right thing with respect to types.
19365 But the only case I've seen it in so far has been array bounds, where
19366 signedness is the only information lost, and I think that will be
19368 while (TREE_CODE (parm
) == NOP_EXPR
)
19369 parm
= TREE_OPERAND (parm
, 0);
19371 if (arg
== error_mark_node
)
19372 return unify_invalid (explain_p
);
19373 if (arg
== unknown_type_node
19374 || arg
== init_list_type_node
)
19375 /* We can't deduce anything from this, but we might get all the
19376 template args from other function args. */
19377 return unify_success (explain_p
);
19379 /* If PARM uses template parameters, then we can't bail out here,
19380 even if ARG == PARM, since we won't record unifications for the
19381 template parameters. We might need them if we're trying to
19382 figure out which of two things is more specialized. */
19383 if (arg
== parm
&& !uses_template_parms (parm
))
19384 return unify_success (explain_p
);
19386 /* Handle init lists early, so the rest of the function can assume
19387 we're dealing with a type. */
19388 if (BRACE_ENCLOSED_INITIALIZER_P (arg
))
19392 tree orig_parm
= parm
;
19394 /* Replace T with std::initializer_list<T> for deduction. */
19395 if (TREE_CODE (parm
) == TEMPLATE_TYPE_PARM
19396 && flag_deduce_init_list
)
19397 parm
= listify (parm
);
19399 if (!is_std_init_list (parm
)
19400 && TREE_CODE (parm
) != ARRAY_TYPE
)
19401 /* We can only deduce from an initializer list argument if the
19402 parameter is std::initializer_list or an array; otherwise this
19403 is a non-deduced context. */
19404 return unify_success (explain_p
);
19406 if (TREE_CODE (parm
) == ARRAY_TYPE
)
19407 elttype
= TREE_TYPE (parm
);
19410 elttype
= TREE_VEC_ELT (CLASSTYPE_TI_ARGS (parm
), 0);
19411 /* Deduction is defined in terms of a single type, so just punt
19412 on the (bizarre) std::initializer_list<T...>. */
19413 if (PACK_EXPANSION_P (elttype
))
19414 return unify_success (explain_p
);
19417 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (arg
), i
, elt
)
19419 int elt_strict
= strict
;
19421 if (elt
== error_mark_node
)
19422 return unify_invalid (explain_p
);
19424 if (!BRACE_ENCLOSED_INITIALIZER_P (elt
))
19426 tree type
= TREE_TYPE (elt
);
19427 if (type
== error_mark_node
)
19428 return unify_invalid (explain_p
);
19429 /* It should only be possible to get here for a call. */
19430 gcc_assert (elt_strict
& UNIFY_ALLOW_OUTER_LEVEL
);
19431 elt_strict
|= maybe_adjust_types_for_deduction
19432 (DEDUCE_CALL
, &elttype
, &type
, elt
);
19436 RECUR_AND_CHECK_FAILURE (tparms
, targs
, elttype
, elt
, elt_strict
,
19440 if (TREE_CODE (parm
) == ARRAY_TYPE
19441 && deducible_array_bound (TYPE_DOMAIN (parm
)))
19443 /* Also deduce from the length of the initializer list. */
19444 tree max
= size_int (CONSTRUCTOR_NELTS (arg
));
19445 tree idx
= compute_array_index_type (NULL_TREE
, max
, tf_none
);
19446 if (idx
== error_mark_node
)
19447 return unify_invalid (explain_p
);
19448 return unify_array_domain (tparms
, targs
, TYPE_DOMAIN (parm
),
19452 /* If the std::initializer_list<T> deduction worked, replace the
19453 deduced A with std::initializer_list<A>. */
19454 if (orig_parm
!= parm
)
19456 idx
= TEMPLATE_TYPE_IDX (orig_parm
);
19457 targ
= TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs
), idx
);
19458 targ
= listify (targ
);
19459 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs
), idx
) = targ
;
19461 return unify_success (explain_p
);
19464 /* Immediately reject some pairs that won't unify because of
19465 cv-qualification mismatches. */
19466 if (TREE_CODE (arg
) == TREE_CODE (parm
)
19468 /* It is the elements of the array which hold the cv quals of an array
19469 type, and the elements might be template type parms. We'll check
19470 when we recurse. */
19471 && TREE_CODE (arg
) != ARRAY_TYPE
19472 /* We check the cv-qualifiers when unifying with template type
19473 parameters below. We want to allow ARG `const T' to unify with
19474 PARM `T' for example, when computing which of two templates
19475 is more specialized, for example. */
19476 && TREE_CODE (arg
) != TEMPLATE_TYPE_PARM
19477 && !check_cv_quals_for_unify (strict_in
, arg
, parm
))
19478 return unify_cv_qual_mismatch (explain_p
, parm
, arg
);
19480 if (!(strict
& UNIFY_ALLOW_OUTER_LEVEL
)
19481 && TYPE_P (parm
) && !CP_TYPE_CONST_P (parm
))
19482 strict
&= ~UNIFY_ALLOW_MORE_CV_QUAL
;
19483 strict
&= ~UNIFY_ALLOW_OUTER_LEVEL
;
19484 strict
&= ~UNIFY_ALLOW_DERIVED
;
19485 strict
&= ~UNIFY_ALLOW_OUTER_MORE_CV_QUAL
;
19486 strict
&= ~UNIFY_ALLOW_OUTER_LESS_CV_QUAL
;
19488 switch (TREE_CODE (parm
))
19490 case TYPENAME_TYPE
:
19492 case UNBOUND_CLASS_TEMPLATE
:
19493 /* In a type which contains a nested-name-specifier, template
19494 argument values cannot be deduced for template parameters used
19495 within the nested-name-specifier. */
19496 return unify_success (explain_p
);
19498 case TEMPLATE_TYPE_PARM
:
19499 case TEMPLATE_TEMPLATE_PARM
:
19500 case BOUND_TEMPLATE_TEMPLATE_PARM
:
19501 tparm
= TREE_VALUE (TREE_VEC_ELT (tparms
, 0));
19502 if (error_operand_p (tparm
))
19503 return unify_invalid (explain_p
);
19505 if (TEMPLATE_TYPE_LEVEL (parm
)
19506 != template_decl_level (tparm
))
19507 /* The PARM is not one we're trying to unify. Just check
19508 to see if it matches ARG. */
19510 if (TREE_CODE (arg
) == TREE_CODE (parm
)
19511 && (is_auto (parm
) ? is_auto (arg
)
19512 : same_type_p (parm
, arg
)))
19513 return unify_success (explain_p
);
19515 return unify_type_mismatch (explain_p
, parm
, arg
);
19517 idx
= TEMPLATE_TYPE_IDX (parm
);
19518 targ
= TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs
), idx
);
19519 tparm
= TREE_VALUE (TREE_VEC_ELT (tparms
, idx
));
19520 if (error_operand_p (tparm
))
19521 return unify_invalid (explain_p
);
19523 /* Check for mixed types and values. */
19524 if ((TREE_CODE (parm
) == TEMPLATE_TYPE_PARM
19525 && TREE_CODE (tparm
) != TYPE_DECL
)
19526 || (TREE_CODE (parm
) == TEMPLATE_TEMPLATE_PARM
19527 && TREE_CODE (tparm
) != TEMPLATE_DECL
))
19528 gcc_unreachable ();
19530 if (TREE_CODE (parm
) == BOUND_TEMPLATE_TEMPLATE_PARM
)
19532 /* ARG must be constructed from a template class or a template
19533 template parameter. */
19534 if (TREE_CODE (arg
) != BOUND_TEMPLATE_TEMPLATE_PARM
19535 && !CLASSTYPE_SPECIALIZATION_OF_PRIMARY_TEMPLATE_P (arg
))
19536 return unify_template_deduction_failure (explain_p
, parm
, arg
);
19538 tree parmvec
= TYPE_TI_ARGS (parm
);
19539 /* An alias template name is never deduced. */
19540 if (TYPE_ALIAS_P (arg
))
19541 arg
= strip_typedefs (arg
);
19542 tree argvec
= INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (arg
));
19543 tree full_argvec
= add_to_template_args (targs
, argvec
);
19545 = DECL_INNERMOST_TEMPLATE_PARMS
19546 (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (parm
));
19548 int parm_variadic_p
= 0;
19550 /* The resolution to DR150 makes clear that default
19551 arguments for an N-argument may not be used to bind T
19552 to a template template parameter with fewer than N
19553 parameters. It is not safe to permit the binding of
19554 default arguments as an extension, as that may change
19555 the meaning of a conforming program. Consider:
19557 struct Dense { static const unsigned int dim = 1; };
19559 template <template <typename> class View,
19561 void operator+(float, View<Block> const&);
19563 template <typename Block,
19564 unsigned int Dim = Block::dim>
19565 struct Lvalue_proxy { operator float() const; };
19569 Lvalue_proxy<Dense> p;
19574 Here, if Lvalue_proxy is permitted to bind to View, then
19575 the global operator+ will be used; if they are not, the
19576 Lvalue_proxy will be converted to float. */
19577 if (coerce_template_parms (parm_parms
,
19579 TYPE_TI_TEMPLATE (parm
),
19581 ? tf_warning_or_error
19583 /*require_all_args=*/true,
19584 /*use_default_args=*/false)
19585 == error_mark_node
)
19588 /* Deduce arguments T, i from TT<T> or TT<i>.
19589 We check each element of PARMVEC and ARGVEC individually
19590 rather than the whole TREE_VEC since they can have
19591 different number of elements. */
19593 parmvec
= expand_template_argument_pack (parmvec
);
19594 argvec
= expand_template_argument_pack (argvec
);
19596 len
= TREE_VEC_LENGTH (parmvec
);
19598 /* Check if the parameters end in a pack, making them
19601 && PACK_EXPANSION_P (TREE_VEC_ELT (parmvec
, len
- 1)))
19602 parm_variadic_p
= 1;
19604 for (i
= 0; i
< len
- parm_variadic_p
; ++i
)
19605 /* If the template argument list of P contains a pack
19606 expansion that is not the last template argument, the
19607 entire template argument list is a non-deduced
19609 if (PACK_EXPANSION_P (TREE_VEC_ELT (parmvec
, i
)))
19610 return unify_success (explain_p
);
19612 if (TREE_VEC_LENGTH (argvec
) < len
- parm_variadic_p
)
19613 return unify_too_few_arguments (explain_p
,
19614 TREE_VEC_LENGTH (argvec
), len
);
19616 for (i
= 0; i
< len
- parm_variadic_p
; ++i
)
19618 RECUR_AND_CHECK_FAILURE (tparms
, targs
,
19619 TREE_VEC_ELT (parmvec
, i
),
19620 TREE_VEC_ELT (argvec
, i
),
19621 UNIFY_ALLOW_NONE
, explain_p
);
19624 if (parm_variadic_p
19625 && unify_pack_expansion (tparms
, targs
,
19628 /*subr=*/true, explain_p
))
19631 arg
= TYPE_TI_TEMPLATE (arg
);
19633 /* Fall through to deduce template name. */
19636 if (TREE_CODE (parm
) == TEMPLATE_TEMPLATE_PARM
19637 || TREE_CODE (parm
) == BOUND_TEMPLATE_TEMPLATE_PARM
)
19639 /* Deduce template name TT from TT, TT<>, TT<T> and TT<i>. */
19641 /* Simple cases: Value already set, does match or doesn't. */
19642 if (targ
!= NULL_TREE
&& template_args_equal (targ
, arg
))
19643 return unify_success (explain_p
);
19645 return unify_inconsistency (explain_p
, parm
, targ
, arg
);
19649 /* If PARM is `const T' and ARG is only `int', we don't have
19650 a match unless we are allowing additional qualification.
19651 If ARG is `const int' and PARM is just `T' that's OK;
19652 that binds `const int' to `T'. */
19653 if (!check_cv_quals_for_unify (strict_in
| UNIFY_ALLOW_LESS_CV_QUAL
,
19655 return unify_cv_qual_mismatch (explain_p
, parm
, arg
);
19657 /* Consider the case where ARG is `const volatile int' and
19658 PARM is `const T'. Then, T should be `volatile int'. */
19659 arg
= cp_build_qualified_type_real
19660 (arg
, cp_type_quals (arg
) & ~cp_type_quals (parm
), tf_none
);
19661 if (arg
== error_mark_node
)
19662 return unify_invalid (explain_p
);
19664 /* Simple cases: Value already set, does match or doesn't. */
19665 if (targ
!= NULL_TREE
&& same_type_p (targ
, arg
))
19666 return unify_success (explain_p
);
19668 return unify_inconsistency (explain_p
, parm
, targ
, arg
);
19670 /* Make sure that ARG is not a variable-sized array. (Note
19671 that were talking about variable-sized arrays (like
19672 `int[n]'), rather than arrays of unknown size (like
19673 `int[]').) We'll get very confused by such a type since
19674 the bound of the array is not constant, and therefore
19675 not mangleable. Besides, such types are not allowed in
19676 ISO C++, so we can do as we please here. We do allow
19677 them for 'auto' deduction, since that isn't ABI-exposed. */
19678 if (!is_auto (parm
) && variably_modified_type_p (arg
, NULL_TREE
))
19679 return unify_vla_arg (explain_p
, arg
);
19681 /* Strip typedefs as in convert_template_argument. */
19682 arg
= canonicalize_type_argument (arg
, tf_none
);
19685 /* If ARG is a parameter pack or an expansion, we cannot unify
19686 against it unless PARM is also a parameter pack. */
19687 if ((template_parameter_pack_p (arg
) || PACK_EXPANSION_P (arg
))
19688 && !template_parameter_pack_p (parm
))
19689 return unify_parameter_pack_mismatch (explain_p
, parm
, arg
);
19691 /* If the argument deduction results is a METHOD_TYPE,
19692 then there is a problem.
19693 METHOD_TYPE doesn't map to any real C++ type the result of
19694 the deduction can not be of that type. */
19695 if (TREE_CODE (arg
) == METHOD_TYPE
)
19696 return unify_method_type_error (explain_p
, arg
);
19698 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs
), idx
) = arg
;
19699 return unify_success (explain_p
);
19701 case TEMPLATE_PARM_INDEX
:
19702 tparm
= TREE_VALUE (TREE_VEC_ELT (tparms
, 0));
19703 if (error_operand_p (tparm
))
19704 return unify_invalid (explain_p
);
19706 if (TEMPLATE_PARM_LEVEL (parm
)
19707 != template_decl_level (tparm
))
19709 /* The PARM is not one we're trying to unify. Just check
19710 to see if it matches ARG. */
19711 int result
= !(TREE_CODE (arg
) == TREE_CODE (parm
)
19712 && cp_tree_equal (parm
, arg
));
19714 unify_expression_unequal (explain_p
, parm
, arg
);
19718 idx
= TEMPLATE_PARM_IDX (parm
);
19719 targ
= TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs
), idx
);
19723 int x
= !cp_tree_equal (targ
, arg
);
19725 unify_inconsistency (explain_p
, parm
, targ
, arg
);
19729 /* [temp.deduct.type] If, in the declaration of a function template
19730 with a non-type template-parameter, the non-type
19731 template-parameter is used in an expression in the function
19732 parameter-list and, if the corresponding template-argument is
19733 deduced, the template-argument type shall match the type of the
19734 template-parameter exactly, except that a template-argument
19735 deduced from an array bound may be of any integral type.
19736 The non-type parameter might use already deduced type parameters. */
19737 tparm
= tsubst (TREE_TYPE (parm
), targs
, 0, NULL_TREE
);
19738 if (!TREE_TYPE (arg
))
19739 /* Template-parameter dependent expression. Just accept it for now.
19740 It will later be processed in convert_template_argument. */
19742 else if (same_type_p (TREE_TYPE (arg
), tparm
))
19744 else if ((strict
& UNIFY_ALLOW_INTEGER
)
19745 && CP_INTEGRAL_TYPE_P (tparm
))
19746 /* Convert the ARG to the type of PARM; the deduced non-type
19747 template argument must exactly match the types of the
19748 corresponding parameter. */
19749 arg
= fold (build_nop (tparm
, arg
));
19750 else if (uses_template_parms (tparm
))
19751 /* We haven't deduced the type of this parameter yet. Try again
19753 return unify_success (explain_p
);
19755 return unify_type_mismatch (explain_p
, tparm
, TREE_TYPE (arg
));
19757 /* If ARG is a parameter pack or an expansion, we cannot unify
19758 against it unless PARM is also a parameter pack. */
19759 if ((template_parameter_pack_p (arg
) || PACK_EXPANSION_P (arg
))
19760 && !TEMPLATE_PARM_PARAMETER_PACK (parm
))
19761 return unify_parameter_pack_mismatch (explain_p
, parm
, arg
);
19764 bool removed_attr
= false;
19765 arg
= strip_typedefs_expr (arg
, &removed_attr
);
19767 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs
), idx
) = arg
;
19768 return unify_success (explain_p
);
19772 /* A pointer-to-member constant can be unified only with
19773 another constant. */
19774 if (TREE_CODE (arg
) != PTRMEM_CST
)
19775 return unify_ptrmem_cst_mismatch (explain_p
, parm
, arg
);
19777 /* Just unify the class member. It would be useless (and possibly
19778 wrong, depending on the strict flags) to unify also
19779 PTRMEM_CST_CLASS, because we want to be sure that both parm and
19780 arg refer to the same variable, even if through different
19781 classes. For instance:
19783 struct A { int x; };
19786 Unification of &A::x and &B::x must succeed. */
19787 return unify (tparms
, targs
, PTRMEM_CST_MEMBER (parm
),
19788 PTRMEM_CST_MEMBER (arg
), strict
, explain_p
);
19793 if (!TYPE_PTR_P (arg
))
19794 return unify_type_mismatch (explain_p
, parm
, arg
);
19796 /* [temp.deduct.call]
19798 A can be another pointer or pointer to member type that can
19799 be converted to the deduced A via a qualification
19800 conversion (_conv.qual_).
19802 We pass down STRICT here rather than UNIFY_ALLOW_NONE.
19803 This will allow for additional cv-qualification of the
19804 pointed-to types if appropriate. */
19806 if (TREE_CODE (TREE_TYPE (arg
)) == RECORD_TYPE
)
19807 /* The derived-to-base conversion only persists through one
19808 level of pointers. */
19809 strict
|= (strict_in
& UNIFY_ALLOW_DERIVED
);
19811 return unify (tparms
, targs
, TREE_TYPE (parm
),
19812 TREE_TYPE (arg
), strict
, explain_p
);
19815 case REFERENCE_TYPE
:
19816 if (TREE_CODE (arg
) != REFERENCE_TYPE
)
19817 return unify_type_mismatch (explain_p
, parm
, arg
);
19818 return unify (tparms
, targs
, TREE_TYPE (parm
), TREE_TYPE (arg
),
19819 strict
& UNIFY_ALLOW_MORE_CV_QUAL
, explain_p
);
19822 if (TREE_CODE (arg
) != ARRAY_TYPE
)
19823 return unify_type_mismatch (explain_p
, parm
, arg
);
19824 if ((TYPE_DOMAIN (parm
) == NULL_TREE
)
19825 != (TYPE_DOMAIN (arg
) == NULL_TREE
))
19826 return unify_type_mismatch (explain_p
, parm
, arg
);
19827 RECUR_AND_CHECK_FAILURE (tparms
, targs
, TREE_TYPE (parm
), TREE_TYPE (arg
),
19828 strict
& UNIFY_ALLOW_MORE_CV_QUAL
, explain_p
);
19829 if (TYPE_DOMAIN (parm
) != NULL_TREE
)
19830 return unify_array_domain (tparms
, targs
, TYPE_DOMAIN (parm
),
19831 TYPE_DOMAIN (arg
), explain_p
);
19832 return unify_success (explain_p
);
19839 case ENUMERAL_TYPE
:
19842 if (TREE_CODE (arg
) != TREE_CODE (parm
))
19843 return unify_type_mismatch (explain_p
, parm
, arg
);
19845 /* We have already checked cv-qualification at the top of the
19847 if (!same_type_ignoring_top_level_qualifiers_p (arg
, parm
))
19848 return unify_type_mismatch (explain_p
, parm
, arg
);
19850 /* As far as unification is concerned, this wins. Later checks
19851 will invalidate it if necessary. */
19852 return unify_success (explain_p
);
19854 /* Types INTEGER_CST and MINUS_EXPR can come from array bounds. */
19855 /* Type INTEGER_CST can come from ordinary constant template args. */
19857 while (TREE_CODE (arg
) == NOP_EXPR
)
19858 arg
= TREE_OPERAND (arg
, 0);
19860 if (TREE_CODE (arg
) != INTEGER_CST
)
19861 return unify_template_argument_mismatch (explain_p
, parm
, arg
);
19862 return (tree_int_cst_equal (parm
, arg
)
19863 ? unify_success (explain_p
)
19864 : unify_template_argument_mismatch (explain_p
, parm
, arg
));
19868 int i
, len
, argslen
;
19869 int parm_variadic_p
= 0;
19871 if (TREE_CODE (arg
) != TREE_VEC
)
19872 return unify_template_argument_mismatch (explain_p
, parm
, arg
);
19874 len
= TREE_VEC_LENGTH (parm
);
19875 argslen
= TREE_VEC_LENGTH (arg
);
19877 /* Check for pack expansions in the parameters. */
19878 for (i
= 0; i
< len
; ++i
)
19880 if (PACK_EXPANSION_P (TREE_VEC_ELT (parm
, i
)))
19883 /* We can unify against something with a trailing
19885 parm_variadic_p
= 1;
19887 /* [temp.deduct.type]/9: If the template argument list of
19888 P contains a pack expansion that is not the last
19889 template argument, the entire template argument list
19890 is a non-deduced context. */
19891 return unify_success (explain_p
);
19895 /* If we don't have enough arguments to satisfy the parameters
19896 (not counting the pack expression at the end), or we have
19897 too many arguments for a parameter list that doesn't end in
19898 a pack expression, we can't unify. */
19899 if (parm_variadic_p
19900 ? argslen
< len
- parm_variadic_p
19902 return unify_arity (explain_p
, TREE_VEC_LENGTH (arg
), len
);
19904 /* Unify all of the parameters that precede the (optional)
19905 pack expression. */
19906 for (i
= 0; i
< len
- parm_variadic_p
; ++i
)
19908 RECUR_AND_CHECK_FAILURE (tparms
, targs
,
19909 TREE_VEC_ELT (parm
, i
),
19910 TREE_VEC_ELT (arg
, i
),
19911 UNIFY_ALLOW_NONE
, explain_p
);
19913 if (parm_variadic_p
)
19914 return unify_pack_expansion (tparms
, targs
, parm
, arg
,
19916 /*subr=*/true, explain_p
);
19917 return unify_success (explain_p
);
19922 if (TREE_CODE (arg
) != TREE_CODE (parm
))
19923 return unify_type_mismatch (explain_p
, parm
, arg
);
19925 if (TYPE_PTRMEMFUNC_P (parm
))
19927 if (!TYPE_PTRMEMFUNC_P (arg
))
19928 return unify_type_mismatch (explain_p
, parm
, arg
);
19930 return unify (tparms
, targs
,
19931 TYPE_PTRMEMFUNC_FN_TYPE (parm
),
19932 TYPE_PTRMEMFUNC_FN_TYPE (arg
),
19933 strict
, explain_p
);
19935 else if (TYPE_PTRMEMFUNC_P (arg
))
19936 return unify_type_mismatch (explain_p
, parm
, arg
);
19938 if (CLASSTYPE_TEMPLATE_INFO (parm
))
19940 tree t
= NULL_TREE
;
19942 if (strict_in
& UNIFY_ALLOW_DERIVED
)
19944 /* First, we try to unify the PARM and ARG directly. */
19945 t
= try_class_unification (tparms
, targs
,
19946 parm
, arg
, explain_p
);
19950 /* Fallback to the special case allowed in
19951 [temp.deduct.call]:
19953 If P is a class, and P has the form
19954 template-id, then A can be a derived class of
19955 the deduced A. Likewise, if P is a pointer to
19956 a class of the form template-id, A can be a
19957 pointer to a derived class pointed to by the
19959 enum template_base_result r
;
19960 r
= get_template_base (tparms
, targs
, parm
, arg
,
19965 /* Don't give the derived diagnostic if we're
19966 already dealing with the same template. */
19968 = (CLASSTYPE_TEMPLATE_INFO (arg
)
19969 && (CLASSTYPE_TI_TEMPLATE (parm
)
19970 == CLASSTYPE_TI_TEMPLATE (arg
)));
19971 return unify_no_common_base (explain_p
&& !same_template
,
19976 else if (CLASSTYPE_TEMPLATE_INFO (arg
)
19977 && (CLASSTYPE_TI_TEMPLATE (parm
)
19978 == CLASSTYPE_TI_TEMPLATE (arg
)))
19979 /* Perhaps PARM is something like S<U> and ARG is S<int>.
19980 Then, we should unify `int' and `U'. */
19983 /* There's no chance of unification succeeding. */
19984 return unify_type_mismatch (explain_p
, parm
, arg
);
19986 return unify (tparms
, targs
, CLASSTYPE_TI_ARGS (parm
),
19987 CLASSTYPE_TI_ARGS (t
), UNIFY_ALLOW_NONE
, explain_p
);
19989 else if (!same_type_ignoring_top_level_qualifiers_p (parm
, arg
))
19990 return unify_type_mismatch (explain_p
, parm
, arg
);
19991 return unify_success (explain_p
);
19994 case FUNCTION_TYPE
:
19996 unsigned int nargs
;
20001 if (TREE_CODE (arg
) != TREE_CODE (parm
))
20002 return unify_type_mismatch (explain_p
, parm
, arg
);
20004 /* CV qualifications for methods can never be deduced, they must
20005 match exactly. We need to check them explicitly here,
20006 because type_unification_real treats them as any other
20007 cv-qualified parameter. */
20008 if (TREE_CODE (parm
) == METHOD_TYPE
20009 && (!check_cv_quals_for_unify
20011 class_of_this_parm (arg
),
20012 class_of_this_parm (parm
))))
20013 return unify_cv_qual_mismatch (explain_p
, parm
, arg
);
20015 RECUR_AND_CHECK_FAILURE (tparms
, targs
, TREE_TYPE (parm
),
20016 TREE_TYPE (arg
), UNIFY_ALLOW_NONE
, explain_p
);
20018 nargs
= list_length (TYPE_ARG_TYPES (arg
));
20019 args
= XALLOCAVEC (tree
, nargs
);
20020 for (a
= TYPE_ARG_TYPES (arg
), i
= 0;
20021 a
!= NULL_TREE
&& a
!= void_list_node
;
20022 a
= TREE_CHAIN (a
), ++i
)
20023 args
[i
] = TREE_VALUE (a
);
20026 return type_unification_real (tparms
, targs
, TYPE_ARG_TYPES (parm
),
20027 args
, nargs
, 1, DEDUCE_EXACT
,
20028 LOOKUP_NORMAL
, NULL
, explain_p
);
20032 /* Unify a pointer to member with a pointer to member function, which
20033 deduces the type of the member as a function type. */
20034 if (TYPE_PTRMEMFUNC_P (arg
))
20036 /* Check top-level cv qualifiers */
20037 if (!check_cv_quals_for_unify (UNIFY_ALLOW_NONE
, arg
, parm
))
20038 return unify_cv_qual_mismatch (explain_p
, parm
, arg
);
20040 RECUR_AND_CHECK_FAILURE (tparms
, targs
, TYPE_OFFSET_BASETYPE (parm
),
20041 TYPE_PTRMEMFUNC_OBJECT_TYPE (arg
),
20042 UNIFY_ALLOW_NONE
, explain_p
);
20044 /* Determine the type of the function we are unifying against. */
20045 tree fntype
= static_fn_type (arg
);
20047 return unify (tparms
, targs
, TREE_TYPE (parm
), fntype
, strict
, explain_p
);
20050 if (TREE_CODE (arg
) != OFFSET_TYPE
)
20051 return unify_type_mismatch (explain_p
, parm
, arg
);
20052 RECUR_AND_CHECK_FAILURE (tparms
, targs
, TYPE_OFFSET_BASETYPE (parm
),
20053 TYPE_OFFSET_BASETYPE (arg
),
20054 UNIFY_ALLOW_NONE
, explain_p
);
20055 return unify (tparms
, targs
, TREE_TYPE (parm
), TREE_TYPE (arg
),
20056 strict
, explain_p
);
20059 if (DECL_TEMPLATE_PARM_P (parm
))
20060 return unify (tparms
, targs
, DECL_INITIAL (parm
), arg
, strict
, explain_p
);
20061 if (arg
!= scalar_constant_value (parm
))
20062 return unify_template_argument_mismatch (explain_p
, parm
, arg
);
20063 return unify_success (explain_p
);
20066 case TEMPLATE_DECL
:
20067 /* Matched cases are handled by the ARG == PARM test above. */
20068 return unify_template_argument_mismatch (explain_p
, parm
, arg
);
20071 /* We might get a variable as a non-type template argument in parm if the
20072 corresponding parameter is type-dependent. Make any necessary
20073 adjustments based on whether arg is a reference. */
20074 if (CONSTANT_CLASS_P (arg
))
20075 parm
= fold_non_dependent_expr (parm
);
20076 else if (REFERENCE_REF_P (arg
))
20078 tree sub
= TREE_OPERAND (arg
, 0);
20080 if (TREE_CODE (sub
) == ADDR_EXPR
)
20081 arg
= TREE_OPERAND (sub
, 0);
20083 /* Now use the normal expression code to check whether they match. */
20086 case TYPE_ARGUMENT_PACK
:
20087 case NONTYPE_ARGUMENT_PACK
:
20088 return unify (tparms
, targs
, ARGUMENT_PACK_ARGS (parm
),
20089 ARGUMENT_PACK_ARGS (arg
), strict
, explain_p
);
20092 case DECLTYPE_TYPE
:
20093 case UNDERLYING_TYPE
:
20094 /* Cannot deduce anything from TYPEOF_TYPE, DECLTYPE_TYPE,
20095 or UNDERLYING_TYPE nodes. */
20096 return unify_success (explain_p
);
20099 /* Unification fails if we hit an error node. */
20100 return unify_invalid (explain_p
);
20103 if (REFERENCE_REF_P (parm
))
20105 if (REFERENCE_REF_P (arg
))
20106 arg
= TREE_OPERAND (arg
, 0);
20107 return unify (tparms
, targs
, TREE_OPERAND (parm
, 0), arg
,
20108 strict
, explain_p
);
20113 /* An unresolved overload is a nondeduced context. */
20114 if (is_overloaded_fn (parm
) || type_unknown_p (parm
))
20115 return unify_success (explain_p
);
20116 gcc_assert (EXPR_P (parm
));
20118 /* We must be looking at an expression. This can happen with
20122 void foo(S<I>, S<I + 2>);
20124 This is a "nondeduced context":
20128 The nondeduced contexts are:
20130 --A type that is a template-id in which one or more of
20131 the template-arguments is an expression that references
20132 a template-parameter.
20134 In these cases, we assume deduction succeeded, but don't
20135 actually infer any unifications. */
20137 if (!uses_template_parms (parm
)
20138 && !template_args_equal (parm
, arg
))
20139 return unify_expression_unequal (explain_p
, parm
, arg
);
20141 return unify_success (explain_p
);
20144 #undef RECUR_AND_CHECK_FAILURE
20146 /* Note that DECL can be defined in this translation unit, if
20150 mark_definable (tree decl
)
20153 DECL_NOT_REALLY_EXTERN (decl
) = 1;
20154 FOR_EACH_CLONE (clone
, decl
)
20155 DECL_NOT_REALLY_EXTERN (clone
) = 1;
20158 /* Called if RESULT is explicitly instantiated, or is a member of an
20159 explicitly instantiated class. */
20162 mark_decl_instantiated (tree result
, int extern_p
)
20164 SET_DECL_EXPLICIT_INSTANTIATION (result
);
20166 /* If this entity has already been written out, it's too late to
20167 make any modifications. */
20168 if (TREE_ASM_WRITTEN (result
))
20171 /* For anonymous namespace we don't need to do anything. */
20172 if (decl_anon_ns_mem_p (result
))
20174 gcc_assert (!TREE_PUBLIC (result
));
20178 if (TREE_CODE (result
) != FUNCTION_DECL
)
20179 /* The TREE_PUBLIC flag for function declarations will have been
20180 set correctly by tsubst. */
20181 TREE_PUBLIC (result
) = 1;
20183 /* This might have been set by an earlier implicit instantiation. */
20184 DECL_COMDAT (result
) = 0;
20187 DECL_NOT_REALLY_EXTERN (result
) = 0;
20190 mark_definable (result
);
20191 mark_needed (result
);
20192 /* Always make artificials weak. */
20193 if (DECL_ARTIFICIAL (result
) && flag_weak
)
20194 comdat_linkage (result
);
20195 /* For WIN32 we also want to put explicit instantiations in
20196 linkonce sections. */
20197 else if (TREE_PUBLIC (result
))
20198 maybe_make_one_only (result
);
20201 /* If EXTERN_P, then this function will not be emitted -- unless
20202 followed by an explicit instantiation, at which point its linkage
20203 will be adjusted. If !EXTERN_P, then this function will be
20204 emitted here. In neither circumstance do we want
20205 import_export_decl to adjust the linkage. */
20206 DECL_INTERFACE_KNOWN (result
) = 1;
20209 /* Subroutine of more_specialized_fn: check whether TARGS is missing any
20210 important template arguments. If any are missing, we check whether
20211 they're important by using error_mark_node for substituting into any
20212 args that were used for partial ordering (the ones between ARGS and END)
20213 and seeing if it bubbles up. */
20216 check_undeduced_parms (tree targs
, tree args
, tree end
)
20218 bool found
= false;
20220 for (i
= TREE_VEC_LENGTH (targs
) - 1; i
>= 0; --i
)
20221 if (TREE_VEC_ELT (targs
, i
) == NULL_TREE
)
20224 TREE_VEC_ELT (targs
, i
) = error_mark_node
;
20228 tree substed
= tsubst_arg_types (args
, targs
, end
, tf_none
, NULL_TREE
);
20229 if (substed
== error_mark_node
)
20235 /* Given two function templates PAT1 and PAT2, return:
20237 1 if PAT1 is more specialized than PAT2 as described in [temp.func.order].
20238 -1 if PAT2 is more specialized than PAT1.
20239 0 if neither is more specialized.
20241 LEN indicates the number of parameters we should consider
20242 (defaulted parameters should not be considered).
20244 The 1998 std underspecified function template partial ordering, and
20245 DR214 addresses the issue. We take pairs of arguments, one from
20246 each of the templates, and deduce them against each other. One of
20247 the templates will be more specialized if all the *other*
20248 template's arguments deduce against its arguments and at least one
20249 of its arguments *does* *not* deduce against the other template's
20250 corresponding argument. Deduction is done as for class templates.
20251 The arguments used in deduction have reference and top level cv
20252 qualifiers removed. Iff both arguments were originally reference
20253 types *and* deduction succeeds in both directions, an lvalue reference
20254 wins against an rvalue reference and otherwise the template
20255 with the more cv-qualified argument wins for that pairing (if
20256 neither is more cv-qualified, they both are equal). Unlike regular
20257 deduction, after all the arguments have been deduced in this way,
20258 we do *not* verify the deduced template argument values can be
20259 substituted into non-deduced contexts.
20261 The logic can be a bit confusing here, because we look at deduce1 and
20262 targs1 to see if pat2 is at least as specialized, and vice versa; if we
20263 can find template arguments for pat1 to make arg1 look like arg2, that
20264 means that arg2 is at least as specialized as arg1. */
20267 more_specialized_fn (tree pat1
, tree pat2
, int len
)
20269 tree decl1
= DECL_TEMPLATE_RESULT (pat1
);
20270 tree decl2
= DECL_TEMPLATE_RESULT (pat2
);
20271 tree targs1
= make_tree_vec (DECL_NTPARMS (pat1
));
20272 tree targs2
= make_tree_vec (DECL_NTPARMS (pat2
));
20273 tree tparms1
= DECL_INNERMOST_TEMPLATE_PARMS (pat1
);
20274 tree tparms2
= DECL_INNERMOST_TEMPLATE_PARMS (pat2
);
20275 tree args1
= TYPE_ARG_TYPES (TREE_TYPE (decl1
));
20276 tree args2
= TYPE_ARG_TYPES (TREE_TYPE (decl2
));
20277 tree origs1
, origs2
;
20278 bool lose1
= false;
20279 bool lose2
= false;
20281 /* Remove the this parameter from non-static member functions. If
20282 one is a non-static member function and the other is not a static
20283 member function, remove the first parameter from that function
20284 also. This situation occurs for operator functions where we
20285 locate both a member function (with this pointer) and non-member
20286 operator (with explicit first operand). */
20287 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl1
))
20289 len
--; /* LEN is the number of significant arguments for DECL1 */
20290 args1
= TREE_CHAIN (args1
);
20291 if (!DECL_STATIC_FUNCTION_P (decl2
))
20292 args2
= TREE_CHAIN (args2
);
20294 else if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl2
))
20296 args2
= TREE_CHAIN (args2
);
20297 if (!DECL_STATIC_FUNCTION_P (decl1
))
20300 args1
= TREE_CHAIN (args1
);
20304 /* If only one is a conversion operator, they are unordered. */
20305 if (DECL_CONV_FN_P (decl1
) != DECL_CONV_FN_P (decl2
))
20308 /* Consider the return type for a conversion function */
20309 if (DECL_CONV_FN_P (decl1
))
20311 args1
= tree_cons (NULL_TREE
, TREE_TYPE (TREE_TYPE (decl1
)), args1
);
20312 args2
= tree_cons (NULL_TREE
, TREE_TYPE (TREE_TYPE (decl2
)), args2
);
20316 processing_template_decl
++;
20322 /* Stop when an ellipsis is seen. */
20323 && args1
!= NULL_TREE
&& args2
!= NULL_TREE
)
20325 tree arg1
= TREE_VALUE (args1
);
20326 tree arg2
= TREE_VALUE (args2
);
20327 int deduce1
, deduce2
;
20333 if (TREE_CODE (arg1
) == TYPE_PACK_EXPANSION
20334 && TREE_CODE (arg2
) == TYPE_PACK_EXPANSION
)
20336 /* When both arguments are pack expansions, we need only
20337 unify the patterns themselves. */
20338 arg1
= PACK_EXPANSION_PATTERN (arg1
);
20339 arg2
= PACK_EXPANSION_PATTERN (arg2
);
20341 /* This is the last comparison we need to do. */
20345 if (TREE_CODE (arg1
) == REFERENCE_TYPE
)
20347 ref1
= TYPE_REF_IS_RVALUE (arg1
) + 1;
20348 arg1
= TREE_TYPE (arg1
);
20349 quals1
= cp_type_quals (arg1
);
20352 if (TREE_CODE (arg2
) == REFERENCE_TYPE
)
20354 ref2
= TYPE_REF_IS_RVALUE (arg2
) + 1;
20355 arg2
= TREE_TYPE (arg2
);
20356 quals2
= cp_type_quals (arg2
);
20359 arg1
= TYPE_MAIN_VARIANT (arg1
);
20360 arg2
= TYPE_MAIN_VARIANT (arg2
);
20362 if (TREE_CODE (arg1
) == TYPE_PACK_EXPANSION
)
20364 int i
, len2
= remaining_arguments (args2
);
20365 tree parmvec
= make_tree_vec (1);
20366 tree argvec
= make_tree_vec (len2
);
20369 /* Setup the parameter vector, which contains only ARG1. */
20370 TREE_VEC_ELT (parmvec
, 0) = arg1
;
20372 /* Setup the argument vector, which contains the remaining
20374 for (i
= 0; i
< len2
; i
++, ta
= TREE_CHAIN (ta
))
20375 TREE_VEC_ELT (argvec
, i
) = TREE_VALUE (ta
);
20377 deduce1
= (unify_pack_expansion (tparms1
, targs1
, parmvec
,
20378 argvec
, DEDUCE_EXACT
,
20379 /*subr=*/true, /*explain_p=*/false)
20382 /* We cannot deduce in the other direction, because ARG1 is
20383 a pack expansion but ARG2 is not. */
20386 else if (TREE_CODE (arg2
) == TYPE_PACK_EXPANSION
)
20388 int i
, len1
= remaining_arguments (args1
);
20389 tree parmvec
= make_tree_vec (1);
20390 tree argvec
= make_tree_vec (len1
);
20393 /* Setup the parameter vector, which contains only ARG1. */
20394 TREE_VEC_ELT (parmvec
, 0) = arg2
;
20396 /* Setup the argument vector, which contains the remaining
20398 for (i
= 0; i
< len1
; i
++, ta
= TREE_CHAIN (ta
))
20399 TREE_VEC_ELT (argvec
, i
) = TREE_VALUE (ta
);
20401 deduce2
= (unify_pack_expansion (tparms2
, targs2
, parmvec
,
20402 argvec
, DEDUCE_EXACT
,
20403 /*subr=*/true, /*explain_p=*/false)
20406 /* We cannot deduce in the other direction, because ARG2 is
20407 a pack expansion but ARG1 is not.*/
20413 /* The normal case, where neither argument is a pack
20415 deduce1
= (unify (tparms1
, targs1
, arg1
, arg2
,
20416 UNIFY_ALLOW_NONE
, /*explain_p=*/false)
20418 deduce2
= (unify (tparms2
, targs2
, arg2
, arg1
,
20419 UNIFY_ALLOW_NONE
, /*explain_p=*/false)
20423 /* If we couldn't deduce arguments for tparms1 to make arg1 match
20424 arg2, then arg2 is not as specialized as arg1. */
20430 /* "If, for a given type, deduction succeeds in both directions
20431 (i.e., the types are identical after the transformations above)
20432 and both P and A were reference types (before being replaced with
20433 the type referred to above):
20434 - if the type from the argument template was an lvalue reference and
20435 the type from the parameter template was not, the argument type is
20436 considered to be more specialized than the other; otherwise,
20437 - if the type from the argument template is more cv-qualified
20438 than the type from the parameter template (as described above),
20439 the argument type is considered to be more specialized than the other;
20441 - neither type is more specialized than the other." */
20443 if (deduce1
&& deduce2
)
20445 if (ref1
&& ref2
&& ref1
!= ref2
)
20452 else if (quals1
!= quals2
&& quals1
>= 0 && quals2
>= 0)
20454 if ((quals1
& quals2
) == quals2
)
20456 if ((quals1
& quals2
) == quals1
)
20461 if (lose1
&& lose2
)
20462 /* We've failed to deduce something in either direction.
20463 These must be unordered. */
20466 if (TREE_CODE (arg1
) == TYPE_PACK_EXPANSION
20467 || TREE_CODE (arg2
) == TYPE_PACK_EXPANSION
)
20468 /* We have already processed all of the arguments in our
20469 handing of the pack expansion type. */
20472 args1
= TREE_CHAIN (args1
);
20473 args2
= TREE_CHAIN (args2
);
20476 /* "In most cases, all template parameters must have values in order for
20477 deduction to succeed, but for partial ordering purposes a template
20478 parameter may remain without a value provided it is not used in the
20479 types being used for partial ordering."
20481 Thus, if we are missing any of the targs1 we need to substitute into
20482 origs1, then pat2 is not as specialized as pat1. This can happen when
20483 there is a nondeduced context. */
20484 if (!lose2
&& check_undeduced_parms (targs1
, origs1
, args1
))
20486 if (!lose1
&& check_undeduced_parms (targs2
, origs2
, args2
))
20489 processing_template_decl
--;
20491 /* If both deductions succeed, the partial ordering selects the more
20492 constrained template. */
20493 if (!lose1
&& !lose2
)
20495 tree c1
= get_constraints (DECL_TEMPLATE_RESULT (pat1
));
20496 tree c2
= get_constraints (DECL_TEMPLATE_RESULT (pat2
));
20497 lose1
= !subsumes_constraints (c1
, c2
);
20498 lose2
= !subsumes_constraints (c2
, c1
);
20501 /* All things being equal, if the next argument is a pack expansion
20502 for one function but not for the other, prefer the
20503 non-variadic function. FIXME this is bogus; see c++/41958. */
20505 && args1
&& TREE_VALUE (args1
)
20506 && args2
&& TREE_VALUE (args2
))
20508 lose1
= TREE_CODE (TREE_VALUE (args1
)) == TYPE_PACK_EXPANSION
;
20509 lose2
= TREE_CODE (TREE_VALUE (args2
)) == TYPE_PACK_EXPANSION
;
20512 if (lose1
== lose2
)
20520 /* Determine which of two partial specializations of TMPL is more
20523 PAT1 is a TREE_LIST whose TREE_VALUE is the TEMPLATE_DECL corresponding
20524 to the first partial specialization. The TREE_PURPOSE is the
20525 innermost set of template parameters for the partial
20526 specialization. PAT2 is similar, but for the second template.
20528 Return 1 if the first partial specialization is more specialized;
20529 -1 if the second is more specialized; 0 if neither is more
20532 See [temp.class.order] for information about determining which of
20533 two templates is more specialized. */
20536 more_specialized_partial_spec (tree tmpl
, tree pat1
, tree pat2
)
20540 bool any_deductions
= false;
20542 tree tmpl1
= TREE_VALUE (pat1
);
20543 tree tmpl2
= TREE_VALUE (pat2
);
20544 tree parms1
= DECL_INNERMOST_TEMPLATE_PARMS (tmpl1
);
20545 tree parms2
= DECL_INNERMOST_TEMPLATE_PARMS (tmpl2
);
20546 tree specargs1
= TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl1
)));
20547 tree specargs2
= TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl2
)));
20549 /* Just like what happens for functions, if we are ordering between
20550 different template specializations, we may encounter dependent
20551 types in the arguments, and we need our dependency check functions
20552 to behave correctly. */
20553 ++processing_template_decl
;
20554 targs
= get_partial_spec_bindings (tmpl
, parms1
, specargs1
, specargs2
);
20558 any_deductions
= true;
20561 targs
= get_partial_spec_bindings (tmpl
, parms2
, specargs2
, specargs1
);
20565 any_deductions
= true;
20567 --processing_template_decl
;
20569 /* If both deductions succeed, the partial ordering selects the more
20570 constrained template. */
20571 if (!winner
&& any_deductions
)
20572 return more_constrained (tmpl1
, tmpl2
);
20574 /* In the case of a tie where at least one of the templates
20575 has a parameter pack at the end, the template with the most
20576 non-packed parameters wins. */
20579 && (template_args_variadic_p (TREE_PURPOSE (pat1
))
20580 || template_args_variadic_p (TREE_PURPOSE (pat2
))))
20582 tree args1
= INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat1
));
20583 tree args2
= INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat2
));
20584 int len1
= TREE_VEC_LENGTH (args1
);
20585 int len2
= TREE_VEC_LENGTH (args2
);
20587 /* We don't count the pack expansion at the end. */
20588 if (template_args_variadic_p (TREE_PURPOSE (pat1
)))
20590 if (template_args_variadic_p (TREE_PURPOSE (pat2
)))
20595 else if (len1
< len2
)
20602 /* Return the template arguments that will produce the function signature
20603 DECL from the function template FN, with the explicit template
20604 arguments EXPLICIT_ARGS. If CHECK_RETTYPE is true, the return type must
20605 also match. Return NULL_TREE if no satisfactory arguments could be
20609 get_bindings (tree fn
, tree decl
, tree explicit_args
, bool check_rettype
)
20611 int ntparms
= DECL_NTPARMS (fn
);
20612 tree targs
= make_tree_vec (ntparms
);
20613 tree decl_type
= TREE_TYPE (decl
);
20614 tree decl_arg_types
;
20616 unsigned int nargs
, ix
;
20619 gcc_assert (decl
!= DECL_TEMPLATE_RESULT (fn
));
20621 /* Never do unification on the 'this' parameter. */
20622 decl_arg_types
= skip_artificial_parms_for (decl
,
20623 TYPE_ARG_TYPES (decl_type
));
20625 nargs
= list_length (decl_arg_types
);
20626 args
= XALLOCAVEC (tree
, nargs
);
20627 for (arg
= decl_arg_types
, ix
= 0;
20628 arg
!= NULL_TREE
&& arg
!= void_list_node
;
20629 arg
= TREE_CHAIN (arg
), ++ix
)
20630 args
[ix
] = TREE_VALUE (arg
);
20632 if (fn_type_unification (fn
, explicit_args
, targs
,
20634 (check_rettype
|| DECL_CONV_FN_P (fn
)
20635 ? TREE_TYPE (decl_type
) : NULL_TREE
),
20636 DEDUCE_EXACT
, LOOKUP_NORMAL
, /*explain_p=*/false,
20638 == error_mark_node
)
20644 /* Return the innermost template arguments that, when applied to a partial
20645 specialization of TMPL whose innermost template parameters are
20646 TPARMS, and whose specialization arguments are SPEC_ARGS, yield the
20649 For example, suppose we have:
20651 template <class T, class U> struct S {};
20652 template <class T> struct S<T*, int> {};
20654 Then, suppose we want to get `S<double*, int>'. The TPARMS will be
20655 {T}, the SPEC_ARGS will be {T*, int} and the ARGS will be {double*,
20656 int}. The resulting vector will be {double}, indicating that `T'
20657 is bound to `double'. */
20660 get_partial_spec_bindings (tree tmpl
, tree tparms
, tree spec_args
, tree args
)
20662 int i
, ntparms
= TREE_VEC_LENGTH (tparms
);
20664 tree innermost_deduced_args
;
20666 innermost_deduced_args
= make_tree_vec (ntparms
);
20667 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args
))
20669 deduced_args
= copy_node (args
);
20670 SET_TMPL_ARGS_LEVEL (deduced_args
,
20671 TMPL_ARGS_DEPTH (deduced_args
),
20672 innermost_deduced_args
);
20675 deduced_args
= innermost_deduced_args
;
20677 if (unify (tparms
, deduced_args
,
20678 INNERMOST_TEMPLATE_ARGS (spec_args
),
20679 INNERMOST_TEMPLATE_ARGS (args
),
20680 UNIFY_ALLOW_NONE
, /*explain_p=*/false))
20683 for (i
= 0; i
< ntparms
; ++i
)
20684 if (! TREE_VEC_ELT (innermost_deduced_args
, i
))
20687 /* Verify that nondeduced template arguments agree with the type
20688 obtained from argument deduction.
20692 struct A { typedef int X; };
20693 template <class T, class U> struct C {};
20694 template <class T> struct C<T, typename T::X> {};
20696 Then with the instantiation `C<A, int>', we can deduce that
20697 `T' is `A' but unify () does not check whether `typename T::X'
20699 spec_args
= tsubst (spec_args
, deduced_args
, tf_none
, NULL_TREE
);
20700 spec_args
= coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl
),
20702 tf_none
, false, false);
20703 if (spec_args
== error_mark_node
20704 /* We only need to check the innermost arguments; the other
20705 arguments will always agree. */
20706 || !comp_template_args (INNERMOST_TEMPLATE_ARGS (spec_args
),
20707 INNERMOST_TEMPLATE_ARGS (args
)))
20710 /* Now that we have bindings for all of the template arguments,
20711 ensure that the arguments deduced for the template template
20712 parameters have compatible template parameter lists. See the use
20713 of template_template_parm_bindings_ok_p in fn_type_unification
20714 for more information. */
20715 if (!template_template_parm_bindings_ok_p (tparms
, deduced_args
))
20718 return deduced_args
;
20721 // Compare two function templates T1 and T2 by deducing bindings
20722 // from one against the other. If both deductions succeed, compare
20723 // constraints to see which is more constrained.
20725 more_specialized_inst (tree t1
, tree t2
)
20730 if (get_bindings (t1
, DECL_TEMPLATE_RESULT (t2
), NULL_TREE
, true))
20736 if (get_bindings (t2
, DECL_TEMPLATE_RESULT (t1
), NULL_TREE
, true))
20742 // If both deductions succeed, then one may be more constrained.
20743 if (count
== 2 && fate
== 0)
20744 fate
= more_constrained (t1
, t2
);
20749 /* TEMPLATES is a TREE_LIST. Each TREE_VALUE is a TEMPLATE_DECL.
20750 Return the TREE_LIST node with the most specialized template, if
20751 any. If there is no most specialized template, the error_mark_node
20754 Note that this function does not look at, or modify, the
20755 TREE_PURPOSE or TREE_TYPE of any of the nodes. Since the node
20756 returned is one of the elements of INSTANTIATIONS, callers may
20757 store information in the TREE_PURPOSE or TREE_TYPE of the nodes,
20758 and retrieve it from the value returned. */
20761 most_specialized_instantiation (tree templates
)
20765 ++processing_template_decl
;
20768 for (fn
= TREE_CHAIN (templates
); fn
; fn
= TREE_CHAIN (fn
))
20770 int fate
= more_specialized_inst (TREE_VALUE (champ
), TREE_VALUE (fn
));
20775 /* Equally specialized, move to next function. If there
20776 is no next function, nothing's most specialized. */
20777 fn
= TREE_CHAIN (fn
);
20785 /* Now verify that champ is better than everything earlier in the
20786 instantiation list. */
20787 for (fn
= templates
; fn
!= champ
; fn
= TREE_CHAIN (fn
)) {
20788 if (more_specialized_inst (TREE_VALUE (champ
), TREE_VALUE (fn
)) != 1)
20795 processing_template_decl
--;
20798 return error_mark_node
;
20803 /* If DECL is a specialization of some template, return the most
20804 general such template. Otherwise, returns NULL_TREE.
20806 For example, given:
20808 template <class T> struct S { template <class U> void f(U); };
20810 if TMPL is `template <class U> void S<int>::f(U)' this will return
20811 the full template. This function will not trace past partial
20812 specializations, however. For example, given in addition:
20814 template <class T> struct S<T*> { template <class U> void f(U); };
20816 if TMPL is `template <class U> void S<int*>::f(U)' this will return
20817 `template <class T> template <class U> S<T*>::f(U)'. */
20820 most_general_template (tree decl
)
20822 if (TREE_CODE (decl
) != TEMPLATE_DECL
)
20824 if (tree tinfo
= get_template_info (decl
))
20825 decl
= TI_TEMPLATE (tinfo
);
20826 /* The TI_TEMPLATE can be an IDENTIFIER_NODE for a
20827 template friend, or a FIELD_DECL for a capture pack. */
20828 if (TREE_CODE (decl
) != TEMPLATE_DECL
)
20832 /* Look for more and more general templates. */
20833 while (DECL_LANG_SPECIFIC (decl
) && DECL_TEMPLATE_INFO (decl
))
20835 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE in some cases.
20836 (See cp-tree.h for details.) */
20837 if (TREE_CODE (DECL_TI_TEMPLATE (decl
)) != TEMPLATE_DECL
)
20840 if (CLASS_TYPE_P (TREE_TYPE (decl
))
20841 && !TYPE_DECL_ALIAS_P (TYPE_NAME (TREE_TYPE (decl
)))
20842 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl
)))
20845 /* Stop if we run into an explicitly specialized class template. */
20846 if (!DECL_NAMESPACE_SCOPE_P (decl
)
20847 && DECL_CONTEXT (decl
)
20848 && CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (decl
)))
20851 decl
= DECL_TI_TEMPLATE (decl
);
20857 /* True iff the TEMPLATE_DECL tmpl is a partial specialization. */
20860 partial_specialization_p (tree tmpl
)
20862 /* Any specialization has DECL_TEMPLATE_SPECIALIZATION. */
20863 if (!DECL_TEMPLATE_SPECIALIZATION (tmpl
))
20865 tree t
= DECL_TI_TEMPLATE (tmpl
);
20866 /* A specialization that fully specializes one of the containing classes is
20867 not a partial specialization. */
20868 return (list_length (DECL_TEMPLATE_PARMS (tmpl
))
20869 == list_length (DECL_TEMPLATE_PARMS (t
)));
20872 /* If TMPL is a partial specialization, return the arguments for its primary
20876 impartial_args (tree tmpl
, tree args
)
20878 if (!partial_specialization_p (tmpl
))
20881 /* If TMPL is a partial specialization, we need to substitute to get
20882 the args for the primary template. */
20883 return tsubst_template_args (DECL_TI_ARGS (tmpl
), args
,
20884 tf_warning_or_error
, tmpl
);
20887 /* Return the most specialized of the template partial specializations
20888 which can produce TARGET, a specialization of some class or variable
20889 template. The value returned is actually a TREE_LIST; the TREE_VALUE is
20890 a TEMPLATE_DECL node corresponding to the partial specialization, while
20891 the TREE_PURPOSE is the set of template arguments that must be
20892 substituted into the template pattern in order to generate TARGET.
20894 If the choice of partial specialization is ambiguous, a diagnostic
20895 is issued, and the error_mark_node is returned. If there are no
20896 partial specializations matching TARGET, then NULL_TREE is
20897 returned, indicating that the primary template should be used. */
20900 most_specialized_partial_spec (tree target
, tsubst_flags_t complain
)
20902 tree list
= NULL_TREE
;
20907 tree outer_args
= NULL_TREE
;
20910 if (TYPE_P (target
))
20912 tree tinfo
= CLASSTYPE_TEMPLATE_INFO (target
);
20913 tmpl
= TI_TEMPLATE (tinfo
);
20914 args
= TI_ARGS (tinfo
);
20916 else if (TREE_CODE (target
) == TEMPLATE_ID_EXPR
)
20918 tmpl
= TREE_OPERAND (target
, 0);
20919 args
= TREE_OPERAND (target
, 1);
20921 else if (VAR_P (target
))
20923 tree tinfo
= DECL_TEMPLATE_INFO (target
);
20924 tmpl
= TI_TEMPLATE (tinfo
);
20925 args
= TI_ARGS (tinfo
);
20928 gcc_unreachable ();
20930 tree main_tmpl
= most_general_template (tmpl
);
20932 /* For determining which partial specialization to use, only the
20933 innermost args are interesting. */
20934 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args
))
20936 outer_args
= strip_innermost_template_args (args
, 1);
20937 args
= INNERMOST_TEMPLATE_ARGS (args
);
20940 for (t
= DECL_TEMPLATE_SPECIALIZATIONS (main_tmpl
); t
; t
= TREE_CHAIN (t
))
20942 tree partial_spec_args
;
20944 tree spec_tmpl
= TREE_VALUE (t
);
20946 partial_spec_args
= TREE_PURPOSE (t
);
20948 ++processing_template_decl
;
20952 /* Discard the outer levels of args, and then substitute in the
20953 template args from the enclosing class. */
20954 partial_spec_args
= INNERMOST_TEMPLATE_ARGS (partial_spec_args
);
20955 partial_spec_args
= tsubst_template_args
20956 (partial_spec_args
, outer_args
, tf_none
, NULL_TREE
);
20958 /* And the same for the partial specialization TEMPLATE_DECL. */
20959 spec_tmpl
= tsubst (spec_tmpl
, outer_args
, tf_none
, NULL_TREE
);
20962 partial_spec_args
=
20963 coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl
),
20966 /*require_all_args=*/true,
20967 /*use_default_args=*/true);
20969 --processing_template_decl
;
20971 if (partial_spec_args
== error_mark_node
)
20972 return error_mark_node
;
20973 if (spec_tmpl
== error_mark_node
)
20974 return error_mark_node
;
20976 tree parms
= DECL_INNERMOST_TEMPLATE_PARMS (spec_tmpl
);
20977 spec_args
= get_partial_spec_bindings (tmpl
, parms
,
20983 spec_args
= add_to_template_args (outer_args
, spec_args
);
20985 /* Keep the candidate only if the constraints are satisfied,
20986 or if we're not compiling with concepts. */
20988 || constraints_satisfied_p (spec_tmpl
, spec_args
))
20990 list
= tree_cons (spec_args
, TREE_VALUE (t
), list
);
20991 TREE_TYPE (list
) = TREE_TYPE (t
);
20999 ambiguous_p
= false;
21002 t
= TREE_CHAIN (t
);
21003 for (; t
; t
= TREE_CHAIN (t
))
21005 fate
= more_specialized_partial_spec (tmpl
, champ
, t
);
21012 t
= TREE_CHAIN (t
);
21015 ambiguous_p
= true;
21024 for (t
= list
; t
&& t
!= champ
; t
= TREE_CHAIN (t
))
21026 fate
= more_specialized_partial_spec (tmpl
, champ
, t
);
21029 ambiguous_p
= true;
21037 char *spaces
= NULL
;
21038 if (!(complain
& tf_error
))
21039 return error_mark_node
;
21040 if (TYPE_P (target
))
21041 error ("ambiguous template instantiation for %q#T", target
);
21043 error ("ambiguous template instantiation for %q#D", target
);
21044 str
= ngettext ("candidate is:", "candidates are:", list_length (list
));
21045 for (t
= list
; t
; t
= TREE_CHAIN (t
))
21047 tree subst
= build_tree_list (TREE_VALUE (t
), TREE_PURPOSE (t
));
21048 inform (DECL_SOURCE_LOCATION (TREE_VALUE (t
)),
21049 "%s %#S", spaces
? spaces
: str
, subst
);
21050 spaces
= spaces
? spaces
: get_spaces (str
);
21053 return error_mark_node
;
21059 /* Explicitly instantiate DECL. */
21062 do_decl_instantiation (tree decl
, tree storage
)
21064 tree result
= NULL_TREE
;
21067 if (!decl
|| decl
== error_mark_node
)
21068 /* An error occurred, for which grokdeclarator has already issued
21069 an appropriate message. */
21071 else if (! DECL_LANG_SPECIFIC (decl
))
21073 error ("explicit instantiation of non-template %q#D", decl
);
21077 bool var_templ
= (DECL_TEMPLATE_INFO (decl
)
21078 && variable_template_p (DECL_TI_TEMPLATE (decl
)));
21080 if (VAR_P (decl
) && !var_templ
)
21082 /* There is an asymmetry here in the way VAR_DECLs and
21083 FUNCTION_DECLs are handled by grokdeclarator. In the case of
21084 the latter, the DECL we get back will be marked as a
21085 template instantiation, and the appropriate
21086 DECL_TEMPLATE_INFO will be set up. This does not happen for
21087 VAR_DECLs so we do the lookup here. Probably, grokdeclarator
21088 should handle VAR_DECLs as it currently handles
21090 if (!DECL_CLASS_SCOPE_P (decl
))
21092 error ("%qD is not a static data member of a class template", decl
);
21095 result
= lookup_field (DECL_CONTEXT (decl
), DECL_NAME (decl
), 0, false);
21096 if (!result
|| !VAR_P (result
))
21098 error ("no matching template for %qD found", decl
);
21101 if (!same_type_p (TREE_TYPE (result
), TREE_TYPE (decl
)))
21103 error ("type %qT for explicit instantiation %qD does not match "
21104 "declared type %qT", TREE_TYPE (result
), decl
,
21109 else if (TREE_CODE (decl
) != FUNCTION_DECL
&& !var_templ
)
21111 error ("explicit instantiation of %q#D", decl
);
21117 /* Check for various error cases. Note that if the explicit
21118 instantiation is valid the RESULT will currently be marked as an
21119 *implicit* instantiation; DECL_EXPLICIT_INSTANTIATION is not set
21120 until we get here. */
21122 if (DECL_TEMPLATE_SPECIALIZATION (result
))
21124 /* DR 259 [temp.spec].
21126 Both an explicit instantiation and a declaration of an explicit
21127 specialization shall not appear in a program unless the explicit
21128 instantiation follows a declaration of the explicit specialization.
21130 For a given set of template parameters, if an explicit
21131 instantiation of a template appears after a declaration of an
21132 explicit specialization for that template, the explicit
21133 instantiation has no effect. */
21136 else if (DECL_EXPLICIT_INSTANTIATION (result
))
21140 No program shall explicitly instantiate any template more
21143 We check DECL_NOT_REALLY_EXTERN so as not to complain when
21144 the first instantiation was `extern' and the second is not,
21145 and EXTERN_P for the opposite case. */
21146 if (DECL_NOT_REALLY_EXTERN (result
) && !extern_p
)
21147 permerror (input_location
, "duplicate explicit instantiation of %q#D", result
);
21148 /* If an "extern" explicit instantiation follows an ordinary
21149 explicit instantiation, the template is instantiated. */
21153 else if (!DECL_IMPLICIT_INSTANTIATION (result
))
21155 error ("no matching template for %qD found", result
);
21158 else if (!DECL_TEMPLATE_INFO (result
))
21160 permerror (input_location
, "explicit instantiation of non-template %q#D", result
);
21164 if (storage
== NULL_TREE
)
21166 else if (storage
== ridpointers
[(int) RID_EXTERN
])
21168 if (!in_system_header_at (input_location
) && (cxx_dialect
== cxx98
))
21169 pedwarn (input_location
, OPT_Wpedantic
,
21170 "ISO C++ 1998 forbids the use of %<extern%> on explicit "
21175 error ("storage class %qD applied to template instantiation", storage
);
21177 check_explicit_instantiation_namespace (result
);
21178 mark_decl_instantiated (result
, extern_p
);
21180 instantiate_decl (result
, /*defer_ok=*/1,
21181 /*expl_inst_class_mem_p=*/false);
21185 mark_class_instantiated (tree t
, int extern_p
)
21187 SET_CLASSTYPE_EXPLICIT_INSTANTIATION (t
);
21188 SET_CLASSTYPE_INTERFACE_KNOWN (t
);
21189 CLASSTYPE_INTERFACE_ONLY (t
) = extern_p
;
21190 TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (t
)) = extern_p
;
21193 CLASSTYPE_DEBUG_REQUESTED (t
) = 1;
21194 rest_of_type_compilation (t
, 1);
21198 /* Called from do_type_instantiation through binding_table_foreach to
21199 do recursive instantiation for the type bound in ENTRY. */
21201 bt_instantiate_type_proc (binding_entry entry
, void *data
)
21203 tree storage
= *(tree
*) data
;
21205 if (MAYBE_CLASS_TYPE_P (entry
->type
)
21206 && !uses_template_parms (CLASSTYPE_TI_ARGS (entry
->type
)))
21207 do_type_instantiation (TYPE_MAIN_DECL (entry
->type
), storage
, 0);
21210 /* Called from do_type_instantiation to instantiate a member
21211 (a member function or a static member variable) of an
21212 explicitly instantiated class template. */
21214 instantiate_class_member (tree decl
, int extern_p
)
21216 mark_decl_instantiated (decl
, extern_p
);
21218 instantiate_decl (decl
, /*defer_ok=*/1,
21219 /*expl_inst_class_mem_p=*/true);
21222 /* Perform an explicit instantiation of template class T. STORAGE, if
21223 non-null, is the RID for extern, inline or static. COMPLAIN is
21224 nonzero if this is called from the parser, zero if called recursively,
21225 since the standard is unclear (as detailed below). */
21228 do_type_instantiation (tree t
, tree storage
, tsubst_flags_t complain
)
21233 int previous_instantiation_extern_p
= 0;
21235 if (TREE_CODE (t
) == TYPE_DECL
)
21238 if (! CLASS_TYPE_P (t
) || ! CLASSTYPE_TEMPLATE_INFO (t
))
21241 (TYPE_TEMPLATE_INFO (t
)) ? TYPE_TI_TEMPLATE (t
) : NULL
;
21243 error ("explicit instantiation of non-class template %qD", tmpl
);
21245 error ("explicit instantiation of non-template type %qT", t
);
21251 if (!COMPLETE_TYPE_P (t
))
21253 if (complain
& tf_error
)
21254 error ("explicit instantiation of %q#T before definition of template",
21259 if (storage
!= NULL_TREE
)
21261 if (!in_system_header_at (input_location
))
21263 if (storage
== ridpointers
[(int) RID_EXTERN
])
21265 if (cxx_dialect
== cxx98
)
21266 pedwarn (input_location
, OPT_Wpedantic
,
21267 "ISO C++ 1998 forbids the use of %<extern%> on "
21268 "explicit instantiations");
21271 pedwarn (input_location
, OPT_Wpedantic
,
21272 "ISO C++ forbids the use of %qE"
21273 " on explicit instantiations", storage
);
21276 if (storage
== ridpointers
[(int) RID_INLINE
])
21278 else if (storage
== ridpointers
[(int) RID_EXTERN
])
21280 else if (storage
== ridpointers
[(int) RID_STATIC
])
21284 error ("storage class %qD applied to template instantiation",
21290 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (t
))
21292 /* DR 259 [temp.spec].
21294 Both an explicit instantiation and a declaration of an explicit
21295 specialization shall not appear in a program unless the explicit
21296 instantiation follows a declaration of the explicit specialization.
21298 For a given set of template parameters, if an explicit
21299 instantiation of a template appears after a declaration of an
21300 explicit specialization for that template, the explicit
21301 instantiation has no effect. */
21304 else if (CLASSTYPE_EXPLICIT_INSTANTIATION (t
))
21308 No program shall explicitly instantiate any template more
21311 If PREVIOUS_INSTANTIATION_EXTERN_P, then the first explicit
21312 instantiation was `extern'. If EXTERN_P then the second is.
21313 These cases are OK. */
21314 previous_instantiation_extern_p
= CLASSTYPE_INTERFACE_ONLY (t
);
21316 if (!previous_instantiation_extern_p
&& !extern_p
21317 && (complain
& tf_error
))
21318 permerror (input_location
, "duplicate explicit instantiation of %q#T", t
);
21320 /* If we've already instantiated the template, just return now. */
21321 if (!CLASSTYPE_INTERFACE_ONLY (t
))
21325 check_explicit_instantiation_namespace (TYPE_NAME (t
));
21326 mark_class_instantiated (t
, extern_p
);
21334 /* In contrast to implicit instantiation, where only the
21335 declarations, and not the definitions, of members are
21336 instantiated, we have here:
21340 The explicit instantiation of a class template specialization
21341 implies the instantiation of all of its members not
21342 previously explicitly specialized in the translation unit
21343 containing the explicit instantiation.
21345 Of course, we can't instantiate member template classes, since
21346 we don't have any arguments for them. Note that the standard
21347 is unclear on whether the instantiation of the members are
21348 *explicit* instantiations or not. However, the most natural
21349 interpretation is that it should be an explicit instantiation. */
21352 for (tmp
= TYPE_METHODS (t
); tmp
; tmp
= DECL_CHAIN (tmp
))
21353 if (TREE_CODE (tmp
) == FUNCTION_DECL
21354 && DECL_TEMPLATE_INSTANTIATION (tmp
))
21355 instantiate_class_member (tmp
, extern_p
);
21357 for (tmp
= TYPE_FIELDS (t
); tmp
; tmp
= DECL_CHAIN (tmp
))
21358 if (VAR_P (tmp
) && DECL_TEMPLATE_INSTANTIATION (tmp
))
21359 instantiate_class_member (tmp
, extern_p
);
21361 if (CLASSTYPE_NESTED_UTDS (t
))
21362 binding_table_foreach (CLASSTYPE_NESTED_UTDS (t
),
21363 bt_instantiate_type_proc
, &storage
);
21367 /* Given a function DECL, which is a specialization of TMPL, modify
21368 DECL to be a re-instantiation of TMPL with the same template
21369 arguments. TMPL should be the template into which tsubst'ing
21370 should occur for DECL, not the most general template.
21372 One reason for doing this is a scenario like this:
21375 void f(const T&, int i);
21377 void g() { f(3, 7); }
21380 void f(const T& t, const int i) { }
21382 Note that when the template is first instantiated, with
21383 instantiate_template, the resulting DECL will have no name for the
21384 first parameter, and the wrong type for the second. So, when we go
21385 to instantiate the DECL, we regenerate it. */
21388 regenerate_decl_from_template (tree decl
, tree tmpl
)
21390 /* The arguments used to instantiate DECL, from the most general
21395 args
= DECL_TI_ARGS (decl
);
21396 code_pattern
= DECL_TEMPLATE_RESULT (tmpl
);
21398 /* Make sure that we can see identifiers, and compute access
21400 push_access_scope (decl
);
21402 if (TREE_CODE (decl
) == FUNCTION_DECL
)
21410 args_depth
= TMPL_ARGS_DEPTH (args
);
21411 parms_depth
= TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl
));
21412 if (args_depth
> parms_depth
)
21413 args
= get_innermost_template_args (args
, parms_depth
);
21415 specs
= tsubst_exception_specification (TREE_TYPE (code_pattern
),
21416 args
, tf_error
, NULL_TREE
,
21417 /*defer_ok*/false);
21418 if (specs
&& specs
!= error_mark_node
)
21419 TREE_TYPE (decl
) = build_exception_variant (TREE_TYPE (decl
),
21422 /* Merge parameter declarations. */
21423 decl_parm
= skip_artificial_parms_for (decl
,
21424 DECL_ARGUMENTS (decl
));
21426 = skip_artificial_parms_for (code_pattern
,
21427 DECL_ARGUMENTS (code_pattern
));
21428 while (decl_parm
&& !DECL_PACK_P (pattern_parm
))
21433 if (DECL_NAME (decl_parm
) != DECL_NAME (pattern_parm
))
21434 DECL_NAME (decl_parm
) = DECL_NAME (pattern_parm
);
21435 parm_type
= tsubst (TREE_TYPE (pattern_parm
), args
, tf_error
,
21437 parm_type
= type_decays_to (parm_type
);
21438 if (!same_type_p (TREE_TYPE (decl_parm
), parm_type
))
21439 TREE_TYPE (decl_parm
) = parm_type
;
21440 attributes
= DECL_ATTRIBUTES (pattern_parm
);
21441 if (DECL_ATTRIBUTES (decl_parm
) != attributes
)
21443 DECL_ATTRIBUTES (decl_parm
) = attributes
;
21444 cplus_decl_attributes (&decl_parm
, attributes
, /*flags=*/0);
21446 decl_parm
= DECL_CHAIN (decl_parm
);
21447 pattern_parm
= DECL_CHAIN (pattern_parm
);
21449 /* Merge any parameters that match with the function parameter
21451 if (pattern_parm
&& DECL_PACK_P (pattern_parm
))
21454 tree expanded_types
;
21455 /* Expand the TYPE_PACK_EXPANSION that provides the types for
21456 the parameters in this function parameter pack. */
21457 expanded_types
= tsubst_pack_expansion (TREE_TYPE (pattern_parm
),
21458 args
, tf_error
, NULL_TREE
);
21459 len
= TREE_VEC_LENGTH (expanded_types
);
21460 for (i
= 0; i
< len
; i
++)
21465 if (DECL_NAME (decl_parm
) != DECL_NAME (pattern_parm
))
21466 /* Rename the parameter to include the index. */
21467 DECL_NAME (decl_parm
) =
21468 make_ith_pack_parameter_name (DECL_NAME (pattern_parm
), i
);
21469 parm_type
= TREE_VEC_ELT (expanded_types
, i
);
21470 parm_type
= type_decays_to (parm_type
);
21471 if (!same_type_p (TREE_TYPE (decl_parm
), parm_type
))
21472 TREE_TYPE (decl_parm
) = parm_type
;
21473 attributes
= DECL_ATTRIBUTES (pattern_parm
);
21474 if (DECL_ATTRIBUTES (decl_parm
) != attributes
)
21476 DECL_ATTRIBUTES (decl_parm
) = attributes
;
21477 cplus_decl_attributes (&decl_parm
, attributes
, /*flags=*/0);
21479 decl_parm
= DECL_CHAIN (decl_parm
);
21482 /* Merge additional specifiers from the CODE_PATTERN. */
21483 if (DECL_DECLARED_INLINE_P (code_pattern
)
21484 && !DECL_DECLARED_INLINE_P (decl
))
21485 DECL_DECLARED_INLINE_P (decl
) = 1;
21487 else if (VAR_P (decl
))
21489 DECL_INITIAL (decl
) =
21490 tsubst_expr (DECL_INITIAL (code_pattern
), args
,
21491 tf_error
, DECL_TI_TEMPLATE (decl
),
21492 /*integral_constant_expression_p=*/false);
21493 if (VAR_HAD_UNKNOWN_BOUND (decl
))
21494 TREE_TYPE (decl
) = tsubst (TREE_TYPE (code_pattern
), args
,
21495 tf_error
, DECL_TI_TEMPLATE (decl
));
21498 gcc_unreachable ();
21500 pop_access_scope (decl
);
21503 /* Return the TEMPLATE_DECL into which DECL_TI_ARGS(DECL) should be
21504 substituted to get DECL. */
21507 template_for_substitution (tree decl
)
21509 tree tmpl
= DECL_TI_TEMPLATE (decl
);
21511 /* Set TMPL to the template whose DECL_TEMPLATE_RESULT is the pattern
21512 for the instantiation. This is not always the most general
21513 template. Consider, for example:
21516 struct S { template <class U> void f();
21517 template <> void f<int>(); };
21519 and an instantiation of S<double>::f<int>. We want TD to be the
21520 specialization S<T>::f<int>, not the more general S<T>::f<U>. */
21521 while (/* An instantiation cannot have a definition, so we need a
21522 more general template. */
21523 DECL_TEMPLATE_INSTANTIATION (tmpl
)
21524 /* We must also deal with friend templates. Given:
21526 template <class T> struct S {
21527 template <class U> friend void f() {};
21530 S<int>::f<U> say, is not an instantiation of S<T>::f<U>,
21531 so far as the language is concerned, but that's still
21532 where we get the pattern for the instantiation from. On
21533 other hand, if the definition comes outside the class, say:
21535 template <class T> struct S {
21536 template <class U> friend void f();
21538 template <class U> friend void f() {}
21540 we don't need to look any further. That's what the check for
21541 DECL_INITIAL is for. */
21542 || (TREE_CODE (decl
) == FUNCTION_DECL
21543 && DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (tmpl
)
21544 && !DECL_INITIAL (DECL_TEMPLATE_RESULT (tmpl
))))
21546 /* The present template, TD, should not be a definition. If it
21547 were a definition, we should be using it! Note that we
21548 cannot restructure the loop to just keep going until we find
21549 a template with a definition, since that might go too far if
21550 a specialization was declared, but not defined. */
21552 /* Fetch the more general template. */
21553 tmpl
= DECL_TI_TEMPLATE (tmpl
);
21559 /* Returns true if we need to instantiate this template instance even if we
21560 know we aren't going to emit it. */
21563 always_instantiate_p (tree decl
)
21565 /* We always instantiate inline functions so that we can inline them. An
21566 explicit instantiation declaration prohibits implicit instantiation of
21567 non-inline functions. With high levels of optimization, we would
21568 normally inline non-inline functions -- but we're not allowed to do
21569 that for "extern template" functions. Therefore, we check
21570 DECL_DECLARED_INLINE_P, rather than possibly_inlined_p. */
21571 return ((TREE_CODE (decl
) == FUNCTION_DECL
21572 && (DECL_DECLARED_INLINE_P (decl
)
21573 || type_uses_auto (TREE_TYPE (TREE_TYPE (decl
)))))
21574 /* And we need to instantiate static data members so that
21575 their initializers are available in integral constant
21578 && decl_maybe_constant_var_p (decl
)));
21581 /* If FN has a noexcept-specifier that hasn't been instantiated yet,
21582 instantiate it now, modifying TREE_TYPE (fn). */
21585 maybe_instantiate_noexcept (tree fn
)
21587 tree fntype
, spec
, noex
, clone
;
21589 /* Don't instantiate a noexcept-specification from template context. */
21590 if (processing_template_decl
)
21593 if (DECL_CLONED_FUNCTION_P (fn
))
21594 fn
= DECL_CLONED_FUNCTION (fn
);
21595 fntype
= TREE_TYPE (fn
);
21596 spec
= TYPE_RAISES_EXCEPTIONS (fntype
);
21598 if (!spec
|| !TREE_PURPOSE (spec
))
21601 noex
= TREE_PURPOSE (spec
);
21603 if (TREE_CODE (noex
) == DEFERRED_NOEXCEPT
)
21605 if (DEFERRED_NOEXCEPT_PATTERN (noex
) == NULL_TREE
)
21606 spec
= get_defaulted_eh_spec (fn
);
21607 else if (push_tinst_level (fn
))
21609 push_access_scope (fn
);
21610 push_deferring_access_checks (dk_no_deferred
);
21611 input_location
= DECL_SOURCE_LOCATION (fn
);
21612 noex
= tsubst_copy_and_build (DEFERRED_NOEXCEPT_PATTERN (noex
),
21613 DEFERRED_NOEXCEPT_ARGS (noex
),
21614 tf_warning_or_error
, fn
,
21615 /*function_p=*/false,
21616 /*integral_constant_expression_p=*/true);
21617 pop_deferring_access_checks ();
21618 pop_access_scope (fn
);
21619 pop_tinst_level ();
21620 spec
= build_noexcept_spec (noex
, tf_warning_or_error
);
21621 if (spec
== error_mark_node
)
21622 spec
= noexcept_false_spec
;
21625 spec
= noexcept_false_spec
;
21627 TREE_TYPE (fn
) = build_exception_variant (fntype
, spec
);
21630 FOR_EACH_CLONE (clone
, fn
)
21632 if (TREE_TYPE (clone
) == fntype
)
21633 TREE_TYPE (clone
) = TREE_TYPE (fn
);
21635 TREE_TYPE (clone
) = build_exception_variant (TREE_TYPE (clone
), spec
);
21639 /* Produce the definition of D, a _DECL generated from a template. If
21640 DEFER_OK is nonzero, then we don't have to actually do the
21641 instantiation now; we just have to do it sometime. Normally it is
21642 an error if this is an explicit instantiation but D is undefined.
21643 EXPL_INST_CLASS_MEM_P is true iff D is a member of an
21644 explicitly instantiated class template. */
21647 instantiate_decl (tree d
, int defer_ok
,
21648 bool expl_inst_class_mem_p
)
21650 tree tmpl
= DECL_TI_TEMPLATE (d
);
21657 bool pattern_defined
;
21658 location_t saved_loc
= input_location
;
21659 int saved_unevaluated_operand
= cp_unevaluated_operand
;
21660 int saved_inhibit_evaluation_warnings
= c_inhibit_evaluation_warnings
;
21664 bool nested
= false;
21666 /* This function should only be used to instantiate templates for
21667 functions and static member variables. */
21668 gcc_assert (VAR_OR_FUNCTION_DECL_P (d
));
21670 /* A concept is never instantiated. */
21671 gcc_assert (!DECL_DECLARED_CONCEPT_P (d
));
21673 /* Variables are never deferred; if instantiation is required, they
21674 are instantiated right away. That allows for better code in the
21675 case that an expression refers to the value of the variable --
21676 if the variable has a constant value the referring expression can
21677 take advantage of that fact. */
21679 || DECL_DECLARED_CONSTEXPR_P (d
))
21682 /* Don't instantiate cloned functions. Instead, instantiate the
21683 functions they cloned. */
21684 if (TREE_CODE (d
) == FUNCTION_DECL
&& DECL_CLONED_FUNCTION_P (d
))
21685 d
= DECL_CLONED_FUNCTION (d
);
21687 if (DECL_TEMPLATE_INSTANTIATED (d
)
21688 || (TREE_CODE (d
) == FUNCTION_DECL
21689 && DECL_DEFAULTED_FN (d
) && DECL_INITIAL (d
))
21690 || DECL_TEMPLATE_SPECIALIZATION (d
))
21691 /* D has already been instantiated or explicitly specialized, so
21692 there's nothing for us to do here.
21694 It might seem reasonable to check whether or not D is an explicit
21695 instantiation, and, if so, stop here. But when an explicit
21696 instantiation is deferred until the end of the compilation,
21697 DECL_EXPLICIT_INSTANTIATION is set, even though we still need to do
21698 the instantiation. */
21701 /* Check to see whether we know that this template will be
21702 instantiated in some other file, as with "extern template"
21704 external_p
= (DECL_INTERFACE_KNOWN (d
) && DECL_REALLY_EXTERN (d
));
21706 /* In general, we do not instantiate such templates. */
21707 if (external_p
&& !always_instantiate_p (d
))
21710 gen_tmpl
= most_general_template (tmpl
);
21711 gen_args
= impartial_args (tmpl
, DECL_TI_ARGS (d
));
21713 if (tmpl
!= gen_tmpl
)
21714 /* We should already have the extra args. */
21715 gcc_assert (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (gen_tmpl
))
21716 == TMPL_ARGS_DEPTH (gen_args
));
21717 /* And what's in the hash table should match D. */
21718 gcc_assert ((spec
= retrieve_specialization (gen_tmpl
, gen_args
, 0)) == d
21719 || spec
== NULL_TREE
);
21721 /* This needs to happen before any tsubsting. */
21722 if (! push_tinst_level (d
))
21725 timevar_push (TV_TEMPLATE_INST
);
21727 /* Set TD to the template whose DECL_TEMPLATE_RESULT is the pattern
21728 for the instantiation. */
21729 td
= template_for_substitution (d
);
21730 code_pattern
= DECL_TEMPLATE_RESULT (td
);
21732 /* We should never be trying to instantiate a member of a class
21733 template or partial specialization. */
21734 gcc_assert (d
!= code_pattern
);
21736 if ((DECL_NAMESPACE_SCOPE_P (d
) && !DECL_INITIALIZED_IN_CLASS_P (d
))
21737 || DECL_TEMPLATE_SPECIALIZATION (td
))
21738 /* In the case of a friend template whose definition is provided
21739 outside the class, we may have too many arguments. Drop the
21740 ones we don't need. The same is true for specializations. */
21741 args
= get_innermost_template_args
21742 (gen_args
, TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (td
)));
21746 if (TREE_CODE (d
) == FUNCTION_DECL
)
21748 deleted_p
= DECL_DELETED_FN (code_pattern
);
21749 pattern_defined
= ((DECL_SAVED_TREE (code_pattern
) != NULL_TREE
21750 && DECL_INITIAL (code_pattern
) != error_mark_node
)
21751 || DECL_DEFAULTED_OUTSIDE_CLASS_P (code_pattern
)
21757 pattern_defined
= ! DECL_IN_AGGR_P (code_pattern
);
21760 /* We may be in the middle of deferred access check. Disable it now. */
21761 push_deferring_access_checks (dk_no_deferred
);
21763 /* Unless an explicit instantiation directive has already determined
21764 the linkage of D, remember that a definition is available for
21766 if (pattern_defined
21767 && !DECL_INTERFACE_KNOWN (d
)
21768 && !DECL_NOT_REALLY_EXTERN (d
))
21769 mark_definable (d
);
21771 DECL_SOURCE_LOCATION (td
) = DECL_SOURCE_LOCATION (code_pattern
);
21772 DECL_SOURCE_LOCATION (d
) = DECL_SOURCE_LOCATION (code_pattern
);
21773 input_location
= DECL_SOURCE_LOCATION (d
);
21775 /* If D is a member of an explicitly instantiated class template,
21776 and no definition is available, treat it like an implicit
21778 if (!pattern_defined
&& expl_inst_class_mem_p
21779 && DECL_EXPLICIT_INSTANTIATION (d
))
21781 /* Leave linkage flags alone on instantiations with anonymous
21783 if (TREE_PUBLIC (d
))
21785 DECL_NOT_REALLY_EXTERN (d
) = 0;
21786 DECL_INTERFACE_KNOWN (d
) = 0;
21788 SET_DECL_IMPLICIT_INSTANTIATION (d
);
21791 /* Defer all other templates, unless we have been explicitly
21792 forbidden from doing so. */
21793 if (/* If there is no definition, we cannot instantiate the
21796 /* If it's OK to postpone instantiation, do so. */
21798 /* If this is a static data member that will be defined
21799 elsewhere, we don't want to instantiate the entire data
21800 member, but we do want to instantiate the initializer so that
21801 we can substitute that elsewhere. */
21802 || (external_p
&& VAR_P (d
))
21803 /* Handle here a deleted function too, avoid generating
21804 its body (c++/61080). */
21807 /* The definition of the static data member is now required so
21808 we must substitute the initializer. */
21810 && !DECL_INITIAL (d
)
21811 && DECL_INITIAL (code_pattern
))
21815 bool const_init
= false;
21816 bool enter_context
= DECL_CLASS_SCOPE_P (d
);
21818 ns
= decl_namespace_context (d
);
21819 push_nested_namespace (ns
);
21821 push_nested_class (DECL_CONTEXT (d
));
21822 init
= tsubst_expr (DECL_INITIAL (code_pattern
),
21824 tf_warning_or_error
, NULL_TREE
,
21825 /*integral_constant_expression_p=*/false);
21826 /* If instantiating the initializer involved instantiating this
21827 again, don't call cp_finish_decl twice. */
21828 if (!DECL_INITIAL (d
))
21830 /* Make sure the initializer is still constant, in case of
21831 circular dependency (template/instantiate6.C). */
21833 = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern
);
21834 cp_finish_decl (d
, init
, /*init_const_expr_p=*/const_init
,
21835 /*asmspec_tree=*/NULL_TREE
,
21836 LOOKUP_ONLYCONVERTING
);
21839 pop_nested_class ();
21840 pop_nested_namespace (ns
);
21843 /* We restore the source position here because it's used by
21844 add_pending_template. */
21845 input_location
= saved_loc
;
21847 if (at_eof
&& !pattern_defined
21848 && DECL_EXPLICIT_INSTANTIATION (d
)
21849 && DECL_NOT_REALLY_EXTERN (d
))
21852 The definition of a non-exported function template, a
21853 non-exported member function template, or a non-exported
21854 member function or static data member of a class template
21855 shall be present in every translation unit in which it is
21856 explicitly instantiated. */
21857 permerror (input_location
, "explicit instantiation of %qD "
21858 "but no definition available", d
);
21860 /* If we're in unevaluated context, we just wanted to get the
21861 constant value; this isn't an odr use, so don't queue
21862 a full instantiation. */
21863 if (cp_unevaluated_operand
!= 0)
21865 /* ??? Historically, we have instantiated inline functions, even
21866 when marked as "extern template". */
21867 if (!(external_p
&& VAR_P (d
)))
21868 add_pending_template (d
);
21871 /* Tell the repository that D is available in this translation unit
21872 -- and see if it is supposed to be instantiated here. */
21873 if (TREE_PUBLIC (d
) && !DECL_REALLY_EXTERN (d
) && !repo_emit_p (d
))
21875 /* In a PCH file, despite the fact that the repository hasn't
21876 requested instantiation in the PCH it is still possible that
21877 an instantiation will be required in a file that includes the
21880 add_pending_template (d
);
21881 /* Instantiate inline functions so that the inliner can do its
21882 job, even though we'll not be emitting a copy of this
21884 if (!(TREE_CODE (d
) == FUNCTION_DECL
&& possibly_inlined_p (d
)))
21888 fn_context
= decl_function_context (d
);
21889 nested
= (current_function_decl
!= NULL_TREE
);
21890 vec
<tree
> omp_privatization_save
;
21892 save_omp_privatization_clauses (omp_privatization_save
);
21895 push_to_top_level ();
21899 push_function_context ();
21900 cp_unevaluated_operand
= 0;
21901 c_inhibit_evaluation_warnings
= 0;
21904 /* Mark D as instantiated so that recursive calls to
21905 instantiate_decl do not try to instantiate it again. */
21906 DECL_TEMPLATE_INSTANTIATED (d
) = 1;
21908 /* Regenerate the declaration in case the template has been modified
21909 by a subsequent redeclaration. */
21910 regenerate_decl_from_template (d
, td
);
21912 /* We already set the file and line above. Reset them now in case
21913 they changed as a result of calling regenerate_decl_from_template. */
21914 input_location
= DECL_SOURCE_LOCATION (d
);
21919 bool const_init
= false;
21921 /* Clear out DECL_RTL; whatever was there before may not be right
21922 since we've reset the type of the declaration. */
21923 SET_DECL_RTL (d
, NULL
);
21924 DECL_IN_AGGR_P (d
) = 0;
21926 /* The initializer is placed in DECL_INITIAL by
21927 regenerate_decl_from_template so we don't need to
21928 push/pop_access_scope again here. Pull it out so that
21929 cp_finish_decl can process it. */
21930 init
= DECL_INITIAL (d
);
21931 DECL_INITIAL (d
) = NULL_TREE
;
21932 DECL_INITIALIZED_P (d
) = 0;
21934 /* Clear DECL_EXTERNAL so that cp_finish_decl will process the
21935 initializer. That function will defer actual emission until
21936 we have a chance to determine linkage. */
21937 DECL_EXTERNAL (d
) = 0;
21939 /* Enter the scope of D so that access-checking works correctly. */
21940 bool enter_context
= DECL_CLASS_SCOPE_P (d
);
21942 push_nested_class (DECL_CONTEXT (d
));
21944 const_init
= DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern
);
21945 cp_finish_decl (d
, init
, const_init
, NULL_TREE
, 0);
21948 pop_nested_class ();
21950 if (variable_template_p (gen_tmpl
))
21951 note_variable_template_instantiation (d
);
21953 else if (TREE_CODE (d
) == FUNCTION_DECL
&& DECL_DEFAULTED_FN (code_pattern
))
21954 synthesize_method (d
);
21955 else if (TREE_CODE (d
) == FUNCTION_DECL
)
21957 hash_map
<tree
, tree
> *saved_local_specializations
;
21961 tree block
= NULL_TREE
;
21963 /* Save away the current list, in case we are instantiating one
21964 template from within the body of another. */
21965 saved_local_specializations
= local_specializations
;
21967 /* Set up the list of local specializations. */
21968 local_specializations
= new hash_map
<tree
, tree
>;
21970 /* Set up context. */
21971 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern
)
21972 && TREE_CODE (DECL_CONTEXT (code_pattern
)) == FUNCTION_DECL
)
21973 block
= push_stmt_list ();
21975 start_preparsed_function (d
, NULL_TREE
, SF_PRE_PARSED
);
21977 /* Some typedefs referenced from within the template code need to be
21978 access checked at template instantiation time, i.e now. These
21979 types were added to the template at parsing time. Let's get those
21980 and perform the access checks then. */
21981 perform_typedefs_access_check (DECL_TEMPLATE_RESULT (gen_tmpl
),
21984 /* Create substitution entries for the parameters. */
21985 subst_decl
= DECL_TEMPLATE_RESULT (template_for_substitution (d
));
21986 tmpl_parm
= DECL_ARGUMENTS (subst_decl
);
21987 spec_parm
= DECL_ARGUMENTS (d
);
21988 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (d
))
21990 register_local_specialization (spec_parm
, tmpl_parm
);
21991 spec_parm
= skip_artificial_parms_for (d
, spec_parm
);
21992 tmpl_parm
= skip_artificial_parms_for (subst_decl
, tmpl_parm
);
21994 for (; tmpl_parm
; tmpl_parm
= DECL_CHAIN (tmpl_parm
))
21996 if (!DECL_PACK_P (tmpl_parm
))
21998 register_local_specialization (spec_parm
, tmpl_parm
);
21999 spec_parm
= DECL_CHAIN (spec_parm
);
22003 /* Register the (value) argument pack as a specialization of
22004 TMPL_PARM, then move on. */
22005 tree argpack
= extract_fnparm_pack (tmpl_parm
, &spec_parm
);
22006 register_local_specialization (argpack
, tmpl_parm
);
22009 gcc_assert (!spec_parm
);
22011 /* Substitute into the body of the function. */
22012 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern
))
22013 tsubst_omp_udr (DECL_SAVED_TREE (code_pattern
), args
,
22014 tf_warning_or_error
, tmpl
);
22017 tsubst_expr (DECL_SAVED_TREE (code_pattern
), args
,
22018 tf_warning_or_error
, tmpl
,
22019 /*integral_constant_expression_p=*/false);
22021 /* Set the current input_location to the end of the function
22022 so that finish_function knows where we are. */
22024 = DECL_STRUCT_FUNCTION (code_pattern
)->function_end_locus
;
22026 /* Remember if we saw an infinite loop in the template. */
22027 current_function_infinite_loop
22028 = DECL_STRUCT_FUNCTION (code_pattern
)->language
->infinite_loop
;
22031 /* We don't need the local specializations any more. */
22032 delete local_specializations
;
22033 local_specializations
= saved_local_specializations
;
22035 /* Finish the function. */
22036 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern
)
22037 && TREE_CODE (DECL_CONTEXT (code_pattern
)) == FUNCTION_DECL
)
22038 DECL_SAVED_TREE (d
) = pop_stmt_list (block
);
22041 d
= finish_function (0);
22042 expand_or_defer_fn (d
);
22045 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern
))
22046 cp_check_omp_declare_reduction (d
);
22049 /* We're not deferring instantiation any more. */
22050 TI_PENDING_TEMPLATE_FLAG (DECL_TEMPLATE_INFO (d
)) = 0;
22053 pop_from_top_level ();
22055 pop_function_context ();
22058 input_location
= saved_loc
;
22059 cp_unevaluated_operand
= saved_unevaluated_operand
;
22060 c_inhibit_evaluation_warnings
= saved_inhibit_evaluation_warnings
;
22061 pop_deferring_access_checks ();
22062 pop_tinst_level ();
22064 restore_omp_privatization_clauses (omp_privatization_save
);
22066 timevar_pop (TV_TEMPLATE_INST
);
22071 /* Run through the list of templates that we wish we could
22072 instantiate, and instantiate any we can. RETRIES is the
22073 number of times we retry pending template instantiation. */
22076 instantiate_pending_templates (int retries
)
22079 location_t saved_loc
= input_location
;
22081 /* Instantiating templates may trigger vtable generation. This in turn
22082 may require further template instantiations. We place a limit here
22083 to avoid infinite loop. */
22084 if (pending_templates
&& retries
>= max_tinst_depth
)
22086 tree decl
= pending_templates
->tinst
->decl
;
22088 fatal_error (input_location
,
22089 "template instantiation depth exceeds maximum of %d"
22090 " instantiating %q+D, possibly from virtual table generation"
22091 " (use -ftemplate-depth= to increase the maximum)",
22092 max_tinst_depth
, decl
);
22093 if (TREE_CODE (decl
) == FUNCTION_DECL
)
22094 /* Pretend that we defined it. */
22095 DECL_INITIAL (decl
) = error_mark_node
;
22101 struct pending_template
**t
= &pending_templates
;
22102 struct pending_template
*last
= NULL
;
22106 tree instantiation
= reopen_tinst_level ((*t
)->tinst
);
22107 bool complete
= false;
22109 if (TYPE_P (instantiation
))
22113 if (!COMPLETE_TYPE_P (instantiation
))
22115 instantiate_class_template (instantiation
);
22116 if (CLASSTYPE_TEMPLATE_INSTANTIATION (instantiation
))
22117 for (fn
= TYPE_METHODS (instantiation
);
22119 fn
= TREE_CHAIN (fn
))
22120 if (! DECL_ARTIFICIAL (fn
))
22121 instantiate_decl (fn
,
22123 /*expl_inst_class_mem_p=*/false);
22124 if (COMPLETE_TYPE_P (instantiation
))
22128 complete
= COMPLETE_TYPE_P (instantiation
);
22132 if (!DECL_TEMPLATE_SPECIALIZATION (instantiation
)
22133 && !DECL_TEMPLATE_INSTANTIATED (instantiation
))
22136 = instantiate_decl (instantiation
,
22138 /*expl_inst_class_mem_p=*/false);
22139 if (DECL_TEMPLATE_INSTANTIATED (instantiation
))
22143 complete
= (DECL_TEMPLATE_SPECIALIZATION (instantiation
)
22144 || DECL_TEMPLATE_INSTANTIATED (instantiation
));
22148 /* If INSTANTIATION has been instantiated, then we don't
22149 need to consider it again in the future. */
22157 current_tinst_level
= NULL
;
22159 last_pending_template
= last
;
22161 while (reconsider
);
22163 input_location
= saved_loc
;
22166 /* Substitute ARGVEC into T, which is a list of initializers for
22167 either base class or a non-static data member. The TREE_PURPOSEs
22168 are DECLs, and the TREE_VALUEs are the initializer values. Used by
22169 instantiate_decl. */
22172 tsubst_initializer_list (tree t
, tree argvec
)
22174 tree inits
= NULL_TREE
;
22176 for (; t
; t
= TREE_CHAIN (t
))
22180 tree expanded_bases
= NULL_TREE
;
22181 tree expanded_arguments
= NULL_TREE
;
22184 if (TREE_CODE (TREE_PURPOSE (t
)) == TYPE_PACK_EXPANSION
)
22189 /* Expand the base class expansion type into separate base
22191 expanded_bases
= tsubst_pack_expansion (TREE_PURPOSE (t
), argvec
,
22192 tf_warning_or_error
,
22194 if (expanded_bases
== error_mark_node
)
22197 /* We'll be building separate TREE_LISTs of arguments for
22199 len
= TREE_VEC_LENGTH (expanded_bases
);
22200 expanded_arguments
= make_tree_vec (len
);
22201 for (i
= 0; i
< len
; i
++)
22202 TREE_VEC_ELT (expanded_arguments
, i
) = NULL_TREE
;
22204 /* Build a dummy EXPR_PACK_EXPANSION that will be used to
22205 expand each argument in the TREE_VALUE of t. */
22206 expr
= make_node (EXPR_PACK_EXPANSION
);
22207 PACK_EXPANSION_LOCAL_P (expr
) = true;
22208 PACK_EXPANSION_PARAMETER_PACKS (expr
) =
22209 PACK_EXPANSION_PARAMETER_PACKS (TREE_PURPOSE (t
));
22211 if (TREE_VALUE (t
) == void_type_node
)
22212 /* VOID_TYPE_NODE is used to indicate
22213 value-initialization. */
22215 for (i
= 0; i
< len
; i
++)
22216 TREE_VEC_ELT (expanded_arguments
, i
) = void_type_node
;
22220 /* Substitute parameter packs into each argument in the
22222 in_base_initializer
= 1;
22223 for (arg
= TREE_VALUE (t
); arg
; arg
= TREE_CHAIN (arg
))
22225 tree expanded_exprs
;
22227 /* Expand the argument. */
22228 SET_PACK_EXPANSION_PATTERN (expr
, TREE_VALUE (arg
));
22230 = tsubst_pack_expansion (expr
, argvec
,
22231 tf_warning_or_error
,
22233 if (expanded_exprs
== error_mark_node
)
22236 /* Prepend each of the expanded expressions to the
22237 corresponding TREE_LIST in EXPANDED_ARGUMENTS. */
22238 for (i
= 0; i
< len
; i
++)
22240 TREE_VEC_ELT (expanded_arguments
, i
) =
22241 tree_cons (NULL_TREE
,
22242 TREE_VEC_ELT (expanded_exprs
, i
),
22243 TREE_VEC_ELT (expanded_arguments
, i
));
22246 in_base_initializer
= 0;
22248 /* Reverse all of the TREE_LISTs in EXPANDED_ARGUMENTS,
22249 since we built them backwards. */
22250 for (i
= 0; i
< len
; i
++)
22252 TREE_VEC_ELT (expanded_arguments
, i
) =
22253 nreverse (TREE_VEC_ELT (expanded_arguments
, i
));
22258 for (i
= 0; i
< len
; ++i
)
22260 if (expanded_bases
)
22262 decl
= TREE_VEC_ELT (expanded_bases
, i
);
22263 decl
= expand_member_init (decl
);
22264 init
= TREE_VEC_ELT (expanded_arguments
, i
);
22269 decl
= tsubst_copy (TREE_PURPOSE (t
), argvec
,
22270 tf_warning_or_error
, NULL_TREE
);
22272 decl
= expand_member_init (decl
);
22273 if (decl
&& !DECL_P (decl
))
22274 in_base_initializer
= 1;
22276 init
= TREE_VALUE (t
);
22278 if (init
!= void_type_node
)
22279 init
= tsubst_expr (init
, argvec
,
22280 tf_warning_or_error
, NULL_TREE
,
22281 /*integral_constant_expression_p=*/false);
22282 if (init
== NULL_TREE
&& tmp
!= NULL_TREE
)
22283 /* If we had an initializer but it instantiated to nothing,
22284 value-initialize the object. This will only occur when
22285 the initializer was a pack expansion where the parameter
22286 packs used in that expansion were of length zero. */
22287 init
= void_type_node
;
22288 in_base_initializer
= 0;
22293 init
= build_tree_list (decl
, init
);
22294 TREE_CHAIN (init
) = inits
;
22302 /* Set CURRENT_ACCESS_SPECIFIER based on the protection of DECL. */
22305 set_current_access_from_decl (tree decl
)
22307 if (TREE_PRIVATE (decl
))
22308 current_access_specifier
= access_private_node
;
22309 else if (TREE_PROTECTED (decl
))
22310 current_access_specifier
= access_protected_node
;
22312 current_access_specifier
= access_public_node
;
22315 /* Instantiate an enumerated type. TAG is the template type, NEWTAG
22316 is the instantiation (which should have been created with
22317 start_enum) and ARGS are the template arguments to use. */
22320 tsubst_enum (tree tag
, tree newtag
, tree args
)
22324 if (SCOPED_ENUM_P (newtag
))
22325 begin_scope (sk_scoped_enum
, newtag
);
22327 for (e
= TYPE_VALUES (tag
); e
; e
= TREE_CHAIN (e
))
22332 decl
= TREE_VALUE (e
);
22333 /* Note that in a template enum, the TREE_VALUE is the
22334 CONST_DECL, not the corresponding INTEGER_CST. */
22335 value
= tsubst_expr (DECL_INITIAL (decl
),
22336 args
, tf_warning_or_error
, NULL_TREE
,
22337 /*integral_constant_expression_p=*/true);
22339 /* Give this enumeration constant the correct access. */
22340 set_current_access_from_decl (decl
);
22342 /* Actually build the enumerator itself. Here we're assuming that
22343 enumerators can't have dependent attributes. */
22344 build_enumerator (DECL_NAME (decl
), value
, newtag
,
22345 DECL_ATTRIBUTES (decl
), DECL_SOURCE_LOCATION (decl
));
22348 if (SCOPED_ENUM_P (newtag
))
22351 finish_enum_value_list (newtag
);
22352 finish_enum (newtag
);
22354 DECL_SOURCE_LOCATION (TYPE_NAME (newtag
))
22355 = DECL_SOURCE_LOCATION (TYPE_NAME (tag
));
22358 /* DECL is a FUNCTION_DECL that is a template specialization. Return
22359 its type -- but without substituting the innermost set of template
22360 arguments. So, innermost set of template parameters will appear in
22364 get_mostly_instantiated_function_type (tree decl
)
22366 /* For a function, DECL_TI_TEMPLATE is partially instantiated. */
22367 return TREE_TYPE (DECL_TI_TEMPLATE (decl
));
22370 /* Return truthvalue if we're processing a template different from
22371 the last one involved in diagnostics. */
22373 problematic_instantiation_changed (void)
22375 return current_tinst_level
!= last_error_tinst_level
;
22378 /* Remember current template involved in diagnostics. */
22380 record_last_problematic_instantiation (void)
22382 last_error_tinst_level
= current_tinst_level
;
22385 struct tinst_level
*
22386 current_instantiation (void)
22388 return current_tinst_level
;
22391 /* Return TRUE if current_function_decl is being instantiated, false
22395 instantiating_current_function_p (void)
22397 return (current_instantiation ()
22398 && current_instantiation ()->decl
== current_function_decl
);
22401 /* [temp.param] Check that template non-type parm TYPE is of an allowable
22402 type. Return zero for ok, nonzero for disallowed. Issue error and
22403 warning messages under control of COMPLAIN. */
22406 invalid_nontype_parm_type_p (tree type
, tsubst_flags_t complain
)
22408 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type
))
22410 else if (POINTER_TYPE_P (type
))
22412 else if (TYPE_PTRMEM_P (type
))
22414 else if (TREE_CODE (type
) == TEMPLATE_TYPE_PARM
)
22416 else if (TREE_CODE (type
) == TYPENAME_TYPE
)
22418 else if (TREE_CODE (type
) == DECLTYPE_TYPE
)
22420 else if (TREE_CODE (type
) == NULLPTR_TYPE
)
22422 /* A bound template template parm could later be instantiated to have a valid
22423 nontype parm type via an alias template. */
22424 else if (cxx_dialect
>= cxx11
22425 && TREE_CODE (type
) == BOUND_TEMPLATE_TEMPLATE_PARM
)
22428 if (complain
& tf_error
)
22430 if (type
== error_mark_node
)
22431 inform (input_location
, "invalid template non-type parameter");
22433 error ("%q#T is not a valid type for a template non-type parameter",
22439 /* Returns TRUE if TYPE is dependent, in the sense of [temp.dep.type].
22440 Assumes that TYPE really is a type, and not the ERROR_MARK_NODE.*/
22443 dependent_type_p_r (tree type
)
22449 A type is dependent if it is:
22451 -- a template parameter. Template template parameters are types
22452 for us (since TYPE_P holds true for them) so we handle
22454 if (TREE_CODE (type
) == TEMPLATE_TYPE_PARM
22455 || TREE_CODE (type
) == TEMPLATE_TEMPLATE_PARM
)
22457 /* -- a qualified-id with a nested-name-specifier which contains a
22458 class-name that names a dependent type or whose unqualified-id
22459 names a dependent type. */
22460 if (TREE_CODE (type
) == TYPENAME_TYPE
)
22463 /* An alias template specialization can be dependent even if the
22464 resulting type is not. */
22465 if (dependent_alias_template_spec_p (type
))
22468 /* -- a cv-qualified type where the cv-unqualified type is
22470 No code is necessary for this bullet; the code below handles
22471 cv-qualified types, and we don't want to strip aliases with
22472 TYPE_MAIN_VARIANT because of DR 1558. */
22473 /* -- a compound type constructed from any dependent type. */
22474 if (TYPE_PTRMEM_P (type
))
22475 return (dependent_type_p (TYPE_PTRMEM_CLASS_TYPE (type
))
22476 || dependent_type_p (TYPE_PTRMEM_POINTED_TO_TYPE
22478 else if (TYPE_PTR_P (type
)
22479 || TREE_CODE (type
) == REFERENCE_TYPE
)
22480 return dependent_type_p (TREE_TYPE (type
));
22481 else if (TREE_CODE (type
) == FUNCTION_TYPE
22482 || TREE_CODE (type
) == METHOD_TYPE
)
22486 if (dependent_type_p (TREE_TYPE (type
)))
22488 for (arg_type
= TYPE_ARG_TYPES (type
);
22490 arg_type
= TREE_CHAIN (arg_type
))
22491 if (dependent_type_p (TREE_VALUE (arg_type
)))
22495 /* -- an array type constructed from any dependent type or whose
22496 size is specified by a constant expression that is
22499 We checked for type- and value-dependence of the bounds in
22500 compute_array_index_type, so TYPE_DEPENDENT_P is already set. */
22501 if (TREE_CODE (type
) == ARRAY_TYPE
)
22503 if (TYPE_DOMAIN (type
)
22504 && dependent_type_p (TYPE_DOMAIN (type
)))
22506 return dependent_type_p (TREE_TYPE (type
));
22509 /* -- a template-id in which either the template name is a template
22511 if (TREE_CODE (type
) == BOUND_TEMPLATE_TEMPLATE_PARM
)
22513 /* ... or any of the template arguments is a dependent type or
22514 an expression that is type-dependent or value-dependent. */
22515 else if (CLASS_TYPE_P (type
) && CLASSTYPE_TEMPLATE_INFO (type
)
22516 && (any_dependent_template_arguments_p
22517 (INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type
)))))
22520 /* All TYPEOF_TYPEs, DECLTYPE_TYPEs, and UNDERLYING_TYPEs are
22521 dependent; if the argument of the `typeof' expression is not
22522 type-dependent, then it should already been have resolved. */
22523 if (TREE_CODE (type
) == TYPEOF_TYPE
22524 || TREE_CODE (type
) == DECLTYPE_TYPE
22525 || TREE_CODE (type
) == UNDERLYING_TYPE
)
22528 /* A template argument pack is dependent if any of its packed
22530 if (TREE_CODE (type
) == TYPE_ARGUMENT_PACK
)
22532 tree args
= ARGUMENT_PACK_ARGS (type
);
22533 int i
, len
= TREE_VEC_LENGTH (args
);
22534 for (i
= 0; i
< len
; ++i
)
22535 if (dependent_template_arg_p (TREE_VEC_ELT (args
, i
)))
22539 /* All TYPE_PACK_EXPANSIONs are dependent, because parameter packs must
22540 be template parameters. */
22541 if (TREE_CODE (type
) == TYPE_PACK_EXPANSION
)
22544 /* The standard does not specifically mention types that are local
22545 to template functions or local classes, but they should be
22546 considered dependent too. For example:
22548 template <int I> void f() {
22553 The size of `E' cannot be known until the value of `I' has been
22554 determined. Therefore, `E' must be considered dependent. */
22555 scope
= TYPE_CONTEXT (type
);
22556 if (scope
&& TYPE_P (scope
))
22557 return dependent_type_p (scope
);
22558 /* Don't use type_dependent_expression_p here, as it can lead
22559 to infinite recursion trying to determine whether a lambda
22560 nested in a lambda is dependent (c++/47687). */
22561 else if (scope
&& TREE_CODE (scope
) == FUNCTION_DECL
22562 && DECL_LANG_SPECIFIC (scope
)
22563 && DECL_TEMPLATE_INFO (scope
)
22564 && (any_dependent_template_arguments_p
22565 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (scope
)))))
22568 /* Other types are non-dependent. */
22572 /* Returns TRUE if TYPE is dependent, in the sense of
22573 [temp.dep.type]. Note that a NULL type is considered dependent. */
22576 dependent_type_p (tree type
)
22578 /* If there are no template parameters in scope, then there can't be
22579 any dependent types. */
22580 if (!processing_template_decl
)
22582 /* If we are not processing a template, then nobody should be
22583 providing us with a dependent type. */
22585 gcc_assert (TREE_CODE (type
) != TEMPLATE_TYPE_PARM
|| is_auto (type
));
22589 /* If the type is NULL, we have not computed a type for the entity
22590 in question; in that case, the type is dependent. */
22594 /* Erroneous types can be considered non-dependent. */
22595 if (type
== error_mark_node
)
22598 /* If we have not already computed the appropriate value for TYPE,
22600 if (!TYPE_DEPENDENT_P_VALID (type
))
22602 TYPE_DEPENDENT_P (type
) = dependent_type_p_r (type
);
22603 TYPE_DEPENDENT_P_VALID (type
) = 1;
22606 return TYPE_DEPENDENT_P (type
);
22609 /* Returns TRUE if SCOPE is a dependent scope, in which we can't do any
22610 lookup. In other words, a dependent type that is not the current
22614 dependent_scope_p (tree scope
)
22616 return (scope
&& TYPE_P (scope
) && dependent_type_p (scope
)
22617 && !currently_open_class (scope
));
22620 /* T is a SCOPE_REF; return whether we need to consider it
22621 instantiation-dependent so that we can check access at instantiation
22622 time even though we know which member it resolves to. */
22625 instantiation_dependent_scope_ref_p (tree t
)
22627 if (DECL_P (TREE_OPERAND (t
, 1))
22628 && CLASS_TYPE_P (TREE_OPERAND (t
, 0))
22629 && accessible_in_template_p (TREE_OPERAND (t
, 0),
22630 TREE_OPERAND (t
, 1)))
22636 /* Returns TRUE if the EXPRESSION is value-dependent, in the sense of
22637 [temp.dep.constexpr]. EXPRESSION is already known to be a constant
22640 /* Note that this predicate is not appropriate for general expressions;
22641 only constant expressions (that satisfy potential_constant_expression)
22642 can be tested for value dependence. */
22645 value_dependent_expression_p (tree expression
)
22647 if (!processing_template_decl
)
22650 /* A name declared with a dependent type. */
22651 if (DECL_P (expression
) && type_dependent_expression_p (expression
))
22654 switch (TREE_CODE (expression
))
22656 case IDENTIFIER_NODE
:
22657 /* A name that has not been looked up -- must be dependent. */
22660 case TEMPLATE_PARM_INDEX
:
22661 /* A non-type template parm. */
22665 /* A non-type template parm. */
22666 if (DECL_TEMPLATE_PARM_P (expression
))
22668 return value_dependent_expression_p (DECL_INITIAL (expression
));
22671 /* A constant with literal type and is initialized
22672 with an expression that is value-dependent.
22674 Note that a non-dependent parenthesized initializer will have
22675 already been replaced with its constant value, so if we see
22676 a TREE_LIST it must be dependent. */
22677 if (DECL_INITIAL (expression
)
22678 && decl_constant_var_p (expression
)
22679 && (TREE_CODE (DECL_INITIAL (expression
)) == TREE_LIST
22680 /* cp_finish_decl doesn't fold reference initializers. */
22681 || TREE_CODE (TREE_TYPE (expression
)) == REFERENCE_TYPE
22682 || type_dependent_expression_p (DECL_INITIAL (expression
))
22683 || value_dependent_expression_p (DECL_INITIAL (expression
))))
22687 case DYNAMIC_CAST_EXPR
:
22688 case STATIC_CAST_EXPR
:
22689 case CONST_CAST_EXPR
:
22690 case REINTERPRET_CAST_EXPR
:
22692 /* These expressions are value-dependent if the type to which
22693 the cast occurs is dependent or the expression being casted
22694 is value-dependent. */
22696 tree type
= TREE_TYPE (expression
);
22698 if (dependent_type_p (type
))
22701 /* A functional cast has a list of operands. */
22702 expression
= TREE_OPERAND (expression
, 0);
22705 /* If there are no operands, it must be an expression such
22706 as "int()". This should not happen for aggregate types
22707 because it would form non-constant expressions. */
22708 gcc_assert (cxx_dialect
>= cxx11
22709 || INTEGRAL_OR_ENUMERATION_TYPE_P (type
));
22714 if (TREE_CODE (expression
) == TREE_LIST
)
22715 return any_value_dependent_elements_p (expression
);
22717 return value_dependent_expression_p (expression
);
22721 if (SIZEOF_EXPR_TYPE_P (expression
))
22722 return dependent_type_p (TREE_TYPE (TREE_OPERAND (expression
, 0)));
22726 /* A `sizeof' expression is value-dependent if the operand is
22727 type-dependent or is a pack expansion. */
22728 expression
= TREE_OPERAND (expression
, 0);
22729 if (PACK_EXPANSION_P (expression
))
22731 else if (TYPE_P (expression
))
22732 return dependent_type_p (expression
);
22733 return instantiation_dependent_uneval_expression_p (expression
);
22735 case AT_ENCODE_EXPR
:
22736 /* An 'encode' expression is value-dependent if the operand is
22738 expression
= TREE_OPERAND (expression
, 0);
22739 return dependent_type_p (expression
);
22741 case NOEXCEPT_EXPR
:
22742 expression
= TREE_OPERAND (expression
, 0);
22743 return instantiation_dependent_uneval_expression_p (expression
);
22746 /* All instantiation-dependent expressions should also be considered
22747 value-dependent. */
22748 return instantiation_dependent_scope_ref_p (expression
);
22750 case COMPONENT_REF
:
22751 return (value_dependent_expression_p (TREE_OPERAND (expression
, 0))
22752 || value_dependent_expression_p (TREE_OPERAND (expression
, 1)));
22754 case NONTYPE_ARGUMENT_PACK
:
22755 /* A NONTYPE_ARGUMENT_PACK is value-dependent if any packed argument
22756 is value-dependent. */
22758 tree values
= ARGUMENT_PACK_ARGS (expression
);
22759 int i
, len
= TREE_VEC_LENGTH (values
);
22761 for (i
= 0; i
< len
; ++i
)
22762 if (value_dependent_expression_p (TREE_VEC_ELT (values
, i
)))
22770 tree type2
= TRAIT_EXPR_TYPE2 (expression
);
22771 return (dependent_type_p (TRAIT_EXPR_TYPE1 (expression
))
22772 || (type2
? dependent_type_p (type2
) : false));
22776 return ((value_dependent_expression_p (TREE_OPERAND (expression
, 0)))
22777 || (value_dependent_expression_p (TREE_OPERAND (expression
, 2))));
22780 return ((value_dependent_expression_p (TREE_OPERAND (expression
, 0)))
22781 || (value_dependent_expression_p (TREE_OPERAND (expression
, 1))));
22785 tree op
= TREE_OPERAND (expression
, 0);
22786 return (value_dependent_expression_p (op
)
22787 || has_value_dependent_address (op
));
22790 case REQUIRES_EXPR
:
22791 /* Treat all requires-expressions as value-dependent so
22792 we don't try to fold them. */
22796 return dependent_type_p (TREE_OPERAND (expression
, 0));
22800 tree fn
= get_callee_fndecl (expression
);
22802 if (!fn
&& value_dependent_expression_p (CALL_EXPR_FN (expression
)))
22804 nargs
= call_expr_nargs (expression
);
22805 for (i
= 0; i
< nargs
; ++i
)
22807 tree op
= CALL_EXPR_ARG (expression
, i
);
22808 /* In a call to a constexpr member function, look through the
22809 implicit ADDR_EXPR on the object argument so that it doesn't
22810 cause the call to be considered value-dependent. We also
22811 look through it in potential_constant_expression. */
22812 if (i
== 0 && fn
&& DECL_DECLARED_CONSTEXPR_P (fn
)
22813 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn
)
22814 && TREE_CODE (op
) == ADDR_EXPR
)
22815 op
= TREE_OPERAND (op
, 0);
22816 if (value_dependent_expression_p (op
))
22822 case TEMPLATE_ID_EXPR
:
22823 /* If a TEMPLATE_ID_EXPR involves a dependent name, it will be
22825 return type_dependent_expression_p (expression
)
22826 || variable_concept_p (TREE_OPERAND (expression
, 0));
22832 if (dependent_type_p (TREE_TYPE (expression
)))
22834 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression
), ix
, val
)
22835 if (value_dependent_expression_p (val
))
22841 /* Treat a GNU statement expression as dependent to avoid crashing
22842 under instantiate_non_dependent_expr; it can't be constant. */
22846 /* A constant expression is value-dependent if any subexpression is
22847 value-dependent. */
22848 switch (TREE_CODE_CLASS (TREE_CODE (expression
)))
22850 case tcc_reference
:
22852 case tcc_comparison
:
22854 case tcc_expression
:
22857 int i
, len
= cp_tree_operand_length (expression
);
22859 for (i
= 0; i
< len
; i
++)
22861 tree t
= TREE_OPERAND (expression
, i
);
22863 /* In some cases, some of the operands may be missing.l
22864 (For example, in the case of PREDECREMENT_EXPR, the
22865 amount to increment by may be missing.) That doesn't
22866 make the expression dependent. */
22867 if (t
&& value_dependent_expression_p (t
))
22878 /* The expression is not value-dependent. */
22882 /* Returns TRUE if the EXPRESSION is type-dependent, in the sense of
22883 [temp.dep.expr]. Note that an expression with no type is
22884 considered dependent. Other parts of the compiler arrange for an
22885 expression with type-dependent subexpressions to have no type, so
22886 this function doesn't have to be fully recursive. */
22889 type_dependent_expression_p (tree expression
)
22891 if (!processing_template_decl
)
22894 if (expression
== NULL_TREE
|| expression
== error_mark_node
)
22897 /* An unresolved name is always dependent. */
22898 if (identifier_p (expression
)
22899 || TREE_CODE (expression
) == USING_DECL
22900 || TREE_CODE (expression
) == WILDCARD_DECL
)
22903 /* A fold expression is type-dependent. */
22904 if (TREE_CODE (expression
) == UNARY_LEFT_FOLD_EXPR
22905 || TREE_CODE (expression
) == UNARY_RIGHT_FOLD_EXPR
22906 || TREE_CODE (expression
) == BINARY_LEFT_FOLD_EXPR
22907 || TREE_CODE (expression
) == BINARY_RIGHT_FOLD_EXPR
)
22910 /* Some expression forms are never type-dependent. */
22911 if (TREE_CODE (expression
) == PSEUDO_DTOR_EXPR
22912 || TREE_CODE (expression
) == SIZEOF_EXPR
22913 || TREE_CODE (expression
) == ALIGNOF_EXPR
22914 || TREE_CODE (expression
) == AT_ENCODE_EXPR
22915 || TREE_CODE (expression
) == NOEXCEPT_EXPR
22916 || TREE_CODE (expression
) == TRAIT_EXPR
22917 || TREE_CODE (expression
) == TYPEID_EXPR
22918 || TREE_CODE (expression
) == DELETE_EXPR
22919 || TREE_CODE (expression
) == VEC_DELETE_EXPR
22920 || TREE_CODE (expression
) == THROW_EXPR
22921 || TREE_CODE (expression
) == REQUIRES_EXPR
)
22924 /* The types of these expressions depends only on the type to which
22925 the cast occurs. */
22926 if (TREE_CODE (expression
) == DYNAMIC_CAST_EXPR
22927 || TREE_CODE (expression
) == STATIC_CAST_EXPR
22928 || TREE_CODE (expression
) == CONST_CAST_EXPR
22929 || TREE_CODE (expression
) == REINTERPRET_CAST_EXPR
22930 || TREE_CODE (expression
) == IMPLICIT_CONV_EXPR
22931 || TREE_CODE (expression
) == CAST_EXPR
)
22932 return dependent_type_p (TREE_TYPE (expression
));
22934 /* The types of these expressions depends only on the type created
22935 by the expression. */
22936 if (TREE_CODE (expression
) == NEW_EXPR
22937 || TREE_CODE (expression
) == VEC_NEW_EXPR
)
22939 /* For NEW_EXPR tree nodes created inside a template, either
22940 the object type itself or a TREE_LIST may appear as the
22942 tree type
= TREE_OPERAND (expression
, 1);
22943 if (TREE_CODE (type
) == TREE_LIST
)
22944 /* This is an array type. We need to check array dimensions
22946 return dependent_type_p (TREE_VALUE (TREE_PURPOSE (type
)))
22947 || value_dependent_expression_p
22948 (TREE_OPERAND (TREE_VALUE (type
), 1));
22950 return dependent_type_p (type
);
22953 if (TREE_CODE (expression
) == SCOPE_REF
)
22955 tree scope
= TREE_OPERAND (expression
, 0);
22956 tree name
= TREE_OPERAND (expression
, 1);
22958 /* 14.6.2.2 [temp.dep.expr]: An id-expression is type-dependent if it
22959 contains an identifier associated by name lookup with one or more
22960 declarations declared with a dependent type, or...a
22961 nested-name-specifier or qualified-id that names a member of an
22962 unknown specialization. */
22963 return (type_dependent_expression_p (name
)
22964 || dependent_scope_p (scope
));
22967 /* A function template specialization is type-dependent if it has any
22968 dependent template arguments. */
22969 if (TREE_CODE (expression
) == FUNCTION_DECL
22970 && DECL_LANG_SPECIFIC (expression
)
22971 && DECL_TEMPLATE_INFO (expression
))
22972 return any_dependent_template_arguments_p (DECL_TI_ARGS (expression
));
22974 if (TREE_CODE (expression
) == TEMPLATE_DECL
22975 && !DECL_TEMPLATE_TEMPLATE_PARM_P (expression
))
22978 if (TREE_CODE (expression
) == STMT_EXPR
)
22979 expression
= stmt_expr_value_expr (expression
);
22981 if (BRACE_ENCLOSED_INITIALIZER_P (expression
))
22986 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression
), i
, elt
)
22988 if (type_dependent_expression_p (elt
))
22994 /* A static data member of the current instantiation with incomplete
22995 array type is type-dependent, as the definition and specializations
22996 can have different bounds. */
22997 if (VAR_P (expression
)
22998 && DECL_CLASS_SCOPE_P (expression
)
22999 && dependent_type_p (DECL_CONTEXT (expression
))
23000 && VAR_HAD_UNKNOWN_BOUND (expression
))
23003 /* An array of unknown bound depending on a variadic parameter, eg:
23005 template<typename... Args>
23006 void foo (Args... args)
23008 int arr[] = { args... };
23011 template<int... vals>
23014 int arr[] = { vals... };
23017 If the array has no length and has an initializer, it must be that
23018 we couldn't determine its length in cp_complete_array_type because
23019 it is dependent. */
23020 if (VAR_P (expression
)
23021 && TREE_CODE (TREE_TYPE (expression
)) == ARRAY_TYPE
23022 && !TYPE_DOMAIN (TREE_TYPE (expression
))
23023 && DECL_INITIAL (expression
))
23026 /* A variable template specialization is type-dependent if it has any
23027 dependent template arguments. */
23028 if (VAR_P (expression
)
23029 && DECL_LANG_SPECIFIC (expression
)
23030 && DECL_TEMPLATE_INFO (expression
)
23031 && variable_template_p (DECL_TI_TEMPLATE (expression
)))
23032 return any_dependent_template_arguments_p (DECL_TI_ARGS (expression
));
23034 /* Always dependent, on the number of arguments if nothing else. */
23035 if (TREE_CODE (expression
) == EXPR_PACK_EXPANSION
)
23038 if (TREE_TYPE (expression
) == unknown_type_node
)
23040 if (TREE_CODE (expression
) == ADDR_EXPR
)
23041 return type_dependent_expression_p (TREE_OPERAND (expression
, 0));
23042 if (TREE_CODE (expression
) == COMPONENT_REF
23043 || TREE_CODE (expression
) == OFFSET_REF
)
23045 if (type_dependent_expression_p (TREE_OPERAND (expression
, 0)))
23047 expression
= TREE_OPERAND (expression
, 1);
23048 if (identifier_p (expression
))
23051 /* SCOPE_REF with non-null TREE_TYPE is always non-dependent. */
23052 if (TREE_CODE (expression
) == SCOPE_REF
)
23055 if (BASELINK_P (expression
))
23057 if (BASELINK_OPTYPE (expression
)
23058 && dependent_type_p (BASELINK_OPTYPE (expression
)))
23060 expression
= BASELINK_FUNCTIONS (expression
);
23063 if (TREE_CODE (expression
) == TEMPLATE_ID_EXPR
)
23065 if (any_dependent_template_arguments_p
23066 (TREE_OPERAND (expression
, 1)))
23068 expression
= TREE_OPERAND (expression
, 0);
23069 if (identifier_p (expression
))
23073 gcc_assert (TREE_CODE (expression
) == OVERLOAD
23074 || TREE_CODE (expression
) == FUNCTION_DECL
);
23078 if (type_dependent_expression_p (OVL_CURRENT (expression
)))
23080 expression
= OVL_NEXT (expression
);
23085 gcc_assert (TREE_CODE (expression
) != TYPE_DECL
);
23087 return (dependent_type_p (TREE_TYPE (expression
)));
23090 /* walk_tree callback function for instantiation_dependent_expression_p,
23091 below. Returns non-zero if a dependent subexpression is found. */
23094 instantiation_dependent_r (tree
*tp
, int *walk_subtrees
,
23099 /* We don't have to worry about decltype currently because decltype
23100 of an instantiation-dependent expr is a dependent type. This
23101 might change depending on the resolution of DR 1172. */
23102 *walk_subtrees
= false;
23105 enum tree_code code
= TREE_CODE (*tp
);
23108 /* Don't treat an argument list as dependent just because it has no
23114 case TEMPLATE_PARM_INDEX
:
23117 /* Handle expressions with type operands. */
23121 case AT_ENCODE_EXPR
:
23123 tree op
= TREE_OPERAND (*tp
, 0);
23124 if (code
== SIZEOF_EXPR
&& SIZEOF_EXPR_TYPE_P (*tp
))
23125 op
= TREE_TYPE (op
);
23128 if (dependent_type_p (op
))
23132 *walk_subtrees
= false;
23139 case COMPONENT_REF
:
23140 if (identifier_p (TREE_OPERAND (*tp
, 1)))
23141 /* In a template, finish_class_member_access_expr creates a
23142 COMPONENT_REF with an IDENTIFIER_NODE for op1 even if it isn't
23143 type-dependent, so that we can check access control at
23144 instantiation time (PR 42277). See also Core issue 1273. */
23149 if (instantiation_dependent_scope_ref_p (*tp
))
23154 /* Treat statement-expressions as dependent. */
23158 /* Treat requires-expressions as dependent. */
23159 case REQUIRES_EXPR
:
23163 /* Treat calls to function concepts as dependent. */
23164 if (function_concept_check_p (*tp
))
23168 case TEMPLATE_ID_EXPR
:
23169 /* And variable concepts. */
23170 if (variable_concept_p (TREE_OPERAND (*tp
, 0)))
23178 if (type_dependent_expression_p (*tp
))
23184 /* Returns TRUE if the EXPRESSION is instantiation-dependent, in the
23185 sense defined by the ABI:
23187 "An expression is instantiation-dependent if it is type-dependent
23188 or value-dependent, or it has a subexpression that is type-dependent
23189 or value-dependent."
23191 Except don't actually check value-dependence for unevaluated expressions,
23192 because in sizeof(i) we don't care about the value of i. Checking
23193 type-dependence will in turn check value-dependence of array bounds/template
23194 arguments as needed. */
23197 instantiation_dependent_uneval_expression_p (tree expression
)
23201 if (!processing_template_decl
)
23204 if (expression
== error_mark_node
)
23207 result
= cp_walk_tree_without_duplicates (&expression
,
23208 instantiation_dependent_r
, NULL
);
23209 return result
!= NULL_TREE
;
23212 /* As above, but also check value-dependence of the expression as a whole. */
23215 instantiation_dependent_expression_p (tree expression
)
23217 return (instantiation_dependent_uneval_expression_p (expression
)
23218 || value_dependent_expression_p (expression
));
23221 /* Like type_dependent_expression_p, but it also works while not processing
23222 a template definition, i.e. during substitution or mangling. */
23225 type_dependent_expression_p_push (tree expr
)
23228 ++processing_template_decl
;
23229 b
= type_dependent_expression_p (expr
);
23230 --processing_template_decl
;
23234 /* Returns TRUE if ARGS contains a type-dependent expression. */
23237 any_type_dependent_arguments_p (const vec
<tree
, va_gc
> *args
)
23242 FOR_EACH_VEC_SAFE_ELT (args
, i
, arg
)
23244 if (type_dependent_expression_p (arg
))
23250 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
23251 expressions) contains any type-dependent expressions. */
23254 any_type_dependent_elements_p (const_tree list
)
23256 for (; list
; list
= TREE_CHAIN (list
))
23257 if (type_dependent_expression_p (TREE_VALUE (list
)))
23263 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
23264 expressions) contains any value-dependent expressions. */
23267 any_value_dependent_elements_p (const_tree list
)
23269 for (; list
; list
= TREE_CHAIN (list
))
23270 if (value_dependent_expression_p (TREE_VALUE (list
)))
23276 /* Returns TRUE if the ARG (a template argument) is dependent. */
23279 dependent_template_arg_p (tree arg
)
23281 if (!processing_template_decl
)
23284 /* Assume a template argument that was wrongly written by the user
23285 is dependent. This is consistent with what
23286 any_dependent_template_arguments_p [that calls this function]
23288 if (!arg
|| arg
== error_mark_node
)
23291 if (TREE_CODE (arg
) == ARGUMENT_PACK_SELECT
)
23292 arg
= ARGUMENT_PACK_SELECT_ARG (arg
);
23294 if (TREE_CODE (arg
) == TEMPLATE_DECL
23295 || TREE_CODE (arg
) == TEMPLATE_TEMPLATE_PARM
)
23296 return dependent_template_p (arg
);
23297 else if (ARGUMENT_PACK_P (arg
))
23299 tree args
= ARGUMENT_PACK_ARGS (arg
);
23300 int i
, len
= TREE_VEC_LENGTH (args
);
23301 for (i
= 0; i
< len
; ++i
)
23303 if (dependent_template_arg_p (TREE_VEC_ELT (args
, i
)))
23309 else if (TYPE_P (arg
))
23310 return dependent_type_p (arg
);
23312 return (type_dependent_expression_p (arg
)
23313 || value_dependent_expression_p (arg
));
23316 /* Returns true if ARGS (a collection of template arguments) contains
23317 any types that require structural equality testing. */
23320 any_template_arguments_need_structural_equality_p (tree args
)
23327 if (args
== error_mark_node
)
23330 for (i
= 0; i
< TMPL_ARGS_DEPTH (args
); ++i
)
23332 tree level
= TMPL_ARGS_LEVEL (args
, i
+ 1);
23333 for (j
= 0; j
< TREE_VEC_LENGTH (level
); ++j
)
23335 tree arg
= TREE_VEC_ELT (level
, j
);
23336 tree packed_args
= NULL_TREE
;
23339 if (ARGUMENT_PACK_P (arg
))
23341 /* Look inside the argument pack. */
23342 packed_args
= ARGUMENT_PACK_ARGS (arg
);
23343 len
= TREE_VEC_LENGTH (packed_args
);
23346 for (k
= 0; k
< len
; ++k
)
23349 arg
= TREE_VEC_ELT (packed_args
, k
);
23351 if (error_operand_p (arg
))
23353 else if (TREE_CODE (arg
) == TEMPLATE_DECL
)
23355 else if (TYPE_P (arg
) && TYPE_STRUCTURAL_EQUALITY_P (arg
))
23357 else if (!TYPE_P (arg
) && TREE_TYPE (arg
)
23358 && TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (arg
)))
23367 /* Returns true if ARGS (a collection of template arguments) contains
23368 any dependent arguments. */
23371 any_dependent_template_arguments_p (const_tree args
)
23378 if (args
== error_mark_node
)
23381 for (i
= 0; i
< TMPL_ARGS_DEPTH (args
); ++i
)
23383 const_tree level
= TMPL_ARGS_LEVEL (args
, i
+ 1);
23384 for (j
= 0; j
< TREE_VEC_LENGTH (level
); ++j
)
23385 if (dependent_template_arg_p (TREE_VEC_ELT (level
, j
)))
23392 /* Returns TRUE if the template TMPL is dependent. */
23395 dependent_template_p (tree tmpl
)
23397 if (TREE_CODE (tmpl
) == OVERLOAD
)
23401 if (dependent_template_p (OVL_CURRENT (tmpl
)))
23403 tmpl
= OVL_NEXT (tmpl
);
23408 /* Template template parameters are dependent. */
23409 if (DECL_TEMPLATE_TEMPLATE_PARM_P (tmpl
)
23410 || TREE_CODE (tmpl
) == TEMPLATE_TEMPLATE_PARM
)
23412 /* So are names that have not been looked up. */
23413 if (TREE_CODE (tmpl
) == SCOPE_REF
|| identifier_p (tmpl
))
23415 /* So are member templates of dependent classes. */
23416 if (TYPE_P (CP_DECL_CONTEXT (tmpl
)))
23417 return dependent_type_p (DECL_CONTEXT (tmpl
));
23421 /* Returns TRUE if the specialization TMPL<ARGS> is dependent. */
23424 dependent_template_id_p (tree tmpl
, tree args
)
23426 return (dependent_template_p (tmpl
)
23427 || any_dependent_template_arguments_p (args
));
23430 /* Returns TRUE if OMP_FOR with DECLV, INITV, CONDV and INCRV vectors
23434 dependent_omp_for_p (tree declv
, tree initv
, tree condv
, tree incrv
)
23438 if (!processing_template_decl
)
23441 for (i
= 0; i
< TREE_VEC_LENGTH (declv
); i
++)
23443 tree decl
= TREE_VEC_ELT (declv
, i
);
23444 tree init
= TREE_VEC_ELT (initv
, i
);
23445 tree cond
= TREE_VEC_ELT (condv
, i
);
23446 tree incr
= TREE_VEC_ELT (incrv
, i
);
23448 if (type_dependent_expression_p (decl
)
23449 || TREE_CODE (decl
) == SCOPE_REF
)
23452 if (init
&& type_dependent_expression_p (init
))
23455 if (type_dependent_expression_p (cond
))
23458 if (COMPARISON_CLASS_P (cond
)
23459 && (type_dependent_expression_p (TREE_OPERAND (cond
, 0))
23460 || type_dependent_expression_p (TREE_OPERAND (cond
, 1))))
23463 if (TREE_CODE (incr
) == MODOP_EXPR
)
23465 if (type_dependent_expression_p (TREE_OPERAND (incr
, 0))
23466 || type_dependent_expression_p (TREE_OPERAND (incr
, 2)))
23469 else if (type_dependent_expression_p (incr
))
23471 else if (TREE_CODE (incr
) == MODIFY_EXPR
)
23473 if (type_dependent_expression_p (TREE_OPERAND (incr
, 0)))
23475 else if (BINARY_CLASS_P (TREE_OPERAND (incr
, 1)))
23477 tree t
= TREE_OPERAND (incr
, 1);
23478 if (type_dependent_expression_p (TREE_OPERAND (t
, 0))
23479 || type_dependent_expression_p (TREE_OPERAND (t
, 1)))
23488 /* TYPE is a TYPENAME_TYPE. Returns the ordinary TYPE to which the
23489 TYPENAME_TYPE corresponds. Returns the original TYPENAME_TYPE if
23490 no such TYPE can be found. Note that this function peers inside
23491 uninstantiated templates and therefore should be used only in
23492 extremely limited situations. ONLY_CURRENT_P restricts this
23493 peering to the currently open classes hierarchy (which is required
23494 when comparing types). */
23497 resolve_typename_type (tree type
, bool only_current_p
)
23506 gcc_assert (TREE_CODE (type
) == TYPENAME_TYPE
);
23508 scope
= TYPE_CONTEXT (type
);
23509 /* Usually the non-qualified identifier of a TYPENAME_TYPE is
23510 TYPE_IDENTIFIER (type). But when 'type' is a typedef variant of
23511 a TYPENAME_TYPE node, then TYPE_NAME (type) is set to the TYPE_DECL representing
23512 the typedef. In that case TYPE_IDENTIFIER (type) is not the non-qualified
23513 identifier of the TYPENAME_TYPE anymore.
23514 So by getting the TYPE_IDENTIFIER of the _main declaration_ of the
23515 TYPENAME_TYPE instead, we avoid messing up with a possible
23516 typedef variant case. */
23517 name
= TYPE_IDENTIFIER (TYPE_MAIN_VARIANT (type
));
23519 /* If the SCOPE is itself a TYPENAME_TYPE, then we need to resolve
23520 it first before we can figure out what NAME refers to. */
23521 if (TREE_CODE (scope
) == TYPENAME_TYPE
)
23523 if (TYPENAME_IS_RESOLVING_P (scope
))
23524 /* Given a class template A with a dependent base with nested type C,
23525 typedef typename A::C::C C will land us here, as trying to resolve
23526 the initial A::C leads to the local C typedef, which leads back to
23527 A::C::C. So we break the recursion now. */
23530 scope
= resolve_typename_type (scope
, only_current_p
);
23532 /* If we don't know what SCOPE refers to, then we cannot resolve the
23534 if (TREE_CODE (scope
) == TYPENAME_TYPE
)
23536 /* If the SCOPE is a template type parameter, we have no way of
23537 resolving the name. */
23538 if (TREE_CODE (scope
) == TEMPLATE_TYPE_PARM
)
23540 /* If the SCOPE is not the current instantiation, there's no reason
23541 to look inside it. */
23542 if (only_current_p
&& !currently_open_class (scope
))
23544 /* If this is a typedef, we don't want to look inside (c++/11987). */
23545 if (typedef_variant_p (type
))
23547 /* If SCOPE isn't the template itself, it will not have a valid
23548 TYPE_FIELDS list. */
23549 if (CLASS_TYPE_P (scope
)
23550 && same_type_p (scope
, CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope
)))
23551 /* scope is either the template itself or a compatible instantiation
23552 like X<T>, so look up the name in the original template. */
23553 scope
= CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope
);
23555 /* scope is a partial instantiation, so we can't do the lookup or we
23556 will lose the template arguments. */
23558 /* Enter the SCOPE so that name lookup will be resolved as if we
23559 were in the class definition. In particular, SCOPE will no
23560 longer be considered a dependent type. */
23561 pushed_scope
= push_scope (scope
);
23562 /* Look up the declaration. */
23563 decl
= lookup_member (scope
, name
, /*protect=*/0, /*want_type=*/true,
23564 tf_warning_or_error
);
23566 result
= NULL_TREE
;
23568 /* For a TYPENAME_TYPE like "typename X::template Y<T>", we want to
23569 find a TEMPLATE_DECL. Otherwise, we want to find a TYPE_DECL. */
23572 else if (identifier_p (TYPENAME_TYPE_FULLNAME (type
))
23573 && TREE_CODE (decl
) == TYPE_DECL
)
23575 result
= TREE_TYPE (decl
);
23576 if (result
== error_mark_node
)
23577 result
= NULL_TREE
;
23579 else if (TREE_CODE (TYPENAME_TYPE_FULLNAME (type
)) == TEMPLATE_ID_EXPR
23580 && DECL_CLASS_TEMPLATE_P (decl
))
23584 /* Obtain the template and the arguments. */
23585 tmpl
= TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type
), 0);
23586 args
= TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type
), 1);
23587 /* Instantiate the template. */
23588 result
= lookup_template_class (tmpl
, args
, NULL_TREE
, NULL_TREE
,
23589 /*entering_scope=*/0,
23590 tf_error
| tf_user
);
23591 if (result
== error_mark_node
)
23592 result
= NULL_TREE
;
23595 /* Leave the SCOPE. */
23597 pop_scope (pushed_scope
);
23599 /* If we failed to resolve it, return the original typename. */
23603 /* If lookup found a typename type, resolve that too. */
23604 if (TREE_CODE (result
) == TYPENAME_TYPE
&& !TYPENAME_IS_RESOLVING_P (result
))
23606 /* Ill-formed programs can cause infinite recursion here, so we
23607 must catch that. */
23608 TYPENAME_IS_RESOLVING_P (result
) = 1;
23609 result
= resolve_typename_type (result
, only_current_p
);
23610 TYPENAME_IS_RESOLVING_P (result
) = 0;
23613 /* Qualify the resulting type. */
23614 quals
= cp_type_quals (type
);
23616 result
= cp_build_qualified_type (result
, cp_type_quals (result
) | quals
);
23621 /* EXPR is an expression which is not type-dependent. Return a proxy
23622 for EXPR that can be used to compute the types of larger
23623 expressions containing EXPR. */
23626 build_non_dependent_expr (tree expr
)
23630 /* When checking, try to get a constant value for all non-dependent
23631 expressions in order to expose bugs in *_dependent_expression_p
23632 and constexpr. This can affect code generation, see PR70704, so
23633 only do this for -fchecking=2. */
23634 if (flag_checking
> 1
23635 && cxx_dialect
>= cxx11
23636 /* Don't do this during nsdmi parsing as it can lead to
23637 unexpected recursive instantiations. */
23638 && !parsing_nsdmi ())
23639 fold_non_dependent_expr (expr
);
23641 /* Preserve OVERLOADs; the functions must be available to resolve
23644 if (TREE_CODE (inner_expr
) == STMT_EXPR
)
23645 inner_expr
= stmt_expr_value_expr (inner_expr
);
23646 if (TREE_CODE (inner_expr
) == ADDR_EXPR
)
23647 inner_expr
= TREE_OPERAND (inner_expr
, 0);
23648 if (TREE_CODE (inner_expr
) == COMPONENT_REF
)
23649 inner_expr
= TREE_OPERAND (inner_expr
, 1);
23650 if (is_overloaded_fn (inner_expr
)
23651 || TREE_CODE (inner_expr
) == OFFSET_REF
)
23653 /* There is no need to return a proxy for a variable. */
23656 /* Preserve string constants; conversions from string constants to
23657 "char *" are allowed, even though normally a "const char *"
23658 cannot be used to initialize a "char *". */
23659 if (TREE_CODE (expr
) == STRING_CST
)
23661 /* Preserve void and arithmetic constants, as an optimization -- there is no
23662 reason to create a new node. */
23663 if (TREE_CODE (expr
) == VOID_CST
23664 || TREE_CODE (expr
) == INTEGER_CST
23665 || TREE_CODE (expr
) == REAL_CST
)
23667 /* Preserve THROW_EXPRs -- all throw-expressions have type "void".
23668 There is at least one place where we want to know that a
23669 particular expression is a throw-expression: when checking a ?:
23670 expression, there are special rules if the second or third
23671 argument is a throw-expression. */
23672 if (TREE_CODE (expr
) == THROW_EXPR
)
23675 /* Don't wrap an initializer list, we need to be able to look inside. */
23676 if (BRACE_ENCLOSED_INITIALIZER_P (expr
))
23679 /* Don't wrap a dummy object, we need to be able to test for it. */
23680 if (is_dummy_object (expr
))
23683 if (TREE_CODE (expr
) == COND_EXPR
)
23684 return build3 (COND_EXPR
,
23686 TREE_OPERAND (expr
, 0),
23687 (TREE_OPERAND (expr
, 1)
23688 ? build_non_dependent_expr (TREE_OPERAND (expr
, 1))
23689 : build_non_dependent_expr (TREE_OPERAND (expr
, 0))),
23690 build_non_dependent_expr (TREE_OPERAND (expr
, 2)));
23691 if (TREE_CODE (expr
) == COMPOUND_EXPR
23692 && !COMPOUND_EXPR_OVERLOADED (expr
))
23693 return build2 (COMPOUND_EXPR
,
23695 TREE_OPERAND (expr
, 0),
23696 build_non_dependent_expr (TREE_OPERAND (expr
, 1)));
23698 /* If the type is unknown, it can't really be non-dependent */
23699 gcc_assert (TREE_TYPE (expr
) != unknown_type_node
);
23701 /* Otherwise, build a NON_DEPENDENT_EXPR. */
23702 return build1 (NON_DEPENDENT_EXPR
, TREE_TYPE (expr
), expr
);
23705 /* ARGS is a vector of expressions as arguments to a function call.
23706 Replace the arguments with equivalent non-dependent expressions.
23707 This modifies ARGS in place. */
23710 make_args_non_dependent (vec
<tree
, va_gc
> *args
)
23715 FOR_EACH_VEC_SAFE_ELT (args
, ix
, arg
)
23717 tree newarg
= build_non_dependent_expr (arg
);
23719 (*args
)[ix
] = newarg
;
23723 /* Returns a type which represents 'auto' or 'decltype(auto)'. We use a
23724 TEMPLATE_TYPE_PARM with a level one deeper than the actual template
23725 parms. If set_canonical is true, we set TYPE_CANONICAL on it. */
23728 make_auto_1 (tree name
, bool set_canonical
)
23730 tree au
= cxx_make_type (TEMPLATE_TYPE_PARM
);
23731 TYPE_NAME (au
) = build_decl (input_location
,
23732 TYPE_DECL
, name
, au
);
23733 TYPE_STUB_DECL (au
) = TYPE_NAME (au
);
23734 TEMPLATE_TYPE_PARM_INDEX (au
) = build_template_parm_index
23735 (0, processing_template_decl
+ 1, processing_template_decl
+ 1,
23736 TYPE_NAME (au
), NULL_TREE
);
23738 TYPE_CANONICAL (au
) = canonical_type_parameter (au
);
23739 DECL_ARTIFICIAL (TYPE_NAME (au
)) = 1;
23740 SET_DECL_TEMPLATE_PARM_P (TYPE_NAME (au
));
23746 make_decltype_auto (void)
23748 return make_auto_1 (get_identifier ("decltype(auto)"), true);
23754 return make_auto_1 (get_identifier ("auto"), true);
23757 /* Make a "constrained auto" type-specifier. This is an
23758 auto type with constraints that must be associated after
23759 deduction. The constraint is formed from the given
23760 CONC and its optional sequence of arguments, which are
23761 non-null if written as partial-concept-id. */
23764 make_constrained_auto (tree con
, tree args
)
23766 tree type
= make_auto_1 (get_identifier ("auto"), false);
23768 /* Build the constraint. */
23769 tree tmpl
= DECL_TI_TEMPLATE (con
);
23772 expr
= build_concept_check (tmpl
, type
, args
);
23774 expr
= build_concept_check (build_overload (tmpl
, NULL_TREE
), type
, args
);
23776 tree constr
= make_predicate_constraint (expr
);
23777 PLACEHOLDER_TYPE_CONSTRAINTS (type
) = constr
;
23779 /* Our canonical type depends on the constraint. */
23780 TYPE_CANONICAL (type
) = canonical_type_parameter (type
);
23782 /* Attach the constraint to the type declaration. */
23783 tree decl
= TYPE_NAME (type
);
23787 /* Given type ARG, return std::initializer_list<ARG>. */
23792 tree std_init_list
= namespace_binding
23793 (get_identifier ("initializer_list"), std_node
);
23795 if (!std_init_list
|| !DECL_CLASS_TEMPLATE_P (std_init_list
))
23797 error ("deducing from brace-enclosed initializer list requires "
23798 "#include <initializer_list>");
23799 return error_mark_node
;
23801 argvec
= make_tree_vec (1);
23802 TREE_VEC_ELT (argvec
, 0) = arg
;
23803 return lookup_template_class (std_init_list
, argvec
, NULL_TREE
,
23804 NULL_TREE
, 0, tf_warning_or_error
);
23807 /* Replace auto in TYPE with std::initializer_list<auto>. */
23810 listify_autos (tree type
, tree auto_node
)
23812 tree init_auto
= listify (auto_node
);
23813 tree argvec
= make_tree_vec (1);
23814 TREE_VEC_ELT (argvec
, 0) = init_auto
;
23815 if (processing_template_decl
)
23816 argvec
= add_to_template_args (current_template_args (), argvec
);
23817 return tsubst (type
, argvec
, tf_warning_or_error
, NULL_TREE
);
23820 /* Hash traits for hashing possibly constrained 'auto'
23821 TEMPLATE_TYPE_PARMs for use by do_auto_deduction. */
23823 struct auto_hash
: default_hash_traits
<tree
>
23825 static inline hashval_t
hash (tree
);
23826 static inline bool equal (tree
, tree
);
23829 /* Hash the 'auto' T. */
23832 auto_hash::hash (tree t
)
23834 if (tree c
= PLACEHOLDER_TYPE_CONSTRAINTS (t
))
23835 /* Matching constrained-type-specifiers denote the same template
23836 parameter, so hash the constraint. */
23837 return hash_placeholder_constraint (c
);
23839 /* But unconstrained autos are all separate, so just hash the pointer. */
23840 return iterative_hash_object (t
, 0);
23843 /* Compare two 'auto's. */
23846 auto_hash::equal (tree t1
, tree t2
)
23851 tree c1
= PLACEHOLDER_TYPE_CONSTRAINTS (t1
);
23852 tree c2
= PLACEHOLDER_TYPE_CONSTRAINTS (t2
);
23854 /* Two unconstrained autos are distinct. */
23858 return equivalent_placeholder_constraints (c1
, c2
);
23861 /* for_each_template_parm callback for extract_autos: if t is a (possibly
23862 constrained) auto, add it to the vector. */
23865 extract_autos_r (tree t
, void *data
)
23867 hash_table
<auto_hash
> &hash
= *(hash_table
<auto_hash
>*)data
;
23868 if (is_auto_or_concept (t
))
23870 /* All the autos were built with index 0; fix that up now. */
23871 tree
*p
= hash
.find_slot (t
, INSERT
);
23874 /* If this is a repeated constrained-type-specifier, use the index we
23876 idx
= TEMPLATE_PARM_IDX (TEMPLATE_TYPE_PARM_INDEX (*p
));
23879 /* Otherwise this is new, so use the current count. */
23881 idx
= hash
.elements () - 1;
23883 TEMPLATE_PARM_IDX (TEMPLATE_TYPE_PARM_INDEX (t
)) = idx
;
23886 /* Always keep walking. */
23890 /* Return a TREE_VEC of the 'auto's used in type under the Concepts TS, which
23891 says they can appear anywhere in the type. */
23894 extract_autos (tree type
)
23896 hash_set
<tree
> visited
;
23897 hash_table
<auto_hash
> hash (2);
23899 for_each_template_parm (type
, extract_autos_r
, &hash
, &visited
, true);
23901 tree tree_vec
= make_tree_vec (hash
.elements());
23902 for (hash_table
<auto_hash
>::iterator iter
= hash
.begin();
23903 iter
!= hash
.end(); ++iter
)
23906 unsigned i
= TEMPLATE_PARM_IDX (TEMPLATE_TYPE_PARM_INDEX (elt
));
23907 TREE_VEC_ELT (tree_vec
, i
)
23908 = build_tree_list (NULL_TREE
, TYPE_NAME (elt
));
23914 /* Replace occurrences of 'auto' in TYPE with the appropriate type deduced
23915 from INIT. AUTO_NODE is the TEMPLATE_TYPE_PARM used for 'auto' in TYPE. */
23918 do_auto_deduction (tree type
, tree init
, tree auto_node
)
23920 return do_auto_deduction (type
, init
, auto_node
,
23921 tf_warning_or_error
,
23925 /* Replace occurrences of 'auto' in TYPE with the appropriate type deduced
23926 from INIT. AUTO_NODE is the TEMPLATE_TYPE_PARM used for 'auto' in TYPE.
23927 The CONTEXT determines the context in which auto deduction is performed
23928 and is used to control error diagnostics. */
23931 do_auto_deduction (tree type
, tree init
, tree auto_node
,
23932 tsubst_flags_t complain
, auto_deduction_context context
)
23936 if (init
== error_mark_node
)
23937 return error_mark_node
;
23939 if (type_dependent_expression_p (init
))
23940 /* Defining a subset of type-dependent expressions that we can deduce
23941 from ahead of time isn't worth the trouble. */
23944 /* [dcl.spec.auto]: Obtain P from T by replacing the occurrences of auto
23945 with either a new invented type template parameter U or, if the
23946 initializer is a braced-init-list (8.5.4), with
23947 std::initializer_list<U>. */
23948 if (BRACE_ENCLOSED_INITIALIZER_P (init
))
23950 if (!DIRECT_LIST_INIT_P (init
))
23951 type
= listify_autos (type
, auto_node
);
23952 else if (CONSTRUCTOR_NELTS (init
) == 1)
23953 init
= CONSTRUCTOR_ELT (init
, 0)->value
;
23956 if (complain
& tf_warning_or_error
)
23958 if (permerror (input_location
, "direct-list-initialization of "
23959 "%<auto%> requires exactly one element"))
23960 inform (input_location
,
23961 "for deduction to %<std::initializer_list%>, use copy-"
23962 "list-initialization (i.e. add %<=%> before the %<{%>)");
23964 type
= listify_autos (type
, auto_node
);
23968 if (type
== error_mark_node
)
23969 return error_mark_node
;
23971 init
= resolve_nondeduced_context (init
, complain
);
23973 if (AUTO_IS_DECLTYPE (auto_node
))
23975 bool id
= (DECL_P (init
) || (TREE_CODE (init
) == COMPONENT_REF
23976 && !REF_PARENTHESIZED_P (init
)));
23977 targs
= make_tree_vec (1);
23978 TREE_VEC_ELT (targs
, 0)
23979 = finish_decltype_type (init
, id
, tf_warning_or_error
);
23980 if (type
!= auto_node
)
23982 if (complain
& tf_error
)
23983 error ("%qT as type rather than plain %<decltype(auto)%>", type
);
23984 return error_mark_node
;
23989 tree parms
= build_tree_list (NULL_TREE
, type
);
23993 tparms
= extract_autos (type
);
23996 tparms
= make_tree_vec (1);
23997 TREE_VEC_ELT (tparms
, 0)
23998 = build_tree_list (NULL_TREE
, TYPE_NAME (auto_node
));
24001 targs
= make_tree_vec (TREE_VEC_LENGTH (tparms
));
24002 int val
= type_unification_real (tparms
, targs
, parms
, &init
, 1, 0,
24003 DEDUCE_CALL
, LOOKUP_NORMAL
,
24004 NULL
, /*explain_p=*/false);
24007 if (processing_template_decl
)
24008 /* Try again at instantiation time. */
24010 if (type
&& type
!= error_mark_node
24011 && (complain
& tf_error
))
24012 /* If type is error_mark_node a diagnostic must have been
24013 emitted by now. Also, having a mention to '<type error>'
24014 in the diagnostic is not really useful to the user. */
24016 if (cfun
&& auto_node
== current_function_auto_return_pattern
24017 && LAMBDA_FUNCTION_P (current_function_decl
))
24018 error ("unable to deduce lambda return type from %qE", init
);
24020 error ("unable to deduce %qT from %qE", type
, init
);
24021 type_unification_real (tparms
, targs
, parms
, &init
, 1, 0,
24022 DEDUCE_CALL
, LOOKUP_NORMAL
,
24023 NULL
, /*explain_p=*/true);
24025 return error_mark_node
;
24029 /* Check any placeholder constraints against the deduced type. */
24030 if (flag_concepts
&& !processing_template_decl
)
24031 if (tree constr
= PLACEHOLDER_TYPE_CONSTRAINTS (auto_node
))
24033 /* Use the deduced type to check the associated constraints. */
24034 if (!constraints_satisfied_p (constr
, targs
))
24036 if (complain
& tf_warning_or_error
)
24040 case adc_unspecified
:
24041 error("placeholder constraints not satisfied");
24043 case adc_variable_type
:
24044 error ("deduced initializer does not satisfy "
24045 "placeholder constraints");
24047 case adc_return_type
:
24048 error ("deduced return type does not satisfy "
24049 "placeholder constraints");
24051 case adc_requirement
:
24052 error ("deduced expression type does not saatisy "
24053 "placeholder constraints");
24056 diagnose_constraints (input_location
, constr
, targs
);
24058 return error_mark_node
;
24062 if (processing_template_decl
)
24063 targs
= add_to_template_args (current_template_args (), targs
);
24064 return tsubst (type
, targs
, complain
, NULL_TREE
);
24067 /* Substitutes LATE_RETURN_TYPE for 'auto' in TYPE and returns the
24071 splice_late_return_type (tree type
, tree late_return_type
)
24073 if (is_auto (type
))
24075 if (late_return_type
)
24076 return late_return_type
;
24078 tree idx
= get_template_parm_index (type
);
24079 if (TEMPLATE_PARM_LEVEL (idx
) <= processing_template_decl
)
24080 /* In an abbreviated function template we didn't know we were dealing
24081 with a function template when we saw the auto return type, so update
24082 it to have the correct level. */
24083 return make_auto_1 (TYPE_IDENTIFIER (type
), true);
24088 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto' or
24089 'decltype(auto)'. */
24092 is_auto (const_tree type
)
24094 if (TREE_CODE (type
) == TEMPLATE_TYPE_PARM
24095 && (TYPE_IDENTIFIER (type
) == get_identifier ("auto")
24096 || TYPE_IDENTIFIER (type
) == get_identifier ("decltype(auto)")))
24102 /* for_each_template_parm callback for type_uses_auto. */
24105 is_auto_r (tree tp
, void */
*data*/
)
24107 return is_auto_or_concept (tp
);
24110 /* Returns the TEMPLATE_TYPE_PARM in TYPE representing `auto' iff TYPE contains
24111 a use of `auto'. Returns NULL_TREE otherwise. */
24114 type_uses_auto (tree type
)
24116 if (type
== NULL_TREE
)
24118 else if (flag_concepts
)
24120 /* The Concepts TS allows multiple autos in one type-specifier; just
24121 return the first one we find, do_auto_deduction will collect all of
24123 if (uses_template_parms (type
))
24124 return for_each_template_parm (type
, is_auto_r
, /*data*/NULL
,
24125 /*visited*/NULL
, /*nondeduced*/true);
24130 return find_type_usage (type
, is_auto
);
24133 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto',
24134 'decltype(auto)' or a concept. */
24137 is_auto_or_concept (const_tree type
)
24139 return is_auto (type
); // or concept
24142 /* Returns the TEMPLATE_TYPE_PARM in TYPE representing a generic type (`auto' or
24143 a concept identifier) iff TYPE contains a use of a generic type. Returns
24144 NULL_TREE otherwise. */
24147 type_uses_auto_or_concept (tree type
)
24149 return find_type_usage (type
, is_auto_or_concept
);
24153 /* For a given template T, return the vector of typedefs referenced
24154 in T for which access check is needed at T instantiation time.
24155 T is either a FUNCTION_DECL or a RECORD_TYPE.
24156 Those typedefs were added to T by the function
24157 append_type_to_template_for_access_check. */
24159 vec
<qualified_typedef_usage_t
, va_gc
> *
24160 get_types_needing_access_check (tree t
)
24163 vec
<qualified_typedef_usage_t
, va_gc
> *result
= NULL
;
24165 if (!t
|| t
== error_mark_node
)
24168 if (!(ti
= get_template_info (t
)))
24171 if (CLASS_TYPE_P (t
)
24172 || TREE_CODE (t
) == FUNCTION_DECL
)
24174 if (!TI_TEMPLATE (ti
))
24177 result
= TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti
);
24183 /* Append the typedef TYPE_DECL used in template T to a list of typedefs
24184 tied to T. That list of typedefs will be access checked at
24185 T instantiation time.
24186 T is either a FUNCTION_DECL or a RECORD_TYPE.
24187 TYPE_DECL is a TYPE_DECL node representing a typedef.
24188 SCOPE is the scope through which TYPE_DECL is accessed.
24189 LOCATION is the location of the usage point of TYPE_DECL.
24191 This function is a subroutine of
24192 append_type_to_template_for_access_check. */
24195 append_type_to_template_for_access_check_1 (tree t
,
24198 location_t location
)
24200 qualified_typedef_usage_t typedef_usage
;
24203 if (!t
|| t
== error_mark_node
)
24206 gcc_assert ((TREE_CODE (t
) == FUNCTION_DECL
24207 || CLASS_TYPE_P (t
))
24209 && TREE_CODE (type_decl
) == TYPE_DECL
24212 if (!(ti
= get_template_info (t
)))
24215 gcc_assert (TI_TEMPLATE (ti
));
24217 typedef_usage
.typedef_decl
= type_decl
;
24218 typedef_usage
.context
= scope
;
24219 typedef_usage
.locus
= location
;
24221 vec_safe_push (TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti
), typedef_usage
);
24224 /* Append TYPE_DECL to the template TEMPL.
24225 TEMPL is either a class type, a FUNCTION_DECL or a a TEMPLATE_DECL.
24226 At TEMPL instanciation time, TYPE_DECL will be checked to see
24227 if it can be accessed through SCOPE.
24228 LOCATION is the location of the usage point of TYPE_DECL.
24230 e.g. consider the following code snippet:
24237 template<class U> struct S
24239 C::myint mi; // <-- usage point of the typedef C::myint
24244 At S<char> instantiation time, we need to check the access of C::myint
24245 In other words, we need to check the access of the myint typedef through
24246 the C scope. For that purpose, this function will add the myint typedef
24247 and the scope C through which its being accessed to a list of typedefs
24248 tied to the template S. That list will be walked at template instantiation
24249 time and access check performed on each typedefs it contains.
24250 Note that this particular code snippet should yield an error because
24251 myint is private to C. */
24254 append_type_to_template_for_access_check (tree templ
,
24257 location_t location
)
24259 qualified_typedef_usage_t
*iter
;
24262 gcc_assert (type_decl
&& (TREE_CODE (type_decl
) == TYPE_DECL
));
24264 /* Make sure we don't append the type to the template twice. */
24265 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (templ
), i
, iter
)
24266 if (iter
->typedef_decl
== type_decl
&& scope
== iter
->context
)
24269 append_type_to_template_for_access_check_1 (templ
, type_decl
,
24273 /* Convert the generic type parameters in PARM that match the types given in the
24274 range [START_IDX, END_IDX) from the current_template_parms into generic type
24278 convert_generic_types_to_packs (tree parm
, int start_idx
, int end_idx
)
24280 tree current
= current_template_parms
;
24281 int depth
= TMPL_PARMS_DEPTH (current
);
24282 current
= INNERMOST_TEMPLATE_PARMS (current
);
24283 tree replacement
= make_tree_vec (TREE_VEC_LENGTH (current
));
24285 for (int i
= 0; i
< start_idx
; ++i
)
24286 TREE_VEC_ELT (replacement
, i
)
24287 = TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (current
, i
)));
24289 for (int i
= start_idx
; i
< end_idx
; ++i
)
24291 /* Create a distinct parameter pack type from the current parm and add it
24292 to the replacement args to tsubst below into the generic function
24295 tree o
= TREE_TYPE (TREE_VALUE
24296 (TREE_VEC_ELT (current
, i
)));
24297 tree t
= copy_type (o
);
24298 TEMPLATE_TYPE_PARM_INDEX (t
)
24299 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (o
),
24301 TREE_TYPE (TEMPLATE_TYPE_DECL (t
)) = t
;
24302 TYPE_STUB_DECL (t
) = TYPE_NAME (t
) = TEMPLATE_TYPE_DECL (t
);
24303 TYPE_MAIN_VARIANT (t
) = t
;
24304 TEMPLATE_TYPE_PARAMETER_PACK (t
) = true;
24305 TYPE_CANONICAL (t
) = canonical_type_parameter (t
);
24306 TREE_VEC_ELT (replacement
, i
) = t
;
24307 TREE_VALUE (TREE_VEC_ELT (current
, i
)) = TREE_CHAIN (t
);
24310 for (int i
= end_idx
, e
= TREE_VEC_LENGTH (current
); i
< e
; ++i
)
24311 TREE_VEC_ELT (replacement
, i
)
24312 = TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (current
, i
)));
24314 /* If there are more levels then build up the replacement with the outer
24317 replacement
= add_to_template_args (template_parms_to_args
24318 (TREE_CHAIN (current_template_parms
)),
24321 return tsubst (parm
, replacement
, tf_none
, NULL_TREE
);
24324 /* Entries in the decl_constraint hash table. */
24325 struct GTY((for_user
)) constr_entry
24331 /* Hashing function and equality for constraint entries. */
24332 struct constr_hasher
: ggc_ptr_hash
<constr_entry
>
24334 static hashval_t
hash (constr_entry
*e
)
24336 return (hashval_t
)DECL_UID (e
->decl
);
24339 static bool equal (constr_entry
*e1
, constr_entry
*e2
)
24341 return e1
->decl
== e2
->decl
;
24345 /* A mapping from declarations to constraint information. Note that
24346 both templates and their underlying declarations are mapped to the
24347 same constraint information.
24349 FIXME: This is defined in pt.c because garbage collection
24350 code is not being generated for constraint.cc. */
24352 static GTY (()) hash_table
<constr_hasher
> *decl_constraints
;
24354 /* Returns true iff cinfo contains a valid set of constraints.
24355 This is the case when the associated requirements have been
24356 successfully decomposed into lists of atomic constraints.
24357 That is, when the saved assumptions are not error_mark_node. */
24360 valid_constraints_p (tree cinfo
)
24362 gcc_assert (cinfo
);
24363 return CI_ASSUMPTIONS (cinfo
) != error_mark_node
;
24366 /* Returns the template constraints of declaration T. If T is not
24367 constrained, return NULL_TREE. Note that T must be non-null. */
24370 get_constraints (tree t
)
24372 gcc_assert (DECL_P (t
));
24373 if (TREE_CODE (t
) == TEMPLATE_DECL
)
24374 t
= DECL_TEMPLATE_RESULT (t
);
24375 constr_entry elt
= { t
, NULL_TREE
};
24376 constr_entry
* found
= decl_constraints
->find (&elt
);
24383 /* Associate the given constraint information CI with the declaration
24384 T. If T is a template, then the constraints are associated with
24385 its underlying declaration. Don't build associations if CI is
24389 set_constraints (tree t
, tree ci
)
24394 if (TREE_CODE (t
) == TEMPLATE_DECL
)
24395 t
= DECL_TEMPLATE_RESULT (t
);
24396 gcc_assert (!get_constraints (t
));
24397 constr_entry elt
= {t
, ci
};
24398 constr_entry
** slot
= decl_constraints
->find_slot (&elt
, INSERT
);
24399 constr_entry
* entry
= ggc_alloc
<constr_entry
> ();
24404 /* Remove the associated constraints of the declaration T. */
24407 remove_constraints (tree t
)
24409 gcc_assert (DECL_P (t
));
24410 if (TREE_CODE (t
) == TEMPLATE_DECL
)
24411 t
= DECL_TEMPLATE_RESULT (t
);
24413 constr_entry elt
= {t
, NULL_TREE
};
24414 constr_entry
** slot
= decl_constraints
->find_slot (&elt
, NO_INSERT
);
24416 decl_constraints
->clear_slot (slot
);
24419 /* Set up the hash table for constraint association. */
24422 init_constraint_processing (void)
24424 decl_constraints
= hash_table
<constr_hasher
>::create_ggc(37);
24427 /* Set up the hash tables for template instantiations. */
24430 init_template_processing (void)
24432 decl_specializations
= hash_table
<spec_hasher
>::create_ggc (37);
24433 type_specializations
= hash_table
<spec_hasher
>::create_ggc (37);
24436 /* Print stats about the template hash tables for -fstats. */
24439 print_template_statistics (void)
24441 fprintf (stderr
, "decl_specializations: size %ld, %ld elements, "
24442 "%f collisions\n", (long) decl_specializations
->size (),
24443 (long) decl_specializations
->elements (),
24444 decl_specializations
->collisions ());
24445 fprintf (stderr
, "type_specializations: size %ld, %ld elements, "
24446 "%f collisions\n", (long) type_specializations
->size (),
24447 (long) type_specializations
->elements (),
24448 type_specializations
->collisions ());
24451 #include "gt-cp-pt.h"