PR c++/58761
[official-gcc.git] / gcc / cp / pt.c
blobd712583931906fc89cf16f8503f3202d11bc6dfa
1 /* Handle parameterized types (templates) for GNU -*- C++ -*-.
2 Copyright (C) 1992-2014 Free Software Foundation, Inc.
3 Written by Ken Raeburn (raeburn@cygnus.com) while at Watchmaker Computing.
4 Rewritten by Jason Merrill (jason@cygnus.com).
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 /* Known bugs or deficiencies include:
24 all methods must be provided in header files; can't use a source
25 file that contains only the method templates and "just win". */
27 #include "config.h"
28 #include "system.h"
29 #include "coretypes.h"
30 #include "tm.h"
31 #include "tree.h"
32 #include "stringpool.h"
33 #include "varasm.h"
34 #include "attribs.h"
35 #include "stor-layout.h"
36 #include "intl.h"
37 #include "pointer-set.h"
38 #include "flags.h"
39 #include "cp-tree.h"
40 #include "c-family/c-common.h"
41 #include "c-family/c-objc.h"
42 #include "cp-objcp-common.h"
43 #include "tree-inline.h"
44 #include "decl.h"
45 #include "toplev.h"
46 #include "timevar.h"
47 #include "tree-iterator.h"
48 #include "type-utils.h"
49 #include "gimplify.h"
51 /* The type of functions taking a tree, and some additional data, and
52 returning an int. */
53 typedef int (*tree_fn_t) (tree, void*);
55 /* The PENDING_TEMPLATES is a TREE_LIST of templates whose
56 instantiations have been deferred, either because their definitions
57 were not yet available, or because we were putting off doing the work. */
58 struct GTY ((chain_next ("%h.next"))) pending_template {
59 struct pending_template *next;
60 struct tinst_level *tinst;
63 static GTY(()) struct pending_template *pending_templates;
64 static GTY(()) struct pending_template *last_pending_template;
66 int processing_template_parmlist;
67 static int template_header_count;
69 static GTY(()) tree saved_trees;
70 static vec<int> inline_parm_levels;
72 static GTY(()) struct tinst_level *current_tinst_level;
74 static GTY(()) tree saved_access_scope;
76 /* Live only within one (recursive) call to tsubst_expr. We use
77 this to pass the statement expression node from the STMT_EXPR
78 to the EXPR_STMT that is its result. */
79 static tree cur_stmt_expr;
81 /* True if we've recursed into fn_type_unification too many times. */
82 static bool excessive_deduction_depth;
84 typedef struct GTY(()) spec_entry
86 tree tmpl;
87 tree args;
88 tree spec;
89 } spec_entry;
91 static GTY ((param_is (spec_entry)))
92 htab_t decl_specializations;
94 static GTY ((param_is (spec_entry)))
95 htab_t type_specializations;
97 /* Contains canonical template parameter types. The vector is indexed by
98 the TEMPLATE_TYPE_IDX of the template parameter. Each element is a
99 TREE_LIST, whose TREE_VALUEs contain the canonical template
100 parameters of various types and levels. */
101 static GTY(()) vec<tree, va_gc> *canonical_template_parms;
103 #define UNIFY_ALLOW_NONE 0
104 #define UNIFY_ALLOW_MORE_CV_QUAL 1
105 #define UNIFY_ALLOW_LESS_CV_QUAL 2
106 #define UNIFY_ALLOW_DERIVED 4
107 #define UNIFY_ALLOW_INTEGER 8
108 #define UNIFY_ALLOW_OUTER_LEVEL 16
109 #define UNIFY_ALLOW_OUTER_MORE_CV_QUAL 32
110 #define UNIFY_ALLOW_OUTER_LESS_CV_QUAL 64
112 enum template_base_result {
113 tbr_incomplete_type,
114 tbr_ambiguous_baseclass,
115 tbr_success
118 static void push_access_scope (tree);
119 static void pop_access_scope (tree);
120 static bool resolve_overloaded_unification (tree, tree, tree, tree,
121 unification_kind_t, int,
122 bool);
123 static int try_one_overload (tree, tree, tree, tree, tree,
124 unification_kind_t, int, bool, bool);
125 static int unify (tree, tree, tree, tree, int, bool);
126 static void add_pending_template (tree);
127 static tree reopen_tinst_level (struct tinst_level *);
128 static tree tsubst_initializer_list (tree, tree);
129 static tree get_class_bindings (tree, tree, tree, tree);
130 static tree coerce_template_parms (tree, tree, tree, tsubst_flags_t,
131 bool, bool);
132 static tree coerce_innermost_template_parms (tree, tree, tree, tsubst_flags_t,
133 bool, bool);
134 static void tsubst_enum (tree, tree, tree);
135 static tree add_to_template_args (tree, tree);
136 static tree add_outermost_template_args (tree, tree);
137 static bool check_instantiated_args (tree, tree, tsubst_flags_t);
138 static int maybe_adjust_types_for_deduction (unification_kind_t, tree*, tree*,
139 tree);
140 static int type_unification_real (tree, tree, tree, const tree *,
141 unsigned int, int, unification_kind_t, int,
142 vec<deferred_access_check, va_gc> **,
143 bool);
144 static void note_template_header (int);
145 static tree convert_nontype_argument_function (tree, tree, tsubst_flags_t);
146 static tree convert_nontype_argument (tree, tree, tsubst_flags_t);
147 static tree convert_template_argument (tree, tree, tree,
148 tsubst_flags_t, int, tree);
149 static int for_each_template_parm (tree, tree_fn_t, void*,
150 struct pointer_set_t*, bool);
151 static tree expand_template_argument_pack (tree);
152 static tree build_template_parm_index (int, int, int, tree, tree);
153 static bool inline_needs_template_parms (tree, bool);
154 static void push_inline_template_parms_recursive (tree, int);
155 static tree retrieve_local_specialization (tree);
156 static void register_local_specialization (tree, tree);
157 static hashval_t hash_specialization (const void *p);
158 static tree reduce_template_parm_level (tree, tree, int, tree, tsubst_flags_t);
159 static int mark_template_parm (tree, void *);
160 static int template_parm_this_level_p (tree, void *);
161 static tree tsubst_friend_function (tree, tree);
162 static tree tsubst_friend_class (tree, tree);
163 static int can_complete_type_without_circularity (tree);
164 static tree get_bindings (tree, tree, tree, bool);
165 static int template_decl_level (tree);
166 static int check_cv_quals_for_unify (int, tree, tree);
167 static void template_parm_level_and_index (tree, int*, int*);
168 static int unify_pack_expansion (tree, tree, tree,
169 tree, unification_kind_t, bool, bool);
170 static tree tsubst_template_arg (tree, tree, tsubst_flags_t, tree);
171 static tree tsubst_template_args (tree, tree, tsubst_flags_t, tree);
172 static tree tsubst_template_parms (tree, tree, tsubst_flags_t);
173 static void regenerate_decl_from_template (tree, tree);
174 static tree most_specialized_class (tree, tsubst_flags_t);
175 static tree tsubst_aggr_type (tree, tree, tsubst_flags_t, tree, int);
176 static tree tsubst_arg_types (tree, tree, tree, tsubst_flags_t, tree);
177 static tree tsubst_function_type (tree, tree, tsubst_flags_t, tree);
178 static bool check_specialization_scope (void);
179 static tree process_partial_specialization (tree);
180 static void set_current_access_from_decl (tree);
181 static enum template_base_result get_template_base (tree, tree, tree, tree,
182 bool , tree *);
183 static tree try_class_unification (tree, tree, tree, tree, bool);
184 static int coerce_template_template_parms (tree, tree, tsubst_flags_t,
185 tree, tree);
186 static bool template_template_parm_bindings_ok_p (tree, tree);
187 static int template_args_equal (tree, tree);
188 static void tsubst_default_arguments (tree, tsubst_flags_t);
189 static tree for_each_template_parm_r (tree *, int *, void *);
190 static tree copy_default_args_to_explicit_spec_1 (tree, tree);
191 static void copy_default_args_to_explicit_spec (tree);
192 static int invalid_nontype_parm_type_p (tree, tsubst_flags_t);
193 static bool dependent_template_arg_p (tree);
194 static bool any_template_arguments_need_structural_equality_p (tree);
195 static bool dependent_type_p_r (tree);
196 static tree tsubst_expr (tree, tree, tsubst_flags_t, tree, bool);
197 static tree tsubst_copy (tree, tree, tsubst_flags_t, tree);
198 static tree tsubst_pack_expansion (tree, tree, tsubst_flags_t, tree);
199 static tree tsubst_decl (tree, tree, tsubst_flags_t);
200 static void perform_typedefs_access_check (tree tmpl, tree targs);
201 static void append_type_to_template_for_access_check_1 (tree, tree, tree,
202 location_t);
203 static tree listify (tree);
204 static tree listify_autos (tree, tree);
205 static tree template_parm_to_arg (tree t);
206 static tree current_template_args (void);
207 static tree tsubst_template_parm (tree, tree, tsubst_flags_t);
208 static tree instantiate_alias_template (tree, tree, tsubst_flags_t);
210 /* Make the current scope suitable for access checking when we are
211 processing T. T can be FUNCTION_DECL for instantiated function
212 template, VAR_DECL for static member variable, or TYPE_DECL for
213 alias template (needed by instantiate_decl). */
215 static void
216 push_access_scope (tree t)
218 gcc_assert (VAR_OR_FUNCTION_DECL_P (t)
219 || TREE_CODE (t) == TYPE_DECL);
221 if (DECL_FRIEND_CONTEXT (t))
222 push_nested_class (DECL_FRIEND_CONTEXT (t));
223 else if (DECL_CLASS_SCOPE_P (t))
224 push_nested_class (DECL_CONTEXT (t));
225 else
226 push_to_top_level ();
228 if (TREE_CODE (t) == FUNCTION_DECL)
230 saved_access_scope = tree_cons
231 (NULL_TREE, current_function_decl, saved_access_scope);
232 current_function_decl = t;
236 /* Restore the scope set up by push_access_scope. T is the node we
237 are processing. */
239 static void
240 pop_access_scope (tree t)
242 if (TREE_CODE (t) == FUNCTION_DECL)
244 current_function_decl = TREE_VALUE (saved_access_scope);
245 saved_access_scope = TREE_CHAIN (saved_access_scope);
248 if (DECL_FRIEND_CONTEXT (t) || DECL_CLASS_SCOPE_P (t))
249 pop_nested_class ();
250 else
251 pop_from_top_level ();
254 /* Do any processing required when DECL (a member template
255 declaration) is finished. Returns the TEMPLATE_DECL corresponding
256 to DECL, unless it is a specialization, in which case the DECL
257 itself is returned. */
259 tree
260 finish_member_template_decl (tree decl)
262 if (decl == error_mark_node)
263 return error_mark_node;
265 gcc_assert (DECL_P (decl));
267 if (TREE_CODE (decl) == TYPE_DECL)
269 tree type;
271 type = TREE_TYPE (decl);
272 if (type == error_mark_node)
273 return error_mark_node;
274 if (MAYBE_CLASS_TYPE_P (type)
275 && CLASSTYPE_TEMPLATE_INFO (type)
276 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
278 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
279 check_member_template (tmpl);
280 return tmpl;
282 return NULL_TREE;
284 else if (TREE_CODE (decl) == FIELD_DECL)
285 error ("data member %qD cannot be a member template", decl);
286 else if (DECL_TEMPLATE_INFO (decl))
288 if (!DECL_TEMPLATE_SPECIALIZATION (decl))
290 check_member_template (DECL_TI_TEMPLATE (decl));
291 return DECL_TI_TEMPLATE (decl);
293 else
294 return decl;
296 else
297 error ("invalid member template declaration %qD", decl);
299 return error_mark_node;
302 /* Create a template info node. */
304 tree
305 build_template_info (tree template_decl, tree template_args)
307 tree result = make_node (TEMPLATE_INFO);
308 TI_TEMPLATE (result) = template_decl;
309 TI_ARGS (result) = template_args;
310 return result;
313 /* Return the template info node corresponding to T, whatever T is. */
315 tree
316 get_template_info (const_tree t)
318 tree tinfo = NULL_TREE;
320 if (!t || t == error_mark_node)
321 return NULL;
323 if (TREE_CODE (t) == NAMESPACE_DECL)
324 return NULL;
326 if (DECL_P (t) && DECL_LANG_SPECIFIC (t))
327 tinfo = DECL_TEMPLATE_INFO (t);
329 if (!tinfo && DECL_IMPLICIT_TYPEDEF_P (t))
330 t = TREE_TYPE (t);
332 if (OVERLOAD_TYPE_P (t))
333 tinfo = TYPE_TEMPLATE_INFO (t);
334 else if (TREE_CODE (t) == BOUND_TEMPLATE_TEMPLATE_PARM)
335 tinfo = TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (t);
337 return tinfo;
340 /* Returns the template nesting level of the indicated class TYPE.
342 For example, in:
343 template <class T>
344 struct A
346 template <class U>
347 struct B {};
350 A<T>::B<U> has depth two, while A<T> has depth one.
351 Both A<T>::B<int> and A<int>::B<U> have depth one, if
352 they are instantiations, not specializations.
354 This function is guaranteed to return 0 if passed NULL_TREE so
355 that, for example, `template_class_depth (current_class_type)' is
356 always safe. */
359 template_class_depth (tree type)
361 int depth;
363 for (depth = 0;
364 type && TREE_CODE (type) != NAMESPACE_DECL;
365 type = (TREE_CODE (type) == FUNCTION_DECL)
366 ? CP_DECL_CONTEXT (type) : CP_TYPE_CONTEXT (type))
368 tree tinfo = get_template_info (type);
370 if (tinfo && PRIMARY_TEMPLATE_P (TI_TEMPLATE (tinfo))
371 && uses_template_parms (INNERMOST_TEMPLATE_ARGS (TI_ARGS (tinfo))))
372 ++depth;
375 return depth;
378 /* Subroutine of maybe_begin_member_template_processing.
379 Returns true if processing DECL needs us to push template parms. */
381 static bool
382 inline_needs_template_parms (tree decl, bool nsdmi)
384 if (!decl || (!nsdmi && ! DECL_TEMPLATE_INFO (decl)))
385 return false;
387 return (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (most_general_template (decl)))
388 > (processing_template_decl + DECL_TEMPLATE_SPECIALIZATION (decl)));
391 /* Subroutine of maybe_begin_member_template_processing.
392 Push the template parms in PARMS, starting from LEVELS steps into the
393 chain, and ending at the beginning, since template parms are listed
394 innermost first. */
396 static void
397 push_inline_template_parms_recursive (tree parmlist, int levels)
399 tree parms = TREE_VALUE (parmlist);
400 int i;
402 if (levels > 1)
403 push_inline_template_parms_recursive (TREE_CHAIN (parmlist), levels - 1);
405 ++processing_template_decl;
406 current_template_parms
407 = tree_cons (size_int (processing_template_decl),
408 parms, current_template_parms);
409 TEMPLATE_PARMS_FOR_INLINE (current_template_parms) = 1;
411 begin_scope (TREE_VEC_LENGTH (parms) ? sk_template_parms : sk_template_spec,
412 NULL);
413 for (i = 0; i < TREE_VEC_LENGTH (parms); ++i)
415 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
417 if (error_operand_p (parm))
418 continue;
420 gcc_assert (DECL_P (parm));
422 switch (TREE_CODE (parm))
424 case TYPE_DECL:
425 case TEMPLATE_DECL:
426 pushdecl (parm);
427 break;
429 case PARM_DECL:
431 /* Make a CONST_DECL as is done in process_template_parm.
432 It is ugly that we recreate this here; the original
433 version built in process_template_parm is no longer
434 available. */
435 tree decl = build_decl (DECL_SOURCE_LOCATION (parm),
436 CONST_DECL, DECL_NAME (parm),
437 TREE_TYPE (parm));
438 DECL_ARTIFICIAL (decl) = 1;
439 TREE_CONSTANT (decl) = 1;
440 TREE_READONLY (decl) = 1;
441 DECL_INITIAL (decl) = DECL_INITIAL (parm);
442 SET_DECL_TEMPLATE_PARM_P (decl);
443 pushdecl (decl);
445 break;
447 default:
448 gcc_unreachable ();
453 /* Restore the template parameter context for a member template, a
454 friend template defined in a class definition, or a non-template
455 member of template class. */
457 void
458 maybe_begin_member_template_processing (tree decl)
460 tree parms;
461 int levels = 0;
462 bool nsdmi = TREE_CODE (decl) == FIELD_DECL;
464 if (nsdmi)
466 tree ctx = DECL_CONTEXT (decl);
467 decl = (CLASSTYPE_TEMPLATE_INFO (ctx)
468 /* Disregard full specializations (c++/60999). */
469 && uses_template_parms (ctx)
470 ? CLASSTYPE_TI_TEMPLATE (ctx) : NULL_TREE);
473 if (inline_needs_template_parms (decl, nsdmi))
475 parms = DECL_TEMPLATE_PARMS (most_general_template (decl));
476 levels = TMPL_PARMS_DEPTH (parms) - processing_template_decl;
478 if (DECL_TEMPLATE_SPECIALIZATION (decl))
480 --levels;
481 parms = TREE_CHAIN (parms);
484 push_inline_template_parms_recursive (parms, levels);
487 /* Remember how many levels of template parameters we pushed so that
488 we can pop them later. */
489 inline_parm_levels.safe_push (levels);
492 /* Undo the effects of maybe_begin_member_template_processing. */
494 void
495 maybe_end_member_template_processing (void)
497 int i;
498 int last;
500 if (inline_parm_levels.length () == 0)
501 return;
503 last = inline_parm_levels.pop ();
504 for (i = 0; i < last; ++i)
506 --processing_template_decl;
507 current_template_parms = TREE_CHAIN (current_template_parms);
508 poplevel (0, 0, 0);
512 /* Return a new template argument vector which contains all of ARGS,
513 but has as its innermost set of arguments the EXTRA_ARGS. */
515 static tree
516 add_to_template_args (tree args, tree extra_args)
518 tree new_args;
519 int extra_depth;
520 int i;
521 int j;
523 if (args == NULL_TREE || extra_args == error_mark_node)
524 return extra_args;
526 extra_depth = TMPL_ARGS_DEPTH (extra_args);
527 new_args = make_tree_vec (TMPL_ARGS_DEPTH (args) + extra_depth);
529 for (i = 1; i <= TMPL_ARGS_DEPTH (args); ++i)
530 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (args, i));
532 for (j = 1; j <= extra_depth; ++j, ++i)
533 SET_TMPL_ARGS_LEVEL (new_args, i, TMPL_ARGS_LEVEL (extra_args, j));
535 return new_args;
538 /* Like add_to_template_args, but only the outermost ARGS are added to
539 the EXTRA_ARGS. In particular, all but TMPL_ARGS_DEPTH
540 (EXTRA_ARGS) levels are added. This function is used to combine
541 the template arguments from a partial instantiation with the
542 template arguments used to attain the full instantiation from the
543 partial instantiation. */
545 static tree
546 add_outermost_template_args (tree args, tree extra_args)
548 tree new_args;
550 /* If there are more levels of EXTRA_ARGS than there are ARGS,
551 something very fishy is going on. */
552 gcc_assert (TMPL_ARGS_DEPTH (args) >= TMPL_ARGS_DEPTH (extra_args));
554 /* If *all* the new arguments will be the EXTRA_ARGS, just return
555 them. */
556 if (TMPL_ARGS_DEPTH (args) == TMPL_ARGS_DEPTH (extra_args))
557 return extra_args;
559 /* For the moment, we make ARGS look like it contains fewer levels. */
560 TREE_VEC_LENGTH (args) -= TMPL_ARGS_DEPTH (extra_args);
562 new_args = add_to_template_args (args, extra_args);
564 /* Now, we restore ARGS to its full dimensions. */
565 TREE_VEC_LENGTH (args) += TMPL_ARGS_DEPTH (extra_args);
567 return new_args;
570 /* Return the N levels of innermost template arguments from the ARGS. */
572 tree
573 get_innermost_template_args (tree args, int n)
575 tree new_args;
576 int extra_levels;
577 int i;
579 gcc_assert (n >= 0);
581 /* If N is 1, just return the innermost set of template arguments. */
582 if (n == 1)
583 return TMPL_ARGS_LEVEL (args, TMPL_ARGS_DEPTH (args));
585 /* If we're not removing anything, just return the arguments we were
586 given. */
587 extra_levels = TMPL_ARGS_DEPTH (args) - n;
588 gcc_assert (extra_levels >= 0);
589 if (extra_levels == 0)
590 return args;
592 /* Make a new set of arguments, not containing the outer arguments. */
593 new_args = make_tree_vec (n);
594 for (i = 1; i <= n; ++i)
595 SET_TMPL_ARGS_LEVEL (new_args, i,
596 TMPL_ARGS_LEVEL (args, i + extra_levels));
598 return new_args;
601 /* The inverse of get_innermost_template_args: Return all but the innermost
602 EXTRA_LEVELS levels of template arguments from the ARGS. */
604 static tree
605 strip_innermost_template_args (tree args, int extra_levels)
607 tree new_args;
608 int n = TMPL_ARGS_DEPTH (args) - extra_levels;
609 int i;
611 gcc_assert (n >= 0);
613 /* If N is 1, just return the outermost set of template arguments. */
614 if (n == 1)
615 return TMPL_ARGS_LEVEL (args, 1);
617 /* If we're not removing anything, just return the arguments we were
618 given. */
619 gcc_assert (extra_levels >= 0);
620 if (extra_levels == 0)
621 return args;
623 /* Make a new set of arguments, not containing the inner arguments. */
624 new_args = make_tree_vec (n);
625 for (i = 1; i <= n; ++i)
626 SET_TMPL_ARGS_LEVEL (new_args, i,
627 TMPL_ARGS_LEVEL (args, i));
629 return new_args;
632 /* We've got a template header coming up; push to a new level for storing
633 the parms. */
635 void
636 begin_template_parm_list (void)
638 /* We use a non-tag-transparent scope here, which causes pushtag to
639 put tags in this scope, rather than in the enclosing class or
640 namespace scope. This is the right thing, since we want
641 TEMPLATE_DECLS, and not TYPE_DECLS for template classes. For a
642 global template class, push_template_decl handles putting the
643 TEMPLATE_DECL into top-level scope. For a nested template class,
644 e.g.:
646 template <class T> struct S1 {
647 template <class T> struct S2 {};
650 pushtag contains special code to call pushdecl_with_scope on the
651 TEMPLATE_DECL for S2. */
652 begin_scope (sk_template_parms, NULL);
653 ++processing_template_decl;
654 ++processing_template_parmlist;
655 note_template_header (0);
658 /* This routine is called when a specialization is declared. If it is
659 invalid to declare a specialization here, an error is reported and
660 false is returned, otherwise this routine will return true. */
662 static bool
663 check_specialization_scope (void)
665 tree scope = current_scope ();
667 /* [temp.expl.spec]
669 An explicit specialization shall be declared in the namespace of
670 which the template is a member, or, for member templates, in the
671 namespace of which the enclosing class or enclosing class
672 template is a member. An explicit specialization of a member
673 function, member class or static data member of a class template
674 shall be declared in the namespace of which the class template
675 is a member. */
676 if (scope && TREE_CODE (scope) != NAMESPACE_DECL)
678 error ("explicit specialization in non-namespace scope %qD", scope);
679 return false;
682 /* [temp.expl.spec]
684 In an explicit specialization declaration for a member of a class
685 template or a member template that appears in namespace scope,
686 the member template and some of its enclosing class templates may
687 remain unspecialized, except that the declaration shall not
688 explicitly specialize a class member template if its enclosing
689 class templates are not explicitly specialized as well. */
690 if (current_template_parms)
692 error ("enclosing class templates are not explicitly specialized");
693 return false;
696 return true;
699 /* We've just seen template <>. */
701 bool
702 begin_specialization (void)
704 begin_scope (sk_template_spec, NULL);
705 note_template_header (1);
706 return check_specialization_scope ();
709 /* Called at then end of processing a declaration preceded by
710 template<>. */
712 void
713 end_specialization (void)
715 finish_scope ();
716 reset_specialization ();
719 /* Any template <>'s that we have seen thus far are not referring to a
720 function specialization. */
722 void
723 reset_specialization (void)
725 processing_specialization = 0;
726 template_header_count = 0;
729 /* We've just seen a template header. If SPECIALIZATION is nonzero,
730 it was of the form template <>. */
732 static void
733 note_template_header (int specialization)
735 processing_specialization = specialization;
736 template_header_count++;
739 /* We're beginning an explicit instantiation. */
741 void
742 begin_explicit_instantiation (void)
744 gcc_assert (!processing_explicit_instantiation);
745 processing_explicit_instantiation = true;
749 void
750 end_explicit_instantiation (void)
752 gcc_assert (processing_explicit_instantiation);
753 processing_explicit_instantiation = false;
756 /* An explicit specialization or partial specialization of TMPL is being
757 declared. Check that the namespace in which the specialization is
758 occurring is permissible. Returns false iff it is invalid to
759 specialize TMPL in the current namespace. */
761 static bool
762 check_specialization_namespace (tree tmpl)
764 tree tpl_ns = decl_namespace_context (tmpl);
766 /* [tmpl.expl.spec]
768 An explicit specialization shall be declared in the namespace of
769 which the template is a member, or, for member templates, in the
770 namespace of which the enclosing class or enclosing class
771 template is a member. An explicit specialization of a member
772 function, member class or static data member of a class template
773 shall be declared in the namespace of which the class template is
774 a member. */
775 if (current_scope() != DECL_CONTEXT (tmpl)
776 && !at_namespace_scope_p ())
778 error ("specialization of %qD must appear at namespace scope", tmpl);
779 return false;
781 if (is_associated_namespace (current_namespace, tpl_ns))
782 /* Same or super-using namespace. */
783 return true;
784 else
786 permerror (input_location, "specialization of %qD in different namespace", tmpl);
787 permerror (input_location, " from definition of %q+#D", tmpl);
788 return false;
792 /* SPEC is an explicit instantiation. Check that it is valid to
793 perform this explicit instantiation in the current namespace. */
795 static void
796 check_explicit_instantiation_namespace (tree spec)
798 tree ns;
800 /* DR 275: An explicit instantiation shall appear in an enclosing
801 namespace of its template. */
802 ns = decl_namespace_context (spec);
803 if (!is_ancestor (current_namespace, ns))
804 permerror (input_location, "explicit instantiation of %qD in namespace %qD "
805 "(which does not enclose namespace %qD)",
806 spec, current_namespace, ns);
809 /* The TYPE is being declared. If it is a template type, that means it
810 is a partial specialization. Do appropriate error-checking. */
812 tree
813 maybe_process_partial_specialization (tree type)
815 tree context;
817 if (type == error_mark_node)
818 return error_mark_node;
820 /* A lambda that appears in specialization context is not itself a
821 specialization. */
822 if (CLASS_TYPE_P (type) && CLASSTYPE_LAMBDA_EXPR (type))
823 return type;
825 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
827 error ("name of class shadows template template parameter %qD",
828 TYPE_NAME (type));
829 return error_mark_node;
832 context = TYPE_CONTEXT (type);
834 if (TYPE_ALIAS_P (type))
836 if (TYPE_TEMPLATE_INFO (type)
837 && DECL_ALIAS_TEMPLATE_P (TYPE_TI_TEMPLATE (type)))
838 error ("specialization of alias template %qD",
839 TYPE_TI_TEMPLATE (type));
840 else
841 error ("explicit specialization of non-template %qT", type);
842 return error_mark_node;
844 else if (CLASS_TYPE_P (type) && CLASSTYPE_USE_TEMPLATE (type))
846 /* This is for ordinary explicit specialization and partial
847 specialization of a template class such as:
849 template <> class C<int>;
853 template <class T> class C<T*>;
855 Make sure that `C<int>' and `C<T*>' are implicit instantiations. */
857 if (CLASSTYPE_IMPLICIT_INSTANTIATION (type)
858 && !COMPLETE_TYPE_P (type))
860 if (!check_specialization_namespace (CLASSTYPE_TI_TEMPLATE (type))
861 && !at_namespace_scope_p ())
862 return error_mark_node;
863 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
864 DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)) = input_location;
865 if (processing_template_decl)
867 if (push_template_decl (TYPE_MAIN_DECL (type))
868 == error_mark_node)
869 return error_mark_node;
872 else if (CLASSTYPE_TEMPLATE_INSTANTIATION (type))
873 error ("specialization of %qT after instantiation", type);
874 else if (errorcount && !processing_specialization
875 && CLASSTYPE_TEMPLATE_SPECIALIZATION (type)
876 && !uses_template_parms (CLASSTYPE_TI_ARGS (type)))
877 /* Trying to define a specialization either without a template<> header
878 or in an inappropriate place. We've already given an error, so just
879 bail now so we don't actually define the specialization. */
880 return error_mark_node;
882 else if (CLASS_TYPE_P (type)
883 && !CLASSTYPE_USE_TEMPLATE (type)
884 && CLASSTYPE_TEMPLATE_INFO (type)
885 && context && CLASS_TYPE_P (context)
886 && CLASSTYPE_TEMPLATE_INFO (context))
888 /* This is for an explicit specialization of member class
889 template according to [temp.expl.spec/18]:
891 template <> template <class U> class C<int>::D;
893 The context `C<int>' must be an implicit instantiation.
894 Otherwise this is just a member class template declared
895 earlier like:
897 template <> class C<int> { template <class U> class D; };
898 template <> template <class U> class C<int>::D;
900 In the first case, `C<int>::D' is a specialization of `C<T>::D'
901 while in the second case, `C<int>::D' is a primary template
902 and `C<T>::D' may not exist. */
904 if (CLASSTYPE_IMPLICIT_INSTANTIATION (context)
905 && !COMPLETE_TYPE_P (type))
907 tree t;
908 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
910 if (current_namespace
911 != decl_namespace_context (tmpl))
913 permerror (input_location, "specializing %q#T in different namespace", type);
914 permerror (input_location, " from definition of %q+#D", tmpl);
917 /* Check for invalid specialization after instantiation:
919 template <> template <> class C<int>::D<int>;
920 template <> template <class U> class C<int>::D; */
922 for (t = DECL_TEMPLATE_INSTANTIATIONS (tmpl);
923 t; t = TREE_CHAIN (t))
925 tree inst = TREE_VALUE (t);
926 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (inst)
927 || !COMPLETE_OR_OPEN_TYPE_P (inst))
929 /* We already have a full specialization of this partial
930 instantiation, or a full specialization has been
931 looked up but not instantiated. Reassign it to the
932 new member specialization template. */
933 spec_entry elt;
934 spec_entry *entry;
935 void **slot;
937 elt.tmpl = most_general_template (tmpl);
938 elt.args = CLASSTYPE_TI_ARGS (inst);
939 elt.spec = inst;
941 htab_remove_elt (type_specializations, &elt);
943 elt.tmpl = tmpl;
944 elt.args = INNERMOST_TEMPLATE_ARGS (elt.args);
946 slot = htab_find_slot (type_specializations, &elt, INSERT);
947 entry = ggc_alloc<spec_entry> ();
948 *entry = elt;
949 *slot = entry;
951 else
952 /* But if we've had an implicit instantiation, that's a
953 problem ([temp.expl.spec]/6). */
954 error ("specialization %qT after instantiation %qT",
955 type, inst);
958 /* Mark TYPE as a specialization. And as a result, we only
959 have one level of template argument for the innermost
960 class template. */
961 SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (type);
962 DECL_SOURCE_LOCATION (TYPE_MAIN_DECL (type)) = input_location;
963 CLASSTYPE_TI_ARGS (type)
964 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type));
967 else if (processing_specialization)
969 /* Someday C++0x may allow for enum template specialization. */
970 if (cxx_dialect > cxx98 && TREE_CODE (type) == ENUMERAL_TYPE
971 && CLASS_TYPE_P (context) && CLASSTYPE_USE_TEMPLATE (context))
972 pedwarn (input_location, OPT_Wpedantic, "template specialization "
973 "of %qD not allowed by ISO C++", type);
974 else
976 error ("explicit specialization of non-template %qT", type);
977 return error_mark_node;
981 return type;
984 /* Returns nonzero if we can optimize the retrieval of specializations
985 for TMPL, a TEMPLATE_DECL. In particular, for such a template, we
986 do not use DECL_TEMPLATE_SPECIALIZATIONS at all. */
988 static inline bool
989 optimize_specialization_lookup_p (tree tmpl)
991 return (DECL_FUNCTION_TEMPLATE_P (tmpl)
992 && DECL_CLASS_SCOPE_P (tmpl)
993 /* DECL_CLASS_SCOPE_P holds of T::f even if T is a template
994 parameter. */
995 && CLASS_TYPE_P (DECL_CONTEXT (tmpl))
996 /* The optimized lookup depends on the fact that the
997 template arguments for the member function template apply
998 purely to the containing class, which is not true if the
999 containing class is an explicit or partial
1000 specialization. */
1001 && !CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (tmpl))
1002 && !DECL_MEMBER_TEMPLATE_P (tmpl)
1003 && !DECL_CONV_FN_P (tmpl)
1004 /* It is possible to have a template that is not a member
1005 template and is not a member of a template class:
1007 template <typename T>
1008 struct S { friend A::f(); };
1010 Here, the friend function is a template, but the context does
1011 not have template information. The optimized lookup relies
1012 on having ARGS be the template arguments for both the class
1013 and the function template. */
1014 && !DECL_FRIEND_P (DECL_TEMPLATE_RESULT (tmpl)));
1017 /* Retrieve the specialization (in the sense of [temp.spec] - a
1018 specialization is either an instantiation or an explicit
1019 specialization) of TMPL for the given template ARGS. If there is
1020 no such specialization, return NULL_TREE. The ARGS are a vector of
1021 arguments, or a vector of vectors of arguments, in the case of
1022 templates with more than one level of parameters.
1024 If TMPL is a type template and CLASS_SPECIALIZATIONS_P is true,
1025 then we search for a partial specialization matching ARGS. This
1026 parameter is ignored if TMPL is not a class template.
1028 We can also look up a FIELD_DECL, if it is a lambda capture pack; the
1029 result is a NONTYPE_ARGUMENT_PACK. */
1031 static tree
1032 retrieve_specialization (tree tmpl, tree args, hashval_t hash)
1034 if (tmpl == NULL_TREE)
1035 return NULL_TREE;
1037 if (args == error_mark_node)
1038 return NULL_TREE;
1040 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL
1041 || TREE_CODE (tmpl) == FIELD_DECL);
1043 /* There should be as many levels of arguments as there are
1044 levels of parameters. */
1045 gcc_assert (TMPL_ARGS_DEPTH (args)
1046 == (TREE_CODE (tmpl) == TEMPLATE_DECL
1047 ? TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl))
1048 : template_class_depth (DECL_CONTEXT (tmpl))));
1050 if (optimize_specialization_lookup_p (tmpl))
1052 tree class_template;
1053 tree class_specialization;
1054 vec<tree, va_gc> *methods;
1055 tree fns;
1056 int idx;
1058 /* The template arguments actually apply to the containing
1059 class. Find the class specialization with those
1060 arguments. */
1061 class_template = CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (tmpl));
1062 class_specialization
1063 = retrieve_specialization (class_template, args, 0);
1064 if (!class_specialization)
1065 return NULL_TREE;
1066 /* Now, find the appropriate entry in the CLASSTYPE_METHOD_VEC
1067 for the specialization. */
1068 idx = class_method_index_for_fn (class_specialization, tmpl);
1069 if (idx == -1)
1070 return NULL_TREE;
1071 /* Iterate through the methods with the indicated name, looking
1072 for the one that has an instance of TMPL. */
1073 methods = CLASSTYPE_METHOD_VEC (class_specialization);
1074 for (fns = (*methods)[idx]; fns; fns = OVL_NEXT (fns))
1076 tree fn = OVL_CURRENT (fns);
1077 if (DECL_TEMPLATE_INFO (fn) && DECL_TI_TEMPLATE (fn) == tmpl
1078 /* using-declarations can add base methods to the method vec,
1079 and we don't want those here. */
1080 && DECL_CONTEXT (fn) == class_specialization)
1081 return fn;
1083 return NULL_TREE;
1085 else
1087 spec_entry *found;
1088 spec_entry elt;
1089 htab_t specializations;
1091 elt.tmpl = tmpl;
1092 elt.args = args;
1093 elt.spec = NULL_TREE;
1095 if (DECL_CLASS_TEMPLATE_P (tmpl))
1096 specializations = type_specializations;
1097 else
1098 specializations = decl_specializations;
1100 if (hash == 0)
1101 hash = hash_specialization (&elt);
1102 found = (spec_entry *) htab_find_with_hash (specializations, &elt, hash);
1103 if (found)
1104 return found->spec;
1107 return NULL_TREE;
1110 /* Like retrieve_specialization, but for local declarations. */
1112 static tree
1113 retrieve_local_specialization (tree tmpl)
1115 void **slot;
1117 if (local_specializations == NULL)
1118 return NULL_TREE;
1120 slot = pointer_map_contains (local_specializations, tmpl);
1121 return slot ? (tree) *slot : NULL_TREE;
1124 /* Returns nonzero iff DECL is a specialization of TMPL. */
1127 is_specialization_of (tree decl, tree tmpl)
1129 tree t;
1131 if (TREE_CODE (decl) == FUNCTION_DECL)
1133 for (t = decl;
1134 t != NULL_TREE;
1135 t = DECL_TEMPLATE_INFO (t) ? DECL_TI_TEMPLATE (t) : NULL_TREE)
1136 if (t == tmpl)
1137 return 1;
1139 else
1141 gcc_assert (TREE_CODE (decl) == TYPE_DECL);
1143 for (t = TREE_TYPE (decl);
1144 t != NULL_TREE;
1145 t = CLASSTYPE_USE_TEMPLATE (t)
1146 ? TREE_TYPE (CLASSTYPE_TI_TEMPLATE (t)) : NULL_TREE)
1147 if (same_type_ignoring_top_level_qualifiers_p (t, TREE_TYPE (tmpl)))
1148 return 1;
1151 return 0;
1154 /* Returns nonzero iff DECL is a specialization of friend declaration
1155 FRIEND_DECL according to [temp.friend]. */
1157 bool
1158 is_specialization_of_friend (tree decl, tree friend_decl)
1160 bool need_template = true;
1161 int template_depth;
1163 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL
1164 || TREE_CODE (decl) == TYPE_DECL);
1166 /* For [temp.friend/6] when FRIEND_DECL is an ordinary member function
1167 of a template class, we want to check if DECL is a specialization
1168 if this. */
1169 if (TREE_CODE (friend_decl) == FUNCTION_DECL
1170 && DECL_TEMPLATE_INFO (friend_decl)
1171 && !DECL_USE_TEMPLATE (friend_decl))
1173 /* We want a TEMPLATE_DECL for `is_specialization_of'. */
1174 friend_decl = DECL_TI_TEMPLATE (friend_decl);
1175 need_template = false;
1177 else if (TREE_CODE (friend_decl) == TEMPLATE_DECL
1178 && !PRIMARY_TEMPLATE_P (friend_decl))
1179 need_template = false;
1181 /* There is nothing to do if this is not a template friend. */
1182 if (TREE_CODE (friend_decl) != TEMPLATE_DECL)
1183 return false;
1185 if (is_specialization_of (decl, friend_decl))
1186 return true;
1188 /* [temp.friend/6]
1189 A member of a class template may be declared to be a friend of a
1190 non-template class. In this case, the corresponding member of
1191 every specialization of the class template is a friend of the
1192 class granting friendship.
1194 For example, given a template friend declaration
1196 template <class T> friend void A<T>::f();
1198 the member function below is considered a friend
1200 template <> struct A<int> {
1201 void f();
1204 For this type of template friend, TEMPLATE_DEPTH below will be
1205 nonzero. To determine if DECL is a friend of FRIEND, we first
1206 check if the enclosing class is a specialization of another. */
1208 template_depth = template_class_depth (CP_DECL_CONTEXT (friend_decl));
1209 if (template_depth
1210 && DECL_CLASS_SCOPE_P (decl)
1211 && is_specialization_of (TYPE_NAME (DECL_CONTEXT (decl)),
1212 CLASSTYPE_TI_TEMPLATE (DECL_CONTEXT (friend_decl))))
1214 /* Next, we check the members themselves. In order to handle
1215 a few tricky cases, such as when FRIEND_DECL's are
1217 template <class T> friend void A<T>::g(T t);
1218 template <class T> template <T t> friend void A<T>::h();
1220 and DECL's are
1222 void A<int>::g(int);
1223 template <int> void A<int>::h();
1225 we need to figure out ARGS, the template arguments from
1226 the context of DECL. This is required for template substitution
1227 of `T' in the function parameter of `g' and template parameter
1228 of `h' in the above examples. Here ARGS corresponds to `int'. */
1230 tree context = DECL_CONTEXT (decl);
1231 tree args = NULL_TREE;
1232 int current_depth = 0;
1234 while (current_depth < template_depth)
1236 if (CLASSTYPE_TEMPLATE_INFO (context))
1238 if (current_depth == 0)
1239 args = TYPE_TI_ARGS (context);
1240 else
1241 args = add_to_template_args (TYPE_TI_ARGS (context), args);
1242 current_depth++;
1244 context = TYPE_CONTEXT (context);
1247 if (TREE_CODE (decl) == FUNCTION_DECL)
1249 bool is_template;
1250 tree friend_type;
1251 tree decl_type;
1252 tree friend_args_type;
1253 tree decl_args_type;
1255 /* Make sure that both DECL and FRIEND_DECL are templates or
1256 non-templates. */
1257 is_template = DECL_TEMPLATE_INFO (decl)
1258 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl));
1259 if (need_template ^ is_template)
1260 return false;
1261 else if (is_template)
1263 /* If both are templates, check template parameter list. */
1264 tree friend_parms
1265 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_decl),
1266 args, tf_none);
1267 if (!comp_template_parms
1268 (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (decl)),
1269 friend_parms))
1270 return false;
1272 decl_type = TREE_TYPE (DECL_TI_TEMPLATE (decl));
1274 else
1275 decl_type = TREE_TYPE (decl);
1277 friend_type = tsubst_function_type (TREE_TYPE (friend_decl), args,
1278 tf_none, NULL_TREE);
1279 if (friend_type == error_mark_node)
1280 return false;
1282 /* Check if return types match. */
1283 if (!same_type_p (TREE_TYPE (decl_type), TREE_TYPE (friend_type)))
1284 return false;
1286 /* Check if function parameter types match, ignoring the
1287 `this' parameter. */
1288 friend_args_type = TYPE_ARG_TYPES (friend_type);
1289 decl_args_type = TYPE_ARG_TYPES (decl_type);
1290 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (friend_decl))
1291 friend_args_type = TREE_CHAIN (friend_args_type);
1292 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1293 decl_args_type = TREE_CHAIN (decl_args_type);
1295 return compparms (decl_args_type, friend_args_type);
1297 else
1299 /* DECL is a TYPE_DECL */
1300 bool is_template;
1301 tree decl_type = TREE_TYPE (decl);
1303 /* Make sure that both DECL and FRIEND_DECL are templates or
1304 non-templates. */
1305 is_template
1306 = CLASSTYPE_TEMPLATE_INFO (decl_type)
1307 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (decl_type));
1309 if (need_template ^ is_template)
1310 return false;
1311 else if (is_template)
1313 tree friend_parms;
1314 /* If both are templates, check the name of the two
1315 TEMPLATE_DECL's first because is_friend didn't. */
1316 if (DECL_NAME (CLASSTYPE_TI_TEMPLATE (decl_type))
1317 != DECL_NAME (friend_decl))
1318 return false;
1320 /* Now check template parameter list. */
1321 friend_parms
1322 = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_decl),
1323 args, tf_none);
1324 return comp_template_parms
1325 (DECL_TEMPLATE_PARMS (CLASSTYPE_TI_TEMPLATE (decl_type)),
1326 friend_parms);
1328 else
1329 return (DECL_NAME (decl)
1330 == DECL_NAME (friend_decl));
1333 return false;
1336 /* Register the specialization SPEC as a specialization of TMPL with
1337 the indicated ARGS. IS_FRIEND indicates whether the specialization
1338 is actually just a friend declaration. Returns SPEC, or an
1339 equivalent prior declaration, if available.
1341 We also store instantiations of field packs in the hash table, even
1342 though they are not themselves templates, to make lookup easier. */
1344 static tree
1345 register_specialization (tree spec, tree tmpl, tree args, bool is_friend,
1346 hashval_t hash)
1348 tree fn;
1349 void **slot = NULL;
1350 spec_entry elt;
1352 gcc_assert ((TREE_CODE (tmpl) == TEMPLATE_DECL && DECL_P (spec))
1353 || (TREE_CODE (tmpl) == FIELD_DECL
1354 && TREE_CODE (spec) == NONTYPE_ARGUMENT_PACK));
1356 if (TREE_CODE (spec) == FUNCTION_DECL
1357 && uses_template_parms (DECL_TI_ARGS (spec)))
1358 /* This is the FUNCTION_DECL for a partial instantiation. Don't
1359 register it; we want the corresponding TEMPLATE_DECL instead.
1360 We use `uses_template_parms (DECL_TI_ARGS (spec))' rather than
1361 the more obvious `uses_template_parms (spec)' to avoid problems
1362 with default function arguments. In particular, given
1363 something like this:
1365 template <class T> void f(T t1, T t = T())
1367 the default argument expression is not substituted for in an
1368 instantiation unless and until it is actually needed. */
1369 return spec;
1371 if (optimize_specialization_lookup_p (tmpl))
1372 /* We don't put these specializations in the hash table, but we might
1373 want to give an error about a mismatch. */
1374 fn = retrieve_specialization (tmpl, args, 0);
1375 else
1377 elt.tmpl = tmpl;
1378 elt.args = args;
1379 elt.spec = spec;
1381 if (hash == 0)
1382 hash = hash_specialization (&elt);
1384 slot =
1385 htab_find_slot_with_hash (decl_specializations, &elt, hash, INSERT);
1386 if (*slot)
1387 fn = ((spec_entry *) *slot)->spec;
1388 else
1389 fn = NULL_TREE;
1392 /* We can sometimes try to re-register a specialization that we've
1393 already got. In particular, regenerate_decl_from_template calls
1394 duplicate_decls which will update the specialization list. But,
1395 we'll still get called again here anyhow. It's more convenient
1396 to simply allow this than to try to prevent it. */
1397 if (fn == spec)
1398 return spec;
1399 else if (fn && DECL_TEMPLATE_SPECIALIZATION (spec))
1401 if (DECL_TEMPLATE_INSTANTIATION (fn))
1403 if (DECL_ODR_USED (fn)
1404 || DECL_EXPLICIT_INSTANTIATION (fn))
1406 error ("specialization of %qD after instantiation",
1407 fn);
1408 return error_mark_node;
1410 else
1412 tree clone;
1413 /* This situation should occur only if the first
1414 specialization is an implicit instantiation, the
1415 second is an explicit specialization, and the
1416 implicit instantiation has not yet been used. That
1417 situation can occur if we have implicitly
1418 instantiated a member function and then specialized
1419 it later.
1421 We can also wind up here if a friend declaration that
1422 looked like an instantiation turns out to be a
1423 specialization:
1425 template <class T> void foo(T);
1426 class S { friend void foo<>(int) };
1427 template <> void foo(int);
1429 We transform the existing DECL in place so that any
1430 pointers to it become pointers to the updated
1431 declaration.
1433 If there was a definition for the template, but not
1434 for the specialization, we want this to look as if
1435 there were no definition, and vice versa. */
1436 DECL_INITIAL (fn) = NULL_TREE;
1437 duplicate_decls (spec, fn, is_friend);
1438 /* The call to duplicate_decls will have applied
1439 [temp.expl.spec]:
1441 An explicit specialization of a function template
1442 is inline only if it is explicitly declared to be,
1443 and independently of whether its function template
1446 to the primary function; now copy the inline bits to
1447 the various clones. */
1448 FOR_EACH_CLONE (clone, fn)
1450 DECL_DECLARED_INLINE_P (clone)
1451 = DECL_DECLARED_INLINE_P (fn);
1452 DECL_SOURCE_LOCATION (clone)
1453 = DECL_SOURCE_LOCATION (fn);
1454 DECL_DELETED_FN (clone)
1455 = DECL_DELETED_FN (fn);
1457 check_specialization_namespace (tmpl);
1459 return fn;
1462 else if (DECL_TEMPLATE_SPECIALIZATION (fn))
1464 if (!duplicate_decls (spec, fn, is_friend) && DECL_INITIAL (spec))
1465 /* Dup decl failed, but this is a new definition. Set the
1466 line number so any errors match this new
1467 definition. */
1468 DECL_SOURCE_LOCATION (fn) = DECL_SOURCE_LOCATION (spec);
1470 return fn;
1473 else if (fn)
1474 return duplicate_decls (spec, fn, is_friend);
1476 /* A specialization must be declared in the same namespace as the
1477 template it is specializing. */
1478 if (DECL_P (spec) && DECL_TEMPLATE_SPECIALIZATION (spec)
1479 && !check_specialization_namespace (tmpl))
1480 DECL_CONTEXT (spec) = DECL_CONTEXT (tmpl);
1482 if (slot != NULL /* !optimize_specialization_lookup_p (tmpl) */)
1484 spec_entry *entry = ggc_alloc<spec_entry> ();
1485 gcc_assert (tmpl && args && spec);
1486 *entry = elt;
1487 *slot = entry;
1488 if (TREE_CODE (spec) == FUNCTION_DECL && DECL_NAMESPACE_SCOPE_P (spec)
1489 && PRIMARY_TEMPLATE_P (tmpl)
1490 && DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (tmpl)) == NULL_TREE)
1491 /* TMPL is a forward declaration of a template function; keep a list
1492 of all specializations in case we need to reassign them to a friend
1493 template later in tsubst_friend_function. */
1494 DECL_TEMPLATE_INSTANTIATIONS (tmpl)
1495 = tree_cons (args, spec, DECL_TEMPLATE_INSTANTIATIONS (tmpl));
1498 return spec;
1501 /* Returns true iff two spec_entry nodes are equivalent. Only compares the
1502 TMPL and ARGS members, ignores SPEC. */
1504 int comparing_specializations;
1506 static int
1507 eq_specializations (const void *p1, const void *p2)
1509 const spec_entry *e1 = (const spec_entry *)p1;
1510 const spec_entry *e2 = (const spec_entry *)p2;
1511 int equal;
1513 ++comparing_specializations;
1514 equal = (e1->tmpl == e2->tmpl
1515 && comp_template_args (e1->args, e2->args));
1516 --comparing_specializations;
1518 return equal;
1521 /* Returns a hash for a template TMPL and template arguments ARGS. */
1523 static hashval_t
1524 hash_tmpl_and_args (tree tmpl, tree args)
1526 hashval_t val = DECL_UID (tmpl);
1527 return iterative_hash_template_arg (args, val);
1530 /* Returns a hash for a spec_entry node based on the TMPL and ARGS members,
1531 ignoring SPEC. */
1533 static hashval_t
1534 hash_specialization (const void *p)
1536 const spec_entry *e = (const spec_entry *)p;
1537 return hash_tmpl_and_args (e->tmpl, e->args);
1540 /* Recursively calculate a hash value for a template argument ARG, for use
1541 in the hash tables of template specializations. */
1543 hashval_t
1544 iterative_hash_template_arg (tree arg, hashval_t val)
1546 unsigned HOST_WIDE_INT i;
1547 enum tree_code code;
1548 char tclass;
1550 if (arg == NULL_TREE)
1551 return iterative_hash_object (arg, val);
1553 if (!TYPE_P (arg))
1554 STRIP_NOPS (arg);
1556 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
1557 /* We can get one of these when re-hashing a previous entry in the middle
1558 of substituting into a pack expansion. Just look through it. */
1559 arg = ARGUMENT_PACK_SELECT_FROM_PACK (arg);
1561 code = TREE_CODE (arg);
1562 tclass = TREE_CODE_CLASS (code);
1564 val = iterative_hash_object (code, val);
1566 switch (code)
1568 case ERROR_MARK:
1569 return val;
1571 case IDENTIFIER_NODE:
1572 return iterative_hash_object (IDENTIFIER_HASH_VALUE (arg), val);
1574 case TREE_VEC:
1576 int i, len = TREE_VEC_LENGTH (arg);
1577 for (i = 0; i < len; ++i)
1578 val = iterative_hash_template_arg (TREE_VEC_ELT (arg, i), val);
1579 return val;
1582 case TYPE_PACK_EXPANSION:
1583 case EXPR_PACK_EXPANSION:
1584 val = iterative_hash_template_arg (PACK_EXPANSION_PATTERN (arg), val);
1585 return iterative_hash_template_arg (PACK_EXPANSION_EXTRA_ARGS (arg), val);
1587 case TYPE_ARGUMENT_PACK:
1588 case NONTYPE_ARGUMENT_PACK:
1589 return iterative_hash_template_arg (ARGUMENT_PACK_ARGS (arg), val);
1591 case TREE_LIST:
1592 for (; arg; arg = TREE_CHAIN (arg))
1593 val = iterative_hash_template_arg (TREE_VALUE (arg), val);
1594 return val;
1596 case OVERLOAD:
1597 for (; arg; arg = OVL_NEXT (arg))
1598 val = iterative_hash_template_arg (OVL_CURRENT (arg), val);
1599 return val;
1601 case CONSTRUCTOR:
1603 tree field, value;
1604 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (arg), i, field, value)
1606 val = iterative_hash_template_arg (field, val);
1607 val = iterative_hash_template_arg (value, val);
1609 return val;
1612 case PARM_DECL:
1613 if (!DECL_ARTIFICIAL (arg))
1615 val = iterative_hash_object (DECL_PARM_INDEX (arg), val);
1616 val = iterative_hash_object (DECL_PARM_LEVEL (arg), val);
1618 return iterative_hash_template_arg (TREE_TYPE (arg), val);
1620 case TARGET_EXPR:
1621 return iterative_hash_template_arg (TARGET_EXPR_INITIAL (arg), val);
1623 case PTRMEM_CST:
1624 val = iterative_hash_template_arg (PTRMEM_CST_CLASS (arg), val);
1625 return iterative_hash_template_arg (PTRMEM_CST_MEMBER (arg), val);
1627 case TEMPLATE_PARM_INDEX:
1628 val = iterative_hash_template_arg
1629 (TREE_TYPE (TEMPLATE_PARM_DECL (arg)), val);
1630 val = iterative_hash_object (TEMPLATE_PARM_LEVEL (arg), val);
1631 return iterative_hash_object (TEMPLATE_PARM_IDX (arg), val);
1633 case TRAIT_EXPR:
1634 val = iterative_hash_object (TRAIT_EXPR_KIND (arg), val);
1635 val = iterative_hash_template_arg (TRAIT_EXPR_TYPE1 (arg), val);
1636 return iterative_hash_template_arg (TRAIT_EXPR_TYPE2 (arg), val);
1638 case BASELINK:
1639 val = iterative_hash_template_arg (BINFO_TYPE (BASELINK_BINFO (arg)),
1640 val);
1641 return iterative_hash_template_arg (DECL_NAME (get_first_fn (arg)),
1642 val);
1644 case MODOP_EXPR:
1645 val = iterative_hash_template_arg (TREE_OPERAND (arg, 0), val);
1646 code = TREE_CODE (TREE_OPERAND (arg, 1));
1647 val = iterative_hash_object (code, val);
1648 return iterative_hash_template_arg (TREE_OPERAND (arg, 2), val);
1650 case LAMBDA_EXPR:
1651 /* A lambda can't appear in a template arg, but don't crash on
1652 erroneous input. */
1653 gcc_assert (seen_error ());
1654 return val;
1656 case CAST_EXPR:
1657 case IMPLICIT_CONV_EXPR:
1658 case STATIC_CAST_EXPR:
1659 case REINTERPRET_CAST_EXPR:
1660 case CONST_CAST_EXPR:
1661 case DYNAMIC_CAST_EXPR:
1662 case NEW_EXPR:
1663 val = iterative_hash_template_arg (TREE_TYPE (arg), val);
1664 /* Now hash operands as usual. */
1665 break;
1667 default:
1668 break;
1671 switch (tclass)
1673 case tcc_type:
1674 if (TYPE_CANONICAL (arg))
1675 return iterative_hash_object (TYPE_HASH (TYPE_CANONICAL (arg)),
1676 val);
1677 else if (TREE_CODE (arg) == DECLTYPE_TYPE)
1678 return iterative_hash_template_arg (DECLTYPE_TYPE_EXPR (arg), val);
1679 /* Otherwise just compare the types during lookup. */
1680 return val;
1682 case tcc_declaration:
1683 case tcc_constant:
1684 return iterative_hash_expr (arg, val);
1686 default:
1687 gcc_assert (IS_EXPR_CODE_CLASS (tclass));
1689 unsigned n = cp_tree_operand_length (arg);
1690 for (i = 0; i < n; ++i)
1691 val = iterative_hash_template_arg (TREE_OPERAND (arg, i), val);
1692 return val;
1695 gcc_unreachable ();
1696 return 0;
1699 /* Unregister the specialization SPEC as a specialization of TMPL.
1700 Replace it with NEW_SPEC, if NEW_SPEC is non-NULL. Returns true
1701 if the SPEC was listed as a specialization of TMPL.
1703 Note that SPEC has been ggc_freed, so we can't look inside it. */
1705 bool
1706 reregister_specialization (tree spec, tree tinfo, tree new_spec)
1708 spec_entry *entry;
1709 spec_entry elt;
1711 elt.tmpl = most_general_template (TI_TEMPLATE (tinfo));
1712 elt.args = TI_ARGS (tinfo);
1713 elt.spec = NULL_TREE;
1715 entry = (spec_entry *) htab_find (decl_specializations, &elt);
1716 if (entry != NULL)
1718 gcc_assert (entry->spec == spec || entry->spec == new_spec);
1719 gcc_assert (new_spec != NULL_TREE);
1720 entry->spec = new_spec;
1721 return 1;
1724 return 0;
1727 /* Like register_specialization, but for local declarations. We are
1728 registering SPEC, an instantiation of TMPL. */
1730 static void
1731 register_local_specialization (tree spec, tree tmpl)
1733 void **slot;
1735 slot = pointer_map_insert (local_specializations, tmpl);
1736 *slot = spec;
1739 /* TYPE is a class type. Returns true if TYPE is an explicitly
1740 specialized class. */
1742 bool
1743 explicit_class_specialization_p (tree type)
1745 if (!CLASSTYPE_TEMPLATE_SPECIALIZATION (type))
1746 return false;
1747 return !uses_template_parms (CLASSTYPE_TI_ARGS (type));
1750 /* Print the list of functions at FNS, going through all the overloads
1751 for each element of the list. Alternatively, FNS can not be a
1752 TREE_LIST, in which case it will be printed together with all the
1753 overloads.
1755 MORE and *STR should respectively be FALSE and NULL when the function
1756 is called from the outside. They are used internally on recursive
1757 calls. print_candidates manages the two parameters and leaves NULL
1758 in *STR when it ends. */
1760 static void
1761 print_candidates_1 (tree fns, bool more, const char **str)
1763 tree fn, fn2;
1764 char *spaces = NULL;
1766 for (fn = fns; fn; fn = OVL_NEXT (fn))
1767 if (TREE_CODE (fn) == TREE_LIST)
1769 for (fn2 = fn; fn2 != NULL_TREE; fn2 = TREE_CHAIN (fn2))
1770 print_candidates_1 (TREE_VALUE (fn2),
1771 TREE_CHAIN (fn2) || more, str);
1773 else
1775 tree cand = OVL_CURRENT (fn);
1776 if (!*str)
1778 /* Pick the prefix string. */
1779 if (!more && !OVL_NEXT (fns))
1781 inform (DECL_SOURCE_LOCATION (cand),
1782 "candidate is: %#D", cand);
1783 continue;
1786 *str = _("candidates are:");
1787 spaces = get_spaces (*str);
1789 inform (DECL_SOURCE_LOCATION (cand), "%s %#D", *str, cand);
1790 *str = spaces ? spaces : *str;
1793 if (!more)
1795 free (spaces);
1796 *str = NULL;
1800 /* Print the list of candidate FNS in an error message. FNS can also
1801 be a TREE_LIST of non-functions in the case of an ambiguous lookup. */
1803 void
1804 print_candidates (tree fns)
1806 const char *str = NULL;
1807 print_candidates_1 (fns, false, &str);
1808 gcc_assert (str == NULL);
1811 /* Returns the template (one of the functions given by TEMPLATE_ID)
1812 which can be specialized to match the indicated DECL with the
1813 explicit template args given in TEMPLATE_ID. The DECL may be
1814 NULL_TREE if none is available. In that case, the functions in
1815 TEMPLATE_ID are non-members.
1817 If NEED_MEMBER_TEMPLATE is nonzero the function is known to be a
1818 specialization of a member template.
1820 The TEMPLATE_COUNT is the number of references to qualifying
1821 template classes that appeared in the name of the function. See
1822 check_explicit_specialization for a more accurate description.
1824 TSK indicates what kind of template declaration (if any) is being
1825 declared. TSK_TEMPLATE indicates that the declaration given by
1826 DECL, though a FUNCTION_DECL, has template parameters, and is
1827 therefore a template function.
1829 The template args (those explicitly specified and those deduced)
1830 are output in a newly created vector *TARGS_OUT.
1832 If it is impossible to determine the result, an error message is
1833 issued. The error_mark_node is returned to indicate failure. */
1835 static tree
1836 determine_specialization (tree template_id,
1837 tree decl,
1838 tree* targs_out,
1839 int need_member_template,
1840 int template_count,
1841 tmpl_spec_kind tsk)
1843 tree fns;
1844 tree targs;
1845 tree explicit_targs;
1846 tree candidates = NULL_TREE;
1847 /* A TREE_LIST of templates of which DECL may be a specialization.
1848 The TREE_VALUE of each node is a TEMPLATE_DECL. The
1849 corresponding TREE_PURPOSE is the set of template arguments that,
1850 when used to instantiate the template, would produce a function
1851 with the signature of DECL. */
1852 tree templates = NULL_TREE;
1853 int header_count;
1854 cp_binding_level *b;
1856 *targs_out = NULL_TREE;
1858 if (template_id == error_mark_node || decl == error_mark_node)
1859 return error_mark_node;
1861 /* We shouldn't be specializing a member template of an
1862 unspecialized class template; we already gave an error in
1863 check_specialization_scope, now avoid crashing. */
1864 if (template_count && DECL_CLASS_SCOPE_P (decl)
1865 && template_class_depth (DECL_CONTEXT (decl)) > 0)
1867 gcc_assert (errorcount);
1868 return error_mark_node;
1871 fns = TREE_OPERAND (template_id, 0);
1872 explicit_targs = TREE_OPERAND (template_id, 1);
1874 if (fns == error_mark_node)
1875 return error_mark_node;
1877 /* Check for baselinks. */
1878 if (BASELINK_P (fns))
1879 fns = BASELINK_FUNCTIONS (fns);
1881 if (!is_overloaded_fn (fns))
1883 error ("%qD is not a function template", fns);
1884 return error_mark_node;
1887 /* Count the number of template headers specified for this
1888 specialization. */
1889 header_count = 0;
1890 for (b = current_binding_level;
1891 b->kind == sk_template_parms;
1892 b = b->level_chain)
1893 ++header_count;
1895 for (; fns; fns = OVL_NEXT (fns))
1897 tree fn = OVL_CURRENT (fns);
1899 if (TREE_CODE (fn) == TEMPLATE_DECL)
1901 tree decl_arg_types;
1902 tree fn_arg_types;
1903 tree insttype;
1905 /* In case of explicit specialization, we need to check if
1906 the number of template headers appearing in the specialization
1907 is correct. This is usually done in check_explicit_specialization,
1908 but the check done there cannot be exhaustive when specializing
1909 member functions. Consider the following code:
1911 template <> void A<int>::f(int);
1912 template <> template <> void A<int>::f(int);
1914 Assuming that A<int> is not itself an explicit specialization
1915 already, the first line specializes "f" which is a non-template
1916 member function, whilst the second line specializes "f" which
1917 is a template member function. So both lines are syntactically
1918 correct, and check_explicit_specialization does not reject
1919 them.
1921 Here, we can do better, as we are matching the specialization
1922 against the declarations. We count the number of template
1923 headers, and we check if they match TEMPLATE_COUNT + 1
1924 (TEMPLATE_COUNT is the number of qualifying template classes,
1925 plus there must be another header for the member template
1926 itself).
1928 Notice that if header_count is zero, this is not a
1929 specialization but rather a template instantiation, so there
1930 is no check we can perform here. */
1931 if (header_count && header_count != template_count + 1)
1932 continue;
1934 /* Check that the number of template arguments at the
1935 innermost level for DECL is the same as for FN. */
1936 if (current_binding_level->kind == sk_template_parms
1937 && !current_binding_level->explicit_spec_p
1938 && (TREE_VEC_LENGTH (DECL_INNERMOST_TEMPLATE_PARMS (fn))
1939 != TREE_VEC_LENGTH (INNERMOST_TEMPLATE_PARMS
1940 (current_template_parms))))
1941 continue;
1943 /* DECL might be a specialization of FN. */
1944 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
1945 fn_arg_types = TYPE_ARG_TYPES (TREE_TYPE (fn));
1947 /* For a non-static member function, we need to make sure
1948 that the const qualification is the same. Since
1949 get_bindings does not try to merge the "this" parameter,
1950 we must do the comparison explicitly. */
1951 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
1952 && !same_type_p (TREE_VALUE (fn_arg_types),
1953 TREE_VALUE (decl_arg_types)))
1954 continue;
1956 /* Skip the "this" parameter and, for constructors of
1957 classes with virtual bases, the VTT parameter. A
1958 full specialization of a constructor will have a VTT
1959 parameter, but a template never will. */
1960 decl_arg_types
1961 = skip_artificial_parms_for (decl, decl_arg_types);
1962 fn_arg_types
1963 = skip_artificial_parms_for (fn, fn_arg_types);
1965 /* Function templates cannot be specializations; there are
1966 no partial specializations of functions. Therefore, if
1967 the type of DECL does not match FN, there is no
1968 match. */
1969 if (tsk == tsk_template)
1971 if (compparms (fn_arg_types, decl_arg_types))
1972 candidates = tree_cons (NULL_TREE, fn, candidates);
1973 continue;
1976 /* See whether this function might be a specialization of this
1977 template. Suppress access control because we might be trying
1978 to make this specialization a friend, and we have already done
1979 access control for the declaration of the specialization. */
1980 push_deferring_access_checks (dk_no_check);
1981 targs = get_bindings (fn, decl, explicit_targs, /*check_ret=*/true);
1982 pop_deferring_access_checks ();
1984 if (!targs)
1985 /* We cannot deduce template arguments that when used to
1986 specialize TMPL will produce DECL. */
1987 continue;
1989 /* Make sure that the deduced arguments actually work. */
1990 insttype = tsubst (TREE_TYPE (fn), targs, tf_none, NULL_TREE);
1991 if (insttype == error_mark_node)
1992 continue;
1993 fn_arg_types
1994 = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (insttype));
1995 if (!compparms (fn_arg_types, decl_arg_types))
1996 continue;
1998 /* Save this template, and the arguments deduced. */
1999 templates = tree_cons (targs, fn, templates);
2001 else if (need_member_template)
2002 /* FN is an ordinary member function, and we need a
2003 specialization of a member template. */
2005 else if (TREE_CODE (fn) != FUNCTION_DECL)
2006 /* We can get IDENTIFIER_NODEs here in certain erroneous
2007 cases. */
2009 else if (!DECL_FUNCTION_MEMBER_P (fn))
2010 /* This is just an ordinary non-member function. Nothing can
2011 be a specialization of that. */
2013 else if (DECL_ARTIFICIAL (fn))
2014 /* Cannot specialize functions that are created implicitly. */
2016 else
2018 tree decl_arg_types;
2020 /* This is an ordinary member function. However, since
2021 we're here, we can assume its enclosing class is a
2022 template class. For example,
2024 template <typename T> struct S { void f(); };
2025 template <> void S<int>::f() {}
2027 Here, S<int>::f is a non-template, but S<int> is a
2028 template class. If FN has the same type as DECL, we
2029 might be in business. */
2031 if (!DECL_TEMPLATE_INFO (fn))
2032 /* Its enclosing class is an explicit specialization
2033 of a template class. This is not a candidate. */
2034 continue;
2036 if (!same_type_p (TREE_TYPE (TREE_TYPE (decl)),
2037 TREE_TYPE (TREE_TYPE (fn))))
2038 /* The return types differ. */
2039 continue;
2041 /* Adjust the type of DECL in case FN is a static member. */
2042 decl_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
2043 if (DECL_STATIC_FUNCTION_P (fn)
2044 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2045 decl_arg_types = TREE_CHAIN (decl_arg_types);
2047 if (compparms (TYPE_ARG_TYPES (TREE_TYPE (fn)),
2048 decl_arg_types))
2049 /* They match! */
2050 candidates = tree_cons (NULL_TREE, fn, candidates);
2054 if (templates && TREE_CHAIN (templates))
2056 /* We have:
2058 [temp.expl.spec]
2060 It is possible for a specialization with a given function
2061 signature to be instantiated from more than one function
2062 template. In such cases, explicit specification of the
2063 template arguments must be used to uniquely identify the
2064 function template specialization being specialized.
2066 Note that here, there's no suggestion that we're supposed to
2067 determine which of the candidate templates is most
2068 specialized. However, we, also have:
2070 [temp.func.order]
2072 Partial ordering of overloaded function template
2073 declarations is used in the following contexts to select
2074 the function template to which a function template
2075 specialization refers:
2077 -- when an explicit specialization refers to a function
2078 template.
2080 So, we do use the partial ordering rules, at least for now.
2081 This extension can only serve to make invalid programs valid,
2082 so it's safe. And, there is strong anecdotal evidence that
2083 the committee intended the partial ordering rules to apply;
2084 the EDG front end has that behavior, and John Spicer claims
2085 that the committee simply forgot to delete the wording in
2086 [temp.expl.spec]. */
2087 tree tmpl = most_specialized_instantiation (templates);
2088 if (tmpl != error_mark_node)
2090 templates = tmpl;
2091 TREE_CHAIN (templates) = NULL_TREE;
2095 if (templates == NULL_TREE && candidates == NULL_TREE)
2097 error ("template-id %qD for %q+D does not match any template "
2098 "declaration", template_id, decl);
2099 if (header_count && header_count != template_count + 1)
2100 inform (input_location, "saw %d %<template<>%>, need %d for "
2101 "specializing a member function template",
2102 header_count, template_count + 1);
2103 return error_mark_node;
2105 else if ((templates && TREE_CHAIN (templates))
2106 || (candidates && TREE_CHAIN (candidates))
2107 || (templates && candidates))
2109 error ("ambiguous template specialization %qD for %q+D",
2110 template_id, decl);
2111 candidates = chainon (candidates, templates);
2112 print_candidates (candidates);
2113 return error_mark_node;
2116 /* We have one, and exactly one, match. */
2117 if (candidates)
2119 tree fn = TREE_VALUE (candidates);
2120 *targs_out = copy_node (DECL_TI_ARGS (fn));
2121 /* DECL is a re-declaration or partial instantiation of a template
2122 function. */
2123 if (TREE_CODE (fn) == TEMPLATE_DECL)
2124 return fn;
2125 /* It was a specialization of an ordinary member function in a
2126 template class. */
2127 return DECL_TI_TEMPLATE (fn);
2130 /* It was a specialization of a template. */
2131 targs = DECL_TI_ARGS (DECL_TEMPLATE_RESULT (TREE_VALUE (templates)));
2132 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (targs))
2134 *targs_out = copy_node (targs);
2135 SET_TMPL_ARGS_LEVEL (*targs_out,
2136 TMPL_ARGS_DEPTH (*targs_out),
2137 TREE_PURPOSE (templates));
2139 else
2140 *targs_out = TREE_PURPOSE (templates);
2141 return TREE_VALUE (templates);
2144 /* Returns a chain of parameter types, exactly like the SPEC_TYPES,
2145 but with the default argument values filled in from those in the
2146 TMPL_TYPES. */
2148 static tree
2149 copy_default_args_to_explicit_spec_1 (tree spec_types,
2150 tree tmpl_types)
2152 tree new_spec_types;
2154 if (!spec_types)
2155 return NULL_TREE;
2157 if (spec_types == void_list_node)
2158 return void_list_node;
2160 /* Substitute into the rest of the list. */
2161 new_spec_types =
2162 copy_default_args_to_explicit_spec_1 (TREE_CHAIN (spec_types),
2163 TREE_CHAIN (tmpl_types));
2165 /* Add the default argument for this parameter. */
2166 return hash_tree_cons (TREE_PURPOSE (tmpl_types),
2167 TREE_VALUE (spec_types),
2168 new_spec_types);
2171 /* DECL is an explicit specialization. Replicate default arguments
2172 from the template it specializes. (That way, code like:
2174 template <class T> void f(T = 3);
2175 template <> void f(double);
2176 void g () { f (); }
2178 works, as required.) An alternative approach would be to look up
2179 the correct default arguments at the call-site, but this approach
2180 is consistent with how implicit instantiations are handled. */
2182 static void
2183 copy_default_args_to_explicit_spec (tree decl)
2185 tree tmpl;
2186 tree spec_types;
2187 tree tmpl_types;
2188 tree new_spec_types;
2189 tree old_type;
2190 tree new_type;
2191 tree t;
2192 tree object_type = NULL_TREE;
2193 tree in_charge = NULL_TREE;
2194 tree vtt = NULL_TREE;
2196 /* See if there's anything we need to do. */
2197 tmpl = DECL_TI_TEMPLATE (decl);
2198 tmpl_types = TYPE_ARG_TYPES (TREE_TYPE (DECL_TEMPLATE_RESULT (tmpl)));
2199 for (t = tmpl_types; t; t = TREE_CHAIN (t))
2200 if (TREE_PURPOSE (t))
2201 break;
2202 if (!t)
2203 return;
2205 old_type = TREE_TYPE (decl);
2206 spec_types = TYPE_ARG_TYPES (old_type);
2208 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2210 /* Remove the this pointer, but remember the object's type for
2211 CV quals. */
2212 object_type = TREE_TYPE (TREE_VALUE (spec_types));
2213 spec_types = TREE_CHAIN (spec_types);
2214 tmpl_types = TREE_CHAIN (tmpl_types);
2216 if (DECL_HAS_IN_CHARGE_PARM_P (decl))
2218 /* DECL may contain more parameters than TMPL due to the extra
2219 in-charge parameter in constructors and destructors. */
2220 in_charge = spec_types;
2221 spec_types = TREE_CHAIN (spec_types);
2223 if (DECL_HAS_VTT_PARM_P (decl))
2225 vtt = spec_types;
2226 spec_types = TREE_CHAIN (spec_types);
2230 /* Compute the merged default arguments. */
2231 new_spec_types =
2232 copy_default_args_to_explicit_spec_1 (spec_types, tmpl_types);
2234 /* Compute the new FUNCTION_TYPE. */
2235 if (object_type)
2237 if (vtt)
2238 new_spec_types = hash_tree_cons (TREE_PURPOSE (vtt),
2239 TREE_VALUE (vtt),
2240 new_spec_types);
2242 if (in_charge)
2243 /* Put the in-charge parameter back. */
2244 new_spec_types = hash_tree_cons (TREE_PURPOSE (in_charge),
2245 TREE_VALUE (in_charge),
2246 new_spec_types);
2248 new_type = build_method_type_directly (object_type,
2249 TREE_TYPE (old_type),
2250 new_spec_types);
2252 else
2253 new_type = build_function_type (TREE_TYPE (old_type),
2254 new_spec_types);
2255 new_type = cp_build_type_attribute_variant (new_type,
2256 TYPE_ATTRIBUTES (old_type));
2257 new_type = build_exception_variant (new_type,
2258 TYPE_RAISES_EXCEPTIONS (old_type));
2259 TREE_TYPE (decl) = new_type;
2262 /* Return the number of template headers we expect to see for a definition
2263 or specialization of CTYPE or one of its non-template members. */
2266 num_template_headers_for_class (tree ctype)
2268 int num_templates = 0;
2270 while (ctype && CLASS_TYPE_P (ctype))
2272 /* You're supposed to have one `template <...>' for every
2273 template class, but you don't need one for a full
2274 specialization. For example:
2276 template <class T> struct S{};
2277 template <> struct S<int> { void f(); };
2278 void S<int>::f () {}
2280 is correct; there shouldn't be a `template <>' for the
2281 definition of `S<int>::f'. */
2282 if (!CLASSTYPE_TEMPLATE_INFO (ctype))
2283 /* If CTYPE does not have template information of any
2284 kind, then it is not a template, nor is it nested
2285 within a template. */
2286 break;
2287 if (explicit_class_specialization_p (ctype))
2288 break;
2289 if (PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (ctype)))
2290 ++num_templates;
2292 ctype = TYPE_CONTEXT (ctype);
2295 return num_templates;
2298 /* Do a simple sanity check on the template headers that precede the
2299 variable declaration DECL. */
2301 void
2302 check_template_variable (tree decl)
2304 tree ctx = CP_DECL_CONTEXT (decl);
2305 int wanted = num_template_headers_for_class (ctx);
2306 if (!TYPE_P (ctx) || !CLASSTYPE_TEMPLATE_INFO (ctx))
2307 permerror (DECL_SOURCE_LOCATION (decl),
2308 "%qD is not a static data member of a class template", decl);
2309 else if (template_header_count > wanted)
2311 bool warned = pedwarn (DECL_SOURCE_LOCATION (decl), 0,
2312 "too many template headers for %D (should be %d)",
2313 decl, wanted);
2314 if (warned && CLASSTYPE_TEMPLATE_SPECIALIZATION (ctx))
2315 inform (DECL_SOURCE_LOCATION (decl),
2316 "members of an explicitly specialized class are defined "
2317 "without a template header");
2321 /* Check to see if the function just declared, as indicated in
2322 DECLARATOR, and in DECL, is a specialization of a function
2323 template. We may also discover that the declaration is an explicit
2324 instantiation at this point.
2326 Returns DECL, or an equivalent declaration that should be used
2327 instead if all goes well. Issues an error message if something is
2328 amiss. Returns error_mark_node if the error is not easily
2329 recoverable.
2331 FLAGS is a bitmask consisting of the following flags:
2333 2: The function has a definition.
2334 4: The function is a friend.
2336 The TEMPLATE_COUNT is the number of references to qualifying
2337 template classes that appeared in the name of the function. For
2338 example, in
2340 template <class T> struct S { void f(); };
2341 void S<int>::f();
2343 the TEMPLATE_COUNT would be 1. However, explicitly specialized
2344 classes are not counted in the TEMPLATE_COUNT, so that in
2346 template <class T> struct S {};
2347 template <> struct S<int> { void f(); }
2348 template <> void S<int>::f();
2350 the TEMPLATE_COUNT would be 0. (Note that this declaration is
2351 invalid; there should be no template <>.)
2353 If the function is a specialization, it is marked as such via
2354 DECL_TEMPLATE_SPECIALIZATION. Furthermore, its DECL_TEMPLATE_INFO
2355 is set up correctly, and it is added to the list of specializations
2356 for that template. */
2358 tree
2359 check_explicit_specialization (tree declarator,
2360 tree decl,
2361 int template_count,
2362 int flags)
2364 int have_def = flags & 2;
2365 int is_friend = flags & 4;
2366 int specialization = 0;
2367 int explicit_instantiation = 0;
2368 int member_specialization = 0;
2369 tree ctype = DECL_CLASS_CONTEXT (decl);
2370 tree dname = DECL_NAME (decl);
2371 tmpl_spec_kind tsk;
2373 if (is_friend)
2375 if (!processing_specialization)
2376 tsk = tsk_none;
2377 else
2378 tsk = tsk_excessive_parms;
2380 else
2381 tsk = current_tmpl_spec_kind (template_count);
2383 switch (tsk)
2385 case tsk_none:
2386 if (processing_specialization)
2388 specialization = 1;
2389 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2391 else if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2393 if (is_friend)
2394 /* This could be something like:
2396 template <class T> void f(T);
2397 class S { friend void f<>(int); } */
2398 specialization = 1;
2399 else
2401 /* This case handles bogus declarations like template <>
2402 template <class T> void f<int>(); */
2404 error ("template-id %qD in declaration of primary template",
2405 declarator);
2406 return decl;
2409 break;
2411 case tsk_invalid_member_spec:
2412 /* The error has already been reported in
2413 check_specialization_scope. */
2414 return error_mark_node;
2416 case tsk_invalid_expl_inst:
2417 error ("template parameter list used in explicit instantiation");
2419 /* Fall through. */
2421 case tsk_expl_inst:
2422 if (have_def)
2423 error ("definition provided for explicit instantiation");
2425 explicit_instantiation = 1;
2426 break;
2428 case tsk_excessive_parms:
2429 case tsk_insufficient_parms:
2430 if (tsk == tsk_excessive_parms)
2431 error ("too many template parameter lists in declaration of %qD",
2432 decl);
2433 else if (template_header_count)
2434 error("too few template parameter lists in declaration of %qD", decl);
2435 else
2436 error("explicit specialization of %qD must be introduced by "
2437 "%<template <>%>", decl);
2439 /* Fall through. */
2440 case tsk_expl_spec:
2441 SET_DECL_TEMPLATE_SPECIALIZATION (decl);
2442 if (ctype)
2443 member_specialization = 1;
2444 else
2445 specialization = 1;
2446 break;
2448 case tsk_template:
2449 if (TREE_CODE (declarator) == TEMPLATE_ID_EXPR)
2451 /* This case handles bogus declarations like template <>
2452 template <class T> void f<int>(); */
2454 if (uses_template_parms (declarator))
2455 error ("function template partial specialization %qD "
2456 "is not allowed", declarator);
2457 else
2458 error ("template-id %qD in declaration of primary template",
2459 declarator);
2460 return decl;
2463 if (ctype && CLASSTYPE_TEMPLATE_INSTANTIATION (ctype))
2464 /* This is a specialization of a member template, without
2465 specialization the containing class. Something like:
2467 template <class T> struct S {
2468 template <class U> void f (U);
2470 template <> template <class U> void S<int>::f(U) {}
2472 That's a specialization -- but of the entire template. */
2473 specialization = 1;
2474 break;
2476 default:
2477 gcc_unreachable ();
2480 if (specialization || member_specialization)
2482 tree t = TYPE_ARG_TYPES (TREE_TYPE (decl));
2483 for (; t; t = TREE_CHAIN (t))
2484 if (TREE_PURPOSE (t))
2486 permerror (input_location,
2487 "default argument specified in explicit specialization");
2488 break;
2492 if (specialization || member_specialization || explicit_instantiation)
2494 tree tmpl = NULL_TREE;
2495 tree targs = NULL_TREE;
2497 /* Make sure that the declarator is a TEMPLATE_ID_EXPR. */
2498 if (TREE_CODE (declarator) != TEMPLATE_ID_EXPR)
2500 tree fns;
2502 gcc_assert (identifier_p (declarator));
2503 if (ctype)
2504 fns = dname;
2505 else
2507 /* If there is no class context, the explicit instantiation
2508 must be at namespace scope. */
2509 gcc_assert (DECL_NAMESPACE_SCOPE_P (decl));
2511 /* Find the namespace binding, using the declaration
2512 context. */
2513 fns = lookup_qualified_name (CP_DECL_CONTEXT (decl), dname,
2514 false, true);
2515 if (fns == error_mark_node || !is_overloaded_fn (fns))
2517 error ("%qD is not a template function", dname);
2518 fns = error_mark_node;
2520 else
2522 tree fn = OVL_CURRENT (fns);
2523 if (!is_associated_namespace (CP_DECL_CONTEXT (decl),
2524 CP_DECL_CONTEXT (fn)))
2525 error ("%qD is not declared in %qD",
2526 decl, current_namespace);
2530 declarator = lookup_template_function (fns, NULL_TREE);
2533 if (declarator == error_mark_node)
2534 return error_mark_node;
2536 if (ctype != NULL_TREE && TYPE_BEING_DEFINED (ctype))
2538 if (!explicit_instantiation)
2539 /* A specialization in class scope. This is invalid,
2540 but the error will already have been flagged by
2541 check_specialization_scope. */
2542 return error_mark_node;
2543 else
2545 /* It's not valid to write an explicit instantiation in
2546 class scope, e.g.:
2548 class C { template void f(); }
2550 This case is caught by the parser. However, on
2551 something like:
2553 template class C { void f(); };
2555 (which is invalid) we can get here. The error will be
2556 issued later. */
2560 return decl;
2562 else if (ctype != NULL_TREE
2563 && (identifier_p (TREE_OPERAND (declarator, 0))))
2565 /* Find the list of functions in ctype that have the same
2566 name as the declared function. */
2567 tree name = TREE_OPERAND (declarator, 0);
2568 tree fns = NULL_TREE;
2569 int idx;
2571 if (constructor_name_p (name, ctype))
2573 int is_constructor = DECL_CONSTRUCTOR_P (decl);
2575 if (is_constructor ? !TYPE_HAS_USER_CONSTRUCTOR (ctype)
2576 : !CLASSTYPE_DESTRUCTORS (ctype))
2578 /* From [temp.expl.spec]:
2580 If such an explicit specialization for the member
2581 of a class template names an implicitly-declared
2582 special member function (clause _special_), the
2583 program is ill-formed.
2585 Similar language is found in [temp.explicit]. */
2586 error ("specialization of implicitly-declared special member function");
2587 return error_mark_node;
2590 name = is_constructor ? ctor_identifier : dtor_identifier;
2593 if (!DECL_CONV_FN_P (decl))
2595 idx = lookup_fnfields_1 (ctype, name);
2596 if (idx >= 0)
2597 fns = (*CLASSTYPE_METHOD_VEC (ctype))[idx];
2599 else
2601 vec<tree, va_gc> *methods;
2602 tree ovl;
2604 /* For a type-conversion operator, we cannot do a
2605 name-based lookup. We might be looking for `operator
2606 int' which will be a specialization of `operator T'.
2607 So, we find *all* the conversion operators, and then
2608 select from them. */
2609 fns = NULL_TREE;
2611 methods = CLASSTYPE_METHOD_VEC (ctype);
2612 if (methods)
2613 for (idx = CLASSTYPE_FIRST_CONVERSION_SLOT;
2614 methods->iterate (idx, &ovl);
2615 ++idx)
2617 if (!DECL_CONV_FN_P (OVL_CURRENT (ovl)))
2618 /* There are no more conversion functions. */
2619 break;
2621 /* Glue all these conversion functions together
2622 with those we already have. */
2623 for (; ovl; ovl = OVL_NEXT (ovl))
2624 fns = ovl_cons (OVL_CURRENT (ovl), fns);
2628 if (fns == NULL_TREE)
2630 error ("no member function %qD declared in %qT", name, ctype);
2631 return error_mark_node;
2633 else
2634 TREE_OPERAND (declarator, 0) = fns;
2637 /* Figure out what exactly is being specialized at this point.
2638 Note that for an explicit instantiation, even one for a
2639 member function, we cannot tell apriori whether the
2640 instantiation is for a member template, or just a member
2641 function of a template class. Even if a member template is
2642 being instantiated, the member template arguments may be
2643 elided if they can be deduced from the rest of the
2644 declaration. */
2645 tmpl = determine_specialization (declarator, decl,
2646 &targs,
2647 member_specialization,
2648 template_count,
2649 tsk);
2651 if (!tmpl || tmpl == error_mark_node)
2652 /* We couldn't figure out what this declaration was
2653 specializing. */
2654 return error_mark_node;
2655 else
2657 tree gen_tmpl = most_general_template (tmpl);
2659 if (explicit_instantiation)
2661 /* We don't set DECL_EXPLICIT_INSTANTIATION here; that
2662 is done by do_decl_instantiation later. */
2664 int arg_depth = TMPL_ARGS_DEPTH (targs);
2665 int parm_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
2667 if (arg_depth > parm_depth)
2669 /* If TMPL is not the most general template (for
2670 example, if TMPL is a friend template that is
2671 injected into namespace scope), then there will
2672 be too many levels of TARGS. Remove some of them
2673 here. */
2674 int i;
2675 tree new_targs;
2677 new_targs = make_tree_vec (parm_depth);
2678 for (i = arg_depth - parm_depth; i < arg_depth; ++i)
2679 TREE_VEC_ELT (new_targs, i - (arg_depth - parm_depth))
2680 = TREE_VEC_ELT (targs, i);
2681 targs = new_targs;
2684 return instantiate_template (tmpl, targs, tf_error);
2687 /* If we thought that the DECL was a member function, but it
2688 turns out to be specializing a static member function,
2689 make DECL a static member function as well. */
2690 if (DECL_STATIC_FUNCTION_P (tmpl)
2691 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
2692 revert_static_member_fn (decl);
2694 /* If this is a specialization of a member template of a
2695 template class, we want to return the TEMPLATE_DECL, not
2696 the specialization of it. */
2697 if (tsk == tsk_template)
2699 tree result = DECL_TEMPLATE_RESULT (tmpl);
2700 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
2701 DECL_INITIAL (result) = NULL_TREE;
2702 if (have_def)
2704 tree parm;
2705 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
2706 DECL_SOURCE_LOCATION (result)
2707 = DECL_SOURCE_LOCATION (decl);
2708 /* We want to use the argument list specified in the
2709 definition, not in the original declaration. */
2710 DECL_ARGUMENTS (result) = DECL_ARGUMENTS (decl);
2711 for (parm = DECL_ARGUMENTS (result); parm;
2712 parm = DECL_CHAIN (parm))
2713 DECL_CONTEXT (parm) = result;
2715 return register_specialization (tmpl, gen_tmpl, targs,
2716 is_friend, 0);
2719 /* Set up the DECL_TEMPLATE_INFO for DECL. */
2720 DECL_TEMPLATE_INFO (decl) = build_template_info (tmpl, targs);
2722 /* Inherit default function arguments from the template
2723 DECL is specializing. */
2724 copy_default_args_to_explicit_spec (decl);
2726 /* This specialization has the same protection as the
2727 template it specializes. */
2728 TREE_PRIVATE (decl) = TREE_PRIVATE (gen_tmpl);
2729 TREE_PROTECTED (decl) = TREE_PROTECTED (gen_tmpl);
2731 /* 7.1.1-1 [dcl.stc]
2733 A storage-class-specifier shall not be specified in an
2734 explicit specialization...
2736 The parser rejects these, so unless action is taken here,
2737 explicit function specializations will always appear with
2738 global linkage.
2740 The action recommended by the C++ CWG in response to C++
2741 defect report 605 is to make the storage class and linkage
2742 of the explicit specialization match the templated function:
2744 http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#605
2746 if (tsk == tsk_expl_spec && DECL_FUNCTION_TEMPLATE_P (gen_tmpl))
2748 tree tmpl_func = DECL_TEMPLATE_RESULT (gen_tmpl);
2749 gcc_assert (TREE_CODE (tmpl_func) == FUNCTION_DECL);
2751 /* This specialization has the same linkage and visibility as
2752 the function template it specializes. */
2753 TREE_PUBLIC (decl) = TREE_PUBLIC (tmpl_func);
2754 if (! TREE_PUBLIC (decl))
2756 DECL_INTERFACE_KNOWN (decl) = 1;
2757 DECL_NOT_REALLY_EXTERN (decl) = 1;
2759 DECL_THIS_STATIC (decl) = DECL_THIS_STATIC (tmpl_func);
2760 if (DECL_VISIBILITY_SPECIFIED (tmpl_func))
2762 DECL_VISIBILITY_SPECIFIED (decl) = 1;
2763 DECL_VISIBILITY (decl) = DECL_VISIBILITY (tmpl_func);
2767 /* If DECL is a friend declaration, declared using an
2768 unqualified name, the namespace associated with DECL may
2769 have been set incorrectly. For example, in:
2771 template <typename T> void f(T);
2772 namespace N {
2773 struct S { friend void f<int>(int); }
2776 we will have set the DECL_CONTEXT for the friend
2777 declaration to N, rather than to the global namespace. */
2778 if (DECL_NAMESPACE_SCOPE_P (decl))
2779 DECL_CONTEXT (decl) = DECL_CONTEXT (tmpl);
2781 if (is_friend && !have_def)
2782 /* This is not really a declaration of a specialization.
2783 It's just the name of an instantiation. But, it's not
2784 a request for an instantiation, either. */
2785 SET_DECL_IMPLICIT_INSTANTIATION (decl);
2787 /* Register this specialization so that we can find it
2788 again. */
2789 decl = register_specialization (decl, gen_tmpl, targs, is_friend, 0);
2791 /* A 'structor should already have clones. */
2792 gcc_assert (decl == error_mark_node
2793 || !(DECL_CONSTRUCTOR_P (decl)
2794 || DECL_DESTRUCTOR_P (decl))
2795 || DECL_CLONED_FUNCTION_P (DECL_CHAIN (decl)));
2799 return decl;
2802 /* Returns 1 iff PARMS1 and PARMS2 are identical sets of template
2803 parameters. These are represented in the same format used for
2804 DECL_TEMPLATE_PARMS. */
2807 comp_template_parms (const_tree parms1, const_tree parms2)
2809 const_tree p1;
2810 const_tree p2;
2812 if (parms1 == parms2)
2813 return 1;
2815 for (p1 = parms1, p2 = parms2;
2816 p1 != NULL_TREE && p2 != NULL_TREE;
2817 p1 = TREE_CHAIN (p1), p2 = TREE_CHAIN (p2))
2819 tree t1 = TREE_VALUE (p1);
2820 tree t2 = TREE_VALUE (p2);
2821 int i;
2823 gcc_assert (TREE_CODE (t1) == TREE_VEC);
2824 gcc_assert (TREE_CODE (t2) == TREE_VEC);
2826 if (TREE_VEC_LENGTH (t1) != TREE_VEC_LENGTH (t2))
2827 return 0;
2829 for (i = 0; i < TREE_VEC_LENGTH (t2); ++i)
2831 tree parm1 = TREE_VALUE (TREE_VEC_ELT (t1, i));
2832 tree parm2 = TREE_VALUE (TREE_VEC_ELT (t2, i));
2834 /* If either of the template parameters are invalid, assume
2835 they match for the sake of error recovery. */
2836 if (error_operand_p (parm1) || error_operand_p (parm2))
2837 return 1;
2839 if (TREE_CODE (parm1) != TREE_CODE (parm2))
2840 return 0;
2842 if (TREE_CODE (parm1) == TEMPLATE_TYPE_PARM
2843 && (TEMPLATE_TYPE_PARAMETER_PACK (parm1)
2844 == TEMPLATE_TYPE_PARAMETER_PACK (parm2)))
2845 continue;
2846 else if (!same_type_p (TREE_TYPE (parm1), TREE_TYPE (parm2)))
2847 return 0;
2851 if ((p1 != NULL_TREE) != (p2 != NULL_TREE))
2852 /* One set of parameters has more parameters lists than the
2853 other. */
2854 return 0;
2856 return 1;
2859 /* Determine whether PARM is a parameter pack. */
2861 bool
2862 template_parameter_pack_p (const_tree parm)
2864 /* Determine if we have a non-type template parameter pack. */
2865 if (TREE_CODE (parm) == PARM_DECL)
2866 return (DECL_TEMPLATE_PARM_P (parm)
2867 && TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)));
2868 if (TREE_CODE (parm) == TEMPLATE_PARM_INDEX)
2869 return TEMPLATE_PARM_PARAMETER_PACK (parm);
2871 /* If this is a list of template parameters, we could get a
2872 TYPE_DECL or a TEMPLATE_DECL. */
2873 if (TREE_CODE (parm) == TYPE_DECL || TREE_CODE (parm) == TEMPLATE_DECL)
2874 parm = TREE_TYPE (parm);
2876 /* Otherwise it must be a type template parameter. */
2877 return ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
2878 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
2879 && TEMPLATE_TYPE_PARAMETER_PACK (parm));
2882 /* Determine if T is a function parameter pack. */
2884 bool
2885 function_parameter_pack_p (const_tree t)
2887 if (t && TREE_CODE (t) == PARM_DECL)
2888 return DECL_PACK_P (t);
2889 return false;
2892 /* Return the function template declaration of PRIMARY_FUNC_TMPL_INST.
2893 PRIMARY_FUNC_TMPL_INST is a primary function template instantiation. */
2895 tree
2896 get_function_template_decl (const_tree primary_func_tmpl_inst)
2898 if (! primary_func_tmpl_inst
2899 || TREE_CODE (primary_func_tmpl_inst) != FUNCTION_DECL
2900 || ! primary_template_instantiation_p (primary_func_tmpl_inst))
2901 return NULL;
2903 return DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (primary_func_tmpl_inst));
2906 /* Return true iff the function parameter PARAM_DECL was expanded
2907 from the function parameter pack PACK. */
2909 bool
2910 function_parameter_expanded_from_pack_p (tree param_decl, tree pack)
2912 if (DECL_ARTIFICIAL (param_decl)
2913 || !function_parameter_pack_p (pack))
2914 return false;
2916 /* The parameter pack and its pack arguments have the same
2917 DECL_PARM_INDEX. */
2918 return DECL_PARM_INDEX (pack) == DECL_PARM_INDEX (param_decl);
2921 /* Determine whether ARGS describes a variadic template args list,
2922 i.e., one that is terminated by a template argument pack. */
2924 static bool
2925 template_args_variadic_p (tree args)
2927 int nargs;
2928 tree last_parm;
2930 if (args == NULL_TREE)
2931 return false;
2933 args = INNERMOST_TEMPLATE_ARGS (args);
2934 nargs = TREE_VEC_LENGTH (args);
2936 if (nargs == 0)
2937 return false;
2939 last_parm = TREE_VEC_ELT (args, nargs - 1);
2941 return ARGUMENT_PACK_P (last_parm);
2944 /* Generate a new name for the parameter pack name NAME (an
2945 IDENTIFIER_NODE) that incorporates its */
2947 static tree
2948 make_ith_pack_parameter_name (tree name, int i)
2950 /* Munge the name to include the parameter index. */
2951 #define NUMBUF_LEN 128
2952 char numbuf[NUMBUF_LEN];
2953 char* newname;
2954 int newname_len;
2956 if (name == NULL_TREE)
2957 return name;
2958 snprintf (numbuf, NUMBUF_LEN, "%i", i);
2959 newname_len = IDENTIFIER_LENGTH (name)
2960 + strlen (numbuf) + 2;
2961 newname = (char*)alloca (newname_len);
2962 snprintf (newname, newname_len,
2963 "%s#%i", IDENTIFIER_POINTER (name), i);
2964 return get_identifier (newname);
2967 /* Return true if T is a primary function, class or alias template
2968 instantiation. */
2970 bool
2971 primary_template_instantiation_p (const_tree t)
2973 if (!t)
2974 return false;
2976 if (TREE_CODE (t) == FUNCTION_DECL)
2977 return DECL_LANG_SPECIFIC (t)
2978 && DECL_TEMPLATE_INSTANTIATION (t)
2979 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (t));
2980 else if (CLASS_TYPE_P (t) && !TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
2981 return CLASSTYPE_TEMPLATE_INSTANTIATION (t)
2982 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (t));
2983 else if (alias_template_specialization_p (t))
2984 return true;
2985 return false;
2988 /* Return true if PARM is a template template parameter. */
2990 bool
2991 template_template_parameter_p (const_tree parm)
2993 return DECL_TEMPLATE_TEMPLATE_PARM_P (parm);
2996 /* Return true iff PARM is a DECL representing a type template
2997 parameter. */
2999 bool
3000 template_type_parameter_p (const_tree parm)
3002 return (parm
3003 && (TREE_CODE (parm) == TYPE_DECL
3004 || TREE_CODE (parm) == TEMPLATE_DECL)
3005 && DECL_TEMPLATE_PARM_P (parm));
3008 /* Return the template parameters of T if T is a
3009 primary template instantiation, NULL otherwise. */
3011 tree
3012 get_primary_template_innermost_parameters (const_tree t)
3014 tree parms = NULL, template_info = NULL;
3016 if ((template_info = get_template_info (t))
3017 && primary_template_instantiation_p (t))
3018 parms = INNERMOST_TEMPLATE_PARMS
3019 (DECL_TEMPLATE_PARMS (TI_TEMPLATE (template_info)));
3021 return parms;
3024 /* Return the template parameters of the LEVELth level from the full list
3025 of template parameters PARMS. */
3027 tree
3028 get_template_parms_at_level (tree parms, int level)
3030 tree p;
3031 if (!parms
3032 || TREE_CODE (parms) != TREE_LIST
3033 || level > TMPL_PARMS_DEPTH (parms))
3034 return NULL_TREE;
3036 for (p = parms; p; p = TREE_CHAIN (p))
3037 if (TMPL_PARMS_DEPTH (p) == level)
3038 return p;
3040 return NULL_TREE;
3043 /* Returns the template arguments of T if T is a template instantiation,
3044 NULL otherwise. */
3046 tree
3047 get_template_innermost_arguments (const_tree t)
3049 tree args = NULL, template_info = NULL;
3051 if ((template_info = get_template_info (t))
3052 && TI_ARGS (template_info))
3053 args = INNERMOST_TEMPLATE_ARGS (TI_ARGS (template_info));
3055 return args;
3058 /* Return the argument pack elements of T if T is a template argument pack,
3059 NULL otherwise. */
3061 tree
3062 get_template_argument_pack_elems (const_tree t)
3064 if (TREE_CODE (t) != TYPE_ARGUMENT_PACK
3065 && TREE_CODE (t) != NONTYPE_ARGUMENT_PACK)
3066 return NULL;
3068 return ARGUMENT_PACK_ARGS (t);
3071 /* Structure used to track the progress of find_parameter_packs_r. */
3072 struct find_parameter_pack_data
3074 /* TREE_LIST that will contain all of the parameter packs found by
3075 the traversal. */
3076 tree* parameter_packs;
3078 /* Set of AST nodes that have been visited by the traversal. */
3079 struct pointer_set_t *visited;
3082 /* Identifies all of the argument packs that occur in a template
3083 argument and appends them to the TREE_LIST inside DATA, which is a
3084 find_parameter_pack_data structure. This is a subroutine of
3085 make_pack_expansion and uses_parameter_packs. */
3086 static tree
3087 find_parameter_packs_r (tree *tp, int *walk_subtrees, void* data)
3089 tree t = *tp;
3090 struct find_parameter_pack_data* ppd =
3091 (struct find_parameter_pack_data*)data;
3092 bool parameter_pack_p = false;
3094 /* Handle type aliases/typedefs. */
3095 if (TYPE_ALIAS_P (t))
3097 if (TYPE_TEMPLATE_INFO (t))
3098 cp_walk_tree (&TYPE_TI_ARGS (t),
3099 &find_parameter_packs_r,
3100 ppd, ppd->visited);
3101 *walk_subtrees = 0;
3102 return NULL_TREE;
3105 /* Identify whether this is a parameter pack or not. */
3106 switch (TREE_CODE (t))
3108 case TEMPLATE_PARM_INDEX:
3109 if (TEMPLATE_PARM_PARAMETER_PACK (t))
3110 parameter_pack_p = true;
3111 break;
3113 case TEMPLATE_TYPE_PARM:
3114 t = TYPE_MAIN_VARIANT (t);
3115 case TEMPLATE_TEMPLATE_PARM:
3116 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
3117 parameter_pack_p = true;
3118 break;
3120 case FIELD_DECL:
3121 case PARM_DECL:
3122 if (DECL_PACK_P (t))
3124 /* We don't want to walk into the type of a PARM_DECL,
3125 because we don't want to see the type parameter pack. */
3126 *walk_subtrees = 0;
3127 parameter_pack_p = true;
3129 break;
3131 /* Look through a lambda capture proxy to the field pack. */
3132 case VAR_DECL:
3133 if (DECL_HAS_VALUE_EXPR_P (t))
3135 tree v = DECL_VALUE_EXPR (t);
3136 cp_walk_tree (&v,
3137 &find_parameter_packs_r,
3138 ppd, ppd->visited);
3139 *walk_subtrees = 0;
3141 break;
3143 case BASES:
3144 parameter_pack_p = true;
3145 break;
3146 default:
3147 /* Not a parameter pack. */
3148 break;
3151 if (parameter_pack_p)
3153 /* Add this parameter pack to the list. */
3154 *ppd->parameter_packs = tree_cons (NULL_TREE, t, *ppd->parameter_packs);
3157 if (TYPE_P (t))
3158 cp_walk_tree (&TYPE_CONTEXT (t),
3159 &find_parameter_packs_r, ppd, ppd->visited);
3161 /* This switch statement will return immediately if we don't find a
3162 parameter pack. */
3163 switch (TREE_CODE (t))
3165 case TEMPLATE_PARM_INDEX:
3166 return NULL_TREE;
3168 case BOUND_TEMPLATE_TEMPLATE_PARM:
3169 /* Check the template itself. */
3170 cp_walk_tree (&TREE_TYPE (TYPE_TI_TEMPLATE (t)),
3171 &find_parameter_packs_r, ppd, ppd->visited);
3172 /* Check the template arguments. */
3173 cp_walk_tree (&TYPE_TI_ARGS (t), &find_parameter_packs_r, ppd,
3174 ppd->visited);
3175 *walk_subtrees = 0;
3176 return NULL_TREE;
3178 case TEMPLATE_TYPE_PARM:
3179 case TEMPLATE_TEMPLATE_PARM:
3180 return NULL_TREE;
3182 case PARM_DECL:
3183 return NULL_TREE;
3185 case RECORD_TYPE:
3186 if (TYPE_PTRMEMFUNC_P (t))
3187 return NULL_TREE;
3188 /* Fall through. */
3190 case UNION_TYPE:
3191 case ENUMERAL_TYPE:
3192 if (TYPE_TEMPLATE_INFO (t))
3193 cp_walk_tree (&TYPE_TI_ARGS (t),
3194 &find_parameter_packs_r, ppd, ppd->visited);
3196 *walk_subtrees = 0;
3197 return NULL_TREE;
3199 case CONSTRUCTOR:
3200 case TEMPLATE_DECL:
3201 cp_walk_tree (&TREE_TYPE (t),
3202 &find_parameter_packs_r, ppd, ppd->visited);
3203 return NULL_TREE;
3205 case TYPENAME_TYPE:
3206 cp_walk_tree (&TYPENAME_TYPE_FULLNAME (t), &find_parameter_packs_r,
3207 ppd, ppd->visited);
3208 *walk_subtrees = 0;
3209 return NULL_TREE;
3211 case TYPE_PACK_EXPANSION:
3212 case EXPR_PACK_EXPANSION:
3213 *walk_subtrees = 0;
3214 return NULL_TREE;
3216 case INTEGER_TYPE:
3217 cp_walk_tree (&TYPE_MAX_VALUE (t), &find_parameter_packs_r,
3218 ppd, ppd->visited);
3219 *walk_subtrees = 0;
3220 return NULL_TREE;
3222 case IDENTIFIER_NODE:
3223 cp_walk_tree (&TREE_TYPE (t), &find_parameter_packs_r, ppd,
3224 ppd->visited);
3225 *walk_subtrees = 0;
3226 return NULL_TREE;
3228 default:
3229 return NULL_TREE;
3232 return NULL_TREE;
3235 /* Determines if the expression or type T uses any parameter packs. */
3236 bool
3237 uses_parameter_packs (tree t)
3239 tree parameter_packs = NULL_TREE;
3240 struct find_parameter_pack_data ppd;
3241 ppd.parameter_packs = &parameter_packs;
3242 ppd.visited = pointer_set_create ();
3243 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3244 pointer_set_destroy (ppd.visited);
3245 return parameter_packs != NULL_TREE;
3248 /* Turn ARG, which may be an expression, type, or a TREE_LIST
3249 representation a base-class initializer into a parameter pack
3250 expansion. If all goes well, the resulting node will be an
3251 EXPR_PACK_EXPANSION, TYPE_PACK_EXPANSION, or TREE_LIST,
3252 respectively. */
3253 tree
3254 make_pack_expansion (tree arg)
3256 tree result;
3257 tree parameter_packs = NULL_TREE;
3258 bool for_types = false;
3259 struct find_parameter_pack_data ppd;
3261 if (!arg || arg == error_mark_node)
3262 return arg;
3264 if (TREE_CODE (arg) == TREE_LIST)
3266 /* The only time we will see a TREE_LIST here is for a base
3267 class initializer. In this case, the TREE_PURPOSE will be a
3268 _TYPE node (representing the base class expansion we're
3269 initializing) and the TREE_VALUE will be a TREE_LIST
3270 containing the initialization arguments.
3272 The resulting expansion looks somewhat different from most
3273 expansions. Rather than returning just one _EXPANSION, we
3274 return a TREE_LIST whose TREE_PURPOSE is a
3275 TYPE_PACK_EXPANSION containing the bases that will be
3276 initialized. The TREE_VALUE will be identical to the
3277 original TREE_VALUE, which is a list of arguments that will
3278 be passed to each base. We do not introduce any new pack
3279 expansion nodes into the TREE_VALUE (although it is possible
3280 that some already exist), because the TREE_PURPOSE and
3281 TREE_VALUE all need to be expanded together with the same
3282 _EXPANSION node. Note that the TYPE_PACK_EXPANSION in the
3283 resulting TREE_PURPOSE will mention the parameter packs in
3284 both the bases and the arguments to the bases. */
3285 tree purpose;
3286 tree value;
3287 tree parameter_packs = NULL_TREE;
3289 /* Determine which parameter packs will be used by the base
3290 class expansion. */
3291 ppd.visited = pointer_set_create ();
3292 ppd.parameter_packs = &parameter_packs;
3293 cp_walk_tree (&TREE_PURPOSE (arg), &find_parameter_packs_r,
3294 &ppd, ppd.visited);
3296 if (parameter_packs == NULL_TREE)
3298 error ("base initializer expansion %<%T%> contains no parameter packs", arg);
3299 pointer_set_destroy (ppd.visited);
3300 return error_mark_node;
3303 if (TREE_VALUE (arg) != void_type_node)
3305 /* Collect the sets of parameter packs used in each of the
3306 initialization arguments. */
3307 for (value = TREE_VALUE (arg); value; value = TREE_CHAIN (value))
3309 /* Determine which parameter packs will be expanded in this
3310 argument. */
3311 cp_walk_tree (&TREE_VALUE (value), &find_parameter_packs_r,
3312 &ppd, ppd.visited);
3316 pointer_set_destroy (ppd.visited);
3318 /* Create the pack expansion type for the base type. */
3319 purpose = cxx_make_type (TYPE_PACK_EXPANSION);
3320 SET_PACK_EXPANSION_PATTERN (purpose, TREE_PURPOSE (arg));
3321 PACK_EXPANSION_PARAMETER_PACKS (purpose) = parameter_packs;
3323 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3324 they will rarely be compared to anything. */
3325 SET_TYPE_STRUCTURAL_EQUALITY (purpose);
3327 return tree_cons (purpose, TREE_VALUE (arg), NULL_TREE);
3330 if (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL)
3331 for_types = true;
3333 /* Build the PACK_EXPANSION_* node. */
3334 result = for_types
3335 ? cxx_make_type (TYPE_PACK_EXPANSION)
3336 : make_node (EXPR_PACK_EXPANSION);
3337 SET_PACK_EXPANSION_PATTERN (result, arg);
3338 if (TREE_CODE (result) == EXPR_PACK_EXPANSION)
3340 /* Propagate type and const-expression information. */
3341 TREE_TYPE (result) = TREE_TYPE (arg);
3342 TREE_CONSTANT (result) = TREE_CONSTANT (arg);
3344 else
3345 /* Just use structural equality for these TYPE_PACK_EXPANSIONS;
3346 they will rarely be compared to anything. */
3347 SET_TYPE_STRUCTURAL_EQUALITY (result);
3349 /* Determine which parameter packs will be expanded. */
3350 ppd.parameter_packs = &parameter_packs;
3351 ppd.visited = pointer_set_create ();
3352 cp_walk_tree (&arg, &find_parameter_packs_r, &ppd, ppd.visited);
3353 pointer_set_destroy (ppd.visited);
3355 /* Make sure we found some parameter packs. */
3356 if (parameter_packs == NULL_TREE)
3358 if (TYPE_P (arg))
3359 error ("expansion pattern %<%T%> contains no argument packs", arg);
3360 else
3361 error ("expansion pattern %<%E%> contains no argument packs", arg);
3362 return error_mark_node;
3364 PACK_EXPANSION_PARAMETER_PACKS (result) = parameter_packs;
3366 PACK_EXPANSION_LOCAL_P (result) = at_function_scope_p ();
3368 return result;
3371 /* Checks T for any "bare" parameter packs, which have not yet been
3372 expanded, and issues an error if any are found. This operation can
3373 only be done on full expressions or types (e.g., an expression
3374 statement, "if" condition, etc.), because we could have expressions like:
3376 foo(f(g(h(args)))...)
3378 where "args" is a parameter pack. check_for_bare_parameter_packs
3379 should not be called for the subexpressions args, h(args),
3380 g(h(args)), or f(g(h(args))), because we would produce erroneous
3381 error messages.
3383 Returns TRUE and emits an error if there were bare parameter packs,
3384 returns FALSE otherwise. */
3385 bool
3386 check_for_bare_parameter_packs (tree t)
3388 tree parameter_packs = NULL_TREE;
3389 struct find_parameter_pack_data ppd;
3391 if (!processing_template_decl || !t || t == error_mark_node)
3392 return false;
3394 if (TREE_CODE (t) == TYPE_DECL)
3395 t = TREE_TYPE (t);
3397 ppd.parameter_packs = &parameter_packs;
3398 ppd.visited = pointer_set_create ();
3399 cp_walk_tree (&t, &find_parameter_packs_r, &ppd, ppd.visited);
3400 pointer_set_destroy (ppd.visited);
3402 if (parameter_packs)
3404 error ("parameter packs not expanded with %<...%>:");
3405 while (parameter_packs)
3407 tree pack = TREE_VALUE (parameter_packs);
3408 tree name = NULL_TREE;
3410 if (TREE_CODE (pack) == TEMPLATE_TYPE_PARM
3411 || TREE_CODE (pack) == TEMPLATE_TEMPLATE_PARM)
3412 name = TYPE_NAME (pack);
3413 else if (TREE_CODE (pack) == TEMPLATE_PARM_INDEX)
3414 name = DECL_NAME (TEMPLATE_PARM_DECL (pack));
3415 else
3416 name = DECL_NAME (pack);
3418 if (name)
3419 inform (input_location, " %qD", name);
3420 else
3421 inform (input_location, " <anonymous>");
3423 parameter_packs = TREE_CHAIN (parameter_packs);
3426 return true;
3429 return false;
3432 /* Expand any parameter packs that occur in the template arguments in
3433 ARGS. */
3434 tree
3435 expand_template_argument_pack (tree args)
3437 tree result_args = NULL_TREE;
3438 int in_arg, out_arg = 0, nargs = args ? TREE_VEC_LENGTH (args) : 0;
3439 int num_result_args = -1;
3440 int non_default_args_count = -1;
3442 /* First, determine if we need to expand anything, and the number of
3443 slots we'll need. */
3444 for (in_arg = 0; in_arg < nargs; ++in_arg)
3446 tree arg = TREE_VEC_ELT (args, in_arg);
3447 if (arg == NULL_TREE)
3448 return args;
3449 if (ARGUMENT_PACK_P (arg))
3451 int num_packed = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg));
3452 if (num_result_args < 0)
3453 num_result_args = in_arg + num_packed;
3454 else
3455 num_result_args += num_packed;
3457 else
3459 if (num_result_args >= 0)
3460 num_result_args++;
3464 /* If no expansion is necessary, we're done. */
3465 if (num_result_args < 0)
3466 return args;
3468 /* Expand arguments. */
3469 result_args = make_tree_vec (num_result_args);
3470 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (args))
3471 non_default_args_count =
3472 GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (args);
3473 for (in_arg = 0; in_arg < nargs; ++in_arg)
3475 tree arg = TREE_VEC_ELT (args, in_arg);
3476 if (ARGUMENT_PACK_P (arg))
3478 tree packed = ARGUMENT_PACK_ARGS (arg);
3479 int i, num_packed = TREE_VEC_LENGTH (packed);
3480 for (i = 0; i < num_packed; ++i, ++out_arg)
3481 TREE_VEC_ELT (result_args, out_arg) = TREE_VEC_ELT(packed, i);
3482 if (non_default_args_count > 0)
3483 non_default_args_count += num_packed - 1;
3485 else
3487 TREE_VEC_ELT (result_args, out_arg) = arg;
3488 ++out_arg;
3491 if (non_default_args_count >= 0)
3492 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (result_args, non_default_args_count);
3493 return result_args;
3496 /* Checks if DECL shadows a template parameter.
3498 [temp.local]: A template-parameter shall not be redeclared within its
3499 scope (including nested scopes).
3501 Emits an error and returns TRUE if the DECL shadows a parameter,
3502 returns FALSE otherwise. */
3504 bool
3505 check_template_shadow (tree decl)
3507 tree olddecl;
3509 /* If we're not in a template, we can't possibly shadow a template
3510 parameter. */
3511 if (!current_template_parms)
3512 return true;
3514 /* Figure out what we're shadowing. */
3515 if (TREE_CODE (decl) == OVERLOAD)
3516 decl = OVL_CURRENT (decl);
3517 olddecl = innermost_non_namespace_value (DECL_NAME (decl));
3519 /* If there's no previous binding for this name, we're not shadowing
3520 anything, let alone a template parameter. */
3521 if (!olddecl)
3522 return true;
3524 /* If we're not shadowing a template parameter, we're done. Note
3525 that OLDDECL might be an OVERLOAD (or perhaps even an
3526 ERROR_MARK), so we can't just blithely assume it to be a _DECL
3527 node. */
3528 if (!DECL_P (olddecl) || !DECL_TEMPLATE_PARM_P (olddecl))
3529 return true;
3531 /* We check for decl != olddecl to avoid bogus errors for using a
3532 name inside a class. We check TPFI to avoid duplicate errors for
3533 inline member templates. */
3534 if (decl == olddecl
3535 || (DECL_TEMPLATE_PARM_P (decl)
3536 && TEMPLATE_PARMS_FOR_INLINE (current_template_parms)))
3537 return true;
3539 /* Don't complain about the injected class name, as we've already
3540 complained about the class itself. */
3541 if (DECL_SELF_REFERENCE_P (decl))
3542 return false;
3544 error ("declaration of %q+#D", decl);
3545 error (" shadows template parm %q+#D", olddecl);
3546 return false;
3549 /* Return a new TEMPLATE_PARM_INDEX with the indicated INDEX, LEVEL,
3550 ORIG_LEVEL, DECL, and TYPE. */
3552 static tree
3553 build_template_parm_index (int index,
3554 int level,
3555 int orig_level,
3556 tree decl,
3557 tree type)
3559 tree t = make_node (TEMPLATE_PARM_INDEX);
3560 TEMPLATE_PARM_IDX (t) = index;
3561 TEMPLATE_PARM_LEVEL (t) = level;
3562 TEMPLATE_PARM_ORIG_LEVEL (t) = orig_level;
3563 TEMPLATE_PARM_DECL (t) = decl;
3564 TREE_TYPE (t) = type;
3565 TREE_CONSTANT (t) = TREE_CONSTANT (decl);
3566 TREE_READONLY (t) = TREE_READONLY (decl);
3568 return t;
3571 /* Find the canonical type parameter for the given template type
3572 parameter. Returns the canonical type parameter, which may be TYPE
3573 if no such parameter existed. */
3575 static tree
3576 canonical_type_parameter (tree type)
3578 tree list;
3579 int idx = TEMPLATE_TYPE_IDX (type);
3580 if (!canonical_template_parms)
3581 vec_alloc (canonical_template_parms, idx+1);
3583 while (canonical_template_parms->length () <= (unsigned)idx)
3584 vec_safe_push (canonical_template_parms, NULL_TREE);
3586 list = (*canonical_template_parms)[idx];
3587 while (list && !comptypes (type, TREE_VALUE (list), COMPARE_STRUCTURAL))
3588 list = TREE_CHAIN (list);
3590 if (list)
3591 return TREE_VALUE (list);
3592 else
3594 (*canonical_template_parms)[idx]
3595 = tree_cons (NULL_TREE, type,
3596 (*canonical_template_parms)[idx]);
3597 return type;
3601 /* Return a TEMPLATE_PARM_INDEX, similar to INDEX, but whose
3602 TEMPLATE_PARM_LEVEL has been decreased by LEVELS. If such a
3603 TEMPLATE_PARM_INDEX already exists, it is returned; otherwise, a
3604 new one is created. */
3606 static tree
3607 reduce_template_parm_level (tree index, tree type, int levels, tree args,
3608 tsubst_flags_t complain)
3610 if (TEMPLATE_PARM_DESCENDANTS (index) == NULL_TREE
3611 || (TEMPLATE_PARM_LEVEL (TEMPLATE_PARM_DESCENDANTS (index))
3612 != TEMPLATE_PARM_LEVEL (index) - levels)
3613 || !same_type_p (type, TREE_TYPE (TEMPLATE_PARM_DESCENDANTS (index))))
3615 tree orig_decl = TEMPLATE_PARM_DECL (index);
3616 tree decl, t;
3618 decl = build_decl (DECL_SOURCE_LOCATION (orig_decl),
3619 TREE_CODE (orig_decl), DECL_NAME (orig_decl), type);
3620 TREE_CONSTANT (decl) = TREE_CONSTANT (orig_decl);
3621 TREE_READONLY (decl) = TREE_READONLY (orig_decl);
3622 DECL_ARTIFICIAL (decl) = 1;
3623 SET_DECL_TEMPLATE_PARM_P (decl);
3625 t = build_template_parm_index (TEMPLATE_PARM_IDX (index),
3626 TEMPLATE_PARM_LEVEL (index) - levels,
3627 TEMPLATE_PARM_ORIG_LEVEL (index),
3628 decl, type);
3629 TEMPLATE_PARM_DESCENDANTS (index) = t;
3630 TEMPLATE_PARM_PARAMETER_PACK (t)
3631 = TEMPLATE_PARM_PARAMETER_PACK (index);
3633 /* Template template parameters need this. */
3634 if (TREE_CODE (decl) == TEMPLATE_DECL)
3635 DECL_TEMPLATE_PARMS (decl) = tsubst_template_parms
3636 (DECL_TEMPLATE_PARMS (TEMPLATE_PARM_DECL (index)),
3637 args, complain);
3640 return TEMPLATE_PARM_DESCENDANTS (index);
3643 /* Process information from new template parameter PARM and append it
3644 to the LIST being built. This new parameter is a non-type
3645 parameter iff IS_NON_TYPE is true. This new parameter is a
3646 parameter pack iff IS_PARAMETER_PACK is true. The location of PARM
3647 is in PARM_LOC. */
3649 tree
3650 process_template_parm (tree list, location_t parm_loc, tree parm,
3651 bool is_non_type, bool is_parameter_pack)
3653 tree decl = 0;
3654 tree defval;
3655 int idx = 0;
3657 gcc_assert (TREE_CODE (parm) == TREE_LIST);
3658 defval = TREE_PURPOSE (parm);
3660 if (list)
3662 tree p = tree_last (list);
3664 if (p && TREE_VALUE (p) != error_mark_node)
3666 p = TREE_VALUE (p);
3667 if (TREE_CODE (p) == TYPE_DECL || TREE_CODE (p) == TEMPLATE_DECL)
3668 idx = TEMPLATE_TYPE_IDX (TREE_TYPE (p));
3669 else
3670 idx = TEMPLATE_PARM_IDX (DECL_INITIAL (p));
3673 ++idx;
3676 if (is_non_type)
3678 parm = TREE_VALUE (parm);
3680 SET_DECL_TEMPLATE_PARM_P (parm);
3682 if (TREE_TYPE (parm) != error_mark_node)
3684 /* [temp.param]
3686 The top-level cv-qualifiers on the template-parameter are
3687 ignored when determining its type. */
3688 TREE_TYPE (parm) = TYPE_MAIN_VARIANT (TREE_TYPE (parm));
3689 if (invalid_nontype_parm_type_p (TREE_TYPE (parm), 1))
3690 TREE_TYPE (parm) = error_mark_node;
3691 else if (uses_parameter_packs (TREE_TYPE (parm))
3692 && !is_parameter_pack
3693 /* If we're in a nested template parameter list, the template
3694 template parameter could be a parameter pack. */
3695 && processing_template_parmlist == 1)
3697 /* This template parameter is not a parameter pack, but it
3698 should be. Complain about "bare" parameter packs. */
3699 check_for_bare_parameter_packs (TREE_TYPE (parm));
3701 /* Recover by calling this a parameter pack. */
3702 is_parameter_pack = true;
3706 /* A template parameter is not modifiable. */
3707 TREE_CONSTANT (parm) = 1;
3708 TREE_READONLY (parm) = 1;
3709 decl = build_decl (parm_loc,
3710 CONST_DECL, DECL_NAME (parm), TREE_TYPE (parm));
3711 TREE_CONSTANT (decl) = 1;
3712 TREE_READONLY (decl) = 1;
3713 DECL_INITIAL (parm) = DECL_INITIAL (decl)
3714 = build_template_parm_index (idx, processing_template_decl,
3715 processing_template_decl,
3716 decl, TREE_TYPE (parm));
3718 TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm))
3719 = is_parameter_pack;
3721 else
3723 tree t;
3724 parm = TREE_VALUE (TREE_VALUE (parm));
3726 if (parm && TREE_CODE (parm) == TEMPLATE_DECL)
3728 t = cxx_make_type (TEMPLATE_TEMPLATE_PARM);
3729 /* This is for distinguishing between real templates and template
3730 template parameters */
3731 TREE_TYPE (parm) = t;
3732 TREE_TYPE (DECL_TEMPLATE_RESULT (parm)) = t;
3733 decl = parm;
3735 else
3737 t = cxx_make_type (TEMPLATE_TYPE_PARM);
3738 /* parm is either IDENTIFIER_NODE or NULL_TREE. */
3739 decl = build_decl (parm_loc,
3740 TYPE_DECL, parm, t);
3743 TYPE_NAME (t) = decl;
3744 TYPE_STUB_DECL (t) = decl;
3745 parm = decl;
3746 TEMPLATE_TYPE_PARM_INDEX (t)
3747 = build_template_parm_index (idx, processing_template_decl,
3748 processing_template_decl,
3749 decl, TREE_TYPE (parm));
3750 TEMPLATE_TYPE_PARAMETER_PACK (t) = is_parameter_pack;
3751 TYPE_CANONICAL (t) = canonical_type_parameter (t);
3753 DECL_ARTIFICIAL (decl) = 1;
3754 SET_DECL_TEMPLATE_PARM_P (decl);
3755 pushdecl (decl);
3756 parm = build_tree_list (defval, parm);
3757 return chainon (list, parm);
3760 /* The end of a template parameter list has been reached. Process the
3761 tree list into a parameter vector, converting each parameter into a more
3762 useful form. Type parameters are saved as IDENTIFIER_NODEs, and others
3763 as PARM_DECLs. */
3765 tree
3766 end_template_parm_list (tree parms)
3768 int nparms;
3769 tree parm, next;
3770 tree saved_parmlist = make_tree_vec (list_length (parms));
3772 current_template_parms
3773 = tree_cons (size_int (processing_template_decl),
3774 saved_parmlist, current_template_parms);
3776 for (parm = parms, nparms = 0; parm; parm = next, nparms++)
3778 next = TREE_CHAIN (parm);
3779 TREE_VEC_ELT (saved_parmlist, nparms) = parm;
3780 TREE_CHAIN (parm) = NULL_TREE;
3783 --processing_template_parmlist;
3785 return saved_parmlist;
3788 /* end_template_decl is called after a template declaration is seen. */
3790 void
3791 end_template_decl (void)
3793 reset_specialization ();
3795 if (! processing_template_decl)
3796 return;
3798 /* This matches the pushlevel in begin_template_parm_list. */
3799 finish_scope ();
3801 --processing_template_decl;
3802 current_template_parms = TREE_CHAIN (current_template_parms);
3805 /* Takes a TREE_LIST representing a template parameter and convert it
3806 into an argument suitable to be passed to the type substitution
3807 functions. Note that If the TREE_LIST contains an error_mark
3808 node, the returned argument is error_mark_node. */
3810 static tree
3811 template_parm_to_arg (tree t)
3814 if (t == NULL_TREE
3815 || TREE_CODE (t) != TREE_LIST)
3816 return t;
3818 if (error_operand_p (TREE_VALUE (t)))
3819 return error_mark_node;
3821 t = TREE_VALUE (t);
3823 if (TREE_CODE (t) == TYPE_DECL
3824 || TREE_CODE (t) == TEMPLATE_DECL)
3826 t = TREE_TYPE (t);
3828 if (TEMPLATE_TYPE_PARAMETER_PACK (t))
3830 /* Turn this argument into a TYPE_ARGUMENT_PACK
3831 with a single element, which expands T. */
3832 tree vec = make_tree_vec (1);
3833 #ifdef ENABLE_CHECKING
3834 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT
3835 (vec, TREE_VEC_LENGTH (vec));
3836 #endif
3837 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
3839 t = cxx_make_type (TYPE_ARGUMENT_PACK);
3840 SET_ARGUMENT_PACK_ARGS (t, vec);
3843 else
3845 t = DECL_INITIAL (t);
3847 if (TEMPLATE_PARM_PARAMETER_PACK (t))
3849 /* Turn this argument into a NONTYPE_ARGUMENT_PACK
3850 with a single element, which expands T. */
3851 tree vec = make_tree_vec (1);
3852 tree type = TREE_TYPE (TEMPLATE_PARM_DECL (t));
3853 #ifdef ENABLE_CHECKING
3854 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT
3855 (vec, TREE_VEC_LENGTH (vec));
3856 #endif
3857 t = convert_from_reference (t);
3858 TREE_VEC_ELT (vec, 0) = make_pack_expansion (t);
3860 t = make_node (NONTYPE_ARGUMENT_PACK);
3861 SET_ARGUMENT_PACK_ARGS (t, vec);
3862 TREE_TYPE (t) = type;
3864 else
3865 t = convert_from_reference (t);
3867 return t;
3870 /* Given a set of template parameters, return them as a set of template
3871 arguments. The template parameters are represented as a TREE_VEC, in
3872 the form documented in cp-tree.h for template arguments. */
3874 static tree
3875 template_parms_to_args (tree parms)
3877 tree header;
3878 tree args = NULL_TREE;
3879 int length = TMPL_PARMS_DEPTH (parms);
3880 int l = length;
3882 /* If there is only one level of template parameters, we do not
3883 create a TREE_VEC of TREE_VECs. Instead, we return a single
3884 TREE_VEC containing the arguments. */
3885 if (length > 1)
3886 args = make_tree_vec (length);
3888 for (header = parms; header; header = TREE_CHAIN (header))
3890 tree a = copy_node (TREE_VALUE (header));
3891 int i;
3893 TREE_TYPE (a) = NULL_TREE;
3894 for (i = TREE_VEC_LENGTH (a) - 1; i >= 0; --i)
3895 TREE_VEC_ELT (a, i) = template_parm_to_arg (TREE_VEC_ELT (a, i));
3897 #ifdef ENABLE_CHECKING
3898 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (a, TREE_VEC_LENGTH (a));
3899 #endif
3901 if (length > 1)
3902 TREE_VEC_ELT (args, --l) = a;
3903 else
3904 args = a;
3907 if (length > 1 && TREE_VEC_ELT (args, 0) == NULL_TREE)
3908 /* This can happen for template parms of a template template
3909 parameter, e.g:
3911 template<template<class T, class U> class TT> struct S;
3913 Consider the level of the parms of TT; T and U both have
3914 level 2; TT has no template parm of level 1. So in this case
3915 the first element of full_template_args is NULL_TREE. If we
3916 leave it like this TMPL_ARGS_DEPTH on args returns 1 instead
3917 of 2. This will make tsubst wrongly consider that T and U
3918 have level 1. Instead, let's create a dummy vector as the
3919 first element of full_template_args so that TMPL_ARGS_DEPTH
3920 returns the correct depth for args. */
3921 TREE_VEC_ELT (args, 0) = make_tree_vec (1);
3922 return args;
3925 /* Within the declaration of a template, return the currently active
3926 template parameters as an argument TREE_VEC. */
3928 static tree
3929 current_template_args (void)
3931 return template_parms_to_args (current_template_parms);
3934 /* Update the declared TYPE by doing any lookups which were thought to be
3935 dependent, but are not now that we know the SCOPE of the declarator. */
3937 tree
3938 maybe_update_decl_type (tree orig_type, tree scope)
3940 tree type = orig_type;
3942 if (type == NULL_TREE)
3943 return type;
3945 if (TREE_CODE (orig_type) == TYPE_DECL)
3946 type = TREE_TYPE (type);
3948 if (scope && TYPE_P (scope) && dependent_type_p (scope)
3949 && dependent_type_p (type)
3950 /* Don't bother building up the args in this case. */
3951 && TREE_CODE (type) != TEMPLATE_TYPE_PARM)
3953 /* tsubst in the args corresponding to the template parameters,
3954 including auto if present. Most things will be unchanged, but
3955 make_typename_type and tsubst_qualified_id will resolve
3956 TYPENAME_TYPEs and SCOPE_REFs that were previously dependent. */
3957 tree args = current_template_args ();
3958 tree auto_node = type_uses_auto (type);
3959 tree pushed;
3960 if (auto_node)
3962 tree auto_vec = make_tree_vec (1);
3963 TREE_VEC_ELT (auto_vec, 0) = auto_node;
3964 args = add_to_template_args (args, auto_vec);
3966 pushed = push_scope (scope);
3967 type = tsubst (type, args, tf_warning_or_error, NULL_TREE);
3968 if (pushed)
3969 pop_scope (scope);
3972 if (type == error_mark_node)
3973 return orig_type;
3975 if (TREE_CODE (orig_type) == TYPE_DECL)
3977 if (same_type_p (type, TREE_TYPE (orig_type)))
3978 type = orig_type;
3979 else
3980 type = TYPE_NAME (type);
3982 return type;
3985 /* Return a TEMPLATE_DECL corresponding to DECL, using the indicated
3986 template PARMS. If MEMBER_TEMPLATE_P is true, the new template is
3987 a member template. Used by push_template_decl below. */
3989 static tree
3990 build_template_decl (tree decl, tree parms, bool member_template_p)
3992 tree tmpl = build_lang_decl (TEMPLATE_DECL, DECL_NAME (decl), NULL_TREE);
3993 DECL_TEMPLATE_PARMS (tmpl) = parms;
3994 DECL_CONTEXT (tmpl) = DECL_CONTEXT (decl);
3995 DECL_SOURCE_LOCATION (tmpl) = DECL_SOURCE_LOCATION (decl);
3996 DECL_MEMBER_TEMPLATE_P (tmpl) = member_template_p;
3998 return tmpl;
4001 struct template_parm_data
4003 /* The level of the template parameters we are currently
4004 processing. */
4005 int level;
4007 /* The index of the specialization argument we are currently
4008 processing. */
4009 int current_arg;
4011 /* An array whose size is the number of template parameters. The
4012 elements are nonzero if the parameter has been used in any one
4013 of the arguments processed so far. */
4014 int* parms;
4016 /* An array whose size is the number of template arguments. The
4017 elements are nonzero if the argument makes use of template
4018 parameters of this level. */
4019 int* arg_uses_template_parms;
4022 /* Subroutine of push_template_decl used to see if each template
4023 parameter in a partial specialization is used in the explicit
4024 argument list. If T is of the LEVEL given in DATA (which is
4025 treated as a template_parm_data*), then DATA->PARMS is marked
4026 appropriately. */
4028 static int
4029 mark_template_parm (tree t, void* data)
4031 int level;
4032 int idx;
4033 struct template_parm_data* tpd = (struct template_parm_data*) data;
4035 template_parm_level_and_index (t, &level, &idx);
4037 if (level == tpd->level)
4039 tpd->parms[idx] = 1;
4040 tpd->arg_uses_template_parms[tpd->current_arg] = 1;
4043 /* Return zero so that for_each_template_parm will continue the
4044 traversal of the tree; we want to mark *every* template parm. */
4045 return 0;
4048 /* Process the partial specialization DECL. */
4050 static tree
4051 process_partial_specialization (tree decl)
4053 tree type = TREE_TYPE (decl);
4054 tree maintmpl = CLASSTYPE_TI_TEMPLATE (type);
4055 tree specargs = CLASSTYPE_TI_ARGS (type);
4056 tree inner_args = INNERMOST_TEMPLATE_ARGS (specargs);
4057 tree main_inner_parms = DECL_INNERMOST_TEMPLATE_PARMS (maintmpl);
4058 tree inner_parms;
4059 tree inst;
4060 int nargs = TREE_VEC_LENGTH (inner_args);
4061 int ntparms;
4062 int i;
4063 bool did_error_intro = false;
4064 struct template_parm_data tpd;
4065 struct template_parm_data tpd2;
4067 gcc_assert (current_template_parms);
4069 inner_parms = INNERMOST_TEMPLATE_PARMS (current_template_parms);
4070 ntparms = TREE_VEC_LENGTH (inner_parms);
4072 /* We check that each of the template parameters given in the
4073 partial specialization is used in the argument list to the
4074 specialization. For example:
4076 template <class T> struct S;
4077 template <class T> struct S<T*>;
4079 The second declaration is OK because `T*' uses the template
4080 parameter T, whereas
4082 template <class T> struct S<int>;
4084 is no good. Even trickier is:
4086 template <class T>
4087 struct S1
4089 template <class U>
4090 struct S2;
4091 template <class U>
4092 struct S2<T>;
4095 The S2<T> declaration is actually invalid; it is a
4096 full-specialization. Of course,
4098 template <class U>
4099 struct S2<T (*)(U)>;
4101 or some such would have been OK. */
4102 tpd.level = TMPL_PARMS_DEPTH (current_template_parms);
4103 tpd.parms = XALLOCAVEC (int, ntparms);
4104 memset (tpd.parms, 0, sizeof (int) * ntparms);
4106 tpd.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4107 memset (tpd.arg_uses_template_parms, 0, sizeof (int) * nargs);
4108 for (i = 0; i < nargs; ++i)
4110 tpd.current_arg = i;
4111 for_each_template_parm (TREE_VEC_ELT (inner_args, i),
4112 &mark_template_parm,
4113 &tpd,
4114 NULL,
4115 /*include_nondeduced_p=*/false);
4117 for (i = 0; i < ntparms; ++i)
4118 if (tpd.parms[i] == 0)
4120 /* One of the template parms was not used in a deduced context in the
4121 specialization. */
4122 if (!did_error_intro)
4124 error ("template parameters not deducible in "
4125 "partial specialization:");
4126 did_error_intro = true;
4129 inform (input_location, " %qD",
4130 TREE_VALUE (TREE_VEC_ELT (inner_parms, i)));
4133 if (did_error_intro)
4134 return error_mark_node;
4136 /* [temp.class.spec]
4138 The argument list of the specialization shall not be identical to
4139 the implicit argument list of the primary template. */
4140 if (comp_template_args
4141 (inner_args,
4142 INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE
4143 (maintmpl)))))
4144 error ("partial specialization %qT does not specialize any template arguments", type);
4146 /* A partial specialization that replaces multiple parameters of the
4147 primary template with a pack expansion is less specialized for those
4148 parameters. */
4149 if (nargs < DECL_NTPARMS (maintmpl))
4151 error ("partial specialization is not more specialized than the "
4152 "primary template because it replaces multiple parameters "
4153 "with a pack expansion");
4154 inform (DECL_SOURCE_LOCATION (maintmpl), "primary template here");
4155 return decl;
4158 /* [temp.class.spec]
4160 A partially specialized non-type argument expression shall not
4161 involve template parameters of the partial specialization except
4162 when the argument expression is a simple identifier.
4164 The type of a template parameter corresponding to a specialized
4165 non-type argument shall not be dependent on a parameter of the
4166 specialization.
4168 Also, we verify that pack expansions only occur at the
4169 end of the argument list. */
4170 gcc_assert (nargs == DECL_NTPARMS (maintmpl));
4171 tpd2.parms = 0;
4172 for (i = 0; i < nargs; ++i)
4174 tree parm = TREE_VALUE (TREE_VEC_ELT (main_inner_parms, i));
4175 tree arg = TREE_VEC_ELT (inner_args, i);
4176 tree packed_args = NULL_TREE;
4177 int j, len = 1;
4179 if (ARGUMENT_PACK_P (arg))
4181 /* Extract the arguments from the argument pack. We'll be
4182 iterating over these in the following loop. */
4183 packed_args = ARGUMENT_PACK_ARGS (arg);
4184 len = TREE_VEC_LENGTH (packed_args);
4187 for (j = 0; j < len; j++)
4189 if (packed_args)
4190 /* Get the Jth argument in the parameter pack. */
4191 arg = TREE_VEC_ELT (packed_args, j);
4193 if (PACK_EXPANSION_P (arg))
4195 /* Pack expansions must come at the end of the
4196 argument list. */
4197 if ((packed_args && j < len - 1)
4198 || (!packed_args && i < nargs - 1))
4200 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4201 error ("parameter pack argument %qE must be at the "
4202 "end of the template argument list", arg);
4203 else
4204 error ("parameter pack argument %qT must be at the "
4205 "end of the template argument list", arg);
4209 if (TREE_CODE (arg) == EXPR_PACK_EXPANSION)
4210 /* We only care about the pattern. */
4211 arg = PACK_EXPANSION_PATTERN (arg);
4213 if (/* These first two lines are the `non-type' bit. */
4214 !TYPE_P (arg)
4215 && TREE_CODE (arg) != TEMPLATE_DECL
4216 /* This next two lines are the `argument expression is not just a
4217 simple identifier' condition and also the `specialized
4218 non-type argument' bit. */
4219 && TREE_CODE (arg) != TEMPLATE_PARM_INDEX
4220 && !(REFERENCE_REF_P (arg)
4221 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_PARM_INDEX))
4223 if ((!packed_args && tpd.arg_uses_template_parms[i])
4224 || (packed_args && uses_template_parms (arg)))
4225 error ("template argument %qE involves template parameter(s)",
4226 arg);
4227 else
4229 /* Look at the corresponding template parameter,
4230 marking which template parameters its type depends
4231 upon. */
4232 tree type = TREE_TYPE (parm);
4234 if (!tpd2.parms)
4236 /* We haven't yet initialized TPD2. Do so now. */
4237 tpd2.arg_uses_template_parms = XALLOCAVEC (int, nargs);
4238 /* The number of parameters here is the number in the
4239 main template, which, as checked in the assertion
4240 above, is NARGS. */
4241 tpd2.parms = XALLOCAVEC (int, nargs);
4242 tpd2.level =
4243 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (maintmpl));
4246 /* Mark the template parameters. But this time, we're
4247 looking for the template parameters of the main
4248 template, not in the specialization. */
4249 tpd2.current_arg = i;
4250 tpd2.arg_uses_template_parms[i] = 0;
4251 memset (tpd2.parms, 0, sizeof (int) * nargs);
4252 for_each_template_parm (type,
4253 &mark_template_parm,
4254 &tpd2,
4255 NULL,
4256 /*include_nondeduced_p=*/false);
4258 if (tpd2.arg_uses_template_parms [i])
4260 /* The type depended on some template parameters.
4261 If they are fully specialized in the
4262 specialization, that's OK. */
4263 int j;
4264 int count = 0;
4265 for (j = 0; j < nargs; ++j)
4266 if (tpd2.parms[j] != 0
4267 && tpd.arg_uses_template_parms [j])
4268 ++count;
4269 if (count != 0)
4270 error_n (input_location, count,
4271 "type %qT of template argument %qE depends "
4272 "on a template parameter",
4273 "type %qT of template argument %qE depends "
4274 "on template parameters",
4275 type,
4276 arg);
4283 /* We should only get here once. */
4284 gcc_assert (!COMPLETE_TYPE_P (type));
4286 tree tmpl = build_template_decl (decl, current_template_parms,
4287 DECL_MEMBER_TEMPLATE_P (maintmpl));
4288 TREE_TYPE (tmpl) = type;
4289 DECL_TEMPLATE_RESULT (tmpl) = decl;
4290 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
4291 DECL_TEMPLATE_INFO (tmpl) = build_template_info (maintmpl, specargs);
4292 DECL_PRIMARY_TEMPLATE (tmpl) = maintmpl;
4294 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)
4295 = tree_cons (specargs, tmpl,
4296 DECL_TEMPLATE_SPECIALIZATIONS (maintmpl));
4297 TREE_TYPE (DECL_TEMPLATE_SPECIALIZATIONS (maintmpl)) = type;
4299 for (inst = DECL_TEMPLATE_INSTANTIATIONS (maintmpl); inst;
4300 inst = TREE_CHAIN (inst))
4302 tree inst_type = TREE_VALUE (inst);
4303 if (COMPLETE_TYPE_P (inst_type)
4304 && CLASSTYPE_IMPLICIT_INSTANTIATION (inst_type))
4306 tree spec = most_specialized_class (inst_type, tf_none);
4307 if (spec && TREE_TYPE (spec) == type)
4308 permerror (input_location,
4309 "partial specialization of %qT after instantiation "
4310 "of %qT", type, inst_type);
4314 return decl;
4317 /* PARM is a template parameter of some form; return the corresponding
4318 TEMPLATE_PARM_INDEX. */
4320 static tree
4321 get_template_parm_index (tree parm)
4323 if (TREE_CODE (parm) == PARM_DECL
4324 || TREE_CODE (parm) == CONST_DECL)
4325 parm = DECL_INITIAL (parm);
4326 else if (TREE_CODE (parm) == TYPE_DECL
4327 || TREE_CODE (parm) == TEMPLATE_DECL)
4328 parm = TREE_TYPE (parm);
4329 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
4330 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM)
4331 parm = TEMPLATE_TYPE_PARM_INDEX (parm);
4332 gcc_assert (TREE_CODE (parm) == TEMPLATE_PARM_INDEX);
4333 return parm;
4336 /* Subroutine of fixed_parameter_pack_p below. Look for any template
4337 parameter packs used by the template parameter PARM. */
4339 static void
4340 fixed_parameter_pack_p_1 (tree parm, struct find_parameter_pack_data *ppd)
4342 /* A type parm can't refer to another parm. */
4343 if (TREE_CODE (parm) == TYPE_DECL)
4344 return;
4345 else if (TREE_CODE (parm) == PARM_DECL)
4347 cp_walk_tree (&TREE_TYPE (parm), &find_parameter_packs_r,
4348 ppd, ppd->visited);
4349 return;
4352 gcc_assert (TREE_CODE (parm) == TEMPLATE_DECL);
4354 tree vec = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (parm));
4355 for (int i = 0; i < TREE_VEC_LENGTH (vec); ++i)
4356 fixed_parameter_pack_p_1 (TREE_VALUE (TREE_VEC_ELT (vec, i)), ppd);
4359 /* PARM is a template parameter pack. Return any parameter packs used in
4360 its type or the type of any of its template parameters. If there are
4361 any such packs, it will be instantiated into a fixed template parameter
4362 list by partial instantiation rather than be fully deduced. */
4364 tree
4365 fixed_parameter_pack_p (tree parm)
4367 /* This can only be true in a member template. */
4368 if (TEMPLATE_PARM_ORIG_LEVEL (get_template_parm_index (parm)) < 2)
4369 return NULL_TREE;
4370 /* This can only be true for a parameter pack. */
4371 if (!template_parameter_pack_p (parm))
4372 return NULL_TREE;
4373 /* A type parm can't refer to another parm. */
4374 if (TREE_CODE (parm) == TYPE_DECL)
4375 return NULL_TREE;
4377 tree parameter_packs = NULL_TREE;
4378 struct find_parameter_pack_data ppd;
4379 ppd.parameter_packs = &parameter_packs;
4380 ppd.visited = pointer_set_create ();
4382 fixed_parameter_pack_p_1 (parm, &ppd);
4384 pointer_set_destroy (ppd.visited);
4385 return parameter_packs;
4388 /* Check that a template declaration's use of default arguments and
4389 parameter packs is not invalid. Here, PARMS are the template
4390 parameters. IS_PRIMARY is true if DECL is the thing declared by
4391 a primary template. IS_PARTIAL is true if DECL is a partial
4392 specialization.
4394 IS_FRIEND_DECL is nonzero if DECL is a friend function template
4395 declaration (but not a definition); 1 indicates a declaration, 2
4396 indicates a redeclaration. When IS_FRIEND_DECL=2, no errors are
4397 emitted for extraneous default arguments.
4399 Returns TRUE if there were no errors found, FALSE otherwise. */
4401 bool
4402 check_default_tmpl_args (tree decl, tree parms, bool is_primary,
4403 bool is_partial, int is_friend_decl)
4405 const char *msg;
4406 int last_level_to_check;
4407 tree parm_level;
4408 bool no_errors = true;
4410 /* [temp.param]
4412 A default template-argument shall not be specified in a
4413 function template declaration or a function template definition, nor
4414 in the template-parameter-list of the definition of a member of a
4415 class template. */
4417 if (TREE_CODE (CP_DECL_CONTEXT (decl)) == FUNCTION_DECL)
4418 /* You can't have a function template declaration in a local
4419 scope, nor you can you define a member of a class template in a
4420 local scope. */
4421 return true;
4423 if (TREE_CODE (decl) == TYPE_DECL
4424 && TREE_TYPE (decl)
4425 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
4426 /* A lambda doesn't have an explicit declaration; don't complain
4427 about the parms of the enclosing class. */
4428 return true;
4430 if (current_class_type
4431 && !TYPE_BEING_DEFINED (current_class_type)
4432 && DECL_LANG_SPECIFIC (decl)
4433 && DECL_DECLARES_FUNCTION_P (decl)
4434 /* If this is either a friend defined in the scope of the class
4435 or a member function. */
4436 && (DECL_FUNCTION_MEMBER_P (decl)
4437 ? same_type_p (DECL_CONTEXT (decl), current_class_type)
4438 : DECL_FRIEND_CONTEXT (decl)
4439 ? same_type_p (DECL_FRIEND_CONTEXT (decl), current_class_type)
4440 : false)
4441 /* And, if it was a member function, it really was defined in
4442 the scope of the class. */
4443 && (!DECL_FUNCTION_MEMBER_P (decl)
4444 || DECL_INITIALIZED_IN_CLASS_P (decl)))
4445 /* We already checked these parameters when the template was
4446 declared, so there's no need to do it again now. This function
4447 was defined in class scope, but we're processing its body now
4448 that the class is complete. */
4449 return true;
4451 /* Core issue 226 (C++0x only): the following only applies to class
4452 templates. */
4453 if (is_primary
4454 && ((cxx_dialect == cxx98) || TREE_CODE (decl) != FUNCTION_DECL))
4456 /* [temp.param]
4458 If a template-parameter has a default template-argument, all
4459 subsequent template-parameters shall have a default
4460 template-argument supplied. */
4461 for (parm_level = parms; parm_level; parm_level = TREE_CHAIN (parm_level))
4463 tree inner_parms = TREE_VALUE (parm_level);
4464 int ntparms = TREE_VEC_LENGTH (inner_parms);
4465 int seen_def_arg_p = 0;
4466 int i;
4468 for (i = 0; i < ntparms; ++i)
4470 tree parm = TREE_VEC_ELT (inner_parms, i);
4472 if (parm == error_mark_node)
4473 continue;
4475 if (TREE_PURPOSE (parm))
4476 seen_def_arg_p = 1;
4477 else if (seen_def_arg_p
4478 && !template_parameter_pack_p (TREE_VALUE (parm)))
4480 error ("no default argument for %qD", TREE_VALUE (parm));
4481 /* For better subsequent error-recovery, we indicate that
4482 there should have been a default argument. */
4483 TREE_PURPOSE (parm) = error_mark_node;
4484 no_errors = false;
4486 else if (!is_partial
4487 && !is_friend_decl
4488 /* Don't complain about an enclosing partial
4489 specialization. */
4490 && parm_level == parms
4491 && TREE_CODE (decl) == TYPE_DECL
4492 && i < ntparms - 1
4493 && template_parameter_pack_p (TREE_VALUE (parm))
4494 /* A fixed parameter pack will be partially
4495 instantiated into a fixed length list. */
4496 && !fixed_parameter_pack_p (TREE_VALUE (parm)))
4498 /* A primary class template can only have one
4499 parameter pack, at the end of the template
4500 parameter list. */
4502 if (TREE_CODE (TREE_VALUE (parm)) == PARM_DECL)
4503 error ("parameter pack %qE must be at the end of the"
4504 " template parameter list", TREE_VALUE (parm));
4505 else
4506 error ("parameter pack %qT must be at the end of the"
4507 " template parameter list",
4508 TREE_TYPE (TREE_VALUE (parm)));
4510 TREE_VALUE (TREE_VEC_ELT (inner_parms, i))
4511 = error_mark_node;
4512 no_errors = false;
4518 if (((cxx_dialect == cxx98) && TREE_CODE (decl) != TYPE_DECL)
4519 || is_partial
4520 || !is_primary
4521 || is_friend_decl)
4522 /* For an ordinary class template, default template arguments are
4523 allowed at the innermost level, e.g.:
4524 template <class T = int>
4525 struct S {};
4526 but, in a partial specialization, they're not allowed even
4527 there, as we have in [temp.class.spec]:
4529 The template parameter list of a specialization shall not
4530 contain default template argument values.
4532 So, for a partial specialization, or for a function template
4533 (in C++98/C++03), we look at all of them. */
4535 else
4536 /* But, for a primary class template that is not a partial
4537 specialization we look at all template parameters except the
4538 innermost ones. */
4539 parms = TREE_CHAIN (parms);
4541 /* Figure out what error message to issue. */
4542 if (is_friend_decl == 2)
4543 msg = G_("default template arguments may not be used in function template "
4544 "friend re-declaration");
4545 else if (is_friend_decl)
4546 msg = G_("default template arguments may not be used in function template "
4547 "friend declarations");
4548 else if (TREE_CODE (decl) == FUNCTION_DECL && (cxx_dialect == cxx98))
4549 msg = G_("default template arguments may not be used in function templates "
4550 "without -std=c++11 or -std=gnu++11");
4551 else if (is_partial)
4552 msg = G_("default template arguments may not be used in "
4553 "partial specializations");
4554 else
4555 msg = G_("default argument for template parameter for class enclosing %qD");
4557 if (current_class_type && TYPE_BEING_DEFINED (current_class_type))
4558 /* If we're inside a class definition, there's no need to
4559 examine the parameters to the class itself. On the one
4560 hand, they will be checked when the class is defined, and,
4561 on the other, default arguments are valid in things like:
4562 template <class T = double>
4563 struct S { template <class U> void f(U); };
4564 Here the default argument for `S' has no bearing on the
4565 declaration of `f'. */
4566 last_level_to_check = template_class_depth (current_class_type) + 1;
4567 else
4568 /* Check everything. */
4569 last_level_to_check = 0;
4571 for (parm_level = parms;
4572 parm_level && TMPL_PARMS_DEPTH (parm_level) >= last_level_to_check;
4573 parm_level = TREE_CHAIN (parm_level))
4575 tree inner_parms = TREE_VALUE (parm_level);
4576 int i;
4577 int ntparms;
4579 ntparms = TREE_VEC_LENGTH (inner_parms);
4580 for (i = 0; i < ntparms; ++i)
4582 if (TREE_VEC_ELT (inner_parms, i) == error_mark_node)
4583 continue;
4585 if (TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)))
4587 if (msg)
4589 no_errors = false;
4590 if (is_friend_decl == 2)
4591 return no_errors;
4593 error (msg, decl);
4594 msg = 0;
4597 /* Clear out the default argument so that we are not
4598 confused later. */
4599 TREE_PURPOSE (TREE_VEC_ELT (inner_parms, i)) = NULL_TREE;
4603 /* At this point, if we're still interested in issuing messages,
4604 they must apply to classes surrounding the object declared. */
4605 if (msg)
4606 msg = G_("default argument for template parameter for class "
4607 "enclosing %qD");
4610 return no_errors;
4613 /* Worker for push_template_decl_real, called via
4614 for_each_template_parm. DATA is really an int, indicating the
4615 level of the parameters we are interested in. If T is a template
4616 parameter of that level, return nonzero. */
4618 static int
4619 template_parm_this_level_p (tree t, void* data)
4621 int this_level = *(int *)data;
4622 int level;
4624 if (TREE_CODE (t) == TEMPLATE_PARM_INDEX)
4625 level = TEMPLATE_PARM_LEVEL (t);
4626 else
4627 level = TEMPLATE_TYPE_LEVEL (t);
4628 return level == this_level;
4631 /* Creates a TEMPLATE_DECL for the indicated DECL using the template
4632 parameters given by current_template_args, or reuses a
4633 previously existing one, if appropriate. Returns the DECL, or an
4634 equivalent one, if it is replaced via a call to duplicate_decls.
4636 If IS_FRIEND is true, DECL is a friend declaration. */
4638 tree
4639 push_template_decl_real (tree decl, bool is_friend)
4641 tree tmpl;
4642 tree args;
4643 tree info;
4644 tree ctx;
4645 bool is_primary;
4646 bool is_partial;
4647 int new_template_p = 0;
4648 /* True if the template is a member template, in the sense of
4649 [temp.mem]. */
4650 bool member_template_p = false;
4652 if (decl == error_mark_node || !current_template_parms)
4653 return error_mark_node;
4655 /* See if this is a partial specialization. */
4656 is_partial = (DECL_IMPLICIT_TYPEDEF_P (decl)
4657 && TREE_CODE (TREE_TYPE (decl)) != ENUMERAL_TYPE
4658 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)));
4660 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_FRIEND_P (decl))
4661 is_friend = true;
4663 if (is_friend)
4664 /* For a friend, we want the context of the friend function, not
4665 the type of which it is a friend. */
4666 ctx = CP_DECL_CONTEXT (decl);
4667 else if (CP_DECL_CONTEXT (decl)
4668 && TREE_CODE (CP_DECL_CONTEXT (decl)) != NAMESPACE_DECL)
4669 /* In the case of a virtual function, we want the class in which
4670 it is defined. */
4671 ctx = CP_DECL_CONTEXT (decl);
4672 else
4673 /* Otherwise, if we're currently defining some class, the DECL
4674 is assumed to be a member of the class. */
4675 ctx = current_scope ();
4677 if (ctx && TREE_CODE (ctx) == NAMESPACE_DECL)
4678 ctx = NULL_TREE;
4680 if (!DECL_CONTEXT (decl))
4681 DECL_CONTEXT (decl) = FROB_CONTEXT (current_namespace);
4683 /* See if this is a primary template. */
4684 if (is_friend && ctx
4685 && uses_template_parms_level (ctx, processing_template_decl))
4686 /* A friend template that specifies a class context, i.e.
4687 template <typename T> friend void A<T>::f();
4688 is not primary. */
4689 is_primary = false;
4690 else
4691 is_primary = template_parm_scope_p ();
4693 if (is_primary)
4695 if (DECL_CLASS_SCOPE_P (decl))
4696 member_template_p = true;
4697 if (TREE_CODE (decl) == TYPE_DECL
4698 && ANON_AGGRNAME_P (DECL_NAME (decl)))
4700 error ("template class without a name");
4701 return error_mark_node;
4703 else if (TREE_CODE (decl) == FUNCTION_DECL)
4705 if (DECL_DESTRUCTOR_P (decl))
4707 /* [temp.mem]
4709 A destructor shall not be a member template. */
4710 error ("destructor %qD declared as member template", decl);
4711 return error_mark_node;
4713 if (NEW_DELETE_OPNAME_P (DECL_NAME (decl))
4714 && (!prototype_p (TREE_TYPE (decl))
4715 || TYPE_ARG_TYPES (TREE_TYPE (decl)) == void_list_node
4716 || !TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (decl)))
4717 || (TREE_CHAIN (TYPE_ARG_TYPES ((TREE_TYPE (decl))))
4718 == void_list_node)))
4720 /* [basic.stc.dynamic.allocation]
4722 An allocation function can be a function
4723 template. ... Template allocation functions shall
4724 have two or more parameters. */
4725 error ("invalid template declaration of %qD", decl);
4726 return error_mark_node;
4729 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
4730 && CLASS_TYPE_P (TREE_TYPE (decl)))
4731 /* OK */;
4732 else if (TREE_CODE (decl) == TYPE_DECL
4733 && TYPE_DECL_ALIAS_P (decl))
4734 /* alias-declaration */
4735 gcc_assert (!DECL_ARTIFICIAL (decl));
4736 else
4738 error ("template declaration of %q#D", decl);
4739 return error_mark_node;
4743 /* Check to see that the rules regarding the use of default
4744 arguments are not being violated. */
4745 check_default_tmpl_args (decl, current_template_parms,
4746 is_primary, is_partial, /*is_friend_decl=*/0);
4748 /* Ensure that there are no parameter packs in the type of this
4749 declaration that have not been expanded. */
4750 if (TREE_CODE (decl) == FUNCTION_DECL)
4752 /* Check each of the arguments individually to see if there are
4753 any bare parameter packs. */
4754 tree type = TREE_TYPE (decl);
4755 tree arg = DECL_ARGUMENTS (decl);
4756 tree argtype = TYPE_ARG_TYPES (type);
4758 while (arg && argtype)
4760 if (!DECL_PACK_P (arg)
4761 && check_for_bare_parameter_packs (TREE_TYPE (arg)))
4763 /* This is a PARM_DECL that contains unexpanded parameter
4764 packs. We have already complained about this in the
4765 check_for_bare_parameter_packs call, so just replace
4766 these types with ERROR_MARK_NODE. */
4767 TREE_TYPE (arg) = error_mark_node;
4768 TREE_VALUE (argtype) = error_mark_node;
4771 arg = DECL_CHAIN (arg);
4772 argtype = TREE_CHAIN (argtype);
4775 /* Check for bare parameter packs in the return type and the
4776 exception specifiers. */
4777 if (check_for_bare_parameter_packs (TREE_TYPE (type)))
4778 /* Errors were already issued, set return type to int
4779 as the frontend doesn't expect error_mark_node as
4780 the return type. */
4781 TREE_TYPE (type) = integer_type_node;
4782 if (check_for_bare_parameter_packs (TYPE_RAISES_EXCEPTIONS (type)))
4783 TYPE_RAISES_EXCEPTIONS (type) = NULL_TREE;
4785 else if (check_for_bare_parameter_packs ((TREE_CODE (decl) == TYPE_DECL
4786 && TYPE_DECL_ALIAS_P (decl))
4787 ? DECL_ORIGINAL_TYPE (decl)
4788 : TREE_TYPE (decl)))
4790 TREE_TYPE (decl) = error_mark_node;
4791 return error_mark_node;
4794 if (is_partial)
4795 return process_partial_specialization (decl);
4797 args = current_template_args ();
4799 if (!ctx
4800 || TREE_CODE (ctx) == FUNCTION_DECL
4801 || (CLASS_TYPE_P (ctx) && TYPE_BEING_DEFINED (ctx))
4802 || (TREE_CODE (decl) == TYPE_DECL
4803 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
4804 || (is_friend && !DECL_TEMPLATE_INFO (decl)))
4806 if (DECL_LANG_SPECIFIC (decl)
4807 && DECL_TEMPLATE_INFO (decl)
4808 && DECL_TI_TEMPLATE (decl))
4809 tmpl = DECL_TI_TEMPLATE (decl);
4810 /* If DECL is a TYPE_DECL for a class-template, then there won't
4811 be DECL_LANG_SPECIFIC. The information equivalent to
4812 DECL_TEMPLATE_INFO is found in TYPE_TEMPLATE_INFO instead. */
4813 else if (DECL_IMPLICIT_TYPEDEF_P (decl)
4814 && TYPE_TEMPLATE_INFO (TREE_TYPE (decl))
4815 && TYPE_TI_TEMPLATE (TREE_TYPE (decl)))
4817 /* Since a template declaration already existed for this
4818 class-type, we must be redeclaring it here. Make sure
4819 that the redeclaration is valid. */
4820 redeclare_class_template (TREE_TYPE (decl),
4821 current_template_parms);
4822 /* We don't need to create a new TEMPLATE_DECL; just use the
4823 one we already had. */
4824 tmpl = TYPE_TI_TEMPLATE (TREE_TYPE (decl));
4826 else
4828 tmpl = build_template_decl (decl, current_template_parms,
4829 member_template_p);
4830 new_template_p = 1;
4832 if (DECL_LANG_SPECIFIC (decl)
4833 && DECL_TEMPLATE_SPECIALIZATION (decl))
4835 /* A specialization of a member template of a template
4836 class. */
4837 SET_DECL_TEMPLATE_SPECIALIZATION (tmpl);
4838 DECL_TEMPLATE_INFO (tmpl) = DECL_TEMPLATE_INFO (decl);
4839 DECL_TEMPLATE_INFO (decl) = NULL_TREE;
4843 else
4845 tree a, t, current, parms;
4846 int i;
4847 tree tinfo = get_template_info (decl);
4849 if (!tinfo)
4851 error ("template definition of non-template %q#D", decl);
4852 return error_mark_node;
4855 tmpl = TI_TEMPLATE (tinfo);
4857 if (DECL_FUNCTION_TEMPLATE_P (tmpl)
4858 && DECL_TEMPLATE_INFO (decl) && DECL_TI_ARGS (decl)
4859 && DECL_TEMPLATE_SPECIALIZATION (decl)
4860 && DECL_MEMBER_TEMPLATE_P (tmpl))
4862 tree new_tmpl;
4864 /* The declaration is a specialization of a member
4865 template, declared outside the class. Therefore, the
4866 innermost template arguments will be NULL, so we
4867 replace them with the arguments determined by the
4868 earlier call to check_explicit_specialization. */
4869 args = DECL_TI_ARGS (decl);
4871 new_tmpl
4872 = build_template_decl (decl, current_template_parms,
4873 member_template_p);
4874 DECL_TEMPLATE_RESULT (new_tmpl) = decl;
4875 TREE_TYPE (new_tmpl) = TREE_TYPE (decl);
4876 DECL_TI_TEMPLATE (decl) = new_tmpl;
4877 SET_DECL_TEMPLATE_SPECIALIZATION (new_tmpl);
4878 DECL_TEMPLATE_INFO (new_tmpl)
4879 = build_template_info (tmpl, args);
4881 register_specialization (new_tmpl,
4882 most_general_template (tmpl),
4883 args,
4884 is_friend, 0);
4885 return decl;
4888 /* Make sure the template headers we got make sense. */
4890 parms = DECL_TEMPLATE_PARMS (tmpl);
4891 i = TMPL_PARMS_DEPTH (parms);
4892 if (TMPL_ARGS_DEPTH (args) != i)
4894 error ("expected %d levels of template parms for %q#D, got %d",
4895 i, decl, TMPL_ARGS_DEPTH (args));
4896 DECL_INTERFACE_KNOWN (decl) = 1;
4897 return error_mark_node;
4899 else
4900 for (current = decl; i > 0; --i, parms = TREE_CHAIN (parms))
4902 a = TMPL_ARGS_LEVEL (args, i);
4903 t = INNERMOST_TEMPLATE_PARMS (parms);
4905 if (TREE_VEC_LENGTH (t) != TREE_VEC_LENGTH (a))
4907 if (current == decl)
4908 error ("got %d template parameters for %q#D",
4909 TREE_VEC_LENGTH (a), decl);
4910 else
4911 error ("got %d template parameters for %q#T",
4912 TREE_VEC_LENGTH (a), current);
4913 error (" but %d required", TREE_VEC_LENGTH (t));
4914 /* Avoid crash in import_export_decl. */
4915 DECL_INTERFACE_KNOWN (decl) = 1;
4916 return error_mark_node;
4919 if (current == decl)
4920 current = ctx;
4921 else if (current == NULL_TREE)
4922 /* Can happen in erroneous input. */
4923 break;
4924 else
4925 current = get_containing_scope (current);
4928 /* Check that the parms are used in the appropriate qualifying scopes
4929 in the declarator. */
4930 if (!comp_template_args
4931 (TI_ARGS (tinfo),
4932 TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (tmpl)))))
4934 error ("\
4935 template arguments to %qD do not match original template %qD",
4936 decl, DECL_TEMPLATE_RESULT (tmpl));
4937 if (!uses_template_parms (TI_ARGS (tinfo)))
4938 inform (input_location, "use template<> for an explicit specialization");
4939 /* Avoid crash in import_export_decl. */
4940 DECL_INTERFACE_KNOWN (decl) = 1;
4941 return error_mark_node;
4945 DECL_TEMPLATE_RESULT (tmpl) = decl;
4946 TREE_TYPE (tmpl) = TREE_TYPE (decl);
4948 /* Push template declarations for global functions and types. Note
4949 that we do not try to push a global template friend declared in a
4950 template class; such a thing may well depend on the template
4951 parameters of the class. */
4952 if (new_template_p && !ctx
4953 && !(is_friend && template_class_depth (current_class_type) > 0))
4955 tmpl = pushdecl_namespace_level (tmpl, is_friend);
4956 if (tmpl == error_mark_node)
4957 return error_mark_node;
4959 /* Hide template friend classes that haven't been declared yet. */
4960 if (is_friend && TREE_CODE (decl) == TYPE_DECL)
4962 DECL_ANTICIPATED (tmpl) = 1;
4963 DECL_FRIEND_P (tmpl) = 1;
4967 if (is_primary)
4969 tree parms = DECL_TEMPLATE_PARMS (tmpl);
4970 int i;
4972 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
4973 if (DECL_CONV_FN_P (tmpl))
4975 int depth = TMPL_PARMS_DEPTH (parms);
4977 /* It is a conversion operator. See if the type converted to
4978 depends on innermost template operands. */
4980 if (uses_template_parms_level (TREE_TYPE (TREE_TYPE (tmpl)),
4981 depth))
4982 DECL_TEMPLATE_CONV_FN_P (tmpl) = 1;
4985 /* Give template template parms a DECL_CONTEXT of the template
4986 for which they are a parameter. */
4987 parms = INNERMOST_TEMPLATE_PARMS (parms);
4988 for (i = TREE_VEC_LENGTH (parms) - 1; i >= 0; --i)
4990 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
4991 if (TREE_CODE (parm) == TEMPLATE_DECL)
4992 DECL_CONTEXT (parm) = tmpl;
4996 /* The DECL_TI_ARGS of DECL contains full set of arguments referring
4997 back to its most general template. If TMPL is a specialization,
4998 ARGS may only have the innermost set of arguments. Add the missing
4999 argument levels if necessary. */
5000 if (DECL_TEMPLATE_INFO (tmpl))
5001 args = add_outermost_template_args (DECL_TI_ARGS (tmpl), args);
5003 info = build_template_info (tmpl, args);
5005 if (DECL_IMPLICIT_TYPEDEF_P (decl))
5006 SET_TYPE_TEMPLATE_INFO (TREE_TYPE (tmpl), info);
5007 else
5009 if (is_primary && !DECL_LANG_SPECIFIC (decl))
5010 retrofit_lang_decl (decl);
5011 if (DECL_LANG_SPECIFIC (decl))
5012 DECL_TEMPLATE_INFO (decl) = info;
5015 return DECL_TEMPLATE_RESULT (tmpl);
5018 tree
5019 push_template_decl (tree decl)
5021 return push_template_decl_real (decl, false);
5024 /* FN is an inheriting constructor that inherits from the constructor
5025 template INHERITED; turn FN into a constructor template with a matching
5026 template header. */
5028 tree
5029 add_inherited_template_parms (tree fn, tree inherited)
5031 tree inner_parms
5032 = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (inherited));
5033 inner_parms = copy_node (inner_parms);
5034 tree parms
5035 = tree_cons (size_int (processing_template_decl + 1),
5036 inner_parms, current_template_parms);
5037 tree tmpl = build_template_decl (fn, parms, /*member*/true);
5038 tree args = template_parms_to_args (parms);
5039 DECL_TEMPLATE_INFO (fn) = build_template_info (tmpl, args);
5040 TREE_TYPE (tmpl) = TREE_TYPE (fn);
5041 DECL_TEMPLATE_RESULT (tmpl) = fn;
5042 DECL_ARTIFICIAL (tmpl) = true;
5043 DECL_PRIMARY_TEMPLATE (tmpl) = tmpl;
5044 return tmpl;
5047 /* Called when a class template TYPE is redeclared with the indicated
5048 template PARMS, e.g.:
5050 template <class T> struct S;
5051 template <class T> struct S {}; */
5053 bool
5054 redeclare_class_template (tree type, tree parms)
5056 tree tmpl;
5057 tree tmpl_parms;
5058 int i;
5060 if (!TYPE_TEMPLATE_INFO (type))
5062 error ("%qT is not a template type", type);
5063 return false;
5066 tmpl = TYPE_TI_TEMPLATE (type);
5067 if (!PRIMARY_TEMPLATE_P (tmpl))
5068 /* The type is nested in some template class. Nothing to worry
5069 about here; there are no new template parameters for the nested
5070 type. */
5071 return true;
5073 if (!parms)
5075 error ("template specifiers not specified in declaration of %qD",
5076 tmpl);
5077 return false;
5080 parms = INNERMOST_TEMPLATE_PARMS (parms);
5081 tmpl_parms = DECL_INNERMOST_TEMPLATE_PARMS (tmpl);
5083 if (TREE_VEC_LENGTH (parms) != TREE_VEC_LENGTH (tmpl_parms))
5085 error_n (input_location, TREE_VEC_LENGTH (parms),
5086 "redeclared with %d template parameter",
5087 "redeclared with %d template parameters",
5088 TREE_VEC_LENGTH (parms));
5089 inform_n (input_location, TREE_VEC_LENGTH (tmpl_parms),
5090 "previous declaration %q+D used %d template parameter",
5091 "previous declaration %q+D used %d template parameters",
5092 tmpl, TREE_VEC_LENGTH (tmpl_parms));
5093 return false;
5096 for (i = 0; i < TREE_VEC_LENGTH (tmpl_parms); ++i)
5098 tree tmpl_parm;
5099 tree parm;
5100 tree tmpl_default;
5101 tree parm_default;
5103 if (TREE_VEC_ELT (tmpl_parms, i) == error_mark_node
5104 || TREE_VEC_ELT (parms, i) == error_mark_node)
5105 continue;
5107 tmpl_parm = TREE_VALUE (TREE_VEC_ELT (tmpl_parms, i));
5108 if (error_operand_p (tmpl_parm))
5109 return false;
5111 parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
5112 tmpl_default = TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i));
5113 parm_default = TREE_PURPOSE (TREE_VEC_ELT (parms, i));
5115 /* TMPL_PARM and PARM can be either TYPE_DECL, PARM_DECL, or
5116 TEMPLATE_DECL. */
5117 if (TREE_CODE (tmpl_parm) != TREE_CODE (parm)
5118 || (TREE_CODE (tmpl_parm) != TYPE_DECL
5119 && !same_type_p (TREE_TYPE (tmpl_parm), TREE_TYPE (parm)))
5120 || (TREE_CODE (tmpl_parm) != PARM_DECL
5121 && (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (tmpl_parm))
5122 != TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm))))
5123 || (TREE_CODE (tmpl_parm) == PARM_DECL
5124 && (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (tmpl_parm))
5125 != TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))))
5127 error ("template parameter %q+#D", tmpl_parm);
5128 error ("redeclared here as %q#D", parm);
5129 return false;
5132 if (tmpl_default != NULL_TREE && parm_default != NULL_TREE)
5134 /* We have in [temp.param]:
5136 A template-parameter may not be given default arguments
5137 by two different declarations in the same scope. */
5138 error_at (input_location, "redefinition of default argument for %q#D", parm);
5139 inform (DECL_SOURCE_LOCATION (tmpl_parm),
5140 "original definition appeared here");
5141 return false;
5144 if (parm_default != NULL_TREE)
5145 /* Update the previous template parameters (which are the ones
5146 that will really count) with the new default value. */
5147 TREE_PURPOSE (TREE_VEC_ELT (tmpl_parms, i)) = parm_default;
5148 else if (tmpl_default != NULL_TREE)
5149 /* Update the new parameters, too; they'll be used as the
5150 parameters for any members. */
5151 TREE_PURPOSE (TREE_VEC_ELT (parms, i)) = tmpl_default;
5154 return true;
5157 /* Simplify EXPR if it is a non-dependent expression. Returns the
5158 (possibly simplified) expression. */
5160 tree
5161 fold_non_dependent_expr_sfinae (tree expr, tsubst_flags_t complain)
5163 if (expr == NULL_TREE)
5164 return NULL_TREE;
5166 /* If we're in a template, but EXPR isn't value dependent, simplify
5167 it. We're supposed to treat:
5169 template <typename T> void f(T[1 + 1]);
5170 template <typename T> void f(T[2]);
5172 as two declarations of the same function, for example. */
5173 if (processing_template_decl
5174 && !instantiation_dependent_expression_p (expr)
5175 && potential_constant_expression (expr))
5177 HOST_WIDE_INT saved_processing_template_decl;
5179 saved_processing_template_decl = processing_template_decl;
5180 processing_template_decl = 0;
5181 expr = tsubst_copy_and_build (expr,
5182 /*args=*/NULL_TREE,
5183 complain,
5184 /*in_decl=*/NULL_TREE,
5185 /*function_p=*/false,
5186 /*integral_constant_expression_p=*/true);
5187 processing_template_decl = saved_processing_template_decl;
5189 return expr;
5192 tree
5193 fold_non_dependent_expr (tree expr)
5195 return fold_non_dependent_expr_sfinae (expr, tf_error);
5198 /* Return TRUE iff T is a type alias, a TEMPLATE_DECL for an alias
5199 template declaration, or a TYPE_DECL for an alias declaration. */
5201 bool
5202 alias_type_or_template_p (tree t)
5204 if (t == NULL_TREE)
5205 return false;
5206 return ((TREE_CODE (t) == TYPE_DECL && TYPE_DECL_ALIAS_P (t))
5207 || (TYPE_P (t)
5208 && TYPE_NAME (t)
5209 && TYPE_DECL_ALIAS_P (TYPE_NAME (t)))
5210 || DECL_ALIAS_TEMPLATE_P (t));
5213 /* Return TRUE iff is a specialization of an alias template. */
5215 bool
5216 alias_template_specialization_p (const_tree t)
5218 if (t == NULL_TREE)
5219 return false;
5221 return (TYPE_P (t)
5222 && TYPE_TEMPLATE_INFO (t)
5223 && PRIMARY_TEMPLATE_P (TYPE_TI_TEMPLATE (t))
5224 && DECL_ALIAS_TEMPLATE_P (TYPE_TI_TEMPLATE (t)));
5227 /* Return the number of innermost template parameters in TMPL. */
5229 static int
5230 num_innermost_template_parms (tree tmpl)
5232 tree parms = INNERMOST_TEMPLATE_PARMS (DECL_TEMPLATE_PARMS (tmpl));
5233 return TREE_VEC_LENGTH (parms);
5236 /* Return either TMPL or another template that it is equivalent to under DR
5237 1286: An alias that just changes the name of a template is equivalent to
5238 the other template. */
5240 static tree
5241 get_underlying_template (tree tmpl)
5243 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
5244 while (DECL_ALIAS_TEMPLATE_P (tmpl))
5246 tree result = DECL_ORIGINAL_TYPE (DECL_TEMPLATE_RESULT (tmpl));
5247 if (TYPE_TEMPLATE_INFO (result))
5249 tree sub = TYPE_TI_TEMPLATE (result);
5250 if (PRIMARY_TEMPLATE_P (sub)
5251 && (num_innermost_template_parms (tmpl)
5252 == num_innermost_template_parms (sub)))
5254 tree alias_args = INNERMOST_TEMPLATE_ARGS
5255 (template_parms_to_args (DECL_TEMPLATE_PARMS (tmpl)));
5256 if (!comp_template_args (TYPE_TI_ARGS (result), alias_args))
5257 break;
5258 /* The alias type is equivalent to the pattern of the
5259 underlying template, so strip the alias. */
5260 tmpl = sub;
5261 continue;
5264 break;
5266 return tmpl;
5269 /* Subroutine of convert_nontype_argument. Converts EXPR to TYPE, which
5270 must be a function or a pointer-to-function type, as specified
5271 in [temp.arg.nontype]: disambiguate EXPR if it is an overload set,
5272 and check that the resulting function has external linkage. */
5274 static tree
5275 convert_nontype_argument_function (tree type, tree expr,
5276 tsubst_flags_t complain)
5278 tree fns = expr;
5279 tree fn, fn_no_ptr;
5280 linkage_kind linkage;
5282 fn = instantiate_type (type, fns, tf_none);
5283 if (fn == error_mark_node)
5284 return error_mark_node;
5286 fn_no_ptr = fn;
5287 if (TREE_CODE (fn_no_ptr) == ADDR_EXPR)
5288 fn_no_ptr = TREE_OPERAND (fn_no_ptr, 0);
5289 if (BASELINK_P (fn_no_ptr))
5290 fn_no_ptr = BASELINK_FUNCTIONS (fn_no_ptr);
5292 /* [temp.arg.nontype]/1
5294 A template-argument for a non-type, non-template template-parameter
5295 shall be one of:
5296 [...]
5297 -- the address of an object or function with external [C++11: or
5298 internal] linkage. */
5300 if (TREE_CODE (fn_no_ptr) != FUNCTION_DECL)
5302 if (complain & tf_error)
5304 error ("%qE is not a valid template argument for type %qT",
5305 expr, type);
5306 if (TYPE_PTR_P (type))
5307 error ("it must be the address of a function with "
5308 "external linkage");
5309 else
5310 error ("it must be the name of a function with "
5311 "external linkage");
5313 return NULL_TREE;
5316 linkage = decl_linkage (fn_no_ptr);
5317 if (cxx_dialect >= cxx11 ? linkage == lk_none : linkage != lk_external)
5319 if (complain & tf_error)
5321 if (cxx_dialect >= cxx11)
5322 error ("%qE is not a valid template argument for type %qT "
5323 "because %qD has no linkage",
5324 expr, type, fn_no_ptr);
5325 else
5326 error ("%qE is not a valid template argument for type %qT "
5327 "because %qD does not have external linkage",
5328 expr, type, fn_no_ptr);
5330 return NULL_TREE;
5333 return fn;
5336 /* Subroutine of convert_nontype_argument.
5337 Check if EXPR of type TYPE is a valid pointer-to-member constant.
5338 Emit an error otherwise. */
5340 static bool
5341 check_valid_ptrmem_cst_expr (tree type, tree expr,
5342 tsubst_flags_t complain)
5344 STRIP_NOPS (expr);
5345 if (expr && (null_ptr_cst_p (expr) || TREE_CODE (expr) == PTRMEM_CST))
5346 return true;
5347 if (cxx_dialect >= cxx11 && null_member_pointer_value_p (expr))
5348 return true;
5349 if (complain & tf_error)
5351 error ("%qE is not a valid template argument for type %qT",
5352 expr, type);
5353 error ("it must be a pointer-to-member of the form %<&X::Y%>");
5355 return false;
5358 /* Returns TRUE iff the address of OP is value-dependent.
5360 14.6.2.4 [temp.dep.temp]:
5361 A non-integral non-type template-argument is dependent if its type is
5362 dependent or it has either of the following forms
5363 qualified-id
5364 & qualified-id
5365 and contains a nested-name-specifier which specifies a class-name that
5366 names a dependent type.
5368 We generalize this to just say that the address of a member of a
5369 dependent class is value-dependent; the above doesn't cover the
5370 address of a static data member named with an unqualified-id. */
5372 static bool
5373 has_value_dependent_address (tree op)
5375 /* We could use get_inner_reference here, but there's no need;
5376 this is only relevant for template non-type arguments, which
5377 can only be expressed as &id-expression. */
5378 if (DECL_P (op))
5380 tree ctx = CP_DECL_CONTEXT (op);
5381 if (TYPE_P (ctx) && dependent_type_p (ctx))
5382 return true;
5385 return false;
5388 /* The next set of functions are used for providing helpful explanatory
5389 diagnostics for failed overload resolution. Their messages should be
5390 indented by two spaces for consistency with the messages in
5391 call.c */
5393 static int
5394 unify_success (bool /*explain_p*/)
5396 return 0;
5399 static int
5400 unify_parameter_deduction_failure (bool explain_p, tree parm)
5402 if (explain_p)
5403 inform (input_location,
5404 " couldn't deduce template parameter %qD", parm);
5405 return 1;
5408 static int
5409 unify_invalid (bool /*explain_p*/)
5411 return 1;
5414 static int
5415 unify_cv_qual_mismatch (bool explain_p, tree parm, tree arg)
5417 if (explain_p)
5418 inform (input_location,
5419 " types %qT and %qT have incompatible cv-qualifiers",
5420 parm, arg);
5421 return 1;
5424 static int
5425 unify_type_mismatch (bool explain_p, tree parm, tree arg)
5427 if (explain_p)
5428 inform (input_location, " mismatched types %qT and %qT", parm, arg);
5429 return 1;
5432 static int
5433 unify_parameter_pack_mismatch (bool explain_p, tree parm, tree arg)
5435 if (explain_p)
5436 inform (input_location,
5437 " template parameter %qD is not a parameter pack, but "
5438 "argument %qD is",
5439 parm, arg);
5440 return 1;
5443 static int
5444 unify_ptrmem_cst_mismatch (bool explain_p, tree parm, tree arg)
5446 if (explain_p)
5447 inform (input_location,
5448 " template argument %qE does not match "
5449 "pointer-to-member constant %qE",
5450 arg, parm);
5451 return 1;
5454 static int
5455 unify_expression_unequal (bool explain_p, tree parm, tree arg)
5457 if (explain_p)
5458 inform (input_location, " %qE is not equivalent to %qE", parm, arg);
5459 return 1;
5462 static int
5463 unify_parameter_pack_inconsistent (bool explain_p, tree old_arg, tree new_arg)
5465 if (explain_p)
5466 inform (input_location,
5467 " inconsistent parameter pack deduction with %qT and %qT",
5468 old_arg, new_arg);
5469 return 1;
5472 static int
5473 unify_inconsistency (bool explain_p, tree parm, tree first, tree second)
5475 if (explain_p)
5477 if (TYPE_P (parm))
5478 inform (input_location,
5479 " deduced conflicting types for parameter %qT (%qT and %qT)",
5480 parm, first, second);
5481 else
5482 inform (input_location,
5483 " deduced conflicting values for non-type parameter "
5484 "%qE (%qE and %qE)", parm, first, second);
5486 return 1;
5489 static int
5490 unify_vla_arg (bool explain_p, tree arg)
5492 if (explain_p)
5493 inform (input_location,
5494 " variable-sized array type %qT is not "
5495 "a valid template argument",
5496 arg);
5497 return 1;
5500 static int
5501 unify_method_type_error (bool explain_p, tree arg)
5503 if (explain_p)
5504 inform (input_location,
5505 " member function type %qT is not a valid template argument",
5506 arg);
5507 return 1;
5510 static int
5511 unify_arity (bool explain_p, int have, int wanted)
5513 if (explain_p)
5514 inform_n (input_location, wanted,
5515 " candidate expects %d argument, %d provided",
5516 " candidate expects %d arguments, %d provided",
5517 wanted, have);
5518 return 1;
5521 static int
5522 unify_too_many_arguments (bool explain_p, int have, int wanted)
5524 return unify_arity (explain_p, have, wanted);
5527 static int
5528 unify_too_few_arguments (bool explain_p, int have, int wanted)
5530 return unify_arity (explain_p, have, wanted);
5533 static int
5534 unify_arg_conversion (bool explain_p, tree to_type,
5535 tree from_type, tree arg)
5537 if (explain_p)
5538 inform (EXPR_LOC_OR_LOC (arg, input_location),
5539 " cannot convert %qE (type %qT) to type %qT",
5540 arg, from_type, to_type);
5541 return 1;
5544 static int
5545 unify_no_common_base (bool explain_p, enum template_base_result r,
5546 tree parm, tree arg)
5548 if (explain_p)
5549 switch (r)
5551 case tbr_ambiguous_baseclass:
5552 inform (input_location, " %qT is an ambiguous base class of %qT",
5553 parm, arg);
5554 break;
5555 default:
5556 inform (input_location, " %qT is not derived from %qT", arg, parm);
5557 break;
5559 return 1;
5562 static int
5563 unify_inconsistent_template_template_parameters (bool explain_p)
5565 if (explain_p)
5566 inform (input_location,
5567 " template parameters of a template template argument are "
5568 "inconsistent with other deduced template arguments");
5569 return 1;
5572 static int
5573 unify_template_deduction_failure (bool explain_p, tree parm, tree arg)
5575 if (explain_p)
5576 inform (input_location,
5577 " can't deduce a template for %qT from non-template type %qT",
5578 parm, arg);
5579 return 1;
5582 static int
5583 unify_template_argument_mismatch (bool explain_p, tree parm, tree arg)
5585 if (explain_p)
5586 inform (input_location,
5587 " template argument %qE does not match %qD", arg, parm);
5588 return 1;
5591 static int
5592 unify_overload_resolution_failure (bool explain_p, tree arg)
5594 if (explain_p)
5595 inform (input_location,
5596 " could not resolve address from overloaded function %qE",
5597 arg);
5598 return 1;
5601 /* Attempt to convert the non-type template parameter EXPR to the
5602 indicated TYPE. If the conversion is successful, return the
5603 converted value. If the conversion is unsuccessful, return
5604 NULL_TREE if we issued an error message, or error_mark_node if we
5605 did not. We issue error messages for out-and-out bad template
5606 parameters, but not simply because the conversion failed, since we
5607 might be just trying to do argument deduction. Both TYPE and EXPR
5608 must be non-dependent.
5610 The conversion follows the special rules described in
5611 [temp.arg.nontype], and it is much more strict than an implicit
5612 conversion.
5614 This function is called twice for each template argument (see
5615 lookup_template_class for a more accurate description of this
5616 problem). This means that we need to handle expressions which
5617 are not valid in a C++ source, but can be created from the
5618 first call (for instance, casts to perform conversions). These
5619 hacks can go away after we fix the double coercion problem. */
5621 static tree
5622 convert_nontype_argument (tree type, tree expr, tsubst_flags_t complain)
5624 tree expr_type;
5626 /* Detect immediately string literals as invalid non-type argument.
5627 This special-case is not needed for correctness (we would easily
5628 catch this later), but only to provide better diagnostic for this
5629 common user mistake. As suggested by DR 100, we do not mention
5630 linkage issues in the diagnostic as this is not the point. */
5631 /* FIXME we're making this OK. */
5632 if (TREE_CODE (expr) == STRING_CST)
5634 if (complain & tf_error)
5635 error ("%qE is not a valid template argument for type %qT "
5636 "because string literals can never be used in this context",
5637 expr, type);
5638 return NULL_TREE;
5641 /* Add the ADDR_EXPR now for the benefit of
5642 value_dependent_expression_p. */
5643 if (TYPE_PTROBV_P (type)
5644 && TREE_CODE (TREE_TYPE (expr)) == ARRAY_TYPE)
5646 expr = decay_conversion (expr, complain);
5647 if (expr == error_mark_node)
5648 return error_mark_node;
5651 /* If we are in a template, EXPR may be non-dependent, but still
5652 have a syntactic, rather than semantic, form. For example, EXPR
5653 might be a SCOPE_REF, rather than the VAR_DECL to which the
5654 SCOPE_REF refers. Preserving the qualifying scope is necessary
5655 so that access checking can be performed when the template is
5656 instantiated -- but here we need the resolved form so that we can
5657 convert the argument. */
5658 if (TYPE_REF_OBJ_P (type)
5659 && has_value_dependent_address (expr))
5660 /* If we want the address and it's value-dependent, don't fold. */;
5661 else if (!type_unknown_p (expr))
5662 expr = fold_non_dependent_expr_sfinae (expr, complain);
5663 if (error_operand_p (expr))
5664 return error_mark_node;
5665 expr_type = TREE_TYPE (expr);
5666 if (TREE_CODE (type) == REFERENCE_TYPE)
5667 expr = mark_lvalue_use (expr);
5668 else
5669 expr = mark_rvalue_use (expr);
5671 /* 14.3.2/5: The null pointer{,-to-member} conversion is applied
5672 to a non-type argument of "nullptr". */
5673 if (expr == nullptr_node && TYPE_PTR_OR_PTRMEM_P (type))
5674 expr = convert (type, expr);
5676 /* In C++11, integral or enumeration non-type template arguments can be
5677 arbitrary constant expressions. Pointer and pointer to
5678 member arguments can be general constant expressions that evaluate
5679 to a null value, but otherwise still need to be of a specific form. */
5680 if (cxx_dialect >= cxx11)
5682 if (TREE_CODE (expr) == PTRMEM_CST)
5683 /* A PTRMEM_CST is already constant, and a valid template
5684 argument for a parameter of pointer to member type, we just want
5685 to leave it in that form rather than lower it to a
5686 CONSTRUCTOR. */;
5687 else if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
5688 expr = maybe_constant_value (expr);
5689 else if (TYPE_PTR_OR_PTRMEM_P (type))
5691 tree folded = maybe_constant_value (expr);
5692 if (TYPE_PTR_P (type) ? integer_zerop (folded)
5693 : null_member_pointer_value_p (folded))
5694 expr = folded;
5698 /* HACK: Due to double coercion, we can get a
5699 NOP_EXPR<REFERENCE_TYPE>(ADDR_EXPR<POINTER_TYPE> (arg)) here,
5700 which is the tree that we built on the first call (see
5701 below when coercing to reference to object or to reference to
5702 function). We just strip everything and get to the arg.
5703 See g++.old-deja/g++.oliva/template4.C and g++.dg/template/nontype9.C
5704 for examples. */
5705 if (TYPE_REF_OBJ_P (type) || TYPE_REFFN_P (type))
5707 tree probe_type, probe = expr;
5708 if (REFERENCE_REF_P (probe))
5709 probe = TREE_OPERAND (probe, 0);
5710 probe_type = TREE_TYPE (probe);
5711 if (TREE_CODE (probe) == NOP_EXPR)
5713 /* ??? Maybe we could use convert_from_reference here, but we
5714 would need to relax its constraints because the NOP_EXPR
5715 could actually change the type to something more cv-qualified,
5716 and this is not folded by convert_from_reference. */
5717 tree addr = TREE_OPERAND (probe, 0);
5718 if (TREE_CODE (probe_type) == REFERENCE_TYPE
5719 && TREE_CODE (addr) == ADDR_EXPR
5720 && TYPE_PTR_P (TREE_TYPE (addr))
5721 && (same_type_ignoring_top_level_qualifiers_p
5722 (TREE_TYPE (probe_type),
5723 TREE_TYPE (TREE_TYPE (addr)))))
5725 expr = TREE_OPERAND (addr, 0);
5726 expr_type = TREE_TYPE (probe_type);
5731 /* We could also generate a NOP_EXPR(ADDR_EXPR()) when the
5732 parameter is a pointer to object, through decay and
5733 qualification conversion. Let's strip everything. */
5734 else if (TREE_CODE (expr) == NOP_EXPR && TYPE_PTROBV_P (type))
5736 tree probe = expr;
5737 STRIP_NOPS (probe);
5738 if (TREE_CODE (probe) == ADDR_EXPR
5739 && TYPE_PTR_P (TREE_TYPE (probe)))
5741 /* Skip the ADDR_EXPR only if it is part of the decay for
5742 an array. Otherwise, it is part of the original argument
5743 in the source code. */
5744 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (probe, 0))) == ARRAY_TYPE)
5745 probe = TREE_OPERAND (probe, 0);
5746 expr = probe;
5747 expr_type = TREE_TYPE (expr);
5751 /* [temp.arg.nontype]/5, bullet 1
5753 For a non-type template-parameter of integral or enumeration type,
5754 integral promotions (_conv.prom_) and integral conversions
5755 (_conv.integral_) are applied. */
5756 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
5758 tree t = build_integral_nontype_arg_conv (type, expr, complain);
5759 t = maybe_constant_value (t);
5760 if (t != error_mark_node)
5761 expr = t;
5763 if (!same_type_ignoring_top_level_qualifiers_p (type, TREE_TYPE (expr)))
5764 return error_mark_node;
5766 /* Notice that there are constant expressions like '4 % 0' which
5767 do not fold into integer constants. */
5768 if (TREE_CODE (expr) != INTEGER_CST)
5770 if (complain & tf_error)
5772 int errs = errorcount, warns = warningcount + werrorcount;
5773 if (processing_template_decl
5774 && !require_potential_constant_expression (expr))
5775 return NULL_TREE;
5776 expr = cxx_constant_value (expr);
5777 if (errorcount > errs || warningcount + werrorcount > warns)
5778 inform (EXPR_LOC_OR_LOC (expr, input_location),
5779 "in template argument for type %qT ", type);
5780 if (expr == error_mark_node)
5781 return NULL_TREE;
5782 /* else cxx_constant_value complained but gave us
5783 a real constant, so go ahead. */
5784 gcc_assert (TREE_CODE (expr) == INTEGER_CST);
5786 else
5787 return NULL_TREE;
5790 /* Avoid typedef problems. */
5791 if (TREE_TYPE (expr) != type)
5792 expr = fold_convert (type, expr);
5794 /* [temp.arg.nontype]/5, bullet 2
5796 For a non-type template-parameter of type pointer to object,
5797 qualification conversions (_conv.qual_) and the array-to-pointer
5798 conversion (_conv.array_) are applied. */
5799 else if (TYPE_PTROBV_P (type))
5801 /* [temp.arg.nontype]/1 (TC1 version, DR 49):
5803 A template-argument for a non-type, non-template template-parameter
5804 shall be one of: [...]
5806 -- the name of a non-type template-parameter;
5807 -- the address of an object or function with external linkage, [...]
5808 expressed as "& id-expression" where the & is optional if the name
5809 refers to a function or array, or if the corresponding
5810 template-parameter is a reference.
5812 Here, we do not care about functions, as they are invalid anyway
5813 for a parameter of type pointer-to-object. */
5815 if (DECL_P (expr) && DECL_TEMPLATE_PARM_P (expr))
5816 /* Non-type template parameters are OK. */
5818 else if (cxx_dialect >= cxx11 && integer_zerop (expr))
5819 /* Null pointer values are OK in C++11. */;
5820 else if (TREE_CODE (expr) != ADDR_EXPR
5821 && TREE_CODE (expr_type) != ARRAY_TYPE)
5823 if (VAR_P (expr))
5825 if (complain & tf_error)
5826 error ("%qD is not a valid template argument "
5827 "because %qD is a variable, not the address of "
5828 "a variable", expr, expr);
5829 return NULL_TREE;
5831 if (POINTER_TYPE_P (expr_type))
5833 if (complain & tf_error)
5834 error ("%qE is not a valid template argument for %qT "
5835 "because it is not the address of a variable",
5836 expr, type);
5837 return NULL_TREE;
5839 /* Other values, like integer constants, might be valid
5840 non-type arguments of some other type. */
5841 return error_mark_node;
5843 else
5845 tree decl;
5847 decl = ((TREE_CODE (expr) == ADDR_EXPR)
5848 ? TREE_OPERAND (expr, 0) : expr);
5849 if (!VAR_P (decl))
5851 if (complain & tf_error)
5852 error ("%qE is not a valid template argument of type %qT "
5853 "because %qE is not a variable", expr, type, decl);
5854 return NULL_TREE;
5856 else if (cxx_dialect < cxx11 && !DECL_EXTERNAL_LINKAGE_P (decl))
5858 if (complain & tf_error)
5859 error ("%qE is not a valid template argument of type %qT "
5860 "because %qD does not have external linkage",
5861 expr, type, decl);
5862 return NULL_TREE;
5864 else if (cxx_dialect >= cxx11 && decl_linkage (decl) == lk_none)
5866 if (complain & tf_error)
5867 error ("%qE is not a valid template argument of type %qT "
5868 "because %qD has no linkage", expr, type, decl);
5869 return NULL_TREE;
5873 expr = decay_conversion (expr, complain);
5874 if (expr == error_mark_node)
5875 return error_mark_node;
5877 expr = perform_qualification_conversions (type, expr);
5878 if (expr == error_mark_node)
5879 return error_mark_node;
5881 /* [temp.arg.nontype]/5, bullet 3
5883 For a non-type template-parameter of type reference to object, no
5884 conversions apply. The type referred to by the reference may be more
5885 cv-qualified than the (otherwise identical) type of the
5886 template-argument. The template-parameter is bound directly to the
5887 template-argument, which must be an lvalue. */
5888 else if (TYPE_REF_OBJ_P (type))
5890 if (!same_type_ignoring_top_level_qualifiers_p (TREE_TYPE (type),
5891 expr_type))
5892 return error_mark_node;
5894 if (!at_least_as_qualified_p (TREE_TYPE (type), expr_type))
5896 if (complain & tf_error)
5897 error ("%qE is not a valid template argument for type %qT "
5898 "because of conflicts in cv-qualification", expr, type);
5899 return NULL_TREE;
5902 if (!real_lvalue_p (expr))
5904 if (complain & tf_error)
5905 error ("%qE is not a valid template argument for type %qT "
5906 "because it is not an lvalue", expr, type);
5907 return NULL_TREE;
5910 /* [temp.arg.nontype]/1
5912 A template-argument for a non-type, non-template template-parameter
5913 shall be one of: [...]
5915 -- the address of an object or function with external linkage. */
5916 if (INDIRECT_REF_P (expr)
5917 && TYPE_REF_OBJ_P (TREE_TYPE (TREE_OPERAND (expr, 0))))
5919 expr = TREE_OPERAND (expr, 0);
5920 if (DECL_P (expr))
5922 if (complain & tf_error)
5923 error ("%q#D is not a valid template argument for type %qT "
5924 "because a reference variable does not have a constant "
5925 "address", expr, type);
5926 return NULL_TREE;
5930 if (!DECL_P (expr))
5932 if (complain & tf_error)
5933 error ("%qE is not a valid template argument for type %qT "
5934 "because it is not an object with external linkage",
5935 expr, type);
5936 return NULL_TREE;
5939 if (!DECL_EXTERNAL_LINKAGE_P (expr))
5941 if (complain & tf_error)
5942 error ("%qE is not a valid template argument for type %qT "
5943 "because object %qD has not external linkage",
5944 expr, type, expr);
5945 return NULL_TREE;
5948 expr = build_nop (type, build_address (expr));
5950 /* [temp.arg.nontype]/5, bullet 4
5952 For a non-type template-parameter of type pointer to function, only
5953 the function-to-pointer conversion (_conv.func_) is applied. If the
5954 template-argument represents a set of overloaded functions (or a
5955 pointer to such), the matching function is selected from the set
5956 (_over.over_). */
5957 else if (TYPE_PTRFN_P (type))
5959 /* If the argument is a template-id, we might not have enough
5960 context information to decay the pointer. */
5961 if (!type_unknown_p (expr_type))
5963 expr = decay_conversion (expr, complain);
5964 if (expr == error_mark_node)
5965 return error_mark_node;
5968 if (cxx_dialect >= cxx11 && integer_zerop (expr))
5969 /* Null pointer values are OK in C++11. */
5970 return perform_qualification_conversions (type, expr);
5972 expr = convert_nontype_argument_function (type, expr, complain);
5973 if (!expr || expr == error_mark_node)
5974 return expr;
5976 /* [temp.arg.nontype]/5, bullet 5
5978 For a non-type template-parameter of type reference to function, no
5979 conversions apply. If the template-argument represents a set of
5980 overloaded functions, the matching function is selected from the set
5981 (_over.over_). */
5982 else if (TYPE_REFFN_P (type))
5984 if (TREE_CODE (expr) == ADDR_EXPR)
5986 if (complain & tf_error)
5988 error ("%qE is not a valid template argument for type %qT "
5989 "because it is a pointer", expr, type);
5990 inform (input_location, "try using %qE instead",
5991 TREE_OPERAND (expr, 0));
5993 return NULL_TREE;
5996 expr = convert_nontype_argument_function (type, expr, complain);
5997 if (!expr || expr == error_mark_node)
5998 return expr;
6000 expr = build_nop (type, build_address (expr));
6002 /* [temp.arg.nontype]/5, bullet 6
6004 For a non-type template-parameter of type pointer to member function,
6005 no conversions apply. If the template-argument represents a set of
6006 overloaded member functions, the matching member function is selected
6007 from the set (_over.over_). */
6008 else if (TYPE_PTRMEMFUNC_P (type))
6010 expr = instantiate_type (type, expr, tf_none);
6011 if (expr == error_mark_node)
6012 return error_mark_node;
6014 /* [temp.arg.nontype] bullet 1 says the pointer to member
6015 expression must be a pointer-to-member constant. */
6016 if (!check_valid_ptrmem_cst_expr (type, expr, complain))
6017 return error_mark_node;
6019 /* There is no way to disable standard conversions in
6020 resolve_address_of_overloaded_function (called by
6021 instantiate_type). It is possible that the call succeeded by
6022 converting &B::I to &D::I (where B is a base of D), so we need
6023 to reject this conversion here.
6025 Actually, even if there was a way to disable standard conversions,
6026 it would still be better to reject them here so that we can
6027 provide a superior diagnostic. */
6028 if (!same_type_p (TREE_TYPE (expr), type))
6030 if (complain & tf_error)
6032 error ("%qE is not a valid template argument for type %qT "
6033 "because it is of type %qT", expr, type,
6034 TREE_TYPE (expr));
6035 /* If we are just one standard conversion off, explain. */
6036 if (can_convert_standard (type, TREE_TYPE (expr), complain))
6037 inform (input_location,
6038 "standard conversions are not allowed in this context");
6040 return NULL_TREE;
6043 /* [temp.arg.nontype]/5, bullet 7
6045 For a non-type template-parameter of type pointer to data member,
6046 qualification conversions (_conv.qual_) are applied. */
6047 else if (TYPE_PTRDATAMEM_P (type))
6049 /* [temp.arg.nontype] bullet 1 says the pointer to member
6050 expression must be a pointer-to-member constant. */
6051 if (!check_valid_ptrmem_cst_expr (type, expr, complain))
6052 return error_mark_node;
6054 expr = perform_qualification_conversions (type, expr);
6055 if (expr == error_mark_node)
6056 return expr;
6058 else if (NULLPTR_TYPE_P (type))
6060 if (expr != nullptr_node)
6062 if (complain & tf_error)
6063 error ("%qE is not a valid template argument for type %qT "
6064 "because it is of type %qT", expr, type, TREE_TYPE (expr));
6065 return NULL_TREE;
6067 return expr;
6069 /* A template non-type parameter must be one of the above. */
6070 else
6071 gcc_unreachable ();
6073 /* Sanity check: did we actually convert the argument to the
6074 right type? */
6075 gcc_assert (same_type_ignoring_top_level_qualifiers_p
6076 (type, TREE_TYPE (expr)));
6077 return expr;
6080 /* Subroutine of coerce_template_template_parms, which returns 1 if
6081 PARM_PARM and ARG_PARM match using the rule for the template
6082 parameters of template template parameters. Both PARM and ARG are
6083 template parameters; the rest of the arguments are the same as for
6084 coerce_template_template_parms.
6086 static int
6087 coerce_template_template_parm (tree parm,
6088 tree arg,
6089 tsubst_flags_t complain,
6090 tree in_decl,
6091 tree outer_args)
6093 if (arg == NULL_TREE || error_operand_p (arg)
6094 || parm == NULL_TREE || error_operand_p (parm))
6095 return 0;
6097 if (TREE_CODE (arg) != TREE_CODE (parm))
6098 return 0;
6100 switch (TREE_CODE (parm))
6102 case TEMPLATE_DECL:
6103 /* We encounter instantiations of templates like
6104 template <template <template <class> class> class TT>
6105 class C; */
6107 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
6108 tree argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
6110 if (!coerce_template_template_parms
6111 (parmparm, argparm, complain, in_decl, outer_args))
6112 return 0;
6114 /* Fall through. */
6116 case TYPE_DECL:
6117 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (arg))
6118 && !TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
6119 /* Argument is a parameter pack but parameter is not. */
6120 return 0;
6121 break;
6123 case PARM_DECL:
6124 /* The tsubst call is used to handle cases such as
6126 template <int> class C {};
6127 template <class T, template <T> class TT> class D {};
6128 D<int, C> d;
6130 i.e. the parameter list of TT depends on earlier parameters. */
6131 if (!uses_template_parms (TREE_TYPE (arg))
6132 && !same_type_p
6133 (tsubst (TREE_TYPE (parm), outer_args, complain, in_decl),
6134 TREE_TYPE (arg)))
6135 return 0;
6137 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (arg))
6138 && !TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
6139 /* Argument is a parameter pack but parameter is not. */
6140 return 0;
6142 break;
6144 default:
6145 gcc_unreachable ();
6148 return 1;
6152 /* Return 1 if PARM_PARMS and ARG_PARMS matches using rule for
6153 template template parameters. Both PARM_PARMS and ARG_PARMS are
6154 vectors of TREE_LIST nodes containing TYPE_DECL, TEMPLATE_DECL
6155 or PARM_DECL.
6157 Consider the example:
6158 template <class T> class A;
6159 template<template <class U> class TT> class B;
6161 For B<A>, PARM_PARMS are the parameters to TT, while ARG_PARMS are
6162 the parameters to A, and OUTER_ARGS contains A. */
6164 static int
6165 coerce_template_template_parms (tree parm_parms,
6166 tree arg_parms,
6167 tsubst_flags_t complain,
6168 tree in_decl,
6169 tree outer_args)
6171 int nparms, nargs, i;
6172 tree parm, arg;
6173 int variadic_p = 0;
6175 gcc_assert (TREE_CODE (parm_parms) == TREE_VEC);
6176 gcc_assert (TREE_CODE (arg_parms) == TREE_VEC);
6178 nparms = TREE_VEC_LENGTH (parm_parms);
6179 nargs = TREE_VEC_LENGTH (arg_parms);
6181 /* Determine whether we have a parameter pack at the end of the
6182 template template parameter's template parameter list. */
6183 if (TREE_VEC_ELT (parm_parms, nparms - 1) != error_mark_node)
6185 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, nparms - 1));
6187 if (error_operand_p (parm))
6188 return 0;
6190 switch (TREE_CODE (parm))
6192 case TEMPLATE_DECL:
6193 case TYPE_DECL:
6194 if (TEMPLATE_TYPE_PARAMETER_PACK (TREE_TYPE (parm)))
6195 variadic_p = 1;
6196 break;
6198 case PARM_DECL:
6199 if (TEMPLATE_PARM_PARAMETER_PACK (DECL_INITIAL (parm)))
6200 variadic_p = 1;
6201 break;
6203 default:
6204 gcc_unreachable ();
6208 if (nargs != nparms
6209 && !(variadic_p && nargs >= nparms - 1))
6210 return 0;
6212 /* Check all of the template parameters except the parameter pack at
6213 the end (if any). */
6214 for (i = 0; i < nparms - variadic_p; ++i)
6216 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node
6217 || TREE_VEC_ELT (arg_parms, i) == error_mark_node)
6218 continue;
6220 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
6221 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
6223 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
6224 outer_args))
6225 return 0;
6229 if (variadic_p)
6231 /* Check each of the template parameters in the template
6232 argument against the template parameter pack at the end of
6233 the template template parameter. */
6234 if (TREE_VEC_ELT (parm_parms, i) == error_mark_node)
6235 return 0;
6237 parm = TREE_VALUE (TREE_VEC_ELT (parm_parms, i));
6239 for (; i < nargs; ++i)
6241 if (TREE_VEC_ELT (arg_parms, i) == error_mark_node)
6242 continue;
6244 arg = TREE_VALUE (TREE_VEC_ELT (arg_parms, i));
6246 if (!coerce_template_template_parm (parm, arg, complain, in_decl,
6247 outer_args))
6248 return 0;
6252 return 1;
6255 /* Verifies that the deduced template arguments (in TARGS) for the
6256 template template parameters (in TPARMS) represent valid bindings,
6257 by comparing the template parameter list of each template argument
6258 to the template parameter list of its corresponding template
6259 template parameter, in accordance with DR150. This
6260 routine can only be called after all template arguments have been
6261 deduced. It will return TRUE if all of the template template
6262 parameter bindings are okay, FALSE otherwise. */
6263 bool
6264 template_template_parm_bindings_ok_p (tree tparms, tree targs)
6266 int i, ntparms = TREE_VEC_LENGTH (tparms);
6267 bool ret = true;
6269 /* We're dealing with template parms in this process. */
6270 ++processing_template_decl;
6272 targs = INNERMOST_TEMPLATE_ARGS (targs);
6274 for (i = 0; i < ntparms; ++i)
6276 tree tparm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
6277 tree targ = TREE_VEC_ELT (targs, i);
6279 if (TREE_CODE (tparm) == TEMPLATE_DECL && targ)
6281 tree packed_args = NULL_TREE;
6282 int idx, len = 1;
6284 if (ARGUMENT_PACK_P (targ))
6286 /* Look inside the argument pack. */
6287 packed_args = ARGUMENT_PACK_ARGS (targ);
6288 len = TREE_VEC_LENGTH (packed_args);
6291 for (idx = 0; idx < len; ++idx)
6293 tree targ_parms = NULL_TREE;
6295 if (packed_args)
6296 /* Extract the next argument from the argument
6297 pack. */
6298 targ = TREE_VEC_ELT (packed_args, idx);
6300 if (PACK_EXPANSION_P (targ))
6301 /* Look at the pattern of the pack expansion. */
6302 targ = PACK_EXPANSION_PATTERN (targ);
6304 /* Extract the template parameters from the template
6305 argument. */
6306 if (TREE_CODE (targ) == TEMPLATE_DECL)
6307 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (targ);
6308 else if (TREE_CODE (targ) == TEMPLATE_TEMPLATE_PARM)
6309 targ_parms = DECL_INNERMOST_TEMPLATE_PARMS (TYPE_NAME (targ));
6311 /* Verify that we can coerce the template template
6312 parameters from the template argument to the template
6313 parameter. This requires an exact match. */
6314 if (targ_parms
6315 && !coerce_template_template_parms
6316 (DECL_INNERMOST_TEMPLATE_PARMS (tparm),
6317 targ_parms,
6318 tf_none,
6319 tparm,
6320 targs))
6322 ret = false;
6323 goto out;
6329 out:
6331 --processing_template_decl;
6332 return ret;
6335 /* Since type attributes aren't mangled, we need to strip them from
6336 template type arguments. */
6338 static tree
6339 canonicalize_type_argument (tree arg, tsubst_flags_t complain)
6341 tree mv;
6342 if (!arg || arg == error_mark_node || arg == TYPE_CANONICAL (arg))
6343 return arg;
6344 mv = TYPE_MAIN_VARIANT (arg);
6345 arg = strip_typedefs (arg);
6346 if (TYPE_ALIGN (arg) != TYPE_ALIGN (mv)
6347 || TYPE_ATTRIBUTES (arg) != TYPE_ATTRIBUTES (mv))
6349 if (complain & tf_warning)
6350 warning (0, "ignoring attributes on template argument %qT", arg);
6351 arg = build_aligned_type (arg, TYPE_ALIGN (mv));
6352 arg = cp_build_type_attribute_variant (arg, TYPE_ATTRIBUTES (mv));
6354 return arg;
6357 /* Convert the indicated template ARG as necessary to match the
6358 indicated template PARM. Returns the converted ARG, or
6359 error_mark_node if the conversion was unsuccessful. Error and
6360 warning messages are issued under control of COMPLAIN. This
6361 conversion is for the Ith parameter in the parameter list. ARGS is
6362 the full set of template arguments deduced so far. */
6364 static tree
6365 convert_template_argument (tree parm,
6366 tree arg,
6367 tree args,
6368 tsubst_flags_t complain,
6369 int i,
6370 tree in_decl)
6372 tree orig_arg;
6373 tree val;
6374 int is_type, requires_type, is_tmpl_type, requires_tmpl_type;
6376 if (TREE_CODE (arg) == TREE_LIST
6377 && TREE_CODE (TREE_VALUE (arg)) == OFFSET_REF)
6379 /* The template argument was the name of some
6380 member function. That's usually
6381 invalid, but static members are OK. In any
6382 case, grab the underlying fields/functions
6383 and issue an error later if required. */
6384 orig_arg = TREE_VALUE (arg);
6385 TREE_TYPE (arg) = unknown_type_node;
6388 orig_arg = arg;
6390 requires_tmpl_type = TREE_CODE (parm) == TEMPLATE_DECL;
6391 requires_type = (TREE_CODE (parm) == TYPE_DECL
6392 || requires_tmpl_type);
6394 /* When determining whether an argument pack expansion is a template,
6395 look at the pattern. */
6396 if (TREE_CODE (arg) == TYPE_PACK_EXPANSION)
6397 arg = PACK_EXPANSION_PATTERN (arg);
6399 /* Deal with an injected-class-name used as a template template arg. */
6400 if (requires_tmpl_type && CLASS_TYPE_P (arg))
6402 tree t = maybe_get_template_decl_from_type_decl (TYPE_NAME (arg));
6403 if (TREE_CODE (t) == TEMPLATE_DECL)
6405 if (cxx_dialect >= cxx11)
6406 /* OK under DR 1004. */;
6407 else if (complain & tf_warning_or_error)
6408 pedwarn (input_location, OPT_Wpedantic, "injected-class-name %qD"
6409 " used as template template argument", TYPE_NAME (arg));
6410 else if (flag_pedantic_errors)
6411 t = arg;
6413 arg = t;
6417 is_tmpl_type =
6418 ((TREE_CODE (arg) == TEMPLATE_DECL
6419 && TREE_CODE (DECL_TEMPLATE_RESULT (arg)) == TYPE_DECL)
6420 || (requires_tmpl_type && TREE_CODE (arg) == TYPE_ARGUMENT_PACK)
6421 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
6422 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
6424 if (is_tmpl_type
6425 && (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
6426 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE))
6427 arg = TYPE_STUB_DECL (arg);
6429 is_type = TYPE_P (arg) || is_tmpl_type;
6431 if (requires_type && ! is_type && TREE_CODE (arg) == SCOPE_REF
6432 && TREE_CODE (TREE_OPERAND (arg, 0)) == TEMPLATE_TYPE_PARM)
6434 if (TREE_CODE (TREE_OPERAND (arg, 1)) == BIT_NOT_EXPR)
6436 if (complain & tf_error)
6437 error ("invalid use of destructor %qE as a type", orig_arg);
6438 return error_mark_node;
6441 permerror (input_location,
6442 "to refer to a type member of a template parameter, "
6443 "use %<typename %E%>", orig_arg);
6445 orig_arg = make_typename_type (TREE_OPERAND (arg, 0),
6446 TREE_OPERAND (arg, 1),
6447 typename_type,
6448 complain);
6449 arg = orig_arg;
6450 is_type = 1;
6452 if (is_type != requires_type)
6454 if (in_decl)
6456 if (complain & tf_error)
6458 error ("type/value mismatch at argument %d in template "
6459 "parameter list for %qD",
6460 i + 1, in_decl);
6461 if (is_type)
6462 error (" expected a constant of type %qT, got %qT",
6463 TREE_TYPE (parm),
6464 (DECL_P (arg) ? DECL_NAME (arg) : orig_arg));
6465 else if (requires_tmpl_type)
6466 error (" expected a class template, got %qE", orig_arg);
6467 else
6468 error (" expected a type, got %qE", orig_arg);
6471 return error_mark_node;
6473 if (is_tmpl_type ^ requires_tmpl_type)
6475 if (in_decl && (complain & tf_error))
6477 error ("type/value mismatch at argument %d in template "
6478 "parameter list for %qD",
6479 i + 1, in_decl);
6480 if (is_tmpl_type)
6481 error (" expected a type, got %qT", DECL_NAME (arg));
6482 else
6483 error (" expected a class template, got %qT", orig_arg);
6485 return error_mark_node;
6488 if (is_type)
6490 if (requires_tmpl_type)
6492 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
6493 val = orig_arg;
6494 else if (TREE_CODE (TREE_TYPE (arg)) == UNBOUND_CLASS_TEMPLATE)
6495 /* The number of argument required is not known yet.
6496 Just accept it for now. */
6497 val = TREE_TYPE (arg);
6498 else
6500 tree parmparm = DECL_INNERMOST_TEMPLATE_PARMS (parm);
6501 tree argparm;
6503 /* Strip alias templates that are equivalent to another
6504 template. */
6505 arg = get_underlying_template (arg);
6506 argparm = DECL_INNERMOST_TEMPLATE_PARMS (arg);
6508 if (coerce_template_template_parms (parmparm, argparm,
6509 complain, in_decl,
6510 args))
6512 val = arg;
6514 /* TEMPLATE_TEMPLATE_PARM node is preferred over
6515 TEMPLATE_DECL. */
6516 if (val != error_mark_node)
6518 if (DECL_TEMPLATE_TEMPLATE_PARM_P (val))
6519 val = TREE_TYPE (val);
6520 if (TREE_CODE (orig_arg) == TYPE_PACK_EXPANSION)
6521 val = make_pack_expansion (val);
6524 else
6526 if (in_decl && (complain & tf_error))
6528 error ("type/value mismatch at argument %d in "
6529 "template parameter list for %qD",
6530 i + 1, in_decl);
6531 error (" expected a template of type %qD, got %qT",
6532 parm, orig_arg);
6535 val = error_mark_node;
6539 else
6540 val = orig_arg;
6541 /* We only form one instance of each template specialization.
6542 Therefore, if we use a non-canonical variant (i.e., a
6543 typedef), any future messages referring to the type will use
6544 the typedef, which is confusing if those future uses do not
6545 themselves also use the typedef. */
6546 if (TYPE_P (val))
6547 val = canonicalize_type_argument (val, complain);
6549 else
6551 tree t = tsubst (TREE_TYPE (parm), args, complain, in_decl);
6553 if (invalid_nontype_parm_type_p (t, complain))
6554 return error_mark_node;
6556 if (template_parameter_pack_p (parm) && ARGUMENT_PACK_P (orig_arg))
6558 if (same_type_p (t, TREE_TYPE (orig_arg)))
6559 val = orig_arg;
6560 else
6562 /* Not sure if this is reachable, but it doesn't hurt
6563 to be robust. */
6564 error ("type mismatch in nontype parameter pack");
6565 val = error_mark_node;
6568 else if (!dependent_template_arg_p (orig_arg)
6569 && !uses_template_parms (t))
6570 /* We used to call digest_init here. However, digest_init
6571 will report errors, which we don't want when complain
6572 is zero. More importantly, digest_init will try too
6573 hard to convert things: for example, `0' should not be
6574 converted to pointer type at this point according to
6575 the standard. Accepting this is not merely an
6576 extension, since deciding whether or not these
6577 conversions can occur is part of determining which
6578 function template to call, or whether a given explicit
6579 argument specification is valid. */
6580 val = convert_nontype_argument (t, orig_arg, complain);
6581 else
6582 val = strip_typedefs_expr (orig_arg);
6584 if (val == NULL_TREE)
6585 val = error_mark_node;
6586 else if (val == error_mark_node && (complain & tf_error))
6587 error ("could not convert template argument %qE to %qT", orig_arg, t);
6589 if (TREE_CODE (val) == SCOPE_REF)
6591 /* Strip typedefs from the SCOPE_REF. */
6592 tree type = canonicalize_type_argument (TREE_TYPE (val), complain);
6593 tree scope = canonicalize_type_argument (TREE_OPERAND (val, 0),
6594 complain);
6595 val = build_qualified_name (type, scope, TREE_OPERAND (val, 1),
6596 QUALIFIED_NAME_IS_TEMPLATE (val));
6600 return val;
6603 /* Coerces the remaining template arguments in INNER_ARGS (from
6604 ARG_IDX to the end) into the parameter pack at PARM_IDX in PARMS.
6605 Returns the coerced argument pack. PARM_IDX is the position of this
6606 parameter in the template parameter list. ARGS is the original
6607 template argument list. */
6608 static tree
6609 coerce_template_parameter_pack (tree parms,
6610 int parm_idx,
6611 tree args,
6612 tree inner_args,
6613 int arg_idx,
6614 tree new_args,
6615 int* lost,
6616 tree in_decl,
6617 tsubst_flags_t complain)
6619 tree parm = TREE_VEC_ELT (parms, parm_idx);
6620 int nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
6621 tree packed_args;
6622 tree argument_pack;
6623 tree packed_parms = NULL_TREE;
6625 if (arg_idx > nargs)
6626 arg_idx = nargs;
6628 if (tree packs = fixed_parameter_pack_p (TREE_VALUE (parm)))
6630 /* When the template parameter is a non-type template parameter pack
6631 or template template parameter pack whose type or template
6632 parameters use parameter packs, we know exactly how many arguments
6633 we are looking for. Build a vector of the instantiated decls for
6634 these template parameters in PACKED_PARMS. */
6635 /* We can't use make_pack_expansion here because it would interpret a
6636 _DECL as a use rather than a declaration. */
6637 tree decl = TREE_VALUE (parm);
6638 tree exp = cxx_make_type (TYPE_PACK_EXPANSION);
6639 SET_PACK_EXPANSION_PATTERN (exp, decl);
6640 PACK_EXPANSION_PARAMETER_PACKS (exp) = packs;
6641 SET_TYPE_STRUCTURAL_EQUALITY (exp);
6643 TREE_VEC_LENGTH (args)--;
6644 packed_parms = tsubst_pack_expansion (exp, args, complain, decl);
6645 TREE_VEC_LENGTH (args)++;
6647 if (packed_parms == error_mark_node)
6648 return error_mark_node;
6650 /* If we're doing a partial instantiation of a member template,
6651 verify that all of the types used for the non-type
6652 template parameter pack are, in fact, valid for non-type
6653 template parameters. */
6654 if (arg_idx < nargs
6655 && PACK_EXPANSION_P (TREE_VEC_ELT (inner_args, arg_idx)))
6657 int j, len = TREE_VEC_LENGTH (packed_parms);
6658 for (j = 0; j < len; ++j)
6660 tree t = TREE_TYPE (TREE_VEC_ELT (packed_parms, j));
6661 if (invalid_nontype_parm_type_p (t, complain))
6662 return error_mark_node;
6666 packed_args = make_tree_vec (TREE_VEC_LENGTH (packed_parms));
6668 else
6669 packed_args = make_tree_vec (nargs - arg_idx);
6671 /* Convert the remaining arguments, which will be a part of the
6672 parameter pack "parm". */
6673 for (; arg_idx < nargs; ++arg_idx)
6675 tree arg = TREE_VEC_ELT (inner_args, arg_idx);
6676 tree actual_parm = TREE_VALUE (parm);
6677 int pack_idx = arg_idx - parm_idx;
6679 if (packed_parms)
6681 /* Once we've packed as many args as we have types, stop. */
6682 if (pack_idx >= TREE_VEC_LENGTH (packed_parms))
6683 break;
6684 else if (PACK_EXPANSION_P (arg))
6685 /* We don't know how many args we have yet, just
6686 use the unconverted ones for now. */
6687 return NULL_TREE;
6688 else
6689 actual_parm = TREE_VEC_ELT (packed_parms, pack_idx);
6692 if (arg == error_mark_node)
6694 if (complain & tf_error)
6695 error ("template argument %d is invalid", arg_idx + 1);
6697 else
6698 arg = convert_template_argument (actual_parm,
6699 arg, new_args, complain, parm_idx,
6700 in_decl);
6701 if (arg == error_mark_node)
6702 (*lost)++;
6703 TREE_VEC_ELT (packed_args, pack_idx) = arg;
6706 if (arg_idx - parm_idx < TREE_VEC_LENGTH (packed_args)
6707 && TREE_VEC_LENGTH (packed_args) > 0)
6709 if (complain & tf_error)
6710 error ("wrong number of template arguments (%d, should be %d)",
6711 arg_idx - parm_idx, TREE_VEC_LENGTH (packed_args));
6712 return error_mark_node;
6715 if (TREE_CODE (TREE_VALUE (parm)) == TYPE_DECL
6716 || TREE_CODE (TREE_VALUE (parm)) == TEMPLATE_DECL)
6717 argument_pack = cxx_make_type (TYPE_ARGUMENT_PACK);
6718 else
6720 argument_pack = make_node (NONTYPE_ARGUMENT_PACK);
6721 TREE_TYPE (argument_pack)
6722 = tsubst (TREE_TYPE (TREE_VALUE (parm)), new_args, complain, in_decl);
6723 TREE_CONSTANT (argument_pack) = 1;
6726 SET_ARGUMENT_PACK_ARGS (argument_pack, packed_args);
6727 #ifdef ENABLE_CHECKING
6728 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (packed_args,
6729 TREE_VEC_LENGTH (packed_args));
6730 #endif
6731 return argument_pack;
6734 /* Returns the number of pack expansions in the template argument vector
6735 ARGS. */
6737 static int
6738 pack_expansion_args_count (tree args)
6740 int i;
6741 int count = 0;
6742 if (args)
6743 for (i = 0; i < TREE_VEC_LENGTH (args); ++i)
6745 tree elt = TREE_VEC_ELT (args, i);
6746 if (elt && PACK_EXPANSION_P (elt))
6747 ++count;
6749 return count;
6752 /* Convert all template arguments to their appropriate types, and
6753 return a vector containing the innermost resulting template
6754 arguments. If any error occurs, return error_mark_node. Error and
6755 warning messages are issued under control of COMPLAIN.
6757 If REQUIRE_ALL_ARGS is false, argument deduction will be performed
6758 for arguments not specified in ARGS. Otherwise, if
6759 USE_DEFAULT_ARGS is true, default arguments will be used to fill in
6760 unspecified arguments. If REQUIRE_ALL_ARGS is true, but
6761 USE_DEFAULT_ARGS is false, then all arguments must be specified in
6762 ARGS. */
6764 static tree
6765 coerce_template_parms (tree parms,
6766 tree args,
6767 tree in_decl,
6768 tsubst_flags_t complain,
6769 bool require_all_args,
6770 bool use_default_args)
6772 int nparms, nargs, parm_idx, arg_idx, lost = 0;
6773 tree orig_inner_args;
6774 tree inner_args;
6775 tree new_args;
6776 tree new_inner_args;
6777 int saved_unevaluated_operand;
6778 int saved_inhibit_evaluation_warnings;
6780 /* When used as a boolean value, indicates whether this is a
6781 variadic template parameter list. Since it's an int, we can also
6782 subtract it from nparms to get the number of non-variadic
6783 parameters. */
6784 int variadic_p = 0;
6785 int variadic_args_p = 0;
6786 int post_variadic_parms = 0;
6788 if (args == error_mark_node)
6789 return error_mark_node;
6791 nparms = TREE_VEC_LENGTH (parms);
6793 /* Determine if there are any parameter packs. */
6794 for (parm_idx = 0; parm_idx < nparms; ++parm_idx)
6796 tree tparm = TREE_VALUE (TREE_VEC_ELT (parms, parm_idx));
6797 if (variadic_p)
6798 ++post_variadic_parms;
6799 if (template_parameter_pack_p (tparm))
6800 ++variadic_p;
6803 inner_args = orig_inner_args = INNERMOST_TEMPLATE_ARGS (args);
6804 /* If there are no parameters that follow a parameter pack, we need to
6805 expand any argument packs so that we can deduce a parameter pack from
6806 some non-packed args followed by an argument pack, as in variadic85.C.
6807 If there are such parameters, we need to leave argument packs intact
6808 so the arguments are assigned properly. This can happen when dealing
6809 with a nested class inside a partial specialization of a class
6810 template, as in variadic92.C, or when deducing a template parameter pack
6811 from a sub-declarator, as in variadic114.C. */
6812 if (!post_variadic_parms)
6813 inner_args = expand_template_argument_pack (inner_args);
6815 /* Count any pack expansion args. */
6816 variadic_args_p = pack_expansion_args_count (inner_args);
6818 nargs = inner_args ? NUM_TMPL_ARGS (inner_args) : 0;
6819 if ((nargs > nparms && !variadic_p)
6820 || (nargs < nparms - variadic_p
6821 && require_all_args
6822 && !variadic_args_p
6823 && (!use_default_args
6824 || (TREE_VEC_ELT (parms, nargs) != error_mark_node
6825 && !TREE_PURPOSE (TREE_VEC_ELT (parms, nargs))))))
6827 if (complain & tf_error)
6829 if (variadic_p)
6831 nparms -= variadic_p;
6832 error ("wrong number of template arguments "
6833 "(%d, should be %d or more)", nargs, nparms);
6835 else
6836 error ("wrong number of template arguments "
6837 "(%d, should be %d)", nargs, nparms);
6839 if (in_decl)
6840 error ("provided for %q+D", in_decl);
6843 return error_mark_node;
6845 /* We can't pass a pack expansion to a non-pack parameter of an alias
6846 template (DR 1430). */
6847 else if (in_decl && DECL_ALIAS_TEMPLATE_P (in_decl)
6848 && variadic_args_p
6849 && nargs - variadic_args_p < nparms - variadic_p)
6851 if (complain & tf_error)
6853 for (int i = 0; i < TREE_VEC_LENGTH (inner_args); ++i)
6855 tree arg = TREE_VEC_ELT (inner_args, i);
6856 tree parm = TREE_VALUE (TREE_VEC_ELT (parms, i));
6858 if (PACK_EXPANSION_P (arg)
6859 && !template_parameter_pack_p (parm))
6861 error ("pack expansion argument for non-pack parameter "
6862 "%qD of alias template %qD", parm, in_decl);
6863 inform (DECL_SOURCE_LOCATION (parm), "declared here");
6864 goto found;
6867 gcc_unreachable ();
6868 found:;
6870 return error_mark_node;
6873 /* We need to evaluate the template arguments, even though this
6874 template-id may be nested within a "sizeof". */
6875 saved_unevaluated_operand = cp_unevaluated_operand;
6876 cp_unevaluated_operand = 0;
6877 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
6878 c_inhibit_evaluation_warnings = 0;
6879 new_inner_args = make_tree_vec (nparms);
6880 new_args = add_outermost_template_args (args, new_inner_args);
6881 int pack_adjust = 0;
6882 for (parm_idx = 0, arg_idx = 0; parm_idx < nparms; parm_idx++, arg_idx++)
6884 tree arg;
6885 tree parm;
6887 /* Get the Ith template parameter. */
6888 parm = TREE_VEC_ELT (parms, parm_idx);
6890 if (parm == error_mark_node)
6892 TREE_VEC_ELT (new_inner_args, arg_idx) = error_mark_node;
6893 continue;
6896 /* Calculate the next argument. */
6897 if (arg_idx < nargs)
6898 arg = TREE_VEC_ELT (inner_args, arg_idx);
6899 else
6900 arg = NULL_TREE;
6902 if (template_parameter_pack_p (TREE_VALUE (parm))
6903 && !(arg && ARGUMENT_PACK_P (arg)))
6905 /* Some arguments will be placed in the
6906 template parameter pack PARM. */
6907 arg = coerce_template_parameter_pack (parms, parm_idx, args,
6908 inner_args, arg_idx,
6909 new_args, &lost,
6910 in_decl, complain);
6912 if (arg == NULL_TREE)
6914 /* We don't know how many args we have yet, just use the
6915 unconverted (and still packed) ones for now. */
6916 new_inner_args = orig_inner_args;
6917 arg_idx = nargs;
6918 break;
6921 TREE_VEC_ELT (new_inner_args, parm_idx) = arg;
6923 /* Store this argument. */
6924 if (arg == error_mark_node)
6926 lost++;
6927 /* We are done with all of the arguments. */
6928 arg_idx = nargs;
6930 else
6932 pack_adjust = TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg)) - 1;
6933 arg_idx += pack_adjust;
6936 continue;
6938 else if (arg)
6940 if (PACK_EXPANSION_P (arg))
6942 /* "If every valid specialization of a variadic template
6943 requires an empty template parameter pack, the template is
6944 ill-formed, no diagnostic required." So check that the
6945 pattern works with this parameter. */
6946 tree pattern = PACK_EXPANSION_PATTERN (arg);
6947 tree conv = convert_template_argument (TREE_VALUE (parm),
6948 pattern, new_args,
6949 complain, parm_idx,
6950 in_decl);
6951 if (conv == error_mark_node)
6953 inform (input_location, "so any instantiation with a "
6954 "non-empty parameter pack would be ill-formed");
6955 ++lost;
6957 else if (TYPE_P (conv) && !TYPE_P (pattern))
6958 /* Recover from missing typename. */
6959 TREE_VEC_ELT (inner_args, arg_idx)
6960 = make_pack_expansion (conv);
6962 /* We don't know how many args we have yet, just
6963 use the unconverted ones for now. */
6964 new_inner_args = inner_args;
6965 arg_idx = nargs;
6966 break;
6969 else if (require_all_args)
6971 /* There must be a default arg in this case. */
6972 arg = tsubst_template_arg (TREE_PURPOSE (parm), new_args,
6973 complain, in_decl);
6974 /* The position of the first default template argument,
6975 is also the number of non-defaulted arguments in NEW_INNER_ARGS.
6976 Record that. */
6977 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
6978 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args,
6979 arg_idx - pack_adjust);
6981 else
6982 break;
6984 if (arg == error_mark_node)
6986 if (complain & tf_error)
6987 error ("template argument %d is invalid", arg_idx + 1);
6989 else if (!arg)
6990 /* This only occurs if there was an error in the template
6991 parameter list itself (which we would already have
6992 reported) that we are trying to recover from, e.g., a class
6993 template with a parameter list such as
6994 template<typename..., typename>. */
6995 ++lost;
6996 else
6997 arg = convert_template_argument (TREE_VALUE (parm),
6998 arg, new_args, complain,
6999 parm_idx, in_decl);
7001 if (arg == error_mark_node)
7002 lost++;
7003 TREE_VEC_ELT (new_inner_args, arg_idx - pack_adjust) = arg;
7005 cp_unevaluated_operand = saved_unevaluated_operand;
7006 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
7008 if (variadic_p && arg_idx < nargs)
7010 if (complain & tf_error)
7012 error ("wrong number of template arguments "
7013 "(%d, should be %d)", nargs, arg_idx);
7014 if (in_decl)
7015 error ("provided for %q+D", in_decl);
7017 return error_mark_node;
7020 if (lost)
7021 return error_mark_node;
7023 #ifdef ENABLE_CHECKING
7024 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args))
7025 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (new_inner_args,
7026 TREE_VEC_LENGTH (new_inner_args));
7027 #endif
7029 return new_inner_args;
7032 /* Like coerce_template_parms. If PARMS represents all template
7033 parameters levels, this function returns a vector of vectors
7034 representing all the resulting argument levels. Note that in this
7035 case, only the innermost arguments are coerced because the
7036 outermost ones are supposed to have been coerced already.
7038 Otherwise, if PARMS represents only (the innermost) vector of
7039 parameters, this function returns a vector containing just the
7040 innermost resulting arguments. */
7042 static tree
7043 coerce_innermost_template_parms (tree parms,
7044 tree args,
7045 tree in_decl,
7046 tsubst_flags_t complain,
7047 bool require_all_args,
7048 bool use_default_args)
7050 int parms_depth = TMPL_PARMS_DEPTH (parms);
7051 int args_depth = TMPL_ARGS_DEPTH (args);
7052 tree coerced_args;
7054 if (parms_depth > 1)
7056 coerced_args = make_tree_vec (parms_depth);
7057 tree level;
7058 int cur_depth;
7060 for (level = parms, cur_depth = parms_depth;
7061 parms_depth > 0 && level != NULL_TREE;
7062 level = TREE_CHAIN (level), --cur_depth)
7064 tree l;
7065 if (cur_depth == args_depth)
7066 l = coerce_template_parms (TREE_VALUE (level),
7067 args, in_decl, complain,
7068 require_all_args,
7069 use_default_args);
7070 else
7071 l = TMPL_ARGS_LEVEL (args, cur_depth);
7073 if (l == error_mark_node)
7074 return error_mark_node;
7076 SET_TMPL_ARGS_LEVEL (coerced_args, cur_depth, l);
7079 else
7080 coerced_args = coerce_template_parms (INNERMOST_TEMPLATE_PARMS (parms),
7081 args, in_decl, complain,
7082 require_all_args,
7083 use_default_args);
7084 return coerced_args;
7087 /* Returns 1 if template args OT and NT are equivalent. */
7089 static int
7090 template_args_equal (tree ot, tree nt)
7092 if (nt == ot)
7093 return 1;
7094 if (nt == NULL_TREE || ot == NULL_TREE)
7095 return false;
7097 if (TREE_CODE (nt) == TREE_VEC)
7098 /* For member templates */
7099 return TREE_CODE (ot) == TREE_VEC && comp_template_args (ot, nt);
7100 else if (PACK_EXPANSION_P (ot))
7101 return (PACK_EXPANSION_P (nt)
7102 && template_args_equal (PACK_EXPANSION_PATTERN (ot),
7103 PACK_EXPANSION_PATTERN (nt))
7104 && template_args_equal (PACK_EXPANSION_EXTRA_ARGS (ot),
7105 PACK_EXPANSION_EXTRA_ARGS (nt)));
7106 else if (ARGUMENT_PACK_P (ot))
7108 int i, len;
7109 tree opack, npack;
7111 if (!ARGUMENT_PACK_P (nt))
7112 return 0;
7114 opack = ARGUMENT_PACK_ARGS (ot);
7115 npack = ARGUMENT_PACK_ARGS (nt);
7116 len = TREE_VEC_LENGTH (opack);
7117 if (TREE_VEC_LENGTH (npack) != len)
7118 return 0;
7119 for (i = 0; i < len; ++i)
7120 if (!template_args_equal (TREE_VEC_ELT (opack, i),
7121 TREE_VEC_ELT (npack, i)))
7122 return 0;
7123 return 1;
7125 else if (ot && TREE_CODE (ot) == ARGUMENT_PACK_SELECT)
7127 /* We get here probably because we are in the middle of substituting
7128 into the pattern of a pack expansion. In that case the
7129 ARGUMENT_PACK_SELECT temporarily replaces the pack argument we are
7130 interested in. So we want to use the initial pack argument for
7131 the comparison. */
7132 ot = ARGUMENT_PACK_SELECT_FROM_PACK (ot);
7133 if (nt && TREE_CODE (nt) == ARGUMENT_PACK_SELECT)
7134 nt = ARGUMENT_PACK_SELECT_FROM_PACK (nt);
7135 return template_args_equal (ot, nt);
7137 else if (TYPE_P (nt))
7138 return TYPE_P (ot) && same_type_p (ot, nt);
7139 else if (TREE_CODE (ot) == TREE_VEC || TYPE_P (ot))
7140 return 0;
7141 else
7142 return cp_tree_equal (ot, nt);
7145 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets of
7146 template arguments. Returns 0 otherwise, and updates OLDARG_PTR and
7147 NEWARG_PTR with the offending arguments if they are non-NULL. */
7149 static int
7150 comp_template_args_with_info (tree oldargs, tree newargs,
7151 tree *oldarg_ptr, tree *newarg_ptr)
7153 int i;
7155 if (oldargs == newargs)
7156 return 1;
7158 if (!oldargs || !newargs)
7159 return 0;
7161 if (TREE_VEC_LENGTH (oldargs) != TREE_VEC_LENGTH (newargs))
7162 return 0;
7164 for (i = 0; i < TREE_VEC_LENGTH (oldargs); ++i)
7166 tree nt = TREE_VEC_ELT (newargs, i);
7167 tree ot = TREE_VEC_ELT (oldargs, i);
7169 if (! template_args_equal (ot, nt))
7171 if (oldarg_ptr != NULL)
7172 *oldarg_ptr = ot;
7173 if (newarg_ptr != NULL)
7174 *newarg_ptr = nt;
7175 return 0;
7178 return 1;
7181 /* Returns 1 iff the OLDARGS and NEWARGS are in fact identical sets
7182 of template arguments. Returns 0 otherwise. */
7185 comp_template_args (tree oldargs, tree newargs)
7187 return comp_template_args_with_info (oldargs, newargs, NULL, NULL);
7190 static void
7191 add_pending_template (tree d)
7193 tree ti = (TYPE_P (d)
7194 ? CLASSTYPE_TEMPLATE_INFO (d)
7195 : DECL_TEMPLATE_INFO (d));
7196 struct pending_template *pt;
7197 int level;
7199 if (TI_PENDING_TEMPLATE_FLAG (ti))
7200 return;
7202 /* We are called both from instantiate_decl, where we've already had a
7203 tinst_level pushed, and instantiate_template, where we haven't.
7204 Compensate. */
7205 level = !current_tinst_level || current_tinst_level->decl != d;
7207 if (level)
7208 push_tinst_level (d);
7210 pt = ggc_alloc<pending_template> ();
7211 pt->next = NULL;
7212 pt->tinst = current_tinst_level;
7213 if (last_pending_template)
7214 last_pending_template->next = pt;
7215 else
7216 pending_templates = pt;
7218 last_pending_template = pt;
7220 TI_PENDING_TEMPLATE_FLAG (ti) = 1;
7222 if (level)
7223 pop_tinst_level ();
7227 /* Return a TEMPLATE_ID_EXPR corresponding to the indicated FNS and
7228 ARGLIST. Valid choices for FNS are given in the cp-tree.def
7229 documentation for TEMPLATE_ID_EXPR. */
7231 tree
7232 lookup_template_function (tree fns, tree arglist)
7234 tree type;
7236 if (fns == error_mark_node || arglist == error_mark_node)
7237 return error_mark_node;
7239 gcc_assert (!arglist || TREE_CODE (arglist) == TREE_VEC);
7241 if (!is_overloaded_fn (fns) && !identifier_p (fns))
7243 error ("%q#D is not a function template", fns);
7244 return error_mark_node;
7247 if (BASELINK_P (fns))
7249 BASELINK_FUNCTIONS (fns) = build2 (TEMPLATE_ID_EXPR,
7250 unknown_type_node,
7251 BASELINK_FUNCTIONS (fns),
7252 arglist);
7253 return fns;
7256 type = TREE_TYPE (fns);
7257 if (TREE_CODE (fns) == OVERLOAD || !type)
7258 type = unknown_type_node;
7260 return build2 (TEMPLATE_ID_EXPR, type, fns, arglist);
7263 /* Within the scope of a template class S<T>, the name S gets bound
7264 (in build_self_reference) to a TYPE_DECL for the class, not a
7265 TEMPLATE_DECL. If DECL is a TYPE_DECL for current_class_type,
7266 or one of its enclosing classes, and that type is a template,
7267 return the associated TEMPLATE_DECL. Otherwise, the original
7268 DECL is returned.
7270 Also handle the case when DECL is a TREE_LIST of ambiguous
7271 injected-class-names from different bases. */
7273 tree
7274 maybe_get_template_decl_from_type_decl (tree decl)
7276 if (decl == NULL_TREE)
7277 return decl;
7279 /* DR 176: A lookup that finds an injected-class-name (10.2
7280 [class.member.lookup]) can result in an ambiguity in certain cases
7281 (for example, if it is found in more than one base class). If all of
7282 the injected-class-names that are found refer to specializations of
7283 the same class template, and if the name is followed by a
7284 template-argument-list, the reference refers to the class template
7285 itself and not a specialization thereof, and is not ambiguous. */
7286 if (TREE_CODE (decl) == TREE_LIST)
7288 tree t, tmpl = NULL_TREE;
7289 for (t = decl; t; t = TREE_CHAIN (t))
7291 tree elt = maybe_get_template_decl_from_type_decl (TREE_VALUE (t));
7292 if (!tmpl)
7293 tmpl = elt;
7294 else if (tmpl != elt)
7295 break;
7297 if (tmpl && t == NULL_TREE)
7298 return tmpl;
7299 else
7300 return decl;
7303 return (decl != NULL_TREE
7304 && DECL_SELF_REFERENCE_P (decl)
7305 && CLASSTYPE_TEMPLATE_INFO (TREE_TYPE (decl)))
7306 ? CLASSTYPE_TI_TEMPLATE (TREE_TYPE (decl)) : decl;
7309 /* Given an IDENTIFIER_NODE (or type TEMPLATE_DECL) and a chain of
7310 parameters, find the desired type.
7312 D1 is the PTYPENAME terminal, and ARGLIST is the list of arguments.
7314 IN_DECL, if non-NULL, is the template declaration we are trying to
7315 instantiate.
7317 If ENTERING_SCOPE is nonzero, we are about to enter the scope of
7318 the class we are looking up.
7320 Issue error and warning messages under control of COMPLAIN.
7322 If the template class is really a local class in a template
7323 function, then the FUNCTION_CONTEXT is the function in which it is
7324 being instantiated.
7326 ??? Note that this function is currently called *twice* for each
7327 template-id: the first time from the parser, while creating the
7328 incomplete type (finish_template_type), and the second type during the
7329 real instantiation (instantiate_template_class). This is surely something
7330 that we want to avoid. It also causes some problems with argument
7331 coercion (see convert_nontype_argument for more information on this). */
7333 static tree
7334 lookup_template_class_1 (tree d1, tree arglist, tree in_decl, tree context,
7335 int entering_scope, tsubst_flags_t complain)
7337 tree templ = NULL_TREE, parmlist;
7338 tree t;
7339 void **slot;
7340 spec_entry *entry;
7341 spec_entry elt;
7342 hashval_t hash;
7344 if (identifier_p (d1))
7346 tree value = innermost_non_namespace_value (d1);
7347 if (value && DECL_TEMPLATE_TEMPLATE_PARM_P (value))
7348 templ = value;
7349 else
7351 if (context)
7352 push_decl_namespace (context);
7353 templ = lookup_name (d1);
7354 templ = maybe_get_template_decl_from_type_decl (templ);
7355 if (context)
7356 pop_decl_namespace ();
7358 if (templ)
7359 context = DECL_CONTEXT (templ);
7361 else if (TREE_CODE (d1) == TYPE_DECL && MAYBE_CLASS_TYPE_P (TREE_TYPE (d1)))
7363 tree type = TREE_TYPE (d1);
7365 /* If we are declaring a constructor, say A<T>::A<T>, we will get
7366 an implicit typename for the second A. Deal with it. */
7367 if (TREE_CODE (type) == TYPENAME_TYPE && TREE_TYPE (type))
7368 type = TREE_TYPE (type);
7370 if (CLASSTYPE_TEMPLATE_INFO (type))
7372 templ = CLASSTYPE_TI_TEMPLATE (type);
7373 d1 = DECL_NAME (templ);
7376 else if (TREE_CODE (d1) == ENUMERAL_TYPE
7377 || (TYPE_P (d1) && MAYBE_CLASS_TYPE_P (d1)))
7379 templ = TYPE_TI_TEMPLATE (d1);
7380 d1 = DECL_NAME (templ);
7382 else if (TREE_CODE (d1) == TEMPLATE_DECL
7383 && DECL_TEMPLATE_RESULT (d1)
7384 && TREE_CODE (DECL_TEMPLATE_RESULT (d1)) == TYPE_DECL)
7386 templ = d1;
7387 d1 = DECL_NAME (templ);
7388 context = DECL_CONTEXT (templ);
7390 else if (DECL_TEMPLATE_TEMPLATE_PARM_P (d1))
7392 templ = d1;
7393 d1 = DECL_NAME (templ);
7396 /* Issue an error message if we didn't find a template. */
7397 if (! templ)
7399 if (complain & tf_error)
7400 error ("%qT is not a template", d1);
7401 return error_mark_node;
7404 if (TREE_CODE (templ) != TEMPLATE_DECL
7405 /* Make sure it's a user visible template, if it was named by
7406 the user. */
7407 || ((complain & tf_user) && !DECL_TEMPLATE_PARM_P (templ)
7408 && !PRIMARY_TEMPLATE_P (templ)))
7410 if (complain & tf_error)
7412 error ("non-template type %qT used as a template", d1);
7413 if (in_decl)
7414 error ("for template declaration %q+D", in_decl);
7416 return error_mark_node;
7419 complain &= ~tf_user;
7421 /* An alias that just changes the name of a template is equivalent to the
7422 other template, so if any of the arguments are pack expansions, strip
7423 the alias to avoid problems with a pack expansion passed to a non-pack
7424 alias template parameter (DR 1430). */
7425 if (pack_expansion_args_count (INNERMOST_TEMPLATE_ARGS (arglist)))
7426 templ = get_underlying_template (templ);
7428 if (DECL_TEMPLATE_TEMPLATE_PARM_P (templ))
7430 /* Create a new TEMPLATE_DECL and TEMPLATE_TEMPLATE_PARM node to store
7431 template arguments */
7433 tree parm;
7434 tree arglist2;
7435 tree outer;
7437 parmlist = DECL_INNERMOST_TEMPLATE_PARMS (templ);
7439 /* Consider an example where a template template parameter declared as
7441 template <class T, class U = std::allocator<T> > class TT
7443 The template parameter level of T and U are one level larger than
7444 of TT. To proper process the default argument of U, say when an
7445 instantiation `TT<int>' is seen, we need to build the full
7446 arguments containing {int} as the innermost level. Outer levels,
7447 available when not appearing as default template argument, can be
7448 obtained from the arguments of the enclosing template.
7450 Suppose that TT is later substituted with std::vector. The above
7451 instantiation is `TT<int, std::allocator<T> >' with TT at
7452 level 1, and T at level 2, while the template arguments at level 1
7453 becomes {std::vector} and the inner level 2 is {int}. */
7455 outer = DECL_CONTEXT (templ);
7456 if (outer)
7457 outer = TI_ARGS (get_template_info (DECL_TEMPLATE_RESULT (outer)));
7458 else if (current_template_parms)
7459 /* This is an argument of the current template, so we haven't set
7460 DECL_CONTEXT yet. */
7461 outer = current_template_args ();
7463 if (outer)
7464 arglist = add_to_template_args (outer, arglist);
7466 arglist2 = coerce_template_parms (parmlist, arglist, templ,
7467 complain,
7468 /*require_all_args=*/true,
7469 /*use_default_args=*/true);
7470 if (arglist2 == error_mark_node
7471 || (!uses_template_parms (arglist2)
7472 && check_instantiated_args (templ, arglist2, complain)))
7473 return error_mark_node;
7475 parm = bind_template_template_parm (TREE_TYPE (templ), arglist2);
7476 return parm;
7478 else
7480 tree template_type = TREE_TYPE (templ);
7481 tree gen_tmpl;
7482 tree type_decl;
7483 tree found = NULL_TREE;
7484 int arg_depth;
7485 int parm_depth;
7486 int is_dependent_type;
7487 int use_partial_inst_tmpl = false;
7489 if (template_type == error_mark_node)
7490 /* An error occurred while building the template TEMPL, and a
7491 diagnostic has most certainly been emitted for that
7492 already. Let's propagate that error. */
7493 return error_mark_node;
7495 gen_tmpl = most_general_template (templ);
7496 parmlist = DECL_TEMPLATE_PARMS (gen_tmpl);
7497 parm_depth = TMPL_PARMS_DEPTH (parmlist);
7498 arg_depth = TMPL_ARGS_DEPTH (arglist);
7500 if (arg_depth == 1 && parm_depth > 1)
7502 /* We've been given an incomplete set of template arguments.
7503 For example, given:
7505 template <class T> struct S1 {
7506 template <class U> struct S2 {};
7507 template <class U> struct S2<U*> {};
7510 we will be called with an ARGLIST of `U*', but the
7511 TEMPLATE will be `template <class T> template
7512 <class U> struct S1<T>::S2'. We must fill in the missing
7513 arguments. */
7514 arglist
7515 = add_outermost_template_args (TYPE_TI_ARGS (TREE_TYPE (templ)),
7516 arglist);
7517 arg_depth = TMPL_ARGS_DEPTH (arglist);
7520 /* Now we should have enough arguments. */
7521 gcc_assert (parm_depth == arg_depth);
7523 /* From here on, we're only interested in the most general
7524 template. */
7526 /* Calculate the BOUND_ARGS. These will be the args that are
7527 actually tsubst'd into the definition to create the
7528 instantiation. */
7529 if (parm_depth > 1)
7531 /* We have multiple levels of arguments to coerce, at once. */
7532 int i;
7533 int saved_depth = TMPL_ARGS_DEPTH (arglist);
7535 tree bound_args = make_tree_vec (parm_depth);
7537 for (i = saved_depth,
7538 t = DECL_TEMPLATE_PARMS (gen_tmpl);
7539 i > 0 && t != NULL_TREE;
7540 --i, t = TREE_CHAIN (t))
7542 tree a;
7543 if (i == saved_depth)
7544 a = coerce_template_parms (TREE_VALUE (t),
7545 arglist, gen_tmpl,
7546 complain,
7547 /*require_all_args=*/true,
7548 /*use_default_args=*/true);
7549 else
7550 /* Outer levels should have already been coerced. */
7551 a = TMPL_ARGS_LEVEL (arglist, i);
7553 /* Don't process further if one of the levels fails. */
7554 if (a == error_mark_node)
7556 /* Restore the ARGLIST to its full size. */
7557 TREE_VEC_LENGTH (arglist) = saved_depth;
7558 return error_mark_node;
7561 SET_TMPL_ARGS_LEVEL (bound_args, i, a);
7563 /* We temporarily reduce the length of the ARGLIST so
7564 that coerce_template_parms will see only the arguments
7565 corresponding to the template parameters it is
7566 examining. */
7567 TREE_VEC_LENGTH (arglist)--;
7570 /* Restore the ARGLIST to its full size. */
7571 TREE_VEC_LENGTH (arglist) = saved_depth;
7573 arglist = bound_args;
7575 else
7576 arglist
7577 = coerce_template_parms (INNERMOST_TEMPLATE_PARMS (parmlist),
7578 INNERMOST_TEMPLATE_ARGS (arglist),
7579 gen_tmpl,
7580 complain,
7581 /*require_all_args=*/true,
7582 /*use_default_args=*/true);
7584 if (arglist == error_mark_node)
7585 /* We were unable to bind the arguments. */
7586 return error_mark_node;
7588 /* In the scope of a template class, explicit references to the
7589 template class refer to the type of the template, not any
7590 instantiation of it. For example, in:
7592 template <class T> class C { void f(C<T>); }
7594 the `C<T>' is just the same as `C'. Outside of the
7595 class, however, such a reference is an instantiation. */
7596 if ((entering_scope
7597 || !PRIMARY_TEMPLATE_P (gen_tmpl)
7598 || currently_open_class (template_type))
7599 /* comp_template_args is expensive, check it last. */
7600 && comp_template_args (TYPE_TI_ARGS (template_type),
7601 arglist))
7602 return template_type;
7604 /* If we already have this specialization, return it. */
7605 elt.tmpl = gen_tmpl;
7606 elt.args = arglist;
7607 hash = hash_specialization (&elt);
7608 entry = (spec_entry *) htab_find_with_hash (type_specializations,
7609 &elt, hash);
7611 if (entry)
7612 return entry->spec;
7614 is_dependent_type = uses_template_parms (arglist);
7616 /* If the deduced arguments are invalid, then the binding
7617 failed. */
7618 if (!is_dependent_type
7619 && check_instantiated_args (gen_tmpl,
7620 INNERMOST_TEMPLATE_ARGS (arglist),
7621 complain))
7622 return error_mark_node;
7624 if (!is_dependent_type
7625 && !PRIMARY_TEMPLATE_P (gen_tmpl)
7626 && !LAMBDA_TYPE_P (TREE_TYPE (gen_tmpl))
7627 && TREE_CODE (CP_DECL_CONTEXT (gen_tmpl)) == NAMESPACE_DECL)
7629 found = xref_tag_from_type (TREE_TYPE (gen_tmpl),
7630 DECL_NAME (gen_tmpl),
7631 /*tag_scope=*/ts_global);
7632 return found;
7635 context = tsubst (DECL_CONTEXT (gen_tmpl), arglist,
7636 complain, in_decl);
7637 if (context == error_mark_node)
7638 return error_mark_node;
7640 if (!context)
7641 context = global_namespace;
7643 /* Create the type. */
7644 if (DECL_ALIAS_TEMPLATE_P (gen_tmpl))
7646 /* The user referred to a specialization of an alias
7647 template represented by GEN_TMPL.
7649 [temp.alias]/2 says:
7651 When a template-id refers to the specialization of an
7652 alias template, it is equivalent to the associated
7653 type obtained by substitution of its
7654 template-arguments for the template-parameters in the
7655 type-id of the alias template. */
7657 t = tsubst (TREE_TYPE (gen_tmpl), arglist, complain, in_decl);
7658 /* Note that the call above (by indirectly calling
7659 register_specialization in tsubst_decl) registers the
7660 TYPE_DECL representing the specialization of the alias
7661 template. So next time someone substitutes ARGLIST for
7662 the template parms into the alias template (GEN_TMPL),
7663 she'll get that TYPE_DECL back. */
7665 if (t == error_mark_node)
7666 return t;
7668 else if (TREE_CODE (template_type) == ENUMERAL_TYPE)
7670 if (!is_dependent_type)
7672 set_current_access_from_decl (TYPE_NAME (template_type));
7673 t = start_enum (TYPE_IDENTIFIER (template_type), NULL_TREE,
7674 tsubst (ENUM_UNDERLYING_TYPE (template_type),
7675 arglist, complain, in_decl),
7676 SCOPED_ENUM_P (template_type), NULL);
7678 if (t == error_mark_node)
7679 return t;
7681 else
7683 /* We don't want to call start_enum for this type, since
7684 the values for the enumeration constants may involve
7685 template parameters. And, no one should be interested
7686 in the enumeration constants for such a type. */
7687 t = cxx_make_type (ENUMERAL_TYPE);
7688 SET_SCOPED_ENUM_P (t, SCOPED_ENUM_P (template_type));
7690 SET_OPAQUE_ENUM_P (t, OPAQUE_ENUM_P (template_type));
7691 ENUM_FIXED_UNDERLYING_TYPE_P (t)
7692 = ENUM_FIXED_UNDERLYING_TYPE_P (template_type);
7694 else if (CLASS_TYPE_P (template_type))
7696 t = make_class_type (TREE_CODE (template_type));
7697 CLASSTYPE_DECLARED_CLASS (t)
7698 = CLASSTYPE_DECLARED_CLASS (template_type);
7699 SET_CLASSTYPE_IMPLICIT_INSTANTIATION (t);
7700 TYPE_FOR_JAVA (t) = TYPE_FOR_JAVA (template_type);
7702 /* A local class. Make sure the decl gets registered properly. */
7703 if (context == current_function_decl)
7704 pushtag (DECL_NAME (gen_tmpl), t, /*tag_scope=*/ts_current);
7706 if (comp_template_args (CLASSTYPE_TI_ARGS (template_type), arglist))
7707 /* This instantiation is another name for the primary
7708 template type. Set the TYPE_CANONICAL field
7709 appropriately. */
7710 TYPE_CANONICAL (t) = template_type;
7711 else if (any_template_arguments_need_structural_equality_p (arglist))
7712 /* Some of the template arguments require structural
7713 equality testing, so this template class requires
7714 structural equality testing. */
7715 SET_TYPE_STRUCTURAL_EQUALITY (t);
7717 else
7718 gcc_unreachable ();
7720 /* If we called start_enum or pushtag above, this information
7721 will already be set up. */
7722 if (!TYPE_NAME (t))
7724 TYPE_CONTEXT (t) = FROB_CONTEXT (context);
7726 type_decl = create_implicit_typedef (DECL_NAME (gen_tmpl), t);
7727 DECL_CONTEXT (type_decl) = TYPE_CONTEXT (t);
7728 DECL_SOURCE_LOCATION (type_decl)
7729 = DECL_SOURCE_LOCATION (TYPE_STUB_DECL (template_type));
7731 else
7732 type_decl = TYPE_NAME (t);
7734 if (CLASS_TYPE_P (template_type))
7736 TREE_PRIVATE (type_decl)
7737 = TREE_PRIVATE (TYPE_MAIN_DECL (template_type));
7738 TREE_PROTECTED (type_decl)
7739 = TREE_PROTECTED (TYPE_MAIN_DECL (template_type));
7740 if (CLASSTYPE_VISIBILITY_SPECIFIED (template_type))
7742 DECL_VISIBILITY_SPECIFIED (type_decl) = 1;
7743 DECL_VISIBILITY (type_decl) = CLASSTYPE_VISIBILITY (template_type);
7747 /* Let's consider the explicit specialization of a member
7748 of a class template specialization that is implicitly instantiated,
7749 e.g.:
7750 template<class T>
7751 struct S
7753 template<class U> struct M {}; //#0
7756 template<>
7757 template<>
7758 struct S<int>::M<char> //#1
7760 int i;
7762 [temp.expl.spec]/4 says this is valid.
7764 In this case, when we write:
7765 S<int>::M<char> m;
7767 M is instantiated from the CLASSTYPE_TI_TEMPLATE of #1, not from
7768 the one of #0.
7770 When we encounter #1, we want to store the partial instantiation
7771 of M (template<class T> S<int>::M<T>) in its CLASSTYPE_TI_TEMPLATE.
7773 For all cases other than this "explicit specialization of member of a
7774 class template", we just want to store the most general template into
7775 the CLASSTYPE_TI_TEMPLATE of M.
7777 This case of "explicit specialization of member of a class template"
7778 only happens when:
7779 1/ the enclosing class is an instantiation of, and therefore not
7780 the same as, the context of the most general template, and
7781 2/ we aren't looking at the partial instantiation itself, i.e.
7782 the innermost arguments are not the same as the innermost parms of
7783 the most general template.
7785 So it's only when 1/ and 2/ happens that we want to use the partial
7786 instantiation of the member template in lieu of its most general
7787 template. */
7789 if (PRIMARY_TEMPLATE_P (gen_tmpl)
7790 && TMPL_ARGS_HAVE_MULTIPLE_LEVELS (arglist)
7791 /* the enclosing class must be an instantiation... */
7792 && CLASS_TYPE_P (context)
7793 && !same_type_p (context, DECL_CONTEXT (gen_tmpl)))
7795 tree partial_inst_args;
7796 TREE_VEC_LENGTH (arglist)--;
7797 ++processing_template_decl;
7798 partial_inst_args =
7799 tsubst (INNERMOST_TEMPLATE_ARGS
7800 (TYPE_TI_ARGS (TREE_TYPE (gen_tmpl))),
7801 arglist, complain, NULL_TREE);
7802 --processing_template_decl;
7803 TREE_VEC_LENGTH (arglist)++;
7804 use_partial_inst_tmpl =
7805 /*...and we must not be looking at the partial instantiation
7806 itself. */
7807 !comp_template_args (INNERMOST_TEMPLATE_ARGS (arglist),
7808 partial_inst_args);
7811 if (!use_partial_inst_tmpl)
7812 /* This case is easy; there are no member templates involved. */
7813 found = gen_tmpl;
7814 else
7816 /* This is a full instantiation of a member template. Find
7817 the partial instantiation of which this is an instance. */
7819 /* Temporarily reduce by one the number of levels in the ARGLIST
7820 so as to avoid comparing the last set of arguments. */
7821 TREE_VEC_LENGTH (arglist)--;
7822 found = tsubst (gen_tmpl, arglist, complain, NULL_TREE);
7823 TREE_VEC_LENGTH (arglist)++;
7824 /* FOUND is either a proper class type, or an alias
7825 template specialization. In the later case, it's a
7826 TYPE_DECL, resulting from the substituting of arguments
7827 for parameters in the TYPE_DECL of the alias template
7828 done earlier. So be careful while getting the template
7829 of FOUND. */
7830 found = TREE_CODE (found) == TYPE_DECL
7831 ? TYPE_TI_TEMPLATE (TREE_TYPE (found))
7832 : CLASSTYPE_TI_TEMPLATE (found);
7835 SET_TYPE_TEMPLATE_INFO (t, build_template_info (found, arglist));
7837 elt.spec = t;
7838 slot = htab_find_slot_with_hash (type_specializations,
7839 &elt, hash, INSERT);
7840 entry = ggc_alloc<spec_entry> ();
7841 *entry = elt;
7842 *slot = entry;
7844 /* Note this use of the partial instantiation so we can check it
7845 later in maybe_process_partial_specialization. */
7846 DECL_TEMPLATE_INSTANTIATIONS (found)
7847 = tree_cons (arglist, t,
7848 DECL_TEMPLATE_INSTANTIATIONS (found));
7850 if (TREE_CODE (template_type) == ENUMERAL_TYPE && !is_dependent_type
7851 && !DECL_ALIAS_TEMPLATE_P (gen_tmpl))
7852 /* Now that the type has been registered on the instantiations
7853 list, we set up the enumerators. Because the enumeration
7854 constants may involve the enumeration type itself, we make
7855 sure to register the type first, and then create the
7856 constants. That way, doing tsubst_expr for the enumeration
7857 constants won't result in recursive calls here; we'll find
7858 the instantiation and exit above. */
7859 tsubst_enum (template_type, t, arglist);
7861 if (CLASS_TYPE_P (template_type) && is_dependent_type)
7862 /* If the type makes use of template parameters, the
7863 code that generates debugging information will crash. */
7864 DECL_IGNORED_P (TYPE_MAIN_DECL (t)) = 1;
7866 /* Possibly limit visibility based on template args. */
7867 TREE_PUBLIC (type_decl) = 1;
7868 determine_visibility (type_decl);
7870 return t;
7874 /* Wrapper for lookup_template_class_1. */
7876 tree
7877 lookup_template_class (tree d1, tree arglist, tree in_decl, tree context,
7878 int entering_scope, tsubst_flags_t complain)
7880 tree ret;
7881 timevar_push (TV_TEMPLATE_INST);
7882 ret = lookup_template_class_1 (d1, arglist, in_decl, context,
7883 entering_scope, complain);
7884 timevar_pop (TV_TEMPLATE_INST);
7885 return ret;
7888 struct pair_fn_data
7890 tree_fn_t fn;
7891 void *data;
7892 /* True when we should also visit template parameters that occur in
7893 non-deduced contexts. */
7894 bool include_nondeduced_p;
7895 struct pointer_set_t *visited;
7898 /* Called from for_each_template_parm via walk_tree. */
7900 static tree
7901 for_each_template_parm_r (tree *tp, int *walk_subtrees, void *d)
7903 tree t = *tp;
7904 struct pair_fn_data *pfd = (struct pair_fn_data *) d;
7905 tree_fn_t fn = pfd->fn;
7906 void *data = pfd->data;
7908 if (TYPE_P (t)
7909 && (pfd->include_nondeduced_p || TREE_CODE (t) != TYPENAME_TYPE)
7910 && for_each_template_parm (TYPE_CONTEXT (t), fn, data, pfd->visited,
7911 pfd->include_nondeduced_p))
7912 return error_mark_node;
7914 switch (TREE_CODE (t))
7916 case RECORD_TYPE:
7917 if (TYPE_PTRMEMFUNC_P (t))
7918 break;
7919 /* Fall through. */
7921 case UNION_TYPE:
7922 case ENUMERAL_TYPE:
7923 if (!TYPE_TEMPLATE_INFO (t))
7924 *walk_subtrees = 0;
7925 else if (for_each_template_parm (TYPE_TI_ARGS (t),
7926 fn, data, pfd->visited,
7927 pfd->include_nondeduced_p))
7928 return error_mark_node;
7929 break;
7931 case INTEGER_TYPE:
7932 if (for_each_template_parm (TYPE_MIN_VALUE (t),
7933 fn, data, pfd->visited,
7934 pfd->include_nondeduced_p)
7935 || for_each_template_parm (TYPE_MAX_VALUE (t),
7936 fn, data, pfd->visited,
7937 pfd->include_nondeduced_p))
7938 return error_mark_node;
7939 break;
7941 case METHOD_TYPE:
7942 /* Since we're not going to walk subtrees, we have to do this
7943 explicitly here. */
7944 if (for_each_template_parm (TYPE_METHOD_BASETYPE (t), fn, data,
7945 pfd->visited, pfd->include_nondeduced_p))
7946 return error_mark_node;
7947 /* Fall through. */
7949 case FUNCTION_TYPE:
7950 /* Check the return type. */
7951 if (for_each_template_parm (TREE_TYPE (t), fn, data, pfd->visited,
7952 pfd->include_nondeduced_p))
7953 return error_mark_node;
7955 /* Check the parameter types. Since default arguments are not
7956 instantiated until they are needed, the TYPE_ARG_TYPES may
7957 contain expressions that involve template parameters. But,
7958 no-one should be looking at them yet. And, once they're
7959 instantiated, they don't contain template parameters, so
7960 there's no point in looking at them then, either. */
7962 tree parm;
7964 for (parm = TYPE_ARG_TYPES (t); parm; parm = TREE_CHAIN (parm))
7965 if (for_each_template_parm (TREE_VALUE (parm), fn, data,
7966 pfd->visited, pfd->include_nondeduced_p))
7967 return error_mark_node;
7969 /* Since we've already handled the TYPE_ARG_TYPES, we don't
7970 want walk_tree walking into them itself. */
7971 *walk_subtrees = 0;
7973 break;
7975 case TYPEOF_TYPE:
7976 case UNDERLYING_TYPE:
7977 if (pfd->include_nondeduced_p
7978 && for_each_template_parm (TYPE_FIELDS (t), fn, data,
7979 pfd->visited,
7980 pfd->include_nondeduced_p))
7981 return error_mark_node;
7982 break;
7984 case FUNCTION_DECL:
7985 case VAR_DECL:
7986 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t)
7987 && for_each_template_parm (DECL_TI_ARGS (t), fn, data,
7988 pfd->visited, pfd->include_nondeduced_p))
7989 return error_mark_node;
7990 /* Fall through. */
7992 case PARM_DECL:
7993 case CONST_DECL:
7994 if (TREE_CODE (t) == CONST_DECL && DECL_TEMPLATE_PARM_P (t)
7995 && for_each_template_parm (DECL_INITIAL (t), fn, data,
7996 pfd->visited, pfd->include_nondeduced_p))
7997 return error_mark_node;
7998 if (DECL_CONTEXT (t)
7999 && pfd->include_nondeduced_p
8000 && for_each_template_parm (DECL_CONTEXT (t), fn, data,
8001 pfd->visited, pfd->include_nondeduced_p))
8002 return error_mark_node;
8003 break;
8005 case BOUND_TEMPLATE_TEMPLATE_PARM:
8006 /* Record template parameters such as `T' inside `TT<T>'. */
8007 if (for_each_template_parm (TYPE_TI_ARGS (t), fn, data, pfd->visited,
8008 pfd->include_nondeduced_p))
8009 return error_mark_node;
8010 /* Fall through. */
8012 case TEMPLATE_TEMPLATE_PARM:
8013 case TEMPLATE_TYPE_PARM:
8014 case TEMPLATE_PARM_INDEX:
8015 if (fn && (*fn)(t, data))
8016 return error_mark_node;
8017 else if (!fn)
8018 return error_mark_node;
8019 break;
8021 case TEMPLATE_DECL:
8022 /* A template template parameter is encountered. */
8023 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t)
8024 && for_each_template_parm (TREE_TYPE (t), fn, data, pfd->visited,
8025 pfd->include_nondeduced_p))
8026 return error_mark_node;
8028 /* Already substituted template template parameter */
8029 *walk_subtrees = 0;
8030 break;
8032 case TYPENAME_TYPE:
8033 if (!fn
8034 || for_each_template_parm (TYPENAME_TYPE_FULLNAME (t), fn,
8035 data, pfd->visited,
8036 pfd->include_nondeduced_p))
8037 return error_mark_node;
8038 break;
8040 case CONSTRUCTOR:
8041 if (TREE_TYPE (t) && TYPE_PTRMEMFUNC_P (TREE_TYPE (t))
8042 && pfd->include_nondeduced_p
8043 && for_each_template_parm (TYPE_PTRMEMFUNC_FN_TYPE
8044 (TREE_TYPE (t)), fn, data,
8045 pfd->visited, pfd->include_nondeduced_p))
8046 return error_mark_node;
8047 break;
8049 case INDIRECT_REF:
8050 case COMPONENT_REF:
8051 /* If there's no type, then this thing must be some expression
8052 involving template parameters. */
8053 if (!fn && !TREE_TYPE (t))
8054 return error_mark_node;
8055 break;
8057 case MODOP_EXPR:
8058 case CAST_EXPR:
8059 case IMPLICIT_CONV_EXPR:
8060 case REINTERPRET_CAST_EXPR:
8061 case CONST_CAST_EXPR:
8062 case STATIC_CAST_EXPR:
8063 case DYNAMIC_CAST_EXPR:
8064 case ARROW_EXPR:
8065 case DOTSTAR_EXPR:
8066 case TYPEID_EXPR:
8067 case PSEUDO_DTOR_EXPR:
8068 if (!fn)
8069 return error_mark_node;
8070 break;
8072 default:
8073 break;
8076 /* We didn't find any template parameters we liked. */
8077 return NULL_TREE;
8080 /* For each TEMPLATE_TYPE_PARM, TEMPLATE_TEMPLATE_PARM,
8081 BOUND_TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX in T,
8082 call FN with the parameter and the DATA.
8083 If FN returns nonzero, the iteration is terminated, and
8084 for_each_template_parm returns 1. Otherwise, the iteration
8085 continues. If FN never returns a nonzero value, the value
8086 returned by for_each_template_parm is 0. If FN is NULL, it is
8087 considered to be the function which always returns 1.
8089 If INCLUDE_NONDEDUCED_P, then this routine will also visit template
8090 parameters that occur in non-deduced contexts. When false, only
8091 visits those template parameters that can be deduced. */
8093 static int
8094 for_each_template_parm (tree t, tree_fn_t fn, void* data,
8095 struct pointer_set_t *visited,
8096 bool include_nondeduced_p)
8098 struct pair_fn_data pfd;
8099 int result;
8101 /* Set up. */
8102 pfd.fn = fn;
8103 pfd.data = data;
8104 pfd.include_nondeduced_p = include_nondeduced_p;
8106 /* Walk the tree. (Conceptually, we would like to walk without
8107 duplicates, but for_each_template_parm_r recursively calls
8108 for_each_template_parm, so we would need to reorganize a fair
8109 bit to use walk_tree_without_duplicates, so we keep our own
8110 visited list.) */
8111 if (visited)
8112 pfd.visited = visited;
8113 else
8114 pfd.visited = pointer_set_create ();
8115 result = cp_walk_tree (&t,
8116 for_each_template_parm_r,
8117 &pfd,
8118 pfd.visited) != NULL_TREE;
8120 /* Clean up. */
8121 if (!visited)
8123 pointer_set_destroy (pfd.visited);
8124 pfd.visited = 0;
8127 return result;
8130 /* Returns true if T depends on any template parameter. */
8133 uses_template_parms (tree t)
8135 bool dependent_p;
8136 int saved_processing_template_decl;
8138 saved_processing_template_decl = processing_template_decl;
8139 if (!saved_processing_template_decl)
8140 processing_template_decl = 1;
8141 if (TYPE_P (t))
8142 dependent_p = dependent_type_p (t);
8143 else if (TREE_CODE (t) == TREE_VEC)
8144 dependent_p = any_dependent_template_arguments_p (t);
8145 else if (TREE_CODE (t) == TREE_LIST)
8146 dependent_p = (uses_template_parms (TREE_VALUE (t))
8147 || uses_template_parms (TREE_CHAIN (t)));
8148 else if (TREE_CODE (t) == TYPE_DECL)
8149 dependent_p = dependent_type_p (TREE_TYPE (t));
8150 else if (DECL_P (t)
8151 || EXPR_P (t)
8152 || TREE_CODE (t) == TEMPLATE_PARM_INDEX
8153 || TREE_CODE (t) == OVERLOAD
8154 || BASELINK_P (t)
8155 || identifier_p (t)
8156 || TREE_CODE (t) == TRAIT_EXPR
8157 || TREE_CODE (t) == CONSTRUCTOR
8158 || CONSTANT_CLASS_P (t))
8159 dependent_p = (type_dependent_expression_p (t)
8160 || value_dependent_expression_p (t));
8161 else
8163 gcc_assert (t == error_mark_node);
8164 dependent_p = false;
8167 processing_template_decl = saved_processing_template_decl;
8169 return dependent_p;
8172 /* Returns true iff current_function_decl is an incompletely instantiated
8173 template. Useful instead of processing_template_decl because the latter
8174 is set to 0 during fold_non_dependent_expr. */
8176 bool
8177 in_template_function (void)
8179 tree fn = current_function_decl;
8180 bool ret;
8181 ++processing_template_decl;
8182 ret = (fn && DECL_LANG_SPECIFIC (fn)
8183 && DECL_TEMPLATE_INFO (fn)
8184 && any_dependent_template_arguments_p (DECL_TI_ARGS (fn)));
8185 --processing_template_decl;
8186 return ret;
8189 /* Returns true if T depends on any template parameter with level LEVEL. */
8192 uses_template_parms_level (tree t, int level)
8194 return for_each_template_parm (t, template_parm_this_level_p, &level, NULL,
8195 /*include_nondeduced_p=*/true);
8198 /* Returns TRUE iff INST is an instantiation we don't need to do in an
8199 ill-formed translation unit, i.e. a variable or function that isn't
8200 usable in a constant expression. */
8202 static inline bool
8203 neglectable_inst_p (tree d)
8205 return (DECL_P (d)
8206 && !(TREE_CODE (d) == FUNCTION_DECL ? DECL_DECLARED_CONSTEXPR_P (d)
8207 : decl_maybe_constant_var_p (d)));
8210 /* Returns TRUE iff we should refuse to instantiate DECL because it's
8211 neglectable and instantiated from within an erroneous instantiation. */
8213 static bool
8214 limit_bad_template_recursion (tree decl)
8216 struct tinst_level *lev = current_tinst_level;
8217 int errs = errorcount + sorrycount;
8218 if (lev == NULL || errs == 0 || !neglectable_inst_p (decl))
8219 return false;
8221 for (; lev; lev = lev->next)
8222 if (neglectable_inst_p (lev->decl))
8223 break;
8225 return (lev && errs > lev->errors);
8228 static int tinst_depth;
8229 extern int max_tinst_depth;
8230 int depth_reached;
8232 static GTY(()) struct tinst_level *last_error_tinst_level;
8234 /* We're starting to instantiate D; record the template instantiation context
8235 for diagnostics and to restore it later. */
8238 push_tinst_level (tree d)
8240 struct tinst_level *new_level;
8242 if (tinst_depth >= max_tinst_depth)
8244 last_error_tinst_level = current_tinst_level;
8245 if (TREE_CODE (d) == TREE_LIST)
8246 error ("template instantiation depth exceeds maximum of %d (use "
8247 "-ftemplate-depth= to increase the maximum) substituting %qS",
8248 max_tinst_depth, d);
8249 else
8250 error ("template instantiation depth exceeds maximum of %d (use "
8251 "-ftemplate-depth= to increase the maximum) instantiating %qD",
8252 max_tinst_depth, d);
8254 print_instantiation_context ();
8256 return 0;
8259 /* If the current instantiation caused problems, don't let it instantiate
8260 anything else. Do allow deduction substitution and decls usable in
8261 constant expressions. */
8262 if (limit_bad_template_recursion (d))
8263 return 0;
8265 new_level = ggc_alloc<tinst_level> ();
8266 new_level->decl = d;
8267 new_level->locus = input_location;
8268 new_level->errors = errorcount+sorrycount;
8269 new_level->in_system_header_p = in_system_header_at (input_location);
8270 new_level->next = current_tinst_level;
8271 current_tinst_level = new_level;
8273 ++tinst_depth;
8274 if (GATHER_STATISTICS && (tinst_depth > depth_reached))
8275 depth_reached = tinst_depth;
8277 return 1;
8280 /* We're done instantiating this template; return to the instantiation
8281 context. */
8283 void
8284 pop_tinst_level (void)
8286 /* Restore the filename and line number stashed away when we started
8287 this instantiation. */
8288 input_location = current_tinst_level->locus;
8289 current_tinst_level = current_tinst_level->next;
8290 --tinst_depth;
8293 /* We're instantiating a deferred template; restore the template
8294 instantiation context in which the instantiation was requested, which
8295 is one step out from LEVEL. Return the corresponding DECL or TYPE. */
8297 static tree
8298 reopen_tinst_level (struct tinst_level *level)
8300 struct tinst_level *t;
8302 tinst_depth = 0;
8303 for (t = level; t; t = t->next)
8304 ++tinst_depth;
8306 current_tinst_level = level;
8307 pop_tinst_level ();
8308 if (current_tinst_level)
8309 current_tinst_level->errors = errorcount+sorrycount;
8310 return level->decl;
8313 /* Returns the TINST_LEVEL which gives the original instantiation
8314 context. */
8316 struct tinst_level *
8317 outermost_tinst_level (void)
8319 struct tinst_level *level = current_tinst_level;
8320 if (level)
8321 while (level->next)
8322 level = level->next;
8323 return level;
8326 /* DECL is a friend FUNCTION_DECL or TEMPLATE_DECL. ARGS is the
8327 vector of template arguments, as for tsubst.
8329 Returns an appropriate tsubst'd friend declaration. */
8331 static tree
8332 tsubst_friend_function (tree decl, tree args)
8334 tree new_friend;
8336 if (TREE_CODE (decl) == FUNCTION_DECL
8337 && DECL_TEMPLATE_INSTANTIATION (decl)
8338 && TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
8339 /* This was a friend declared with an explicit template
8340 argument list, e.g.:
8342 friend void f<>(T);
8344 to indicate that f was a template instantiation, not a new
8345 function declaration. Now, we have to figure out what
8346 instantiation of what template. */
8348 tree template_id, arglist, fns;
8349 tree new_args;
8350 tree tmpl;
8351 tree ns = decl_namespace_context (TYPE_MAIN_DECL (current_class_type));
8353 /* Friend functions are looked up in the containing namespace scope.
8354 We must enter that scope, to avoid finding member functions of the
8355 current class with same name. */
8356 push_nested_namespace (ns);
8357 fns = tsubst_expr (DECL_TI_TEMPLATE (decl), args,
8358 tf_warning_or_error, NULL_TREE,
8359 /*integral_constant_expression_p=*/false);
8360 pop_nested_namespace (ns);
8361 arglist = tsubst (DECL_TI_ARGS (decl), args,
8362 tf_warning_or_error, NULL_TREE);
8363 template_id = lookup_template_function (fns, arglist);
8365 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
8366 tmpl = determine_specialization (template_id, new_friend,
8367 &new_args,
8368 /*need_member_template=*/0,
8369 TREE_VEC_LENGTH (args),
8370 tsk_none);
8371 return instantiate_template (tmpl, new_args, tf_error);
8374 new_friend = tsubst (decl, args, tf_warning_or_error, NULL_TREE);
8376 /* The NEW_FRIEND will look like an instantiation, to the
8377 compiler, but is not an instantiation from the point of view of
8378 the language. For example, we might have had:
8380 template <class T> struct S {
8381 template <class U> friend void f(T, U);
8384 Then, in S<int>, template <class U> void f(int, U) is not an
8385 instantiation of anything. */
8386 if (new_friend == error_mark_node)
8387 return error_mark_node;
8389 DECL_USE_TEMPLATE (new_friend) = 0;
8390 if (TREE_CODE (decl) == TEMPLATE_DECL)
8392 DECL_USE_TEMPLATE (DECL_TEMPLATE_RESULT (new_friend)) = 0;
8393 DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (new_friend))
8394 = DECL_SAVED_TREE (DECL_TEMPLATE_RESULT (decl));
8397 /* The mangled name for the NEW_FRIEND is incorrect. The function
8398 is not a template instantiation and should not be mangled like
8399 one. Therefore, we forget the mangling here; we'll recompute it
8400 later if we need it. */
8401 if (TREE_CODE (new_friend) != TEMPLATE_DECL)
8403 SET_DECL_RTL (new_friend, NULL);
8404 SET_DECL_ASSEMBLER_NAME (new_friend, NULL_TREE);
8407 if (DECL_NAMESPACE_SCOPE_P (new_friend))
8409 tree old_decl;
8410 tree new_friend_template_info;
8411 tree new_friend_result_template_info;
8412 tree ns;
8413 int new_friend_is_defn;
8415 /* We must save some information from NEW_FRIEND before calling
8416 duplicate decls since that function will free NEW_FRIEND if
8417 possible. */
8418 new_friend_template_info = DECL_TEMPLATE_INFO (new_friend);
8419 new_friend_is_defn =
8420 (DECL_INITIAL (DECL_TEMPLATE_RESULT
8421 (template_for_substitution (new_friend)))
8422 != NULL_TREE);
8423 if (TREE_CODE (new_friend) == TEMPLATE_DECL)
8425 /* This declaration is a `primary' template. */
8426 DECL_PRIMARY_TEMPLATE (new_friend) = new_friend;
8428 new_friend_result_template_info
8429 = DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (new_friend));
8431 else
8432 new_friend_result_template_info = NULL_TREE;
8434 /* Make the init_value nonzero so pushdecl knows this is a defn. */
8435 if (new_friend_is_defn)
8436 DECL_INITIAL (new_friend) = error_mark_node;
8438 /* Inside pushdecl_namespace_level, we will push into the
8439 current namespace. However, the friend function should go
8440 into the namespace of the template. */
8441 ns = decl_namespace_context (new_friend);
8442 push_nested_namespace (ns);
8443 old_decl = pushdecl_namespace_level (new_friend, /*is_friend=*/true);
8444 pop_nested_namespace (ns);
8446 if (old_decl == error_mark_node)
8447 return error_mark_node;
8449 if (old_decl != new_friend)
8451 /* This new friend declaration matched an existing
8452 declaration. For example, given:
8454 template <class T> void f(T);
8455 template <class U> class C {
8456 template <class T> friend void f(T) {}
8459 the friend declaration actually provides the definition
8460 of `f', once C has been instantiated for some type. So,
8461 old_decl will be the out-of-class template declaration,
8462 while new_friend is the in-class definition.
8464 But, if `f' was called before this point, the
8465 instantiation of `f' will have DECL_TI_ARGS corresponding
8466 to `T' but not to `U', references to which might appear
8467 in the definition of `f'. Previously, the most general
8468 template for an instantiation of `f' was the out-of-class
8469 version; now it is the in-class version. Therefore, we
8470 run through all specialization of `f', adding to their
8471 DECL_TI_ARGS appropriately. In particular, they need a
8472 new set of outer arguments, corresponding to the
8473 arguments for this class instantiation.
8475 The same situation can arise with something like this:
8477 friend void f(int);
8478 template <class T> class C {
8479 friend void f(T) {}
8482 when `C<int>' is instantiated. Now, `f(int)' is defined
8483 in the class. */
8485 if (!new_friend_is_defn)
8486 /* On the other hand, if the in-class declaration does
8487 *not* provide a definition, then we don't want to alter
8488 existing definitions. We can just leave everything
8489 alone. */
8491 else
8493 tree new_template = TI_TEMPLATE (new_friend_template_info);
8494 tree new_args = TI_ARGS (new_friend_template_info);
8496 /* Overwrite whatever template info was there before, if
8497 any, with the new template information pertaining to
8498 the declaration. */
8499 DECL_TEMPLATE_INFO (old_decl) = new_friend_template_info;
8501 if (TREE_CODE (old_decl) != TEMPLATE_DECL)
8503 /* We should have called reregister_specialization in
8504 duplicate_decls. */
8505 gcc_assert (retrieve_specialization (new_template,
8506 new_args, 0)
8507 == old_decl);
8509 /* Instantiate it if the global has already been used. */
8510 if (DECL_ODR_USED (old_decl))
8511 instantiate_decl (old_decl, /*defer_ok=*/true,
8512 /*expl_inst_class_mem_p=*/false);
8514 else
8516 tree t;
8518 /* Indicate that the old function template is a partial
8519 instantiation. */
8520 DECL_TEMPLATE_INFO (DECL_TEMPLATE_RESULT (old_decl))
8521 = new_friend_result_template_info;
8523 gcc_assert (new_template
8524 == most_general_template (new_template));
8525 gcc_assert (new_template != old_decl);
8527 /* Reassign any specializations already in the hash table
8528 to the new more general template, and add the
8529 additional template args. */
8530 for (t = DECL_TEMPLATE_INSTANTIATIONS (old_decl);
8531 t != NULL_TREE;
8532 t = TREE_CHAIN (t))
8534 tree spec = TREE_VALUE (t);
8535 spec_entry elt;
8537 elt.tmpl = old_decl;
8538 elt.args = DECL_TI_ARGS (spec);
8539 elt.spec = NULL_TREE;
8541 htab_remove_elt (decl_specializations, &elt);
8543 DECL_TI_ARGS (spec)
8544 = add_outermost_template_args (new_args,
8545 DECL_TI_ARGS (spec));
8547 register_specialization
8548 (spec, new_template, DECL_TI_ARGS (spec), true, 0);
8551 DECL_TEMPLATE_INSTANTIATIONS (old_decl) = NULL_TREE;
8555 /* The information from NEW_FRIEND has been merged into OLD_DECL
8556 by duplicate_decls. */
8557 new_friend = old_decl;
8560 else
8562 tree context = DECL_CONTEXT (new_friend);
8563 bool dependent_p;
8565 /* In the code
8566 template <class T> class C {
8567 template <class U> friend void C1<U>::f (); // case 1
8568 friend void C2<T>::f (); // case 2
8570 we only need to make sure CONTEXT is a complete type for
8571 case 2. To distinguish between the two cases, we note that
8572 CONTEXT of case 1 remains dependent type after tsubst while
8573 this isn't true for case 2. */
8574 ++processing_template_decl;
8575 dependent_p = dependent_type_p (context);
8576 --processing_template_decl;
8578 if (!dependent_p
8579 && !complete_type_or_else (context, NULL_TREE))
8580 return error_mark_node;
8582 if (COMPLETE_TYPE_P (context))
8584 tree fn = new_friend;
8585 /* do_friend adds the TEMPLATE_DECL for any member friend
8586 template even if it isn't a member template, i.e.
8587 template <class T> friend A<T>::f();
8588 Look through it in that case. */
8589 if (TREE_CODE (fn) == TEMPLATE_DECL
8590 && !PRIMARY_TEMPLATE_P (fn))
8591 fn = DECL_TEMPLATE_RESULT (fn);
8592 /* Check to see that the declaration is really present, and,
8593 possibly obtain an improved declaration. */
8594 fn = check_classfn (context, fn, NULL_TREE);
8596 if (fn)
8597 new_friend = fn;
8601 return new_friend;
8604 /* FRIEND_TMPL is a friend TEMPLATE_DECL. ARGS is the vector of
8605 template arguments, as for tsubst.
8607 Returns an appropriate tsubst'd friend type or error_mark_node on
8608 failure. */
8610 static tree
8611 tsubst_friend_class (tree friend_tmpl, tree args)
8613 tree friend_type;
8614 tree tmpl;
8615 tree context;
8617 if (DECL_TEMPLATE_TEMPLATE_PARM_P (friend_tmpl))
8619 tree t = tsubst (TREE_TYPE (friend_tmpl), args, tf_none, NULL_TREE);
8620 return TREE_TYPE (t);
8623 context = CP_DECL_CONTEXT (friend_tmpl);
8625 if (context != global_namespace)
8627 if (TREE_CODE (context) == NAMESPACE_DECL)
8628 push_nested_namespace (context);
8629 else
8630 push_nested_class (tsubst (context, args, tf_none, NULL_TREE));
8633 /* Look for a class template declaration. We look for hidden names
8634 because two friend declarations of the same template are the
8635 same. For example, in:
8637 struct A {
8638 template <typename> friend class F;
8640 template <typename> struct B {
8641 template <typename> friend class F;
8644 both F templates are the same. */
8645 tmpl = lookup_name_real (DECL_NAME (friend_tmpl), 0, 0,
8646 /*block_p=*/true, 0, LOOKUP_HIDDEN);
8648 /* But, if we don't find one, it might be because we're in a
8649 situation like this:
8651 template <class T>
8652 struct S {
8653 template <class U>
8654 friend struct S;
8657 Here, in the scope of (say) S<int>, `S' is bound to a TYPE_DECL
8658 for `S<int>', not the TEMPLATE_DECL. */
8659 if (!tmpl || !DECL_CLASS_TEMPLATE_P (tmpl))
8661 tmpl = lookup_name_prefer_type (DECL_NAME (friend_tmpl), 1);
8662 tmpl = maybe_get_template_decl_from_type_decl (tmpl);
8665 if (tmpl && DECL_CLASS_TEMPLATE_P (tmpl))
8667 /* The friend template has already been declared. Just
8668 check to see that the declarations match, and install any new
8669 default parameters. We must tsubst the default parameters,
8670 of course. We only need the innermost template parameters
8671 because that is all that redeclare_class_template will look
8672 at. */
8673 if (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (friend_tmpl))
8674 > TMPL_ARGS_DEPTH (args))
8676 tree parms;
8677 location_t saved_input_location;
8678 parms = tsubst_template_parms (DECL_TEMPLATE_PARMS (friend_tmpl),
8679 args, tf_warning_or_error);
8681 saved_input_location = input_location;
8682 input_location = DECL_SOURCE_LOCATION (friend_tmpl);
8683 redeclare_class_template (TREE_TYPE (tmpl), parms);
8684 input_location = saved_input_location;
8688 friend_type = TREE_TYPE (tmpl);
8690 else
8692 /* The friend template has not already been declared. In this
8693 case, the instantiation of the template class will cause the
8694 injection of this template into the global scope. */
8695 tmpl = tsubst (friend_tmpl, args, tf_warning_or_error, NULL_TREE);
8696 if (tmpl == error_mark_node)
8697 return error_mark_node;
8699 /* The new TMPL is not an instantiation of anything, so we
8700 forget its origins. We don't reset CLASSTYPE_TI_TEMPLATE for
8701 the new type because that is supposed to be the corresponding
8702 template decl, i.e., TMPL. */
8703 DECL_USE_TEMPLATE (tmpl) = 0;
8704 DECL_TEMPLATE_INFO (tmpl) = NULL_TREE;
8705 CLASSTYPE_USE_TEMPLATE (TREE_TYPE (tmpl)) = 0;
8706 CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl))
8707 = INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (TREE_TYPE (tmpl)));
8709 /* Inject this template into the global scope. */
8710 friend_type = TREE_TYPE (pushdecl_top_level_maybe_friend (tmpl, true));
8713 if (context != global_namespace)
8715 if (TREE_CODE (context) == NAMESPACE_DECL)
8716 pop_nested_namespace (context);
8717 else
8718 pop_nested_class ();
8721 return friend_type;
8724 /* Returns zero if TYPE cannot be completed later due to circularity.
8725 Otherwise returns one. */
8727 static int
8728 can_complete_type_without_circularity (tree type)
8730 if (type == NULL_TREE || type == error_mark_node)
8731 return 0;
8732 else if (COMPLETE_TYPE_P (type))
8733 return 1;
8734 else if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type))
8735 return can_complete_type_without_circularity (TREE_TYPE (type));
8736 else if (CLASS_TYPE_P (type)
8737 && TYPE_BEING_DEFINED (TYPE_MAIN_VARIANT (type)))
8738 return 0;
8739 else
8740 return 1;
8743 static tree tsubst_omp_clauses (tree, bool, tree, tsubst_flags_t, tree);
8745 /* Apply any attributes which had to be deferred until instantiation
8746 time. DECL_P, ATTRIBUTES and ATTR_FLAGS are as cplus_decl_attributes;
8747 ARGS, COMPLAIN, IN_DECL are as tsubst. */
8749 static void
8750 apply_late_template_attributes (tree *decl_p, tree attributes, int attr_flags,
8751 tree args, tsubst_flags_t complain, tree in_decl)
8753 tree last_dep = NULL_TREE;
8754 tree t;
8755 tree *p;
8757 for (t = attributes; t; t = TREE_CHAIN (t))
8758 if (ATTR_IS_DEPENDENT (t))
8760 last_dep = t;
8761 attributes = copy_list (attributes);
8762 break;
8765 if (DECL_P (*decl_p))
8767 if (TREE_TYPE (*decl_p) == error_mark_node)
8768 return;
8769 p = &DECL_ATTRIBUTES (*decl_p);
8771 else
8772 p = &TYPE_ATTRIBUTES (*decl_p);
8774 if (last_dep)
8776 tree late_attrs = NULL_TREE;
8777 tree *q = &late_attrs;
8779 for (*p = attributes; *p; )
8781 t = *p;
8782 if (ATTR_IS_DEPENDENT (t))
8784 *p = TREE_CHAIN (t);
8785 TREE_CHAIN (t) = NULL_TREE;
8786 if ((flag_openmp || flag_cilkplus)
8787 && is_attribute_p ("omp declare simd",
8788 get_attribute_name (t))
8789 && TREE_VALUE (t))
8791 tree clauses = TREE_VALUE (TREE_VALUE (t));
8792 clauses = tsubst_omp_clauses (clauses, true, args,
8793 complain, in_decl);
8794 c_omp_declare_simd_clauses_to_decls (*decl_p, clauses);
8795 clauses = finish_omp_clauses (clauses);
8796 tree parms = DECL_ARGUMENTS (*decl_p);
8797 clauses
8798 = c_omp_declare_simd_clauses_to_numbers (parms, clauses);
8799 if (clauses)
8800 TREE_VALUE (TREE_VALUE (t)) = clauses;
8801 else
8802 TREE_VALUE (t) = NULL_TREE;
8804 /* If the first attribute argument is an identifier, don't
8805 pass it through tsubst. Attributes like mode, format,
8806 cleanup and several target specific attributes expect it
8807 unmodified. */
8808 else if (attribute_takes_identifier_p (get_attribute_name (t))
8809 && TREE_VALUE (t))
8811 tree chain
8812 = tsubst_expr (TREE_CHAIN (TREE_VALUE (t)), args, complain,
8813 in_decl,
8814 /*integral_constant_expression_p=*/false);
8815 if (chain != TREE_CHAIN (TREE_VALUE (t)))
8816 TREE_VALUE (t)
8817 = tree_cons (NULL_TREE, TREE_VALUE (TREE_VALUE (t)),
8818 chain);
8820 else
8821 TREE_VALUE (t)
8822 = tsubst_expr (TREE_VALUE (t), args, complain, in_decl,
8823 /*integral_constant_expression_p=*/false);
8824 *q = t;
8825 q = &TREE_CHAIN (t);
8827 else
8828 p = &TREE_CHAIN (t);
8831 cplus_decl_attributes (decl_p, late_attrs, attr_flags);
8835 /* Perform (or defer) access check for typedefs that were referenced
8836 from within the template TMPL code.
8837 This is a subroutine of instantiate_decl and instantiate_class_template.
8838 TMPL is the template to consider and TARGS is the list of arguments of
8839 that template. */
8841 static void
8842 perform_typedefs_access_check (tree tmpl, tree targs)
8844 location_t saved_location;
8845 unsigned i;
8846 qualified_typedef_usage_t *iter;
8848 if (!tmpl
8849 || (!CLASS_TYPE_P (tmpl)
8850 && TREE_CODE (tmpl) != FUNCTION_DECL))
8851 return;
8853 saved_location = input_location;
8854 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (tmpl), i, iter)
8856 tree type_decl = iter->typedef_decl;
8857 tree type_scope = iter->context;
8859 if (!type_decl || !type_scope || !CLASS_TYPE_P (type_scope))
8860 continue;
8862 if (uses_template_parms (type_decl))
8863 type_decl = tsubst (type_decl, targs, tf_error, NULL_TREE);
8864 if (uses_template_parms (type_scope))
8865 type_scope = tsubst (type_scope, targs, tf_error, NULL_TREE);
8867 /* Make access check error messages point to the location
8868 of the use of the typedef. */
8869 input_location = iter->locus;
8870 perform_or_defer_access_check (TYPE_BINFO (type_scope),
8871 type_decl, type_decl,
8872 tf_warning_or_error);
8874 input_location = saved_location;
8877 static tree
8878 instantiate_class_template_1 (tree type)
8880 tree templ, args, pattern, t, member;
8881 tree typedecl;
8882 tree pbinfo;
8883 tree base_list;
8884 unsigned int saved_maximum_field_alignment;
8885 tree fn_context;
8887 if (type == error_mark_node)
8888 return error_mark_node;
8890 if (COMPLETE_OR_OPEN_TYPE_P (type)
8891 || uses_template_parms (type))
8892 return type;
8894 /* Figure out which template is being instantiated. */
8895 templ = most_general_template (CLASSTYPE_TI_TEMPLATE (type));
8896 gcc_assert (TREE_CODE (templ) == TEMPLATE_DECL);
8898 /* Determine what specialization of the original template to
8899 instantiate. */
8900 t = most_specialized_class (type, tf_warning_or_error);
8901 if (t == error_mark_node)
8903 TYPE_BEING_DEFINED (type) = 1;
8904 return error_mark_node;
8906 else if (t)
8908 /* This TYPE is actually an instantiation of a partial
8909 specialization. We replace the innermost set of ARGS with
8910 the arguments appropriate for substitution. For example,
8911 given:
8913 template <class T> struct S {};
8914 template <class T> struct S<T*> {};
8916 and supposing that we are instantiating S<int*>, ARGS will
8917 presently be {int*} -- but we need {int}. */
8918 pattern = TREE_TYPE (t);
8919 args = TREE_PURPOSE (t);
8921 else
8923 pattern = TREE_TYPE (templ);
8924 args = CLASSTYPE_TI_ARGS (type);
8927 /* If the template we're instantiating is incomplete, then clearly
8928 there's nothing we can do. */
8929 if (!COMPLETE_TYPE_P (pattern))
8930 return type;
8932 /* If we've recursively instantiated too many templates, stop. */
8933 if (! push_tinst_level (type))
8934 return type;
8936 /* Now we're really doing the instantiation. Mark the type as in
8937 the process of being defined. */
8938 TYPE_BEING_DEFINED (type) = 1;
8940 /* We may be in the middle of deferred access check. Disable
8941 it now. */
8942 push_deferring_access_checks (dk_no_deferred);
8944 fn_context = decl_function_context (TYPE_MAIN_DECL (type));
8945 /* Also avoid push_to_top_level for a lambda in an NSDMI. */
8946 if (!fn_context && LAMBDA_TYPE_P (type) && TYPE_CLASS_SCOPE_P (type))
8947 fn_context = error_mark_node;
8948 if (!fn_context)
8949 push_to_top_level ();
8950 /* Use #pragma pack from the template context. */
8951 saved_maximum_field_alignment = maximum_field_alignment;
8952 maximum_field_alignment = TYPE_PRECISION (pattern);
8954 SET_CLASSTYPE_INTERFACE_UNKNOWN (type);
8956 /* Set the input location to the most specialized template definition.
8957 This is needed if tsubsting causes an error. */
8958 typedecl = TYPE_MAIN_DECL (pattern);
8959 input_location = DECL_SOURCE_LOCATION (TYPE_NAME (type)) =
8960 DECL_SOURCE_LOCATION (typedecl);
8962 TYPE_PACKED (type) = TYPE_PACKED (pattern);
8963 TYPE_ALIGN (type) = TYPE_ALIGN (pattern);
8964 TYPE_USER_ALIGN (type) = TYPE_USER_ALIGN (pattern);
8965 TYPE_FOR_JAVA (type) = TYPE_FOR_JAVA (pattern); /* For libjava's JArray<T> */
8966 if (ANON_AGGR_TYPE_P (pattern))
8967 SET_ANON_AGGR_TYPE_P (type);
8968 if (CLASSTYPE_VISIBILITY_SPECIFIED (pattern))
8970 CLASSTYPE_VISIBILITY_SPECIFIED (type) = 1;
8971 CLASSTYPE_VISIBILITY (type) = CLASSTYPE_VISIBILITY (pattern);
8972 /* Adjust visibility for template arguments. */
8973 determine_visibility (TYPE_MAIN_DECL (type));
8975 if (CLASS_TYPE_P (type))
8976 CLASSTYPE_FINAL (type) = CLASSTYPE_FINAL (pattern);
8978 pbinfo = TYPE_BINFO (pattern);
8980 /* We should never instantiate a nested class before its enclosing
8981 class; we need to look up the nested class by name before we can
8982 instantiate it, and that lookup should instantiate the enclosing
8983 class. */
8984 gcc_assert (!DECL_CLASS_SCOPE_P (TYPE_MAIN_DECL (pattern))
8985 || COMPLETE_OR_OPEN_TYPE_P (TYPE_CONTEXT (type)));
8987 base_list = NULL_TREE;
8988 if (BINFO_N_BASE_BINFOS (pbinfo))
8990 tree pbase_binfo;
8991 tree pushed_scope;
8992 int i;
8994 /* We must enter the scope containing the type, as that is where
8995 the accessibility of types named in dependent bases are
8996 looked up from. */
8997 pushed_scope = push_scope (CP_TYPE_CONTEXT (type));
8999 /* Substitute into each of the bases to determine the actual
9000 basetypes. */
9001 for (i = 0; BINFO_BASE_ITERATE (pbinfo, i, pbase_binfo); i++)
9003 tree base;
9004 tree access = BINFO_BASE_ACCESS (pbinfo, i);
9005 tree expanded_bases = NULL_TREE;
9006 int idx, len = 1;
9008 if (PACK_EXPANSION_P (BINFO_TYPE (pbase_binfo)))
9010 expanded_bases =
9011 tsubst_pack_expansion (BINFO_TYPE (pbase_binfo),
9012 args, tf_error, NULL_TREE);
9013 if (expanded_bases == error_mark_node)
9014 continue;
9016 len = TREE_VEC_LENGTH (expanded_bases);
9019 for (idx = 0; idx < len; idx++)
9021 if (expanded_bases)
9022 /* Extract the already-expanded base class. */
9023 base = TREE_VEC_ELT (expanded_bases, idx);
9024 else
9025 /* Substitute to figure out the base class. */
9026 base = tsubst (BINFO_TYPE (pbase_binfo), args, tf_error,
9027 NULL_TREE);
9029 if (base == error_mark_node)
9030 continue;
9032 base_list = tree_cons (access, base, base_list);
9033 if (BINFO_VIRTUAL_P (pbase_binfo))
9034 TREE_TYPE (base_list) = integer_type_node;
9038 /* The list is now in reverse order; correct that. */
9039 base_list = nreverse (base_list);
9041 if (pushed_scope)
9042 pop_scope (pushed_scope);
9044 /* Now call xref_basetypes to set up all the base-class
9045 information. */
9046 xref_basetypes (type, base_list);
9048 apply_late_template_attributes (&type, TYPE_ATTRIBUTES (pattern),
9049 (int) ATTR_FLAG_TYPE_IN_PLACE,
9050 args, tf_error, NULL_TREE);
9051 fixup_attribute_variants (type);
9053 /* Now that our base classes are set up, enter the scope of the
9054 class, so that name lookups into base classes, etc. will work
9055 correctly. This is precisely analogous to what we do in
9056 begin_class_definition when defining an ordinary non-template
9057 class, except we also need to push the enclosing classes. */
9058 push_nested_class (type);
9060 /* Now members are processed in the order of declaration. */
9061 for (member = CLASSTYPE_DECL_LIST (pattern);
9062 member; member = TREE_CHAIN (member))
9064 tree t = TREE_VALUE (member);
9066 if (TREE_PURPOSE (member))
9068 if (TYPE_P (t))
9070 /* Build new CLASSTYPE_NESTED_UTDS. */
9072 tree newtag;
9073 bool class_template_p;
9075 class_template_p = (TREE_CODE (t) != ENUMERAL_TYPE
9076 && TYPE_LANG_SPECIFIC (t)
9077 && CLASSTYPE_IS_TEMPLATE (t));
9078 /* If the member is a class template, then -- even after
9079 substitution -- there may be dependent types in the
9080 template argument list for the class. We increment
9081 PROCESSING_TEMPLATE_DECL so that dependent_type_p, as
9082 that function will assume that no types are dependent
9083 when outside of a template. */
9084 if (class_template_p)
9085 ++processing_template_decl;
9086 newtag = tsubst (t, args, tf_error, NULL_TREE);
9087 if (class_template_p)
9088 --processing_template_decl;
9089 if (newtag == error_mark_node)
9090 continue;
9092 if (TREE_CODE (newtag) != ENUMERAL_TYPE)
9094 tree name = TYPE_IDENTIFIER (t);
9096 if (class_template_p)
9097 /* Unfortunately, lookup_template_class sets
9098 CLASSTYPE_IMPLICIT_INSTANTIATION for a partial
9099 instantiation (i.e., for the type of a member
9100 template class nested within a template class.)
9101 This behavior is required for
9102 maybe_process_partial_specialization to work
9103 correctly, but is not accurate in this case;
9104 the TAG is not an instantiation of anything.
9105 (The corresponding TEMPLATE_DECL is an
9106 instantiation, but the TYPE is not.) */
9107 CLASSTYPE_USE_TEMPLATE (newtag) = 0;
9109 /* Now, we call pushtag to put this NEWTAG into the scope of
9110 TYPE. We first set up the IDENTIFIER_TYPE_VALUE to avoid
9111 pushtag calling push_template_decl. We don't have to do
9112 this for enums because it will already have been done in
9113 tsubst_enum. */
9114 if (name)
9115 SET_IDENTIFIER_TYPE_VALUE (name, newtag);
9116 pushtag (name, newtag, /*tag_scope=*/ts_current);
9119 else if (DECL_DECLARES_FUNCTION_P (t))
9121 /* Build new TYPE_METHODS. */
9122 tree r;
9124 if (TREE_CODE (t) == TEMPLATE_DECL)
9125 ++processing_template_decl;
9126 r = tsubst (t, args, tf_error, NULL_TREE);
9127 if (TREE_CODE (t) == TEMPLATE_DECL)
9128 --processing_template_decl;
9129 set_current_access_from_decl (r);
9130 finish_member_declaration (r);
9131 /* Instantiate members marked with attribute used. */
9132 if (r != error_mark_node && DECL_PRESERVE_P (r))
9133 mark_used (r);
9134 if (TREE_CODE (r) == FUNCTION_DECL
9135 && DECL_OMP_DECLARE_REDUCTION_P (r))
9136 cp_check_omp_declare_reduction (r);
9138 else
9140 /* Build new TYPE_FIELDS. */
9141 if (TREE_CODE (t) == STATIC_ASSERT)
9143 tree condition;
9145 ++c_inhibit_evaluation_warnings;
9146 condition =
9147 tsubst_expr (STATIC_ASSERT_CONDITION (t), args,
9148 tf_warning_or_error, NULL_TREE,
9149 /*integral_constant_expression_p=*/true);
9150 --c_inhibit_evaluation_warnings;
9152 finish_static_assert (condition,
9153 STATIC_ASSERT_MESSAGE (t),
9154 STATIC_ASSERT_SOURCE_LOCATION (t),
9155 /*member_p=*/true);
9157 else if (TREE_CODE (t) != CONST_DECL)
9159 tree r;
9160 tree vec = NULL_TREE;
9161 int len = 1;
9163 /* The file and line for this declaration, to
9164 assist in error message reporting. Since we
9165 called push_tinst_level above, we don't need to
9166 restore these. */
9167 input_location = DECL_SOURCE_LOCATION (t);
9169 if (TREE_CODE (t) == TEMPLATE_DECL)
9170 ++processing_template_decl;
9171 r = tsubst (t, args, tf_warning_or_error, NULL_TREE);
9172 if (TREE_CODE (t) == TEMPLATE_DECL)
9173 --processing_template_decl;
9175 if (TREE_CODE (r) == TREE_VEC)
9177 /* A capture pack became multiple fields. */
9178 vec = r;
9179 len = TREE_VEC_LENGTH (vec);
9182 for (int i = 0; i < len; ++i)
9184 if (vec)
9185 r = TREE_VEC_ELT (vec, i);
9186 if (VAR_P (r))
9188 /* In [temp.inst]:
9190 [t]he initialization (and any associated
9191 side-effects) of a static data member does
9192 not occur unless the static data member is
9193 itself used in a way that requires the
9194 definition of the static data member to
9195 exist.
9197 Therefore, we do not substitute into the
9198 initialized for the static data member here. */
9199 finish_static_data_member_decl
9201 /*init=*/NULL_TREE,
9202 /*init_const_expr_p=*/false,
9203 /*asmspec_tree=*/NULL_TREE,
9204 /*flags=*/0);
9205 /* Instantiate members marked with attribute used. */
9206 if (r != error_mark_node && DECL_PRESERVE_P (r))
9207 mark_used (r);
9209 else if (TREE_CODE (r) == FIELD_DECL)
9211 /* Determine whether R has a valid type and can be
9212 completed later. If R is invalid, then its type
9213 is replaced by error_mark_node. */
9214 tree rtype = TREE_TYPE (r);
9215 if (can_complete_type_without_circularity (rtype))
9216 complete_type (rtype);
9218 if (!COMPLETE_TYPE_P (rtype))
9220 cxx_incomplete_type_error (r, rtype);
9221 TREE_TYPE (r) = error_mark_node;
9225 /* If it is a TYPE_DECL for a class-scoped ENUMERAL_TYPE,
9226 such a thing will already have been added to the field
9227 list by tsubst_enum in finish_member_declaration in the
9228 CLASSTYPE_NESTED_UTDS case above. */
9229 if (!(TREE_CODE (r) == TYPE_DECL
9230 && TREE_CODE (TREE_TYPE (r)) == ENUMERAL_TYPE
9231 && DECL_ARTIFICIAL (r)))
9233 set_current_access_from_decl (r);
9234 finish_member_declaration (r);
9240 else
9242 if (TYPE_P (t) || DECL_CLASS_TEMPLATE_P (t)
9243 || DECL_TEMPLATE_TEMPLATE_PARM_P (t))
9245 /* Build new CLASSTYPE_FRIEND_CLASSES. */
9247 tree friend_type = t;
9248 bool adjust_processing_template_decl = false;
9250 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
9252 /* template <class T> friend class C; */
9253 friend_type = tsubst_friend_class (friend_type, args);
9254 adjust_processing_template_decl = true;
9256 else if (TREE_CODE (friend_type) == UNBOUND_CLASS_TEMPLATE)
9258 /* template <class T> friend class C::D; */
9259 friend_type = tsubst (friend_type, args,
9260 tf_warning_or_error, NULL_TREE);
9261 if (TREE_CODE (friend_type) == TEMPLATE_DECL)
9262 friend_type = TREE_TYPE (friend_type);
9263 adjust_processing_template_decl = true;
9265 else if (TREE_CODE (friend_type) == TYPENAME_TYPE
9266 || TREE_CODE (friend_type) == TEMPLATE_TYPE_PARM)
9268 /* This could be either
9270 friend class T::C;
9272 when dependent_type_p is false or
9274 template <class U> friend class T::C;
9276 otherwise. */
9277 friend_type = tsubst (friend_type, args,
9278 tf_warning_or_error, NULL_TREE);
9279 /* Bump processing_template_decl for correct
9280 dependent_type_p calculation. */
9281 ++processing_template_decl;
9282 if (dependent_type_p (friend_type))
9283 adjust_processing_template_decl = true;
9284 --processing_template_decl;
9286 else if (!CLASSTYPE_USE_TEMPLATE (friend_type)
9287 && hidden_name_p (TYPE_NAME (friend_type)))
9289 /* friend class C;
9291 where C hasn't been declared yet. Let's lookup name
9292 from namespace scope directly, bypassing any name that
9293 come from dependent base class. */
9294 tree ns = decl_namespace_context (TYPE_MAIN_DECL (friend_type));
9296 /* The call to xref_tag_from_type does injection for friend
9297 classes. */
9298 push_nested_namespace (ns);
9299 friend_type =
9300 xref_tag_from_type (friend_type, NULL_TREE,
9301 /*tag_scope=*/ts_current);
9302 pop_nested_namespace (ns);
9304 else if (uses_template_parms (friend_type))
9305 /* friend class C<T>; */
9306 friend_type = tsubst (friend_type, args,
9307 tf_warning_or_error, NULL_TREE);
9308 /* Otherwise it's
9310 friend class C;
9312 where C is already declared or
9314 friend class C<int>;
9316 We don't have to do anything in these cases. */
9318 if (adjust_processing_template_decl)
9319 /* Trick make_friend_class into realizing that the friend
9320 we're adding is a template, not an ordinary class. It's
9321 important that we use make_friend_class since it will
9322 perform some error-checking and output cross-reference
9323 information. */
9324 ++processing_template_decl;
9326 if (friend_type != error_mark_node)
9327 make_friend_class (type, friend_type, /*complain=*/false);
9329 if (adjust_processing_template_decl)
9330 --processing_template_decl;
9332 else
9334 /* Build new DECL_FRIENDLIST. */
9335 tree r;
9337 /* The file and line for this declaration, to
9338 assist in error message reporting. Since we
9339 called push_tinst_level above, we don't need to
9340 restore these. */
9341 input_location = DECL_SOURCE_LOCATION (t);
9343 if (TREE_CODE (t) == TEMPLATE_DECL)
9345 ++processing_template_decl;
9346 push_deferring_access_checks (dk_no_check);
9349 r = tsubst_friend_function (t, args);
9350 add_friend (type, r, /*complain=*/false);
9351 if (TREE_CODE (t) == TEMPLATE_DECL)
9353 pop_deferring_access_checks ();
9354 --processing_template_decl;
9360 if (tree expr = CLASSTYPE_LAMBDA_EXPR (type))
9362 tree decl = lambda_function (type);
9363 if (decl)
9365 if (!DECL_TEMPLATE_INFO (decl)
9366 || DECL_TEMPLATE_RESULT (DECL_TI_TEMPLATE (decl)) != decl)
9367 instantiate_decl (decl, false, false);
9369 /* We need to instantiate the capture list from the template
9370 after we've instantiated the closure members, but before we
9371 consider adding the conversion op. Also keep any captures
9372 that may have been added during instantiation of the op(). */
9373 tree tmpl_expr = CLASSTYPE_LAMBDA_EXPR (pattern);
9374 tree tmpl_cap
9375 = tsubst_copy_and_build (LAMBDA_EXPR_CAPTURE_LIST (tmpl_expr),
9376 args, tf_warning_or_error, NULL_TREE,
9377 false, false);
9379 LAMBDA_EXPR_CAPTURE_LIST (expr)
9380 = chainon (tmpl_cap, nreverse (LAMBDA_EXPR_CAPTURE_LIST (expr)));
9382 maybe_add_lambda_conv_op (type);
9384 else
9385 gcc_assert (errorcount);
9388 /* Set the file and line number information to whatever is given for
9389 the class itself. This puts error messages involving generated
9390 implicit functions at a predictable point, and the same point
9391 that would be used for non-template classes. */
9392 input_location = DECL_SOURCE_LOCATION (typedecl);
9394 unreverse_member_declarations (type);
9395 finish_struct_1 (type);
9396 TYPE_BEING_DEFINED (type) = 0;
9398 /* We don't instantiate default arguments for member functions. 14.7.1:
9400 The implicit instantiation of a class template specialization causes
9401 the implicit instantiation of the declarations, but not of the
9402 definitions or default arguments, of the class member functions,
9403 member classes, static data members and member templates.... */
9405 /* Some typedefs referenced from within the template code need to be access
9406 checked at template instantiation time, i.e now. These types were
9407 added to the template at parsing time. Let's get those and perform
9408 the access checks then. */
9409 perform_typedefs_access_check (pattern, args);
9410 perform_deferred_access_checks (tf_warning_or_error);
9411 pop_nested_class ();
9412 maximum_field_alignment = saved_maximum_field_alignment;
9413 if (!fn_context)
9414 pop_from_top_level ();
9415 pop_deferring_access_checks ();
9416 pop_tinst_level ();
9418 /* The vtable for a template class can be emitted in any translation
9419 unit in which the class is instantiated. When there is no key
9420 method, however, finish_struct_1 will already have added TYPE to
9421 the keyed_classes list. */
9422 if (TYPE_CONTAINS_VPTR_P (type) && CLASSTYPE_KEY_METHOD (type))
9423 keyed_classes = tree_cons (NULL_TREE, type, keyed_classes);
9425 return type;
9428 /* Wrapper for instantiate_class_template_1. */
9430 tree
9431 instantiate_class_template (tree type)
9433 tree ret;
9434 timevar_push (TV_TEMPLATE_INST);
9435 ret = instantiate_class_template_1 (type);
9436 timevar_pop (TV_TEMPLATE_INST);
9437 return ret;
9440 static tree
9441 tsubst_template_arg (tree t, tree args, tsubst_flags_t complain, tree in_decl)
9443 tree r;
9445 if (!t)
9446 r = t;
9447 else if (TYPE_P (t))
9448 r = tsubst (t, args, complain, in_decl);
9449 else
9451 if (!(complain & tf_warning))
9452 ++c_inhibit_evaluation_warnings;
9453 r = tsubst_expr (t, args, complain, in_decl,
9454 /*integral_constant_expression_p=*/true);
9455 if (!(complain & tf_warning))
9456 --c_inhibit_evaluation_warnings;
9458 return r;
9461 /* Given a function parameter pack TMPL_PARM and some function parameters
9462 instantiated from it at *SPEC_P, return a NONTYPE_ARGUMENT_PACK of them
9463 and set *SPEC_P to point at the next point in the list. */
9465 static tree
9466 extract_fnparm_pack (tree tmpl_parm, tree *spec_p)
9468 /* Collect all of the extra "packed" parameters into an
9469 argument pack. */
9470 tree parmvec;
9471 tree parmtypevec;
9472 tree argpack = make_node (NONTYPE_ARGUMENT_PACK);
9473 tree argtypepack = cxx_make_type (TYPE_ARGUMENT_PACK);
9474 tree spec_parm = *spec_p;
9475 int i, len;
9477 for (len = 0; spec_parm; ++len, spec_parm = TREE_CHAIN (spec_parm))
9478 if (tmpl_parm
9479 && !function_parameter_expanded_from_pack_p (spec_parm, tmpl_parm))
9480 break;
9482 /* Fill in PARMVEC and PARMTYPEVEC with all of the parameters. */
9483 parmvec = make_tree_vec (len);
9484 parmtypevec = make_tree_vec (len);
9485 spec_parm = *spec_p;
9486 for (i = 0; i < len; i++, spec_parm = DECL_CHAIN (spec_parm))
9488 TREE_VEC_ELT (parmvec, i) = spec_parm;
9489 TREE_VEC_ELT (parmtypevec, i) = TREE_TYPE (spec_parm);
9492 /* Build the argument packs. */
9493 SET_ARGUMENT_PACK_ARGS (argpack, parmvec);
9494 SET_ARGUMENT_PACK_ARGS (argtypepack, parmtypevec);
9495 TREE_TYPE (argpack) = argtypepack;
9496 *spec_p = spec_parm;
9498 return argpack;
9501 /* Give a chain SPEC_PARM of PARM_DECLs, pack them into a
9502 NONTYPE_ARGUMENT_PACK. */
9504 static tree
9505 make_fnparm_pack (tree spec_parm)
9507 return extract_fnparm_pack (NULL_TREE, &spec_parm);
9510 /* Return true iff the Ith element of the argument pack ARG_PACK is a
9511 pack expansion. */
9513 static bool
9514 argument_pack_element_is_expansion_p (tree arg_pack, int i)
9516 tree vec = ARGUMENT_PACK_ARGS (arg_pack);
9517 if (i >= TREE_VEC_LENGTH (vec))
9518 return false;
9519 return PACK_EXPANSION_P (TREE_VEC_ELT (vec, i));
9523 /* Creates and return an ARGUMENT_PACK_SELECT tree node. */
9525 static tree
9526 make_argument_pack_select (tree arg_pack, unsigned index)
9528 tree aps = make_node (ARGUMENT_PACK_SELECT);
9530 ARGUMENT_PACK_SELECT_FROM_PACK (aps) = arg_pack;
9531 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
9533 return aps;
9536 /* This is a subroutine of tsubst_pack_expansion.
9538 It returns TRUE if we need to use the PACK_EXPANSION_EXTRA_ARGS
9539 mechanism to store the (non complete list of) arguments of the
9540 substitution and return a non substituted pack expansion, in order
9541 to wait for when we have enough arguments to really perform the
9542 substitution. */
9544 static bool
9545 use_pack_expansion_extra_args_p (tree parm_packs,
9546 int arg_pack_len,
9547 bool has_empty_arg)
9549 /* If one pack has an expansion and another pack has a normal
9550 argument or if one pack has an empty argument and an another
9551 one hasn't then tsubst_pack_expansion cannot perform the
9552 substitution and need to fall back on the
9553 PACK_EXPANSION_EXTRA mechanism. */
9554 if (parm_packs == NULL_TREE)
9555 return false;
9556 else if (has_empty_arg)
9557 return true;
9559 bool has_expansion_arg = false;
9560 for (int i = 0 ; i < arg_pack_len; ++i)
9562 bool has_non_expansion_arg = false;
9563 for (tree parm_pack = parm_packs;
9564 parm_pack;
9565 parm_pack = TREE_CHAIN (parm_pack))
9567 tree arg = TREE_VALUE (parm_pack);
9569 if (argument_pack_element_is_expansion_p (arg, i))
9570 has_expansion_arg = true;
9571 else
9572 has_non_expansion_arg = true;
9575 if (has_expansion_arg && has_non_expansion_arg)
9576 return true;
9578 return false;
9581 /* [temp.variadic]/6 says that:
9583 The instantiation of a pack expansion [...]
9584 produces a list E1,E2, ..., En, where N is the number of elements
9585 in the pack expansion parameters.
9587 This subroutine of tsubst_pack_expansion produces one of these Ei.
9589 PATTERN is the pattern of the pack expansion. PARM_PACKS is a
9590 TREE_LIST in which each TREE_PURPOSE is a parameter pack of
9591 PATTERN, and each TREE_VALUE is its corresponding argument pack.
9592 INDEX is the index 'i' of the element Ei to produce. ARGS,
9593 COMPLAIN, and IN_DECL are the same parameters as for the
9594 tsubst_pack_expansion function.
9596 The function returns the resulting Ei upon successful completion,
9597 or error_mark_node.
9599 Note that this function possibly modifies the ARGS parameter, so
9600 it's the responsibility of the caller to restore it. */
9602 static tree
9603 gen_elem_of_pack_expansion_instantiation (tree pattern,
9604 tree parm_packs,
9605 unsigned index,
9606 tree args /* This parm gets
9607 modified. */,
9608 tsubst_flags_t complain,
9609 tree in_decl)
9611 tree t;
9612 bool ith_elem_is_expansion = false;
9614 /* For each parameter pack, change the substitution of the parameter
9615 pack to the ith argument in its argument pack, then expand the
9616 pattern. */
9617 for (tree pack = parm_packs; pack; pack = TREE_CHAIN (pack))
9619 tree parm = TREE_PURPOSE (pack);
9620 tree arg_pack = TREE_VALUE (pack);
9621 tree aps; /* instance of ARGUMENT_PACK_SELECT. */
9623 ith_elem_is_expansion |=
9624 argument_pack_element_is_expansion_p (arg_pack, index);
9626 /* Select the Ith argument from the pack. */
9627 if (TREE_CODE (parm) == PARM_DECL
9628 || TREE_CODE (parm) == FIELD_DECL)
9630 if (index == 0)
9632 aps = make_argument_pack_select (arg_pack, index);
9633 mark_used (parm);
9634 register_local_specialization (aps, parm);
9636 else
9637 aps = retrieve_local_specialization (parm);
9639 else
9641 int idx, level;
9642 template_parm_level_and_index (parm, &level, &idx);
9644 if (index == 0)
9646 aps = make_argument_pack_select (arg_pack, index);
9647 /* Update the corresponding argument. */
9648 TMPL_ARG (args, level, idx) = aps;
9650 else
9651 /* Re-use the ARGUMENT_PACK_SELECT. */
9652 aps = TMPL_ARG (args, level, idx);
9654 ARGUMENT_PACK_SELECT_INDEX (aps) = index;
9657 /* Substitute into the PATTERN with the (possibly altered)
9658 arguments. */
9659 if (pattern == in_decl)
9660 /* Expanding a fixed parameter pack from
9661 coerce_template_parameter_pack. */
9662 t = tsubst_decl (pattern, args, complain);
9663 else if (!TYPE_P (pattern))
9664 t = tsubst_expr (pattern, args, complain, in_decl,
9665 /*integral_constant_expression_p=*/false);
9666 else
9667 t = tsubst (pattern, args, complain, in_decl);
9669 /* If the Ith argument pack element is a pack expansion, then
9670 the Ith element resulting from the substituting is going to
9671 be a pack expansion as well. */
9672 if (ith_elem_is_expansion)
9673 t = make_pack_expansion (t);
9675 return t;
9678 /* Substitute ARGS into T, which is an pack expansion
9679 (i.e. TYPE_PACK_EXPANSION or EXPR_PACK_EXPANSION). Returns a
9680 TREE_VEC with the substituted arguments, a PACK_EXPANSION_* node
9681 (if only a partial substitution could be performed) or
9682 ERROR_MARK_NODE if there was an error. */
9683 tree
9684 tsubst_pack_expansion (tree t, tree args, tsubst_flags_t complain,
9685 tree in_decl)
9687 tree pattern;
9688 tree pack, packs = NULL_TREE;
9689 bool unsubstituted_packs = false;
9690 int i, len = -1;
9691 tree result;
9692 struct pointer_map_t *saved_local_specializations = NULL;
9693 bool need_local_specializations = false;
9694 int levels;
9696 gcc_assert (PACK_EXPANSION_P (t));
9697 pattern = PACK_EXPANSION_PATTERN (t);
9699 /* Add in any args remembered from an earlier partial instantiation. */
9700 args = add_to_template_args (PACK_EXPANSION_EXTRA_ARGS (t), args);
9702 levels = TMPL_ARGS_DEPTH (args);
9704 /* Determine the argument packs that will instantiate the parameter
9705 packs used in the expansion expression. While we're at it,
9706 compute the number of arguments to be expanded and make sure it
9707 is consistent. */
9708 for (pack = PACK_EXPANSION_PARAMETER_PACKS (t); pack;
9709 pack = TREE_CHAIN (pack))
9711 tree parm_pack = TREE_VALUE (pack);
9712 tree arg_pack = NULL_TREE;
9713 tree orig_arg = NULL_TREE;
9714 int level = 0;
9716 if (TREE_CODE (parm_pack) == BASES)
9718 if (BASES_DIRECT (parm_pack))
9719 return calculate_direct_bases (tsubst_expr (BASES_TYPE (parm_pack),
9720 args, complain, in_decl, false));
9721 else
9722 return calculate_bases (tsubst_expr (BASES_TYPE (parm_pack),
9723 args, complain, in_decl, false));
9725 if (TREE_CODE (parm_pack) == PARM_DECL)
9727 if (PACK_EXPANSION_LOCAL_P (t))
9728 arg_pack = retrieve_local_specialization (parm_pack);
9729 else
9731 /* We can't rely on local_specializations for a parameter
9732 name used later in a function declaration (such as in a
9733 late-specified return type). Even if it exists, it might
9734 have the wrong value for a recursive call. Just make a
9735 dummy decl, since it's only used for its type. */
9736 arg_pack = tsubst_decl (parm_pack, args, complain);
9737 if (arg_pack && DECL_PACK_P (arg_pack))
9738 /* Partial instantiation of the parm_pack, we can't build
9739 up an argument pack yet. */
9740 arg_pack = NULL_TREE;
9741 else
9742 arg_pack = make_fnparm_pack (arg_pack);
9743 need_local_specializations = true;
9746 else if (TREE_CODE (parm_pack) == FIELD_DECL)
9747 arg_pack = tsubst_copy (parm_pack, args, complain, in_decl);
9748 else
9750 int idx;
9751 template_parm_level_and_index (parm_pack, &level, &idx);
9753 if (level <= levels)
9754 arg_pack = TMPL_ARG (args, level, idx);
9757 orig_arg = arg_pack;
9758 if (arg_pack && TREE_CODE (arg_pack) == ARGUMENT_PACK_SELECT)
9759 arg_pack = ARGUMENT_PACK_SELECT_FROM_PACK (arg_pack);
9761 if (arg_pack && !ARGUMENT_PACK_P (arg_pack))
9762 /* This can only happen if we forget to expand an argument
9763 pack somewhere else. Just return an error, silently. */
9765 result = make_tree_vec (1);
9766 TREE_VEC_ELT (result, 0) = error_mark_node;
9767 return result;
9770 if (arg_pack)
9772 int my_len =
9773 TREE_VEC_LENGTH (ARGUMENT_PACK_ARGS (arg_pack));
9775 /* Don't bother trying to do a partial substitution with
9776 incomplete packs; we'll try again after deduction. */
9777 if (ARGUMENT_PACK_INCOMPLETE_P (arg_pack))
9778 return t;
9780 if (len < 0)
9781 len = my_len;
9782 else if (len != my_len)
9784 if (!(complain & tf_error))
9785 /* Fail quietly. */;
9786 else if (TREE_CODE (t) == TYPE_PACK_EXPANSION)
9787 error ("mismatched argument pack lengths while expanding "
9788 "%<%T%>",
9789 pattern);
9790 else
9791 error ("mismatched argument pack lengths while expanding "
9792 "%<%E%>",
9793 pattern);
9794 return error_mark_node;
9797 /* Keep track of the parameter packs and their corresponding
9798 argument packs. */
9799 packs = tree_cons (parm_pack, arg_pack, packs);
9800 TREE_TYPE (packs) = orig_arg;
9802 else
9804 /* We can't substitute for this parameter pack. We use a flag as
9805 well as the missing_level counter because function parameter
9806 packs don't have a level. */
9807 unsubstituted_packs = true;
9811 /* We cannot expand this expansion expression, because we don't have
9812 all of the argument packs we need. */
9813 if (use_pack_expansion_extra_args_p (packs, len, unsubstituted_packs))
9815 /* We got some full packs, but we can't substitute them in until we
9816 have values for all the packs. So remember these until then. */
9818 t = make_pack_expansion (pattern);
9819 PACK_EXPANSION_EXTRA_ARGS (t) = args;
9820 return t;
9822 else if (unsubstituted_packs)
9824 /* There were no real arguments, we're just replacing a parameter
9825 pack with another version of itself. Substitute into the
9826 pattern and return a PACK_EXPANSION_*. The caller will need to
9827 deal with that. */
9828 if (TREE_CODE (t) == EXPR_PACK_EXPANSION)
9829 t = tsubst_expr (pattern, args, complain, in_decl,
9830 /*integral_constant_expression_p=*/false);
9831 else
9832 t = tsubst (pattern, args, complain, in_decl);
9833 t = make_pack_expansion (t);
9834 return t;
9837 gcc_assert (len >= 0);
9839 if (need_local_specializations)
9841 /* We're in a late-specified return type, so create our own local
9842 specializations map; the current map is either NULL or (in the
9843 case of recursive unification) might have bindings that we don't
9844 want to use or alter. */
9845 saved_local_specializations = local_specializations;
9846 local_specializations = pointer_map_create ();
9849 /* For each argument in each argument pack, substitute into the
9850 pattern. */
9851 result = make_tree_vec (len);
9852 for (i = 0; i < len; ++i)
9854 t = gen_elem_of_pack_expansion_instantiation (pattern, packs,
9856 args, complain,
9857 in_decl);
9858 TREE_VEC_ELT (result, i) = t;
9859 if (t == error_mark_node)
9861 result = error_mark_node;
9862 break;
9866 /* Update ARGS to restore the substitution from parameter packs to
9867 their argument packs. */
9868 for (pack = packs; pack; pack = TREE_CHAIN (pack))
9870 tree parm = TREE_PURPOSE (pack);
9872 if (TREE_CODE (parm) == PARM_DECL
9873 || TREE_CODE (parm) == FIELD_DECL)
9874 register_local_specialization (TREE_TYPE (pack), parm);
9875 else
9877 int idx, level;
9879 if (TREE_VALUE (pack) == NULL_TREE)
9880 continue;
9882 template_parm_level_and_index (parm, &level, &idx);
9884 /* Update the corresponding argument. */
9885 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
9886 TREE_VEC_ELT (TREE_VEC_ELT (args, level -1 ), idx) =
9887 TREE_TYPE (pack);
9888 else
9889 TREE_VEC_ELT (args, idx) = TREE_TYPE (pack);
9893 if (need_local_specializations)
9895 pointer_map_destroy (local_specializations);
9896 local_specializations = saved_local_specializations;
9899 return result;
9902 /* Given PARM_DECL PARM, find the corresponding PARM_DECL in the template
9903 TMPL. We do this using DECL_PARM_INDEX, which should work even with
9904 parameter packs; all parms generated from a function parameter pack will
9905 have the same DECL_PARM_INDEX. */
9907 tree
9908 get_pattern_parm (tree parm, tree tmpl)
9910 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
9911 tree patparm;
9913 if (DECL_ARTIFICIAL (parm))
9915 for (patparm = DECL_ARGUMENTS (pattern);
9916 patparm; patparm = DECL_CHAIN (patparm))
9917 if (DECL_ARTIFICIAL (patparm)
9918 && DECL_NAME (parm) == DECL_NAME (patparm))
9919 break;
9921 else
9923 patparm = FUNCTION_FIRST_USER_PARM (DECL_TEMPLATE_RESULT (tmpl));
9924 patparm = chain_index (DECL_PARM_INDEX (parm)-1, patparm);
9925 gcc_assert (DECL_PARM_INDEX (patparm)
9926 == DECL_PARM_INDEX (parm));
9929 return patparm;
9932 /* Substitute ARGS into the vector or list of template arguments T. */
9934 static tree
9935 tsubst_template_args (tree t, tree args, tsubst_flags_t complain, tree in_decl)
9937 tree orig_t = t;
9938 int len, need_new = 0, i, expanded_len_adjust = 0, out;
9939 tree *elts;
9941 if (t == error_mark_node)
9942 return error_mark_node;
9944 len = TREE_VEC_LENGTH (t);
9945 elts = XALLOCAVEC (tree, len);
9947 for (i = 0; i < len; i++)
9949 tree orig_arg = TREE_VEC_ELT (t, i);
9950 tree new_arg;
9952 if (TREE_CODE (orig_arg) == TREE_VEC)
9953 new_arg = tsubst_template_args (orig_arg, args, complain, in_decl);
9954 else if (PACK_EXPANSION_P (orig_arg))
9956 /* Substitute into an expansion expression. */
9957 new_arg = tsubst_pack_expansion (orig_arg, args, complain, in_decl);
9959 if (TREE_CODE (new_arg) == TREE_VEC)
9960 /* Add to the expanded length adjustment the number of
9961 expanded arguments. We subtract one from this
9962 measurement, because the argument pack expression
9963 itself is already counted as 1 in
9964 LEN. EXPANDED_LEN_ADJUST can actually be negative, if
9965 the argument pack is empty. */
9966 expanded_len_adjust += TREE_VEC_LENGTH (new_arg) - 1;
9968 else if (ARGUMENT_PACK_P (orig_arg))
9970 /* Substitute into each of the arguments. */
9971 new_arg = TYPE_P (orig_arg)
9972 ? cxx_make_type (TREE_CODE (orig_arg))
9973 : make_node (TREE_CODE (orig_arg));
9975 SET_ARGUMENT_PACK_ARGS (
9976 new_arg,
9977 tsubst_template_args (ARGUMENT_PACK_ARGS (orig_arg),
9978 args, complain, in_decl));
9980 if (ARGUMENT_PACK_ARGS (new_arg) == error_mark_node)
9981 new_arg = error_mark_node;
9983 if (TREE_CODE (new_arg) == NONTYPE_ARGUMENT_PACK) {
9984 TREE_TYPE (new_arg) = tsubst (TREE_TYPE (orig_arg), args,
9985 complain, in_decl);
9986 TREE_CONSTANT (new_arg) = TREE_CONSTANT (orig_arg);
9988 if (TREE_TYPE (new_arg) == error_mark_node)
9989 new_arg = error_mark_node;
9992 else
9993 new_arg = tsubst_template_arg (orig_arg, args, complain, in_decl);
9995 if (new_arg == error_mark_node)
9996 return error_mark_node;
9998 elts[i] = new_arg;
9999 if (new_arg != orig_arg)
10000 need_new = 1;
10003 if (!need_new)
10004 return t;
10006 /* Make space for the expanded arguments coming from template
10007 argument packs. */
10008 t = make_tree_vec (len + expanded_len_adjust);
10009 /* ORIG_T can contain TREE_VECs. That happens if ORIG_T contains the
10010 arguments for a member template.
10011 In that case each TREE_VEC in ORIG_T represents a level of template
10012 arguments, and ORIG_T won't carry any non defaulted argument count.
10013 It will rather be the nested TREE_VECs that will carry one.
10014 In other words, ORIG_T carries a non defaulted argument count only
10015 if it doesn't contain any nested TREE_VEC. */
10016 if (NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t))
10018 int count = GET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (orig_t);
10019 count += expanded_len_adjust;
10020 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (t, count);
10022 for (i = 0, out = 0; i < len; i++)
10024 if ((PACK_EXPANSION_P (TREE_VEC_ELT (orig_t, i))
10025 || ARGUMENT_PACK_P (TREE_VEC_ELT (orig_t, i)))
10026 && TREE_CODE (elts[i]) == TREE_VEC)
10028 int idx;
10030 /* Now expand the template argument pack "in place". */
10031 for (idx = 0; idx < TREE_VEC_LENGTH (elts[i]); idx++, out++)
10032 TREE_VEC_ELT (t, out) = TREE_VEC_ELT (elts[i], idx);
10034 else
10036 TREE_VEC_ELT (t, out) = elts[i];
10037 out++;
10041 return t;
10044 /* Return the result of substituting ARGS into the template parameters
10045 given by PARMS. If there are m levels of ARGS and m + n levels of
10046 PARMS, then the result will contain n levels of PARMS. For
10047 example, if PARMS is `template <class T> template <class U>
10048 template <T*, U, class V>' and ARGS is {{int}, {double}} then the
10049 result will be `template <int*, double, class V>'. */
10051 static tree
10052 tsubst_template_parms (tree parms, tree args, tsubst_flags_t complain)
10054 tree r = NULL_TREE;
10055 tree* new_parms;
10057 /* When substituting into a template, we must set
10058 PROCESSING_TEMPLATE_DECL as the template parameters may be
10059 dependent if they are based on one-another, and the dependency
10060 predicates are short-circuit outside of templates. */
10061 ++processing_template_decl;
10063 for (new_parms = &r;
10064 parms && TMPL_PARMS_DEPTH (parms) > TMPL_ARGS_DEPTH (args);
10065 new_parms = &(TREE_CHAIN (*new_parms)),
10066 parms = TREE_CHAIN (parms))
10068 tree new_vec =
10069 make_tree_vec (TREE_VEC_LENGTH (TREE_VALUE (parms)));
10070 int i;
10072 for (i = 0; i < TREE_VEC_LENGTH (new_vec); ++i)
10074 tree tuple;
10076 if (parms == error_mark_node)
10077 continue;
10079 tuple = TREE_VEC_ELT (TREE_VALUE (parms), i);
10081 if (tuple == error_mark_node)
10082 continue;
10084 TREE_VEC_ELT (new_vec, i) =
10085 tsubst_template_parm (tuple, args, complain);
10088 *new_parms =
10089 tree_cons (size_int (TMPL_PARMS_DEPTH (parms)
10090 - TMPL_ARGS_DEPTH (args)),
10091 new_vec, NULL_TREE);
10094 --processing_template_decl;
10096 return r;
10099 /* Return the result of substituting ARGS into one template parameter
10100 given by T. T Must be a TREE_LIST which TREE_VALUE is the template
10101 parameter and which TREE_PURPOSE is the default argument of the
10102 template parameter. */
10104 static tree
10105 tsubst_template_parm (tree t, tree args, tsubst_flags_t complain)
10107 tree default_value, parm_decl;
10109 if (args == NULL_TREE
10110 || t == NULL_TREE
10111 || t == error_mark_node)
10112 return t;
10114 gcc_assert (TREE_CODE (t) == TREE_LIST);
10116 default_value = TREE_PURPOSE (t);
10117 parm_decl = TREE_VALUE (t);
10119 parm_decl = tsubst (parm_decl, args, complain, NULL_TREE);
10120 if (TREE_CODE (parm_decl) == PARM_DECL
10121 && invalid_nontype_parm_type_p (TREE_TYPE (parm_decl), complain))
10122 parm_decl = error_mark_node;
10123 default_value = tsubst_template_arg (default_value, args,
10124 complain, NULL_TREE);
10126 return build_tree_list (default_value, parm_decl);
10129 /* Substitute the ARGS into the indicated aggregate (or enumeration)
10130 type T. If T is not an aggregate or enumeration type, it is
10131 handled as if by tsubst. IN_DECL is as for tsubst. If
10132 ENTERING_SCOPE is nonzero, T is the context for a template which
10133 we are presently tsubst'ing. Return the substituted value. */
10135 static tree
10136 tsubst_aggr_type (tree t,
10137 tree args,
10138 tsubst_flags_t complain,
10139 tree in_decl,
10140 int entering_scope)
10142 if (t == NULL_TREE)
10143 return NULL_TREE;
10145 switch (TREE_CODE (t))
10147 case RECORD_TYPE:
10148 if (TYPE_PTRMEMFUNC_P (t))
10149 return tsubst (TYPE_PTRMEMFUNC_FN_TYPE (t), args, complain, in_decl);
10151 /* Else fall through. */
10152 case ENUMERAL_TYPE:
10153 case UNION_TYPE:
10154 if (TYPE_TEMPLATE_INFO (t) && uses_template_parms (t))
10156 tree argvec;
10157 tree context;
10158 tree r;
10159 int saved_unevaluated_operand;
10160 int saved_inhibit_evaluation_warnings;
10162 /* In "sizeof(X<I>)" we need to evaluate "I". */
10163 saved_unevaluated_operand = cp_unevaluated_operand;
10164 cp_unevaluated_operand = 0;
10165 saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
10166 c_inhibit_evaluation_warnings = 0;
10168 /* First, determine the context for the type we are looking
10169 up. */
10170 context = TYPE_CONTEXT (t);
10171 if (context && TYPE_P (context))
10173 context = tsubst_aggr_type (context, args, complain,
10174 in_decl, /*entering_scope=*/1);
10175 /* If context is a nested class inside a class template,
10176 it may still need to be instantiated (c++/33959). */
10177 context = complete_type (context);
10180 /* Then, figure out what arguments are appropriate for the
10181 type we are trying to find. For example, given:
10183 template <class T> struct S;
10184 template <class T, class U> void f(T, U) { S<U> su; }
10186 and supposing that we are instantiating f<int, double>,
10187 then our ARGS will be {int, double}, but, when looking up
10188 S we only want {double}. */
10189 argvec = tsubst_template_args (TYPE_TI_ARGS (t), args,
10190 complain, in_decl);
10191 if (argvec == error_mark_node)
10192 r = error_mark_node;
10193 else
10195 r = lookup_template_class (t, argvec, in_decl, context,
10196 entering_scope, complain);
10197 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
10200 cp_unevaluated_operand = saved_unevaluated_operand;
10201 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
10203 return r;
10205 else
10206 /* This is not a template type, so there's nothing to do. */
10207 return t;
10209 default:
10210 return tsubst (t, args, complain, in_decl);
10214 /* Substitute into the default argument ARG (a default argument for
10215 FN), which has the indicated TYPE. */
10217 tree
10218 tsubst_default_argument (tree fn, tree type, tree arg, tsubst_flags_t complain)
10220 tree saved_class_ptr = NULL_TREE;
10221 tree saved_class_ref = NULL_TREE;
10222 int errs = errorcount + sorrycount;
10224 /* This can happen in invalid code. */
10225 if (TREE_CODE (arg) == DEFAULT_ARG)
10226 return arg;
10228 /* This default argument came from a template. Instantiate the
10229 default argument here, not in tsubst. In the case of
10230 something like:
10232 template <class T>
10233 struct S {
10234 static T t();
10235 void f(T = t());
10238 we must be careful to do name lookup in the scope of S<T>,
10239 rather than in the current class. */
10240 push_access_scope (fn);
10241 /* The "this" pointer is not valid in a default argument. */
10242 if (cfun)
10244 saved_class_ptr = current_class_ptr;
10245 cp_function_chain->x_current_class_ptr = NULL_TREE;
10246 saved_class_ref = current_class_ref;
10247 cp_function_chain->x_current_class_ref = NULL_TREE;
10250 push_deferring_access_checks(dk_no_deferred);
10251 /* The default argument expression may cause implicitly defined
10252 member functions to be synthesized, which will result in garbage
10253 collection. We must treat this situation as if we were within
10254 the body of function so as to avoid collecting live data on the
10255 stack. */
10256 ++function_depth;
10257 arg = tsubst_expr (arg, DECL_TI_ARGS (fn),
10258 complain, NULL_TREE,
10259 /*integral_constant_expression_p=*/false);
10260 --function_depth;
10261 pop_deferring_access_checks();
10263 /* Restore the "this" pointer. */
10264 if (cfun)
10266 cp_function_chain->x_current_class_ptr = saved_class_ptr;
10267 cp_function_chain->x_current_class_ref = saved_class_ref;
10270 if (errorcount+sorrycount > errs
10271 && (complain & tf_warning_or_error))
10272 inform (input_location,
10273 " when instantiating default argument for call to %D", fn);
10275 /* Make sure the default argument is reasonable. */
10276 arg = check_default_argument (type, arg, complain);
10278 pop_access_scope (fn);
10280 return arg;
10283 /* Substitute into all the default arguments for FN. */
10285 static void
10286 tsubst_default_arguments (tree fn, tsubst_flags_t complain)
10288 tree arg;
10289 tree tmpl_args;
10291 tmpl_args = DECL_TI_ARGS (fn);
10293 /* If this function is not yet instantiated, we certainly don't need
10294 its default arguments. */
10295 if (uses_template_parms (tmpl_args))
10296 return;
10297 /* Don't do this again for clones. */
10298 if (DECL_CLONED_FUNCTION_P (fn))
10299 return;
10301 for (arg = TYPE_ARG_TYPES (TREE_TYPE (fn));
10302 arg;
10303 arg = TREE_CHAIN (arg))
10304 if (TREE_PURPOSE (arg))
10305 TREE_PURPOSE (arg) = tsubst_default_argument (fn,
10306 TREE_VALUE (arg),
10307 TREE_PURPOSE (arg),
10308 complain);
10311 /* Substitute the ARGS into the T, which is a _DECL. Return the
10312 result of the substitution. Issue error and warning messages under
10313 control of COMPLAIN. */
10315 static tree
10316 tsubst_decl (tree t, tree args, tsubst_flags_t complain)
10318 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
10319 location_t saved_loc;
10320 tree r = NULL_TREE;
10321 tree in_decl = t;
10322 hashval_t hash = 0;
10324 /* Set the filename and linenumber to improve error-reporting. */
10325 saved_loc = input_location;
10326 input_location = DECL_SOURCE_LOCATION (t);
10328 switch (TREE_CODE (t))
10330 case TEMPLATE_DECL:
10332 /* We can get here when processing a member function template,
10333 member class template, or template template parameter. */
10334 tree decl = DECL_TEMPLATE_RESULT (t);
10335 tree spec;
10336 tree tmpl_args;
10337 tree full_args;
10339 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
10341 /* Template template parameter is treated here. */
10342 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10343 if (new_type == error_mark_node)
10344 RETURN (error_mark_node);
10345 /* If we get a real template back, return it. This can happen in
10346 the context of most_specialized_class. */
10347 if (TREE_CODE (new_type) == TEMPLATE_DECL)
10348 return new_type;
10350 r = copy_decl (t);
10351 DECL_CHAIN (r) = NULL_TREE;
10352 TREE_TYPE (r) = new_type;
10353 DECL_TEMPLATE_RESULT (r)
10354 = build_decl (DECL_SOURCE_LOCATION (decl),
10355 TYPE_DECL, DECL_NAME (decl), new_type);
10356 DECL_TEMPLATE_PARMS (r)
10357 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
10358 complain);
10359 TYPE_NAME (new_type) = r;
10360 break;
10363 /* We might already have an instance of this template.
10364 The ARGS are for the surrounding class type, so the
10365 full args contain the tsubst'd args for the context,
10366 plus the innermost args from the template decl. */
10367 tmpl_args = DECL_CLASS_TEMPLATE_P (t)
10368 ? CLASSTYPE_TI_ARGS (TREE_TYPE (t))
10369 : DECL_TI_ARGS (DECL_TEMPLATE_RESULT (t));
10370 /* Because this is a template, the arguments will still be
10371 dependent, even after substitution. If
10372 PROCESSING_TEMPLATE_DECL is not set, the dependency
10373 predicates will short-circuit. */
10374 ++processing_template_decl;
10375 full_args = tsubst_template_args (tmpl_args, args,
10376 complain, in_decl);
10377 --processing_template_decl;
10378 if (full_args == error_mark_node)
10379 RETURN (error_mark_node);
10381 /* If this is a default template template argument,
10382 tsubst might not have changed anything. */
10383 if (full_args == tmpl_args)
10384 RETURN (t);
10386 hash = hash_tmpl_and_args (t, full_args);
10387 spec = retrieve_specialization (t, full_args, hash);
10388 if (spec != NULL_TREE)
10390 r = spec;
10391 break;
10394 /* Make a new template decl. It will be similar to the
10395 original, but will record the current template arguments.
10396 We also create a new function declaration, which is just
10397 like the old one, but points to this new template, rather
10398 than the old one. */
10399 r = copy_decl (t);
10400 gcc_assert (DECL_LANG_SPECIFIC (r) != 0);
10401 DECL_CHAIN (r) = NULL_TREE;
10403 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
10405 if (TREE_CODE (decl) == TYPE_DECL
10406 && !TYPE_DECL_ALIAS_P (decl))
10408 tree new_type;
10409 ++processing_template_decl;
10410 new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10411 --processing_template_decl;
10412 if (new_type == error_mark_node)
10413 RETURN (error_mark_node);
10415 TREE_TYPE (r) = new_type;
10416 /* For a partial specialization, we need to keep pointing to
10417 the primary template. */
10418 if (!DECL_TEMPLATE_SPECIALIZATION (t))
10419 CLASSTYPE_TI_TEMPLATE (new_type) = r;
10420 DECL_TEMPLATE_RESULT (r) = TYPE_MAIN_DECL (new_type);
10421 DECL_TI_ARGS (r) = CLASSTYPE_TI_ARGS (new_type);
10422 DECL_CONTEXT (r) = TYPE_CONTEXT (new_type);
10424 else
10426 tree new_decl;
10427 ++processing_template_decl;
10428 new_decl = tsubst (decl, args, complain, in_decl);
10429 --processing_template_decl;
10430 if (new_decl == error_mark_node)
10431 RETURN (error_mark_node);
10433 DECL_TEMPLATE_RESULT (r) = new_decl;
10434 DECL_TI_TEMPLATE (new_decl) = r;
10435 TREE_TYPE (r) = TREE_TYPE (new_decl);
10436 DECL_TI_ARGS (r) = DECL_TI_ARGS (new_decl);
10437 DECL_CONTEXT (r) = DECL_CONTEXT (new_decl);
10440 SET_DECL_IMPLICIT_INSTANTIATION (r);
10441 DECL_TEMPLATE_INSTANTIATIONS (r) = NULL_TREE;
10442 DECL_TEMPLATE_SPECIALIZATIONS (r) = NULL_TREE;
10444 /* The template parameters for this new template are all the
10445 template parameters for the old template, except the
10446 outermost level of parameters. */
10447 DECL_TEMPLATE_PARMS (r)
10448 = tsubst_template_parms (DECL_TEMPLATE_PARMS (t), args,
10449 complain);
10451 if (PRIMARY_TEMPLATE_P (t))
10452 DECL_PRIMARY_TEMPLATE (r) = r;
10454 if (TREE_CODE (decl) != TYPE_DECL)
10455 /* Record this non-type partial instantiation. */
10456 register_specialization (r, t,
10457 DECL_TI_ARGS (DECL_TEMPLATE_RESULT (r)),
10458 false, hash);
10460 break;
10462 case FUNCTION_DECL:
10464 tree ctx;
10465 tree argvec = NULL_TREE;
10466 tree *friends;
10467 tree gen_tmpl;
10468 tree type;
10469 int member;
10470 int args_depth;
10471 int parms_depth;
10473 /* Nobody should be tsubst'ing into non-template functions. */
10474 gcc_assert (DECL_TEMPLATE_INFO (t) != NULL_TREE);
10476 if (TREE_CODE (DECL_TI_TEMPLATE (t)) == TEMPLATE_DECL)
10478 tree spec;
10479 bool dependent_p;
10481 /* If T is not dependent, just return it. We have to
10482 increment PROCESSING_TEMPLATE_DECL because
10483 value_dependent_expression_p assumes that nothing is
10484 dependent when PROCESSING_TEMPLATE_DECL is zero. */
10485 ++processing_template_decl;
10486 dependent_p = value_dependent_expression_p (t);
10487 --processing_template_decl;
10488 if (!dependent_p)
10489 RETURN (t);
10491 /* Calculate the most general template of which R is a
10492 specialization, and the complete set of arguments used to
10493 specialize R. */
10494 gen_tmpl = most_general_template (DECL_TI_TEMPLATE (t));
10495 argvec = tsubst_template_args (DECL_TI_ARGS
10496 (DECL_TEMPLATE_RESULT
10497 (DECL_TI_TEMPLATE (t))),
10498 args, complain, in_decl);
10499 if (argvec == error_mark_node)
10500 RETURN (error_mark_node);
10502 /* Check to see if we already have this specialization. */
10503 hash = hash_tmpl_and_args (gen_tmpl, argvec);
10504 spec = retrieve_specialization (gen_tmpl, argvec, hash);
10506 if (spec)
10508 r = spec;
10509 break;
10512 /* We can see more levels of arguments than parameters if
10513 there was a specialization of a member template, like
10514 this:
10516 template <class T> struct S { template <class U> void f(); }
10517 template <> template <class U> void S<int>::f(U);
10519 Here, we'll be substituting into the specialization,
10520 because that's where we can find the code we actually
10521 want to generate, but we'll have enough arguments for
10522 the most general template.
10524 We also deal with the peculiar case:
10526 template <class T> struct S {
10527 template <class U> friend void f();
10529 template <class U> void f() {}
10530 template S<int>;
10531 template void f<double>();
10533 Here, the ARGS for the instantiation of will be {int,
10534 double}. But, we only need as many ARGS as there are
10535 levels of template parameters in CODE_PATTERN. We are
10536 careful not to get fooled into reducing the ARGS in
10537 situations like:
10539 template <class T> struct S { template <class U> void f(U); }
10540 template <class T> template <> void S<T>::f(int) {}
10542 which we can spot because the pattern will be a
10543 specialization in this case. */
10544 args_depth = TMPL_ARGS_DEPTH (args);
10545 parms_depth =
10546 TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (DECL_TI_TEMPLATE (t)));
10547 if (args_depth > parms_depth
10548 && !DECL_TEMPLATE_SPECIALIZATION (t))
10549 args = get_innermost_template_args (args, parms_depth);
10551 else
10553 /* This special case arises when we have something like this:
10555 template <class T> struct S {
10556 friend void f<int>(int, double);
10559 Here, the DECL_TI_TEMPLATE for the friend declaration
10560 will be an IDENTIFIER_NODE. We are being called from
10561 tsubst_friend_function, and we want only to create a
10562 new decl (R) with appropriate types so that we can call
10563 determine_specialization. */
10564 gen_tmpl = NULL_TREE;
10567 if (DECL_CLASS_SCOPE_P (t))
10569 if (DECL_NAME (t) == constructor_name (DECL_CONTEXT (t)))
10570 member = 2;
10571 else
10572 member = 1;
10573 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args,
10574 complain, t, /*entering_scope=*/1);
10576 else
10578 member = 0;
10579 ctx = DECL_CONTEXT (t);
10581 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10582 if (type == error_mark_node)
10583 RETURN (error_mark_node);
10585 /* If we hit excessive deduction depth, the type is bogus even if
10586 it isn't error_mark_node, so don't build a decl. */
10587 if (excessive_deduction_depth)
10588 RETURN (error_mark_node);
10590 /* We do NOT check for matching decls pushed separately at this
10591 point, as they may not represent instantiations of this
10592 template, and in any case are considered separate under the
10593 discrete model. */
10594 r = copy_decl (t);
10595 DECL_USE_TEMPLATE (r) = 0;
10596 TREE_TYPE (r) = type;
10597 /* Clear out the mangled name and RTL for the instantiation. */
10598 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
10599 SET_DECL_RTL (r, NULL);
10600 /* Leave DECL_INITIAL set on deleted instantiations. */
10601 if (!DECL_DELETED_FN (r))
10602 DECL_INITIAL (r) = NULL_TREE;
10603 DECL_CONTEXT (r) = ctx;
10605 /* OpenMP UDRs have the only argument a reference to the declared
10606 type. We want to diagnose if the declared type is a reference,
10607 which is invalid, but as references to references are usually
10608 quietly merged, diagnose it here. */
10609 if (DECL_OMP_DECLARE_REDUCTION_P (t))
10611 tree argtype
10612 = TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (t))));
10613 argtype = tsubst (argtype, args, complain, in_decl);
10614 if (TREE_CODE (argtype) == REFERENCE_TYPE)
10615 error_at (DECL_SOURCE_LOCATION (t),
10616 "reference type %qT in "
10617 "%<#pragma omp declare reduction%>", argtype);
10618 if (strchr (IDENTIFIER_POINTER (DECL_NAME (t)), '~') == NULL)
10619 DECL_NAME (r) = omp_reduction_id (ERROR_MARK, DECL_NAME (t),
10620 argtype);
10623 if (member && DECL_CONV_FN_P (r))
10624 /* Type-conversion operator. Reconstruct the name, in
10625 case it's the name of one of the template's parameters. */
10626 DECL_NAME (r) = mangle_conv_op_name_for_type (TREE_TYPE (type));
10628 DECL_ARGUMENTS (r) = tsubst (DECL_ARGUMENTS (t), args,
10629 complain, t);
10630 DECL_RESULT (r) = NULL_TREE;
10632 TREE_STATIC (r) = 0;
10633 TREE_PUBLIC (r) = TREE_PUBLIC (t);
10634 DECL_EXTERNAL (r) = 1;
10635 /* If this is an instantiation of a function with internal
10636 linkage, we already know what object file linkage will be
10637 assigned to the instantiation. */
10638 DECL_INTERFACE_KNOWN (r) = !TREE_PUBLIC (r);
10639 DECL_DEFER_OUTPUT (r) = 0;
10640 DECL_CHAIN (r) = NULL_TREE;
10641 DECL_PENDING_INLINE_INFO (r) = 0;
10642 DECL_PENDING_INLINE_P (r) = 0;
10643 DECL_SAVED_TREE (r) = NULL_TREE;
10644 DECL_STRUCT_FUNCTION (r) = NULL;
10645 TREE_USED (r) = 0;
10646 /* We'll re-clone as appropriate in instantiate_template. */
10647 DECL_CLONED_FUNCTION (r) = NULL_TREE;
10649 /* If we aren't complaining now, return on error before we register
10650 the specialization so that we'll complain eventually. */
10651 if ((complain & tf_error) == 0
10652 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
10653 && !grok_op_properties (r, /*complain=*/false))
10654 RETURN (error_mark_node);
10656 /* Set up the DECL_TEMPLATE_INFO for R. There's no need to do
10657 this in the special friend case mentioned above where
10658 GEN_TMPL is NULL. */
10659 if (gen_tmpl)
10661 DECL_TEMPLATE_INFO (r)
10662 = build_template_info (gen_tmpl, argvec);
10663 SET_DECL_IMPLICIT_INSTANTIATION (r);
10665 tree new_r
10666 = register_specialization (r, gen_tmpl, argvec, false, hash);
10667 if (new_r != r)
10668 /* We instantiated this while substituting into
10669 the type earlier (template/friend54.C). */
10670 RETURN (new_r);
10672 /* We're not supposed to instantiate default arguments
10673 until they are called, for a template. But, for a
10674 declaration like:
10676 template <class T> void f ()
10677 { extern void g(int i = T()); }
10679 we should do the substitution when the template is
10680 instantiated. We handle the member function case in
10681 instantiate_class_template since the default arguments
10682 might refer to other members of the class. */
10683 if (!member
10684 && !PRIMARY_TEMPLATE_P (gen_tmpl)
10685 && !uses_template_parms (argvec))
10686 tsubst_default_arguments (r, complain);
10688 else
10689 DECL_TEMPLATE_INFO (r) = NULL_TREE;
10691 /* Copy the list of befriending classes. */
10692 for (friends = &DECL_BEFRIENDING_CLASSES (r);
10693 *friends;
10694 friends = &TREE_CHAIN (*friends))
10696 *friends = copy_node (*friends);
10697 TREE_VALUE (*friends) = tsubst (TREE_VALUE (*friends),
10698 args, complain,
10699 in_decl);
10702 if (DECL_CONSTRUCTOR_P (r) || DECL_DESTRUCTOR_P (r))
10704 maybe_retrofit_in_chrg (r);
10705 if (DECL_CONSTRUCTOR_P (r))
10706 grok_ctor_properties (ctx, r);
10707 if (DECL_INHERITED_CTOR_BASE (r))
10708 deduce_inheriting_ctor (r);
10709 /* If this is an instantiation of a member template, clone it.
10710 If it isn't, that'll be handled by
10711 clone_constructors_and_destructors. */
10712 if (PRIMARY_TEMPLATE_P (gen_tmpl))
10713 clone_function_decl (r, /*update_method_vec_p=*/0);
10715 else if ((complain & tf_error) != 0
10716 && IDENTIFIER_OPNAME_P (DECL_NAME (r))
10717 && !grok_op_properties (r, /*complain=*/true))
10718 RETURN (error_mark_node);
10720 if (DECL_FRIEND_P (t) && DECL_FRIEND_CONTEXT (t))
10721 SET_DECL_FRIEND_CONTEXT (r,
10722 tsubst (DECL_FRIEND_CONTEXT (t),
10723 args, complain, in_decl));
10725 /* Possibly limit visibility based on template args. */
10726 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
10727 if (DECL_VISIBILITY_SPECIFIED (t))
10729 DECL_VISIBILITY_SPECIFIED (r) = 0;
10730 DECL_ATTRIBUTES (r)
10731 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
10733 determine_visibility (r);
10734 if (DECL_DEFAULTED_OUTSIDE_CLASS_P (r)
10735 && !processing_template_decl)
10736 defaulted_late_check (r);
10738 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
10739 args, complain, in_decl);
10741 break;
10743 case PARM_DECL:
10745 tree type = NULL_TREE;
10746 int i, len = 1;
10747 tree expanded_types = NULL_TREE;
10748 tree prev_r = NULL_TREE;
10749 tree first_r = NULL_TREE;
10751 if (DECL_PACK_P (t))
10753 /* If there is a local specialization that isn't a
10754 parameter pack, it means that we're doing a "simple"
10755 substitution from inside tsubst_pack_expansion. Just
10756 return the local specialization (which will be a single
10757 parm). */
10758 tree spec = retrieve_local_specialization (t);
10759 if (spec
10760 && TREE_CODE (spec) == PARM_DECL
10761 && TREE_CODE (TREE_TYPE (spec)) != TYPE_PACK_EXPANSION)
10762 RETURN (spec);
10764 /* Expand the TYPE_PACK_EXPANSION that provides the types for
10765 the parameters in this function parameter pack. */
10766 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
10767 complain, in_decl);
10768 if (TREE_CODE (expanded_types) == TREE_VEC)
10770 len = TREE_VEC_LENGTH (expanded_types);
10772 /* Zero-length parameter packs are boring. Just substitute
10773 into the chain. */
10774 if (len == 0)
10775 RETURN (tsubst (TREE_CHAIN (t), args, complain,
10776 TREE_CHAIN (t)));
10778 else
10780 /* All we did was update the type. Make a note of that. */
10781 type = expanded_types;
10782 expanded_types = NULL_TREE;
10786 /* Loop through all of the parameters we'll build. When T is
10787 a function parameter pack, LEN is the number of expanded
10788 types in EXPANDED_TYPES; otherwise, LEN is 1. */
10789 r = NULL_TREE;
10790 for (i = 0; i < len; ++i)
10792 prev_r = r;
10793 r = copy_node (t);
10794 if (DECL_TEMPLATE_PARM_P (t))
10795 SET_DECL_TEMPLATE_PARM_P (r);
10797 if (expanded_types)
10798 /* We're on the Ith parameter of the function parameter
10799 pack. */
10801 /* Get the Ith type. */
10802 type = TREE_VEC_ELT (expanded_types, i);
10804 /* Rename the parameter to include the index. */
10805 DECL_NAME (r)
10806 = make_ith_pack_parameter_name (DECL_NAME (r), i);
10808 else if (!type)
10809 /* We're dealing with a normal parameter. */
10810 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10812 type = type_decays_to (type);
10813 TREE_TYPE (r) = type;
10814 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
10816 if (DECL_INITIAL (r))
10818 if (TREE_CODE (DECL_INITIAL (r)) != TEMPLATE_PARM_INDEX)
10819 DECL_INITIAL (r) = TREE_TYPE (r);
10820 else
10821 DECL_INITIAL (r) = tsubst (DECL_INITIAL (r), args,
10822 complain, in_decl);
10825 DECL_CONTEXT (r) = NULL_TREE;
10827 if (!DECL_TEMPLATE_PARM_P (r))
10828 DECL_ARG_TYPE (r) = type_passed_as (type);
10830 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
10831 args, complain, in_decl);
10833 /* Keep track of the first new parameter we
10834 generate. That's what will be returned to the
10835 caller. */
10836 if (!first_r)
10837 first_r = r;
10839 /* Build a proper chain of parameters when substituting
10840 into a function parameter pack. */
10841 if (prev_r)
10842 DECL_CHAIN (prev_r) = r;
10845 /* If cp_unevaluated_operand is set, we're just looking for a
10846 single dummy parameter, so don't keep going. */
10847 if (DECL_CHAIN (t) && !cp_unevaluated_operand)
10848 DECL_CHAIN (r) = tsubst (DECL_CHAIN (t), args,
10849 complain, DECL_CHAIN (t));
10851 /* FIRST_R contains the start of the chain we've built. */
10852 r = first_r;
10854 break;
10856 case FIELD_DECL:
10858 tree type = NULL_TREE;
10859 tree vec = NULL_TREE;
10860 tree expanded_types = NULL_TREE;
10861 int len = 1;
10863 if (PACK_EXPANSION_P (TREE_TYPE (t)))
10865 /* This field is a lambda capture pack. Return a TREE_VEC of
10866 the expanded fields to instantiate_class_template_1 and
10867 store them in the specializations hash table as a
10868 NONTYPE_ARGUMENT_PACK so that tsubst_copy can find them. */
10869 expanded_types = tsubst_pack_expansion (TREE_TYPE (t), args,
10870 complain, in_decl);
10871 if (TREE_CODE (expanded_types) == TREE_VEC)
10873 len = TREE_VEC_LENGTH (expanded_types);
10874 vec = make_tree_vec (len);
10876 else
10878 /* All we did was update the type. Make a note of that. */
10879 type = expanded_types;
10880 expanded_types = NULL_TREE;
10884 for (int i = 0; i < len; ++i)
10886 r = copy_decl (t);
10887 if (expanded_types)
10889 type = TREE_VEC_ELT (expanded_types, i);
10890 DECL_NAME (r)
10891 = make_ith_pack_parameter_name (DECL_NAME (r), i);
10893 else if (!type)
10894 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10896 if (type == error_mark_node)
10897 RETURN (error_mark_node);
10898 TREE_TYPE (r) = type;
10899 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
10901 if (DECL_C_BIT_FIELD (r))
10902 /* For bit-fields, DECL_INITIAL gives the number of bits. For
10903 non-bit-fields DECL_INITIAL is a non-static data member
10904 initializer, which gets deferred instantiation. */
10905 DECL_INITIAL (r)
10906 = tsubst_expr (DECL_INITIAL (t), args,
10907 complain, in_decl,
10908 /*integral_constant_expression_p=*/true);
10909 else if (DECL_INITIAL (t))
10911 /* Set up DECL_TEMPLATE_INFO so that we can get at the
10912 NSDMI in perform_member_init. Still set DECL_INITIAL
10913 so that we know there is one. */
10914 DECL_INITIAL (r) = void_zero_node;
10915 gcc_assert (DECL_LANG_SPECIFIC (r) == NULL);
10916 retrofit_lang_decl (r);
10917 DECL_TEMPLATE_INFO (r) = build_template_info (t, args);
10919 /* We don't have to set DECL_CONTEXT here; it is set by
10920 finish_member_declaration. */
10921 DECL_CHAIN (r) = NULL_TREE;
10923 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r), 0,
10924 args, complain, in_decl);
10926 if (vec)
10927 TREE_VEC_ELT (vec, i) = r;
10930 if (vec)
10932 r = vec;
10933 tree pack = make_node (NONTYPE_ARGUMENT_PACK);
10934 tree tpack = cxx_make_type (TYPE_ARGUMENT_PACK);
10935 SET_ARGUMENT_PACK_ARGS (pack, vec);
10936 SET_ARGUMENT_PACK_ARGS (tpack, expanded_types);
10937 TREE_TYPE (pack) = tpack;
10938 register_specialization (pack, t, args, false, 0);
10941 break;
10943 case USING_DECL:
10944 /* We reach here only for member using decls. We also need to check
10945 uses_template_parms because DECL_DEPENDENT_P is not set for a
10946 using-declaration that designates a member of the current
10947 instantiation (c++/53549). */
10948 if (DECL_DEPENDENT_P (t)
10949 || uses_template_parms (USING_DECL_SCOPE (t)))
10951 tree inst_scope = tsubst_copy (USING_DECL_SCOPE (t), args,
10952 complain, in_decl);
10953 tree name = tsubst_copy (DECL_NAME (t), args, complain, in_decl);
10954 r = do_class_using_decl (inst_scope, name);
10955 if (!r)
10956 r = error_mark_node;
10957 else
10959 TREE_PROTECTED (r) = TREE_PROTECTED (t);
10960 TREE_PRIVATE (r) = TREE_PRIVATE (t);
10963 else
10965 r = copy_node (t);
10966 DECL_CHAIN (r) = NULL_TREE;
10968 break;
10970 case TYPE_DECL:
10971 case VAR_DECL:
10973 tree argvec = NULL_TREE;
10974 tree gen_tmpl = NULL_TREE;
10975 tree spec;
10976 tree tmpl = NULL_TREE;
10977 tree ctx;
10978 tree type = NULL_TREE;
10979 bool local_p;
10981 if (TREE_TYPE (t) == error_mark_node)
10982 RETURN (error_mark_node);
10984 if (TREE_CODE (t) == TYPE_DECL
10985 && t == TYPE_MAIN_DECL (TREE_TYPE (t)))
10987 /* If this is the canonical decl, we don't have to
10988 mess with instantiations, and often we can't (for
10989 typename, template type parms and such). Note that
10990 TYPE_NAME is not correct for the above test if
10991 we've copied the type for a typedef. */
10992 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
10993 if (type == error_mark_node)
10994 RETURN (error_mark_node);
10995 r = TYPE_NAME (type);
10996 break;
10999 /* Check to see if we already have the specialization we
11000 need. */
11001 spec = NULL_TREE;
11002 if (DECL_CLASS_SCOPE_P (t) || DECL_NAMESPACE_SCOPE_P (t))
11004 /* T is a static data member or namespace-scope entity.
11005 We have to substitute into namespace-scope variables
11006 (even though such entities are never templates) because
11007 of cases like:
11009 template <class T> void f() { extern T t; }
11011 where the entity referenced is not known until
11012 instantiation time. */
11013 local_p = false;
11014 ctx = DECL_CONTEXT (t);
11015 if (DECL_CLASS_SCOPE_P (t))
11017 ctx = tsubst_aggr_type (ctx, args,
11018 complain,
11019 in_decl, /*entering_scope=*/1);
11020 /* If CTX is unchanged, then T is in fact the
11021 specialization we want. That situation occurs when
11022 referencing a static data member within in its own
11023 class. We can use pointer equality, rather than
11024 same_type_p, because DECL_CONTEXT is always
11025 canonical... */
11026 if (ctx == DECL_CONTEXT (t)
11027 && (TREE_CODE (t) != TYPE_DECL
11028 /* ... unless T is a member template; in which
11029 case our caller can be willing to create a
11030 specialization of that template represented
11031 by T. */
11032 || !(DECL_TI_TEMPLATE (t)
11033 && DECL_MEMBER_TEMPLATE_P (DECL_TI_TEMPLATE (t)))))
11034 spec = t;
11037 if (!spec)
11039 tmpl = DECL_TI_TEMPLATE (t);
11040 gen_tmpl = most_general_template (tmpl);
11041 argvec = tsubst (DECL_TI_ARGS (t), args, complain, in_decl);
11042 if (argvec == error_mark_node)
11043 RETURN (error_mark_node);
11044 hash = hash_tmpl_and_args (gen_tmpl, argvec);
11045 spec = retrieve_specialization (gen_tmpl, argvec, hash);
11048 else
11050 /* A local variable. */
11051 local_p = true;
11052 /* Subsequent calls to pushdecl will fill this in. */
11053 ctx = NULL_TREE;
11054 spec = retrieve_local_specialization (t);
11056 /* If we already have the specialization we need, there is
11057 nothing more to do. */
11058 if (spec)
11060 r = spec;
11061 break;
11064 /* Create a new node for the specialization we need. */
11065 r = copy_decl (t);
11066 if (type == NULL_TREE)
11068 if (is_typedef_decl (t))
11069 type = DECL_ORIGINAL_TYPE (t);
11070 else
11071 type = TREE_TYPE (t);
11072 if (VAR_P (t)
11073 && VAR_HAD_UNKNOWN_BOUND (t)
11074 && type != error_mark_node)
11075 type = strip_array_domain (type);
11076 type = tsubst (type, args, complain, in_decl);
11078 if (VAR_P (r))
11080 /* Even if the original location is out of scope, the
11081 newly substituted one is not. */
11082 DECL_DEAD_FOR_LOCAL (r) = 0;
11083 DECL_INITIALIZED_P (r) = 0;
11084 DECL_TEMPLATE_INSTANTIATED (r) = 0;
11085 if (type == error_mark_node)
11086 RETURN (error_mark_node);
11087 if (TREE_CODE (type) == FUNCTION_TYPE)
11089 /* It may seem that this case cannot occur, since:
11091 typedef void f();
11092 void g() { f x; }
11094 declares a function, not a variable. However:
11096 typedef void f();
11097 template <typename T> void g() { T t; }
11098 template void g<f>();
11100 is an attempt to declare a variable with function
11101 type. */
11102 error ("variable %qD has function type",
11103 /* R is not yet sufficiently initialized, so we
11104 just use its name. */
11105 DECL_NAME (r));
11106 RETURN (error_mark_node);
11108 type = complete_type (type);
11109 /* Wait until cp_finish_decl to set this again, to handle
11110 circular dependency (template/instantiate6.C). */
11111 DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (r) = 0;
11112 type = check_var_type (DECL_NAME (r), type);
11114 if (DECL_HAS_VALUE_EXPR_P (t))
11116 tree ve = DECL_VALUE_EXPR (t);
11117 ve = tsubst_expr (ve, args, complain, in_decl,
11118 /*constant_expression_p=*/false);
11119 if (REFERENCE_REF_P (ve))
11121 gcc_assert (TREE_CODE (type) == REFERENCE_TYPE);
11122 ve = TREE_OPERAND (ve, 0);
11124 SET_DECL_VALUE_EXPR (r, ve);
11127 else if (DECL_SELF_REFERENCE_P (t))
11128 SET_DECL_SELF_REFERENCE_P (r);
11129 TREE_TYPE (r) = type;
11130 cp_apply_type_quals_to_decl (cp_type_quals (type), r);
11131 DECL_CONTEXT (r) = ctx;
11132 /* Clear out the mangled name and RTL for the instantiation. */
11133 SET_DECL_ASSEMBLER_NAME (r, NULL_TREE);
11134 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
11135 SET_DECL_RTL (r, NULL);
11136 /* The initializer must not be expanded until it is required;
11137 see [temp.inst]. */
11138 DECL_INITIAL (r) = NULL_TREE;
11139 if (CODE_CONTAINS_STRUCT (TREE_CODE (t), TS_DECL_WRTL))
11140 SET_DECL_RTL (r, NULL);
11141 DECL_SIZE (r) = DECL_SIZE_UNIT (r) = 0;
11142 if (VAR_P (r))
11144 /* Possibly limit visibility based on template args. */
11145 DECL_VISIBILITY (r) = VISIBILITY_DEFAULT;
11146 if (DECL_VISIBILITY_SPECIFIED (t))
11148 DECL_VISIBILITY_SPECIFIED (r) = 0;
11149 DECL_ATTRIBUTES (r)
11150 = remove_attribute ("visibility", DECL_ATTRIBUTES (r));
11152 determine_visibility (r);
11155 if (!local_p)
11157 /* A static data member declaration is always marked
11158 external when it is declared in-class, even if an
11159 initializer is present. We mimic the non-template
11160 processing here. */
11161 DECL_EXTERNAL (r) = 1;
11163 register_specialization (r, gen_tmpl, argvec, false, hash);
11164 DECL_TEMPLATE_INFO (r) = build_template_info (tmpl, argvec);
11165 SET_DECL_IMPLICIT_INSTANTIATION (r);
11167 else if (!cp_unevaluated_operand)
11168 register_local_specialization (r, t);
11170 DECL_CHAIN (r) = NULL_TREE;
11172 apply_late_template_attributes (&r, DECL_ATTRIBUTES (r),
11173 /*flags=*/0,
11174 args, complain, in_decl);
11176 /* Preserve a typedef that names a type. */
11177 if (is_typedef_decl (r))
11179 DECL_ORIGINAL_TYPE (r) = NULL_TREE;
11180 set_underlying_type (r);
11183 layout_decl (r, 0);
11185 break;
11187 default:
11188 gcc_unreachable ();
11190 #undef RETURN
11192 out:
11193 /* Restore the file and line information. */
11194 input_location = saved_loc;
11196 return r;
11199 /* Substitute into the ARG_TYPES of a function type.
11200 If END is a TREE_CHAIN, leave it and any following types
11201 un-substituted. */
11203 static tree
11204 tsubst_arg_types (tree arg_types,
11205 tree args,
11206 tree end,
11207 tsubst_flags_t complain,
11208 tree in_decl)
11210 tree remaining_arg_types;
11211 tree type = NULL_TREE;
11212 int i = 1;
11213 tree expanded_args = NULL_TREE;
11214 tree default_arg;
11216 if (!arg_types || arg_types == void_list_node || arg_types == end)
11217 return arg_types;
11219 remaining_arg_types = tsubst_arg_types (TREE_CHAIN (arg_types),
11220 args, end, complain, in_decl);
11221 if (remaining_arg_types == error_mark_node)
11222 return error_mark_node;
11224 if (PACK_EXPANSION_P (TREE_VALUE (arg_types)))
11226 /* For a pack expansion, perform substitution on the
11227 entire expression. Later on, we'll handle the arguments
11228 one-by-one. */
11229 expanded_args = tsubst_pack_expansion (TREE_VALUE (arg_types),
11230 args, complain, in_decl);
11232 if (TREE_CODE (expanded_args) == TREE_VEC)
11233 /* So that we'll spin through the parameters, one by one. */
11234 i = TREE_VEC_LENGTH (expanded_args);
11235 else
11237 /* We only partially substituted into the parameter
11238 pack. Our type is TYPE_PACK_EXPANSION. */
11239 type = expanded_args;
11240 expanded_args = NULL_TREE;
11244 while (i > 0) {
11245 --i;
11247 if (expanded_args)
11248 type = TREE_VEC_ELT (expanded_args, i);
11249 else if (!type)
11250 type = tsubst (TREE_VALUE (arg_types), args, complain, in_decl);
11252 if (type == error_mark_node)
11253 return error_mark_node;
11254 if (VOID_TYPE_P (type))
11256 if (complain & tf_error)
11258 error ("invalid parameter type %qT", type);
11259 if (in_decl)
11260 error ("in declaration %q+D", in_decl);
11262 return error_mark_node;
11264 /* DR 657. */
11265 if (abstract_virtuals_error_sfinae (ACU_PARM, type, complain))
11266 return error_mark_node;
11268 /* Do array-to-pointer, function-to-pointer conversion, and ignore
11269 top-level qualifiers as required. */
11270 type = cv_unqualified (type_decays_to (type));
11272 /* We do not substitute into default arguments here. The standard
11273 mandates that they be instantiated only when needed, which is
11274 done in build_over_call. */
11275 default_arg = TREE_PURPOSE (arg_types);
11277 if (default_arg && TREE_CODE (default_arg) == DEFAULT_ARG)
11279 /* We've instantiated a template before its default arguments
11280 have been parsed. This can happen for a nested template
11281 class, and is not an error unless we require the default
11282 argument in a call of this function. */
11283 remaining_arg_types =
11284 tree_cons (default_arg, type, remaining_arg_types);
11285 vec_safe_push (DEFARG_INSTANTIATIONS(default_arg), remaining_arg_types);
11287 else
11288 remaining_arg_types =
11289 hash_tree_cons (default_arg, type, remaining_arg_types);
11292 return remaining_arg_types;
11295 /* Substitute into a FUNCTION_TYPE or METHOD_TYPE. This routine does
11296 *not* handle the exception-specification for FNTYPE, because the
11297 initial substitution of explicitly provided template parameters
11298 during argument deduction forbids substitution into the
11299 exception-specification:
11301 [temp.deduct]
11303 All references in the function type of the function template to the
11304 corresponding template parameters are replaced by the specified tem-
11305 plate argument values. If a substitution in a template parameter or
11306 in the function type of the function template results in an invalid
11307 type, type deduction fails. [Note: The equivalent substitution in
11308 exception specifications is done only when the function is instanti-
11309 ated, at which point a program is ill-formed if the substitution
11310 results in an invalid type.] */
11312 static tree
11313 tsubst_function_type (tree t,
11314 tree args,
11315 tsubst_flags_t complain,
11316 tree in_decl)
11318 tree return_type;
11319 tree arg_types;
11320 tree fntype;
11322 /* The TYPE_CONTEXT is not used for function/method types. */
11323 gcc_assert (TYPE_CONTEXT (t) == NULL_TREE);
11325 /* Substitute the return type. */
11326 return_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
11327 if (return_type == error_mark_node)
11328 return error_mark_node;
11329 /* DR 486 clarifies that creation of a function type with an
11330 invalid return type is a deduction failure. */
11331 if (TREE_CODE (return_type) == ARRAY_TYPE
11332 || TREE_CODE (return_type) == FUNCTION_TYPE)
11334 if (complain & tf_error)
11336 if (TREE_CODE (return_type) == ARRAY_TYPE)
11337 error ("function returning an array");
11338 else
11339 error ("function returning a function");
11341 return error_mark_node;
11343 /* And DR 657. */
11344 if (abstract_virtuals_error_sfinae (ACU_RETURN, return_type, complain))
11345 return error_mark_node;
11347 /* Substitute the argument types. */
11348 arg_types = tsubst_arg_types (TYPE_ARG_TYPES (t), args, NULL_TREE,
11349 complain, in_decl);
11350 if (arg_types == error_mark_node)
11351 return error_mark_node;
11353 /* Construct a new type node and return it. */
11354 if (TREE_CODE (t) == FUNCTION_TYPE)
11356 fntype = build_function_type (return_type, arg_types);
11357 fntype = apply_memfn_quals (fntype,
11358 type_memfn_quals (t),
11359 type_memfn_rqual (t));
11361 else
11363 tree r = TREE_TYPE (TREE_VALUE (arg_types));
11364 /* Don't pick up extra function qualifiers from the basetype. */
11365 r = cp_build_qualified_type_real (r, type_memfn_quals (t), complain);
11366 if (! MAYBE_CLASS_TYPE_P (r))
11368 /* [temp.deduct]
11370 Type deduction may fail for any of the following
11371 reasons:
11373 -- Attempting to create "pointer to member of T" when T
11374 is not a class type. */
11375 if (complain & tf_error)
11376 error ("creating pointer to member function of non-class type %qT",
11378 return error_mark_node;
11381 fntype = build_method_type_directly (r, return_type,
11382 TREE_CHAIN (arg_types));
11383 fntype = build_ref_qualified_type (fntype, type_memfn_rqual (t));
11385 fntype = cp_build_type_attribute_variant (fntype, TYPE_ATTRIBUTES (t));
11387 return fntype;
11390 /* FNTYPE is a FUNCTION_TYPE or METHOD_TYPE. Substitute the template
11391 ARGS into that specification, and return the substituted
11392 specification. If there is no specification, return NULL_TREE. */
11394 static tree
11395 tsubst_exception_specification (tree fntype,
11396 tree args,
11397 tsubst_flags_t complain,
11398 tree in_decl,
11399 bool defer_ok)
11401 tree specs;
11402 tree new_specs;
11404 specs = TYPE_RAISES_EXCEPTIONS (fntype);
11405 new_specs = NULL_TREE;
11406 if (specs && TREE_PURPOSE (specs))
11408 /* A noexcept-specifier. */
11409 tree expr = TREE_PURPOSE (specs);
11410 if (TREE_CODE (expr) == INTEGER_CST)
11411 new_specs = expr;
11412 else if (defer_ok)
11414 /* Defer instantiation of noexcept-specifiers to avoid
11415 excessive instantiations (c++/49107). */
11416 new_specs = make_node (DEFERRED_NOEXCEPT);
11417 if (DEFERRED_NOEXCEPT_SPEC_P (specs))
11419 /* We already partially instantiated this member template,
11420 so combine the new args with the old. */
11421 DEFERRED_NOEXCEPT_PATTERN (new_specs)
11422 = DEFERRED_NOEXCEPT_PATTERN (expr);
11423 DEFERRED_NOEXCEPT_ARGS (new_specs)
11424 = add_to_template_args (DEFERRED_NOEXCEPT_ARGS (expr), args);
11426 else
11428 DEFERRED_NOEXCEPT_PATTERN (new_specs) = expr;
11429 DEFERRED_NOEXCEPT_ARGS (new_specs) = args;
11432 else
11433 new_specs = tsubst_copy_and_build
11434 (expr, args, complain, in_decl, /*function_p=*/false,
11435 /*integral_constant_expression_p=*/true);
11436 new_specs = build_noexcept_spec (new_specs, complain);
11438 else if (specs)
11440 if (! TREE_VALUE (specs))
11441 new_specs = specs;
11442 else
11443 while (specs)
11445 tree spec;
11446 int i, len = 1;
11447 tree expanded_specs = NULL_TREE;
11449 if (PACK_EXPANSION_P (TREE_VALUE (specs)))
11451 /* Expand the pack expansion type. */
11452 expanded_specs = tsubst_pack_expansion (TREE_VALUE (specs),
11453 args, complain,
11454 in_decl);
11456 if (expanded_specs == error_mark_node)
11457 return error_mark_node;
11458 else if (TREE_CODE (expanded_specs) == TREE_VEC)
11459 len = TREE_VEC_LENGTH (expanded_specs);
11460 else
11462 /* We're substituting into a member template, so
11463 we got a TYPE_PACK_EXPANSION back. Add that
11464 expansion and move on. */
11465 gcc_assert (TREE_CODE (expanded_specs)
11466 == TYPE_PACK_EXPANSION);
11467 new_specs = add_exception_specifier (new_specs,
11468 expanded_specs,
11469 complain);
11470 specs = TREE_CHAIN (specs);
11471 continue;
11475 for (i = 0; i < len; ++i)
11477 if (expanded_specs)
11478 spec = TREE_VEC_ELT (expanded_specs, i);
11479 else
11480 spec = tsubst (TREE_VALUE (specs), args, complain, in_decl);
11481 if (spec == error_mark_node)
11482 return spec;
11483 new_specs = add_exception_specifier (new_specs, spec,
11484 complain);
11487 specs = TREE_CHAIN (specs);
11490 return new_specs;
11493 /* Take the tree structure T and replace template parameters used
11494 therein with the argument vector ARGS. IN_DECL is an associated
11495 decl for diagnostics. If an error occurs, returns ERROR_MARK_NODE.
11496 Issue error and warning messages under control of COMPLAIN. Note
11497 that we must be relatively non-tolerant of extensions here, in
11498 order to preserve conformance; if we allow substitutions that
11499 should not be allowed, we may allow argument deductions that should
11500 not succeed, and therefore report ambiguous overload situations
11501 where there are none. In theory, we could allow the substitution,
11502 but indicate that it should have failed, and allow our caller to
11503 make sure that the right thing happens, but we don't try to do this
11504 yet.
11506 This function is used for dealing with types, decls and the like;
11507 for expressions, use tsubst_expr or tsubst_copy. */
11509 tree
11510 tsubst (tree t, tree args, tsubst_flags_t complain, tree in_decl)
11512 enum tree_code code;
11513 tree type, r = NULL_TREE;
11515 if (t == NULL_TREE || t == error_mark_node
11516 || t == integer_type_node
11517 || t == void_type_node
11518 || t == char_type_node
11519 || t == unknown_type_node
11520 || TREE_CODE (t) == NAMESPACE_DECL
11521 || TREE_CODE (t) == TRANSLATION_UNIT_DECL)
11522 return t;
11524 if (DECL_P (t))
11525 return tsubst_decl (t, args, complain);
11527 if (args == NULL_TREE)
11528 return t;
11530 code = TREE_CODE (t);
11532 if (code == IDENTIFIER_NODE)
11533 type = IDENTIFIER_TYPE_VALUE (t);
11534 else
11535 type = TREE_TYPE (t);
11537 gcc_assert (type != unknown_type_node);
11539 /* Reuse typedefs. We need to do this to handle dependent attributes,
11540 such as attribute aligned. */
11541 if (TYPE_P (t)
11542 && typedef_variant_p (t))
11544 tree decl = TYPE_NAME (t);
11546 if (alias_template_specialization_p (t))
11548 /* DECL represents an alias template and we want to
11549 instantiate it. */
11550 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
11551 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
11552 r = instantiate_alias_template (tmpl, gen_args, complain);
11554 else if (DECL_CLASS_SCOPE_P (decl)
11555 && CLASSTYPE_TEMPLATE_INFO (DECL_CONTEXT (decl))
11556 && uses_template_parms (DECL_CONTEXT (decl)))
11558 tree tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
11559 tree gen_args = tsubst (DECL_TI_ARGS (decl), args, complain, in_decl);
11560 r = retrieve_specialization (tmpl, gen_args, 0);
11562 else if (DECL_FUNCTION_SCOPE_P (decl)
11563 && DECL_TEMPLATE_INFO (DECL_CONTEXT (decl))
11564 && uses_template_parms (DECL_TI_ARGS (DECL_CONTEXT (decl))))
11565 r = retrieve_local_specialization (decl);
11566 else
11567 /* The typedef is from a non-template context. */
11568 return t;
11570 if (r)
11572 r = TREE_TYPE (r);
11573 r = cp_build_qualified_type_real
11574 (r, cp_type_quals (t) | cp_type_quals (r),
11575 complain | tf_ignore_bad_quals);
11576 return r;
11578 else
11580 /* We don't have an instantiation yet, so drop the typedef. */
11581 int quals = cp_type_quals (t);
11582 t = DECL_ORIGINAL_TYPE (decl);
11583 t = cp_build_qualified_type_real (t, quals,
11584 complain | tf_ignore_bad_quals);
11588 if (type
11589 && code != TYPENAME_TYPE
11590 && code != TEMPLATE_TYPE_PARM
11591 && code != IDENTIFIER_NODE
11592 && code != FUNCTION_TYPE
11593 && code != METHOD_TYPE)
11594 type = tsubst (type, args, complain, in_decl);
11595 if (type == error_mark_node)
11596 return error_mark_node;
11598 switch (code)
11600 case RECORD_TYPE:
11601 case UNION_TYPE:
11602 case ENUMERAL_TYPE:
11603 return tsubst_aggr_type (t, args, complain, in_decl,
11604 /*entering_scope=*/0);
11606 case ERROR_MARK:
11607 case IDENTIFIER_NODE:
11608 case VOID_TYPE:
11609 case REAL_TYPE:
11610 case COMPLEX_TYPE:
11611 case VECTOR_TYPE:
11612 case BOOLEAN_TYPE:
11613 case NULLPTR_TYPE:
11614 case LANG_TYPE:
11615 return t;
11617 case INTEGER_TYPE:
11618 if (t == integer_type_node)
11619 return t;
11621 if (TREE_CODE (TYPE_MIN_VALUE (t)) == INTEGER_CST
11622 && TREE_CODE (TYPE_MAX_VALUE (t)) == INTEGER_CST)
11623 return t;
11626 tree max, omax = TREE_OPERAND (TYPE_MAX_VALUE (t), 0);
11628 max = tsubst_expr (omax, args, complain, in_decl,
11629 /*integral_constant_expression_p=*/false);
11631 /* Fix up type of the magic NOP_EXPR with TREE_SIDE_EFFECTS if
11632 needed. */
11633 if (TREE_CODE (max) == NOP_EXPR
11634 && TREE_SIDE_EFFECTS (omax)
11635 && !TREE_TYPE (max))
11636 TREE_TYPE (max) = TREE_TYPE (TREE_OPERAND (max, 0));
11638 /* If we're in a partial instantiation, preserve the magic NOP_EXPR
11639 with TREE_SIDE_EFFECTS that indicates this is not an integral
11640 constant expression. */
11641 if (processing_template_decl
11642 && TREE_SIDE_EFFECTS (omax) && TREE_CODE (omax) == NOP_EXPR)
11644 gcc_assert (TREE_CODE (max) == NOP_EXPR);
11645 TREE_SIDE_EFFECTS (max) = 1;
11648 return compute_array_index_type (NULL_TREE, max, complain);
11651 case TEMPLATE_TYPE_PARM:
11652 case TEMPLATE_TEMPLATE_PARM:
11653 case BOUND_TEMPLATE_TEMPLATE_PARM:
11654 case TEMPLATE_PARM_INDEX:
11656 int idx;
11657 int level;
11658 int levels;
11659 tree arg = NULL_TREE;
11661 r = NULL_TREE;
11663 gcc_assert (TREE_VEC_LENGTH (args) > 0);
11664 template_parm_level_and_index (t, &level, &idx);
11666 levels = TMPL_ARGS_DEPTH (args);
11667 if (level <= levels)
11669 arg = TMPL_ARG (args, level, idx);
11671 if (arg && TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
11673 /* See through ARGUMENT_PACK_SELECT arguments. */
11674 arg = ARGUMENT_PACK_SELECT_ARG (arg);
11675 /* If the selected argument is an expansion E, that most
11676 likely means we were called from
11677 gen_elem_of_pack_expansion_instantiation during the
11678 substituting of pack an argument pack (which Ith
11679 element is a pack expansion, where I is
11680 ARGUMENT_PACK_SELECT_INDEX) into a pack expansion.
11681 In this case, the Ith element resulting from this
11682 substituting is going to be a pack expansion, which
11683 pattern is the pattern of E. Let's return the
11684 pattern of E, and
11685 gen_elem_of_pack_expansion_instantiation will
11686 build the resulting pack expansion from it. */
11687 if (PACK_EXPANSION_P (arg))
11688 arg = PACK_EXPANSION_PATTERN (arg);
11692 if (arg == error_mark_node)
11693 return error_mark_node;
11694 else if (arg != NULL_TREE)
11696 if (ARGUMENT_PACK_P (arg))
11697 /* If ARG is an argument pack, we don't actually want to
11698 perform a substitution here, because substitutions
11699 for argument packs are only done
11700 element-by-element. We can get to this point when
11701 substituting the type of a non-type template
11702 parameter pack, when that type actually contains
11703 template parameter packs from an outer template, e.g.,
11705 template<typename... Types> struct A {
11706 template<Types... Values> struct B { };
11707 }; */
11708 return t;
11710 if (code == TEMPLATE_TYPE_PARM)
11712 int quals;
11713 gcc_assert (TYPE_P (arg));
11715 quals = cp_type_quals (arg) | cp_type_quals (t);
11717 return cp_build_qualified_type_real
11718 (arg, quals, complain | tf_ignore_bad_quals);
11720 else if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
11722 /* We are processing a type constructed from a
11723 template template parameter. */
11724 tree argvec = tsubst (TYPE_TI_ARGS (t),
11725 args, complain, in_decl);
11726 if (argvec == error_mark_node)
11727 return error_mark_node;
11729 gcc_assert (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM
11730 || TREE_CODE (arg) == TEMPLATE_DECL
11731 || TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE);
11733 if (TREE_CODE (arg) == UNBOUND_CLASS_TEMPLATE)
11734 /* Consider this code:
11736 template <template <class> class Template>
11737 struct Internal {
11738 template <class Arg> using Bind = Template<Arg>;
11741 template <template <class> class Template, class Arg>
11742 using Instantiate = Template<Arg>; //#0
11744 template <template <class> class Template,
11745 class Argument>
11746 using Bind =
11747 Instantiate<Internal<Template>::template Bind,
11748 Argument>; //#1
11750 When #1 is parsed, the
11751 BOUND_TEMPLATE_TEMPLATE_PARM representing the
11752 parameter `Template' in #0 matches the
11753 UNBOUND_CLASS_TEMPLATE representing the argument
11754 `Internal<Template>::template Bind'; We then want
11755 to assemble the type `Bind<Argument>' that can't
11756 be fully created right now, because
11757 `Internal<Template>' not being complete, the Bind
11758 template cannot be looked up in that context. So
11759 we need to "store" `Bind<Argument>' for later
11760 when the context of Bind becomes complete. Let's
11761 store that in a TYPENAME_TYPE. */
11762 return make_typename_type (TYPE_CONTEXT (arg),
11763 build_nt (TEMPLATE_ID_EXPR,
11764 TYPE_IDENTIFIER (arg),
11765 argvec),
11766 typename_type,
11767 complain);
11769 /* We can get a TEMPLATE_TEMPLATE_PARM here when we
11770 are resolving nested-types in the signature of a
11771 member function templates. Otherwise ARG is a
11772 TEMPLATE_DECL and is the real template to be
11773 instantiated. */
11774 if (TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
11775 arg = TYPE_NAME (arg);
11777 r = lookup_template_class (arg,
11778 argvec, in_decl,
11779 DECL_CONTEXT (arg),
11780 /*entering_scope=*/0,
11781 complain);
11782 return cp_build_qualified_type_real
11783 (r, cp_type_quals (t) | cp_type_quals (r), complain);
11785 else
11786 /* TEMPLATE_TEMPLATE_PARM or TEMPLATE_PARM_INDEX. */
11787 return convert_from_reference (unshare_expr (arg));
11790 if (level == 1)
11791 /* This can happen during the attempted tsubst'ing in
11792 unify. This means that we don't yet have any information
11793 about the template parameter in question. */
11794 return t;
11796 /* Early in template argument deduction substitution, we don't
11797 want to reduce the level of 'auto', or it will be confused
11798 with a normal template parm in subsequent deduction. */
11799 if (is_auto (t) && (complain & tf_partial))
11800 return t;
11802 /* If we get here, we must have been looking at a parm for a
11803 more deeply nested template. Make a new version of this
11804 template parameter, but with a lower level. */
11805 switch (code)
11807 case TEMPLATE_TYPE_PARM:
11808 case TEMPLATE_TEMPLATE_PARM:
11809 case BOUND_TEMPLATE_TEMPLATE_PARM:
11810 if (cp_type_quals (t))
11812 r = tsubst (TYPE_MAIN_VARIANT (t), args, complain, in_decl);
11813 r = cp_build_qualified_type_real
11814 (r, cp_type_quals (t),
11815 complain | (code == TEMPLATE_TYPE_PARM
11816 ? tf_ignore_bad_quals : 0));
11818 else
11820 r = copy_type (t);
11821 TEMPLATE_TYPE_PARM_INDEX (r)
11822 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (t),
11823 r, levels, args, complain);
11824 TYPE_STUB_DECL (r) = TYPE_NAME (r) = TEMPLATE_TYPE_DECL (r);
11825 TYPE_MAIN_VARIANT (r) = r;
11826 TYPE_POINTER_TO (r) = NULL_TREE;
11827 TYPE_REFERENCE_TO (r) = NULL_TREE;
11829 if (TREE_CODE (r) == TEMPLATE_TEMPLATE_PARM)
11830 /* We have reduced the level of the template
11831 template parameter, but not the levels of its
11832 template parameters, so canonical_type_parameter
11833 will not be able to find the canonical template
11834 template parameter for this level. Thus, we
11835 require structural equality checking to compare
11836 TEMPLATE_TEMPLATE_PARMs. */
11837 SET_TYPE_STRUCTURAL_EQUALITY (r);
11838 else if (TYPE_STRUCTURAL_EQUALITY_P (t))
11839 SET_TYPE_STRUCTURAL_EQUALITY (r);
11840 else
11841 TYPE_CANONICAL (r) = canonical_type_parameter (r);
11843 if (code == BOUND_TEMPLATE_TEMPLATE_PARM)
11845 tree argvec = tsubst (TYPE_TI_ARGS (t), args,
11846 complain, in_decl);
11847 if (argvec == error_mark_node)
11848 return error_mark_node;
11850 TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (r)
11851 = build_template_info (TYPE_TI_TEMPLATE (t), argvec);
11854 break;
11856 case TEMPLATE_PARM_INDEX:
11857 r = reduce_template_parm_level (t, type, levels, args, complain);
11858 break;
11860 default:
11861 gcc_unreachable ();
11864 return r;
11867 case TREE_LIST:
11869 tree purpose, value, chain;
11871 if (t == void_list_node)
11872 return t;
11874 purpose = TREE_PURPOSE (t);
11875 if (purpose)
11877 purpose = tsubst (purpose, args, complain, in_decl);
11878 if (purpose == error_mark_node)
11879 return error_mark_node;
11881 value = TREE_VALUE (t);
11882 if (value)
11884 value = tsubst (value, args, complain, in_decl);
11885 if (value == error_mark_node)
11886 return error_mark_node;
11888 chain = TREE_CHAIN (t);
11889 if (chain && chain != void_type_node)
11891 chain = tsubst (chain, args, complain, in_decl);
11892 if (chain == error_mark_node)
11893 return error_mark_node;
11895 if (purpose == TREE_PURPOSE (t)
11896 && value == TREE_VALUE (t)
11897 && chain == TREE_CHAIN (t))
11898 return t;
11899 return hash_tree_cons (purpose, value, chain);
11902 case TREE_BINFO:
11903 /* We should never be tsubsting a binfo. */
11904 gcc_unreachable ();
11906 case TREE_VEC:
11907 /* A vector of template arguments. */
11908 gcc_assert (!type);
11909 return tsubst_template_args (t, args, complain, in_decl);
11911 case POINTER_TYPE:
11912 case REFERENCE_TYPE:
11914 if (type == TREE_TYPE (t) && TREE_CODE (type) != METHOD_TYPE)
11915 return t;
11917 /* [temp.deduct]
11919 Type deduction may fail for any of the following
11920 reasons:
11922 -- Attempting to create a pointer to reference type.
11923 -- Attempting to create a reference to a reference type or
11924 a reference to void.
11926 Core issue 106 says that creating a reference to a reference
11927 during instantiation is no longer a cause for failure. We
11928 only enforce this check in strict C++98 mode. */
11929 if ((TREE_CODE (type) == REFERENCE_TYPE
11930 && (((cxx_dialect == cxx98) && flag_iso) || code != REFERENCE_TYPE))
11931 || (code == REFERENCE_TYPE && VOID_TYPE_P (type)))
11933 static location_t last_loc;
11935 /* We keep track of the last time we issued this error
11936 message to avoid spewing a ton of messages during a
11937 single bad template instantiation. */
11938 if (complain & tf_error
11939 && last_loc != input_location)
11941 if (VOID_TYPE_P (type))
11942 error ("forming reference to void");
11943 else if (code == POINTER_TYPE)
11944 error ("forming pointer to reference type %qT", type);
11945 else
11946 error ("forming reference to reference type %qT", type);
11947 last_loc = input_location;
11950 return error_mark_node;
11952 else if (TREE_CODE (type) == FUNCTION_TYPE
11953 && (type_memfn_quals (type) != TYPE_UNQUALIFIED
11954 || type_memfn_rqual (type) != REF_QUAL_NONE))
11956 if (complain & tf_error)
11958 if (code == POINTER_TYPE)
11959 error ("forming pointer to qualified function type %qT",
11960 type);
11961 else
11962 error ("forming reference to qualified function type %qT",
11963 type);
11965 return error_mark_node;
11967 else if (code == POINTER_TYPE)
11969 r = build_pointer_type (type);
11970 if (TREE_CODE (type) == METHOD_TYPE)
11971 r = build_ptrmemfunc_type (r);
11973 else if (TREE_CODE (type) == REFERENCE_TYPE)
11974 /* In C++0x, during template argument substitution, when there is an
11975 attempt to create a reference to a reference type, reference
11976 collapsing is applied as described in [14.3.1/4 temp.arg.type]:
11978 "If a template-argument for a template-parameter T names a type
11979 that is a reference to a type A, an attempt to create the type
11980 'lvalue reference to cv T' creates the type 'lvalue reference to
11981 A,' while an attempt to create the type type rvalue reference to
11982 cv T' creates the type T"
11984 r = cp_build_reference_type
11985 (TREE_TYPE (type),
11986 TYPE_REF_IS_RVALUE (t) && TYPE_REF_IS_RVALUE (type));
11987 else
11988 r = cp_build_reference_type (type, TYPE_REF_IS_RVALUE (t));
11989 r = cp_build_qualified_type_real (r, cp_type_quals (t), complain);
11991 if (cxx_dialect >= cxx1y
11992 && !(TREE_CODE (t) == REFERENCE_TYPE && REFERENCE_VLA_OK (t))
11993 && array_of_runtime_bound_p (type)
11994 && (flag_iso || warn_vla > 0))
11996 if (complain & tf_warning_or_error)
11997 pedwarn
11998 (input_location, OPT_Wvla,
11999 code == REFERENCE_TYPE
12000 ? G_("cannot declare reference to array of runtime bound")
12001 : G_("cannot declare pointer to array of runtime bound"));
12002 else
12003 r = error_mark_node;
12006 if (r != error_mark_node)
12007 /* Will this ever be needed for TYPE_..._TO values? */
12008 layout_type (r);
12010 return r;
12012 case OFFSET_TYPE:
12014 r = tsubst (TYPE_OFFSET_BASETYPE (t), args, complain, in_decl);
12015 if (r == error_mark_node || !MAYBE_CLASS_TYPE_P (r))
12017 /* [temp.deduct]
12019 Type deduction may fail for any of the following
12020 reasons:
12022 -- Attempting to create "pointer to member of T" when T
12023 is not a class type. */
12024 if (complain & tf_error)
12025 error ("creating pointer to member of non-class type %qT", r);
12026 return error_mark_node;
12028 if (TREE_CODE (type) == REFERENCE_TYPE)
12030 if (complain & tf_error)
12031 error ("creating pointer to member reference type %qT", type);
12032 return error_mark_node;
12034 if (VOID_TYPE_P (type))
12036 if (complain & tf_error)
12037 error ("creating pointer to member of type void");
12038 return error_mark_node;
12040 gcc_assert (TREE_CODE (type) != METHOD_TYPE);
12041 if (TREE_CODE (type) == FUNCTION_TYPE)
12043 /* The type of the implicit object parameter gets its
12044 cv-qualifiers from the FUNCTION_TYPE. */
12045 tree memptr;
12046 tree method_type
12047 = build_memfn_type (type, r, type_memfn_quals (type),
12048 type_memfn_rqual (type));
12049 memptr = build_ptrmemfunc_type (build_pointer_type (method_type));
12050 return cp_build_qualified_type_real (memptr, cp_type_quals (t),
12051 complain);
12053 else
12054 return cp_build_qualified_type_real (build_ptrmem_type (r, type),
12055 cp_type_quals (t),
12056 complain);
12058 case FUNCTION_TYPE:
12059 case METHOD_TYPE:
12061 tree fntype;
12062 tree specs;
12063 fntype = tsubst_function_type (t, args, complain, in_decl);
12064 if (fntype == error_mark_node)
12065 return error_mark_node;
12067 /* Substitute the exception specification. */
12068 specs = tsubst_exception_specification (t, args, complain,
12069 in_decl, /*defer_ok*/true);
12070 if (specs == error_mark_node)
12071 return error_mark_node;
12072 if (specs)
12073 fntype = build_exception_variant (fntype, specs);
12074 return fntype;
12076 case ARRAY_TYPE:
12078 tree domain = tsubst (TYPE_DOMAIN (t), args, complain, in_decl);
12079 if (domain == error_mark_node)
12080 return error_mark_node;
12082 /* As an optimization, we avoid regenerating the array type if
12083 it will obviously be the same as T. */
12084 if (type == TREE_TYPE (t) && domain == TYPE_DOMAIN (t))
12085 return t;
12087 /* These checks should match the ones in grokdeclarator.
12089 [temp.deduct]
12091 The deduction may fail for any of the following reasons:
12093 -- Attempting to create an array with an element type that
12094 is void, a function type, or a reference type, or [DR337]
12095 an abstract class type. */
12096 if (VOID_TYPE_P (type)
12097 || TREE_CODE (type) == FUNCTION_TYPE
12098 || TREE_CODE (type) == REFERENCE_TYPE)
12100 if (complain & tf_error)
12101 error ("creating array of %qT", type);
12102 return error_mark_node;
12105 if (abstract_virtuals_error_sfinae (ACU_ARRAY, type, complain))
12106 return error_mark_node;
12108 r = build_cplus_array_type (type, domain);
12110 if (TYPE_USER_ALIGN (t))
12112 TYPE_ALIGN (r) = TYPE_ALIGN (t);
12113 TYPE_USER_ALIGN (r) = 1;
12116 return r;
12119 case TYPENAME_TYPE:
12121 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
12122 in_decl, /*entering_scope=*/1);
12123 tree f = tsubst_copy (TYPENAME_TYPE_FULLNAME (t), args,
12124 complain, in_decl);
12126 if (ctx == error_mark_node || f == error_mark_node)
12127 return error_mark_node;
12129 if (!MAYBE_CLASS_TYPE_P (ctx))
12131 if (complain & tf_error)
12132 error ("%qT is not a class, struct, or union type", ctx);
12133 return error_mark_node;
12135 else if (!uses_template_parms (ctx) && !TYPE_BEING_DEFINED (ctx))
12137 /* Normally, make_typename_type does not require that the CTX
12138 have complete type in order to allow things like:
12140 template <class T> struct S { typename S<T>::X Y; };
12142 But, such constructs have already been resolved by this
12143 point, so here CTX really should have complete type, unless
12144 it's a partial instantiation. */
12145 ctx = complete_type (ctx);
12146 if (!COMPLETE_TYPE_P (ctx))
12148 if (complain & tf_error)
12149 cxx_incomplete_type_error (NULL_TREE, ctx);
12150 return error_mark_node;
12154 f = make_typename_type (ctx, f, typename_type,
12155 complain | tf_keep_type_decl);
12156 if (f == error_mark_node)
12157 return f;
12158 if (TREE_CODE (f) == TYPE_DECL)
12160 complain |= tf_ignore_bad_quals;
12161 f = TREE_TYPE (f);
12164 if (TREE_CODE (f) != TYPENAME_TYPE)
12166 if (TYPENAME_IS_ENUM_P (t) && TREE_CODE (f) != ENUMERAL_TYPE)
12168 if (complain & tf_error)
12169 error ("%qT resolves to %qT, which is not an enumeration type",
12170 t, f);
12171 else
12172 return error_mark_node;
12174 else if (TYPENAME_IS_CLASS_P (t) && !CLASS_TYPE_P (f))
12176 if (complain & tf_error)
12177 error ("%qT resolves to %qT, which is is not a class type",
12178 t, f);
12179 else
12180 return error_mark_node;
12184 return cp_build_qualified_type_real
12185 (f, cp_type_quals (f) | cp_type_quals (t), complain);
12188 case UNBOUND_CLASS_TEMPLATE:
12190 tree ctx = tsubst_aggr_type (TYPE_CONTEXT (t), args, complain,
12191 in_decl, /*entering_scope=*/1);
12192 tree name = TYPE_IDENTIFIER (t);
12193 tree parm_list = DECL_TEMPLATE_PARMS (TYPE_NAME (t));
12195 if (ctx == error_mark_node || name == error_mark_node)
12196 return error_mark_node;
12198 if (parm_list)
12199 parm_list = tsubst_template_parms (parm_list, args, complain);
12200 return make_unbound_class_template (ctx, name, parm_list, complain);
12203 case TYPEOF_TYPE:
12205 tree type;
12207 ++cp_unevaluated_operand;
12208 ++c_inhibit_evaluation_warnings;
12210 type = tsubst_expr (TYPEOF_TYPE_EXPR (t), args,
12211 complain, in_decl,
12212 /*integral_constant_expression_p=*/false);
12214 --cp_unevaluated_operand;
12215 --c_inhibit_evaluation_warnings;
12217 type = finish_typeof (type);
12218 return cp_build_qualified_type_real (type,
12219 cp_type_quals (t)
12220 | cp_type_quals (type),
12221 complain);
12224 case DECLTYPE_TYPE:
12226 tree type;
12228 ++cp_unevaluated_operand;
12229 ++c_inhibit_evaluation_warnings;
12231 type = tsubst_copy_and_build (DECLTYPE_TYPE_EXPR (t), args,
12232 complain|tf_decltype, in_decl,
12233 /*function_p*/false,
12234 /*integral_constant_expression*/false);
12236 --cp_unevaluated_operand;
12237 --c_inhibit_evaluation_warnings;
12239 if (DECLTYPE_FOR_LAMBDA_CAPTURE (t))
12240 type = lambda_capture_field_type (type,
12241 DECLTYPE_FOR_INIT_CAPTURE (t));
12242 else if (DECLTYPE_FOR_LAMBDA_PROXY (t))
12243 type = lambda_proxy_type (type);
12244 else
12246 bool id = DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t);
12247 if (id && TREE_CODE (DECLTYPE_TYPE_EXPR (t)) == BIT_NOT_EXPR
12248 && EXPR_P (type))
12249 /* In a template ~id could be either a complement expression
12250 or an unqualified-id naming a destructor; if instantiating
12251 it produces an expression, it's not an id-expression or
12252 member access. */
12253 id = false;
12254 type = finish_decltype_type (type, id, complain);
12256 return cp_build_qualified_type_real (type,
12257 cp_type_quals (t)
12258 | cp_type_quals (type),
12259 complain);
12262 case UNDERLYING_TYPE:
12264 tree type = tsubst (UNDERLYING_TYPE_TYPE (t), args,
12265 complain, in_decl);
12266 return finish_underlying_type (type);
12269 case TYPE_ARGUMENT_PACK:
12270 case NONTYPE_ARGUMENT_PACK:
12272 tree r = TYPE_P (t) ? cxx_make_type (code) : make_node (code);
12273 tree packed_out =
12274 tsubst_template_args (ARGUMENT_PACK_ARGS (t),
12275 args,
12276 complain,
12277 in_decl);
12278 SET_ARGUMENT_PACK_ARGS (r, packed_out);
12280 /* For template nontype argument packs, also substitute into
12281 the type. */
12282 if (code == NONTYPE_ARGUMENT_PACK)
12283 TREE_TYPE (r) = tsubst (TREE_TYPE (t), args, complain, in_decl);
12285 return r;
12287 break;
12289 case INTEGER_CST:
12290 case REAL_CST:
12291 case STRING_CST:
12292 case PLUS_EXPR:
12293 case MINUS_EXPR:
12294 case NEGATE_EXPR:
12295 case NOP_EXPR:
12296 case INDIRECT_REF:
12297 case ADDR_EXPR:
12298 case CALL_EXPR:
12299 case ARRAY_REF:
12300 case SCOPE_REF:
12301 /* We should use one of the expression tsubsts for these codes. */
12302 gcc_unreachable ();
12304 default:
12305 sorry ("use of %qs in template", get_tree_code_name (code));
12306 return error_mark_node;
12310 /* Like tsubst_expr for a BASELINK. OBJECT_TYPE, if non-NULL, is the
12311 type of the expression on the left-hand side of the "." or "->"
12312 operator. */
12314 static tree
12315 tsubst_baselink (tree baselink, tree object_type,
12316 tree args, tsubst_flags_t complain, tree in_decl)
12318 tree name;
12319 tree qualifying_scope;
12320 tree fns;
12321 tree optype;
12322 tree template_args = 0;
12323 bool template_id_p = false;
12324 bool qualified = BASELINK_QUALIFIED_P (baselink);
12326 /* A baselink indicates a function from a base class. Both the
12327 BASELINK_ACCESS_BINFO and the base class referenced may
12328 indicate bases of the template class, rather than the
12329 instantiated class. In addition, lookups that were not
12330 ambiguous before may be ambiguous now. Therefore, we perform
12331 the lookup again. */
12332 qualifying_scope = BINFO_TYPE (BASELINK_ACCESS_BINFO (baselink));
12333 qualifying_scope = tsubst (qualifying_scope, args,
12334 complain, in_decl);
12335 fns = BASELINK_FUNCTIONS (baselink);
12336 optype = tsubst (BASELINK_OPTYPE (baselink), args, complain, in_decl);
12337 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR)
12339 template_id_p = true;
12340 template_args = TREE_OPERAND (fns, 1);
12341 fns = TREE_OPERAND (fns, 0);
12342 if (template_args)
12343 template_args = tsubst_template_args (template_args, args,
12344 complain, in_decl);
12346 name = DECL_NAME (get_first_fn (fns));
12347 if (IDENTIFIER_TYPENAME_P (name))
12348 name = mangle_conv_op_name_for_type (optype);
12349 baselink = lookup_fnfields (qualifying_scope, name, /*protect=*/1);
12350 if (!baselink)
12351 return error_mark_node;
12353 /* If lookup found a single function, mark it as used at this
12354 point. (If it lookup found multiple functions the one selected
12355 later by overload resolution will be marked as used at that
12356 point.) */
12357 if (BASELINK_P (baselink))
12358 fns = BASELINK_FUNCTIONS (baselink);
12359 if (!template_id_p && !really_overloaded_fn (fns))
12360 mark_used (OVL_CURRENT (fns));
12362 /* Add back the template arguments, if present. */
12363 if (BASELINK_P (baselink) && template_id_p)
12364 BASELINK_FUNCTIONS (baselink)
12365 = build_nt (TEMPLATE_ID_EXPR,
12366 BASELINK_FUNCTIONS (baselink),
12367 template_args);
12368 /* Update the conversion operator type. */
12369 BASELINK_OPTYPE (baselink) = optype;
12371 if (!object_type)
12372 object_type = current_class_type;
12374 if (qualified)
12375 baselink = adjust_result_of_qualified_name_lookup (baselink,
12376 qualifying_scope,
12377 object_type);
12378 return baselink;
12381 /* Like tsubst_expr for a SCOPE_REF, given by QUALIFIED_ID. DONE is
12382 true if the qualified-id will be a postfix-expression in-and-of
12383 itself; false if more of the postfix-expression follows the
12384 QUALIFIED_ID. ADDRESS_P is true if the qualified-id is the operand
12385 of "&". */
12387 static tree
12388 tsubst_qualified_id (tree qualified_id, tree args,
12389 tsubst_flags_t complain, tree in_decl,
12390 bool done, bool address_p)
12392 tree expr;
12393 tree scope;
12394 tree name;
12395 bool is_template;
12396 tree template_args;
12397 location_t loc = UNKNOWN_LOCATION;
12399 gcc_assert (TREE_CODE (qualified_id) == SCOPE_REF);
12401 /* Figure out what name to look up. */
12402 name = TREE_OPERAND (qualified_id, 1);
12403 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
12405 is_template = true;
12406 loc = EXPR_LOCATION (name);
12407 template_args = TREE_OPERAND (name, 1);
12408 if (template_args)
12409 template_args = tsubst_template_args (template_args, args,
12410 complain, in_decl);
12411 name = TREE_OPERAND (name, 0);
12413 else
12415 is_template = false;
12416 template_args = NULL_TREE;
12419 /* Substitute into the qualifying scope. When there are no ARGS, we
12420 are just trying to simplify a non-dependent expression. In that
12421 case the qualifying scope may be dependent, and, in any case,
12422 substituting will not help. */
12423 scope = TREE_OPERAND (qualified_id, 0);
12424 if (args)
12426 scope = tsubst (scope, args, complain, in_decl);
12427 expr = tsubst_copy (name, args, complain, in_decl);
12429 else
12430 expr = name;
12432 if (dependent_scope_p (scope))
12434 if (is_template)
12435 expr = build_min_nt_loc (loc, TEMPLATE_ID_EXPR, expr, template_args);
12436 return build_qualified_name (NULL_TREE, scope, expr,
12437 QUALIFIED_NAME_IS_TEMPLATE (qualified_id));
12440 if (!BASELINK_P (name) && !DECL_P (expr))
12442 if (TREE_CODE (expr) == BIT_NOT_EXPR)
12444 /* A BIT_NOT_EXPR is used to represent a destructor. */
12445 if (!check_dtor_name (scope, TREE_OPERAND (expr, 0)))
12447 error ("qualifying type %qT does not match destructor name ~%qT",
12448 scope, TREE_OPERAND (expr, 0));
12449 expr = error_mark_node;
12451 else
12452 expr = lookup_qualified_name (scope, complete_dtor_identifier,
12453 /*is_type_p=*/0, false);
12455 else
12456 expr = lookup_qualified_name (scope, expr, /*is_type_p=*/0, false);
12457 if (TREE_CODE (TREE_CODE (expr) == TEMPLATE_DECL
12458 ? DECL_TEMPLATE_RESULT (expr) : expr) == TYPE_DECL)
12460 if (complain & tf_error)
12462 error ("dependent-name %qE is parsed as a non-type, but "
12463 "instantiation yields a type", qualified_id);
12464 inform (input_location, "say %<typename %E%> if a type is meant", qualified_id);
12466 return error_mark_node;
12470 if (DECL_P (expr))
12472 check_accessibility_of_qualified_id (expr, /*object_type=*/NULL_TREE,
12473 scope);
12474 /* Remember that there was a reference to this entity. */
12475 mark_used (expr);
12478 if (expr == error_mark_node || TREE_CODE (expr) == TREE_LIST)
12480 if (complain & tf_error)
12481 qualified_name_lookup_error (scope,
12482 TREE_OPERAND (qualified_id, 1),
12483 expr, input_location);
12484 return error_mark_node;
12487 if (is_template)
12488 expr = lookup_template_function (expr, template_args);
12490 if (expr == error_mark_node && complain & tf_error)
12491 qualified_name_lookup_error (scope, TREE_OPERAND (qualified_id, 1),
12492 expr, input_location);
12493 else if (TYPE_P (scope))
12495 expr = (adjust_result_of_qualified_name_lookup
12496 (expr, scope, current_nonlambda_class_type ()));
12497 expr = (finish_qualified_id_expr
12498 (scope, expr, done, address_p && PTRMEM_OK_P (qualified_id),
12499 QUALIFIED_NAME_IS_TEMPLATE (qualified_id),
12500 /*template_arg_p=*/false, complain));
12503 /* Expressions do not generally have reference type. */
12504 if (TREE_CODE (expr) != SCOPE_REF
12505 /* However, if we're about to form a pointer-to-member, we just
12506 want the referenced member referenced. */
12507 && TREE_CODE (expr) != OFFSET_REF)
12508 expr = convert_from_reference (expr);
12510 return expr;
12513 /* Like tsubst, but deals with expressions. This function just replaces
12514 template parms; to finish processing the resultant expression, use
12515 tsubst_copy_and_build or tsubst_expr. */
12517 static tree
12518 tsubst_copy (tree t, tree args, tsubst_flags_t complain, tree in_decl)
12520 enum tree_code code;
12521 tree r;
12523 if (t == NULL_TREE || t == error_mark_node || args == NULL_TREE)
12524 return t;
12526 code = TREE_CODE (t);
12528 switch (code)
12530 case PARM_DECL:
12531 r = retrieve_local_specialization (t);
12533 if (r == NULL_TREE)
12535 /* We get here for a use of 'this' in an NSDMI. */
12536 if (DECL_NAME (t) == this_identifier
12537 && current_function_decl
12538 && DECL_CONSTRUCTOR_P (current_function_decl))
12539 return current_class_ptr;
12541 /* This can happen for a parameter name used later in a function
12542 declaration (such as in a late-specified return type). Just
12543 make a dummy decl, since it's only used for its type. */
12544 gcc_assert (cp_unevaluated_operand != 0);
12545 r = tsubst_decl (t, args, complain);
12546 /* Give it the template pattern as its context; its true context
12547 hasn't been instantiated yet and this is good enough for
12548 mangling. */
12549 DECL_CONTEXT (r) = DECL_CONTEXT (t);
12552 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
12553 r = ARGUMENT_PACK_SELECT_ARG (r);
12554 mark_used (r);
12555 return r;
12557 case CONST_DECL:
12559 tree enum_type;
12560 tree v;
12562 if (DECL_TEMPLATE_PARM_P (t))
12563 return tsubst_copy (DECL_INITIAL (t), args, complain, in_decl);
12564 /* There is no need to substitute into namespace-scope
12565 enumerators. */
12566 if (DECL_NAMESPACE_SCOPE_P (t))
12567 return t;
12568 /* If ARGS is NULL, then T is known to be non-dependent. */
12569 if (args == NULL_TREE)
12570 return integral_constant_value (t);
12572 /* Unfortunately, we cannot just call lookup_name here.
12573 Consider:
12575 template <int I> int f() {
12576 enum E { a = I };
12577 struct S { void g() { E e = a; } };
12580 When we instantiate f<7>::S::g(), say, lookup_name is not
12581 clever enough to find f<7>::a. */
12582 enum_type
12583 = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
12584 /*entering_scope=*/0);
12586 for (v = TYPE_VALUES (enum_type);
12587 v != NULL_TREE;
12588 v = TREE_CHAIN (v))
12589 if (TREE_PURPOSE (v) == DECL_NAME (t))
12590 return TREE_VALUE (v);
12592 /* We didn't find the name. That should never happen; if
12593 name-lookup found it during preliminary parsing, we
12594 should find it again here during instantiation. */
12595 gcc_unreachable ();
12597 return t;
12599 case FIELD_DECL:
12600 if (PACK_EXPANSION_P (TREE_TYPE (t)))
12602 /* Check for a local specialization set up by
12603 tsubst_pack_expansion. */
12604 if (tree r = retrieve_local_specialization (t))
12606 if (TREE_CODE (r) == ARGUMENT_PACK_SELECT)
12607 r = ARGUMENT_PACK_SELECT_ARG (r);
12608 return r;
12611 /* When retrieving a capture pack from a generic lambda, remove the
12612 lambda call op's own template argument list from ARGS. Only the
12613 template arguments active for the closure type should be used to
12614 retrieve the pack specialization. */
12615 if (LAMBDA_FUNCTION_P (current_function_decl)
12616 && (template_class_depth (DECL_CONTEXT (t))
12617 != TMPL_ARGS_DEPTH (args)))
12618 args = strip_innermost_template_args (args, 1);
12620 /* Otherwise return the full NONTYPE_ARGUMENT_PACK that
12621 tsubst_decl put in the hash table. */
12622 return retrieve_specialization (t, args, 0);
12625 if (DECL_CONTEXT (t))
12627 tree ctx;
12629 ctx = tsubst_aggr_type (DECL_CONTEXT (t), args, complain, in_decl,
12630 /*entering_scope=*/1);
12631 if (ctx != DECL_CONTEXT (t))
12633 tree r = lookup_field (ctx, DECL_NAME (t), 0, false);
12634 if (!r)
12636 if (complain & tf_error)
12637 error ("using invalid field %qD", t);
12638 return error_mark_node;
12640 return r;
12644 return t;
12646 case VAR_DECL:
12647 case FUNCTION_DECL:
12648 if (DECL_LANG_SPECIFIC (t) && DECL_TEMPLATE_INFO (t))
12649 r = tsubst (t, args, complain, in_decl);
12650 else if (local_variable_p (t))
12652 r = retrieve_local_specialization (t);
12653 if (r == NULL_TREE)
12655 if (DECL_ANON_UNION_VAR_P (t))
12657 /* Just use name lookup to find a member alias for an
12658 anonymous union, but then add it to the hash table. */
12659 r = lookup_name (DECL_NAME (t));
12660 gcc_assert (DECL_ANON_UNION_VAR_P (r));
12661 register_local_specialization (r, t);
12663 else
12665 /* This can happen for a variable used in a
12666 late-specified return type of a local lambda, or for a
12667 local static or constant. Building a new VAR_DECL
12668 should be OK in all those cases. */
12669 r = tsubst_decl (t, args, complain);
12670 if (decl_constant_var_p (r))
12671 /* A use of a local constant must decay to its value. */
12672 return integral_constant_value (r);
12673 gcc_assert (cp_unevaluated_operand || TREE_STATIC (r)
12674 || errorcount || sorrycount);
12675 return r;
12679 else
12680 r = t;
12681 mark_used (r);
12682 return r;
12684 case NAMESPACE_DECL:
12685 return t;
12687 case OVERLOAD:
12688 /* An OVERLOAD will always be a non-dependent overload set; an
12689 overload set from function scope will just be represented with an
12690 IDENTIFIER_NODE, and from class scope with a BASELINK. */
12691 gcc_assert (!uses_template_parms (t));
12692 return t;
12694 case BASELINK:
12695 return tsubst_baselink (t, current_nonlambda_class_type (),
12696 args, complain, in_decl);
12698 case TEMPLATE_DECL:
12699 if (DECL_TEMPLATE_TEMPLATE_PARM_P (t))
12700 return tsubst (TREE_TYPE (DECL_TEMPLATE_RESULT (t)),
12701 args, complain, in_decl);
12702 else if (DECL_FUNCTION_TEMPLATE_P (t) && DECL_MEMBER_TEMPLATE_P (t))
12703 return tsubst (t, args, complain, in_decl);
12704 else if (DECL_CLASS_SCOPE_P (t)
12705 && uses_template_parms (DECL_CONTEXT (t)))
12707 /* Template template argument like the following example need
12708 special treatment:
12710 template <template <class> class TT> struct C {};
12711 template <class T> struct D {
12712 template <class U> struct E {};
12713 C<E> c; // #1
12715 D<int> d; // #2
12717 We are processing the template argument `E' in #1 for
12718 the template instantiation #2. Originally, `E' is a
12719 TEMPLATE_DECL with `D<T>' as its DECL_CONTEXT. Now we
12720 have to substitute this with one having context `D<int>'. */
12722 tree context = tsubst (DECL_CONTEXT (t), args, complain, in_decl);
12723 return lookup_field (context, DECL_NAME(t), 0, false);
12725 else
12726 /* Ordinary template template argument. */
12727 return t;
12729 case CAST_EXPR:
12730 case REINTERPRET_CAST_EXPR:
12731 case CONST_CAST_EXPR:
12732 case STATIC_CAST_EXPR:
12733 case DYNAMIC_CAST_EXPR:
12734 case IMPLICIT_CONV_EXPR:
12735 case CONVERT_EXPR:
12736 case NOP_EXPR:
12737 return build1
12738 (code, tsubst (TREE_TYPE (t), args, complain, in_decl),
12739 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl));
12741 case SIZEOF_EXPR:
12742 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0)))
12745 tree expanded, op = TREE_OPERAND (t, 0);
12746 int len = 0;
12748 if (SIZEOF_EXPR_TYPE_P (t))
12749 op = TREE_TYPE (op);
12751 ++cp_unevaluated_operand;
12752 ++c_inhibit_evaluation_warnings;
12753 /* We only want to compute the number of arguments. */
12754 expanded = tsubst_pack_expansion (op, args, complain, in_decl);
12755 --cp_unevaluated_operand;
12756 --c_inhibit_evaluation_warnings;
12758 if (TREE_CODE (expanded) == TREE_VEC)
12759 len = TREE_VEC_LENGTH (expanded);
12761 if (expanded == error_mark_node)
12762 return error_mark_node;
12763 else if (PACK_EXPANSION_P (expanded)
12764 || (TREE_CODE (expanded) == TREE_VEC
12765 && len > 0
12766 && PACK_EXPANSION_P (TREE_VEC_ELT (expanded, len-1))))
12768 if (TREE_CODE (expanded) == TREE_VEC)
12769 expanded = TREE_VEC_ELT (expanded, len - 1);
12771 if (TYPE_P (expanded))
12772 return cxx_sizeof_or_alignof_type (expanded, SIZEOF_EXPR,
12773 complain & tf_error);
12774 else
12775 return cxx_sizeof_or_alignof_expr (expanded, SIZEOF_EXPR,
12776 complain & tf_error);
12778 else
12779 return build_int_cst (size_type_node, len);
12781 if (SIZEOF_EXPR_TYPE_P (t))
12783 r = tsubst (TREE_TYPE (TREE_OPERAND (t, 0)),
12784 args, complain, in_decl);
12785 r = build1 (NOP_EXPR, r, error_mark_node);
12786 r = build1 (SIZEOF_EXPR,
12787 tsubst (TREE_TYPE (t), args, complain, in_decl), r);
12788 SIZEOF_EXPR_TYPE_P (r) = 1;
12789 return r;
12791 /* Fall through */
12793 case INDIRECT_REF:
12794 case NEGATE_EXPR:
12795 case TRUTH_NOT_EXPR:
12796 case BIT_NOT_EXPR:
12797 case ADDR_EXPR:
12798 case UNARY_PLUS_EXPR: /* Unary + */
12799 case ALIGNOF_EXPR:
12800 case AT_ENCODE_EXPR:
12801 case ARROW_EXPR:
12802 case THROW_EXPR:
12803 case TYPEID_EXPR:
12804 case REALPART_EXPR:
12805 case IMAGPART_EXPR:
12806 case PAREN_EXPR:
12807 return build1
12808 (code, tsubst (TREE_TYPE (t), args, complain, in_decl),
12809 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl));
12811 case COMPONENT_REF:
12813 tree object;
12814 tree name;
12816 object = tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl);
12817 name = TREE_OPERAND (t, 1);
12818 if (TREE_CODE (name) == BIT_NOT_EXPR)
12820 name = tsubst_copy (TREE_OPERAND (name, 0), args,
12821 complain, in_decl);
12822 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
12824 else if (TREE_CODE (name) == SCOPE_REF
12825 && TREE_CODE (TREE_OPERAND (name, 1)) == BIT_NOT_EXPR)
12827 tree base = tsubst_copy (TREE_OPERAND (name, 0), args,
12828 complain, in_decl);
12829 name = TREE_OPERAND (name, 1);
12830 name = tsubst_copy (TREE_OPERAND (name, 0), args,
12831 complain, in_decl);
12832 name = build1 (BIT_NOT_EXPR, NULL_TREE, name);
12833 name = build_qualified_name (/*type=*/NULL_TREE,
12834 base, name,
12835 /*template_p=*/false);
12837 else if (BASELINK_P (name))
12838 name = tsubst_baselink (name,
12839 non_reference (TREE_TYPE (object)),
12840 args, complain,
12841 in_decl);
12842 else
12843 name = tsubst_copy (name, args, complain, in_decl);
12844 return build_nt (COMPONENT_REF, object, name, NULL_TREE);
12847 case PLUS_EXPR:
12848 case MINUS_EXPR:
12849 case MULT_EXPR:
12850 case TRUNC_DIV_EXPR:
12851 case CEIL_DIV_EXPR:
12852 case FLOOR_DIV_EXPR:
12853 case ROUND_DIV_EXPR:
12854 case EXACT_DIV_EXPR:
12855 case BIT_AND_EXPR:
12856 case BIT_IOR_EXPR:
12857 case BIT_XOR_EXPR:
12858 case TRUNC_MOD_EXPR:
12859 case FLOOR_MOD_EXPR:
12860 case TRUTH_ANDIF_EXPR:
12861 case TRUTH_ORIF_EXPR:
12862 case TRUTH_AND_EXPR:
12863 case TRUTH_OR_EXPR:
12864 case RSHIFT_EXPR:
12865 case LSHIFT_EXPR:
12866 case RROTATE_EXPR:
12867 case LROTATE_EXPR:
12868 case EQ_EXPR:
12869 case NE_EXPR:
12870 case MAX_EXPR:
12871 case MIN_EXPR:
12872 case LE_EXPR:
12873 case GE_EXPR:
12874 case LT_EXPR:
12875 case GT_EXPR:
12876 case COMPOUND_EXPR:
12877 case DOTSTAR_EXPR:
12878 case MEMBER_REF:
12879 case PREDECREMENT_EXPR:
12880 case PREINCREMENT_EXPR:
12881 case POSTDECREMENT_EXPR:
12882 case POSTINCREMENT_EXPR:
12883 return build_nt
12884 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
12885 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl));
12887 case SCOPE_REF:
12888 return build_qualified_name (/*type=*/NULL_TREE,
12889 tsubst_copy (TREE_OPERAND (t, 0),
12890 args, complain, in_decl),
12891 tsubst_copy (TREE_OPERAND (t, 1),
12892 args, complain, in_decl),
12893 QUALIFIED_NAME_IS_TEMPLATE (t));
12895 case ARRAY_REF:
12896 return build_nt
12897 (ARRAY_REF,
12898 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
12899 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl),
12900 NULL_TREE, NULL_TREE);
12902 case CALL_EXPR:
12904 int n = VL_EXP_OPERAND_LENGTH (t);
12905 tree result = build_vl_exp (CALL_EXPR, n);
12906 int i;
12907 for (i = 0; i < n; i++)
12908 TREE_OPERAND (t, i) = tsubst_copy (TREE_OPERAND (t, i), args,
12909 complain, in_decl);
12910 return result;
12913 case COND_EXPR:
12914 case MODOP_EXPR:
12915 case PSEUDO_DTOR_EXPR:
12916 case VEC_PERM_EXPR:
12918 r = build_nt
12919 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
12920 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl),
12921 tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl));
12922 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
12923 return r;
12926 case NEW_EXPR:
12928 r = build_nt
12929 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
12930 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl),
12931 tsubst_copy (TREE_OPERAND (t, 2), args, complain, in_decl));
12932 NEW_EXPR_USE_GLOBAL (r) = NEW_EXPR_USE_GLOBAL (t);
12933 return r;
12936 case DELETE_EXPR:
12938 r = build_nt
12939 (code, tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
12940 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl));
12941 DELETE_EXPR_USE_GLOBAL (r) = DELETE_EXPR_USE_GLOBAL (t);
12942 DELETE_EXPR_USE_VEC (r) = DELETE_EXPR_USE_VEC (t);
12943 return r;
12946 case TEMPLATE_ID_EXPR:
12948 /* Substituted template arguments */
12949 tree fn = TREE_OPERAND (t, 0);
12950 tree targs = TREE_OPERAND (t, 1);
12952 fn = tsubst_copy (fn, args, complain, in_decl);
12953 if (targs)
12954 targs = tsubst_template_args (targs, args, complain, in_decl);
12956 return lookup_template_function (fn, targs);
12959 case TREE_LIST:
12961 tree purpose, value, chain;
12963 if (t == void_list_node)
12964 return t;
12966 purpose = TREE_PURPOSE (t);
12967 if (purpose)
12968 purpose = tsubst_copy (purpose, args, complain, in_decl);
12969 value = TREE_VALUE (t);
12970 if (value)
12971 value = tsubst_copy (value, args, complain, in_decl);
12972 chain = TREE_CHAIN (t);
12973 if (chain && chain != void_type_node)
12974 chain = tsubst_copy (chain, args, complain, in_decl);
12975 if (purpose == TREE_PURPOSE (t)
12976 && value == TREE_VALUE (t)
12977 && chain == TREE_CHAIN (t))
12978 return t;
12979 return tree_cons (purpose, value, chain);
12982 case RECORD_TYPE:
12983 case UNION_TYPE:
12984 case ENUMERAL_TYPE:
12985 case INTEGER_TYPE:
12986 case TEMPLATE_TYPE_PARM:
12987 case TEMPLATE_TEMPLATE_PARM:
12988 case BOUND_TEMPLATE_TEMPLATE_PARM:
12989 case TEMPLATE_PARM_INDEX:
12990 case POINTER_TYPE:
12991 case REFERENCE_TYPE:
12992 case OFFSET_TYPE:
12993 case FUNCTION_TYPE:
12994 case METHOD_TYPE:
12995 case ARRAY_TYPE:
12996 case TYPENAME_TYPE:
12997 case UNBOUND_CLASS_TEMPLATE:
12998 case TYPEOF_TYPE:
12999 case DECLTYPE_TYPE:
13000 case TYPE_DECL:
13001 return tsubst (t, args, complain, in_decl);
13003 case USING_DECL:
13004 t = DECL_NAME (t);
13005 /* Fall through. */
13006 case IDENTIFIER_NODE:
13007 if (IDENTIFIER_TYPENAME_P (t))
13009 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13010 return mangle_conv_op_name_for_type (new_type);
13012 else
13013 return t;
13015 case CONSTRUCTOR:
13016 /* This is handled by tsubst_copy_and_build. */
13017 gcc_unreachable ();
13019 case VA_ARG_EXPR:
13020 return build_x_va_arg (EXPR_LOCATION (t),
13021 tsubst_copy (TREE_OPERAND (t, 0), args, complain,
13022 in_decl),
13023 tsubst (TREE_TYPE (t), args, complain, in_decl));
13025 case CLEANUP_POINT_EXPR:
13026 /* We shouldn't have built any of these during initial template
13027 generation. Instead, they should be built during instantiation
13028 in response to the saved STMT_IS_FULL_EXPR_P setting. */
13029 gcc_unreachable ();
13031 case OFFSET_REF:
13032 r = build2
13033 (code, tsubst (TREE_TYPE (t), args, complain, in_decl),
13034 tsubst_copy (TREE_OPERAND (t, 0), args, complain, in_decl),
13035 tsubst_copy (TREE_OPERAND (t, 1), args, complain, in_decl));
13036 PTRMEM_OK_P (r) = PTRMEM_OK_P (t);
13037 mark_used (TREE_OPERAND (r, 1));
13038 return r;
13040 case EXPR_PACK_EXPANSION:
13041 error ("invalid use of pack expansion expression");
13042 return error_mark_node;
13044 case NONTYPE_ARGUMENT_PACK:
13045 error ("use %<...%> to expand argument pack");
13046 return error_mark_node;
13048 case INTEGER_CST:
13049 case REAL_CST:
13050 case STRING_CST:
13051 case COMPLEX_CST:
13053 /* Instantiate any typedefs in the type. */
13054 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
13055 r = fold_convert (type, t);
13056 gcc_assert (TREE_CODE (r) == code);
13057 return r;
13060 case PTRMEM_CST:
13061 /* These can sometimes show up in a partial instantiation, but never
13062 involve template parms. */
13063 gcc_assert (!uses_template_parms (t));
13064 return t;
13066 default:
13067 /* We shouldn't get here, but keep going if !ENABLE_CHECKING. */
13068 gcc_checking_assert (false);
13069 return t;
13073 /* Like tsubst_copy, but specifically for OpenMP clauses. */
13075 static tree
13076 tsubst_omp_clauses (tree clauses, bool declare_simd,
13077 tree args, tsubst_flags_t complain, tree in_decl)
13079 tree new_clauses = NULL, nc, oc;
13081 for (oc = clauses; oc ; oc = OMP_CLAUSE_CHAIN (oc))
13083 nc = copy_node (oc);
13084 OMP_CLAUSE_CHAIN (nc) = new_clauses;
13085 new_clauses = nc;
13087 switch (OMP_CLAUSE_CODE (nc))
13089 case OMP_CLAUSE_LASTPRIVATE:
13090 if (OMP_CLAUSE_LASTPRIVATE_STMT (oc))
13092 OMP_CLAUSE_LASTPRIVATE_STMT (nc) = push_stmt_list ();
13093 tsubst_expr (OMP_CLAUSE_LASTPRIVATE_STMT (oc), args, complain,
13094 in_decl, /*integral_constant_expression_p=*/false);
13095 OMP_CLAUSE_LASTPRIVATE_STMT (nc)
13096 = pop_stmt_list (OMP_CLAUSE_LASTPRIVATE_STMT (nc));
13098 /* FALLTHRU */
13099 case OMP_CLAUSE_PRIVATE:
13100 case OMP_CLAUSE_SHARED:
13101 case OMP_CLAUSE_FIRSTPRIVATE:
13102 case OMP_CLAUSE_COPYIN:
13103 case OMP_CLAUSE_COPYPRIVATE:
13104 case OMP_CLAUSE_IF:
13105 case OMP_CLAUSE_NUM_THREADS:
13106 case OMP_CLAUSE_SCHEDULE:
13107 case OMP_CLAUSE_COLLAPSE:
13108 case OMP_CLAUSE_FINAL:
13109 case OMP_CLAUSE_DEPEND:
13110 case OMP_CLAUSE_FROM:
13111 case OMP_CLAUSE_TO:
13112 case OMP_CLAUSE_UNIFORM:
13113 case OMP_CLAUSE_MAP:
13114 case OMP_CLAUSE_DEVICE:
13115 case OMP_CLAUSE_DIST_SCHEDULE:
13116 case OMP_CLAUSE_NUM_TEAMS:
13117 case OMP_CLAUSE_THREAD_LIMIT:
13118 case OMP_CLAUSE_SAFELEN:
13119 case OMP_CLAUSE_SIMDLEN:
13120 OMP_CLAUSE_OPERAND (nc, 0)
13121 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 0), args, complain,
13122 in_decl, /*integral_constant_expression_p=*/false);
13123 break;
13124 case OMP_CLAUSE_REDUCTION:
13125 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (oc))
13127 tree placeholder = OMP_CLAUSE_REDUCTION_PLACEHOLDER (oc);
13128 if (TREE_CODE (placeholder) == SCOPE_REF)
13130 tree scope = tsubst (TREE_OPERAND (placeholder, 0), args,
13131 complain, in_decl);
13132 OMP_CLAUSE_REDUCTION_PLACEHOLDER (nc)
13133 = build_qualified_name (NULL_TREE, scope,
13134 TREE_OPERAND (placeholder, 1),
13135 false);
13137 else
13138 gcc_assert (identifier_p (placeholder));
13140 OMP_CLAUSE_OPERAND (nc, 0)
13141 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 0), args, complain,
13142 in_decl, /*integral_constant_expression_p=*/false);
13143 break;
13144 case OMP_CLAUSE_LINEAR:
13145 case OMP_CLAUSE_ALIGNED:
13146 OMP_CLAUSE_OPERAND (nc, 0)
13147 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 0), args, complain,
13148 in_decl, /*integral_constant_expression_p=*/false);
13149 OMP_CLAUSE_OPERAND (nc, 1)
13150 = tsubst_expr (OMP_CLAUSE_OPERAND (oc, 1), args, complain,
13151 in_decl, /*integral_constant_expression_p=*/false);
13152 break;
13154 case OMP_CLAUSE_NOWAIT:
13155 case OMP_CLAUSE_ORDERED:
13156 case OMP_CLAUSE_DEFAULT:
13157 case OMP_CLAUSE_UNTIED:
13158 case OMP_CLAUSE_MERGEABLE:
13159 case OMP_CLAUSE_INBRANCH:
13160 case OMP_CLAUSE_NOTINBRANCH:
13161 case OMP_CLAUSE_PROC_BIND:
13162 case OMP_CLAUSE_FOR:
13163 case OMP_CLAUSE_PARALLEL:
13164 case OMP_CLAUSE_SECTIONS:
13165 case OMP_CLAUSE_TASKGROUP:
13166 break;
13167 default:
13168 gcc_unreachable ();
13172 new_clauses = nreverse (new_clauses);
13173 if (!declare_simd)
13174 new_clauses = finish_omp_clauses (new_clauses);
13175 return new_clauses;
13178 /* Like tsubst_copy_and_build, but unshare TREE_LIST nodes. */
13180 static tree
13181 tsubst_copy_asm_operands (tree t, tree args, tsubst_flags_t complain,
13182 tree in_decl)
13184 #define RECUR(t) tsubst_copy_asm_operands (t, args, complain, in_decl)
13186 tree purpose, value, chain;
13188 if (t == NULL)
13189 return t;
13191 if (TREE_CODE (t) != TREE_LIST)
13192 return tsubst_copy_and_build (t, args, complain, in_decl,
13193 /*function_p=*/false,
13194 /*integral_constant_expression_p=*/false);
13196 if (t == void_list_node)
13197 return t;
13199 purpose = TREE_PURPOSE (t);
13200 if (purpose)
13201 purpose = RECUR (purpose);
13202 value = TREE_VALUE (t);
13203 if (value)
13205 if (TREE_CODE (value) != LABEL_DECL)
13206 value = RECUR (value);
13207 else
13209 value = lookup_label (DECL_NAME (value));
13210 gcc_assert (TREE_CODE (value) == LABEL_DECL);
13211 TREE_USED (value) = 1;
13214 chain = TREE_CHAIN (t);
13215 if (chain && chain != void_type_node)
13216 chain = RECUR (chain);
13217 return tree_cons (purpose, value, chain);
13218 #undef RECUR
13221 /* Substitute one OMP_FOR iterator. */
13223 static void
13224 tsubst_omp_for_iterator (tree t, int i, tree declv, tree initv,
13225 tree condv, tree incrv, tree *clauses,
13226 tree args, tsubst_flags_t complain, tree in_decl,
13227 bool integral_constant_expression_p)
13229 #define RECUR(NODE) \
13230 tsubst_expr ((NODE), args, complain, in_decl, \
13231 integral_constant_expression_p)
13232 tree decl, init, cond, incr;
13234 init = TREE_VEC_ELT (OMP_FOR_INIT (t), i);
13235 gcc_assert (TREE_CODE (init) == MODIFY_EXPR);
13236 decl = TREE_OPERAND (init, 0);
13237 init = TREE_OPERAND (init, 1);
13238 tree decl_expr = NULL_TREE;
13239 if (init && TREE_CODE (init) == DECL_EXPR)
13241 /* We need to jump through some hoops to handle declarations in the
13242 for-init-statement, since we might need to handle auto deduction,
13243 but we need to keep control of initialization. */
13244 decl_expr = init;
13245 init = DECL_INITIAL (DECL_EXPR_DECL (init));
13246 decl = tsubst_decl (decl, args, complain);
13248 else
13249 decl = RECUR (decl);
13250 init = RECUR (init);
13252 tree auto_node = type_uses_auto (TREE_TYPE (decl));
13253 if (auto_node && init)
13254 TREE_TYPE (decl)
13255 = do_auto_deduction (TREE_TYPE (decl), init, auto_node);
13257 gcc_assert (!type_dependent_expression_p (decl));
13259 if (!CLASS_TYPE_P (TREE_TYPE (decl)))
13261 if (decl_expr)
13263 /* Declare the variable, but don't let that initialize it. */
13264 tree init_sav = DECL_INITIAL (DECL_EXPR_DECL (decl_expr));
13265 DECL_INITIAL (DECL_EXPR_DECL (decl_expr)) = NULL_TREE;
13266 RECUR (decl_expr);
13267 DECL_INITIAL (DECL_EXPR_DECL (decl_expr)) = init_sav;
13270 cond = RECUR (TREE_VEC_ELT (OMP_FOR_COND (t), i));
13271 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
13272 if (TREE_CODE (incr) == MODIFY_EXPR)
13273 incr = build_x_modify_expr (EXPR_LOCATION (incr),
13274 RECUR (TREE_OPERAND (incr, 0)), NOP_EXPR,
13275 RECUR (TREE_OPERAND (incr, 1)),
13276 complain);
13277 else
13278 incr = RECUR (incr);
13279 TREE_VEC_ELT (declv, i) = decl;
13280 TREE_VEC_ELT (initv, i) = init;
13281 TREE_VEC_ELT (condv, i) = cond;
13282 TREE_VEC_ELT (incrv, i) = incr;
13283 return;
13286 if (decl_expr)
13288 /* Declare and initialize the variable. */
13289 RECUR (decl_expr);
13290 init = NULL_TREE;
13292 else if (init)
13294 tree c;
13295 for (c = *clauses; c ; c = OMP_CLAUSE_CHAIN (c))
13297 if ((OMP_CLAUSE_CODE (c) == OMP_CLAUSE_PRIVATE
13298 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_LASTPRIVATE)
13299 && OMP_CLAUSE_DECL (c) == decl)
13300 break;
13301 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_FIRSTPRIVATE
13302 && OMP_CLAUSE_DECL (c) == decl)
13303 error ("iteration variable %qD should not be firstprivate", decl);
13304 else if (OMP_CLAUSE_CODE (c) == OMP_CLAUSE_REDUCTION
13305 && OMP_CLAUSE_DECL (c) == decl)
13306 error ("iteration variable %qD should not be reduction", decl);
13308 if (c == NULL)
13310 c = build_omp_clause (input_location, OMP_CLAUSE_PRIVATE);
13311 OMP_CLAUSE_DECL (c) = decl;
13312 c = finish_omp_clauses (c);
13313 if (c)
13315 OMP_CLAUSE_CHAIN (c) = *clauses;
13316 *clauses = c;
13320 cond = TREE_VEC_ELT (OMP_FOR_COND (t), i);
13321 if (COMPARISON_CLASS_P (cond))
13322 cond = build2 (TREE_CODE (cond), boolean_type_node,
13323 RECUR (TREE_OPERAND (cond, 0)),
13324 RECUR (TREE_OPERAND (cond, 1)));
13325 else
13326 cond = RECUR (cond);
13327 incr = TREE_VEC_ELT (OMP_FOR_INCR (t), i);
13328 switch (TREE_CODE (incr))
13330 case PREINCREMENT_EXPR:
13331 case PREDECREMENT_EXPR:
13332 case POSTINCREMENT_EXPR:
13333 case POSTDECREMENT_EXPR:
13334 incr = build2 (TREE_CODE (incr), TREE_TYPE (decl),
13335 RECUR (TREE_OPERAND (incr, 0)), NULL_TREE);
13336 break;
13337 case MODIFY_EXPR:
13338 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
13339 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
13341 tree rhs = TREE_OPERAND (incr, 1);
13342 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl),
13343 RECUR (TREE_OPERAND (incr, 0)),
13344 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
13345 RECUR (TREE_OPERAND (rhs, 0)),
13346 RECUR (TREE_OPERAND (rhs, 1))));
13348 else
13349 incr = RECUR (incr);
13350 break;
13351 case MODOP_EXPR:
13352 if (TREE_CODE (TREE_OPERAND (incr, 1)) == PLUS_EXPR
13353 || TREE_CODE (TREE_OPERAND (incr, 1)) == MINUS_EXPR)
13355 tree lhs = RECUR (TREE_OPERAND (incr, 0));
13356 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl), lhs,
13357 build2 (TREE_CODE (TREE_OPERAND (incr, 1)),
13358 TREE_TYPE (decl), lhs,
13359 RECUR (TREE_OPERAND (incr, 2))));
13361 else if (TREE_CODE (TREE_OPERAND (incr, 1)) == NOP_EXPR
13362 && (TREE_CODE (TREE_OPERAND (incr, 2)) == PLUS_EXPR
13363 || (TREE_CODE (TREE_OPERAND (incr, 2)) == MINUS_EXPR)))
13365 tree rhs = TREE_OPERAND (incr, 2);
13366 incr = build2 (MODIFY_EXPR, TREE_TYPE (decl),
13367 RECUR (TREE_OPERAND (incr, 0)),
13368 build2 (TREE_CODE (rhs), TREE_TYPE (decl),
13369 RECUR (TREE_OPERAND (rhs, 0)),
13370 RECUR (TREE_OPERAND (rhs, 1))));
13372 else
13373 incr = RECUR (incr);
13374 break;
13375 default:
13376 incr = RECUR (incr);
13377 break;
13380 TREE_VEC_ELT (declv, i) = decl;
13381 TREE_VEC_ELT (initv, i) = init;
13382 TREE_VEC_ELT (condv, i) = cond;
13383 TREE_VEC_ELT (incrv, i) = incr;
13384 #undef RECUR
13387 /* Like tsubst_copy for expressions, etc. but also does semantic
13388 processing. */
13390 static tree
13391 tsubst_expr (tree t, tree args, tsubst_flags_t complain, tree in_decl,
13392 bool integral_constant_expression_p)
13394 #define RETURN(EXP) do { r = (EXP); goto out; } while(0)
13395 #define RECUR(NODE) \
13396 tsubst_expr ((NODE), args, complain, in_decl, \
13397 integral_constant_expression_p)
13399 tree stmt, tmp;
13400 tree r;
13401 location_t loc;
13403 if (t == NULL_TREE || t == error_mark_node)
13404 return t;
13406 loc = input_location;
13407 if (EXPR_HAS_LOCATION (t))
13408 input_location = EXPR_LOCATION (t);
13409 if (STATEMENT_CODE_P (TREE_CODE (t)))
13410 current_stmt_tree ()->stmts_are_full_exprs_p = STMT_IS_FULL_EXPR_P (t);
13412 switch (TREE_CODE (t))
13414 case STATEMENT_LIST:
13416 tree_stmt_iterator i;
13417 for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
13418 RECUR (tsi_stmt (i));
13419 break;
13422 case CTOR_INITIALIZER:
13423 finish_mem_initializers (tsubst_initializer_list
13424 (TREE_OPERAND (t, 0), args));
13425 break;
13427 case RETURN_EXPR:
13428 finish_return_stmt (RECUR (TREE_OPERAND (t, 0)));
13429 break;
13431 case EXPR_STMT:
13432 tmp = RECUR (EXPR_STMT_EXPR (t));
13433 if (EXPR_STMT_STMT_EXPR_RESULT (t))
13434 finish_stmt_expr_expr (tmp, cur_stmt_expr);
13435 else
13436 finish_expr_stmt (tmp);
13437 break;
13439 case USING_STMT:
13440 do_using_directive (USING_STMT_NAMESPACE (t));
13441 break;
13443 case DECL_EXPR:
13445 tree decl, pattern_decl;
13446 tree init;
13448 pattern_decl = decl = DECL_EXPR_DECL (t);
13449 if (TREE_CODE (decl) == LABEL_DECL)
13450 finish_label_decl (DECL_NAME (decl));
13451 else if (TREE_CODE (decl) == USING_DECL)
13453 tree scope = USING_DECL_SCOPE (decl);
13454 tree name = DECL_NAME (decl);
13455 tree decl;
13457 scope = tsubst (scope, args, complain, in_decl);
13458 decl = lookup_qualified_name (scope, name,
13459 /*is_type_p=*/false,
13460 /*complain=*/false);
13461 if (decl == error_mark_node || TREE_CODE (decl) == TREE_LIST)
13462 qualified_name_lookup_error (scope, name, decl, input_location);
13463 else
13464 do_local_using_decl (decl, scope, name);
13466 else if (DECL_PACK_P (decl))
13468 /* Don't build up decls for a variadic capture proxy, we'll
13469 instantiate the elements directly as needed. */
13470 break;
13472 else
13474 init = DECL_INITIAL (decl);
13475 decl = tsubst (decl, args, complain, in_decl);
13476 if (decl != error_mark_node)
13478 /* By marking the declaration as instantiated, we avoid
13479 trying to instantiate it. Since instantiate_decl can't
13480 handle local variables, and since we've already done
13481 all that needs to be done, that's the right thing to
13482 do. */
13483 if (VAR_P (decl))
13484 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
13485 if (VAR_P (decl)
13486 && ANON_AGGR_TYPE_P (TREE_TYPE (decl)))
13487 /* Anonymous aggregates are a special case. */
13488 finish_anon_union (decl);
13489 else if (is_capture_proxy (DECL_EXPR_DECL (t)))
13491 DECL_CONTEXT (decl) = current_function_decl;
13492 if (DECL_NAME (decl) == this_identifier)
13494 tree lam = DECL_CONTEXT (current_function_decl);
13495 lam = CLASSTYPE_LAMBDA_EXPR (lam);
13496 LAMBDA_EXPR_THIS_CAPTURE (lam) = decl;
13498 insert_capture_proxy (decl);
13500 else if (DECL_IMPLICIT_TYPEDEF_P (t))
13501 /* We already did a pushtag. */;
13502 else if (TREE_CODE (decl) == FUNCTION_DECL
13503 && DECL_OMP_DECLARE_REDUCTION_P (decl)
13504 && DECL_FUNCTION_SCOPE_P (pattern_decl))
13506 DECL_CONTEXT (decl) = NULL_TREE;
13507 pushdecl (decl);
13508 DECL_CONTEXT (decl) = current_function_decl;
13509 cp_check_omp_declare_reduction (decl);
13511 else
13513 int const_init = false;
13514 maybe_push_decl (decl);
13515 if (VAR_P (decl)
13516 && DECL_PRETTY_FUNCTION_P (decl))
13518 /* For __PRETTY_FUNCTION__ we have to adjust the
13519 initializer. */
13520 const char *const name
13521 = cxx_printable_name (current_function_decl, 2);
13522 init = cp_fname_init (name, &TREE_TYPE (decl));
13524 else
13526 tree t = RECUR (init);
13528 if (init && !t)
13530 /* If we had an initializer but it
13531 instantiated to nothing,
13532 value-initialize the object. This will
13533 only occur when the initializer was a
13534 pack expansion where the parameter packs
13535 used in that expansion were of length
13536 zero. */
13537 init = build_value_init (TREE_TYPE (decl),
13538 complain);
13539 if (TREE_CODE (init) == AGGR_INIT_EXPR)
13540 init = get_target_expr_sfinae (init, complain);
13542 else
13543 init = t;
13546 if (VAR_P (decl))
13547 const_init = (DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P
13548 (pattern_decl));
13549 cp_finish_decl (decl, init, const_init, NULL_TREE, 0);
13554 break;
13557 case FOR_STMT:
13558 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
13559 RECUR (FOR_INIT_STMT (t));
13560 finish_for_init_stmt (stmt);
13561 tmp = RECUR (FOR_COND (t));
13562 finish_for_cond (tmp, stmt, false);
13563 tmp = RECUR (FOR_EXPR (t));
13564 finish_for_expr (tmp, stmt);
13565 RECUR (FOR_BODY (t));
13566 finish_for_stmt (stmt);
13567 break;
13569 case RANGE_FOR_STMT:
13571 tree decl, expr;
13572 stmt = begin_for_stmt (NULL_TREE, NULL_TREE);
13573 decl = RANGE_FOR_DECL (t);
13574 decl = tsubst (decl, args, complain, in_decl);
13575 maybe_push_decl (decl);
13576 expr = RECUR (RANGE_FOR_EXPR (t));
13577 stmt = cp_convert_range_for (stmt, decl, expr, RANGE_FOR_IVDEP (t));
13578 RECUR (RANGE_FOR_BODY (t));
13579 finish_for_stmt (stmt);
13581 break;
13583 case WHILE_STMT:
13584 stmt = begin_while_stmt ();
13585 tmp = RECUR (WHILE_COND (t));
13586 finish_while_stmt_cond (tmp, stmt, false);
13587 RECUR (WHILE_BODY (t));
13588 finish_while_stmt (stmt);
13589 break;
13591 case DO_STMT:
13592 stmt = begin_do_stmt ();
13593 RECUR (DO_BODY (t));
13594 finish_do_body (stmt);
13595 tmp = RECUR (DO_COND (t));
13596 finish_do_stmt (tmp, stmt, false);
13597 break;
13599 case IF_STMT:
13600 stmt = begin_if_stmt ();
13601 tmp = RECUR (IF_COND (t));
13602 finish_if_stmt_cond (tmp, stmt);
13603 RECUR (THEN_CLAUSE (t));
13604 finish_then_clause (stmt);
13606 if (ELSE_CLAUSE (t))
13608 begin_else_clause (stmt);
13609 RECUR (ELSE_CLAUSE (t));
13610 finish_else_clause (stmt);
13613 finish_if_stmt (stmt);
13614 break;
13616 case BIND_EXPR:
13617 if (BIND_EXPR_BODY_BLOCK (t))
13618 stmt = begin_function_body ();
13619 else
13620 stmt = begin_compound_stmt (BIND_EXPR_TRY_BLOCK (t)
13621 ? BCS_TRY_BLOCK : 0);
13623 RECUR (BIND_EXPR_BODY (t));
13625 if (BIND_EXPR_BODY_BLOCK (t))
13626 finish_function_body (stmt);
13627 else
13628 finish_compound_stmt (stmt);
13629 break;
13631 case BREAK_STMT:
13632 finish_break_stmt ();
13633 break;
13635 case CONTINUE_STMT:
13636 finish_continue_stmt ();
13637 break;
13639 case SWITCH_STMT:
13640 stmt = begin_switch_stmt ();
13641 tmp = RECUR (SWITCH_STMT_COND (t));
13642 finish_switch_cond (tmp, stmt);
13643 RECUR (SWITCH_STMT_BODY (t));
13644 finish_switch_stmt (stmt);
13645 break;
13647 case CASE_LABEL_EXPR:
13648 finish_case_label (EXPR_LOCATION (t),
13649 RECUR (CASE_LOW (t)),
13650 RECUR (CASE_HIGH (t)));
13651 break;
13653 case LABEL_EXPR:
13655 tree decl = LABEL_EXPR_LABEL (t);
13656 tree label;
13658 label = finish_label_stmt (DECL_NAME (decl));
13659 if (DECL_ATTRIBUTES (decl) != NULL_TREE)
13660 cplus_decl_attributes (&label, DECL_ATTRIBUTES (decl), 0);
13662 break;
13664 case GOTO_EXPR:
13665 tmp = GOTO_DESTINATION (t);
13666 if (TREE_CODE (tmp) != LABEL_DECL)
13667 /* Computed goto's must be tsubst'd into. On the other hand,
13668 non-computed gotos must not be; the identifier in question
13669 will have no binding. */
13670 tmp = RECUR (tmp);
13671 else
13672 tmp = DECL_NAME (tmp);
13673 finish_goto_stmt (tmp);
13674 break;
13676 case ASM_EXPR:
13677 tmp = finish_asm_stmt
13678 (ASM_VOLATILE_P (t),
13679 RECUR (ASM_STRING (t)),
13680 tsubst_copy_asm_operands (ASM_OUTPUTS (t), args, complain, in_decl),
13681 tsubst_copy_asm_operands (ASM_INPUTS (t), args, complain, in_decl),
13682 tsubst_copy_asm_operands (ASM_CLOBBERS (t), args, complain, in_decl),
13683 tsubst_copy_asm_operands (ASM_LABELS (t), args, complain, in_decl));
13685 tree asm_expr = tmp;
13686 if (TREE_CODE (asm_expr) == CLEANUP_POINT_EXPR)
13687 asm_expr = TREE_OPERAND (asm_expr, 0);
13688 ASM_INPUT_P (asm_expr) = ASM_INPUT_P (t);
13690 break;
13692 case TRY_BLOCK:
13693 if (CLEANUP_P (t))
13695 stmt = begin_try_block ();
13696 RECUR (TRY_STMTS (t));
13697 finish_cleanup_try_block (stmt);
13698 finish_cleanup (RECUR (TRY_HANDLERS (t)), stmt);
13700 else
13702 tree compound_stmt = NULL_TREE;
13704 if (FN_TRY_BLOCK_P (t))
13705 stmt = begin_function_try_block (&compound_stmt);
13706 else
13707 stmt = begin_try_block ();
13709 RECUR (TRY_STMTS (t));
13711 if (FN_TRY_BLOCK_P (t))
13712 finish_function_try_block (stmt);
13713 else
13714 finish_try_block (stmt);
13716 RECUR (TRY_HANDLERS (t));
13717 if (FN_TRY_BLOCK_P (t))
13718 finish_function_handler_sequence (stmt, compound_stmt);
13719 else
13720 finish_handler_sequence (stmt);
13722 break;
13724 case HANDLER:
13726 tree decl = HANDLER_PARMS (t);
13728 if (decl)
13730 decl = tsubst (decl, args, complain, in_decl);
13731 /* Prevent instantiate_decl from trying to instantiate
13732 this variable. We've already done all that needs to be
13733 done. */
13734 if (decl != error_mark_node)
13735 DECL_TEMPLATE_INSTANTIATED (decl) = 1;
13737 stmt = begin_handler ();
13738 finish_handler_parms (decl, stmt);
13739 RECUR (HANDLER_BODY (t));
13740 finish_handler (stmt);
13742 break;
13744 case TAG_DEFN:
13745 tmp = tsubst (TREE_TYPE (t), args, complain, NULL_TREE);
13746 if (CLASS_TYPE_P (tmp))
13748 /* Local classes are not independent templates; they are
13749 instantiated along with their containing function. And this
13750 way we don't have to deal with pushing out of one local class
13751 to instantiate a member of another local class. */
13752 tree fn;
13753 /* Closures are handled by the LAMBDA_EXPR. */
13754 gcc_assert (!LAMBDA_TYPE_P (TREE_TYPE (t)));
13755 complete_type (tmp);
13756 for (fn = TYPE_METHODS (tmp); fn; fn = DECL_CHAIN (fn))
13757 if (!DECL_ARTIFICIAL (fn))
13758 instantiate_decl (fn, /*defer_ok*/0, /*expl_inst_class*/false);
13760 break;
13762 case STATIC_ASSERT:
13764 tree condition;
13766 ++c_inhibit_evaluation_warnings;
13767 condition =
13768 tsubst_expr (STATIC_ASSERT_CONDITION (t),
13769 args,
13770 complain, in_decl,
13771 /*integral_constant_expression_p=*/true);
13772 --c_inhibit_evaluation_warnings;
13774 finish_static_assert (condition,
13775 STATIC_ASSERT_MESSAGE (t),
13776 STATIC_ASSERT_SOURCE_LOCATION (t),
13777 /*member_p=*/false);
13779 break;
13781 case OMP_PARALLEL:
13782 tmp = tsubst_omp_clauses (OMP_PARALLEL_CLAUSES (t), false,
13783 args, complain, in_decl);
13784 stmt = begin_omp_parallel ();
13785 RECUR (OMP_PARALLEL_BODY (t));
13786 OMP_PARALLEL_COMBINED (finish_omp_parallel (tmp, stmt))
13787 = OMP_PARALLEL_COMBINED (t);
13788 break;
13790 case OMP_TASK:
13791 tmp = tsubst_omp_clauses (OMP_TASK_CLAUSES (t), false,
13792 args, complain, in_decl);
13793 stmt = begin_omp_task ();
13794 RECUR (OMP_TASK_BODY (t));
13795 finish_omp_task (tmp, stmt);
13796 break;
13798 case OMP_FOR:
13799 case OMP_SIMD:
13800 case CILK_SIMD:
13801 case OMP_DISTRIBUTE:
13803 tree clauses, body, pre_body;
13804 tree declv = NULL_TREE, initv = NULL_TREE, condv = NULL_TREE;
13805 tree incrv = NULL_TREE;
13806 int i;
13808 clauses = tsubst_omp_clauses (OMP_FOR_CLAUSES (t), false,
13809 args, complain, in_decl);
13810 if (OMP_FOR_INIT (t) != NULL_TREE)
13812 declv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
13813 initv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
13814 condv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
13815 incrv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t)));
13818 stmt = begin_omp_structured_block ();
13820 pre_body = push_stmt_list ();
13821 RECUR (OMP_FOR_PRE_BODY (t));
13822 pre_body = pop_stmt_list (pre_body);
13824 if (OMP_FOR_INIT (t) != NULL_TREE)
13825 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INIT (t)); i++)
13826 tsubst_omp_for_iterator (t, i, declv, initv, condv, incrv,
13827 &clauses, args, complain, in_decl,
13828 integral_constant_expression_p);
13830 body = push_stmt_list ();
13831 RECUR (OMP_FOR_BODY (t));
13832 body = pop_stmt_list (body);
13834 if (OMP_FOR_INIT (t) != NULL_TREE)
13835 t = finish_omp_for (EXPR_LOCATION (t), TREE_CODE (t), declv, initv,
13836 condv, incrv, body, pre_body, clauses);
13837 else
13839 t = make_node (TREE_CODE (t));
13840 TREE_TYPE (t) = void_type_node;
13841 OMP_FOR_BODY (t) = body;
13842 OMP_FOR_PRE_BODY (t) = pre_body;
13843 OMP_FOR_CLAUSES (t) = clauses;
13844 SET_EXPR_LOCATION (t, EXPR_LOCATION (t));
13845 add_stmt (t);
13848 add_stmt (finish_omp_structured_block (stmt));
13850 break;
13852 case OMP_SECTIONS:
13853 case OMP_SINGLE:
13854 case OMP_TEAMS:
13855 case OMP_TARGET_DATA:
13856 case OMP_TARGET:
13857 tmp = tsubst_omp_clauses (OMP_CLAUSES (t), false,
13858 args, complain, in_decl);
13859 stmt = push_stmt_list ();
13860 RECUR (OMP_BODY (t));
13861 stmt = pop_stmt_list (stmt);
13863 t = copy_node (t);
13864 OMP_BODY (t) = stmt;
13865 OMP_CLAUSES (t) = tmp;
13866 add_stmt (t);
13867 break;
13869 case OMP_TARGET_UPDATE:
13870 tmp = tsubst_omp_clauses (OMP_TARGET_UPDATE_CLAUSES (t), false,
13871 args, complain, in_decl);
13872 t = copy_node (t);
13873 OMP_CLAUSES (t) = tmp;
13874 add_stmt (t);
13875 break;
13877 case OMP_SECTION:
13878 case OMP_CRITICAL:
13879 case OMP_MASTER:
13880 case OMP_TASKGROUP:
13881 case OMP_ORDERED:
13882 stmt = push_stmt_list ();
13883 RECUR (OMP_BODY (t));
13884 stmt = pop_stmt_list (stmt);
13886 t = copy_node (t);
13887 OMP_BODY (t) = stmt;
13888 add_stmt (t);
13889 break;
13891 case OMP_ATOMIC:
13892 gcc_assert (OMP_ATOMIC_DEPENDENT_P (t));
13893 if (TREE_CODE (TREE_OPERAND (t, 1)) != MODIFY_EXPR)
13895 tree op1 = TREE_OPERAND (t, 1);
13896 tree rhs1 = NULL_TREE;
13897 tree lhs, rhs;
13898 if (TREE_CODE (op1) == COMPOUND_EXPR)
13900 rhs1 = RECUR (TREE_OPERAND (op1, 0));
13901 op1 = TREE_OPERAND (op1, 1);
13903 lhs = RECUR (TREE_OPERAND (op1, 0));
13904 rhs = RECUR (TREE_OPERAND (op1, 1));
13905 finish_omp_atomic (OMP_ATOMIC, TREE_CODE (op1), lhs, rhs,
13906 NULL_TREE, NULL_TREE, rhs1,
13907 OMP_ATOMIC_SEQ_CST (t));
13909 else
13911 tree op1 = TREE_OPERAND (t, 1);
13912 tree v = NULL_TREE, lhs, rhs = NULL_TREE, lhs1 = NULL_TREE;
13913 tree rhs1 = NULL_TREE;
13914 enum tree_code code = TREE_CODE (TREE_OPERAND (op1, 1));
13915 enum tree_code opcode = NOP_EXPR;
13916 if (code == OMP_ATOMIC_READ)
13918 v = RECUR (TREE_OPERAND (op1, 0));
13919 lhs = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
13921 else if (code == OMP_ATOMIC_CAPTURE_OLD
13922 || code == OMP_ATOMIC_CAPTURE_NEW)
13924 tree op11 = TREE_OPERAND (TREE_OPERAND (op1, 1), 1);
13925 v = RECUR (TREE_OPERAND (op1, 0));
13926 lhs1 = RECUR (TREE_OPERAND (TREE_OPERAND (op1, 1), 0));
13927 if (TREE_CODE (op11) == COMPOUND_EXPR)
13929 rhs1 = RECUR (TREE_OPERAND (op11, 0));
13930 op11 = TREE_OPERAND (op11, 1);
13932 lhs = RECUR (TREE_OPERAND (op11, 0));
13933 rhs = RECUR (TREE_OPERAND (op11, 1));
13934 opcode = TREE_CODE (op11);
13935 if (opcode == MODIFY_EXPR)
13936 opcode = NOP_EXPR;
13938 else
13940 code = OMP_ATOMIC;
13941 lhs = RECUR (TREE_OPERAND (op1, 0));
13942 rhs = RECUR (TREE_OPERAND (op1, 1));
13944 finish_omp_atomic (code, opcode, lhs, rhs, v, lhs1, rhs1,
13945 OMP_ATOMIC_SEQ_CST (t));
13947 break;
13949 case TRANSACTION_EXPR:
13951 int flags = 0;
13952 flags |= (TRANSACTION_EXPR_OUTER (t) ? TM_STMT_ATTR_OUTER : 0);
13953 flags |= (TRANSACTION_EXPR_RELAXED (t) ? TM_STMT_ATTR_RELAXED : 0);
13955 if (TRANSACTION_EXPR_IS_STMT (t))
13957 tree body = TRANSACTION_EXPR_BODY (t);
13958 tree noex = NULL_TREE;
13959 if (TREE_CODE (body) == MUST_NOT_THROW_EXPR)
13961 noex = MUST_NOT_THROW_COND (body);
13962 if (noex == NULL_TREE)
13963 noex = boolean_true_node;
13964 body = TREE_OPERAND (body, 0);
13966 stmt = begin_transaction_stmt (input_location, NULL, flags);
13967 RECUR (body);
13968 finish_transaction_stmt (stmt, NULL, flags, RECUR (noex));
13970 else
13972 stmt = build_transaction_expr (EXPR_LOCATION (t),
13973 RECUR (TRANSACTION_EXPR_BODY (t)),
13974 flags, NULL_TREE);
13975 RETURN (stmt);
13978 break;
13980 case MUST_NOT_THROW_EXPR:
13981 RETURN (build_must_not_throw_expr (RECUR (TREE_OPERAND (t, 0)),
13982 RECUR (MUST_NOT_THROW_COND (t))));
13984 case EXPR_PACK_EXPANSION:
13985 error ("invalid use of pack expansion expression");
13986 RETURN (error_mark_node);
13988 case NONTYPE_ARGUMENT_PACK:
13989 error ("use %<...%> to expand argument pack");
13990 RETURN (error_mark_node);
13992 case CILK_SPAWN_STMT:
13993 cfun->calls_cilk_spawn = 1;
13994 RETURN (build_cilk_spawn (EXPR_LOCATION (t), RECUR (CILK_SPAWN_FN (t))));
13996 case CILK_SYNC_STMT:
13997 RETURN (build_cilk_sync ());
13999 case COMPOUND_EXPR:
14000 tmp = RECUR (TREE_OPERAND (t, 0));
14001 if (tmp == NULL_TREE)
14002 /* If the first operand was a statement, we're done with it. */
14003 RETURN (RECUR (TREE_OPERAND (t, 1)));
14004 RETURN (build_x_compound_expr (EXPR_LOCATION (t), tmp,
14005 RECUR (TREE_OPERAND (t, 1)),
14006 complain));
14008 case ANNOTATE_EXPR:
14009 tmp = RECUR (TREE_OPERAND (t, 0));
14010 RETURN (build2_loc (EXPR_LOCATION (t), ANNOTATE_EXPR,
14011 TREE_TYPE (tmp), tmp, RECUR (TREE_OPERAND (t, 1))));
14013 default:
14014 gcc_assert (!STATEMENT_CODE_P (TREE_CODE (t)));
14016 RETURN (tsubst_copy_and_build (t, args, complain, in_decl,
14017 /*function_p=*/false,
14018 integral_constant_expression_p));
14021 RETURN (NULL_TREE);
14022 out:
14023 input_location = loc;
14024 return r;
14025 #undef RECUR
14026 #undef RETURN
14029 /* Instantiate the special body of the artificial DECL_OMP_DECLARE_REDUCTION
14030 function. For description of the body see comment above
14031 cp_parser_omp_declare_reduction_exprs. */
14033 static void
14034 tsubst_omp_udr (tree t, tree args, tsubst_flags_t complain, tree in_decl)
14036 if (t == NULL_TREE || t == error_mark_node)
14037 return;
14039 gcc_assert (TREE_CODE (t) == STATEMENT_LIST);
14041 tree_stmt_iterator tsi;
14042 int i;
14043 tree stmts[7];
14044 memset (stmts, 0, sizeof stmts);
14045 for (i = 0, tsi = tsi_start (t);
14046 i < 7 && !tsi_end_p (tsi);
14047 i++, tsi_next (&tsi))
14048 stmts[i] = tsi_stmt (tsi);
14049 gcc_assert (tsi_end_p (tsi));
14051 if (i >= 3)
14053 gcc_assert (TREE_CODE (stmts[0]) == DECL_EXPR
14054 && TREE_CODE (stmts[1]) == DECL_EXPR);
14055 tree omp_out = tsubst (DECL_EXPR_DECL (stmts[0]),
14056 args, complain, in_decl);
14057 tree omp_in = tsubst (DECL_EXPR_DECL (stmts[1]),
14058 args, complain, in_decl);
14059 DECL_CONTEXT (omp_out) = current_function_decl;
14060 DECL_CONTEXT (omp_in) = current_function_decl;
14061 keep_next_level (true);
14062 tree block = begin_omp_structured_block ();
14063 tsubst_expr (stmts[2], args, complain, in_decl, false);
14064 block = finish_omp_structured_block (block);
14065 block = maybe_cleanup_point_expr_void (block);
14066 add_decl_expr (omp_out);
14067 if (TREE_NO_WARNING (DECL_EXPR_DECL (stmts[0])))
14068 TREE_NO_WARNING (omp_out) = 1;
14069 add_decl_expr (omp_in);
14070 finish_expr_stmt (block);
14072 if (i >= 6)
14074 gcc_assert (TREE_CODE (stmts[3]) == DECL_EXPR
14075 && TREE_CODE (stmts[4]) == DECL_EXPR);
14076 tree omp_priv = tsubst (DECL_EXPR_DECL (stmts[3]),
14077 args, complain, in_decl);
14078 tree omp_orig = tsubst (DECL_EXPR_DECL (stmts[4]),
14079 args, complain, in_decl);
14080 DECL_CONTEXT (omp_priv) = current_function_decl;
14081 DECL_CONTEXT (omp_orig) = current_function_decl;
14082 keep_next_level (true);
14083 tree block = begin_omp_structured_block ();
14084 tsubst_expr (stmts[5], args, complain, in_decl, false);
14085 block = finish_omp_structured_block (block);
14086 block = maybe_cleanup_point_expr_void (block);
14087 cp_walk_tree (&block, cp_remove_omp_priv_cleanup_stmt, omp_priv, NULL);
14088 add_decl_expr (omp_priv);
14089 add_decl_expr (omp_orig);
14090 finish_expr_stmt (block);
14091 if (i == 7)
14092 add_decl_expr (omp_orig);
14096 /* T is a postfix-expression that is not being used in a function
14097 call. Return the substituted version of T. */
14099 static tree
14100 tsubst_non_call_postfix_expression (tree t, tree args,
14101 tsubst_flags_t complain,
14102 tree in_decl)
14104 if (TREE_CODE (t) == SCOPE_REF)
14105 t = tsubst_qualified_id (t, args, complain, in_decl,
14106 /*done=*/false, /*address_p=*/false);
14107 else
14108 t = tsubst_copy_and_build (t, args, complain, in_decl,
14109 /*function_p=*/false,
14110 /*integral_constant_expression_p=*/false);
14112 return t;
14115 /* Sentinel to disable certain warnings during template substitution. */
14117 struct warning_sentinel {
14118 int &flag;
14119 int val;
14120 warning_sentinel(int& flag, bool suppress=true)
14121 : flag(flag), val(flag) { if (suppress) flag = 0; }
14122 ~warning_sentinel() { flag = val; }
14125 /* Like tsubst but deals with expressions and performs semantic
14126 analysis. FUNCTION_P is true if T is the "F" in "F (ARGS)". */
14128 tree
14129 tsubst_copy_and_build (tree t,
14130 tree args,
14131 tsubst_flags_t complain,
14132 tree in_decl,
14133 bool function_p,
14134 bool integral_constant_expression_p)
14136 #define RETURN(EXP) do { retval = (EXP); goto out; } while(0)
14137 #define RECUR(NODE) \
14138 tsubst_copy_and_build (NODE, args, complain, in_decl, \
14139 /*function_p=*/false, \
14140 integral_constant_expression_p)
14142 tree retval, op1;
14143 location_t loc;
14145 if (t == NULL_TREE || t == error_mark_node)
14146 return t;
14148 loc = input_location;
14149 if (EXPR_HAS_LOCATION (t))
14150 input_location = EXPR_LOCATION (t);
14152 /* N3276 decltype magic only applies to calls at the top level or on the
14153 right side of a comma. */
14154 tsubst_flags_t decltype_flag = (complain & tf_decltype);
14155 complain &= ~tf_decltype;
14157 switch (TREE_CODE (t))
14159 case USING_DECL:
14160 t = DECL_NAME (t);
14161 /* Fall through. */
14162 case IDENTIFIER_NODE:
14164 tree decl;
14165 cp_id_kind idk;
14166 bool non_integral_constant_expression_p;
14167 const char *error_msg;
14169 if (IDENTIFIER_TYPENAME_P (t))
14171 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14172 t = mangle_conv_op_name_for_type (new_type);
14175 /* Look up the name. */
14176 decl = lookup_name (t);
14178 /* By convention, expressions use ERROR_MARK_NODE to indicate
14179 failure, not NULL_TREE. */
14180 if (decl == NULL_TREE)
14181 decl = error_mark_node;
14183 decl = finish_id_expression (t, decl, NULL_TREE,
14184 &idk,
14185 integral_constant_expression_p,
14186 /*allow_non_integral_constant_expression_p=*/(cxx_dialect >= cxx11),
14187 &non_integral_constant_expression_p,
14188 /*template_p=*/false,
14189 /*done=*/true,
14190 /*address_p=*/false,
14191 /*template_arg_p=*/false,
14192 &error_msg,
14193 input_location);
14194 if (error_msg)
14195 error (error_msg);
14196 if (!function_p && identifier_p (decl))
14198 if (complain & tf_error)
14199 unqualified_name_lookup_error (decl);
14200 decl = error_mark_node;
14202 RETURN (decl);
14205 case TEMPLATE_ID_EXPR:
14207 tree object;
14208 tree templ = RECUR (TREE_OPERAND (t, 0));
14209 tree targs = TREE_OPERAND (t, 1);
14211 if (targs)
14212 targs = tsubst_template_args (targs, args, complain, in_decl);
14214 if (TREE_CODE (templ) == COMPONENT_REF)
14216 object = TREE_OPERAND (templ, 0);
14217 templ = TREE_OPERAND (templ, 1);
14219 else
14220 object = NULL_TREE;
14221 templ = lookup_template_function (templ, targs);
14223 if (object)
14224 RETURN (build3 (COMPONENT_REF, TREE_TYPE (templ),
14225 object, templ, NULL_TREE));
14226 else
14227 RETURN (baselink_for_fns (templ));
14230 case INDIRECT_REF:
14232 tree r = RECUR (TREE_OPERAND (t, 0));
14234 if (REFERENCE_REF_P (t))
14236 /* A type conversion to reference type will be enclosed in
14237 such an indirect ref, but the substitution of the cast
14238 will have also added such an indirect ref. */
14239 if (TREE_CODE (TREE_TYPE (r)) == REFERENCE_TYPE)
14240 r = convert_from_reference (r);
14242 else
14243 r = build_x_indirect_ref (input_location, r, RO_UNARY_STAR,
14244 complain|decltype_flag);
14245 RETURN (r);
14248 case NOP_EXPR:
14249 RETURN (build_nop
14250 (tsubst (TREE_TYPE (t), args, complain, in_decl),
14251 RECUR (TREE_OPERAND (t, 0))));
14253 case IMPLICIT_CONV_EXPR:
14255 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14256 tree expr = RECUR (TREE_OPERAND (t, 0));
14257 int flags = LOOKUP_IMPLICIT;
14258 if (IMPLICIT_CONV_EXPR_DIRECT_INIT (t))
14259 flags = LOOKUP_NORMAL;
14260 RETURN (perform_implicit_conversion_flags (type, expr, complain,
14261 flags));
14264 case CONVERT_EXPR:
14265 RETURN (build1
14266 (CONVERT_EXPR,
14267 tsubst (TREE_TYPE (t), args, complain, in_decl),
14268 RECUR (TREE_OPERAND (t, 0))));
14270 case CAST_EXPR:
14271 case REINTERPRET_CAST_EXPR:
14272 case CONST_CAST_EXPR:
14273 case DYNAMIC_CAST_EXPR:
14274 case STATIC_CAST_EXPR:
14276 tree type;
14277 tree op, r = NULL_TREE;
14279 type = tsubst (TREE_TYPE (t), args, complain, in_decl);
14280 if (integral_constant_expression_p
14281 && !cast_valid_in_integral_constant_expression_p (type))
14283 if (complain & tf_error)
14284 error ("a cast to a type other than an integral or "
14285 "enumeration type cannot appear in a constant-expression");
14286 RETURN (error_mark_node);
14289 op = RECUR (TREE_OPERAND (t, 0));
14291 warning_sentinel s(warn_useless_cast);
14292 switch (TREE_CODE (t))
14294 case CAST_EXPR:
14295 r = build_functional_cast (type, op, complain);
14296 break;
14297 case REINTERPRET_CAST_EXPR:
14298 r = build_reinterpret_cast (type, op, complain);
14299 break;
14300 case CONST_CAST_EXPR:
14301 r = build_const_cast (type, op, complain);
14302 break;
14303 case DYNAMIC_CAST_EXPR:
14304 r = build_dynamic_cast (type, op, complain);
14305 break;
14306 case STATIC_CAST_EXPR:
14307 r = build_static_cast (type, op, complain);
14308 break;
14309 default:
14310 gcc_unreachable ();
14313 RETURN (r);
14316 case POSTDECREMENT_EXPR:
14317 case POSTINCREMENT_EXPR:
14318 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
14319 args, complain, in_decl);
14320 RETURN (build_x_unary_op (input_location, TREE_CODE (t), op1,
14321 complain|decltype_flag));
14323 case PREDECREMENT_EXPR:
14324 case PREINCREMENT_EXPR:
14325 case NEGATE_EXPR:
14326 case BIT_NOT_EXPR:
14327 case ABS_EXPR:
14328 case TRUTH_NOT_EXPR:
14329 case UNARY_PLUS_EXPR: /* Unary + */
14330 case REALPART_EXPR:
14331 case IMAGPART_EXPR:
14332 RETURN (build_x_unary_op (input_location, TREE_CODE (t),
14333 RECUR (TREE_OPERAND (t, 0)),
14334 complain|decltype_flag));
14336 case FIX_TRUNC_EXPR:
14337 RETURN (cp_build_unary_op (FIX_TRUNC_EXPR, RECUR (TREE_OPERAND (t, 0)),
14338 0, complain));
14340 case ADDR_EXPR:
14341 op1 = TREE_OPERAND (t, 0);
14342 if (TREE_CODE (op1) == LABEL_DECL)
14343 RETURN (finish_label_address_expr (DECL_NAME (op1),
14344 EXPR_LOCATION (op1)));
14345 if (TREE_CODE (op1) == SCOPE_REF)
14346 op1 = tsubst_qualified_id (op1, args, complain, in_decl,
14347 /*done=*/true, /*address_p=*/true);
14348 else
14349 op1 = tsubst_non_call_postfix_expression (op1, args, complain,
14350 in_decl);
14351 RETURN (build_x_unary_op (input_location, ADDR_EXPR, op1,
14352 complain|decltype_flag));
14354 case PLUS_EXPR:
14355 case MINUS_EXPR:
14356 case MULT_EXPR:
14357 case TRUNC_DIV_EXPR:
14358 case CEIL_DIV_EXPR:
14359 case FLOOR_DIV_EXPR:
14360 case ROUND_DIV_EXPR:
14361 case EXACT_DIV_EXPR:
14362 case BIT_AND_EXPR:
14363 case BIT_IOR_EXPR:
14364 case BIT_XOR_EXPR:
14365 case TRUNC_MOD_EXPR:
14366 case FLOOR_MOD_EXPR:
14367 case TRUTH_ANDIF_EXPR:
14368 case TRUTH_ORIF_EXPR:
14369 case TRUTH_AND_EXPR:
14370 case TRUTH_OR_EXPR:
14371 case RSHIFT_EXPR:
14372 case LSHIFT_EXPR:
14373 case RROTATE_EXPR:
14374 case LROTATE_EXPR:
14375 case EQ_EXPR:
14376 case NE_EXPR:
14377 case MAX_EXPR:
14378 case MIN_EXPR:
14379 case LE_EXPR:
14380 case GE_EXPR:
14381 case LT_EXPR:
14382 case GT_EXPR:
14383 case MEMBER_REF:
14384 case DOTSTAR_EXPR:
14386 warning_sentinel s1(warn_type_limits);
14387 warning_sentinel s2(warn_div_by_zero);
14388 tree r = build_x_binary_op
14389 (input_location, TREE_CODE (t),
14390 RECUR (TREE_OPERAND (t, 0)),
14391 (TREE_NO_WARNING (TREE_OPERAND (t, 0))
14392 ? ERROR_MARK
14393 : TREE_CODE (TREE_OPERAND (t, 0))),
14394 RECUR (TREE_OPERAND (t, 1)),
14395 (TREE_NO_WARNING (TREE_OPERAND (t, 1))
14396 ? ERROR_MARK
14397 : TREE_CODE (TREE_OPERAND (t, 1))),
14398 /*overload=*/NULL,
14399 complain|decltype_flag);
14400 if (EXPR_P (r) && TREE_NO_WARNING (t))
14401 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
14403 RETURN (r);
14406 case POINTER_PLUS_EXPR:
14407 return fold_build_pointer_plus (RECUR (TREE_OPERAND (t, 0)),
14408 RECUR (TREE_OPERAND (t, 1)));
14410 case SCOPE_REF:
14411 RETURN (tsubst_qualified_id (t, args, complain, in_decl, /*done=*/true,
14412 /*address_p=*/false));
14413 case ARRAY_REF:
14414 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
14415 args, complain, in_decl);
14416 RETURN (build_x_array_ref (EXPR_LOCATION (t), op1,
14417 RECUR (TREE_OPERAND (t, 1)),
14418 complain|decltype_flag));
14420 case ARRAY_NOTATION_REF:
14422 tree start_index, length, stride;
14423 op1 = tsubst_non_call_postfix_expression (ARRAY_NOTATION_ARRAY (t),
14424 args, complain, in_decl);
14425 start_index = RECUR (ARRAY_NOTATION_START (t));
14426 length = RECUR (ARRAY_NOTATION_LENGTH (t));
14427 stride = RECUR (ARRAY_NOTATION_STRIDE (t));
14428 RETURN (build_array_notation_ref (EXPR_LOCATION (t), op1, start_index,
14429 length, stride, TREE_TYPE (op1)));
14431 case SIZEOF_EXPR:
14432 if (PACK_EXPANSION_P (TREE_OPERAND (t, 0)))
14433 RETURN (tsubst_copy (t, args, complain, in_decl));
14434 /* Fall through */
14436 case ALIGNOF_EXPR:
14438 tree r;
14440 op1 = TREE_OPERAND (t, 0);
14441 if (TREE_CODE (t) == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (t))
14442 op1 = TREE_TYPE (op1);
14443 if (!args)
14445 /* When there are no ARGS, we are trying to evaluate a
14446 non-dependent expression from the parser. Trying to do
14447 the substitutions may not work. */
14448 if (!TYPE_P (op1))
14449 op1 = TREE_TYPE (op1);
14451 else
14453 ++cp_unevaluated_operand;
14454 ++c_inhibit_evaluation_warnings;
14455 if (TYPE_P (op1))
14456 op1 = tsubst (op1, args, complain, in_decl);
14457 else
14458 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
14459 /*function_p=*/false,
14460 /*integral_constant_expression_p=*/
14461 false);
14462 --cp_unevaluated_operand;
14463 --c_inhibit_evaluation_warnings;
14465 if (TYPE_P (op1))
14466 r = cxx_sizeof_or_alignof_type (op1, TREE_CODE (t),
14467 complain & tf_error);
14468 else
14469 r = cxx_sizeof_or_alignof_expr (op1, TREE_CODE (t),
14470 complain & tf_error);
14471 if (TREE_CODE (t) == SIZEOF_EXPR && r != error_mark_node)
14473 if (TREE_CODE (r) != SIZEOF_EXPR || TYPE_P (op1))
14475 if (!processing_template_decl && TYPE_P (op1))
14477 r = build_min (SIZEOF_EXPR, size_type_node,
14478 build1 (NOP_EXPR, op1, error_mark_node));
14479 SIZEOF_EXPR_TYPE_P (r) = 1;
14481 else
14482 r = build_min (SIZEOF_EXPR, size_type_node, op1);
14483 TREE_SIDE_EFFECTS (r) = 0;
14484 TREE_READONLY (r) = 1;
14486 SET_EXPR_LOCATION (r, EXPR_LOCATION (t));
14488 RETURN (r);
14491 case AT_ENCODE_EXPR:
14493 op1 = TREE_OPERAND (t, 0);
14494 ++cp_unevaluated_operand;
14495 ++c_inhibit_evaluation_warnings;
14496 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
14497 /*function_p=*/false,
14498 /*integral_constant_expression_p=*/false);
14499 --cp_unevaluated_operand;
14500 --c_inhibit_evaluation_warnings;
14501 RETURN (objc_build_encode_expr (op1));
14504 case NOEXCEPT_EXPR:
14505 op1 = TREE_OPERAND (t, 0);
14506 ++cp_unevaluated_operand;
14507 ++c_inhibit_evaluation_warnings;
14508 op1 = tsubst_copy_and_build (op1, args, complain, in_decl,
14509 /*function_p=*/false,
14510 /*integral_constant_expression_p=*/false);
14511 --cp_unevaluated_operand;
14512 --c_inhibit_evaluation_warnings;
14513 RETURN (finish_noexcept_expr (op1, complain));
14515 case MODOP_EXPR:
14517 warning_sentinel s(warn_div_by_zero);
14518 tree r = build_x_modify_expr
14519 (EXPR_LOCATION (t),
14520 RECUR (TREE_OPERAND (t, 0)),
14521 TREE_CODE (TREE_OPERAND (t, 1)),
14522 RECUR (TREE_OPERAND (t, 2)),
14523 complain|decltype_flag);
14524 /* TREE_NO_WARNING must be set if either the expression was
14525 parenthesized or it uses an operator such as >>= rather
14526 than plain assignment. In the former case, it was already
14527 set and must be copied. In the latter case,
14528 build_x_modify_expr sets it and it must not be reset
14529 here. */
14530 if (TREE_NO_WARNING (t))
14531 TREE_NO_WARNING (r) = TREE_NO_WARNING (t);
14533 RETURN (r);
14536 case ARROW_EXPR:
14537 op1 = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
14538 args, complain, in_decl);
14539 /* Remember that there was a reference to this entity. */
14540 if (DECL_P (op1))
14541 mark_used (op1);
14542 RETURN (build_x_arrow (input_location, op1, complain));
14544 case NEW_EXPR:
14546 tree placement = RECUR (TREE_OPERAND (t, 0));
14547 tree init = RECUR (TREE_OPERAND (t, 3));
14548 vec<tree, va_gc> *placement_vec;
14549 vec<tree, va_gc> *init_vec;
14550 tree ret;
14552 if (placement == NULL_TREE)
14553 placement_vec = NULL;
14554 else
14556 placement_vec = make_tree_vector ();
14557 for (; placement != NULL_TREE; placement = TREE_CHAIN (placement))
14558 vec_safe_push (placement_vec, TREE_VALUE (placement));
14561 /* If there was an initializer in the original tree, but it
14562 instantiated to an empty list, then we should pass a
14563 non-NULL empty vector to tell build_new that it was an
14564 empty initializer() rather than no initializer. This can
14565 only happen when the initializer is a pack expansion whose
14566 parameter packs are of length zero. */
14567 if (init == NULL_TREE && TREE_OPERAND (t, 3) == NULL_TREE)
14568 init_vec = NULL;
14569 else
14571 init_vec = make_tree_vector ();
14572 if (init == void_zero_node)
14573 gcc_assert (init_vec != NULL);
14574 else
14576 for (; init != NULL_TREE; init = TREE_CHAIN (init))
14577 vec_safe_push (init_vec, TREE_VALUE (init));
14581 ret = build_new (&placement_vec,
14582 tsubst (TREE_OPERAND (t, 1), args, complain, in_decl),
14583 RECUR (TREE_OPERAND (t, 2)),
14584 &init_vec,
14585 NEW_EXPR_USE_GLOBAL (t),
14586 complain);
14588 if (placement_vec != NULL)
14589 release_tree_vector (placement_vec);
14590 if (init_vec != NULL)
14591 release_tree_vector (init_vec);
14593 RETURN (ret);
14596 case DELETE_EXPR:
14597 RETURN (delete_sanity
14598 (RECUR (TREE_OPERAND (t, 0)),
14599 RECUR (TREE_OPERAND (t, 1)),
14600 DELETE_EXPR_USE_VEC (t),
14601 DELETE_EXPR_USE_GLOBAL (t),
14602 complain));
14604 case COMPOUND_EXPR:
14606 tree op0 = tsubst_copy_and_build (TREE_OPERAND (t, 0), args,
14607 complain & ~tf_decltype, in_decl,
14608 /*function_p=*/false,
14609 integral_constant_expression_p);
14610 RETURN (build_x_compound_expr (EXPR_LOCATION (t),
14611 op0,
14612 RECUR (TREE_OPERAND (t, 1)),
14613 complain|decltype_flag));
14616 case CALL_EXPR:
14618 tree function;
14619 vec<tree, va_gc> *call_args;
14620 unsigned int nargs, i;
14621 bool qualified_p;
14622 bool koenig_p;
14623 tree ret;
14625 function = CALL_EXPR_FN (t);
14626 /* When we parsed the expression, we determined whether or
14627 not Koenig lookup should be performed. */
14628 koenig_p = KOENIG_LOOKUP_P (t);
14629 if (TREE_CODE (function) == SCOPE_REF)
14631 qualified_p = true;
14632 function = tsubst_qualified_id (function, args, complain, in_decl,
14633 /*done=*/false,
14634 /*address_p=*/false);
14636 else if (koenig_p && identifier_p (function))
14638 /* Do nothing; calling tsubst_copy_and_build on an identifier
14639 would incorrectly perform unqualified lookup again.
14641 Note that we can also have an IDENTIFIER_NODE if the earlier
14642 unqualified lookup found a member function; in that case
14643 koenig_p will be false and we do want to do the lookup
14644 again to find the instantiated member function.
14646 FIXME but doing that causes c++/15272, so we need to stop
14647 using IDENTIFIER_NODE in that situation. */
14648 qualified_p = false;
14650 else
14652 if (TREE_CODE (function) == COMPONENT_REF)
14654 tree op = TREE_OPERAND (function, 1);
14656 qualified_p = (TREE_CODE (op) == SCOPE_REF
14657 || (BASELINK_P (op)
14658 && BASELINK_QUALIFIED_P (op)));
14660 else
14661 qualified_p = false;
14663 if (TREE_CODE (function) == ADDR_EXPR
14664 && TREE_CODE (TREE_OPERAND (function, 0)) == FUNCTION_DECL)
14665 /* Avoid error about taking the address of a constructor. */
14666 function = TREE_OPERAND (function, 0);
14668 function = tsubst_copy_and_build (function, args, complain,
14669 in_decl,
14670 !qualified_p,
14671 integral_constant_expression_p);
14673 if (BASELINK_P (function))
14674 qualified_p = true;
14677 nargs = call_expr_nargs (t);
14678 call_args = make_tree_vector ();
14679 for (i = 0; i < nargs; ++i)
14681 tree arg = CALL_EXPR_ARG (t, i);
14683 if (!PACK_EXPANSION_P (arg))
14684 vec_safe_push (call_args, RECUR (CALL_EXPR_ARG (t, i)));
14685 else
14687 /* Expand the pack expansion and push each entry onto
14688 CALL_ARGS. */
14689 arg = tsubst_pack_expansion (arg, args, complain, in_decl);
14690 if (TREE_CODE (arg) == TREE_VEC)
14692 unsigned int len, j;
14694 len = TREE_VEC_LENGTH (arg);
14695 for (j = 0; j < len; ++j)
14697 tree value = TREE_VEC_ELT (arg, j);
14698 if (value != NULL_TREE)
14699 value = convert_from_reference (value);
14700 vec_safe_push (call_args, value);
14703 else
14705 /* A partial substitution. Add one entry. */
14706 vec_safe_push (call_args, arg);
14711 /* We do not perform argument-dependent lookup if normal
14712 lookup finds a non-function, in accordance with the
14713 expected resolution of DR 218. */
14714 if (koenig_p
14715 && ((is_overloaded_fn (function)
14716 /* If lookup found a member function, the Koenig lookup is
14717 not appropriate, even if an unqualified-name was used
14718 to denote the function. */
14719 && !DECL_FUNCTION_MEMBER_P (get_first_fn (function)))
14720 || identifier_p (function))
14721 /* Only do this when substitution turns a dependent call
14722 into a non-dependent call. */
14723 && type_dependent_expression_p_push (t)
14724 && !any_type_dependent_arguments_p (call_args))
14725 function = perform_koenig_lookup (function, call_args, tf_none);
14727 if (identifier_p (function)
14728 && !any_type_dependent_arguments_p (call_args))
14730 if (koenig_p && (complain & tf_warning_or_error))
14732 /* For backwards compatibility and good diagnostics, try
14733 the unqualified lookup again if we aren't in SFINAE
14734 context. */
14735 tree unq = (tsubst_copy_and_build
14736 (function, args, complain, in_decl, true,
14737 integral_constant_expression_p));
14738 if (unq == error_mark_node)
14739 RETURN (error_mark_node);
14741 if (unq != function)
14743 tree fn = unq;
14744 if (INDIRECT_REF_P (fn))
14745 fn = TREE_OPERAND (fn, 0);
14746 if (TREE_CODE (fn) == COMPONENT_REF)
14747 fn = TREE_OPERAND (fn, 1);
14748 if (is_overloaded_fn (fn))
14749 fn = get_first_fn (fn);
14750 if (permerror (EXPR_LOC_OR_LOC (t, input_location),
14751 "%qD was not declared in this scope, "
14752 "and no declarations were found by "
14753 "argument-dependent lookup at the point "
14754 "of instantiation", function))
14756 if (!DECL_P (fn))
14757 /* Can't say anything more. */;
14758 else if (DECL_CLASS_SCOPE_P (fn))
14760 location_t loc = EXPR_LOC_OR_LOC (t,
14761 input_location);
14762 inform (loc,
14763 "declarations in dependent base %qT are "
14764 "not found by unqualified lookup",
14765 DECL_CLASS_CONTEXT (fn));
14766 if (current_class_ptr)
14767 inform (loc,
14768 "use %<this->%D%> instead", function);
14769 else
14770 inform (loc,
14771 "use %<%T::%D%> instead",
14772 current_class_name, function);
14774 else
14775 inform (0, "%q+D declared here, later in the "
14776 "translation unit", fn);
14778 function = unq;
14781 if (identifier_p (function))
14783 if (complain & tf_error)
14784 unqualified_name_lookup_error (function);
14785 release_tree_vector (call_args);
14786 RETURN (error_mark_node);
14790 /* Remember that there was a reference to this entity. */
14791 if (DECL_P (function))
14792 mark_used (function);
14794 /* Put back tf_decltype for the actual call. */
14795 complain |= decltype_flag;
14797 if (TREE_CODE (function) == OFFSET_REF)
14798 ret = build_offset_ref_call_from_tree (function, &call_args,
14799 complain);
14800 else if (TREE_CODE (function) == COMPONENT_REF)
14802 tree instance = TREE_OPERAND (function, 0);
14803 tree fn = TREE_OPERAND (function, 1);
14805 if (processing_template_decl
14806 && (type_dependent_expression_p (instance)
14807 || (!BASELINK_P (fn)
14808 && TREE_CODE (fn) != FIELD_DECL)
14809 || type_dependent_expression_p (fn)
14810 || any_type_dependent_arguments_p (call_args)))
14811 ret = build_nt_call_vec (function, call_args);
14812 else if (!BASELINK_P (fn))
14813 ret = finish_call_expr (function, &call_args,
14814 /*disallow_virtual=*/false,
14815 /*koenig_p=*/false,
14816 complain);
14817 else
14818 ret = (build_new_method_call
14819 (instance, fn,
14820 &call_args, NULL_TREE,
14821 qualified_p ? LOOKUP_NONVIRTUAL : LOOKUP_NORMAL,
14822 /*fn_p=*/NULL,
14823 complain));
14825 else
14826 ret = finish_call_expr (function, &call_args,
14827 /*disallow_virtual=*/qualified_p,
14828 koenig_p,
14829 complain);
14831 release_tree_vector (call_args);
14833 RETURN (ret);
14836 case COND_EXPR:
14838 tree cond = RECUR (TREE_OPERAND (t, 0));
14839 tree exp1, exp2;
14841 if (TREE_CODE (cond) == INTEGER_CST)
14843 if (integer_zerop (cond))
14845 ++c_inhibit_evaluation_warnings;
14846 exp1 = RECUR (TREE_OPERAND (t, 1));
14847 --c_inhibit_evaluation_warnings;
14848 exp2 = RECUR (TREE_OPERAND (t, 2));
14850 else
14852 exp1 = RECUR (TREE_OPERAND (t, 1));
14853 ++c_inhibit_evaluation_warnings;
14854 exp2 = RECUR (TREE_OPERAND (t, 2));
14855 --c_inhibit_evaluation_warnings;
14858 else
14860 exp1 = RECUR (TREE_OPERAND (t, 1));
14861 exp2 = RECUR (TREE_OPERAND (t, 2));
14864 RETURN (build_x_conditional_expr (EXPR_LOCATION (t),
14865 cond, exp1, exp2, complain));
14868 case PSEUDO_DTOR_EXPR:
14869 RETURN (finish_pseudo_destructor_expr
14870 (RECUR (TREE_OPERAND (t, 0)),
14871 RECUR (TREE_OPERAND (t, 1)),
14872 tsubst (TREE_OPERAND (t, 2), args, complain, in_decl),
14873 input_location));
14875 case TREE_LIST:
14877 tree purpose, value, chain;
14879 if (t == void_list_node)
14880 RETURN (t);
14882 if ((TREE_PURPOSE (t) && PACK_EXPANSION_P (TREE_PURPOSE (t)))
14883 || (TREE_VALUE (t) && PACK_EXPANSION_P (TREE_VALUE (t))))
14885 /* We have pack expansions, so expand those and
14886 create a new list out of it. */
14887 tree purposevec = NULL_TREE;
14888 tree valuevec = NULL_TREE;
14889 tree chain;
14890 int i, len = -1;
14892 /* Expand the argument expressions. */
14893 if (TREE_PURPOSE (t))
14894 purposevec = tsubst_pack_expansion (TREE_PURPOSE (t), args,
14895 complain, in_decl);
14896 if (TREE_VALUE (t))
14897 valuevec = tsubst_pack_expansion (TREE_VALUE (t), args,
14898 complain, in_decl);
14900 /* Build the rest of the list. */
14901 chain = TREE_CHAIN (t);
14902 if (chain && chain != void_type_node)
14903 chain = RECUR (chain);
14905 /* Determine the number of arguments. */
14906 if (purposevec && TREE_CODE (purposevec) == TREE_VEC)
14908 len = TREE_VEC_LENGTH (purposevec);
14909 gcc_assert (!valuevec || len == TREE_VEC_LENGTH (valuevec));
14911 else if (TREE_CODE (valuevec) == TREE_VEC)
14912 len = TREE_VEC_LENGTH (valuevec);
14913 else
14915 /* Since we only performed a partial substitution into
14916 the argument pack, we only RETURN (a single list
14917 node. */
14918 if (purposevec == TREE_PURPOSE (t)
14919 && valuevec == TREE_VALUE (t)
14920 && chain == TREE_CHAIN (t))
14921 RETURN (t);
14923 RETURN (tree_cons (purposevec, valuevec, chain));
14926 /* Convert the argument vectors into a TREE_LIST */
14927 i = len;
14928 while (i > 0)
14930 /* Grab the Ith values. */
14931 i--;
14932 purpose = purposevec ? TREE_VEC_ELT (purposevec, i)
14933 : NULL_TREE;
14934 value
14935 = valuevec ? convert_from_reference (TREE_VEC_ELT (valuevec, i))
14936 : NULL_TREE;
14938 /* Build the list (backwards). */
14939 chain = tree_cons (purpose, value, chain);
14942 RETURN (chain);
14945 purpose = TREE_PURPOSE (t);
14946 if (purpose)
14947 purpose = RECUR (purpose);
14948 value = TREE_VALUE (t);
14949 if (value)
14950 value = RECUR (value);
14951 chain = TREE_CHAIN (t);
14952 if (chain && chain != void_type_node)
14953 chain = RECUR (chain);
14954 if (purpose == TREE_PURPOSE (t)
14955 && value == TREE_VALUE (t)
14956 && chain == TREE_CHAIN (t))
14957 RETURN (t);
14958 RETURN (tree_cons (purpose, value, chain));
14961 case COMPONENT_REF:
14963 tree object;
14964 tree object_type;
14965 tree member;
14966 tree r;
14968 object = tsubst_non_call_postfix_expression (TREE_OPERAND (t, 0),
14969 args, complain, in_decl);
14970 /* Remember that there was a reference to this entity. */
14971 if (DECL_P (object))
14972 mark_used (object);
14973 object_type = TREE_TYPE (object);
14975 member = TREE_OPERAND (t, 1);
14976 if (BASELINK_P (member))
14977 member = tsubst_baselink (member,
14978 non_reference (TREE_TYPE (object)),
14979 args, complain, in_decl);
14980 else
14981 member = tsubst_copy (member, args, complain, in_decl);
14982 if (member == error_mark_node)
14983 RETURN (error_mark_node);
14985 if (type_dependent_expression_p (object))
14986 /* We can't do much here. */;
14987 else if (!CLASS_TYPE_P (object_type))
14989 if (scalarish_type_p (object_type))
14991 tree s = NULL_TREE;
14992 tree dtor = member;
14994 if (TREE_CODE (dtor) == SCOPE_REF)
14996 s = TREE_OPERAND (dtor, 0);
14997 dtor = TREE_OPERAND (dtor, 1);
14999 if (TREE_CODE (dtor) == BIT_NOT_EXPR)
15001 dtor = TREE_OPERAND (dtor, 0);
15002 if (TYPE_P (dtor))
15003 RETURN (finish_pseudo_destructor_expr
15004 (object, s, dtor, input_location));
15008 else if (TREE_CODE (member) == SCOPE_REF
15009 && TREE_CODE (TREE_OPERAND (member, 1)) == TEMPLATE_ID_EXPR)
15011 /* Lookup the template functions now that we know what the
15012 scope is. */
15013 tree scope = TREE_OPERAND (member, 0);
15014 tree tmpl = TREE_OPERAND (TREE_OPERAND (member, 1), 0);
15015 tree args = TREE_OPERAND (TREE_OPERAND (member, 1), 1);
15016 member = lookup_qualified_name (scope, tmpl,
15017 /*is_type_p=*/false,
15018 /*complain=*/false);
15019 if (BASELINK_P (member))
15021 BASELINK_FUNCTIONS (member)
15022 = build_nt (TEMPLATE_ID_EXPR, BASELINK_FUNCTIONS (member),
15023 args);
15024 member = (adjust_result_of_qualified_name_lookup
15025 (member, BINFO_TYPE (BASELINK_BINFO (member)),
15026 object_type));
15028 else
15030 qualified_name_lookup_error (scope, tmpl, member,
15031 input_location);
15032 RETURN (error_mark_node);
15035 else if (TREE_CODE (member) == SCOPE_REF
15036 && !CLASS_TYPE_P (TREE_OPERAND (member, 0))
15037 && TREE_CODE (TREE_OPERAND (member, 0)) != NAMESPACE_DECL)
15039 if (complain & tf_error)
15041 if (TYPE_P (TREE_OPERAND (member, 0)))
15042 error ("%qT is not a class or namespace",
15043 TREE_OPERAND (member, 0));
15044 else
15045 error ("%qD is not a class or namespace",
15046 TREE_OPERAND (member, 0));
15048 RETURN (error_mark_node);
15050 else if (TREE_CODE (member) == FIELD_DECL)
15052 r = finish_non_static_data_member (member, object, NULL_TREE);
15053 if (TREE_CODE (r) == COMPONENT_REF)
15054 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
15055 RETURN (r);
15058 r = finish_class_member_access_expr (object, member,
15059 /*template_p=*/false,
15060 complain);
15061 if (TREE_CODE (r) == COMPONENT_REF)
15062 REF_PARENTHESIZED_P (r) = REF_PARENTHESIZED_P (t);
15063 RETURN (r);
15066 case THROW_EXPR:
15067 RETURN (build_throw
15068 (RECUR (TREE_OPERAND (t, 0))));
15070 case CONSTRUCTOR:
15072 vec<constructor_elt, va_gc> *n;
15073 constructor_elt *ce;
15074 unsigned HOST_WIDE_INT idx;
15075 tree type = tsubst (TREE_TYPE (t), args, complain, in_decl);
15076 bool process_index_p;
15077 int newlen;
15078 bool need_copy_p = false;
15079 tree r;
15081 if (type == error_mark_node)
15082 RETURN (error_mark_node);
15084 /* digest_init will do the wrong thing if we let it. */
15085 if (type && TYPE_PTRMEMFUNC_P (type))
15086 RETURN (t);
15088 /* We do not want to process the index of aggregate
15089 initializers as they are identifier nodes which will be
15090 looked up by digest_init. */
15091 process_index_p = !(type && MAYBE_CLASS_TYPE_P (type));
15093 n = vec_safe_copy (CONSTRUCTOR_ELTS (t));
15094 newlen = vec_safe_length (n);
15095 FOR_EACH_VEC_SAFE_ELT (n, idx, ce)
15097 if (ce->index && process_index_p
15098 /* An identifier index is looked up in the type
15099 being initialized, not the current scope. */
15100 && TREE_CODE (ce->index) != IDENTIFIER_NODE)
15101 ce->index = RECUR (ce->index);
15103 if (PACK_EXPANSION_P (ce->value))
15105 /* Substitute into the pack expansion. */
15106 ce->value = tsubst_pack_expansion (ce->value, args, complain,
15107 in_decl);
15109 if (ce->value == error_mark_node
15110 || PACK_EXPANSION_P (ce->value))
15112 else if (TREE_VEC_LENGTH (ce->value) == 1)
15113 /* Just move the argument into place. */
15114 ce->value = TREE_VEC_ELT (ce->value, 0);
15115 else
15117 /* Update the length of the final CONSTRUCTOR
15118 arguments vector, and note that we will need to
15119 copy.*/
15120 newlen = newlen + TREE_VEC_LENGTH (ce->value) - 1;
15121 need_copy_p = true;
15124 else
15125 ce->value = RECUR (ce->value);
15128 if (need_copy_p)
15130 vec<constructor_elt, va_gc> *old_n = n;
15132 vec_alloc (n, newlen);
15133 FOR_EACH_VEC_ELT (*old_n, idx, ce)
15135 if (TREE_CODE (ce->value) == TREE_VEC)
15137 int i, len = TREE_VEC_LENGTH (ce->value);
15138 for (i = 0; i < len; ++i)
15139 CONSTRUCTOR_APPEND_ELT (n, 0,
15140 TREE_VEC_ELT (ce->value, i));
15142 else
15143 CONSTRUCTOR_APPEND_ELT (n, 0, ce->value);
15147 r = build_constructor (init_list_type_node, n);
15148 CONSTRUCTOR_IS_DIRECT_INIT (r) = CONSTRUCTOR_IS_DIRECT_INIT (t);
15150 if (TREE_HAS_CONSTRUCTOR (t))
15151 RETURN (finish_compound_literal (type, r, complain));
15153 TREE_TYPE (r) = type;
15154 RETURN (r);
15157 case TYPEID_EXPR:
15159 tree operand_0 = TREE_OPERAND (t, 0);
15160 if (TYPE_P (operand_0))
15162 operand_0 = tsubst (operand_0, args, complain, in_decl);
15163 RETURN (get_typeid (operand_0, complain));
15165 else
15167 operand_0 = RECUR (operand_0);
15168 RETURN (build_typeid (operand_0, complain));
15172 case VAR_DECL:
15173 if (!args)
15174 RETURN (t);
15175 else if (DECL_PACK_P (t))
15177 /* We don't build decls for an instantiation of a
15178 variadic capture proxy, we instantiate the elements
15179 when needed. */
15180 gcc_assert (DECL_HAS_VALUE_EXPR_P (t));
15181 return RECUR (DECL_VALUE_EXPR (t));
15183 /* Fall through */
15185 case PARM_DECL:
15187 tree r = tsubst_copy (t, args, complain, in_decl);
15189 if (TREE_CODE (TREE_TYPE (t)) != REFERENCE_TYPE)
15190 /* If the original type was a reference, we'll be wrapped in
15191 the appropriate INDIRECT_REF. */
15192 r = convert_from_reference (r);
15193 RETURN (r);
15196 case VA_ARG_EXPR:
15197 RETURN (build_x_va_arg (EXPR_LOCATION (t),
15198 RECUR (TREE_OPERAND (t, 0)),
15199 tsubst (TREE_TYPE (t), args, complain, in_decl)));
15201 case OFFSETOF_EXPR:
15202 RETURN (finish_offsetof (RECUR (TREE_OPERAND (t, 0))));
15204 case TRAIT_EXPR:
15206 tree type1 = tsubst (TRAIT_EXPR_TYPE1 (t), args,
15207 complain, in_decl);
15209 tree type2 = TRAIT_EXPR_TYPE2 (t);
15210 if (type2)
15211 type2 = tsubst (type2, args, complain, in_decl);
15213 RETURN (finish_trait_expr (TRAIT_EXPR_KIND (t), type1, type2));
15216 case STMT_EXPR:
15218 tree old_stmt_expr = cur_stmt_expr;
15219 tree stmt_expr = begin_stmt_expr ();
15221 cur_stmt_expr = stmt_expr;
15222 tsubst_expr (STMT_EXPR_STMT (t), args, complain, in_decl,
15223 integral_constant_expression_p);
15224 stmt_expr = finish_stmt_expr (stmt_expr, false);
15225 cur_stmt_expr = old_stmt_expr;
15227 /* If the resulting list of expression statement is empty,
15228 fold it further into void_zero_node. */
15229 if (empty_expr_stmt_p (stmt_expr))
15230 stmt_expr = void_zero_node;
15232 RETURN (stmt_expr);
15235 case LAMBDA_EXPR:
15237 tree r = build_lambda_expr ();
15239 tree type = tsubst (LAMBDA_EXPR_CLOSURE (t), args, complain, NULL_TREE);
15240 LAMBDA_EXPR_CLOSURE (r) = type;
15241 CLASSTYPE_LAMBDA_EXPR (type) = r;
15243 LAMBDA_EXPR_LOCATION (r)
15244 = LAMBDA_EXPR_LOCATION (t);
15245 LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (r)
15246 = LAMBDA_EXPR_DEFAULT_CAPTURE_MODE (t);
15247 LAMBDA_EXPR_MUTABLE_P (r) = LAMBDA_EXPR_MUTABLE_P (t);
15248 LAMBDA_EXPR_DISCRIMINATOR (r)
15249 = (LAMBDA_EXPR_DISCRIMINATOR (t));
15250 /* For a function scope, we want to use tsubst so that we don't
15251 complain about referring to an auto function before its return
15252 type has been deduced. Otherwise, we want to use tsubst_copy so
15253 that we look up the existing field/parameter/variable rather
15254 than build a new one. */
15255 tree scope = LAMBDA_EXPR_EXTRA_SCOPE (t);
15256 if (scope && TREE_CODE (scope) == FUNCTION_DECL)
15257 scope = tsubst (scope, args, complain, in_decl);
15258 else if (scope && TREE_CODE (scope) == PARM_DECL)
15260 /* Look up the parameter we want directly, as tsubst_copy
15261 doesn't do what we need. */
15262 tree fn = tsubst (DECL_CONTEXT (scope), args, complain, in_decl);
15263 tree parm = FUNCTION_FIRST_USER_PARM (fn);
15264 while (DECL_PARM_INDEX (parm) != DECL_PARM_INDEX (scope))
15265 parm = DECL_CHAIN (parm);
15266 scope = parm;
15267 /* FIXME Work around the parm not having DECL_CONTEXT set. */
15268 if (DECL_CONTEXT (scope) == NULL_TREE)
15269 DECL_CONTEXT (scope) = fn;
15271 else
15272 scope = RECUR (scope);
15273 LAMBDA_EXPR_EXTRA_SCOPE (r) = scope;
15274 LAMBDA_EXPR_RETURN_TYPE (r)
15275 = tsubst (LAMBDA_EXPR_RETURN_TYPE (t), args, complain, in_decl);
15277 gcc_assert (LAMBDA_EXPR_THIS_CAPTURE (t) == NULL_TREE
15278 && LAMBDA_EXPR_PENDING_PROXIES (t) == NULL);
15280 /* Do this again now that LAMBDA_EXPR_EXTRA_SCOPE is set. */
15281 determine_visibility (TYPE_NAME (type));
15282 /* Now that we know visibility, instantiate the type so we have a
15283 declaration of the op() for later calls to lambda_function. */
15284 complete_type (type);
15286 LAMBDA_EXPR_THIS_CAPTURE (r) = NULL_TREE;
15288 RETURN (build_lambda_object (r));
15291 case TARGET_EXPR:
15292 /* We can get here for a constant initializer of non-dependent type.
15293 FIXME stop folding in cp_parser_initializer_clause. */
15295 tree r = get_target_expr_sfinae (RECUR (TARGET_EXPR_INITIAL (t)),
15296 complain);
15297 RETURN (r);
15300 case TRANSACTION_EXPR:
15301 RETURN (tsubst_expr(t, args, complain, in_decl,
15302 integral_constant_expression_p));
15304 case PAREN_EXPR:
15305 RETURN (finish_parenthesized_expr (RECUR (TREE_OPERAND (t, 0))));
15307 case VEC_PERM_EXPR:
15308 RETURN (build_x_vec_perm_expr (input_location,
15309 RECUR (TREE_OPERAND (t, 0)),
15310 RECUR (TREE_OPERAND (t, 1)),
15311 RECUR (TREE_OPERAND (t, 2)),
15312 complain));
15314 default:
15315 /* Handle Objective-C++ constructs, if appropriate. */
15317 tree subst
15318 = objcp_tsubst_copy_and_build (t, args, complain,
15319 in_decl, /*function_p=*/false);
15320 if (subst)
15321 RETURN (subst);
15323 RETURN (tsubst_copy (t, args, complain, in_decl));
15326 #undef RECUR
15327 #undef RETURN
15328 out:
15329 input_location = loc;
15330 return retval;
15333 /* Verify that the instantiated ARGS are valid. For type arguments,
15334 make sure that the type's linkage is ok. For non-type arguments,
15335 make sure they are constants if they are integral or enumerations.
15336 Emit an error under control of COMPLAIN, and return TRUE on error. */
15338 static bool
15339 check_instantiated_arg (tree tmpl, tree t, tsubst_flags_t complain)
15341 if (dependent_template_arg_p (t))
15342 return false;
15343 if (ARGUMENT_PACK_P (t))
15345 tree vec = ARGUMENT_PACK_ARGS (t);
15346 int len = TREE_VEC_LENGTH (vec);
15347 bool result = false;
15348 int i;
15350 for (i = 0; i < len; ++i)
15351 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (vec, i), complain))
15352 result = true;
15353 return result;
15355 else if (TYPE_P (t))
15357 /* [basic.link]: A name with no linkage (notably, the name
15358 of a class or enumeration declared in a local scope)
15359 shall not be used to declare an entity with linkage.
15360 This implies that names with no linkage cannot be used as
15361 template arguments
15363 DR 757 relaxes this restriction for C++0x. */
15364 tree nt = (cxx_dialect > cxx98 ? NULL_TREE
15365 : no_linkage_check (t, /*relaxed_p=*/false));
15367 if (nt)
15369 /* DR 488 makes use of a type with no linkage cause
15370 type deduction to fail. */
15371 if (complain & tf_error)
15373 if (TYPE_ANONYMOUS_P (nt))
15374 error ("%qT is/uses anonymous type", t);
15375 else
15376 error ("template argument for %qD uses local type %qT",
15377 tmpl, t);
15379 return true;
15381 /* In order to avoid all sorts of complications, we do not
15382 allow variably-modified types as template arguments. */
15383 else if (variably_modified_type_p (t, NULL_TREE))
15385 if (complain & tf_error)
15386 error ("%qT is a variably modified type", t);
15387 return true;
15390 /* Class template and alias template arguments should be OK. */
15391 else if (DECL_TYPE_TEMPLATE_P (t))
15393 /* A non-type argument of integral or enumerated type must be a
15394 constant. */
15395 else if (TREE_TYPE (t)
15396 && INTEGRAL_OR_ENUMERATION_TYPE_P (TREE_TYPE (t))
15397 && !TREE_CONSTANT (t))
15399 if (complain & tf_error)
15400 error ("integral expression %qE is not constant", t);
15401 return true;
15403 return false;
15406 static bool
15407 check_instantiated_args (tree tmpl, tree args, tsubst_flags_t complain)
15409 int ix, len = DECL_NTPARMS (tmpl);
15410 bool result = false;
15412 for (ix = 0; ix != len; ix++)
15414 if (check_instantiated_arg (tmpl, TREE_VEC_ELT (args, ix), complain))
15415 result = true;
15417 if (result && (complain & tf_error))
15418 error (" trying to instantiate %qD", tmpl);
15419 return result;
15422 /* We're out of SFINAE context now, so generate diagnostics for the access
15423 errors we saw earlier when instantiating D from TMPL and ARGS. */
15425 static void
15426 recheck_decl_substitution (tree d, tree tmpl, tree args)
15428 tree pattern = DECL_TEMPLATE_RESULT (tmpl);
15429 tree type = TREE_TYPE (pattern);
15430 location_t loc = input_location;
15432 push_access_scope (d);
15433 push_deferring_access_checks (dk_no_deferred);
15434 input_location = DECL_SOURCE_LOCATION (pattern);
15435 tsubst (type, args, tf_warning_or_error, d);
15436 input_location = loc;
15437 pop_deferring_access_checks ();
15438 pop_access_scope (d);
15441 /* Instantiate the indicated variable, function, or alias template TMPL with
15442 the template arguments in TARG_PTR. */
15444 static tree
15445 instantiate_template_1 (tree tmpl, tree orig_args, tsubst_flags_t complain)
15447 tree targ_ptr = orig_args;
15448 tree fndecl;
15449 tree gen_tmpl;
15450 tree spec;
15451 bool access_ok = true;
15453 if (tmpl == error_mark_node)
15454 return error_mark_node;
15456 gcc_assert (TREE_CODE (tmpl) == TEMPLATE_DECL);
15458 /* If this function is a clone, handle it specially. */
15459 if (DECL_CLONED_FUNCTION_P (tmpl))
15461 tree spec;
15462 tree clone;
15464 /* Use DECL_ABSTRACT_ORIGIN because only FUNCTION_DECLs have
15465 DECL_CLONED_FUNCTION. */
15466 spec = instantiate_template (DECL_ABSTRACT_ORIGIN (tmpl),
15467 targ_ptr, complain);
15468 if (spec == error_mark_node)
15469 return error_mark_node;
15471 /* Look for the clone. */
15472 FOR_EACH_CLONE (clone, spec)
15473 if (DECL_NAME (clone) == DECL_NAME (tmpl))
15474 return clone;
15475 /* We should always have found the clone by now. */
15476 gcc_unreachable ();
15477 return NULL_TREE;
15480 if (targ_ptr == error_mark_node)
15481 return error_mark_node;
15483 /* Check to see if we already have this specialization. */
15484 gen_tmpl = most_general_template (tmpl);
15485 if (tmpl != gen_tmpl)
15486 /* The TMPL is a partial instantiation. To get a full set of
15487 arguments we must add the arguments used to perform the
15488 partial instantiation. */
15489 targ_ptr = add_outermost_template_args (DECL_TI_ARGS (tmpl),
15490 targ_ptr);
15492 /* It would be nice to avoid hashing here and then again in tsubst_decl,
15493 but it doesn't seem to be on the hot path. */
15494 spec = retrieve_specialization (gen_tmpl, targ_ptr, 0);
15496 gcc_assert (tmpl == gen_tmpl
15497 || ((fndecl = retrieve_specialization (tmpl, orig_args, 0))
15498 == spec)
15499 || fndecl == NULL_TREE);
15501 if (spec != NULL_TREE)
15503 if (FNDECL_HAS_ACCESS_ERRORS (spec))
15505 if (complain & tf_error)
15506 recheck_decl_substitution (spec, gen_tmpl, targ_ptr);
15507 return error_mark_node;
15509 return spec;
15512 if (check_instantiated_args (gen_tmpl, INNERMOST_TEMPLATE_ARGS (targ_ptr),
15513 complain))
15514 return error_mark_node;
15516 /* We are building a FUNCTION_DECL, during which the access of its
15517 parameters and return types have to be checked. However this
15518 FUNCTION_DECL which is the desired context for access checking
15519 is not built yet. We solve this chicken-and-egg problem by
15520 deferring all checks until we have the FUNCTION_DECL. */
15521 push_deferring_access_checks (dk_deferred);
15523 /* Instantiation of the function happens in the context of the function
15524 template, not the context of the overload resolution we're doing. */
15525 push_to_top_level ();
15526 /* If there are dependent arguments, e.g. because we're doing partial
15527 ordering, make sure processing_template_decl stays set. */
15528 if (uses_template_parms (targ_ptr))
15529 ++processing_template_decl;
15530 if (DECL_CLASS_SCOPE_P (gen_tmpl))
15532 tree ctx = tsubst (DECL_CONTEXT (gen_tmpl), targ_ptr,
15533 complain, gen_tmpl);
15534 push_nested_class (ctx);
15536 /* Substitute template parameters to obtain the specialization. */
15537 fndecl = tsubst (DECL_TEMPLATE_RESULT (gen_tmpl),
15538 targ_ptr, complain, gen_tmpl);
15539 if (DECL_CLASS_SCOPE_P (gen_tmpl))
15540 pop_nested_class ();
15541 pop_from_top_level ();
15543 if (fndecl == error_mark_node)
15545 pop_deferring_access_checks ();
15546 return error_mark_node;
15549 /* The DECL_TI_TEMPLATE should always be the immediate parent
15550 template, not the most general template. */
15551 DECL_TI_TEMPLATE (fndecl) = tmpl;
15553 /* Now we know the specialization, compute access previously
15554 deferred. */
15555 push_access_scope (fndecl);
15556 if (!perform_deferred_access_checks (complain))
15557 access_ok = false;
15558 pop_access_scope (fndecl);
15559 pop_deferring_access_checks ();
15561 /* If we've just instantiated the main entry point for a function,
15562 instantiate all the alternate entry points as well. We do this
15563 by cloning the instantiation of the main entry point, not by
15564 instantiating the template clones. */
15565 if (DECL_CHAIN (gen_tmpl) && DECL_CLONED_FUNCTION_P (DECL_CHAIN (gen_tmpl)))
15566 clone_function_decl (fndecl, /*update_method_vec_p=*/0);
15568 if (!access_ok)
15570 if (!(complain & tf_error))
15572 /* Remember to reinstantiate when we're out of SFINAE so the user
15573 can see the errors. */
15574 FNDECL_HAS_ACCESS_ERRORS (fndecl) = true;
15576 return error_mark_node;
15578 return fndecl;
15581 /* Wrapper for instantiate_template_1. */
15583 tree
15584 instantiate_template (tree tmpl, tree orig_args, tsubst_flags_t complain)
15586 tree ret;
15587 timevar_push (TV_TEMPLATE_INST);
15588 ret = instantiate_template_1 (tmpl, orig_args, complain);
15589 timevar_pop (TV_TEMPLATE_INST);
15590 return ret;
15593 /* Instantiate the alias template TMPL with ARGS. Also push a template
15594 instantiation level, which instantiate_template doesn't do because
15595 functions and variables have sufficient context established by the
15596 callers. */
15598 static tree
15599 instantiate_alias_template (tree tmpl, tree args, tsubst_flags_t complain)
15601 struct pending_template *old_last_pend = last_pending_template;
15602 struct tinst_level *old_error_tinst = last_error_tinst_level;
15603 if (tmpl == error_mark_node || args == error_mark_node)
15604 return error_mark_node;
15605 tree tinst = build_tree_list (tmpl, args);
15606 if (!push_tinst_level (tinst))
15608 ggc_free (tinst);
15609 return error_mark_node;
15612 args =
15613 coerce_innermost_template_parms (DECL_TEMPLATE_PARMS (tmpl),
15614 args, tmpl, complain,
15615 /*require_all_args=*/true,
15616 /*use_default_args=*/true);
15618 tree r = instantiate_template (tmpl, args, complain);
15619 pop_tinst_level ();
15620 /* We can't free this if a pending_template entry or last_error_tinst_level
15621 is pointing at it. */
15622 if (last_pending_template == old_last_pend
15623 && last_error_tinst_level == old_error_tinst)
15624 ggc_free (tinst);
15626 return r;
15629 /* PARM is a template parameter pack for FN. Returns true iff
15630 PARM is used in a deducible way in the argument list of FN. */
15632 static bool
15633 pack_deducible_p (tree parm, tree fn)
15635 tree t = FUNCTION_FIRST_USER_PARMTYPE (fn);
15636 for (; t; t = TREE_CHAIN (t))
15638 tree type = TREE_VALUE (t);
15639 tree packs;
15640 if (!PACK_EXPANSION_P (type))
15641 continue;
15642 for (packs = PACK_EXPANSION_PARAMETER_PACKS (type);
15643 packs; packs = TREE_CHAIN (packs))
15644 if (TREE_VALUE (packs) == parm)
15646 /* The template parameter pack is used in a function parameter
15647 pack. If this is the end of the parameter list, the
15648 template parameter pack is deducible. */
15649 if (TREE_CHAIN (t) == void_list_node)
15650 return true;
15651 else
15652 /* Otherwise, not. Well, it could be deduced from
15653 a non-pack parameter, but doing so would end up with
15654 a deduction mismatch, so don't bother. */
15655 return false;
15658 /* The template parameter pack isn't used in any function parameter
15659 packs, but it might be used deeper, e.g. tuple<Args...>. */
15660 return true;
15663 /* The FN is a TEMPLATE_DECL for a function. ARGS is an array with
15664 NARGS elements of the arguments that are being used when calling
15665 it. TARGS is a vector into which the deduced template arguments
15666 are placed.
15668 Returns either a FUNCTION_DECL for the matching specialization of FN or
15669 NULL_TREE if no suitable specialization can be found. If EXPLAIN_P is
15670 true, diagnostics will be printed to explain why it failed.
15672 If FN is a conversion operator, or we are trying to produce a specific
15673 specialization, RETURN_TYPE is the return type desired.
15675 The EXPLICIT_TARGS are explicit template arguments provided via a
15676 template-id.
15678 The parameter STRICT is one of:
15680 DEDUCE_CALL:
15681 We are deducing arguments for a function call, as in
15682 [temp.deduct.call].
15684 DEDUCE_CONV:
15685 We are deducing arguments for a conversion function, as in
15686 [temp.deduct.conv].
15688 DEDUCE_EXACT:
15689 We are deducing arguments when doing an explicit instantiation
15690 as in [temp.explicit], when determining an explicit specialization
15691 as in [temp.expl.spec], or when taking the address of a function
15692 template, as in [temp.deduct.funcaddr]. */
15694 tree
15695 fn_type_unification (tree fn,
15696 tree explicit_targs,
15697 tree targs,
15698 const tree *args,
15699 unsigned int nargs,
15700 tree return_type,
15701 unification_kind_t strict,
15702 int flags,
15703 bool explain_p,
15704 bool decltype_p)
15706 tree parms;
15707 tree fntype;
15708 tree decl = NULL_TREE;
15709 tsubst_flags_t complain = (explain_p ? tf_warning_or_error : tf_none);
15710 bool ok;
15711 static int deduction_depth;
15712 struct pending_template *old_last_pend = last_pending_template;
15713 struct tinst_level *old_error_tinst = last_error_tinst_level;
15714 tree tparms = DECL_INNERMOST_TEMPLATE_PARMS (fn);
15715 tree tinst;
15716 tree r = error_mark_node;
15718 if (decltype_p)
15719 complain |= tf_decltype;
15721 /* In C++0x, it's possible to have a function template whose type depends
15722 on itself recursively. This is most obvious with decltype, but can also
15723 occur with enumeration scope (c++/48969). So we need to catch infinite
15724 recursion and reject the substitution at deduction time; this function
15725 will return error_mark_node for any repeated substitution.
15727 This also catches excessive recursion such as when f<N> depends on
15728 f<N-1> across all integers, and returns error_mark_node for all the
15729 substitutions back up to the initial one.
15731 This is, of course, not reentrant. */
15732 if (excessive_deduction_depth)
15733 return error_mark_node;
15734 tinst = build_tree_list (fn, NULL_TREE);
15735 ++deduction_depth;
15737 gcc_assert (TREE_CODE (fn) == TEMPLATE_DECL);
15739 fntype = TREE_TYPE (fn);
15740 if (explicit_targs)
15742 /* [temp.deduct]
15744 The specified template arguments must match the template
15745 parameters in kind (i.e., type, nontype, template), and there
15746 must not be more arguments than there are parameters;
15747 otherwise type deduction fails.
15749 Nontype arguments must match the types of the corresponding
15750 nontype template parameters, or must be convertible to the
15751 types of the corresponding nontype parameters as specified in
15752 _temp.arg.nontype_, otherwise type deduction fails.
15754 All references in the function type of the function template
15755 to the corresponding template parameters are replaced by the
15756 specified template argument values. If a substitution in a
15757 template parameter or in the function type of the function
15758 template results in an invalid type, type deduction fails. */
15759 int i, len = TREE_VEC_LENGTH (tparms);
15760 location_t loc = input_location;
15761 bool incomplete = false;
15763 /* Adjust any explicit template arguments before entering the
15764 substitution context. */
15765 explicit_targs
15766 = (coerce_template_parms (tparms, explicit_targs, NULL_TREE,
15767 complain,
15768 /*require_all_args=*/false,
15769 /*use_default_args=*/false));
15770 if (explicit_targs == error_mark_node)
15771 goto fail;
15773 /* Substitute the explicit args into the function type. This is
15774 necessary so that, for instance, explicitly declared function
15775 arguments can match null pointed constants. If we were given
15776 an incomplete set of explicit args, we must not do semantic
15777 processing during substitution as we could create partial
15778 instantiations. */
15779 for (i = 0; i < len; i++)
15781 tree parm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
15782 bool parameter_pack = false;
15783 tree targ = TREE_VEC_ELT (explicit_targs, i);
15785 /* Dig out the actual parm. */
15786 if (TREE_CODE (parm) == TYPE_DECL
15787 || TREE_CODE (parm) == TEMPLATE_DECL)
15789 parm = TREE_TYPE (parm);
15790 parameter_pack = TEMPLATE_TYPE_PARAMETER_PACK (parm);
15792 else if (TREE_CODE (parm) == PARM_DECL)
15794 parm = DECL_INITIAL (parm);
15795 parameter_pack = TEMPLATE_PARM_PARAMETER_PACK (parm);
15798 if (!parameter_pack && targ == NULL_TREE)
15799 /* No explicit argument for this template parameter. */
15800 incomplete = true;
15802 if (parameter_pack && pack_deducible_p (parm, fn))
15804 /* Mark the argument pack as "incomplete". We could
15805 still deduce more arguments during unification.
15806 We remove this mark in type_unification_real. */
15807 if (targ)
15809 ARGUMENT_PACK_INCOMPLETE_P(targ) = 1;
15810 ARGUMENT_PACK_EXPLICIT_ARGS (targ)
15811 = ARGUMENT_PACK_ARGS (targ);
15814 /* We have some incomplete argument packs. */
15815 incomplete = true;
15819 TREE_VALUE (tinst) = explicit_targs;
15820 if (!push_tinst_level (tinst))
15822 excessive_deduction_depth = true;
15823 goto fail;
15825 processing_template_decl += incomplete;
15826 input_location = DECL_SOURCE_LOCATION (fn);
15827 /* Ignore any access checks; we'll see them again in
15828 instantiate_template and they might have the wrong
15829 access path at this point. */
15830 push_deferring_access_checks (dk_deferred);
15831 fntype = tsubst (TREE_TYPE (fn), explicit_targs,
15832 complain | tf_partial, NULL_TREE);
15833 pop_deferring_access_checks ();
15834 input_location = loc;
15835 processing_template_decl -= incomplete;
15836 pop_tinst_level ();
15838 if (fntype == error_mark_node)
15839 goto fail;
15841 /* Place the explicitly specified arguments in TARGS. */
15842 for (i = NUM_TMPL_ARGS (explicit_targs); i--;)
15843 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (explicit_targs, i);
15846 /* Never do unification on the 'this' parameter. */
15847 parms = skip_artificial_parms_for (fn, TYPE_ARG_TYPES (fntype));
15849 if (return_type)
15851 tree *new_args;
15853 parms = tree_cons (NULL_TREE, TREE_TYPE (fntype), parms);
15854 new_args = XALLOCAVEC (tree, nargs + 1);
15855 new_args[0] = return_type;
15856 memcpy (new_args + 1, args, nargs * sizeof (tree));
15857 args = new_args;
15858 ++nargs;
15861 /* We allow incomplete unification without an error message here
15862 because the standard doesn't seem to explicitly prohibit it. Our
15863 callers must be ready to deal with unification failures in any
15864 event. */
15866 TREE_VALUE (tinst) = targs;
15867 /* If we aren't explaining yet, push tinst context so we can see where
15868 any errors (e.g. from class instantiations triggered by instantiation
15869 of default template arguments) come from. If we are explaining, this
15870 context is redundant. */
15871 if (!explain_p && !push_tinst_level (tinst))
15873 excessive_deduction_depth = true;
15874 goto fail;
15877 /* type_unification_real will pass back any access checks from default
15878 template argument substitution. */
15879 vec<deferred_access_check, va_gc> *checks;
15880 checks = NULL;
15882 ok = !type_unification_real (DECL_INNERMOST_TEMPLATE_PARMS (fn),
15883 targs, parms, args, nargs, /*subr=*/0,
15884 strict, flags, &checks, explain_p);
15885 if (!explain_p)
15886 pop_tinst_level ();
15887 if (!ok)
15888 goto fail;
15890 /* Now that we have bindings for all of the template arguments,
15891 ensure that the arguments deduced for the template template
15892 parameters have compatible template parameter lists. We cannot
15893 check this property before we have deduced all template
15894 arguments, because the template parameter types of a template
15895 template parameter might depend on prior template parameters
15896 deduced after the template template parameter. The following
15897 ill-formed example illustrates this issue:
15899 template<typename T, template<T> class C> void f(C<5>, T);
15901 template<int N> struct X {};
15903 void g() {
15904 f(X<5>(), 5l); // error: template argument deduction fails
15907 The template parameter list of 'C' depends on the template type
15908 parameter 'T', but 'C' is deduced to 'X' before 'T' is deduced to
15909 'long'. Thus, we can't check that 'C' cannot bind to 'X' at the
15910 time that we deduce 'C'. */
15911 if (!template_template_parm_bindings_ok_p
15912 (DECL_INNERMOST_TEMPLATE_PARMS (fn), targs))
15914 unify_inconsistent_template_template_parameters (explain_p);
15915 goto fail;
15918 /* All is well so far. Now, check:
15920 [temp.deduct]
15922 When all template arguments have been deduced, all uses of
15923 template parameters in nondeduced contexts are replaced with
15924 the corresponding deduced argument values. If the
15925 substitution results in an invalid type, as described above,
15926 type deduction fails. */
15927 TREE_VALUE (tinst) = targs;
15928 if (!push_tinst_level (tinst))
15930 excessive_deduction_depth = true;
15931 goto fail;
15934 /* Also collect access checks from the instantiation. */
15935 reopen_deferring_access_checks (checks);
15937 decl = instantiate_template (fn, targs, complain);
15939 checks = get_deferred_access_checks ();
15940 pop_deferring_access_checks ();
15942 pop_tinst_level ();
15944 if (decl == error_mark_node)
15945 goto fail;
15947 /* Now perform any access checks encountered during substitution. */
15948 push_access_scope (decl);
15949 ok = perform_access_checks (checks, complain);
15950 pop_access_scope (decl);
15951 if (!ok)
15952 goto fail;
15954 /* If we're looking for an exact match, check that what we got
15955 is indeed an exact match. It might not be if some template
15956 parameters are used in non-deduced contexts. But don't check
15957 for an exact match if we have dependent template arguments;
15958 in that case we're doing partial ordering, and we already know
15959 that we have two candidates that will provide the actual type. */
15960 if (strict == DEDUCE_EXACT && !any_dependent_template_arguments_p (targs))
15962 tree substed = TREE_TYPE (decl);
15963 unsigned int i;
15965 tree sarg
15966 = skip_artificial_parms_for (decl, TYPE_ARG_TYPES (substed));
15967 if (return_type)
15968 sarg = tree_cons (NULL_TREE, TREE_TYPE (substed), sarg);
15969 for (i = 0; i < nargs && sarg; ++i, sarg = TREE_CHAIN (sarg))
15970 if (!same_type_p (args[i], TREE_VALUE (sarg)))
15972 unify_type_mismatch (explain_p, args[i],
15973 TREE_VALUE (sarg));
15974 goto fail;
15978 r = decl;
15980 fail:
15981 --deduction_depth;
15982 if (excessive_deduction_depth)
15984 if (deduction_depth == 0)
15985 /* Reset once we're all the way out. */
15986 excessive_deduction_depth = false;
15989 /* We can't free this if a pending_template entry or last_error_tinst_level
15990 is pointing at it. */
15991 if (last_pending_template == old_last_pend
15992 && last_error_tinst_level == old_error_tinst)
15993 ggc_free (tinst);
15995 return r;
15998 /* Adjust types before performing type deduction, as described in
15999 [temp.deduct.call] and [temp.deduct.conv]. The rules in these two
16000 sections are symmetric. PARM is the type of a function parameter
16001 or the return type of the conversion function. ARG is the type of
16002 the argument passed to the call, or the type of the value
16003 initialized with the result of the conversion function.
16004 ARG_EXPR is the original argument expression, which may be null. */
16006 static int
16007 maybe_adjust_types_for_deduction (unification_kind_t strict,
16008 tree* parm,
16009 tree* arg,
16010 tree arg_expr)
16012 int result = 0;
16014 switch (strict)
16016 case DEDUCE_CALL:
16017 break;
16019 case DEDUCE_CONV:
16021 /* Swap PARM and ARG throughout the remainder of this
16022 function; the handling is precisely symmetric since PARM
16023 will initialize ARG rather than vice versa. */
16024 tree* temp = parm;
16025 parm = arg;
16026 arg = temp;
16027 break;
16030 case DEDUCE_EXACT:
16031 /* Core issue #873: Do the DR606 thing (see below) for these cases,
16032 too, but here handle it by stripping the reference from PARM
16033 rather than by adding it to ARG. */
16034 if (TREE_CODE (*parm) == REFERENCE_TYPE
16035 && TYPE_REF_IS_RVALUE (*parm)
16036 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
16037 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
16038 && TREE_CODE (*arg) == REFERENCE_TYPE
16039 && !TYPE_REF_IS_RVALUE (*arg))
16040 *parm = TREE_TYPE (*parm);
16041 /* Nothing else to do in this case. */
16042 return 0;
16044 default:
16045 gcc_unreachable ();
16048 if (TREE_CODE (*parm) != REFERENCE_TYPE)
16050 /* [temp.deduct.call]
16052 If P is not a reference type:
16054 --If A is an array type, the pointer type produced by the
16055 array-to-pointer standard conversion (_conv.array_) is
16056 used in place of A for type deduction; otherwise,
16058 --If A is a function type, the pointer type produced by
16059 the function-to-pointer standard conversion
16060 (_conv.func_) is used in place of A for type deduction;
16061 otherwise,
16063 --If A is a cv-qualified type, the top level
16064 cv-qualifiers of A's type are ignored for type
16065 deduction. */
16066 if (TREE_CODE (*arg) == ARRAY_TYPE)
16067 *arg = build_pointer_type (TREE_TYPE (*arg));
16068 else if (TREE_CODE (*arg) == FUNCTION_TYPE)
16069 *arg = build_pointer_type (*arg);
16070 else
16071 *arg = TYPE_MAIN_VARIANT (*arg);
16074 /* From C++0x [14.8.2.1/3 temp.deduct.call] (after DR606), "If P is
16075 of the form T&&, where T is a template parameter, and the argument
16076 is an lvalue, T is deduced as A& */
16077 if (TREE_CODE (*parm) == REFERENCE_TYPE
16078 && TYPE_REF_IS_RVALUE (*parm)
16079 && TREE_CODE (TREE_TYPE (*parm)) == TEMPLATE_TYPE_PARM
16080 && cp_type_quals (TREE_TYPE (*parm)) == TYPE_UNQUALIFIED
16081 && (arg_expr ? real_lvalue_p (arg_expr)
16082 /* try_one_overload doesn't provide an arg_expr, but
16083 functions are always lvalues. */
16084 : TREE_CODE (*arg) == FUNCTION_TYPE))
16085 *arg = build_reference_type (*arg);
16087 /* [temp.deduct.call]
16089 If P is a cv-qualified type, the top level cv-qualifiers
16090 of P's type are ignored for type deduction. If P is a
16091 reference type, the type referred to by P is used for
16092 type deduction. */
16093 *parm = TYPE_MAIN_VARIANT (*parm);
16094 if (TREE_CODE (*parm) == REFERENCE_TYPE)
16096 *parm = TREE_TYPE (*parm);
16097 result |= UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
16100 /* DR 322. For conversion deduction, remove a reference type on parm
16101 too (which has been swapped into ARG). */
16102 if (strict == DEDUCE_CONV && TREE_CODE (*arg) == REFERENCE_TYPE)
16103 *arg = TREE_TYPE (*arg);
16105 return result;
16108 /* Subroutine of unify_one_argument. PARM is a function parameter of a
16109 template which does contain any deducible template parameters; check if
16110 ARG is a suitable match for it. STRICT, FLAGS and EXPLAIN_P are as in
16111 unify_one_argument. */
16113 static int
16114 check_non_deducible_conversion (tree parm, tree arg, int strict,
16115 int flags, bool explain_p)
16117 tree type;
16119 if (!TYPE_P (arg))
16120 type = TREE_TYPE (arg);
16121 else
16122 type = arg;
16124 if (same_type_p (parm, type))
16125 return unify_success (explain_p);
16127 if (strict == DEDUCE_CONV)
16129 if (can_convert_arg (type, parm, NULL_TREE, flags,
16130 explain_p ? tf_warning_or_error : tf_none))
16131 return unify_success (explain_p);
16133 else if (strict != DEDUCE_EXACT)
16135 if (can_convert_arg (parm, type,
16136 TYPE_P (arg) ? NULL_TREE : arg,
16137 flags, explain_p ? tf_warning_or_error : tf_none))
16138 return unify_success (explain_p);
16141 if (strict == DEDUCE_EXACT)
16142 return unify_type_mismatch (explain_p, parm, arg);
16143 else
16144 return unify_arg_conversion (explain_p, parm, type, arg);
16147 static bool uses_deducible_template_parms (tree type);
16149 /* Returns true iff the expression EXPR is one from which a template
16150 argument can be deduced. In other words, if it's an undecorated
16151 use of a template non-type parameter. */
16153 static bool
16154 deducible_expression (tree expr)
16156 return (TREE_CODE (expr) == TEMPLATE_PARM_INDEX);
16159 /* Returns true iff the array domain DOMAIN uses a template parameter in a
16160 deducible way; that is, if it has a max value of <PARM> - 1. */
16162 static bool
16163 deducible_array_bound (tree domain)
16165 if (domain == NULL_TREE)
16166 return false;
16168 tree max = TYPE_MAX_VALUE (domain);
16169 if (TREE_CODE (max) != MINUS_EXPR)
16170 return false;
16172 return deducible_expression (TREE_OPERAND (max, 0));
16175 /* Returns true iff the template arguments ARGS use a template parameter
16176 in a deducible way. */
16178 static bool
16179 deducible_template_args (tree args)
16181 for (int i = 0; i < TREE_VEC_LENGTH (args); ++i)
16183 bool deducible;
16184 tree elt = TREE_VEC_ELT (args, i);
16185 if (ARGUMENT_PACK_P (elt))
16186 deducible = deducible_template_args (ARGUMENT_PACK_ARGS (elt));
16187 else
16189 if (PACK_EXPANSION_P (elt))
16190 elt = PACK_EXPANSION_PATTERN (elt);
16191 if (TREE_CODE (elt) == TEMPLATE_TEMPLATE_PARM)
16192 deducible = true;
16193 else if (TYPE_P (elt))
16194 deducible = uses_deducible_template_parms (elt);
16195 else
16196 deducible = deducible_expression (elt);
16198 if (deducible)
16199 return true;
16201 return false;
16204 /* Returns true iff TYPE contains any deducible references to template
16205 parameters, as per 14.8.2.5. */
16207 static bool
16208 uses_deducible_template_parms (tree type)
16210 if (PACK_EXPANSION_P (type))
16211 type = PACK_EXPANSION_PATTERN (type);
16213 /* T
16214 cv-list T
16215 TT<T>
16216 TT<i>
16217 TT<> */
16218 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
16219 || TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
16220 return true;
16222 /* T*
16224 T&& */
16225 if (POINTER_TYPE_P (type))
16226 return uses_deducible_template_parms (TREE_TYPE (type));
16228 /* T[integer-constant ]
16229 type [i] */
16230 if (TREE_CODE (type) == ARRAY_TYPE)
16231 return (uses_deducible_template_parms (TREE_TYPE (type))
16232 || deducible_array_bound (TYPE_DOMAIN (type)));
16234 /* T type ::*
16235 type T::*
16236 T T::*
16237 T (type ::*)()
16238 type (T::*)()
16239 type (type ::*)(T)
16240 type (T::*)(T)
16241 T (type ::*)(T)
16242 T (T::*)()
16243 T (T::*)(T) */
16244 if (TYPE_PTRMEM_P (type))
16245 return (uses_deducible_template_parms (TYPE_PTRMEM_CLASS_TYPE (type))
16246 || (uses_deducible_template_parms
16247 (TYPE_PTRMEM_POINTED_TO_TYPE (type))));
16249 /* template-name <T> (where template-name refers to a class template)
16250 template-name <i> (where template-name refers to a class template) */
16251 if (CLASS_TYPE_P (type)
16252 && CLASSTYPE_TEMPLATE_INFO (type)
16253 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (type)))
16254 return deducible_template_args (INNERMOST_TEMPLATE_ARGS
16255 (CLASSTYPE_TI_ARGS (type)));
16257 /* type (T)
16259 T(T) */
16260 if (TREE_CODE (type) == FUNCTION_TYPE
16261 || TREE_CODE (type) == METHOD_TYPE)
16263 if (uses_deducible_template_parms (TREE_TYPE (type)))
16264 return true;
16265 tree parm = TYPE_ARG_TYPES (type);
16266 if (TREE_CODE (type) == METHOD_TYPE)
16267 parm = TREE_CHAIN (parm);
16268 for (; parm; parm = TREE_CHAIN (parm))
16269 if (uses_deducible_template_parms (TREE_VALUE (parm)))
16270 return true;
16273 return false;
16276 /* Subroutine of type_unification_real and unify_pack_expansion to
16277 handle unification of a single P/A pair. Parameters are as
16278 for those functions. */
16280 static int
16281 unify_one_argument (tree tparms, tree targs, tree parm, tree arg,
16282 int subr, unification_kind_t strict, int flags,
16283 bool explain_p)
16285 tree arg_expr = NULL_TREE;
16286 int arg_strict;
16288 if (arg == error_mark_node || parm == error_mark_node)
16289 return unify_invalid (explain_p);
16290 if (arg == unknown_type_node)
16291 /* We can't deduce anything from this, but we might get all the
16292 template args from other function args. */
16293 return unify_success (explain_p);
16295 /* Implicit conversions (Clause 4) will be performed on a function
16296 argument to convert it to the type of the corresponding function
16297 parameter if the parameter type contains no template-parameters that
16298 participate in template argument deduction. */
16299 if (TYPE_P (parm) && !uses_template_parms (parm))
16300 /* For function parameters that contain no template-parameters at all,
16301 we have historically checked for convertibility in order to shortcut
16302 consideration of this candidate. */
16303 return check_non_deducible_conversion (parm, arg, strict, flags,
16304 explain_p);
16305 else if (strict == DEDUCE_CALL
16306 && TYPE_P (parm) && !uses_deducible_template_parms (parm))
16307 /* For function parameters with only non-deducible template parameters,
16308 just return. */
16309 return unify_success (explain_p);
16311 switch (strict)
16313 case DEDUCE_CALL:
16314 arg_strict = (UNIFY_ALLOW_OUTER_LEVEL
16315 | UNIFY_ALLOW_MORE_CV_QUAL
16316 | UNIFY_ALLOW_DERIVED);
16317 break;
16319 case DEDUCE_CONV:
16320 arg_strict = UNIFY_ALLOW_LESS_CV_QUAL;
16321 break;
16323 case DEDUCE_EXACT:
16324 arg_strict = UNIFY_ALLOW_NONE;
16325 break;
16327 default:
16328 gcc_unreachable ();
16331 /* We only do these transformations if this is the top-level
16332 parameter_type_list in a call or declaration matching; in other
16333 situations (nested function declarators, template argument lists) we
16334 won't be comparing a type to an expression, and we don't do any type
16335 adjustments. */
16336 if (!subr)
16338 if (!TYPE_P (arg))
16340 gcc_assert (TREE_TYPE (arg) != NULL_TREE);
16341 if (type_unknown_p (arg))
16343 /* [temp.deduct.type] A template-argument can be
16344 deduced from a pointer to function or pointer
16345 to member function argument if the set of
16346 overloaded functions does not contain function
16347 templates and at most one of a set of
16348 overloaded functions provides a unique
16349 match. */
16351 if (resolve_overloaded_unification
16352 (tparms, targs, parm, arg, strict,
16353 arg_strict, explain_p))
16354 return unify_success (explain_p);
16355 return unify_overload_resolution_failure (explain_p, arg);
16358 arg_expr = arg;
16359 arg = unlowered_expr_type (arg);
16360 if (arg == error_mark_node)
16361 return unify_invalid (explain_p);
16364 arg_strict |=
16365 maybe_adjust_types_for_deduction (strict, &parm, &arg, arg_expr);
16367 else
16368 gcc_assert ((TYPE_P (parm) || TREE_CODE (parm) == TEMPLATE_DECL)
16369 == (TYPE_P (arg) || TREE_CODE (arg) == TEMPLATE_DECL));
16371 /* For deduction from an init-list we need the actual list. */
16372 if (arg_expr && BRACE_ENCLOSED_INITIALIZER_P (arg_expr))
16373 arg = arg_expr;
16374 return unify (tparms, targs, parm, arg, arg_strict, explain_p);
16377 /* Most parms like fn_type_unification.
16379 If SUBR is 1, we're being called recursively (to unify the
16380 arguments of a function or method parameter of a function
16381 template).
16383 CHECKS is a pointer to a vector of access checks encountered while
16384 substituting default template arguments. */
16386 static int
16387 type_unification_real (tree tparms,
16388 tree targs,
16389 tree xparms,
16390 const tree *xargs,
16391 unsigned int xnargs,
16392 int subr,
16393 unification_kind_t strict,
16394 int flags,
16395 vec<deferred_access_check, va_gc> **checks,
16396 bool explain_p)
16398 tree parm, arg;
16399 int i;
16400 int ntparms = TREE_VEC_LENGTH (tparms);
16401 int saw_undeduced = 0;
16402 tree parms;
16403 const tree *args;
16404 unsigned int nargs;
16405 unsigned int ia;
16407 gcc_assert (TREE_CODE (tparms) == TREE_VEC);
16408 gcc_assert (xparms == NULL_TREE || TREE_CODE (xparms) == TREE_LIST);
16409 gcc_assert (ntparms > 0);
16411 /* Reset the number of non-defaulted template arguments contained
16412 in TARGS. */
16413 NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs) = NULL_TREE;
16415 again:
16416 parms = xparms;
16417 args = xargs;
16418 nargs = xnargs;
16420 ia = 0;
16421 while (parms && parms != void_list_node
16422 && ia < nargs)
16424 parm = TREE_VALUE (parms);
16426 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION
16427 && (!TREE_CHAIN (parms) || TREE_CHAIN (parms) == void_list_node))
16428 /* For a function parameter pack that occurs at the end of the
16429 parameter-declaration-list, the type A of each remaining
16430 argument of the call is compared with the type P of the
16431 declarator-id of the function parameter pack. */
16432 break;
16434 parms = TREE_CHAIN (parms);
16436 if (TREE_CODE (parm) == TYPE_PACK_EXPANSION)
16437 /* For a function parameter pack that does not occur at the
16438 end of the parameter-declaration-list, the type of the
16439 parameter pack is a non-deduced context. */
16440 continue;
16442 arg = args[ia];
16443 ++ia;
16445 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
16446 flags, explain_p))
16447 return 1;
16450 if (parms
16451 && parms != void_list_node
16452 && TREE_CODE (TREE_VALUE (parms)) == TYPE_PACK_EXPANSION)
16454 /* Unify the remaining arguments with the pack expansion type. */
16455 tree argvec;
16456 tree parmvec = make_tree_vec (1);
16458 /* Allocate a TREE_VEC and copy in all of the arguments */
16459 argvec = make_tree_vec (nargs - ia);
16460 for (i = 0; ia < nargs; ++ia, ++i)
16461 TREE_VEC_ELT (argvec, i) = args[ia];
16463 /* Copy the parameter into parmvec. */
16464 TREE_VEC_ELT (parmvec, 0) = TREE_VALUE (parms);
16465 if (unify_pack_expansion (tparms, targs, parmvec, argvec, strict,
16466 /*subr=*/subr, explain_p))
16467 return 1;
16469 /* Advance to the end of the list of parameters. */
16470 parms = TREE_CHAIN (parms);
16473 /* Fail if we've reached the end of the parm list, and more args
16474 are present, and the parm list isn't variadic. */
16475 if (ia < nargs && parms == void_list_node)
16476 return unify_too_many_arguments (explain_p, nargs, ia);
16477 /* Fail if parms are left and they don't have default values. */
16478 if (parms && parms != void_list_node
16479 && TREE_PURPOSE (parms) == NULL_TREE)
16481 unsigned int count = nargs;
16482 tree p = parms;
16483 while (p && p != void_list_node)
16485 count++;
16486 p = TREE_CHAIN (p);
16488 return unify_too_few_arguments (explain_p, ia, count);
16491 if (!subr)
16493 tsubst_flags_t complain = (explain_p
16494 ? tf_warning_or_error
16495 : tf_none);
16497 for (i = 0; i < ntparms; i++)
16499 tree targ = TREE_VEC_ELT (targs, i);
16500 tree tparm = TREE_VEC_ELT (tparms, i);
16502 /* Clear the "incomplete" flags on all argument packs now so that
16503 substituting them into later default arguments works. */
16504 if (targ && ARGUMENT_PACK_P (targ))
16506 ARGUMENT_PACK_INCOMPLETE_P (targ) = 0;
16507 ARGUMENT_PACK_EXPLICIT_ARGS (targ) = NULL_TREE;
16510 if (targ || tparm == error_mark_node)
16511 continue;
16512 tparm = TREE_VALUE (tparm);
16514 /* If this is an undeduced nontype parameter that depends on
16515 a type parameter, try another pass; its type may have been
16516 deduced from a later argument than the one from which
16517 this parameter can be deduced. */
16518 if (TREE_CODE (tparm) == PARM_DECL
16519 && uses_template_parms (TREE_TYPE (tparm))
16520 && !saw_undeduced++)
16521 goto again;
16523 /* Core issue #226 (C++0x) [temp.deduct]:
16525 If a template argument has not been deduced, its
16526 default template argument, if any, is used.
16528 When we are in C++98 mode, TREE_PURPOSE will either
16529 be NULL_TREE or ERROR_MARK_NODE, so we do not need
16530 to explicitly check cxx_dialect here. */
16531 if (TREE_PURPOSE (TREE_VEC_ELT (tparms, i)))
16533 tree parm = TREE_VALUE (TREE_VEC_ELT (tparms, i));
16534 tree arg = TREE_PURPOSE (TREE_VEC_ELT (tparms, i));
16535 reopen_deferring_access_checks (*checks);
16536 location_t save_loc = input_location;
16537 if (DECL_P (parm))
16538 input_location = DECL_SOURCE_LOCATION (parm);
16539 arg = tsubst_template_arg (arg, targs, complain, NULL_TREE);
16540 arg = convert_template_argument (parm, arg, targs, complain,
16541 i, NULL_TREE);
16542 input_location = save_loc;
16543 *checks = get_deferred_access_checks ();
16544 pop_deferring_access_checks ();
16545 if (arg == error_mark_node)
16546 return 1;
16547 else
16549 TREE_VEC_ELT (targs, i) = arg;
16550 /* The position of the first default template argument,
16551 is also the number of non-defaulted arguments in TARGS.
16552 Record that. */
16553 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
16554 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, i);
16555 continue;
16559 /* If the type parameter is a parameter pack, then it will
16560 be deduced to an empty parameter pack. */
16561 if (template_parameter_pack_p (tparm))
16563 tree arg;
16565 if (TREE_CODE (tparm) == TEMPLATE_PARM_INDEX)
16567 arg = make_node (NONTYPE_ARGUMENT_PACK);
16568 TREE_TYPE (arg) = TREE_TYPE (TEMPLATE_PARM_DECL (tparm));
16569 TREE_CONSTANT (arg) = 1;
16571 else
16572 arg = cxx_make_type (TYPE_ARGUMENT_PACK);
16574 SET_ARGUMENT_PACK_ARGS (arg, make_tree_vec (0));
16576 TREE_VEC_ELT (targs, i) = arg;
16577 continue;
16580 return unify_parameter_deduction_failure (explain_p, tparm);
16583 #ifdef ENABLE_CHECKING
16584 if (!NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs))
16585 SET_NON_DEFAULT_TEMPLATE_ARGS_COUNT (targs, TREE_VEC_LENGTH (targs));
16586 #endif
16588 return unify_success (explain_p);
16591 /* Subroutine of type_unification_real. Args are like the variables
16592 at the call site. ARG is an overloaded function (or template-id);
16593 we try deducing template args from each of the overloads, and if
16594 only one succeeds, we go with that. Modifies TARGS and returns
16595 true on success. */
16597 static bool
16598 resolve_overloaded_unification (tree tparms,
16599 tree targs,
16600 tree parm,
16601 tree arg,
16602 unification_kind_t strict,
16603 int sub_strict,
16604 bool explain_p)
16606 tree tempargs = copy_node (targs);
16607 int good = 0;
16608 tree goodfn = NULL_TREE;
16609 bool addr_p;
16611 if (TREE_CODE (arg) == ADDR_EXPR)
16613 arg = TREE_OPERAND (arg, 0);
16614 addr_p = true;
16616 else
16617 addr_p = false;
16619 if (TREE_CODE (arg) == COMPONENT_REF)
16620 /* Handle `&x' where `x' is some static or non-static member
16621 function name. */
16622 arg = TREE_OPERAND (arg, 1);
16624 if (TREE_CODE (arg) == OFFSET_REF)
16625 arg = TREE_OPERAND (arg, 1);
16627 /* Strip baselink information. */
16628 if (BASELINK_P (arg))
16629 arg = BASELINK_FUNCTIONS (arg);
16631 if (TREE_CODE (arg) == TEMPLATE_ID_EXPR)
16633 /* If we got some explicit template args, we need to plug them into
16634 the affected templates before we try to unify, in case the
16635 explicit args will completely resolve the templates in question. */
16637 int ok = 0;
16638 tree expl_subargs = TREE_OPERAND (arg, 1);
16639 arg = TREE_OPERAND (arg, 0);
16641 for (; arg; arg = OVL_NEXT (arg))
16643 tree fn = OVL_CURRENT (arg);
16644 tree subargs, elem;
16646 if (TREE_CODE (fn) != TEMPLATE_DECL)
16647 continue;
16649 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
16650 expl_subargs, NULL_TREE, tf_none,
16651 /*require_all_args=*/true,
16652 /*use_default_args=*/true);
16653 if (subargs != error_mark_node
16654 && !any_dependent_template_arguments_p (subargs))
16656 elem = TREE_TYPE (instantiate_template (fn, subargs, tf_none));
16657 if (try_one_overload (tparms, targs, tempargs, parm,
16658 elem, strict, sub_strict, addr_p, explain_p)
16659 && (!goodfn || !same_type_p (goodfn, elem)))
16661 goodfn = elem;
16662 ++good;
16665 else if (subargs)
16666 ++ok;
16668 /* If no templates (or more than one) are fully resolved by the
16669 explicit arguments, this template-id is a non-deduced context; it
16670 could still be OK if we deduce all template arguments for the
16671 enclosing call through other arguments. */
16672 if (good != 1)
16673 good = ok;
16675 else if (TREE_CODE (arg) != OVERLOAD
16676 && TREE_CODE (arg) != FUNCTION_DECL)
16677 /* If ARG is, for example, "(0, &f)" then its type will be unknown
16678 -- but the deduction does not succeed because the expression is
16679 not just the function on its own. */
16680 return false;
16681 else
16682 for (; arg; arg = OVL_NEXT (arg))
16683 if (try_one_overload (tparms, targs, tempargs, parm,
16684 TREE_TYPE (OVL_CURRENT (arg)),
16685 strict, sub_strict, addr_p, explain_p)
16686 && (!goodfn || !decls_match (goodfn, OVL_CURRENT (arg))))
16688 goodfn = OVL_CURRENT (arg);
16689 ++good;
16692 /* [temp.deduct.type] A template-argument can be deduced from a pointer
16693 to function or pointer to member function argument if the set of
16694 overloaded functions does not contain function templates and at most
16695 one of a set of overloaded functions provides a unique match.
16697 So if we found multiple possibilities, we return success but don't
16698 deduce anything. */
16700 if (good == 1)
16702 int i = TREE_VEC_LENGTH (targs);
16703 for (; i--; )
16704 if (TREE_VEC_ELT (tempargs, i))
16705 TREE_VEC_ELT (targs, i) = TREE_VEC_ELT (tempargs, i);
16707 if (good)
16708 return true;
16710 return false;
16713 /* Core DR 115: In contexts where deduction is done and fails, or in
16714 contexts where deduction is not done, if a template argument list is
16715 specified and it, along with any default template arguments, identifies
16716 a single function template specialization, then the template-id is an
16717 lvalue for the function template specialization. */
16719 tree
16720 resolve_nondeduced_context (tree orig_expr)
16722 tree expr, offset, baselink;
16723 bool addr;
16725 if (!type_unknown_p (orig_expr))
16726 return orig_expr;
16728 expr = orig_expr;
16729 addr = false;
16730 offset = NULL_TREE;
16731 baselink = NULL_TREE;
16733 if (TREE_CODE (expr) == ADDR_EXPR)
16735 expr = TREE_OPERAND (expr, 0);
16736 addr = true;
16738 if (TREE_CODE (expr) == OFFSET_REF)
16740 offset = expr;
16741 expr = TREE_OPERAND (expr, 1);
16743 if (BASELINK_P (expr))
16745 baselink = expr;
16746 expr = BASELINK_FUNCTIONS (expr);
16749 if (TREE_CODE (expr) == TEMPLATE_ID_EXPR)
16751 int good = 0;
16752 tree goodfn = NULL_TREE;
16754 /* If we got some explicit template args, we need to plug them into
16755 the affected templates before we try to unify, in case the
16756 explicit args will completely resolve the templates in question. */
16758 tree expl_subargs = TREE_OPERAND (expr, 1);
16759 tree arg = TREE_OPERAND (expr, 0);
16760 tree badfn = NULL_TREE;
16761 tree badargs = NULL_TREE;
16763 for (; arg; arg = OVL_NEXT (arg))
16765 tree fn = OVL_CURRENT (arg);
16766 tree subargs, elem;
16768 if (TREE_CODE (fn) != TEMPLATE_DECL)
16769 continue;
16771 subargs = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (fn),
16772 expl_subargs, NULL_TREE, tf_none,
16773 /*require_all_args=*/true,
16774 /*use_default_args=*/true);
16775 if (subargs != error_mark_node
16776 && !any_dependent_template_arguments_p (subargs))
16778 elem = instantiate_template (fn, subargs, tf_none);
16779 if (elem == error_mark_node)
16781 badfn = fn;
16782 badargs = subargs;
16784 else if (elem && (!goodfn || !decls_match (goodfn, elem)))
16786 goodfn = elem;
16787 ++good;
16791 if (good == 1)
16793 mark_used (goodfn);
16794 expr = goodfn;
16795 if (baselink)
16796 expr = build_baselink (BASELINK_BINFO (baselink),
16797 BASELINK_ACCESS_BINFO (baselink),
16798 expr, BASELINK_OPTYPE (baselink));
16799 if (offset)
16801 tree base
16802 = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (offset, 0)));
16803 expr = build_offset_ref (base, expr, addr, tf_warning_or_error);
16805 if (addr)
16806 expr = cp_build_addr_expr (expr, tf_warning_or_error);
16807 return expr;
16809 else if (good == 0 && badargs)
16810 /* There were no good options and at least one bad one, so let the
16811 user know what the problem is. */
16812 instantiate_template (badfn, badargs, tf_warning_or_error);
16814 return orig_expr;
16817 /* Subroutine of resolve_overloaded_unification; does deduction for a single
16818 overload. Fills TARGS with any deduced arguments, or error_mark_node if
16819 different overloads deduce different arguments for a given parm.
16820 ADDR_P is true if the expression for which deduction is being
16821 performed was of the form "& fn" rather than simply "fn".
16823 Returns 1 on success. */
16825 static int
16826 try_one_overload (tree tparms,
16827 tree orig_targs,
16828 tree targs,
16829 tree parm,
16830 tree arg,
16831 unification_kind_t strict,
16832 int sub_strict,
16833 bool addr_p,
16834 bool explain_p)
16836 int nargs;
16837 tree tempargs;
16838 int i;
16840 if (arg == error_mark_node)
16841 return 0;
16843 /* [temp.deduct.type] A template-argument can be deduced from a pointer
16844 to function or pointer to member function argument if the set of
16845 overloaded functions does not contain function templates and at most
16846 one of a set of overloaded functions provides a unique match.
16848 So if this is a template, just return success. */
16850 if (uses_template_parms (arg))
16851 return 1;
16853 if (TREE_CODE (arg) == METHOD_TYPE)
16854 arg = build_ptrmemfunc_type (build_pointer_type (arg));
16855 else if (addr_p)
16856 arg = build_pointer_type (arg);
16858 sub_strict |= maybe_adjust_types_for_deduction (strict, &parm, &arg, NULL);
16860 /* We don't copy orig_targs for this because if we have already deduced
16861 some template args from previous args, unify would complain when we
16862 try to deduce a template parameter for the same argument, even though
16863 there isn't really a conflict. */
16864 nargs = TREE_VEC_LENGTH (targs);
16865 tempargs = make_tree_vec (nargs);
16867 if (unify (tparms, tempargs, parm, arg, sub_strict, explain_p))
16868 return 0;
16870 /* First make sure we didn't deduce anything that conflicts with
16871 explicitly specified args. */
16872 for (i = nargs; i--; )
16874 tree elt = TREE_VEC_ELT (tempargs, i);
16875 tree oldelt = TREE_VEC_ELT (orig_targs, i);
16877 if (!elt)
16878 /*NOP*/;
16879 else if (uses_template_parms (elt))
16880 /* Since we're unifying against ourselves, we will fill in
16881 template args used in the function parm list with our own
16882 template parms. Discard them. */
16883 TREE_VEC_ELT (tempargs, i) = NULL_TREE;
16884 else if (oldelt && !template_args_equal (oldelt, elt))
16885 return 0;
16888 for (i = nargs; i--; )
16890 tree elt = TREE_VEC_ELT (tempargs, i);
16892 if (elt)
16893 TREE_VEC_ELT (targs, i) = elt;
16896 return 1;
16899 /* PARM is a template class (perhaps with unbound template
16900 parameters). ARG is a fully instantiated type. If ARG can be
16901 bound to PARM, return ARG, otherwise return NULL_TREE. TPARMS and
16902 TARGS are as for unify. */
16904 static tree
16905 try_class_unification (tree tparms, tree targs, tree parm, tree arg,
16906 bool explain_p)
16908 tree copy_of_targs;
16910 if (!CLASSTYPE_TEMPLATE_INFO (arg)
16911 || (most_general_template (CLASSTYPE_TI_TEMPLATE (arg))
16912 != most_general_template (CLASSTYPE_TI_TEMPLATE (parm))))
16913 return NULL_TREE;
16915 /* We need to make a new template argument vector for the call to
16916 unify. If we used TARGS, we'd clutter it up with the result of
16917 the attempted unification, even if this class didn't work out.
16918 We also don't want to commit ourselves to all the unifications
16919 we've already done, since unification is supposed to be done on
16920 an argument-by-argument basis. In other words, consider the
16921 following pathological case:
16923 template <int I, int J, int K>
16924 struct S {};
16926 template <int I, int J>
16927 struct S<I, J, 2> : public S<I, I, I>, S<J, J, J> {};
16929 template <int I, int J, int K>
16930 void f(S<I, J, K>, S<I, I, I>);
16932 void g() {
16933 S<0, 0, 0> s0;
16934 S<0, 1, 2> s2;
16936 f(s0, s2);
16939 Now, by the time we consider the unification involving `s2', we
16940 already know that we must have `f<0, 0, 0>'. But, even though
16941 `S<0, 1, 2>' is derived from `S<0, 0, 0>', the code is invalid
16942 because there are two ways to unify base classes of S<0, 1, 2>
16943 with S<I, I, I>. If we kept the already deduced knowledge, we
16944 would reject the possibility I=1. */
16945 copy_of_targs = make_tree_vec (TREE_VEC_LENGTH (targs));
16947 /* If unification failed, we're done. */
16948 if (unify (tparms, copy_of_targs, CLASSTYPE_TI_ARGS (parm),
16949 CLASSTYPE_TI_ARGS (arg), UNIFY_ALLOW_NONE, explain_p))
16950 return NULL_TREE;
16952 return arg;
16955 /* Given a template type PARM and a class type ARG, find the unique
16956 base type in ARG that is an instance of PARM. We do not examine
16957 ARG itself; only its base-classes. If there is not exactly one
16958 appropriate base class, return NULL_TREE. PARM may be the type of
16959 a partial specialization, as well as a plain template type. Used
16960 by unify. */
16962 static enum template_base_result
16963 get_template_base (tree tparms, tree targs, tree parm, tree arg,
16964 bool explain_p, tree *result)
16966 tree rval = NULL_TREE;
16967 tree binfo;
16969 gcc_assert (RECORD_OR_UNION_CODE_P (TREE_CODE (arg)));
16971 binfo = TYPE_BINFO (complete_type (arg));
16972 if (!binfo)
16974 /* The type could not be completed. */
16975 *result = NULL_TREE;
16976 return tbr_incomplete_type;
16979 /* Walk in inheritance graph order. The search order is not
16980 important, and this avoids multiple walks of virtual bases. */
16981 for (binfo = TREE_CHAIN (binfo); binfo; binfo = TREE_CHAIN (binfo))
16983 tree r = try_class_unification (tparms, targs, parm,
16984 BINFO_TYPE (binfo), explain_p);
16986 if (r)
16988 /* If there is more than one satisfactory baseclass, then:
16990 [temp.deduct.call]
16992 If they yield more than one possible deduced A, the type
16993 deduction fails.
16995 applies. */
16996 if (rval && !same_type_p (r, rval))
16998 *result = NULL_TREE;
16999 return tbr_ambiguous_baseclass;
17002 rval = r;
17006 *result = rval;
17007 return tbr_success;
17010 /* Returns the level of DECL, which declares a template parameter. */
17012 static int
17013 template_decl_level (tree decl)
17015 switch (TREE_CODE (decl))
17017 case TYPE_DECL:
17018 case TEMPLATE_DECL:
17019 return TEMPLATE_TYPE_LEVEL (TREE_TYPE (decl));
17021 case PARM_DECL:
17022 return TEMPLATE_PARM_LEVEL (DECL_INITIAL (decl));
17024 default:
17025 gcc_unreachable ();
17027 return 0;
17030 /* Decide whether ARG can be unified with PARM, considering only the
17031 cv-qualifiers of each type, given STRICT as documented for unify.
17032 Returns nonzero iff the unification is OK on that basis. */
17034 static int
17035 check_cv_quals_for_unify (int strict, tree arg, tree parm)
17037 int arg_quals = cp_type_quals (arg);
17038 int parm_quals = cp_type_quals (parm);
17040 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
17041 && !(strict & UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
17043 /* Although a CVR qualifier is ignored when being applied to a
17044 substituted template parameter ([8.3.2]/1 for example), that
17045 does not allow us to unify "const T" with "int&" because both
17046 types are not of the form "cv-list T" [14.8.2.5 temp.deduct.type].
17047 It is ok when we're allowing additional CV qualifiers
17048 at the outer level [14.8.2.1]/3,1st bullet. */
17049 if ((TREE_CODE (arg) == REFERENCE_TYPE
17050 || TREE_CODE (arg) == FUNCTION_TYPE
17051 || TREE_CODE (arg) == METHOD_TYPE)
17052 && (parm_quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE)))
17053 return 0;
17055 if ((!POINTER_TYPE_P (arg) && TREE_CODE (arg) != TEMPLATE_TYPE_PARM)
17056 && (parm_quals & TYPE_QUAL_RESTRICT))
17057 return 0;
17060 if (!(strict & (UNIFY_ALLOW_MORE_CV_QUAL | UNIFY_ALLOW_OUTER_MORE_CV_QUAL))
17061 && (arg_quals & parm_quals) != parm_quals)
17062 return 0;
17064 if (!(strict & (UNIFY_ALLOW_LESS_CV_QUAL | UNIFY_ALLOW_OUTER_LESS_CV_QUAL))
17065 && (parm_quals & arg_quals) != arg_quals)
17066 return 0;
17068 return 1;
17071 /* Determines the LEVEL and INDEX for the template parameter PARM. */
17072 void
17073 template_parm_level_and_index (tree parm, int* level, int* index)
17075 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
17076 || TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
17077 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
17079 *index = TEMPLATE_TYPE_IDX (parm);
17080 *level = TEMPLATE_TYPE_LEVEL (parm);
17082 else
17084 *index = TEMPLATE_PARM_IDX (parm);
17085 *level = TEMPLATE_PARM_LEVEL (parm);
17089 #define RECUR_AND_CHECK_FAILURE(TP, TA, P, A, S, EP) \
17090 do { \
17091 if (unify (TP, TA, P, A, S, EP)) \
17092 return 1; \
17093 } while (0);
17095 /* Unifies the remaining arguments in PACKED_ARGS with the pack
17096 expansion at the end of PACKED_PARMS. Returns 0 if the type
17097 deduction succeeds, 1 otherwise. STRICT is the same as in
17098 unify. CALL_ARGS_P is true iff PACKED_ARGS is actually a function
17099 call argument list. We'll need to adjust the arguments to make them
17100 types. SUBR tells us if this is from a recursive call to
17101 type_unification_real, or for comparing two template argument
17102 lists. */
17104 static int
17105 unify_pack_expansion (tree tparms, tree targs, tree packed_parms,
17106 tree packed_args, unification_kind_t strict,
17107 bool subr, bool explain_p)
17109 tree parm
17110 = TREE_VEC_ELT (packed_parms, TREE_VEC_LENGTH (packed_parms) - 1);
17111 tree pattern = PACK_EXPANSION_PATTERN (parm);
17112 tree pack, packs = NULL_TREE;
17113 int i, start = TREE_VEC_LENGTH (packed_parms) - 1;
17115 packed_args = expand_template_argument_pack (packed_args);
17117 int len = TREE_VEC_LENGTH (packed_args);
17119 /* Determine the parameter packs we will be deducing from the
17120 pattern, and record their current deductions. */
17121 for (pack = PACK_EXPANSION_PARAMETER_PACKS (parm);
17122 pack; pack = TREE_CHAIN (pack))
17124 tree parm_pack = TREE_VALUE (pack);
17125 int idx, level;
17127 /* Determine the index and level of this parameter pack. */
17128 template_parm_level_and_index (parm_pack, &level, &idx);
17130 /* Keep track of the parameter packs and their corresponding
17131 argument packs. */
17132 packs = tree_cons (parm_pack, TMPL_ARG (targs, level, idx), packs);
17133 TREE_TYPE (packs) = make_tree_vec (len - start);
17136 /* Loop through all of the arguments that have not yet been
17137 unified and unify each with the pattern. */
17138 for (i = start; i < len; i++)
17140 tree parm;
17141 bool any_explicit = false;
17142 tree arg = TREE_VEC_ELT (packed_args, i);
17144 /* For each parameter pack, set its TMPL_ARG to either NULL_TREE
17145 or the element of its argument pack at the current index if
17146 this argument was explicitly specified. */
17147 for (pack = packs; pack; pack = TREE_CHAIN (pack))
17149 int idx, level;
17150 tree arg, pargs;
17151 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
17153 arg = NULL_TREE;
17154 if (TREE_VALUE (pack)
17155 && (pargs = ARGUMENT_PACK_EXPLICIT_ARGS (TREE_VALUE (pack)))
17156 && (i - start < TREE_VEC_LENGTH (pargs)))
17158 any_explicit = true;
17159 arg = TREE_VEC_ELT (pargs, i - start);
17161 TMPL_ARG (targs, level, idx) = arg;
17164 /* If we had explicit template arguments, substitute them into the
17165 pattern before deduction. */
17166 if (any_explicit)
17168 /* Some arguments might still be unspecified or dependent. */
17169 bool dependent;
17170 ++processing_template_decl;
17171 dependent = any_dependent_template_arguments_p (targs);
17172 if (!dependent)
17173 --processing_template_decl;
17174 parm = tsubst (pattern, targs,
17175 explain_p ? tf_warning_or_error : tf_none,
17176 NULL_TREE);
17177 if (dependent)
17178 --processing_template_decl;
17179 if (parm == error_mark_node)
17180 return 1;
17182 else
17183 parm = pattern;
17185 /* Unify the pattern with the current argument. */
17186 if (unify_one_argument (tparms, targs, parm, arg, subr, strict,
17187 LOOKUP_IMPLICIT, explain_p))
17188 return 1;
17190 /* For each parameter pack, collect the deduced value. */
17191 for (pack = packs; pack; pack = TREE_CHAIN (pack))
17193 int idx, level;
17194 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
17196 TREE_VEC_ELT (TREE_TYPE (pack), i - start) =
17197 TMPL_ARG (targs, level, idx);
17201 /* Verify that the results of unification with the parameter packs
17202 produce results consistent with what we've seen before, and make
17203 the deduced argument packs available. */
17204 for (pack = packs; pack; pack = TREE_CHAIN (pack))
17206 tree old_pack = TREE_VALUE (pack);
17207 tree new_args = TREE_TYPE (pack);
17208 int i, len = TREE_VEC_LENGTH (new_args);
17209 int idx, level;
17210 bool nondeduced_p = false;
17212 /* By default keep the original deduced argument pack.
17213 If necessary, more specific code is going to update the
17214 resulting deduced argument later down in this function. */
17215 template_parm_level_and_index (TREE_PURPOSE (pack), &level, &idx);
17216 TMPL_ARG (targs, level, idx) = old_pack;
17218 /* If NEW_ARGS contains any NULL_TREE entries, we didn't
17219 actually deduce anything. */
17220 for (i = 0; i < len && !nondeduced_p; ++i)
17221 if (TREE_VEC_ELT (new_args, i) == NULL_TREE)
17222 nondeduced_p = true;
17223 if (nondeduced_p)
17224 continue;
17226 if (old_pack && ARGUMENT_PACK_INCOMPLETE_P (old_pack))
17228 /* If we had fewer function args than explicit template args,
17229 just use the explicits. */
17230 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
17231 int explicit_len = TREE_VEC_LENGTH (explicit_args);
17232 if (len < explicit_len)
17233 new_args = explicit_args;
17236 if (!old_pack)
17238 tree result;
17239 /* Build the deduced *_ARGUMENT_PACK. */
17240 if (TREE_CODE (TREE_PURPOSE (pack)) == TEMPLATE_PARM_INDEX)
17242 result = make_node (NONTYPE_ARGUMENT_PACK);
17243 TREE_TYPE (result) =
17244 TREE_TYPE (TEMPLATE_PARM_DECL (TREE_PURPOSE (pack)));
17245 TREE_CONSTANT (result) = 1;
17247 else
17248 result = cxx_make_type (TYPE_ARGUMENT_PACK);
17250 SET_ARGUMENT_PACK_ARGS (result, new_args);
17252 /* Note the deduced argument packs for this parameter
17253 pack. */
17254 TMPL_ARG (targs, level, idx) = result;
17256 else if (ARGUMENT_PACK_INCOMPLETE_P (old_pack)
17257 && (ARGUMENT_PACK_ARGS (old_pack)
17258 == ARGUMENT_PACK_EXPLICIT_ARGS (old_pack)))
17260 /* We only had the explicitly-provided arguments before, but
17261 now we have a complete set of arguments. */
17262 tree explicit_args = ARGUMENT_PACK_EXPLICIT_ARGS (old_pack);
17264 SET_ARGUMENT_PACK_ARGS (old_pack, new_args);
17265 ARGUMENT_PACK_INCOMPLETE_P (old_pack) = 1;
17266 ARGUMENT_PACK_EXPLICIT_ARGS (old_pack) = explicit_args;
17268 else
17270 tree bad_old_arg = NULL_TREE, bad_new_arg = NULL_TREE;
17271 tree old_args = ARGUMENT_PACK_ARGS (old_pack);
17273 if (!comp_template_args_with_info (old_args, new_args,
17274 &bad_old_arg, &bad_new_arg))
17275 /* Inconsistent unification of this parameter pack. */
17276 return unify_parameter_pack_inconsistent (explain_p,
17277 bad_old_arg,
17278 bad_new_arg);
17282 return unify_success (explain_p);
17285 /* Handle unification of the domain of an array. PARM_DOM and ARG_DOM are
17286 INTEGER_TYPEs representing the TYPE_DOMAIN of ARRAY_TYPEs. The other
17287 parameters and return value are as for unify. */
17289 static int
17290 unify_array_domain (tree tparms, tree targs,
17291 tree parm_dom, tree arg_dom,
17292 bool explain_p)
17294 tree parm_max;
17295 tree arg_max;
17296 bool parm_cst;
17297 bool arg_cst;
17299 /* Our representation of array types uses "N - 1" as the
17300 TYPE_MAX_VALUE for an array with "N" elements, if "N" is
17301 not an integer constant. We cannot unify arbitrarily
17302 complex expressions, so we eliminate the MINUS_EXPRs
17303 here. */
17304 parm_max = TYPE_MAX_VALUE (parm_dom);
17305 parm_cst = TREE_CODE (parm_max) == INTEGER_CST;
17306 if (!parm_cst)
17308 gcc_assert (TREE_CODE (parm_max) == MINUS_EXPR);
17309 parm_max = TREE_OPERAND (parm_max, 0);
17311 arg_max = TYPE_MAX_VALUE (arg_dom);
17312 arg_cst = TREE_CODE (arg_max) == INTEGER_CST;
17313 if (!arg_cst)
17315 /* The ARG_MAX may not be a simple MINUS_EXPR, if we are
17316 trying to unify the type of a variable with the type
17317 of a template parameter. For example:
17319 template <unsigned int N>
17320 void f (char (&) [N]);
17321 int g();
17322 void h(int i) {
17323 char a[g(i)];
17324 f(a);
17327 Here, the type of the ARG will be "int [g(i)]", and
17328 may be a SAVE_EXPR, etc. */
17329 if (TREE_CODE (arg_max) != MINUS_EXPR)
17330 return unify_vla_arg (explain_p, arg_dom);
17331 arg_max = TREE_OPERAND (arg_max, 0);
17334 /* If only one of the bounds used a MINUS_EXPR, compensate
17335 by adding one to the other bound. */
17336 if (parm_cst && !arg_cst)
17337 parm_max = fold_build2_loc (input_location, PLUS_EXPR,
17338 integer_type_node,
17339 parm_max,
17340 integer_one_node);
17341 else if (arg_cst && !parm_cst)
17342 arg_max = fold_build2_loc (input_location, PLUS_EXPR,
17343 integer_type_node,
17344 arg_max,
17345 integer_one_node);
17347 return unify (tparms, targs, parm_max, arg_max,
17348 UNIFY_ALLOW_INTEGER, explain_p);
17351 /* Deduce the value of template parameters. TPARMS is the (innermost)
17352 set of template parameters to a template. TARGS is the bindings
17353 for those template parameters, as determined thus far; TARGS may
17354 include template arguments for outer levels of template parameters
17355 as well. PARM is a parameter to a template function, or a
17356 subcomponent of that parameter; ARG is the corresponding argument.
17357 This function attempts to match PARM with ARG in a manner
17358 consistent with the existing assignments in TARGS. If more values
17359 are deduced, then TARGS is updated.
17361 Returns 0 if the type deduction succeeds, 1 otherwise. The
17362 parameter STRICT is a bitwise or of the following flags:
17364 UNIFY_ALLOW_NONE:
17365 Require an exact match between PARM and ARG.
17366 UNIFY_ALLOW_MORE_CV_QUAL:
17367 Allow the deduced ARG to be more cv-qualified (by qualification
17368 conversion) than ARG.
17369 UNIFY_ALLOW_LESS_CV_QUAL:
17370 Allow the deduced ARG to be less cv-qualified than ARG.
17371 UNIFY_ALLOW_DERIVED:
17372 Allow the deduced ARG to be a template base class of ARG,
17373 or a pointer to a template base class of the type pointed to by
17374 ARG.
17375 UNIFY_ALLOW_INTEGER:
17376 Allow any integral type to be deduced. See the TEMPLATE_PARM_INDEX
17377 case for more information.
17378 UNIFY_ALLOW_OUTER_LEVEL:
17379 This is the outermost level of a deduction. Used to determine validity
17380 of qualification conversions. A valid qualification conversion must
17381 have const qualified pointers leading up to the inner type which
17382 requires additional CV quals, except at the outer level, where const
17383 is not required [conv.qual]. It would be normal to set this flag in
17384 addition to setting UNIFY_ALLOW_MORE_CV_QUAL.
17385 UNIFY_ALLOW_OUTER_MORE_CV_QUAL:
17386 This is the outermost level of a deduction, and PARM can be more CV
17387 qualified at this point.
17388 UNIFY_ALLOW_OUTER_LESS_CV_QUAL:
17389 This is the outermost level of a deduction, and PARM can be less CV
17390 qualified at this point. */
17392 static int
17393 unify (tree tparms, tree targs, tree parm, tree arg, int strict,
17394 bool explain_p)
17396 int idx;
17397 tree targ;
17398 tree tparm;
17399 int strict_in = strict;
17401 /* I don't think this will do the right thing with respect to types.
17402 But the only case I've seen it in so far has been array bounds, where
17403 signedness is the only information lost, and I think that will be
17404 okay. */
17405 while (TREE_CODE (parm) == NOP_EXPR)
17406 parm = TREE_OPERAND (parm, 0);
17408 if (arg == error_mark_node)
17409 return unify_invalid (explain_p);
17410 if (arg == unknown_type_node
17411 || arg == init_list_type_node)
17412 /* We can't deduce anything from this, but we might get all the
17413 template args from other function args. */
17414 return unify_success (explain_p);
17416 /* If PARM uses template parameters, then we can't bail out here,
17417 even if ARG == PARM, since we won't record unifications for the
17418 template parameters. We might need them if we're trying to
17419 figure out which of two things is more specialized. */
17420 if (arg == parm && !uses_template_parms (parm))
17421 return unify_success (explain_p);
17423 /* Handle init lists early, so the rest of the function can assume
17424 we're dealing with a type. */
17425 if (BRACE_ENCLOSED_INITIALIZER_P (arg))
17427 tree elt, elttype;
17428 unsigned i;
17429 tree orig_parm = parm;
17431 /* Replace T with std::initializer_list<T> for deduction. */
17432 if (TREE_CODE (parm) == TEMPLATE_TYPE_PARM
17433 && flag_deduce_init_list)
17434 parm = listify (parm);
17436 if (!is_std_init_list (parm)
17437 && TREE_CODE (parm) != ARRAY_TYPE)
17438 /* We can only deduce from an initializer list argument if the
17439 parameter is std::initializer_list or an array; otherwise this
17440 is a non-deduced context. */
17441 return unify_success (explain_p);
17443 if (TREE_CODE (parm) == ARRAY_TYPE)
17444 elttype = TREE_TYPE (parm);
17445 else
17446 elttype = TREE_VEC_ELT (CLASSTYPE_TI_ARGS (parm), 0);
17448 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (arg), i, elt)
17450 int elt_strict = strict;
17452 if (elt == error_mark_node)
17453 return unify_invalid (explain_p);
17455 if (!BRACE_ENCLOSED_INITIALIZER_P (elt))
17457 tree type = TREE_TYPE (elt);
17458 /* It should only be possible to get here for a call. */
17459 gcc_assert (elt_strict & UNIFY_ALLOW_OUTER_LEVEL);
17460 elt_strict |= maybe_adjust_types_for_deduction
17461 (DEDUCE_CALL, &elttype, &type, elt);
17462 elt = type;
17465 RECUR_AND_CHECK_FAILURE (tparms, targs, elttype, elt, elt_strict,
17466 explain_p);
17469 if (TREE_CODE (parm) == ARRAY_TYPE
17470 && deducible_array_bound (TYPE_DOMAIN (parm)))
17472 /* Also deduce from the length of the initializer list. */
17473 tree max = size_int (CONSTRUCTOR_NELTS (arg));
17474 tree idx = compute_array_index_type (NULL_TREE, max, tf_none);
17475 if (idx == error_mark_node)
17476 return unify_invalid (explain_p);
17477 return unify_array_domain (tparms, targs, TYPE_DOMAIN (parm),
17478 idx, explain_p);
17481 /* If the std::initializer_list<T> deduction worked, replace the
17482 deduced A with std::initializer_list<A>. */
17483 if (orig_parm != parm)
17485 idx = TEMPLATE_TYPE_IDX (orig_parm);
17486 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
17487 targ = listify (targ);
17488 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = targ;
17490 return unify_success (explain_p);
17493 /* Immediately reject some pairs that won't unify because of
17494 cv-qualification mismatches. */
17495 if (TREE_CODE (arg) == TREE_CODE (parm)
17496 && TYPE_P (arg)
17497 /* It is the elements of the array which hold the cv quals of an array
17498 type, and the elements might be template type parms. We'll check
17499 when we recurse. */
17500 && TREE_CODE (arg) != ARRAY_TYPE
17501 /* We check the cv-qualifiers when unifying with template type
17502 parameters below. We want to allow ARG `const T' to unify with
17503 PARM `T' for example, when computing which of two templates
17504 is more specialized, for example. */
17505 && TREE_CODE (arg) != TEMPLATE_TYPE_PARM
17506 && !check_cv_quals_for_unify (strict_in, arg, parm))
17507 return unify_cv_qual_mismatch (explain_p, parm, arg);
17509 if (!(strict & UNIFY_ALLOW_OUTER_LEVEL)
17510 && TYPE_P (parm) && !CP_TYPE_CONST_P (parm))
17511 strict &= ~UNIFY_ALLOW_MORE_CV_QUAL;
17512 strict &= ~UNIFY_ALLOW_OUTER_LEVEL;
17513 strict &= ~UNIFY_ALLOW_DERIVED;
17514 strict &= ~UNIFY_ALLOW_OUTER_MORE_CV_QUAL;
17515 strict &= ~UNIFY_ALLOW_OUTER_LESS_CV_QUAL;
17517 switch (TREE_CODE (parm))
17519 case TYPENAME_TYPE:
17520 case SCOPE_REF:
17521 case UNBOUND_CLASS_TEMPLATE:
17522 /* In a type which contains a nested-name-specifier, template
17523 argument values cannot be deduced for template parameters used
17524 within the nested-name-specifier. */
17525 return unify_success (explain_p);
17527 case TEMPLATE_TYPE_PARM:
17528 case TEMPLATE_TEMPLATE_PARM:
17529 case BOUND_TEMPLATE_TEMPLATE_PARM:
17530 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
17531 if (error_operand_p (tparm))
17532 return unify_invalid (explain_p);
17534 if (TEMPLATE_TYPE_LEVEL (parm)
17535 != template_decl_level (tparm))
17536 /* The PARM is not one we're trying to unify. Just check
17537 to see if it matches ARG. */
17539 if (TREE_CODE (arg) == TREE_CODE (parm)
17540 && (is_auto (parm) ? is_auto (arg)
17541 : same_type_p (parm, arg)))
17542 return unify_success (explain_p);
17543 else
17544 return unify_type_mismatch (explain_p, parm, arg);
17546 idx = TEMPLATE_TYPE_IDX (parm);
17547 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
17548 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, idx));
17549 if (error_operand_p (tparm))
17550 return unify_invalid (explain_p);
17552 /* Check for mixed types and values. */
17553 if ((TREE_CODE (parm) == TEMPLATE_TYPE_PARM
17554 && TREE_CODE (tparm) != TYPE_DECL)
17555 || (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
17556 && TREE_CODE (tparm) != TEMPLATE_DECL))
17557 gcc_unreachable ();
17559 if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
17561 /* ARG must be constructed from a template class or a template
17562 template parameter. */
17563 if (TREE_CODE (arg) != BOUND_TEMPLATE_TEMPLATE_PARM
17564 && !CLASSTYPE_SPECIALIZATION_OF_PRIMARY_TEMPLATE_P (arg))
17565 return unify_template_deduction_failure (explain_p, parm, arg);
17567 tree parmvec = TYPE_TI_ARGS (parm);
17568 /* An alias template name is never deduced. */
17569 if (TYPE_ALIAS_P (arg))
17570 arg = strip_typedefs (arg);
17571 tree argvec = INNERMOST_TEMPLATE_ARGS (TYPE_TI_ARGS (arg));
17572 tree full_argvec = add_to_template_args (targs, argvec);
17573 tree parm_parms
17574 = DECL_INNERMOST_TEMPLATE_PARMS
17575 (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL (parm));
17576 int i, len;
17577 int parm_variadic_p = 0;
17579 /* The resolution to DR150 makes clear that default
17580 arguments for an N-argument may not be used to bind T
17581 to a template template parameter with fewer than N
17582 parameters. It is not safe to permit the binding of
17583 default arguments as an extension, as that may change
17584 the meaning of a conforming program. Consider:
17586 struct Dense { static const unsigned int dim = 1; };
17588 template <template <typename> class View,
17589 typename Block>
17590 void operator+(float, View<Block> const&);
17592 template <typename Block,
17593 unsigned int Dim = Block::dim>
17594 struct Lvalue_proxy { operator float() const; };
17596 void
17597 test_1d (void) {
17598 Lvalue_proxy<Dense> p;
17599 float b;
17600 b + p;
17603 Here, if Lvalue_proxy is permitted to bind to View, then
17604 the global operator+ will be used; if they are not, the
17605 Lvalue_proxy will be converted to float. */
17606 if (coerce_template_parms (parm_parms,
17607 full_argvec,
17608 TYPE_TI_TEMPLATE (parm),
17609 (explain_p
17610 ? tf_warning_or_error
17611 : tf_none),
17612 /*require_all_args=*/true,
17613 /*use_default_args=*/false)
17614 == error_mark_node)
17615 return 1;
17617 /* Deduce arguments T, i from TT<T> or TT<i>.
17618 We check each element of PARMVEC and ARGVEC individually
17619 rather than the whole TREE_VEC since they can have
17620 different number of elements. */
17622 parmvec = expand_template_argument_pack (parmvec);
17623 argvec = expand_template_argument_pack (argvec);
17625 len = TREE_VEC_LENGTH (parmvec);
17627 /* Check if the parameters end in a pack, making them
17628 variadic. */
17629 if (len > 0
17630 && PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, len - 1)))
17631 parm_variadic_p = 1;
17633 for (i = 0; i < len - parm_variadic_p; ++i)
17634 /* If the template argument list of P contains a pack
17635 expansion that is not the last template argument, the
17636 entire template argument list is a non-deduced
17637 context. */
17638 if (PACK_EXPANSION_P (TREE_VEC_ELT (parmvec, i)))
17639 return unify_success (explain_p);
17641 if (TREE_VEC_LENGTH (argvec) < len - parm_variadic_p)
17642 return unify_too_few_arguments (explain_p,
17643 TREE_VEC_LENGTH (argvec), len);
17645 for (i = 0; i < len - parm_variadic_p; ++i)
17647 RECUR_AND_CHECK_FAILURE (tparms, targs,
17648 TREE_VEC_ELT (parmvec, i),
17649 TREE_VEC_ELT (argvec, i),
17650 UNIFY_ALLOW_NONE, explain_p);
17653 if (parm_variadic_p
17654 && unify_pack_expansion (tparms, targs,
17655 parmvec, argvec,
17656 DEDUCE_EXACT,
17657 /*subr=*/true, explain_p))
17658 return 1;
17660 arg = TYPE_TI_TEMPLATE (arg);
17662 /* Fall through to deduce template name. */
17665 if (TREE_CODE (parm) == TEMPLATE_TEMPLATE_PARM
17666 || TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
17668 /* Deduce template name TT from TT, TT<>, TT<T> and TT<i>. */
17670 /* Simple cases: Value already set, does match or doesn't. */
17671 if (targ != NULL_TREE && template_args_equal (targ, arg))
17672 return unify_success (explain_p);
17673 else if (targ)
17674 return unify_inconsistency (explain_p, parm, targ, arg);
17676 else
17678 /* If PARM is `const T' and ARG is only `int', we don't have
17679 a match unless we are allowing additional qualification.
17680 If ARG is `const int' and PARM is just `T' that's OK;
17681 that binds `const int' to `T'. */
17682 if (!check_cv_quals_for_unify (strict_in | UNIFY_ALLOW_LESS_CV_QUAL,
17683 arg, parm))
17684 return unify_cv_qual_mismatch (explain_p, parm, arg);
17686 /* Consider the case where ARG is `const volatile int' and
17687 PARM is `const T'. Then, T should be `volatile int'. */
17688 arg = cp_build_qualified_type_real
17689 (arg, cp_type_quals (arg) & ~cp_type_quals (parm), tf_none);
17690 if (arg == error_mark_node)
17691 return unify_invalid (explain_p);
17693 /* Simple cases: Value already set, does match or doesn't. */
17694 if (targ != NULL_TREE && same_type_p (targ, arg))
17695 return unify_success (explain_p);
17696 else if (targ)
17697 return unify_inconsistency (explain_p, parm, targ, arg);
17699 /* Make sure that ARG is not a variable-sized array. (Note
17700 that were talking about variable-sized arrays (like
17701 `int[n]'), rather than arrays of unknown size (like
17702 `int[]').) We'll get very confused by such a type since
17703 the bound of the array is not constant, and therefore
17704 not mangleable. Besides, such types are not allowed in
17705 ISO C++, so we can do as we please here. We do allow
17706 them for 'auto' deduction, since that isn't ABI-exposed. */
17707 if (!is_auto (parm) && variably_modified_type_p (arg, NULL_TREE))
17708 return unify_vla_arg (explain_p, arg);
17710 /* Strip typedefs as in convert_template_argument. */
17711 arg = canonicalize_type_argument (arg, tf_none);
17714 /* If ARG is a parameter pack or an expansion, we cannot unify
17715 against it unless PARM is also a parameter pack. */
17716 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
17717 && !template_parameter_pack_p (parm))
17718 return unify_parameter_pack_mismatch (explain_p, parm, arg);
17720 /* If the argument deduction results is a METHOD_TYPE,
17721 then there is a problem.
17722 METHOD_TYPE doesn't map to any real C++ type the result of
17723 the deduction can not be of that type. */
17724 if (TREE_CODE (arg) == METHOD_TYPE)
17725 return unify_method_type_error (explain_p, arg);
17727 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
17728 return unify_success (explain_p);
17730 case TEMPLATE_PARM_INDEX:
17731 tparm = TREE_VALUE (TREE_VEC_ELT (tparms, 0));
17732 if (error_operand_p (tparm))
17733 return unify_invalid (explain_p);
17735 if (TEMPLATE_PARM_LEVEL (parm)
17736 != template_decl_level (tparm))
17738 /* The PARM is not one we're trying to unify. Just check
17739 to see if it matches ARG. */
17740 int result = !(TREE_CODE (arg) == TREE_CODE (parm)
17741 && cp_tree_equal (parm, arg));
17742 if (result)
17743 unify_expression_unequal (explain_p, parm, arg);
17744 return result;
17747 idx = TEMPLATE_PARM_IDX (parm);
17748 targ = TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx);
17750 if (targ)
17752 int x = !cp_tree_equal (targ, arg);
17753 if (x)
17754 unify_inconsistency (explain_p, parm, targ, arg);
17755 return x;
17758 /* [temp.deduct.type] If, in the declaration of a function template
17759 with a non-type template-parameter, the non-type
17760 template-parameter is used in an expression in the function
17761 parameter-list and, if the corresponding template-argument is
17762 deduced, the template-argument type shall match the type of the
17763 template-parameter exactly, except that a template-argument
17764 deduced from an array bound may be of any integral type.
17765 The non-type parameter might use already deduced type parameters. */
17766 tparm = tsubst (TREE_TYPE (parm), targs, 0, NULL_TREE);
17767 if (!TREE_TYPE (arg))
17768 /* Template-parameter dependent expression. Just accept it for now.
17769 It will later be processed in convert_template_argument. */
17771 else if (same_type_p (TREE_TYPE (arg), tparm))
17772 /* OK */;
17773 else if ((strict & UNIFY_ALLOW_INTEGER)
17774 && CP_INTEGRAL_TYPE_P (tparm))
17775 /* Convert the ARG to the type of PARM; the deduced non-type
17776 template argument must exactly match the types of the
17777 corresponding parameter. */
17778 arg = fold (build_nop (tparm, arg));
17779 else if (uses_template_parms (tparm))
17780 /* We haven't deduced the type of this parameter yet. Try again
17781 later. */
17782 return unify_success (explain_p);
17783 else
17784 return unify_type_mismatch (explain_p, tparm, TREE_TYPE (arg));
17786 /* If ARG is a parameter pack or an expansion, we cannot unify
17787 against it unless PARM is also a parameter pack. */
17788 if ((template_parameter_pack_p (arg) || PACK_EXPANSION_P (arg))
17789 && !TEMPLATE_PARM_PARAMETER_PACK (parm))
17790 return unify_parameter_pack_mismatch (explain_p, parm, arg);
17792 arg = strip_typedefs_expr (arg);
17793 TREE_VEC_ELT (INNERMOST_TEMPLATE_ARGS (targs), idx) = arg;
17794 return unify_success (explain_p);
17796 case PTRMEM_CST:
17798 /* A pointer-to-member constant can be unified only with
17799 another constant. */
17800 if (TREE_CODE (arg) != PTRMEM_CST)
17801 return unify_ptrmem_cst_mismatch (explain_p, parm, arg);
17803 /* Just unify the class member. It would be useless (and possibly
17804 wrong, depending on the strict flags) to unify also
17805 PTRMEM_CST_CLASS, because we want to be sure that both parm and
17806 arg refer to the same variable, even if through different
17807 classes. For instance:
17809 struct A { int x; };
17810 struct B : A { };
17812 Unification of &A::x and &B::x must succeed. */
17813 return unify (tparms, targs, PTRMEM_CST_MEMBER (parm),
17814 PTRMEM_CST_MEMBER (arg), strict, explain_p);
17817 case POINTER_TYPE:
17819 if (!TYPE_PTR_P (arg))
17820 return unify_type_mismatch (explain_p, parm, arg);
17822 /* [temp.deduct.call]
17824 A can be another pointer or pointer to member type that can
17825 be converted to the deduced A via a qualification
17826 conversion (_conv.qual_).
17828 We pass down STRICT here rather than UNIFY_ALLOW_NONE.
17829 This will allow for additional cv-qualification of the
17830 pointed-to types if appropriate. */
17832 if (TREE_CODE (TREE_TYPE (arg)) == RECORD_TYPE)
17833 /* The derived-to-base conversion only persists through one
17834 level of pointers. */
17835 strict |= (strict_in & UNIFY_ALLOW_DERIVED);
17837 return unify (tparms, targs, TREE_TYPE (parm),
17838 TREE_TYPE (arg), strict, explain_p);
17841 case REFERENCE_TYPE:
17842 if (TREE_CODE (arg) != REFERENCE_TYPE)
17843 return unify_type_mismatch (explain_p, parm, arg);
17844 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
17845 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
17847 case ARRAY_TYPE:
17848 if (TREE_CODE (arg) != ARRAY_TYPE)
17849 return unify_type_mismatch (explain_p, parm, arg);
17850 if ((TYPE_DOMAIN (parm) == NULL_TREE)
17851 != (TYPE_DOMAIN (arg) == NULL_TREE))
17852 return unify_type_mismatch (explain_p, parm, arg);
17853 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
17854 strict & UNIFY_ALLOW_MORE_CV_QUAL, explain_p);
17855 if (TYPE_DOMAIN (parm) != NULL_TREE)
17856 return unify_array_domain (tparms, targs, TYPE_DOMAIN (parm),
17857 TYPE_DOMAIN (arg), explain_p);
17858 return unify_success (explain_p);
17860 case REAL_TYPE:
17861 case COMPLEX_TYPE:
17862 case VECTOR_TYPE:
17863 case INTEGER_TYPE:
17864 case BOOLEAN_TYPE:
17865 case ENUMERAL_TYPE:
17866 case VOID_TYPE:
17867 case NULLPTR_TYPE:
17868 if (TREE_CODE (arg) != TREE_CODE (parm))
17869 return unify_type_mismatch (explain_p, parm, arg);
17871 /* We have already checked cv-qualification at the top of the
17872 function. */
17873 if (!same_type_ignoring_top_level_qualifiers_p (arg, parm))
17874 return unify_type_mismatch (explain_p, parm, arg);
17876 /* As far as unification is concerned, this wins. Later checks
17877 will invalidate it if necessary. */
17878 return unify_success (explain_p);
17880 /* Types INTEGER_CST and MINUS_EXPR can come from array bounds. */
17881 /* Type INTEGER_CST can come from ordinary constant template args. */
17882 case INTEGER_CST:
17883 while (TREE_CODE (arg) == NOP_EXPR)
17884 arg = TREE_OPERAND (arg, 0);
17886 if (TREE_CODE (arg) != INTEGER_CST)
17887 return unify_template_argument_mismatch (explain_p, parm, arg);
17888 return (tree_int_cst_equal (parm, arg)
17889 ? unify_success (explain_p)
17890 : unify_template_argument_mismatch (explain_p, parm, arg));
17892 case TREE_VEC:
17894 int i, len, argslen;
17895 int parm_variadic_p = 0;
17897 if (TREE_CODE (arg) != TREE_VEC)
17898 return unify_template_argument_mismatch (explain_p, parm, arg);
17900 len = TREE_VEC_LENGTH (parm);
17901 argslen = TREE_VEC_LENGTH (arg);
17903 /* Check for pack expansions in the parameters. */
17904 for (i = 0; i < len; ++i)
17906 if (PACK_EXPANSION_P (TREE_VEC_ELT (parm, i)))
17908 if (i == len - 1)
17909 /* We can unify against something with a trailing
17910 parameter pack. */
17911 parm_variadic_p = 1;
17912 else
17913 /* [temp.deduct.type]/9: If the template argument list of
17914 P contains a pack expansion that is not the last
17915 template argument, the entire template argument list
17916 is a non-deduced context. */
17917 return unify_success (explain_p);
17921 /* If we don't have enough arguments to satisfy the parameters
17922 (not counting the pack expression at the end), or we have
17923 too many arguments for a parameter list that doesn't end in
17924 a pack expression, we can't unify. */
17925 if (parm_variadic_p
17926 ? argslen < len - parm_variadic_p
17927 : argslen != len)
17928 return unify_arity (explain_p, TREE_VEC_LENGTH (arg), len);
17930 /* Unify all of the parameters that precede the (optional)
17931 pack expression. */
17932 for (i = 0; i < len - parm_variadic_p; ++i)
17934 RECUR_AND_CHECK_FAILURE (tparms, targs,
17935 TREE_VEC_ELT (parm, i),
17936 TREE_VEC_ELT (arg, i),
17937 UNIFY_ALLOW_NONE, explain_p);
17939 if (parm_variadic_p)
17940 return unify_pack_expansion (tparms, targs, parm, arg,
17941 DEDUCE_EXACT,
17942 /*subr=*/true, explain_p);
17943 return unify_success (explain_p);
17946 case RECORD_TYPE:
17947 case UNION_TYPE:
17948 if (TREE_CODE (arg) != TREE_CODE (parm))
17949 return unify_type_mismatch (explain_p, parm, arg);
17951 if (TYPE_PTRMEMFUNC_P (parm))
17953 if (!TYPE_PTRMEMFUNC_P (arg))
17954 return unify_type_mismatch (explain_p, parm, arg);
17956 return unify (tparms, targs,
17957 TYPE_PTRMEMFUNC_FN_TYPE (parm),
17958 TYPE_PTRMEMFUNC_FN_TYPE (arg),
17959 strict, explain_p);
17962 if (CLASSTYPE_TEMPLATE_INFO (parm))
17964 tree t = NULL_TREE;
17966 if (strict_in & UNIFY_ALLOW_DERIVED)
17968 /* First, we try to unify the PARM and ARG directly. */
17969 t = try_class_unification (tparms, targs,
17970 parm, arg, explain_p);
17972 if (!t)
17974 /* Fallback to the special case allowed in
17975 [temp.deduct.call]:
17977 If P is a class, and P has the form
17978 template-id, then A can be a derived class of
17979 the deduced A. Likewise, if P is a pointer to
17980 a class of the form template-id, A can be a
17981 pointer to a derived class pointed to by the
17982 deduced A. */
17983 enum template_base_result r;
17984 r = get_template_base (tparms, targs, parm, arg,
17985 explain_p, &t);
17987 if (!t)
17988 return unify_no_common_base (explain_p, r, parm, arg);
17991 else if (CLASSTYPE_TEMPLATE_INFO (arg)
17992 && (CLASSTYPE_TI_TEMPLATE (parm)
17993 == CLASSTYPE_TI_TEMPLATE (arg)))
17994 /* Perhaps PARM is something like S<U> and ARG is S<int>.
17995 Then, we should unify `int' and `U'. */
17996 t = arg;
17997 else
17998 /* There's no chance of unification succeeding. */
17999 return unify_type_mismatch (explain_p, parm, arg);
18001 return unify (tparms, targs, CLASSTYPE_TI_ARGS (parm),
18002 CLASSTYPE_TI_ARGS (t), UNIFY_ALLOW_NONE, explain_p);
18004 else if (!same_type_ignoring_top_level_qualifiers_p (parm, arg))
18005 return unify_type_mismatch (explain_p, parm, arg);
18006 return unify_success (explain_p);
18008 case METHOD_TYPE:
18009 case FUNCTION_TYPE:
18011 unsigned int nargs;
18012 tree *args;
18013 tree a;
18014 unsigned int i;
18016 if (TREE_CODE (arg) != TREE_CODE (parm))
18017 return unify_type_mismatch (explain_p, parm, arg);
18019 /* CV qualifications for methods can never be deduced, they must
18020 match exactly. We need to check them explicitly here,
18021 because type_unification_real treats them as any other
18022 cv-qualified parameter. */
18023 if (TREE_CODE (parm) == METHOD_TYPE
18024 && (!check_cv_quals_for_unify
18025 (UNIFY_ALLOW_NONE,
18026 class_of_this_parm (arg),
18027 class_of_this_parm (parm))))
18028 return unify_cv_qual_mismatch (explain_p, parm, arg);
18030 RECUR_AND_CHECK_FAILURE (tparms, targs, TREE_TYPE (parm),
18031 TREE_TYPE (arg), UNIFY_ALLOW_NONE, explain_p);
18033 nargs = list_length (TYPE_ARG_TYPES (arg));
18034 args = XALLOCAVEC (tree, nargs);
18035 for (a = TYPE_ARG_TYPES (arg), i = 0;
18036 a != NULL_TREE && a != void_list_node;
18037 a = TREE_CHAIN (a), ++i)
18038 args[i] = TREE_VALUE (a);
18039 nargs = i;
18041 return type_unification_real (tparms, targs, TYPE_ARG_TYPES (parm),
18042 args, nargs, 1, DEDUCE_EXACT,
18043 LOOKUP_NORMAL, NULL, explain_p);
18046 case OFFSET_TYPE:
18047 /* Unify a pointer to member with a pointer to member function, which
18048 deduces the type of the member as a function type. */
18049 if (TYPE_PTRMEMFUNC_P (arg))
18051 /* Check top-level cv qualifiers */
18052 if (!check_cv_quals_for_unify (UNIFY_ALLOW_NONE, arg, parm))
18053 return unify_cv_qual_mismatch (explain_p, parm, arg);
18055 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
18056 TYPE_PTRMEMFUNC_OBJECT_TYPE (arg),
18057 UNIFY_ALLOW_NONE, explain_p);
18059 /* Determine the type of the function we are unifying against. */
18060 tree fntype = static_fn_type (arg);
18062 return unify (tparms, targs, TREE_TYPE (parm), fntype, strict, explain_p);
18065 if (TREE_CODE (arg) != OFFSET_TYPE)
18066 return unify_type_mismatch (explain_p, parm, arg);
18067 RECUR_AND_CHECK_FAILURE (tparms, targs, TYPE_OFFSET_BASETYPE (parm),
18068 TYPE_OFFSET_BASETYPE (arg),
18069 UNIFY_ALLOW_NONE, explain_p);
18070 return unify (tparms, targs, TREE_TYPE (parm), TREE_TYPE (arg),
18071 strict, explain_p);
18073 case CONST_DECL:
18074 if (DECL_TEMPLATE_PARM_P (parm))
18075 return unify (tparms, targs, DECL_INITIAL (parm), arg, strict, explain_p);
18076 if (arg != integral_constant_value (parm))
18077 return unify_template_argument_mismatch (explain_p, parm, arg);
18078 return unify_success (explain_p);
18080 case FIELD_DECL:
18081 case TEMPLATE_DECL:
18082 /* Matched cases are handled by the ARG == PARM test above. */
18083 return unify_template_argument_mismatch (explain_p, parm, arg);
18085 case VAR_DECL:
18086 /* A non-type template parameter that is a variable should be a
18087 an integral constant, in which case, it whould have been
18088 folded into its (constant) value. So we should not be getting
18089 a variable here. */
18090 gcc_unreachable ();
18092 case TYPE_ARGUMENT_PACK:
18093 case NONTYPE_ARGUMENT_PACK:
18094 return unify (tparms, targs, ARGUMENT_PACK_ARGS (parm),
18095 ARGUMENT_PACK_ARGS (arg), strict, explain_p);
18097 case TYPEOF_TYPE:
18098 case DECLTYPE_TYPE:
18099 case UNDERLYING_TYPE:
18100 /* Cannot deduce anything from TYPEOF_TYPE, DECLTYPE_TYPE,
18101 or UNDERLYING_TYPE nodes. */
18102 return unify_success (explain_p);
18104 case ERROR_MARK:
18105 /* Unification fails if we hit an error node. */
18106 return unify_invalid (explain_p);
18108 case INDIRECT_REF:
18109 if (REFERENCE_REF_P (parm))
18110 return unify (tparms, targs, TREE_OPERAND (parm, 0), arg,
18111 strict, explain_p);
18112 /* FALLTHRU */
18114 default:
18115 /* An unresolved overload is a nondeduced context. */
18116 if (is_overloaded_fn (parm) || type_unknown_p (parm))
18117 return unify_success (explain_p);
18118 gcc_assert (EXPR_P (parm));
18120 /* We must be looking at an expression. This can happen with
18121 something like:
18123 template <int I>
18124 void foo(S<I>, S<I + 2>);
18126 This is a "nondeduced context":
18128 [deduct.type]
18130 The nondeduced contexts are:
18132 --A type that is a template-id in which one or more of
18133 the template-arguments is an expression that references
18134 a template-parameter.
18136 In these cases, we assume deduction succeeded, but don't
18137 actually infer any unifications. */
18139 if (!uses_template_parms (parm)
18140 && !template_args_equal (parm, arg))
18141 return unify_expression_unequal (explain_p, parm, arg);
18142 else
18143 return unify_success (explain_p);
18146 #undef RECUR_AND_CHECK_FAILURE
18148 /* Note that DECL can be defined in this translation unit, if
18149 required. */
18151 static void
18152 mark_definable (tree decl)
18154 tree clone;
18155 DECL_NOT_REALLY_EXTERN (decl) = 1;
18156 FOR_EACH_CLONE (clone, decl)
18157 DECL_NOT_REALLY_EXTERN (clone) = 1;
18160 /* Called if RESULT is explicitly instantiated, or is a member of an
18161 explicitly instantiated class. */
18163 void
18164 mark_decl_instantiated (tree result, int extern_p)
18166 SET_DECL_EXPLICIT_INSTANTIATION (result);
18168 /* If this entity has already been written out, it's too late to
18169 make any modifications. */
18170 if (TREE_ASM_WRITTEN (result))
18171 return;
18173 /* For anonymous namespace we don't need to do anything. */
18174 if (decl_anon_ns_mem_p (result))
18176 gcc_assert (!TREE_PUBLIC (result));
18177 return;
18180 if (TREE_CODE (result) != FUNCTION_DECL)
18181 /* The TREE_PUBLIC flag for function declarations will have been
18182 set correctly by tsubst. */
18183 TREE_PUBLIC (result) = 1;
18185 /* This might have been set by an earlier implicit instantiation. */
18186 DECL_COMDAT (result) = 0;
18188 if (extern_p)
18189 DECL_NOT_REALLY_EXTERN (result) = 0;
18190 else
18192 mark_definable (result);
18193 mark_needed (result);
18194 /* Always make artificials weak. */
18195 if (DECL_ARTIFICIAL (result) && flag_weak)
18196 comdat_linkage (result);
18197 /* For WIN32 we also want to put explicit instantiations in
18198 linkonce sections. */
18199 else if (TREE_PUBLIC (result))
18200 maybe_make_one_only (result);
18203 /* If EXTERN_P, then this function will not be emitted -- unless
18204 followed by an explicit instantiation, at which point its linkage
18205 will be adjusted. If !EXTERN_P, then this function will be
18206 emitted here. In neither circumstance do we want
18207 import_export_decl to adjust the linkage. */
18208 DECL_INTERFACE_KNOWN (result) = 1;
18211 /* Subroutine of more_specialized_fn: check whether TARGS is missing any
18212 important template arguments. If any are missing, we check whether
18213 they're important by using error_mark_node for substituting into any
18214 args that were used for partial ordering (the ones between ARGS and END)
18215 and seeing if it bubbles up. */
18217 static bool
18218 check_undeduced_parms (tree targs, tree args, tree end)
18220 bool found = false;
18221 int i;
18222 for (i = TREE_VEC_LENGTH (targs) - 1; i >= 0; --i)
18223 if (TREE_VEC_ELT (targs, i) == NULL_TREE)
18225 found = true;
18226 TREE_VEC_ELT (targs, i) = error_mark_node;
18228 if (found)
18230 tree substed = tsubst_arg_types (args, targs, end, tf_none, NULL_TREE);
18231 if (substed == error_mark_node)
18232 return true;
18234 return false;
18237 /* Given two function templates PAT1 and PAT2, return:
18239 1 if PAT1 is more specialized than PAT2 as described in [temp.func.order].
18240 -1 if PAT2 is more specialized than PAT1.
18241 0 if neither is more specialized.
18243 LEN indicates the number of parameters we should consider
18244 (defaulted parameters should not be considered).
18246 The 1998 std underspecified function template partial ordering, and
18247 DR214 addresses the issue. We take pairs of arguments, one from
18248 each of the templates, and deduce them against each other. One of
18249 the templates will be more specialized if all the *other*
18250 template's arguments deduce against its arguments and at least one
18251 of its arguments *does* *not* deduce against the other template's
18252 corresponding argument. Deduction is done as for class templates.
18253 The arguments used in deduction have reference and top level cv
18254 qualifiers removed. Iff both arguments were originally reference
18255 types *and* deduction succeeds in both directions, an lvalue reference
18256 wins against an rvalue reference and otherwise the template
18257 with the more cv-qualified argument wins for that pairing (if
18258 neither is more cv-qualified, they both are equal). Unlike regular
18259 deduction, after all the arguments have been deduced in this way,
18260 we do *not* verify the deduced template argument values can be
18261 substituted into non-deduced contexts.
18263 The logic can be a bit confusing here, because we look at deduce1 and
18264 targs1 to see if pat2 is at least as specialized, and vice versa; if we
18265 can find template arguments for pat1 to make arg1 look like arg2, that
18266 means that arg2 is at least as specialized as arg1. */
18269 more_specialized_fn (tree pat1, tree pat2, int len)
18271 tree decl1 = DECL_TEMPLATE_RESULT (pat1);
18272 tree decl2 = DECL_TEMPLATE_RESULT (pat2);
18273 tree targs1 = make_tree_vec (DECL_NTPARMS (pat1));
18274 tree targs2 = make_tree_vec (DECL_NTPARMS (pat2));
18275 tree tparms1 = DECL_INNERMOST_TEMPLATE_PARMS (pat1);
18276 tree tparms2 = DECL_INNERMOST_TEMPLATE_PARMS (pat2);
18277 tree args1 = TYPE_ARG_TYPES (TREE_TYPE (decl1));
18278 tree args2 = TYPE_ARG_TYPES (TREE_TYPE (decl2));
18279 tree origs1, origs2;
18280 bool lose1 = false;
18281 bool lose2 = false;
18283 /* Remove the this parameter from non-static member functions. If
18284 one is a non-static member function and the other is not a static
18285 member function, remove the first parameter from that function
18286 also. This situation occurs for operator functions where we
18287 locate both a member function (with this pointer) and non-member
18288 operator (with explicit first operand). */
18289 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl1))
18291 len--; /* LEN is the number of significant arguments for DECL1 */
18292 args1 = TREE_CHAIN (args1);
18293 if (!DECL_STATIC_FUNCTION_P (decl2))
18294 args2 = TREE_CHAIN (args2);
18296 else if (DECL_NONSTATIC_MEMBER_FUNCTION_P (decl2))
18298 args2 = TREE_CHAIN (args2);
18299 if (!DECL_STATIC_FUNCTION_P (decl1))
18301 len--;
18302 args1 = TREE_CHAIN (args1);
18306 /* If only one is a conversion operator, they are unordered. */
18307 if (DECL_CONV_FN_P (decl1) != DECL_CONV_FN_P (decl2))
18308 return 0;
18310 /* Consider the return type for a conversion function */
18311 if (DECL_CONV_FN_P (decl1))
18313 args1 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl1)), args1);
18314 args2 = tree_cons (NULL_TREE, TREE_TYPE (TREE_TYPE (decl2)), args2);
18315 len++;
18318 processing_template_decl++;
18320 origs1 = args1;
18321 origs2 = args2;
18323 while (len--
18324 /* Stop when an ellipsis is seen. */
18325 && args1 != NULL_TREE && args2 != NULL_TREE)
18327 tree arg1 = TREE_VALUE (args1);
18328 tree arg2 = TREE_VALUE (args2);
18329 int deduce1, deduce2;
18330 int quals1 = -1;
18331 int quals2 = -1;
18332 int ref1 = 0;
18333 int ref2 = 0;
18335 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
18336 && TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
18338 /* When both arguments are pack expansions, we need only
18339 unify the patterns themselves. */
18340 arg1 = PACK_EXPANSION_PATTERN (arg1);
18341 arg2 = PACK_EXPANSION_PATTERN (arg2);
18343 /* This is the last comparison we need to do. */
18344 len = 0;
18347 if (TREE_CODE (arg1) == REFERENCE_TYPE)
18349 ref1 = TYPE_REF_IS_RVALUE (arg1) + 1;
18350 arg1 = TREE_TYPE (arg1);
18351 quals1 = cp_type_quals (arg1);
18354 if (TREE_CODE (arg2) == REFERENCE_TYPE)
18356 ref2 = TYPE_REF_IS_RVALUE (arg2) + 1;
18357 arg2 = TREE_TYPE (arg2);
18358 quals2 = cp_type_quals (arg2);
18361 arg1 = TYPE_MAIN_VARIANT (arg1);
18362 arg2 = TYPE_MAIN_VARIANT (arg2);
18364 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION)
18366 int i, len2 = list_length (args2);
18367 tree parmvec = make_tree_vec (1);
18368 tree argvec = make_tree_vec (len2);
18369 tree ta = args2;
18371 /* Setup the parameter vector, which contains only ARG1. */
18372 TREE_VEC_ELT (parmvec, 0) = arg1;
18374 /* Setup the argument vector, which contains the remaining
18375 arguments. */
18376 for (i = 0; i < len2; i++, ta = TREE_CHAIN (ta))
18377 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
18379 deduce1 = (unify_pack_expansion (tparms1, targs1, parmvec,
18380 argvec, DEDUCE_EXACT,
18381 /*subr=*/true, /*explain_p=*/false)
18382 == 0);
18384 /* We cannot deduce in the other direction, because ARG1 is
18385 a pack expansion but ARG2 is not. */
18386 deduce2 = 0;
18388 else if (TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
18390 int i, len1 = list_length (args1);
18391 tree parmvec = make_tree_vec (1);
18392 tree argvec = make_tree_vec (len1);
18393 tree ta = args1;
18395 /* Setup the parameter vector, which contains only ARG1. */
18396 TREE_VEC_ELT (parmvec, 0) = arg2;
18398 /* Setup the argument vector, which contains the remaining
18399 arguments. */
18400 for (i = 0; i < len1; i++, ta = TREE_CHAIN (ta))
18401 TREE_VEC_ELT (argvec, i) = TREE_VALUE (ta);
18403 deduce2 = (unify_pack_expansion (tparms2, targs2, parmvec,
18404 argvec, DEDUCE_EXACT,
18405 /*subr=*/true, /*explain_p=*/false)
18406 == 0);
18408 /* We cannot deduce in the other direction, because ARG2 is
18409 a pack expansion but ARG1 is not.*/
18410 deduce1 = 0;
18413 else
18415 /* The normal case, where neither argument is a pack
18416 expansion. */
18417 deduce1 = (unify (tparms1, targs1, arg1, arg2,
18418 UNIFY_ALLOW_NONE, /*explain_p=*/false)
18419 == 0);
18420 deduce2 = (unify (tparms2, targs2, arg2, arg1,
18421 UNIFY_ALLOW_NONE, /*explain_p=*/false)
18422 == 0);
18425 /* If we couldn't deduce arguments for tparms1 to make arg1 match
18426 arg2, then arg2 is not as specialized as arg1. */
18427 if (!deduce1)
18428 lose2 = true;
18429 if (!deduce2)
18430 lose1 = true;
18432 /* "If, for a given type, deduction succeeds in both directions
18433 (i.e., the types are identical after the transformations above)
18434 and both P and A were reference types (before being replaced with
18435 the type referred to above):
18436 - if the type from the argument template was an lvalue reference and
18437 the type from the parameter template was not, the argument type is
18438 considered to be more specialized than the other; otherwise,
18439 - if the type from the argument template is more cv-qualified
18440 than the type from the parameter template (as described above),
18441 the argument type is considered to be more specialized than the other;
18442 otherwise,
18443 - neither type is more specialized than the other." */
18445 if (deduce1 && deduce2)
18447 if (ref1 && ref2 && ref1 != ref2)
18449 if (ref1 > ref2)
18450 lose1 = true;
18451 else
18452 lose2 = true;
18454 else if (quals1 != quals2 && quals1 >= 0 && quals2 >= 0)
18456 if ((quals1 & quals2) == quals2)
18457 lose2 = true;
18458 if ((quals1 & quals2) == quals1)
18459 lose1 = true;
18463 if (lose1 && lose2)
18464 /* We've failed to deduce something in either direction.
18465 These must be unordered. */
18466 break;
18468 if (TREE_CODE (arg1) == TYPE_PACK_EXPANSION
18469 || TREE_CODE (arg2) == TYPE_PACK_EXPANSION)
18470 /* We have already processed all of the arguments in our
18471 handing of the pack expansion type. */
18472 len = 0;
18474 args1 = TREE_CHAIN (args1);
18475 args2 = TREE_CHAIN (args2);
18478 /* "In most cases, all template parameters must have values in order for
18479 deduction to succeed, but for partial ordering purposes a template
18480 parameter may remain without a value provided it is not used in the
18481 types being used for partial ordering."
18483 Thus, if we are missing any of the targs1 we need to substitute into
18484 origs1, then pat2 is not as specialized as pat1. This can happen when
18485 there is a nondeduced context. */
18486 if (!lose2 && check_undeduced_parms (targs1, origs1, args1))
18487 lose2 = true;
18488 if (!lose1 && check_undeduced_parms (targs2, origs2, args2))
18489 lose1 = true;
18491 processing_template_decl--;
18493 /* All things being equal, if the next argument is a pack expansion
18494 for one function but not for the other, prefer the
18495 non-variadic function. FIXME this is bogus; see c++/41958. */
18496 if (lose1 == lose2
18497 && args1 && TREE_VALUE (args1)
18498 && args2 && TREE_VALUE (args2))
18500 lose1 = TREE_CODE (TREE_VALUE (args1)) == TYPE_PACK_EXPANSION;
18501 lose2 = TREE_CODE (TREE_VALUE (args2)) == TYPE_PACK_EXPANSION;
18504 if (lose1 == lose2)
18505 return 0;
18506 else if (!lose1)
18507 return 1;
18508 else
18509 return -1;
18512 /* Determine which of two partial specializations of TMPL is more
18513 specialized.
18515 PAT1 is a TREE_LIST whose TREE_TYPE is the _TYPE node corresponding
18516 to the first partial specialization. The TREE_VALUE is the
18517 innermost set of template parameters for the partial
18518 specialization. PAT2 is similar, but for the second template.
18520 Return 1 if the first partial specialization is more specialized;
18521 -1 if the second is more specialized; 0 if neither is more
18522 specialized.
18524 See [temp.class.order] for information about determining which of
18525 two templates is more specialized. */
18527 static int
18528 more_specialized_class (tree tmpl, tree pat1, tree pat2)
18530 tree targs;
18531 tree tmpl1, tmpl2;
18532 int winner = 0;
18533 bool any_deductions = false;
18535 tmpl1 = TREE_TYPE (pat1);
18536 tmpl2 = TREE_TYPE (pat2);
18538 /* Just like what happens for functions, if we are ordering between
18539 different class template specializations, we may encounter dependent
18540 types in the arguments, and we need our dependency check functions
18541 to behave correctly. */
18542 ++processing_template_decl;
18543 targs = get_class_bindings (tmpl, TREE_VALUE (pat1),
18544 CLASSTYPE_TI_ARGS (tmpl1),
18545 CLASSTYPE_TI_ARGS (tmpl2));
18546 if (targs)
18548 --winner;
18549 any_deductions = true;
18552 targs = get_class_bindings (tmpl, TREE_VALUE (pat2),
18553 CLASSTYPE_TI_ARGS (tmpl2),
18554 CLASSTYPE_TI_ARGS (tmpl1));
18555 if (targs)
18557 ++winner;
18558 any_deductions = true;
18560 --processing_template_decl;
18562 /* In the case of a tie where at least one of the class templates
18563 has a parameter pack at the end, the template with the most
18564 non-packed parameters wins. */
18565 if (winner == 0
18566 && any_deductions
18567 && (template_args_variadic_p (TREE_PURPOSE (pat1))
18568 || template_args_variadic_p (TREE_PURPOSE (pat2))))
18570 tree args1 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat1));
18571 tree args2 = INNERMOST_TEMPLATE_ARGS (TREE_PURPOSE (pat2));
18572 int len1 = TREE_VEC_LENGTH (args1);
18573 int len2 = TREE_VEC_LENGTH (args2);
18575 /* We don't count the pack expansion at the end. */
18576 if (template_args_variadic_p (TREE_PURPOSE (pat1)))
18577 --len1;
18578 if (template_args_variadic_p (TREE_PURPOSE (pat2)))
18579 --len2;
18581 if (len1 > len2)
18582 return 1;
18583 else if (len1 < len2)
18584 return -1;
18587 return winner;
18590 /* Return the template arguments that will produce the function signature
18591 DECL from the function template FN, with the explicit template
18592 arguments EXPLICIT_ARGS. If CHECK_RETTYPE is true, the return type must
18593 also match. Return NULL_TREE if no satisfactory arguments could be
18594 found. */
18596 static tree
18597 get_bindings (tree fn, tree decl, tree explicit_args, bool check_rettype)
18599 int ntparms = DECL_NTPARMS (fn);
18600 tree targs = make_tree_vec (ntparms);
18601 tree decl_type = TREE_TYPE (decl);
18602 tree decl_arg_types;
18603 tree *args;
18604 unsigned int nargs, ix;
18605 tree arg;
18607 gcc_assert (decl != DECL_TEMPLATE_RESULT (fn));
18609 /* Never do unification on the 'this' parameter. */
18610 decl_arg_types = skip_artificial_parms_for (decl,
18611 TYPE_ARG_TYPES (decl_type));
18613 nargs = list_length (decl_arg_types);
18614 args = XALLOCAVEC (tree, nargs);
18615 for (arg = decl_arg_types, ix = 0;
18616 arg != NULL_TREE && arg != void_list_node;
18617 arg = TREE_CHAIN (arg), ++ix)
18618 args[ix] = TREE_VALUE (arg);
18620 if (fn_type_unification (fn, explicit_args, targs,
18621 args, ix,
18622 (check_rettype || DECL_CONV_FN_P (fn)
18623 ? TREE_TYPE (decl_type) : NULL_TREE),
18624 DEDUCE_EXACT, LOOKUP_NORMAL, /*explain_p=*/false,
18625 /*decltype*/false)
18626 == error_mark_node)
18627 return NULL_TREE;
18629 return targs;
18632 /* Return the innermost template arguments that, when applied to a partial
18633 specialization of TMPL whose innermost template parameters are
18634 TPARMS, and whose specialization arguments are SPEC_ARGS, yield the
18635 ARGS.
18637 For example, suppose we have:
18639 template <class T, class U> struct S {};
18640 template <class T> struct S<T*, int> {};
18642 Then, suppose we want to get `S<double*, int>'. The TPARMS will be
18643 {T}, the SPEC_ARGS will be {T*, int} and the ARGS will be {double*,
18644 int}. The resulting vector will be {double}, indicating that `T'
18645 is bound to `double'. */
18647 static tree
18648 get_class_bindings (tree tmpl, tree tparms, tree spec_args, tree args)
18650 int i, ntparms = TREE_VEC_LENGTH (tparms);
18651 tree deduced_args;
18652 tree innermost_deduced_args;
18654 innermost_deduced_args = make_tree_vec (ntparms);
18655 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
18657 deduced_args = copy_node (args);
18658 SET_TMPL_ARGS_LEVEL (deduced_args,
18659 TMPL_ARGS_DEPTH (deduced_args),
18660 innermost_deduced_args);
18662 else
18663 deduced_args = innermost_deduced_args;
18665 if (unify (tparms, deduced_args,
18666 INNERMOST_TEMPLATE_ARGS (spec_args),
18667 INNERMOST_TEMPLATE_ARGS (args),
18668 UNIFY_ALLOW_NONE, /*explain_p=*/false))
18669 return NULL_TREE;
18671 for (i = 0; i < ntparms; ++i)
18672 if (! TREE_VEC_ELT (innermost_deduced_args, i))
18673 return NULL_TREE;
18675 /* Verify that nondeduced template arguments agree with the type
18676 obtained from argument deduction.
18678 For example:
18680 struct A { typedef int X; };
18681 template <class T, class U> struct C {};
18682 template <class T> struct C<T, typename T::X> {};
18684 Then with the instantiation `C<A, int>', we can deduce that
18685 `T' is `A' but unify () does not check whether `typename T::X'
18686 is `int'. */
18687 spec_args = tsubst (spec_args, deduced_args, tf_none, NULL_TREE);
18688 spec_args = coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
18689 spec_args, tmpl,
18690 tf_none, false, false);
18691 if (spec_args == error_mark_node
18692 /* We only need to check the innermost arguments; the other
18693 arguments will always agree. */
18694 || !comp_template_args (INNERMOST_TEMPLATE_ARGS (spec_args),
18695 INNERMOST_TEMPLATE_ARGS (args)))
18696 return NULL_TREE;
18698 /* Now that we have bindings for all of the template arguments,
18699 ensure that the arguments deduced for the template template
18700 parameters have compatible template parameter lists. See the use
18701 of template_template_parm_bindings_ok_p in fn_type_unification
18702 for more information. */
18703 if (!template_template_parm_bindings_ok_p (tparms, deduced_args))
18704 return NULL_TREE;
18706 return deduced_args;
18709 /* TEMPLATES is a TREE_LIST. Each TREE_VALUE is a TEMPLATE_DECL.
18710 Return the TREE_LIST node with the most specialized template, if
18711 any. If there is no most specialized template, the error_mark_node
18712 is returned.
18714 Note that this function does not look at, or modify, the
18715 TREE_PURPOSE or TREE_TYPE of any of the nodes. Since the node
18716 returned is one of the elements of INSTANTIATIONS, callers may
18717 store information in the TREE_PURPOSE or TREE_TYPE of the nodes,
18718 and retrieve it from the value returned. */
18720 tree
18721 most_specialized_instantiation (tree templates)
18723 tree fn, champ;
18725 ++processing_template_decl;
18727 champ = templates;
18728 for (fn = TREE_CHAIN (templates); fn; fn = TREE_CHAIN (fn))
18730 int fate = 0;
18732 if (get_bindings (TREE_VALUE (champ),
18733 DECL_TEMPLATE_RESULT (TREE_VALUE (fn)),
18734 NULL_TREE, /*check_ret=*/true))
18735 fate--;
18737 if (get_bindings (TREE_VALUE (fn),
18738 DECL_TEMPLATE_RESULT (TREE_VALUE (champ)),
18739 NULL_TREE, /*check_ret=*/true))
18740 fate++;
18742 if (fate == -1)
18743 champ = fn;
18744 else if (!fate)
18746 /* Equally specialized, move to next function. If there
18747 is no next function, nothing's most specialized. */
18748 fn = TREE_CHAIN (fn);
18749 champ = fn;
18750 if (!fn)
18751 break;
18755 if (champ)
18756 /* Now verify that champ is better than everything earlier in the
18757 instantiation list. */
18758 for (fn = templates; fn != champ; fn = TREE_CHAIN (fn))
18759 if (get_bindings (TREE_VALUE (champ),
18760 DECL_TEMPLATE_RESULT (TREE_VALUE (fn)),
18761 NULL_TREE, /*check_ret=*/true)
18762 || !get_bindings (TREE_VALUE (fn),
18763 DECL_TEMPLATE_RESULT (TREE_VALUE (champ)),
18764 NULL_TREE, /*check_ret=*/true))
18766 champ = NULL_TREE;
18767 break;
18770 processing_template_decl--;
18772 if (!champ)
18773 return error_mark_node;
18775 return champ;
18778 /* If DECL is a specialization of some template, return the most
18779 general such template. Otherwise, returns NULL_TREE.
18781 For example, given:
18783 template <class T> struct S { template <class U> void f(U); };
18785 if TMPL is `template <class U> void S<int>::f(U)' this will return
18786 the full template. This function will not trace past partial
18787 specializations, however. For example, given in addition:
18789 template <class T> struct S<T*> { template <class U> void f(U); };
18791 if TMPL is `template <class U> void S<int*>::f(U)' this will return
18792 `template <class T> template <class U> S<T*>::f(U)'. */
18794 tree
18795 most_general_template (tree decl)
18797 if (TREE_CODE (decl) != TEMPLATE_DECL)
18799 if (tree tinfo = get_template_info (decl))
18800 decl = TI_TEMPLATE (tinfo);
18801 /* The TI_TEMPLATE can be an IDENTIFIER_NODE for a
18802 template friend, or a FIELD_DECL for a capture pack. */
18803 if (TREE_CODE (decl) != TEMPLATE_DECL)
18804 return NULL_TREE;
18807 /* Look for more and more general templates. */
18808 while (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl))
18810 /* The DECL_TI_TEMPLATE can be an IDENTIFIER_NODE in some cases.
18811 (See cp-tree.h for details.) */
18812 if (TREE_CODE (DECL_TI_TEMPLATE (decl)) != TEMPLATE_DECL)
18813 break;
18815 if (CLASS_TYPE_P (TREE_TYPE (decl))
18816 && CLASSTYPE_TEMPLATE_SPECIALIZATION (TREE_TYPE (decl)))
18817 break;
18819 /* Stop if we run into an explicitly specialized class template. */
18820 if (!DECL_NAMESPACE_SCOPE_P (decl)
18821 && DECL_CONTEXT (decl)
18822 && CLASSTYPE_TEMPLATE_SPECIALIZATION (DECL_CONTEXT (decl)))
18823 break;
18825 decl = DECL_TI_TEMPLATE (decl);
18828 return decl;
18831 /* Return the most specialized of the class template partial
18832 specializations which can produce TYPE, a specialization of some class
18833 template. The value returned is actually a TREE_LIST; the TREE_TYPE is
18834 a _TYPE node corresponding to the partial specialization, while the
18835 TREE_PURPOSE is the set of template arguments that must be
18836 substituted into the TREE_TYPE in order to generate TYPE.
18838 If the choice of partial specialization is ambiguous, a diagnostic
18839 is issued, and the error_mark_node is returned. If there are no
18840 partial specializations matching TYPE, then NULL_TREE is
18841 returned, indicating that the primary template should be used. */
18843 static tree
18844 most_specialized_class (tree type, tsubst_flags_t complain)
18846 tree list = NULL_TREE;
18847 tree t;
18848 tree champ;
18849 int fate;
18850 bool ambiguous_p;
18851 tree outer_args = NULL_TREE;
18853 tree tmpl = CLASSTYPE_TI_TEMPLATE (type);
18854 tree main_tmpl = most_general_template (tmpl);
18855 tree args = CLASSTYPE_TI_ARGS (type);
18857 /* For determining which partial specialization to use, only the
18858 innermost args are interesting. */
18859 if (TMPL_ARGS_HAVE_MULTIPLE_LEVELS (args))
18861 outer_args = strip_innermost_template_args (args, 1);
18862 args = INNERMOST_TEMPLATE_ARGS (args);
18865 for (t = DECL_TEMPLATE_SPECIALIZATIONS (main_tmpl); t; t = TREE_CHAIN (t))
18867 tree partial_spec_args;
18868 tree spec_args;
18869 tree spec_tmpl = TREE_VALUE (t);
18870 tree orig_parms = DECL_INNERMOST_TEMPLATE_PARMS (spec_tmpl);
18872 partial_spec_args = CLASSTYPE_TI_ARGS (TREE_TYPE (t));
18874 ++processing_template_decl;
18876 if (outer_args)
18878 /* Discard the outer levels of args, and then substitute in the
18879 template args from the enclosing class. */
18880 partial_spec_args = INNERMOST_TEMPLATE_ARGS (partial_spec_args);
18881 partial_spec_args = tsubst_template_args
18882 (partial_spec_args, outer_args, tf_none, NULL_TREE);
18884 /* And the same for the partial specialization TEMPLATE_DECL. */
18885 spec_tmpl = tsubst (spec_tmpl, outer_args, tf_none, NULL_TREE);
18888 partial_spec_args =
18889 coerce_template_parms (DECL_INNERMOST_TEMPLATE_PARMS (tmpl),
18890 partial_spec_args,
18891 tmpl, tf_none,
18892 /*require_all_args=*/true,
18893 /*use_default_args=*/true);
18895 --processing_template_decl;
18897 if (partial_spec_args == error_mark_node)
18898 return error_mark_node;
18899 if (spec_tmpl == error_mark_node)
18900 return error_mark_node;
18902 tree parms = DECL_INNERMOST_TEMPLATE_PARMS (spec_tmpl);
18903 spec_args = get_class_bindings (tmpl, parms,
18904 partial_spec_args,
18905 args);
18906 if (spec_args)
18908 if (outer_args)
18909 spec_args = add_to_template_args (outer_args, spec_args);
18910 list = tree_cons (spec_args, orig_parms, list);
18911 TREE_TYPE (list) = TREE_TYPE (t);
18915 if (! list)
18916 return NULL_TREE;
18918 ambiguous_p = false;
18919 t = list;
18920 champ = t;
18921 t = TREE_CHAIN (t);
18922 for (; t; t = TREE_CHAIN (t))
18924 fate = more_specialized_class (tmpl, champ, t);
18925 if (fate == 1)
18927 else
18929 if (fate == 0)
18931 t = TREE_CHAIN (t);
18932 if (! t)
18934 ambiguous_p = true;
18935 break;
18938 champ = t;
18942 if (!ambiguous_p)
18943 for (t = list; t && t != champ; t = TREE_CHAIN (t))
18945 fate = more_specialized_class (tmpl, champ, t);
18946 if (fate != 1)
18948 ambiguous_p = true;
18949 break;
18953 if (ambiguous_p)
18955 const char *str;
18956 char *spaces = NULL;
18957 if (!(complain & tf_error))
18958 return error_mark_node;
18959 error ("ambiguous class template instantiation for %q#T", type);
18960 str = ngettext ("candidate is:", "candidates are:", list_length (list));
18961 for (t = list; t; t = TREE_CHAIN (t))
18963 error ("%s %+#T", spaces ? spaces : str, TREE_TYPE (t));
18964 spaces = spaces ? spaces : get_spaces (str);
18966 free (spaces);
18967 return error_mark_node;
18970 return champ;
18973 /* Explicitly instantiate DECL. */
18975 void
18976 do_decl_instantiation (tree decl, tree storage)
18978 tree result = NULL_TREE;
18979 int extern_p = 0;
18981 if (!decl || decl == error_mark_node)
18982 /* An error occurred, for which grokdeclarator has already issued
18983 an appropriate message. */
18984 return;
18985 else if (! DECL_LANG_SPECIFIC (decl))
18987 error ("explicit instantiation of non-template %q#D", decl);
18988 return;
18990 else if (VAR_P (decl))
18992 /* There is an asymmetry here in the way VAR_DECLs and
18993 FUNCTION_DECLs are handled by grokdeclarator. In the case of
18994 the latter, the DECL we get back will be marked as a
18995 template instantiation, and the appropriate
18996 DECL_TEMPLATE_INFO will be set up. This does not happen for
18997 VAR_DECLs so we do the lookup here. Probably, grokdeclarator
18998 should handle VAR_DECLs as it currently handles
18999 FUNCTION_DECLs. */
19000 if (!DECL_CLASS_SCOPE_P (decl))
19002 error ("%qD is not a static data member of a class template", decl);
19003 return;
19005 result = lookup_field (DECL_CONTEXT (decl), DECL_NAME (decl), 0, false);
19006 if (!result || !VAR_P (result))
19008 error ("no matching template for %qD found", decl);
19009 return;
19011 if (!same_type_p (TREE_TYPE (result), TREE_TYPE (decl)))
19013 error ("type %qT for explicit instantiation %qD does not match "
19014 "declared type %qT", TREE_TYPE (result), decl,
19015 TREE_TYPE (decl));
19016 return;
19019 else if (TREE_CODE (decl) != FUNCTION_DECL)
19021 error ("explicit instantiation of %q#D", decl);
19022 return;
19024 else
19025 result = decl;
19027 /* Check for various error cases. Note that if the explicit
19028 instantiation is valid the RESULT will currently be marked as an
19029 *implicit* instantiation; DECL_EXPLICIT_INSTANTIATION is not set
19030 until we get here. */
19032 if (DECL_TEMPLATE_SPECIALIZATION (result))
19034 /* DR 259 [temp.spec].
19036 Both an explicit instantiation and a declaration of an explicit
19037 specialization shall not appear in a program unless the explicit
19038 instantiation follows a declaration of the explicit specialization.
19040 For a given set of template parameters, if an explicit
19041 instantiation of a template appears after a declaration of an
19042 explicit specialization for that template, the explicit
19043 instantiation has no effect. */
19044 return;
19046 else if (DECL_EXPLICIT_INSTANTIATION (result))
19048 /* [temp.spec]
19050 No program shall explicitly instantiate any template more
19051 than once.
19053 We check DECL_NOT_REALLY_EXTERN so as not to complain when
19054 the first instantiation was `extern' and the second is not,
19055 and EXTERN_P for the opposite case. */
19056 if (DECL_NOT_REALLY_EXTERN (result) && !extern_p)
19057 permerror (input_location, "duplicate explicit instantiation of %q#D", result);
19058 /* If an "extern" explicit instantiation follows an ordinary
19059 explicit instantiation, the template is instantiated. */
19060 if (extern_p)
19061 return;
19063 else if (!DECL_IMPLICIT_INSTANTIATION (result))
19065 error ("no matching template for %qD found", result);
19066 return;
19068 else if (!DECL_TEMPLATE_INFO (result))
19070 permerror (input_location, "explicit instantiation of non-template %q#D", result);
19071 return;
19074 if (storage == NULL_TREE)
19076 else if (storage == ridpointers[(int) RID_EXTERN])
19078 if (!in_system_header_at (input_location) && (cxx_dialect == cxx98))
19079 pedwarn (input_location, OPT_Wpedantic,
19080 "ISO C++ 1998 forbids the use of %<extern%> on explicit "
19081 "instantiations");
19082 extern_p = 1;
19084 else
19085 error ("storage class %qD applied to template instantiation", storage);
19087 check_explicit_instantiation_namespace (result);
19088 mark_decl_instantiated (result, extern_p);
19089 if (! extern_p)
19090 instantiate_decl (result, /*defer_ok=*/1,
19091 /*expl_inst_class_mem_p=*/false);
19094 static void
19095 mark_class_instantiated (tree t, int extern_p)
19097 SET_CLASSTYPE_EXPLICIT_INSTANTIATION (t);
19098 SET_CLASSTYPE_INTERFACE_KNOWN (t);
19099 CLASSTYPE_INTERFACE_ONLY (t) = extern_p;
19100 TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (t)) = extern_p;
19101 if (! extern_p)
19103 CLASSTYPE_DEBUG_REQUESTED (t) = 1;
19104 rest_of_type_compilation (t, 1);
19108 /* Called from do_type_instantiation through binding_table_foreach to
19109 do recursive instantiation for the type bound in ENTRY. */
19110 static void
19111 bt_instantiate_type_proc (binding_entry entry, void *data)
19113 tree storage = *(tree *) data;
19115 if (MAYBE_CLASS_TYPE_P (entry->type)
19116 && !uses_template_parms (CLASSTYPE_TI_ARGS (entry->type)))
19117 do_type_instantiation (TYPE_MAIN_DECL (entry->type), storage, 0);
19120 /* Called from do_type_instantiation to instantiate a member
19121 (a member function or a static member variable) of an
19122 explicitly instantiated class template. */
19123 static void
19124 instantiate_class_member (tree decl, int extern_p)
19126 mark_decl_instantiated (decl, extern_p);
19127 if (! extern_p)
19128 instantiate_decl (decl, /*defer_ok=*/1,
19129 /*expl_inst_class_mem_p=*/true);
19132 /* Perform an explicit instantiation of template class T. STORAGE, if
19133 non-null, is the RID for extern, inline or static. COMPLAIN is
19134 nonzero if this is called from the parser, zero if called recursively,
19135 since the standard is unclear (as detailed below). */
19137 void
19138 do_type_instantiation (tree t, tree storage, tsubst_flags_t complain)
19140 int extern_p = 0;
19141 int nomem_p = 0;
19142 int static_p = 0;
19143 int previous_instantiation_extern_p = 0;
19145 if (TREE_CODE (t) == TYPE_DECL)
19146 t = TREE_TYPE (t);
19148 if (! CLASS_TYPE_P (t) || ! CLASSTYPE_TEMPLATE_INFO (t))
19150 tree tmpl =
19151 (TYPE_TEMPLATE_INFO (t)) ? TYPE_TI_TEMPLATE (t) : NULL;
19152 if (tmpl)
19153 error ("explicit instantiation of non-class template %qD", tmpl);
19154 else
19155 error ("explicit instantiation of non-template type %qT", t);
19156 return;
19159 complete_type (t);
19161 if (!COMPLETE_TYPE_P (t))
19163 if (complain & tf_error)
19164 error ("explicit instantiation of %q#T before definition of template",
19166 return;
19169 if (storage != NULL_TREE)
19171 if (!in_system_header_at (input_location))
19173 if (storage == ridpointers[(int) RID_EXTERN])
19175 if (cxx_dialect == cxx98)
19176 pedwarn (input_location, OPT_Wpedantic,
19177 "ISO C++ 1998 forbids the use of %<extern%> on "
19178 "explicit instantiations");
19180 else
19181 pedwarn (input_location, OPT_Wpedantic,
19182 "ISO C++ forbids the use of %qE"
19183 " on explicit instantiations", storage);
19186 if (storage == ridpointers[(int) RID_INLINE])
19187 nomem_p = 1;
19188 else if (storage == ridpointers[(int) RID_EXTERN])
19189 extern_p = 1;
19190 else if (storage == ridpointers[(int) RID_STATIC])
19191 static_p = 1;
19192 else
19194 error ("storage class %qD applied to template instantiation",
19195 storage);
19196 extern_p = 0;
19200 if (CLASSTYPE_TEMPLATE_SPECIALIZATION (t))
19202 /* DR 259 [temp.spec].
19204 Both an explicit instantiation and a declaration of an explicit
19205 specialization shall not appear in a program unless the explicit
19206 instantiation follows a declaration of the explicit specialization.
19208 For a given set of template parameters, if an explicit
19209 instantiation of a template appears after a declaration of an
19210 explicit specialization for that template, the explicit
19211 instantiation has no effect. */
19212 return;
19214 else if (CLASSTYPE_EXPLICIT_INSTANTIATION (t))
19216 /* [temp.spec]
19218 No program shall explicitly instantiate any template more
19219 than once.
19221 If PREVIOUS_INSTANTIATION_EXTERN_P, then the first explicit
19222 instantiation was `extern'. If EXTERN_P then the second is.
19223 These cases are OK. */
19224 previous_instantiation_extern_p = CLASSTYPE_INTERFACE_ONLY (t);
19226 if (!previous_instantiation_extern_p && !extern_p
19227 && (complain & tf_error))
19228 permerror (input_location, "duplicate explicit instantiation of %q#T", t);
19230 /* If we've already instantiated the template, just return now. */
19231 if (!CLASSTYPE_INTERFACE_ONLY (t))
19232 return;
19235 check_explicit_instantiation_namespace (TYPE_NAME (t));
19236 mark_class_instantiated (t, extern_p);
19238 if (nomem_p)
19239 return;
19242 tree tmp;
19244 /* In contrast to implicit instantiation, where only the
19245 declarations, and not the definitions, of members are
19246 instantiated, we have here:
19248 [temp.explicit]
19250 The explicit instantiation of a class template specialization
19251 implies the instantiation of all of its members not
19252 previously explicitly specialized in the translation unit
19253 containing the explicit instantiation.
19255 Of course, we can't instantiate member template classes, since
19256 we don't have any arguments for them. Note that the standard
19257 is unclear on whether the instantiation of the members are
19258 *explicit* instantiations or not. However, the most natural
19259 interpretation is that it should be an explicit instantiation. */
19261 if (! static_p)
19262 for (tmp = TYPE_METHODS (t); tmp; tmp = DECL_CHAIN (tmp))
19263 if (TREE_CODE (tmp) == FUNCTION_DECL
19264 && DECL_TEMPLATE_INSTANTIATION (tmp))
19265 instantiate_class_member (tmp, extern_p);
19267 for (tmp = TYPE_FIELDS (t); tmp; tmp = DECL_CHAIN (tmp))
19268 if (VAR_P (tmp) && DECL_TEMPLATE_INSTANTIATION (tmp))
19269 instantiate_class_member (tmp, extern_p);
19271 if (CLASSTYPE_NESTED_UTDS (t))
19272 binding_table_foreach (CLASSTYPE_NESTED_UTDS (t),
19273 bt_instantiate_type_proc, &storage);
19277 /* Given a function DECL, which is a specialization of TMPL, modify
19278 DECL to be a re-instantiation of TMPL with the same template
19279 arguments. TMPL should be the template into which tsubst'ing
19280 should occur for DECL, not the most general template.
19282 One reason for doing this is a scenario like this:
19284 template <class T>
19285 void f(const T&, int i);
19287 void g() { f(3, 7); }
19289 template <class T>
19290 void f(const T& t, const int i) { }
19292 Note that when the template is first instantiated, with
19293 instantiate_template, the resulting DECL will have no name for the
19294 first parameter, and the wrong type for the second. So, when we go
19295 to instantiate the DECL, we regenerate it. */
19297 static void
19298 regenerate_decl_from_template (tree decl, tree tmpl)
19300 /* The arguments used to instantiate DECL, from the most general
19301 template. */
19302 tree args;
19303 tree code_pattern;
19305 args = DECL_TI_ARGS (decl);
19306 code_pattern = DECL_TEMPLATE_RESULT (tmpl);
19308 /* Make sure that we can see identifiers, and compute access
19309 correctly. */
19310 push_access_scope (decl);
19312 if (TREE_CODE (decl) == FUNCTION_DECL)
19314 tree decl_parm;
19315 tree pattern_parm;
19316 tree specs;
19317 int args_depth;
19318 int parms_depth;
19320 args_depth = TMPL_ARGS_DEPTH (args);
19321 parms_depth = TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (tmpl));
19322 if (args_depth > parms_depth)
19323 args = get_innermost_template_args (args, parms_depth);
19325 specs = tsubst_exception_specification (TREE_TYPE (code_pattern),
19326 args, tf_error, NULL_TREE,
19327 /*defer_ok*/false);
19328 if (specs && specs != error_mark_node)
19329 TREE_TYPE (decl) = build_exception_variant (TREE_TYPE (decl),
19330 specs);
19332 /* Merge parameter declarations. */
19333 decl_parm = skip_artificial_parms_for (decl,
19334 DECL_ARGUMENTS (decl));
19335 pattern_parm
19336 = skip_artificial_parms_for (code_pattern,
19337 DECL_ARGUMENTS (code_pattern));
19338 while (decl_parm && !DECL_PACK_P (pattern_parm))
19340 tree parm_type;
19341 tree attributes;
19343 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
19344 DECL_NAME (decl_parm) = DECL_NAME (pattern_parm);
19345 parm_type = tsubst (TREE_TYPE (pattern_parm), args, tf_error,
19346 NULL_TREE);
19347 parm_type = type_decays_to (parm_type);
19348 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
19349 TREE_TYPE (decl_parm) = parm_type;
19350 attributes = DECL_ATTRIBUTES (pattern_parm);
19351 if (DECL_ATTRIBUTES (decl_parm) != attributes)
19353 DECL_ATTRIBUTES (decl_parm) = attributes;
19354 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
19356 decl_parm = DECL_CHAIN (decl_parm);
19357 pattern_parm = DECL_CHAIN (pattern_parm);
19359 /* Merge any parameters that match with the function parameter
19360 pack. */
19361 if (pattern_parm && DECL_PACK_P (pattern_parm))
19363 int i, len;
19364 tree expanded_types;
19365 /* Expand the TYPE_PACK_EXPANSION that provides the types for
19366 the parameters in this function parameter pack. */
19367 expanded_types = tsubst_pack_expansion (TREE_TYPE (pattern_parm),
19368 args, tf_error, NULL_TREE);
19369 len = TREE_VEC_LENGTH (expanded_types);
19370 for (i = 0; i < len; i++)
19372 tree parm_type;
19373 tree attributes;
19375 if (DECL_NAME (decl_parm) != DECL_NAME (pattern_parm))
19376 /* Rename the parameter to include the index. */
19377 DECL_NAME (decl_parm) =
19378 make_ith_pack_parameter_name (DECL_NAME (pattern_parm), i);
19379 parm_type = TREE_VEC_ELT (expanded_types, i);
19380 parm_type = type_decays_to (parm_type);
19381 if (!same_type_p (TREE_TYPE (decl_parm), parm_type))
19382 TREE_TYPE (decl_parm) = parm_type;
19383 attributes = DECL_ATTRIBUTES (pattern_parm);
19384 if (DECL_ATTRIBUTES (decl_parm) != attributes)
19386 DECL_ATTRIBUTES (decl_parm) = attributes;
19387 cplus_decl_attributes (&decl_parm, attributes, /*flags=*/0);
19389 decl_parm = DECL_CHAIN (decl_parm);
19392 /* Merge additional specifiers from the CODE_PATTERN. */
19393 if (DECL_DECLARED_INLINE_P (code_pattern)
19394 && !DECL_DECLARED_INLINE_P (decl))
19395 DECL_DECLARED_INLINE_P (decl) = 1;
19397 else if (VAR_P (decl))
19399 DECL_INITIAL (decl) =
19400 tsubst_expr (DECL_INITIAL (code_pattern), args,
19401 tf_error, DECL_TI_TEMPLATE (decl),
19402 /*integral_constant_expression_p=*/false);
19403 if (VAR_HAD_UNKNOWN_BOUND (decl))
19404 TREE_TYPE (decl) = tsubst (TREE_TYPE (code_pattern), args,
19405 tf_error, DECL_TI_TEMPLATE (decl));
19407 else
19408 gcc_unreachable ();
19410 pop_access_scope (decl);
19413 /* Return the TEMPLATE_DECL into which DECL_TI_ARGS(DECL) should be
19414 substituted to get DECL. */
19416 tree
19417 template_for_substitution (tree decl)
19419 tree tmpl = DECL_TI_TEMPLATE (decl);
19421 /* Set TMPL to the template whose DECL_TEMPLATE_RESULT is the pattern
19422 for the instantiation. This is not always the most general
19423 template. Consider, for example:
19425 template <class T>
19426 struct S { template <class U> void f();
19427 template <> void f<int>(); };
19429 and an instantiation of S<double>::f<int>. We want TD to be the
19430 specialization S<T>::f<int>, not the more general S<T>::f<U>. */
19431 while (/* An instantiation cannot have a definition, so we need a
19432 more general template. */
19433 DECL_TEMPLATE_INSTANTIATION (tmpl)
19434 /* We must also deal with friend templates. Given:
19436 template <class T> struct S {
19437 template <class U> friend void f() {};
19440 S<int>::f<U> say, is not an instantiation of S<T>::f<U>,
19441 so far as the language is concerned, but that's still
19442 where we get the pattern for the instantiation from. On
19443 other hand, if the definition comes outside the class, say:
19445 template <class T> struct S {
19446 template <class U> friend void f();
19448 template <class U> friend void f() {}
19450 we don't need to look any further. That's what the check for
19451 DECL_INITIAL is for. */
19452 || (TREE_CODE (decl) == FUNCTION_DECL
19453 && DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (tmpl)
19454 && !DECL_INITIAL (DECL_TEMPLATE_RESULT (tmpl))))
19456 /* The present template, TD, should not be a definition. If it
19457 were a definition, we should be using it! Note that we
19458 cannot restructure the loop to just keep going until we find
19459 a template with a definition, since that might go too far if
19460 a specialization was declared, but not defined. */
19461 gcc_assert (!VAR_P (decl)
19462 || DECL_IN_AGGR_P (DECL_TEMPLATE_RESULT (tmpl)));
19464 /* Fetch the more general template. */
19465 tmpl = DECL_TI_TEMPLATE (tmpl);
19468 return tmpl;
19471 /* Returns true if we need to instantiate this template instance even if we
19472 know we aren't going to emit it.. */
19474 bool
19475 always_instantiate_p (tree decl)
19477 /* We always instantiate inline functions so that we can inline them. An
19478 explicit instantiation declaration prohibits implicit instantiation of
19479 non-inline functions. With high levels of optimization, we would
19480 normally inline non-inline functions -- but we're not allowed to do
19481 that for "extern template" functions. Therefore, we check
19482 DECL_DECLARED_INLINE_P, rather than possibly_inlined_p. */
19483 return ((TREE_CODE (decl) == FUNCTION_DECL
19484 && (DECL_DECLARED_INLINE_P (decl)
19485 || type_uses_auto (TREE_TYPE (TREE_TYPE (decl)))))
19486 /* And we need to instantiate static data members so that
19487 their initializers are available in integral constant
19488 expressions. */
19489 || (VAR_P (decl)
19490 && decl_maybe_constant_var_p (decl)));
19493 /* If FN has a noexcept-specifier that hasn't been instantiated yet,
19494 instantiate it now, modifying TREE_TYPE (fn). */
19496 void
19497 maybe_instantiate_noexcept (tree fn)
19499 tree fntype, spec, noex, clone;
19501 /* Don't instantiate a noexcept-specification from template context. */
19502 if (processing_template_decl)
19503 return;
19505 if (DECL_CLONED_FUNCTION_P (fn))
19506 fn = DECL_CLONED_FUNCTION (fn);
19507 fntype = TREE_TYPE (fn);
19508 spec = TYPE_RAISES_EXCEPTIONS (fntype);
19510 if (!spec || !TREE_PURPOSE (spec))
19511 return;
19513 noex = TREE_PURPOSE (spec);
19515 if (TREE_CODE (noex) == DEFERRED_NOEXCEPT)
19517 if (DEFERRED_NOEXCEPT_PATTERN (noex) == NULL_TREE)
19518 spec = get_defaulted_eh_spec (fn);
19519 else if (push_tinst_level (fn))
19521 push_access_scope (fn);
19522 push_deferring_access_checks (dk_no_deferred);
19523 input_location = DECL_SOURCE_LOCATION (fn);
19524 noex = tsubst_copy_and_build (DEFERRED_NOEXCEPT_PATTERN (noex),
19525 DEFERRED_NOEXCEPT_ARGS (noex),
19526 tf_warning_or_error, fn,
19527 /*function_p=*/false,
19528 /*integral_constant_expression_p=*/true);
19529 pop_deferring_access_checks ();
19530 pop_access_scope (fn);
19531 pop_tinst_level ();
19532 spec = build_noexcept_spec (noex, tf_warning_or_error);
19533 if (spec == error_mark_node)
19534 spec = noexcept_false_spec;
19536 else
19537 spec = noexcept_false_spec;
19539 TREE_TYPE (fn) = build_exception_variant (fntype, spec);
19542 FOR_EACH_CLONE (clone, fn)
19544 if (TREE_TYPE (clone) == fntype)
19545 TREE_TYPE (clone) = TREE_TYPE (fn);
19546 else
19547 TREE_TYPE (clone) = build_exception_variant (TREE_TYPE (clone), spec);
19551 /* Produce the definition of D, a _DECL generated from a template. If
19552 DEFER_OK is nonzero, then we don't have to actually do the
19553 instantiation now; we just have to do it sometime. Normally it is
19554 an error if this is an explicit instantiation but D is undefined.
19555 EXPL_INST_CLASS_MEM_P is true iff D is a member of an
19556 explicitly instantiated class template. */
19558 tree
19559 instantiate_decl (tree d, int defer_ok,
19560 bool expl_inst_class_mem_p)
19562 tree tmpl = DECL_TI_TEMPLATE (d);
19563 tree gen_args;
19564 tree args;
19565 tree td;
19566 tree code_pattern;
19567 tree spec;
19568 tree gen_tmpl;
19569 bool pattern_defined;
19570 location_t saved_loc = input_location;
19571 int saved_unevaluated_operand = cp_unevaluated_operand;
19572 int saved_inhibit_evaluation_warnings = c_inhibit_evaluation_warnings;
19573 bool external_p;
19574 bool deleted_p;
19575 tree fn_context;
19576 bool nested;
19578 /* This function should only be used to instantiate templates for
19579 functions and static member variables. */
19580 gcc_assert (VAR_OR_FUNCTION_DECL_P (d));
19582 /* Variables are never deferred; if instantiation is required, they
19583 are instantiated right away. That allows for better code in the
19584 case that an expression refers to the value of the variable --
19585 if the variable has a constant value the referring expression can
19586 take advantage of that fact. */
19587 if (VAR_P (d)
19588 || DECL_DECLARED_CONSTEXPR_P (d))
19589 defer_ok = 0;
19591 /* Don't instantiate cloned functions. Instead, instantiate the
19592 functions they cloned. */
19593 if (TREE_CODE (d) == FUNCTION_DECL && DECL_CLONED_FUNCTION_P (d))
19594 d = DECL_CLONED_FUNCTION (d);
19596 if (DECL_TEMPLATE_INSTANTIATED (d)
19597 || (TREE_CODE (d) == FUNCTION_DECL
19598 && DECL_DEFAULTED_FN (d) && DECL_INITIAL (d))
19599 || DECL_TEMPLATE_SPECIALIZATION (d))
19600 /* D has already been instantiated or explicitly specialized, so
19601 there's nothing for us to do here.
19603 It might seem reasonable to check whether or not D is an explicit
19604 instantiation, and, if so, stop here. But when an explicit
19605 instantiation is deferred until the end of the compilation,
19606 DECL_EXPLICIT_INSTANTIATION is set, even though we still need to do
19607 the instantiation. */
19608 return d;
19610 /* Check to see whether we know that this template will be
19611 instantiated in some other file, as with "extern template"
19612 extension. */
19613 external_p = (DECL_INTERFACE_KNOWN (d) && DECL_REALLY_EXTERN (d));
19615 /* In general, we do not instantiate such templates. */
19616 if (external_p && !always_instantiate_p (d))
19617 return d;
19619 gen_tmpl = most_general_template (tmpl);
19620 gen_args = DECL_TI_ARGS (d);
19622 if (tmpl != gen_tmpl)
19623 /* We should already have the extra args. */
19624 gcc_assert (TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (gen_tmpl))
19625 == TMPL_ARGS_DEPTH (gen_args));
19626 /* And what's in the hash table should match D. */
19627 gcc_assert ((spec = retrieve_specialization (gen_tmpl, gen_args, 0)) == d
19628 || spec == NULL_TREE);
19630 /* This needs to happen before any tsubsting. */
19631 if (! push_tinst_level (d))
19632 return d;
19634 timevar_push (TV_TEMPLATE_INST);
19636 /* Set TD to the template whose DECL_TEMPLATE_RESULT is the pattern
19637 for the instantiation. */
19638 td = template_for_substitution (d);
19639 code_pattern = DECL_TEMPLATE_RESULT (td);
19641 /* We should never be trying to instantiate a member of a class
19642 template or partial specialization. */
19643 gcc_assert (d != code_pattern);
19645 if ((DECL_NAMESPACE_SCOPE_P (d) && !DECL_INITIALIZED_IN_CLASS_P (d))
19646 || DECL_TEMPLATE_SPECIALIZATION (td))
19647 /* In the case of a friend template whose definition is provided
19648 outside the class, we may have too many arguments. Drop the
19649 ones we don't need. The same is true for specializations. */
19650 args = get_innermost_template_args
19651 (gen_args, TMPL_PARMS_DEPTH (DECL_TEMPLATE_PARMS (td)));
19652 else
19653 args = gen_args;
19655 if (TREE_CODE (d) == FUNCTION_DECL)
19657 deleted_p = DECL_DELETED_FN (code_pattern);
19658 pattern_defined = (DECL_SAVED_TREE (code_pattern) != NULL_TREE
19659 || DECL_DEFAULTED_OUTSIDE_CLASS_P (code_pattern)
19660 || deleted_p);
19662 else
19664 deleted_p = false;
19665 pattern_defined = ! DECL_IN_AGGR_P (code_pattern);
19668 /* We may be in the middle of deferred access check. Disable it now. */
19669 push_deferring_access_checks (dk_no_deferred);
19671 /* Unless an explicit instantiation directive has already determined
19672 the linkage of D, remember that a definition is available for
19673 this entity. */
19674 if (pattern_defined
19675 && !DECL_INTERFACE_KNOWN (d)
19676 && !DECL_NOT_REALLY_EXTERN (d))
19677 mark_definable (d);
19679 DECL_SOURCE_LOCATION (td) = DECL_SOURCE_LOCATION (code_pattern);
19680 DECL_SOURCE_LOCATION (d) = DECL_SOURCE_LOCATION (code_pattern);
19681 input_location = DECL_SOURCE_LOCATION (d);
19683 /* If D is a member of an explicitly instantiated class template,
19684 and no definition is available, treat it like an implicit
19685 instantiation. */
19686 if (!pattern_defined && expl_inst_class_mem_p
19687 && DECL_EXPLICIT_INSTANTIATION (d))
19689 /* Leave linkage flags alone on instantiations with anonymous
19690 visibility. */
19691 if (TREE_PUBLIC (d))
19693 DECL_NOT_REALLY_EXTERN (d) = 0;
19694 DECL_INTERFACE_KNOWN (d) = 0;
19696 SET_DECL_IMPLICIT_INSTANTIATION (d);
19699 /* Defer all other templates, unless we have been explicitly
19700 forbidden from doing so. */
19701 if (/* If there is no definition, we cannot instantiate the
19702 template. */
19703 ! pattern_defined
19704 /* If it's OK to postpone instantiation, do so. */
19705 || defer_ok
19706 /* If this is a static data member that will be defined
19707 elsewhere, we don't want to instantiate the entire data
19708 member, but we do want to instantiate the initializer so that
19709 we can substitute that elsewhere. */
19710 || (external_p && VAR_P (d))
19711 /* Handle here a deleted function too, avoid generating
19712 its body (c++/61080). */
19713 || deleted_p)
19715 /* The definition of the static data member is now required so
19716 we must substitute the initializer. */
19717 if (VAR_P (d)
19718 && !DECL_INITIAL (d)
19719 && DECL_INITIAL (code_pattern))
19721 tree ns;
19722 tree init;
19723 bool const_init = false;
19725 ns = decl_namespace_context (d);
19726 push_nested_namespace (ns);
19727 push_nested_class (DECL_CONTEXT (d));
19728 init = tsubst_expr (DECL_INITIAL (code_pattern),
19729 args,
19730 tf_warning_or_error, NULL_TREE,
19731 /*integral_constant_expression_p=*/false);
19732 /* Make sure the initializer is still constant, in case of
19733 circular dependency (template/instantiate6.C). */
19734 const_init
19735 = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
19736 cp_finish_decl (d, init, /*init_const_expr_p=*/const_init,
19737 /*asmspec_tree=*/NULL_TREE,
19738 LOOKUP_ONLYCONVERTING);
19739 pop_nested_class ();
19740 pop_nested_namespace (ns);
19743 /* We restore the source position here because it's used by
19744 add_pending_template. */
19745 input_location = saved_loc;
19747 if (at_eof && !pattern_defined
19748 && DECL_EXPLICIT_INSTANTIATION (d)
19749 && DECL_NOT_REALLY_EXTERN (d))
19750 /* [temp.explicit]
19752 The definition of a non-exported function template, a
19753 non-exported member function template, or a non-exported
19754 member function or static data member of a class template
19755 shall be present in every translation unit in which it is
19756 explicitly instantiated. */
19757 permerror (input_location, "explicit instantiation of %qD "
19758 "but no definition available", d);
19760 /* If we're in unevaluated context, we just wanted to get the
19761 constant value; this isn't an odr use, so don't queue
19762 a full instantiation. */
19763 if (cp_unevaluated_operand != 0)
19764 goto out;
19765 /* ??? Historically, we have instantiated inline functions, even
19766 when marked as "extern template". */
19767 if (!(external_p && VAR_P (d)))
19768 add_pending_template (d);
19769 goto out;
19771 /* Tell the repository that D is available in this translation unit
19772 -- and see if it is supposed to be instantiated here. */
19773 if (TREE_PUBLIC (d) && !DECL_REALLY_EXTERN (d) && !repo_emit_p (d))
19775 /* In a PCH file, despite the fact that the repository hasn't
19776 requested instantiation in the PCH it is still possible that
19777 an instantiation will be required in a file that includes the
19778 PCH. */
19779 if (pch_file)
19780 add_pending_template (d);
19781 /* Instantiate inline functions so that the inliner can do its
19782 job, even though we'll not be emitting a copy of this
19783 function. */
19784 if (!(TREE_CODE (d) == FUNCTION_DECL && possibly_inlined_p (d)))
19785 goto out;
19788 fn_context = decl_function_context (d);
19789 nested = (current_function_decl != NULL_TREE);
19790 if (!fn_context)
19791 push_to_top_level ();
19792 else
19794 if (nested)
19795 push_function_context ();
19796 cp_unevaluated_operand = 0;
19797 c_inhibit_evaluation_warnings = 0;
19800 /* Mark D as instantiated so that recursive calls to
19801 instantiate_decl do not try to instantiate it again. */
19802 DECL_TEMPLATE_INSTANTIATED (d) = 1;
19804 /* Regenerate the declaration in case the template has been modified
19805 by a subsequent redeclaration. */
19806 regenerate_decl_from_template (d, td);
19808 /* We already set the file and line above. Reset them now in case
19809 they changed as a result of calling regenerate_decl_from_template. */
19810 input_location = DECL_SOURCE_LOCATION (d);
19812 if (VAR_P (d))
19814 tree init;
19815 bool const_init = false;
19817 /* Clear out DECL_RTL; whatever was there before may not be right
19818 since we've reset the type of the declaration. */
19819 SET_DECL_RTL (d, NULL);
19820 DECL_IN_AGGR_P (d) = 0;
19822 /* The initializer is placed in DECL_INITIAL by
19823 regenerate_decl_from_template so we don't need to
19824 push/pop_access_scope again here. Pull it out so that
19825 cp_finish_decl can process it. */
19826 init = DECL_INITIAL (d);
19827 DECL_INITIAL (d) = NULL_TREE;
19828 DECL_INITIALIZED_P (d) = 0;
19830 /* Clear DECL_EXTERNAL so that cp_finish_decl will process the
19831 initializer. That function will defer actual emission until
19832 we have a chance to determine linkage. */
19833 DECL_EXTERNAL (d) = 0;
19835 /* Enter the scope of D so that access-checking works correctly. */
19836 push_nested_class (DECL_CONTEXT (d));
19837 const_init = DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P (code_pattern);
19838 cp_finish_decl (d, init, const_init, NULL_TREE, 0);
19839 pop_nested_class ();
19841 else if (TREE_CODE (d) == FUNCTION_DECL && DECL_DEFAULTED_FN (code_pattern))
19842 synthesize_method (d);
19843 else if (TREE_CODE (d) == FUNCTION_DECL)
19845 struct pointer_map_t *saved_local_specializations;
19846 tree subst_decl;
19847 tree tmpl_parm;
19848 tree spec_parm;
19849 tree block = NULL_TREE;
19851 /* Save away the current list, in case we are instantiating one
19852 template from within the body of another. */
19853 saved_local_specializations = local_specializations;
19855 /* Set up the list of local specializations. */
19856 local_specializations = pointer_map_create ();
19858 /* Set up context. */
19859 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern)
19860 && TREE_CODE (DECL_CONTEXT (code_pattern)) == FUNCTION_DECL)
19861 block = push_stmt_list ();
19862 else
19863 start_preparsed_function (d, NULL_TREE, SF_PRE_PARSED);
19865 /* Some typedefs referenced from within the template code need to be
19866 access checked at template instantiation time, i.e now. These
19867 types were added to the template at parsing time. Let's get those
19868 and perform the access checks then. */
19869 perform_typedefs_access_check (DECL_TEMPLATE_RESULT (gen_tmpl),
19870 gen_args);
19872 /* Create substitution entries for the parameters. */
19873 subst_decl = DECL_TEMPLATE_RESULT (template_for_substitution (d));
19874 tmpl_parm = DECL_ARGUMENTS (subst_decl);
19875 spec_parm = DECL_ARGUMENTS (d);
19876 if (DECL_NONSTATIC_MEMBER_FUNCTION_P (d))
19878 register_local_specialization (spec_parm, tmpl_parm);
19879 spec_parm = skip_artificial_parms_for (d, spec_parm);
19880 tmpl_parm = skip_artificial_parms_for (subst_decl, tmpl_parm);
19882 for (; tmpl_parm; tmpl_parm = DECL_CHAIN (tmpl_parm))
19884 if (!DECL_PACK_P (tmpl_parm))
19886 register_local_specialization (spec_parm, tmpl_parm);
19887 spec_parm = DECL_CHAIN (spec_parm);
19889 else
19891 /* Register the (value) argument pack as a specialization of
19892 TMPL_PARM, then move on. */
19893 tree argpack = extract_fnparm_pack (tmpl_parm, &spec_parm);
19894 register_local_specialization (argpack, tmpl_parm);
19897 gcc_assert (!spec_parm);
19899 /* Substitute into the body of the function. */
19900 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern))
19901 tsubst_omp_udr (DECL_SAVED_TREE (code_pattern), args,
19902 tf_warning_or_error, tmpl);
19903 else
19905 tsubst_expr (DECL_SAVED_TREE (code_pattern), args,
19906 tf_warning_or_error, tmpl,
19907 /*integral_constant_expression_p=*/false);
19909 /* Set the current input_location to the end of the function
19910 so that finish_function knows where we are. */
19911 input_location
19912 = DECL_STRUCT_FUNCTION (code_pattern)->function_end_locus;
19914 /* Remember if we saw an infinite loop in the template. */
19915 current_function_infinite_loop
19916 = DECL_STRUCT_FUNCTION (code_pattern)->language->infinite_loop;
19919 /* We don't need the local specializations any more. */
19920 pointer_map_destroy (local_specializations);
19921 local_specializations = saved_local_specializations;
19923 /* Finish the function. */
19924 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern)
19925 && TREE_CODE (DECL_CONTEXT (code_pattern)) == FUNCTION_DECL)
19926 DECL_SAVED_TREE (d) = pop_stmt_list (block);
19927 else
19929 d = finish_function (0);
19930 expand_or_defer_fn (d);
19933 if (DECL_OMP_DECLARE_REDUCTION_P (code_pattern))
19934 cp_check_omp_declare_reduction (d);
19937 /* We're not deferring instantiation any more. */
19938 TI_PENDING_TEMPLATE_FLAG (DECL_TEMPLATE_INFO (d)) = 0;
19940 if (!fn_context)
19941 pop_from_top_level ();
19942 else if (nested)
19943 pop_function_context ();
19945 out:
19946 input_location = saved_loc;
19947 cp_unevaluated_operand = saved_unevaluated_operand;
19948 c_inhibit_evaluation_warnings = saved_inhibit_evaluation_warnings;
19949 pop_deferring_access_checks ();
19950 pop_tinst_level ();
19952 timevar_pop (TV_TEMPLATE_INST);
19954 return d;
19957 /* Run through the list of templates that we wish we could
19958 instantiate, and instantiate any we can. RETRIES is the
19959 number of times we retry pending template instantiation. */
19961 void
19962 instantiate_pending_templates (int retries)
19964 int reconsider;
19965 location_t saved_loc = input_location;
19967 /* Instantiating templates may trigger vtable generation. This in turn
19968 may require further template instantiations. We place a limit here
19969 to avoid infinite loop. */
19970 if (pending_templates && retries >= max_tinst_depth)
19972 tree decl = pending_templates->tinst->decl;
19974 error ("template instantiation depth exceeds maximum of %d"
19975 " instantiating %q+D, possibly from virtual table generation"
19976 " (use -ftemplate-depth= to increase the maximum)",
19977 max_tinst_depth, decl);
19978 if (TREE_CODE (decl) == FUNCTION_DECL)
19979 /* Pretend that we defined it. */
19980 DECL_INITIAL (decl) = error_mark_node;
19981 return;
19986 struct pending_template **t = &pending_templates;
19987 struct pending_template *last = NULL;
19988 reconsider = 0;
19989 while (*t)
19991 tree instantiation = reopen_tinst_level ((*t)->tinst);
19992 bool complete = false;
19994 if (TYPE_P (instantiation))
19996 tree fn;
19998 if (!COMPLETE_TYPE_P (instantiation))
20000 instantiate_class_template (instantiation);
20001 if (CLASSTYPE_TEMPLATE_INSTANTIATION (instantiation))
20002 for (fn = TYPE_METHODS (instantiation);
20004 fn = TREE_CHAIN (fn))
20005 if (! DECL_ARTIFICIAL (fn))
20006 instantiate_decl (fn,
20007 /*defer_ok=*/0,
20008 /*expl_inst_class_mem_p=*/false);
20009 if (COMPLETE_TYPE_P (instantiation))
20010 reconsider = 1;
20013 complete = COMPLETE_TYPE_P (instantiation);
20015 else
20017 if (!DECL_TEMPLATE_SPECIALIZATION (instantiation)
20018 && !DECL_TEMPLATE_INSTANTIATED (instantiation))
20020 instantiation
20021 = instantiate_decl (instantiation,
20022 /*defer_ok=*/0,
20023 /*expl_inst_class_mem_p=*/false);
20024 if (DECL_TEMPLATE_INSTANTIATED (instantiation))
20025 reconsider = 1;
20028 complete = (DECL_TEMPLATE_SPECIALIZATION (instantiation)
20029 || DECL_TEMPLATE_INSTANTIATED (instantiation));
20032 if (complete)
20033 /* If INSTANTIATION has been instantiated, then we don't
20034 need to consider it again in the future. */
20035 *t = (*t)->next;
20036 else
20038 last = *t;
20039 t = &(*t)->next;
20041 tinst_depth = 0;
20042 current_tinst_level = NULL;
20044 last_pending_template = last;
20046 while (reconsider);
20048 input_location = saved_loc;
20051 /* Substitute ARGVEC into T, which is a list of initializers for
20052 either base class or a non-static data member. The TREE_PURPOSEs
20053 are DECLs, and the TREE_VALUEs are the initializer values. Used by
20054 instantiate_decl. */
20056 static tree
20057 tsubst_initializer_list (tree t, tree argvec)
20059 tree inits = NULL_TREE;
20061 for (; t; t = TREE_CHAIN (t))
20063 tree decl;
20064 tree init;
20065 tree expanded_bases = NULL_TREE;
20066 tree expanded_arguments = NULL_TREE;
20067 int i, len = 1;
20069 if (TREE_CODE (TREE_PURPOSE (t)) == TYPE_PACK_EXPANSION)
20071 tree expr;
20072 tree arg;
20074 /* Expand the base class expansion type into separate base
20075 classes. */
20076 expanded_bases = tsubst_pack_expansion (TREE_PURPOSE (t), argvec,
20077 tf_warning_or_error,
20078 NULL_TREE);
20079 if (expanded_bases == error_mark_node)
20080 continue;
20082 /* We'll be building separate TREE_LISTs of arguments for
20083 each base. */
20084 len = TREE_VEC_LENGTH (expanded_bases);
20085 expanded_arguments = make_tree_vec (len);
20086 for (i = 0; i < len; i++)
20087 TREE_VEC_ELT (expanded_arguments, i) = NULL_TREE;
20089 /* Build a dummy EXPR_PACK_EXPANSION that will be used to
20090 expand each argument in the TREE_VALUE of t. */
20091 expr = make_node (EXPR_PACK_EXPANSION);
20092 PACK_EXPANSION_LOCAL_P (expr) = true;
20093 PACK_EXPANSION_PARAMETER_PACKS (expr) =
20094 PACK_EXPANSION_PARAMETER_PACKS (TREE_PURPOSE (t));
20096 if (TREE_VALUE (t) == void_type_node)
20097 /* VOID_TYPE_NODE is used to indicate
20098 value-initialization. */
20100 for (i = 0; i < len; i++)
20101 TREE_VEC_ELT (expanded_arguments, i) = void_type_node;
20103 else
20105 /* Substitute parameter packs into each argument in the
20106 TREE_LIST. */
20107 in_base_initializer = 1;
20108 for (arg = TREE_VALUE (t); arg; arg = TREE_CHAIN (arg))
20110 tree expanded_exprs;
20112 /* Expand the argument. */
20113 SET_PACK_EXPANSION_PATTERN (expr, TREE_VALUE (arg));
20114 expanded_exprs
20115 = tsubst_pack_expansion (expr, argvec,
20116 tf_warning_or_error,
20117 NULL_TREE);
20118 if (expanded_exprs == error_mark_node)
20119 continue;
20121 /* Prepend each of the expanded expressions to the
20122 corresponding TREE_LIST in EXPANDED_ARGUMENTS. */
20123 for (i = 0; i < len; i++)
20125 TREE_VEC_ELT (expanded_arguments, i) =
20126 tree_cons (NULL_TREE,
20127 TREE_VEC_ELT (expanded_exprs, i),
20128 TREE_VEC_ELT (expanded_arguments, i));
20131 in_base_initializer = 0;
20133 /* Reverse all of the TREE_LISTs in EXPANDED_ARGUMENTS,
20134 since we built them backwards. */
20135 for (i = 0; i < len; i++)
20137 TREE_VEC_ELT (expanded_arguments, i) =
20138 nreverse (TREE_VEC_ELT (expanded_arguments, i));
20143 for (i = 0; i < len; ++i)
20145 if (expanded_bases)
20147 decl = TREE_VEC_ELT (expanded_bases, i);
20148 decl = expand_member_init (decl);
20149 init = TREE_VEC_ELT (expanded_arguments, i);
20151 else
20153 tree tmp;
20154 decl = tsubst_copy (TREE_PURPOSE (t), argvec,
20155 tf_warning_or_error, NULL_TREE);
20157 decl = expand_member_init (decl);
20158 if (decl && !DECL_P (decl))
20159 in_base_initializer = 1;
20161 init = TREE_VALUE (t);
20162 tmp = init;
20163 if (init != void_type_node)
20164 init = tsubst_expr (init, argvec,
20165 tf_warning_or_error, NULL_TREE,
20166 /*integral_constant_expression_p=*/false);
20167 if (init == NULL_TREE && tmp != NULL_TREE)
20168 /* If we had an initializer but it instantiated to nothing,
20169 value-initialize the object. This will only occur when
20170 the initializer was a pack expansion where the parameter
20171 packs used in that expansion were of length zero. */
20172 init = void_type_node;
20173 in_base_initializer = 0;
20176 if (decl)
20178 init = build_tree_list (decl, init);
20179 TREE_CHAIN (init) = inits;
20180 inits = init;
20184 return inits;
20187 /* Set CURRENT_ACCESS_SPECIFIER based on the protection of DECL. */
20189 static void
20190 set_current_access_from_decl (tree decl)
20192 if (TREE_PRIVATE (decl))
20193 current_access_specifier = access_private_node;
20194 else if (TREE_PROTECTED (decl))
20195 current_access_specifier = access_protected_node;
20196 else
20197 current_access_specifier = access_public_node;
20200 /* Instantiate an enumerated type. TAG is the template type, NEWTAG
20201 is the instantiation (which should have been created with
20202 start_enum) and ARGS are the template arguments to use. */
20204 static void
20205 tsubst_enum (tree tag, tree newtag, tree args)
20207 tree e;
20209 if (SCOPED_ENUM_P (newtag))
20210 begin_scope (sk_scoped_enum, newtag);
20212 for (e = TYPE_VALUES (tag); e; e = TREE_CHAIN (e))
20214 tree value;
20215 tree decl;
20217 decl = TREE_VALUE (e);
20218 /* Note that in a template enum, the TREE_VALUE is the
20219 CONST_DECL, not the corresponding INTEGER_CST. */
20220 value = tsubst_expr (DECL_INITIAL (decl),
20221 args, tf_warning_or_error, NULL_TREE,
20222 /*integral_constant_expression_p=*/true);
20224 /* Give this enumeration constant the correct access. */
20225 set_current_access_from_decl (decl);
20227 /* Actually build the enumerator itself. */
20228 build_enumerator
20229 (DECL_NAME (decl), value, newtag, DECL_SOURCE_LOCATION (decl));
20232 if (SCOPED_ENUM_P (newtag))
20233 finish_scope ();
20235 finish_enum_value_list (newtag);
20236 finish_enum (newtag);
20238 DECL_SOURCE_LOCATION (TYPE_NAME (newtag))
20239 = DECL_SOURCE_LOCATION (TYPE_NAME (tag));
20242 /* DECL is a FUNCTION_DECL that is a template specialization. Return
20243 its type -- but without substituting the innermost set of template
20244 arguments. So, innermost set of template parameters will appear in
20245 the type. */
20247 tree
20248 get_mostly_instantiated_function_type (tree decl)
20250 tree fn_type;
20251 tree tmpl;
20252 tree targs;
20253 tree tparms;
20254 int parm_depth;
20256 tmpl = most_general_template (DECL_TI_TEMPLATE (decl));
20257 targs = DECL_TI_ARGS (decl);
20258 tparms = DECL_TEMPLATE_PARMS (tmpl);
20259 parm_depth = TMPL_PARMS_DEPTH (tparms);
20261 /* There should be as many levels of arguments as there are levels
20262 of parameters. */
20263 gcc_assert (parm_depth == TMPL_ARGS_DEPTH (targs));
20265 fn_type = TREE_TYPE (tmpl);
20267 if (parm_depth == 1)
20268 /* No substitution is necessary. */
20270 else
20272 int i;
20273 tree partial_args;
20275 /* Replace the innermost level of the TARGS with NULL_TREEs to
20276 let tsubst know not to substitute for those parameters. */
20277 partial_args = make_tree_vec (TREE_VEC_LENGTH (targs));
20278 for (i = 1; i < TMPL_ARGS_DEPTH (targs); ++i)
20279 SET_TMPL_ARGS_LEVEL (partial_args, i,
20280 TMPL_ARGS_LEVEL (targs, i));
20281 SET_TMPL_ARGS_LEVEL (partial_args,
20282 TMPL_ARGS_DEPTH (targs),
20283 make_tree_vec (DECL_NTPARMS (tmpl)));
20285 /* Make sure that we can see identifiers, and compute access
20286 correctly. */
20287 push_access_scope (decl);
20289 ++processing_template_decl;
20290 /* Now, do the (partial) substitution to figure out the
20291 appropriate function type. */
20292 fn_type = tsubst (fn_type, partial_args, tf_error, NULL_TREE);
20293 --processing_template_decl;
20295 /* Substitute into the template parameters to obtain the real
20296 innermost set of parameters. This step is important if the
20297 innermost set of template parameters contains value
20298 parameters whose types depend on outer template parameters. */
20299 TREE_VEC_LENGTH (partial_args)--;
20300 tparms = tsubst_template_parms (tparms, partial_args, tf_error);
20302 pop_access_scope (decl);
20305 return fn_type;
20308 /* Return truthvalue if we're processing a template different from
20309 the last one involved in diagnostics. */
20311 problematic_instantiation_changed (void)
20313 return current_tinst_level != last_error_tinst_level;
20316 /* Remember current template involved in diagnostics. */
20317 void
20318 record_last_problematic_instantiation (void)
20320 last_error_tinst_level = current_tinst_level;
20323 struct tinst_level *
20324 current_instantiation (void)
20326 return current_tinst_level;
20329 /* [temp.param] Check that template non-type parm TYPE is of an allowable
20330 type. Return zero for ok, nonzero for disallowed. Issue error and
20331 warning messages under control of COMPLAIN. */
20333 static int
20334 invalid_nontype_parm_type_p (tree type, tsubst_flags_t complain)
20336 if (INTEGRAL_OR_ENUMERATION_TYPE_P (type))
20337 return 0;
20338 else if (POINTER_TYPE_P (type))
20339 return 0;
20340 else if (TYPE_PTRMEM_P (type))
20341 return 0;
20342 else if (TREE_CODE (type) == TEMPLATE_TYPE_PARM)
20343 return 0;
20344 else if (TREE_CODE (type) == TYPENAME_TYPE)
20345 return 0;
20346 else if (TREE_CODE (type) == DECLTYPE_TYPE)
20347 return 0;
20348 else if (TREE_CODE (type) == NULLPTR_TYPE)
20349 return 0;
20351 if (complain & tf_error)
20353 if (type == error_mark_node)
20354 inform (input_location, "invalid template non-type parameter");
20355 else
20356 error ("%q#T is not a valid type for a template non-type parameter",
20357 type);
20359 return 1;
20362 /* Returns TRUE if TYPE is dependent, in the sense of [temp.dep.type].
20363 Assumes that TYPE really is a type, and not the ERROR_MARK_NODE.*/
20365 static bool
20366 dependent_type_p_r (tree type)
20368 tree scope;
20370 /* [temp.dep.type]
20372 A type is dependent if it is:
20374 -- a template parameter. Template template parameters are types
20375 for us (since TYPE_P holds true for them) so we handle
20376 them here. */
20377 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
20378 || TREE_CODE (type) == TEMPLATE_TEMPLATE_PARM)
20379 return true;
20380 /* -- a qualified-id with a nested-name-specifier which contains a
20381 class-name that names a dependent type or whose unqualified-id
20382 names a dependent type. */
20383 if (TREE_CODE (type) == TYPENAME_TYPE)
20384 return true;
20385 /* -- a cv-qualified type where the cv-unqualified type is
20386 dependent. */
20387 type = TYPE_MAIN_VARIANT (type);
20388 /* -- a compound type constructed from any dependent type. */
20389 if (TYPE_PTRMEM_P (type))
20390 return (dependent_type_p (TYPE_PTRMEM_CLASS_TYPE (type))
20391 || dependent_type_p (TYPE_PTRMEM_POINTED_TO_TYPE
20392 (type)));
20393 else if (TYPE_PTR_P (type)
20394 || TREE_CODE (type) == REFERENCE_TYPE)
20395 return dependent_type_p (TREE_TYPE (type));
20396 else if (TREE_CODE (type) == FUNCTION_TYPE
20397 || TREE_CODE (type) == METHOD_TYPE)
20399 tree arg_type;
20401 if (dependent_type_p (TREE_TYPE (type)))
20402 return true;
20403 for (arg_type = TYPE_ARG_TYPES (type);
20404 arg_type;
20405 arg_type = TREE_CHAIN (arg_type))
20406 if (dependent_type_p (TREE_VALUE (arg_type)))
20407 return true;
20408 return false;
20410 /* -- an array type constructed from any dependent type or whose
20411 size is specified by a constant expression that is
20412 value-dependent.
20414 We checked for type- and value-dependence of the bounds in
20415 compute_array_index_type, so TYPE_DEPENDENT_P is already set. */
20416 if (TREE_CODE (type) == ARRAY_TYPE)
20418 if (TYPE_DOMAIN (type)
20419 && dependent_type_p (TYPE_DOMAIN (type)))
20420 return true;
20421 return dependent_type_p (TREE_TYPE (type));
20424 /* -- a template-id in which either the template name is a template
20425 parameter ... */
20426 if (TREE_CODE (type) == BOUND_TEMPLATE_TEMPLATE_PARM)
20427 return true;
20428 /* ... or any of the template arguments is a dependent type or
20429 an expression that is type-dependent or value-dependent. */
20430 else if (CLASS_TYPE_P (type) && CLASSTYPE_TEMPLATE_INFO (type)
20431 && (any_dependent_template_arguments_p
20432 (INNERMOST_TEMPLATE_ARGS (CLASSTYPE_TI_ARGS (type)))))
20433 return true;
20435 /* All TYPEOF_TYPEs, DECLTYPE_TYPEs, and UNDERLYING_TYPEs are
20436 dependent; if the argument of the `typeof' expression is not
20437 type-dependent, then it should already been have resolved. */
20438 if (TREE_CODE (type) == TYPEOF_TYPE
20439 || TREE_CODE (type) == DECLTYPE_TYPE
20440 || TREE_CODE (type) == UNDERLYING_TYPE)
20441 return true;
20443 /* A template argument pack is dependent if any of its packed
20444 arguments are. */
20445 if (TREE_CODE (type) == TYPE_ARGUMENT_PACK)
20447 tree args = ARGUMENT_PACK_ARGS (type);
20448 int i, len = TREE_VEC_LENGTH (args);
20449 for (i = 0; i < len; ++i)
20450 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
20451 return true;
20454 /* All TYPE_PACK_EXPANSIONs are dependent, because parameter packs must
20455 be template parameters. */
20456 if (TREE_CODE (type) == TYPE_PACK_EXPANSION)
20457 return true;
20459 /* The standard does not specifically mention types that are local
20460 to template functions or local classes, but they should be
20461 considered dependent too. For example:
20463 template <int I> void f() {
20464 enum E { a = I };
20465 S<sizeof (E)> s;
20468 The size of `E' cannot be known until the value of `I' has been
20469 determined. Therefore, `E' must be considered dependent. */
20470 scope = TYPE_CONTEXT (type);
20471 if (scope && TYPE_P (scope))
20472 return dependent_type_p (scope);
20473 /* Don't use type_dependent_expression_p here, as it can lead
20474 to infinite recursion trying to determine whether a lambda
20475 nested in a lambda is dependent (c++/47687). */
20476 else if (scope && TREE_CODE (scope) == FUNCTION_DECL
20477 && DECL_LANG_SPECIFIC (scope)
20478 && DECL_TEMPLATE_INFO (scope)
20479 && (any_dependent_template_arguments_p
20480 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (scope)))))
20481 return true;
20483 /* Other types are non-dependent. */
20484 return false;
20487 /* Returns TRUE if TYPE is dependent, in the sense of
20488 [temp.dep.type]. Note that a NULL type is considered dependent. */
20490 bool
20491 dependent_type_p (tree type)
20493 /* If there are no template parameters in scope, then there can't be
20494 any dependent types. */
20495 if (!processing_template_decl)
20497 /* If we are not processing a template, then nobody should be
20498 providing us with a dependent type. */
20499 gcc_assert (type);
20500 gcc_assert (TREE_CODE (type) != TEMPLATE_TYPE_PARM || is_auto (type));
20501 return false;
20504 /* If the type is NULL, we have not computed a type for the entity
20505 in question; in that case, the type is dependent. */
20506 if (!type)
20507 return true;
20509 /* Erroneous types can be considered non-dependent. */
20510 if (type == error_mark_node)
20511 return false;
20513 /* If we have not already computed the appropriate value for TYPE,
20514 do so now. */
20515 if (!TYPE_DEPENDENT_P_VALID (type))
20517 TYPE_DEPENDENT_P (type) = dependent_type_p_r (type);
20518 TYPE_DEPENDENT_P_VALID (type) = 1;
20521 return TYPE_DEPENDENT_P (type);
20524 /* Returns TRUE if SCOPE is a dependent scope, in which we can't do any
20525 lookup. In other words, a dependent type that is not the current
20526 instantiation. */
20528 bool
20529 dependent_scope_p (tree scope)
20531 return (scope && TYPE_P (scope) && dependent_type_p (scope)
20532 && !currently_open_class (scope));
20535 /* T is a SCOPE_REF; return whether we need to consider it
20536 instantiation-dependent so that we can check access at instantiation
20537 time even though we know which member it resolves to. */
20539 static bool
20540 instantiation_dependent_scope_ref_p (tree t)
20542 if (DECL_P (TREE_OPERAND (t, 1))
20543 && CLASS_TYPE_P (TREE_OPERAND (t, 0))
20544 && accessible_in_template_p (TREE_OPERAND (t, 0),
20545 TREE_OPERAND (t, 1)))
20546 return false;
20547 else
20548 return true;
20551 /* Returns TRUE if the EXPRESSION is value-dependent, in the sense of
20552 [temp.dep.constexpr]. EXPRESSION is already known to be a constant
20553 expression. */
20555 /* Note that this predicate is not appropriate for general expressions;
20556 only constant expressions (that satisfy potential_constant_expression)
20557 can be tested for value dependence. */
20559 bool
20560 value_dependent_expression_p (tree expression)
20562 if (!processing_template_decl)
20563 return false;
20565 /* A name declared with a dependent type. */
20566 if (DECL_P (expression) && type_dependent_expression_p (expression))
20567 return true;
20569 switch (TREE_CODE (expression))
20571 case IDENTIFIER_NODE:
20572 /* A name that has not been looked up -- must be dependent. */
20573 return true;
20575 case TEMPLATE_PARM_INDEX:
20576 /* A non-type template parm. */
20577 return true;
20579 case CONST_DECL:
20580 /* A non-type template parm. */
20581 if (DECL_TEMPLATE_PARM_P (expression))
20582 return true;
20583 return value_dependent_expression_p (DECL_INITIAL (expression));
20585 case VAR_DECL:
20586 /* A constant with literal type and is initialized
20587 with an expression that is value-dependent.
20589 Note that a non-dependent parenthesized initializer will have
20590 already been replaced with its constant value, so if we see
20591 a TREE_LIST it must be dependent. */
20592 if (DECL_INITIAL (expression)
20593 && decl_constant_var_p (expression)
20594 && (TREE_CODE (DECL_INITIAL (expression)) == TREE_LIST
20595 || value_dependent_expression_p (DECL_INITIAL (expression))))
20596 return true;
20597 return false;
20599 case DYNAMIC_CAST_EXPR:
20600 case STATIC_CAST_EXPR:
20601 case CONST_CAST_EXPR:
20602 case REINTERPRET_CAST_EXPR:
20603 case CAST_EXPR:
20604 /* These expressions are value-dependent if the type to which
20605 the cast occurs is dependent or the expression being casted
20606 is value-dependent. */
20608 tree type = TREE_TYPE (expression);
20610 if (dependent_type_p (type))
20611 return true;
20613 /* A functional cast has a list of operands. */
20614 expression = TREE_OPERAND (expression, 0);
20615 if (!expression)
20617 /* If there are no operands, it must be an expression such
20618 as "int()". This should not happen for aggregate types
20619 because it would form non-constant expressions. */
20620 gcc_assert (cxx_dialect >= cxx11
20621 || INTEGRAL_OR_ENUMERATION_TYPE_P (type));
20623 return false;
20626 if (TREE_CODE (expression) == TREE_LIST)
20627 return any_value_dependent_elements_p (expression);
20629 return value_dependent_expression_p (expression);
20632 case SIZEOF_EXPR:
20633 if (SIZEOF_EXPR_TYPE_P (expression))
20634 return dependent_type_p (TREE_TYPE (TREE_OPERAND (expression, 0)));
20635 /* FALLTHRU */
20636 case ALIGNOF_EXPR:
20637 case TYPEID_EXPR:
20638 /* A `sizeof' expression is value-dependent if the operand is
20639 type-dependent or is a pack expansion. */
20640 expression = TREE_OPERAND (expression, 0);
20641 if (PACK_EXPANSION_P (expression))
20642 return true;
20643 else if (TYPE_P (expression))
20644 return dependent_type_p (expression);
20645 return instantiation_dependent_expression_p (expression);
20647 case AT_ENCODE_EXPR:
20648 /* An 'encode' expression is value-dependent if the operand is
20649 type-dependent. */
20650 expression = TREE_OPERAND (expression, 0);
20651 return dependent_type_p (expression);
20653 case NOEXCEPT_EXPR:
20654 expression = TREE_OPERAND (expression, 0);
20655 return instantiation_dependent_expression_p (expression);
20657 case SCOPE_REF:
20658 /* All instantiation-dependent expressions should also be considered
20659 value-dependent. */
20660 return instantiation_dependent_scope_ref_p (expression);
20662 case COMPONENT_REF:
20663 return (value_dependent_expression_p (TREE_OPERAND (expression, 0))
20664 || value_dependent_expression_p (TREE_OPERAND (expression, 1)));
20666 case NONTYPE_ARGUMENT_PACK:
20667 /* A NONTYPE_ARGUMENT_PACK is value-dependent if any packed argument
20668 is value-dependent. */
20670 tree values = ARGUMENT_PACK_ARGS (expression);
20671 int i, len = TREE_VEC_LENGTH (values);
20673 for (i = 0; i < len; ++i)
20674 if (value_dependent_expression_p (TREE_VEC_ELT (values, i)))
20675 return true;
20677 return false;
20680 case TRAIT_EXPR:
20682 tree type2 = TRAIT_EXPR_TYPE2 (expression);
20683 return (dependent_type_p (TRAIT_EXPR_TYPE1 (expression))
20684 || (type2 ? dependent_type_p (type2) : false));
20687 case MODOP_EXPR:
20688 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
20689 || (value_dependent_expression_p (TREE_OPERAND (expression, 2))));
20691 case ARRAY_REF:
20692 return ((value_dependent_expression_p (TREE_OPERAND (expression, 0)))
20693 || (value_dependent_expression_p (TREE_OPERAND (expression, 1))));
20695 case ADDR_EXPR:
20697 tree op = TREE_OPERAND (expression, 0);
20698 return (value_dependent_expression_p (op)
20699 || has_value_dependent_address (op));
20702 case CALL_EXPR:
20704 tree fn = get_callee_fndecl (expression);
20705 int i, nargs;
20706 if (!fn && value_dependent_expression_p (CALL_EXPR_FN (expression)))
20707 return true;
20708 nargs = call_expr_nargs (expression);
20709 for (i = 0; i < nargs; ++i)
20711 tree op = CALL_EXPR_ARG (expression, i);
20712 /* In a call to a constexpr member function, look through the
20713 implicit ADDR_EXPR on the object argument so that it doesn't
20714 cause the call to be considered value-dependent. We also
20715 look through it in potential_constant_expression. */
20716 if (i == 0 && fn && DECL_DECLARED_CONSTEXPR_P (fn)
20717 && DECL_NONSTATIC_MEMBER_FUNCTION_P (fn)
20718 && TREE_CODE (op) == ADDR_EXPR)
20719 op = TREE_OPERAND (op, 0);
20720 if (value_dependent_expression_p (op))
20721 return true;
20723 return false;
20726 case TEMPLATE_ID_EXPR:
20727 /* If a TEMPLATE_ID_EXPR involves a dependent name, it will be
20728 type-dependent. */
20729 return type_dependent_expression_p (expression);
20731 case CONSTRUCTOR:
20733 unsigned ix;
20734 tree val;
20735 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), ix, val)
20736 if (value_dependent_expression_p (val))
20737 return true;
20738 return false;
20741 case STMT_EXPR:
20742 /* Treat a GNU statement expression as dependent to avoid crashing
20743 under fold_non_dependent_expr; it can't be constant. */
20744 return true;
20746 default:
20747 /* A constant expression is value-dependent if any subexpression is
20748 value-dependent. */
20749 switch (TREE_CODE_CLASS (TREE_CODE (expression)))
20751 case tcc_reference:
20752 case tcc_unary:
20753 case tcc_comparison:
20754 case tcc_binary:
20755 case tcc_expression:
20756 case tcc_vl_exp:
20758 int i, len = cp_tree_operand_length (expression);
20760 for (i = 0; i < len; i++)
20762 tree t = TREE_OPERAND (expression, i);
20764 /* In some cases, some of the operands may be missing.l
20765 (For example, in the case of PREDECREMENT_EXPR, the
20766 amount to increment by may be missing.) That doesn't
20767 make the expression dependent. */
20768 if (t && value_dependent_expression_p (t))
20769 return true;
20772 break;
20773 default:
20774 break;
20776 break;
20779 /* The expression is not value-dependent. */
20780 return false;
20783 /* Returns TRUE if the EXPRESSION is type-dependent, in the sense of
20784 [temp.dep.expr]. Note that an expression with no type is
20785 considered dependent. Other parts of the compiler arrange for an
20786 expression with type-dependent subexpressions to have no type, so
20787 this function doesn't have to be fully recursive. */
20789 bool
20790 type_dependent_expression_p (tree expression)
20792 if (!processing_template_decl)
20793 return false;
20795 if (expression == NULL_TREE || expression == error_mark_node)
20796 return false;
20798 /* An unresolved name is always dependent. */
20799 if (identifier_p (expression) || TREE_CODE (expression) == USING_DECL)
20800 return true;
20802 /* Some expression forms are never type-dependent. */
20803 if (TREE_CODE (expression) == PSEUDO_DTOR_EXPR
20804 || TREE_CODE (expression) == SIZEOF_EXPR
20805 || TREE_CODE (expression) == ALIGNOF_EXPR
20806 || TREE_CODE (expression) == AT_ENCODE_EXPR
20807 || TREE_CODE (expression) == NOEXCEPT_EXPR
20808 || TREE_CODE (expression) == TRAIT_EXPR
20809 || TREE_CODE (expression) == TYPEID_EXPR
20810 || TREE_CODE (expression) == DELETE_EXPR
20811 || TREE_CODE (expression) == VEC_DELETE_EXPR
20812 || TREE_CODE (expression) == THROW_EXPR)
20813 return false;
20815 /* The types of these expressions depends only on the type to which
20816 the cast occurs. */
20817 if (TREE_CODE (expression) == DYNAMIC_CAST_EXPR
20818 || TREE_CODE (expression) == STATIC_CAST_EXPR
20819 || TREE_CODE (expression) == CONST_CAST_EXPR
20820 || TREE_CODE (expression) == REINTERPRET_CAST_EXPR
20821 || TREE_CODE (expression) == IMPLICIT_CONV_EXPR
20822 || TREE_CODE (expression) == CAST_EXPR)
20823 return dependent_type_p (TREE_TYPE (expression));
20825 /* The types of these expressions depends only on the type created
20826 by the expression. */
20827 if (TREE_CODE (expression) == NEW_EXPR
20828 || TREE_CODE (expression) == VEC_NEW_EXPR)
20830 /* For NEW_EXPR tree nodes created inside a template, either
20831 the object type itself or a TREE_LIST may appear as the
20832 operand 1. */
20833 tree type = TREE_OPERAND (expression, 1);
20834 if (TREE_CODE (type) == TREE_LIST)
20835 /* This is an array type. We need to check array dimensions
20836 as well. */
20837 return dependent_type_p (TREE_VALUE (TREE_PURPOSE (type)))
20838 || value_dependent_expression_p
20839 (TREE_OPERAND (TREE_VALUE (type), 1));
20840 else
20841 return dependent_type_p (type);
20844 if (TREE_CODE (expression) == SCOPE_REF)
20846 tree scope = TREE_OPERAND (expression, 0);
20847 tree name = TREE_OPERAND (expression, 1);
20849 /* 14.6.2.2 [temp.dep.expr]: An id-expression is type-dependent if it
20850 contains an identifier associated by name lookup with one or more
20851 declarations declared with a dependent type, or...a
20852 nested-name-specifier or qualified-id that names a member of an
20853 unknown specialization. */
20854 return (type_dependent_expression_p (name)
20855 || dependent_scope_p (scope));
20858 if (TREE_CODE (expression) == FUNCTION_DECL
20859 && DECL_LANG_SPECIFIC (expression)
20860 && DECL_TEMPLATE_INFO (expression)
20861 && (any_dependent_template_arguments_p
20862 (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (expression)))))
20863 return true;
20865 if (TREE_CODE (expression) == TEMPLATE_DECL
20866 && !DECL_TEMPLATE_TEMPLATE_PARM_P (expression))
20867 return false;
20869 if (TREE_CODE (expression) == STMT_EXPR)
20870 expression = stmt_expr_value_expr (expression);
20872 if (BRACE_ENCLOSED_INITIALIZER_P (expression))
20874 tree elt;
20875 unsigned i;
20877 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (expression), i, elt)
20879 if (type_dependent_expression_p (elt))
20880 return true;
20882 return false;
20885 /* A static data member of the current instantiation with incomplete
20886 array type is type-dependent, as the definition and specializations
20887 can have different bounds. */
20888 if (VAR_P (expression)
20889 && DECL_CLASS_SCOPE_P (expression)
20890 && dependent_type_p (DECL_CONTEXT (expression))
20891 && VAR_HAD_UNKNOWN_BOUND (expression))
20892 return true;
20894 /* An array of unknown bound depending on a variadic parameter, eg:
20896 template<typename... Args>
20897 void foo (Args... args)
20899 int arr[] = { args... };
20902 template<int... vals>
20903 void bar ()
20905 int arr[] = { vals... };
20908 If the array has no length and has an initializer, it must be that
20909 we couldn't determine its length in cp_complete_array_type because
20910 it is dependent. */
20911 if (VAR_P (expression)
20912 && TREE_CODE (TREE_TYPE (expression)) == ARRAY_TYPE
20913 && !TYPE_DOMAIN (TREE_TYPE (expression))
20914 && DECL_INITIAL (expression))
20915 return true;
20917 if (TREE_TYPE (expression) == unknown_type_node)
20919 if (TREE_CODE (expression) == ADDR_EXPR)
20920 return type_dependent_expression_p (TREE_OPERAND (expression, 0));
20921 if (TREE_CODE (expression) == COMPONENT_REF
20922 || TREE_CODE (expression) == OFFSET_REF)
20924 if (type_dependent_expression_p (TREE_OPERAND (expression, 0)))
20925 return true;
20926 expression = TREE_OPERAND (expression, 1);
20927 if (identifier_p (expression))
20928 return false;
20930 /* SCOPE_REF with non-null TREE_TYPE is always non-dependent. */
20931 if (TREE_CODE (expression) == SCOPE_REF)
20932 return false;
20934 /* Always dependent, on the number of arguments if nothing else. */
20935 if (TREE_CODE (expression) == EXPR_PACK_EXPANSION)
20936 return true;
20938 if (BASELINK_P (expression))
20939 expression = BASELINK_FUNCTIONS (expression);
20941 if (TREE_CODE (expression) == TEMPLATE_ID_EXPR)
20943 if (any_dependent_template_arguments_p
20944 (TREE_OPERAND (expression, 1)))
20945 return true;
20946 expression = TREE_OPERAND (expression, 0);
20948 gcc_assert (TREE_CODE (expression) == OVERLOAD
20949 || TREE_CODE (expression) == FUNCTION_DECL);
20951 while (expression)
20953 if (type_dependent_expression_p (OVL_CURRENT (expression)))
20954 return true;
20955 expression = OVL_NEXT (expression);
20957 return false;
20960 gcc_assert (TREE_CODE (expression) != TYPE_DECL);
20962 return (dependent_type_p (TREE_TYPE (expression)));
20965 /* walk_tree callback function for instantiation_dependent_expression_p,
20966 below. Returns non-zero if a dependent subexpression is found. */
20968 static tree
20969 instantiation_dependent_r (tree *tp, int *walk_subtrees,
20970 void * /*data*/)
20972 if (TYPE_P (*tp))
20974 /* We don't have to worry about decltype currently because decltype
20975 of an instantiation-dependent expr is a dependent type. This
20976 might change depending on the resolution of DR 1172. */
20977 *walk_subtrees = false;
20978 return NULL_TREE;
20980 enum tree_code code = TREE_CODE (*tp);
20981 switch (code)
20983 /* Don't treat an argument list as dependent just because it has no
20984 TREE_TYPE. */
20985 case TREE_LIST:
20986 case TREE_VEC:
20987 return NULL_TREE;
20989 case VAR_DECL:
20990 case CONST_DECL:
20991 /* A constant with a dependent initializer is dependent. */
20992 if (value_dependent_expression_p (*tp))
20993 return *tp;
20994 break;
20996 case TEMPLATE_PARM_INDEX:
20997 return *tp;
20999 /* Handle expressions with type operands. */
21000 case SIZEOF_EXPR:
21001 case ALIGNOF_EXPR:
21002 case TYPEID_EXPR:
21003 case AT_ENCODE_EXPR:
21005 tree op = TREE_OPERAND (*tp, 0);
21006 if (code == SIZEOF_EXPR && SIZEOF_EXPR_TYPE_P (*tp))
21007 op = TREE_TYPE (op);
21008 if (TYPE_P (op))
21010 if (dependent_type_p (op))
21011 return *tp;
21012 else
21014 *walk_subtrees = false;
21015 return NULL_TREE;
21018 break;
21021 case TRAIT_EXPR:
21022 if (dependent_type_p (TRAIT_EXPR_TYPE1 (*tp))
21023 || (TRAIT_EXPR_TYPE2 (*tp)
21024 && dependent_type_p (TRAIT_EXPR_TYPE2 (*tp))))
21025 return *tp;
21026 *walk_subtrees = false;
21027 return NULL_TREE;
21029 case COMPONENT_REF:
21030 if (identifier_p (TREE_OPERAND (*tp, 1)))
21031 /* In a template, finish_class_member_access_expr creates a
21032 COMPONENT_REF with an IDENTIFIER_NODE for op1 even if it isn't
21033 type-dependent, so that we can check access control at
21034 instantiation time (PR 42277). See also Core issue 1273. */
21035 return *tp;
21036 break;
21038 case SCOPE_REF:
21039 if (instantiation_dependent_scope_ref_p (*tp))
21040 return *tp;
21041 else
21042 break;
21044 /* Treat statement-expressions as dependent. */
21045 case BIND_EXPR:
21046 return *tp;
21048 default:
21049 break;
21052 if (type_dependent_expression_p (*tp))
21053 return *tp;
21054 else
21055 return NULL_TREE;
21058 /* Returns TRUE if the EXPRESSION is instantiation-dependent, in the
21059 sense defined by the ABI:
21061 "An expression is instantiation-dependent if it is type-dependent
21062 or value-dependent, or it has a subexpression that is type-dependent
21063 or value-dependent." */
21065 bool
21066 instantiation_dependent_expression_p (tree expression)
21068 tree result;
21070 if (!processing_template_decl)
21071 return false;
21073 if (expression == error_mark_node)
21074 return false;
21076 result = cp_walk_tree_without_duplicates (&expression,
21077 instantiation_dependent_r, NULL);
21078 return result != NULL_TREE;
21081 /* Like type_dependent_expression_p, but it also works while not processing
21082 a template definition, i.e. during substitution or mangling. */
21084 bool
21085 type_dependent_expression_p_push (tree expr)
21087 bool b;
21088 ++processing_template_decl;
21089 b = type_dependent_expression_p (expr);
21090 --processing_template_decl;
21091 return b;
21094 /* Returns TRUE if ARGS contains a type-dependent expression. */
21096 bool
21097 any_type_dependent_arguments_p (const vec<tree, va_gc> *args)
21099 unsigned int i;
21100 tree arg;
21102 FOR_EACH_VEC_SAFE_ELT (args, i, arg)
21104 if (type_dependent_expression_p (arg))
21105 return true;
21107 return false;
21110 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
21111 expressions) contains any type-dependent expressions. */
21113 bool
21114 any_type_dependent_elements_p (const_tree list)
21116 for (; list; list = TREE_CHAIN (list))
21117 if (type_dependent_expression_p (TREE_VALUE (list)))
21118 return true;
21120 return false;
21123 /* Returns TRUE if LIST (a TREE_LIST whose TREE_VALUEs are
21124 expressions) contains any value-dependent expressions. */
21126 bool
21127 any_value_dependent_elements_p (const_tree list)
21129 for (; list; list = TREE_CHAIN (list))
21130 if (value_dependent_expression_p (TREE_VALUE (list)))
21131 return true;
21133 return false;
21136 /* Returns TRUE if the ARG (a template argument) is dependent. */
21138 bool
21139 dependent_template_arg_p (tree arg)
21141 if (!processing_template_decl)
21142 return false;
21144 /* Assume a template argument that was wrongly written by the user
21145 is dependent. This is consistent with what
21146 any_dependent_template_arguments_p [that calls this function]
21147 does. */
21148 if (!arg || arg == error_mark_node)
21149 return true;
21151 if (TREE_CODE (arg) == ARGUMENT_PACK_SELECT)
21152 arg = ARGUMENT_PACK_SELECT_ARG (arg);
21154 if (TREE_CODE (arg) == TEMPLATE_DECL
21155 || TREE_CODE (arg) == TEMPLATE_TEMPLATE_PARM)
21156 return dependent_template_p (arg);
21157 else if (ARGUMENT_PACK_P (arg))
21159 tree args = ARGUMENT_PACK_ARGS (arg);
21160 int i, len = TREE_VEC_LENGTH (args);
21161 for (i = 0; i < len; ++i)
21163 if (dependent_template_arg_p (TREE_VEC_ELT (args, i)))
21164 return true;
21167 return false;
21169 else if (TYPE_P (arg))
21170 return dependent_type_p (arg);
21171 else
21172 return (type_dependent_expression_p (arg)
21173 || value_dependent_expression_p (arg));
21176 /* Returns true if ARGS (a collection of template arguments) contains
21177 any types that require structural equality testing. */
21179 bool
21180 any_template_arguments_need_structural_equality_p (tree args)
21182 int i;
21183 int j;
21185 if (!args)
21186 return false;
21187 if (args == error_mark_node)
21188 return true;
21190 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
21192 tree level = TMPL_ARGS_LEVEL (args, i + 1);
21193 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
21195 tree arg = TREE_VEC_ELT (level, j);
21196 tree packed_args = NULL_TREE;
21197 int k, len = 1;
21199 if (ARGUMENT_PACK_P (arg))
21201 /* Look inside the argument pack. */
21202 packed_args = ARGUMENT_PACK_ARGS (arg);
21203 len = TREE_VEC_LENGTH (packed_args);
21206 for (k = 0; k < len; ++k)
21208 if (packed_args)
21209 arg = TREE_VEC_ELT (packed_args, k);
21211 if (error_operand_p (arg))
21212 return true;
21213 else if (TREE_CODE (arg) == TEMPLATE_DECL)
21214 continue;
21215 else if (TYPE_P (arg) && TYPE_STRUCTURAL_EQUALITY_P (arg))
21216 return true;
21217 else if (!TYPE_P (arg) && TREE_TYPE (arg)
21218 && TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (arg)))
21219 return true;
21224 return false;
21227 /* Returns true if ARGS (a collection of template arguments) contains
21228 any dependent arguments. */
21230 bool
21231 any_dependent_template_arguments_p (const_tree args)
21233 int i;
21234 int j;
21236 if (!args)
21237 return false;
21238 if (args == error_mark_node)
21239 return true;
21241 for (i = 0; i < TMPL_ARGS_DEPTH (args); ++i)
21243 const_tree level = TMPL_ARGS_LEVEL (args, i + 1);
21244 for (j = 0; j < TREE_VEC_LENGTH (level); ++j)
21245 if (dependent_template_arg_p (TREE_VEC_ELT (level, j)))
21246 return true;
21249 return false;
21252 /* Returns TRUE if the template TMPL is dependent. */
21254 bool
21255 dependent_template_p (tree tmpl)
21257 if (TREE_CODE (tmpl) == OVERLOAD)
21259 while (tmpl)
21261 if (dependent_template_p (OVL_CURRENT (tmpl)))
21262 return true;
21263 tmpl = OVL_NEXT (tmpl);
21265 return false;
21268 /* Template template parameters are dependent. */
21269 if (DECL_TEMPLATE_TEMPLATE_PARM_P (tmpl)
21270 || TREE_CODE (tmpl) == TEMPLATE_TEMPLATE_PARM)
21271 return true;
21272 /* So are names that have not been looked up. */
21273 if (TREE_CODE (tmpl) == SCOPE_REF || identifier_p (tmpl))
21274 return true;
21275 /* So are member templates of dependent classes. */
21276 if (TYPE_P (CP_DECL_CONTEXT (tmpl)))
21277 return dependent_type_p (DECL_CONTEXT (tmpl));
21278 return false;
21281 /* Returns TRUE if the specialization TMPL<ARGS> is dependent. */
21283 bool
21284 dependent_template_id_p (tree tmpl, tree args)
21286 return (dependent_template_p (tmpl)
21287 || any_dependent_template_arguments_p (args));
21290 /* Returns TRUE if OMP_FOR with DECLV, INITV, CONDV and INCRV vectors
21291 is dependent. */
21293 bool
21294 dependent_omp_for_p (tree declv, tree initv, tree condv, tree incrv)
21296 int i;
21298 if (!processing_template_decl)
21299 return false;
21301 for (i = 0; i < TREE_VEC_LENGTH (declv); i++)
21303 tree decl = TREE_VEC_ELT (declv, i);
21304 tree init = TREE_VEC_ELT (initv, i);
21305 tree cond = TREE_VEC_ELT (condv, i);
21306 tree incr = TREE_VEC_ELT (incrv, i);
21308 if (type_dependent_expression_p (decl))
21309 return true;
21311 if (init && type_dependent_expression_p (init))
21312 return true;
21314 if (type_dependent_expression_p (cond))
21315 return true;
21317 if (COMPARISON_CLASS_P (cond)
21318 && (type_dependent_expression_p (TREE_OPERAND (cond, 0))
21319 || type_dependent_expression_p (TREE_OPERAND (cond, 1))))
21320 return true;
21322 if (TREE_CODE (incr) == MODOP_EXPR)
21324 if (type_dependent_expression_p (TREE_OPERAND (incr, 0))
21325 || type_dependent_expression_p (TREE_OPERAND (incr, 2)))
21326 return true;
21328 else if (type_dependent_expression_p (incr))
21329 return true;
21330 else if (TREE_CODE (incr) == MODIFY_EXPR)
21332 if (type_dependent_expression_p (TREE_OPERAND (incr, 0)))
21333 return true;
21334 else if (BINARY_CLASS_P (TREE_OPERAND (incr, 1)))
21336 tree t = TREE_OPERAND (incr, 1);
21337 if (type_dependent_expression_p (TREE_OPERAND (t, 0))
21338 || type_dependent_expression_p (TREE_OPERAND (t, 1)))
21339 return true;
21344 return false;
21347 /* TYPE is a TYPENAME_TYPE. Returns the ordinary TYPE to which the
21348 TYPENAME_TYPE corresponds. Returns the original TYPENAME_TYPE if
21349 no such TYPE can be found. Note that this function peers inside
21350 uninstantiated templates and therefore should be used only in
21351 extremely limited situations. ONLY_CURRENT_P restricts this
21352 peering to the currently open classes hierarchy (which is required
21353 when comparing types). */
21355 tree
21356 resolve_typename_type (tree type, bool only_current_p)
21358 tree scope;
21359 tree name;
21360 tree decl;
21361 int quals;
21362 tree pushed_scope;
21363 tree result;
21365 gcc_assert (TREE_CODE (type) == TYPENAME_TYPE);
21367 scope = TYPE_CONTEXT (type);
21368 /* Usually the non-qualified identifier of a TYPENAME_TYPE is
21369 TYPE_IDENTIFIER (type). But when 'type' is a typedef variant of
21370 a TYPENAME_TYPE node, then TYPE_NAME (type) is set to the TYPE_DECL representing
21371 the typedef. In that case TYPE_IDENTIFIER (type) is not the non-qualified
21372 identifier of the TYPENAME_TYPE anymore.
21373 So by getting the TYPE_IDENTIFIER of the _main declaration_ of the
21374 TYPENAME_TYPE instead, we avoid messing up with a possible
21375 typedef variant case. */
21376 name = TYPE_IDENTIFIER (TYPE_MAIN_VARIANT (type));
21378 /* If the SCOPE is itself a TYPENAME_TYPE, then we need to resolve
21379 it first before we can figure out what NAME refers to. */
21380 if (TREE_CODE (scope) == TYPENAME_TYPE)
21382 if (TYPENAME_IS_RESOLVING_P (scope))
21383 /* Given a class template A with a dependent base with nested type C,
21384 typedef typename A::C::C C will land us here, as trying to resolve
21385 the initial A::C leads to the local C typedef, which leads back to
21386 A::C::C. So we break the recursion now. */
21387 return type;
21388 else
21389 scope = resolve_typename_type (scope, only_current_p);
21391 /* If we don't know what SCOPE refers to, then we cannot resolve the
21392 TYPENAME_TYPE. */
21393 if (TREE_CODE (scope) == TYPENAME_TYPE)
21394 return type;
21395 /* If the SCOPE is a template type parameter, we have no way of
21396 resolving the name. */
21397 if (TREE_CODE (scope) == TEMPLATE_TYPE_PARM)
21398 return type;
21399 /* If the SCOPE is not the current instantiation, there's no reason
21400 to look inside it. */
21401 if (only_current_p && !currently_open_class (scope))
21402 return type;
21403 /* If this is a typedef, we don't want to look inside (c++/11987). */
21404 if (typedef_variant_p (type))
21405 return type;
21406 /* If SCOPE isn't the template itself, it will not have a valid
21407 TYPE_FIELDS list. */
21408 if (same_type_p (scope, CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope)))
21409 /* scope is either the template itself or a compatible instantiation
21410 like X<T>, so look up the name in the original template. */
21411 scope = CLASSTYPE_PRIMARY_TEMPLATE_TYPE (scope);
21412 else
21413 /* scope is a partial instantiation, so we can't do the lookup or we
21414 will lose the template arguments. */
21415 return type;
21416 /* Enter the SCOPE so that name lookup will be resolved as if we
21417 were in the class definition. In particular, SCOPE will no
21418 longer be considered a dependent type. */
21419 pushed_scope = push_scope (scope);
21420 /* Look up the declaration. */
21421 decl = lookup_member (scope, name, /*protect=*/0, /*want_type=*/true,
21422 tf_warning_or_error);
21424 result = NULL_TREE;
21426 /* For a TYPENAME_TYPE like "typename X::template Y<T>", we want to
21427 find a TEMPLATE_DECL. Otherwise, we want to find a TYPE_DECL. */
21428 if (!decl)
21429 /*nop*/;
21430 else if (identifier_p (TYPENAME_TYPE_FULLNAME (type))
21431 && TREE_CODE (decl) == TYPE_DECL)
21433 result = TREE_TYPE (decl);
21434 if (result == error_mark_node)
21435 result = NULL_TREE;
21437 else if (TREE_CODE (TYPENAME_TYPE_FULLNAME (type)) == TEMPLATE_ID_EXPR
21438 && DECL_CLASS_TEMPLATE_P (decl))
21440 tree tmpl;
21441 tree args;
21442 /* Obtain the template and the arguments. */
21443 tmpl = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 0);
21444 args = TREE_OPERAND (TYPENAME_TYPE_FULLNAME (type), 1);
21445 /* Instantiate the template. */
21446 result = lookup_template_class (tmpl, args, NULL_TREE, NULL_TREE,
21447 /*entering_scope=*/0,
21448 tf_error | tf_user);
21449 if (result == error_mark_node)
21450 result = NULL_TREE;
21453 /* Leave the SCOPE. */
21454 if (pushed_scope)
21455 pop_scope (pushed_scope);
21457 /* If we failed to resolve it, return the original typename. */
21458 if (!result)
21459 return type;
21461 /* If lookup found a typename type, resolve that too. */
21462 if (TREE_CODE (result) == TYPENAME_TYPE && !TYPENAME_IS_RESOLVING_P (result))
21464 /* Ill-formed programs can cause infinite recursion here, so we
21465 must catch that. */
21466 TYPENAME_IS_RESOLVING_P (type) = 1;
21467 result = resolve_typename_type (result, only_current_p);
21468 TYPENAME_IS_RESOLVING_P (type) = 0;
21471 /* Qualify the resulting type. */
21472 quals = cp_type_quals (type);
21473 if (quals)
21474 result = cp_build_qualified_type (result, cp_type_quals (result) | quals);
21476 return result;
21479 /* EXPR is an expression which is not type-dependent. Return a proxy
21480 for EXPR that can be used to compute the types of larger
21481 expressions containing EXPR. */
21483 tree
21484 build_non_dependent_expr (tree expr)
21486 tree inner_expr;
21488 #ifdef ENABLE_CHECKING
21489 /* Try to get a constant value for all non-dependent expressions in
21490 order to expose bugs in *_dependent_expression_p and constexpr. */
21491 if (cxx_dialect >= cxx11)
21492 maybe_constant_value (fold_non_dependent_expr_sfinae (expr, tf_none));
21493 #endif
21495 /* Preserve OVERLOADs; the functions must be available to resolve
21496 types. */
21497 inner_expr = expr;
21498 if (TREE_CODE (inner_expr) == STMT_EXPR)
21499 inner_expr = stmt_expr_value_expr (inner_expr);
21500 if (TREE_CODE (inner_expr) == ADDR_EXPR)
21501 inner_expr = TREE_OPERAND (inner_expr, 0);
21502 if (TREE_CODE (inner_expr) == COMPONENT_REF)
21503 inner_expr = TREE_OPERAND (inner_expr, 1);
21504 if (is_overloaded_fn (inner_expr)
21505 || TREE_CODE (inner_expr) == OFFSET_REF)
21506 return expr;
21507 /* There is no need to return a proxy for a variable. */
21508 if (VAR_P (expr))
21509 return expr;
21510 /* Preserve string constants; conversions from string constants to
21511 "char *" are allowed, even though normally a "const char *"
21512 cannot be used to initialize a "char *". */
21513 if (TREE_CODE (expr) == STRING_CST)
21514 return expr;
21515 /* Preserve arithmetic constants, as an optimization -- there is no
21516 reason to create a new node. */
21517 if (TREE_CODE (expr) == INTEGER_CST || TREE_CODE (expr) == REAL_CST)
21518 return expr;
21519 /* Preserve THROW_EXPRs -- all throw-expressions have type "void".
21520 There is at least one place where we want to know that a
21521 particular expression is a throw-expression: when checking a ?:
21522 expression, there are special rules if the second or third
21523 argument is a throw-expression. */
21524 if (TREE_CODE (expr) == THROW_EXPR)
21525 return expr;
21527 /* Don't wrap an initializer list, we need to be able to look inside. */
21528 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
21529 return expr;
21531 /* Don't wrap a dummy object, we need to be able to test for it. */
21532 if (is_dummy_object (expr))
21533 return expr;
21535 if (TREE_CODE (expr) == COND_EXPR)
21536 return build3 (COND_EXPR,
21537 TREE_TYPE (expr),
21538 TREE_OPERAND (expr, 0),
21539 (TREE_OPERAND (expr, 1)
21540 ? build_non_dependent_expr (TREE_OPERAND (expr, 1))
21541 : build_non_dependent_expr (TREE_OPERAND (expr, 0))),
21542 build_non_dependent_expr (TREE_OPERAND (expr, 2)));
21543 if (TREE_CODE (expr) == COMPOUND_EXPR
21544 && !COMPOUND_EXPR_OVERLOADED (expr))
21545 return build2 (COMPOUND_EXPR,
21546 TREE_TYPE (expr),
21547 TREE_OPERAND (expr, 0),
21548 build_non_dependent_expr (TREE_OPERAND (expr, 1)));
21550 /* If the type is unknown, it can't really be non-dependent */
21551 gcc_assert (TREE_TYPE (expr) != unknown_type_node);
21553 /* Otherwise, build a NON_DEPENDENT_EXPR. */
21554 return build1 (NON_DEPENDENT_EXPR, TREE_TYPE (expr), expr);
21557 /* ARGS is a vector of expressions as arguments to a function call.
21558 Replace the arguments with equivalent non-dependent expressions.
21559 This modifies ARGS in place. */
21561 void
21562 make_args_non_dependent (vec<tree, va_gc> *args)
21564 unsigned int ix;
21565 tree arg;
21567 FOR_EACH_VEC_SAFE_ELT (args, ix, arg)
21569 tree newarg = build_non_dependent_expr (arg);
21570 if (newarg != arg)
21571 (*args)[ix] = newarg;
21575 /* Returns a type which represents 'auto' or 'decltype(auto)'. We use a
21576 TEMPLATE_TYPE_PARM with a level one deeper than the actual template
21577 parms. */
21579 static tree
21580 make_auto_1 (tree name)
21582 tree au = cxx_make_type (TEMPLATE_TYPE_PARM);
21583 TYPE_NAME (au) = build_decl (input_location,
21584 TYPE_DECL, name, au);
21585 TYPE_STUB_DECL (au) = TYPE_NAME (au);
21586 TEMPLATE_TYPE_PARM_INDEX (au) = build_template_parm_index
21587 (0, processing_template_decl + 1, processing_template_decl + 1,
21588 TYPE_NAME (au), NULL_TREE);
21589 TYPE_CANONICAL (au) = canonical_type_parameter (au);
21590 DECL_ARTIFICIAL (TYPE_NAME (au)) = 1;
21591 SET_DECL_TEMPLATE_PARM_P (TYPE_NAME (au));
21593 return au;
21596 tree
21597 make_decltype_auto (void)
21599 return make_auto_1 (get_identifier ("decltype(auto)"));
21602 tree
21603 make_auto (void)
21605 return make_auto_1 (get_identifier ("auto"));
21608 /* Given type ARG, return std::initializer_list<ARG>. */
21610 static tree
21611 listify (tree arg)
21613 tree std_init_list = namespace_binding
21614 (get_identifier ("initializer_list"), std_node);
21615 tree argvec;
21616 if (!std_init_list || !DECL_CLASS_TEMPLATE_P (std_init_list))
21618 error ("deducing from brace-enclosed initializer list requires "
21619 "#include <initializer_list>");
21620 return error_mark_node;
21622 argvec = make_tree_vec (1);
21623 TREE_VEC_ELT (argvec, 0) = arg;
21624 return lookup_template_class (std_init_list, argvec, NULL_TREE,
21625 NULL_TREE, 0, tf_warning_or_error);
21628 /* Replace auto in TYPE with std::initializer_list<auto>. */
21630 static tree
21631 listify_autos (tree type, tree auto_node)
21633 tree init_auto = listify (auto_node);
21634 tree argvec = make_tree_vec (1);
21635 TREE_VEC_ELT (argvec, 0) = init_auto;
21636 if (processing_template_decl)
21637 argvec = add_to_template_args (current_template_args (), argvec);
21638 return tsubst (type, argvec, tf_warning_or_error, NULL_TREE);
21641 /* Replace occurrences of 'auto' in TYPE with the appropriate type deduced
21642 from INIT. AUTO_NODE is the TEMPLATE_TYPE_PARM used for 'auto' in TYPE. */
21644 tree
21645 do_auto_deduction (tree type, tree init, tree auto_node)
21647 tree targs;
21649 if (init == error_mark_node)
21650 return error_mark_node;
21652 if (type_dependent_expression_p (init))
21653 /* Defining a subset of type-dependent expressions that we can deduce
21654 from ahead of time isn't worth the trouble. */
21655 return type;
21657 /* [dcl.spec.auto]: Obtain P from T by replacing the occurrences of auto
21658 with either a new invented type template parameter U or, if the
21659 initializer is a braced-init-list (8.5.4), with
21660 std::initializer_list<U>. */
21661 if (BRACE_ENCLOSED_INITIALIZER_P (init))
21662 type = listify_autos (type, auto_node);
21664 init = resolve_nondeduced_context (init);
21666 targs = make_tree_vec (1);
21667 if (AUTO_IS_DECLTYPE (auto_node))
21669 bool id = (DECL_P (init) || (TREE_CODE (init) == COMPONENT_REF
21670 && !REF_PARENTHESIZED_P (init)));
21671 TREE_VEC_ELT (targs, 0)
21672 = finish_decltype_type (init, id, tf_warning_or_error);
21673 if (type != auto_node)
21675 error ("%qT as type rather than plain %<decltype(auto)%>", type);
21676 return error_mark_node;
21679 else
21681 tree parms = build_tree_list (NULL_TREE, type);
21682 tree tparms = make_tree_vec (1);
21683 int val;
21685 TREE_VEC_ELT (tparms, 0)
21686 = build_tree_list (NULL_TREE, TYPE_NAME (auto_node));
21687 val = type_unification_real (tparms, targs, parms, &init, 1, 0,
21688 DEDUCE_CALL, LOOKUP_NORMAL,
21689 NULL, /*explain_p=*/false);
21690 if (val > 0)
21692 if (processing_template_decl)
21693 /* Try again at instantiation time. */
21694 return type;
21695 if (type && type != error_mark_node)
21696 /* If type is error_mark_node a diagnostic must have been
21697 emitted by now. Also, having a mention to '<type error>'
21698 in the diagnostic is not really useful to the user. */
21700 if (cfun && auto_node == current_function_auto_return_pattern
21701 && LAMBDA_FUNCTION_P (current_function_decl))
21702 error ("unable to deduce lambda return type from %qE", init);
21703 else
21704 error ("unable to deduce %qT from %qE", type, init);
21706 return error_mark_node;
21710 /* If the list of declarators contains more than one declarator, the type
21711 of each declared variable is determined as described above. If the
21712 type deduced for the template parameter U is not the same in each
21713 deduction, the program is ill-formed. */
21714 if (TREE_TYPE (auto_node)
21715 && !same_type_p (TREE_TYPE (auto_node), TREE_VEC_ELT (targs, 0)))
21717 if (cfun && auto_node == current_function_auto_return_pattern
21718 && LAMBDA_FUNCTION_P (current_function_decl))
21719 error ("inconsistent types %qT and %qT deduced for "
21720 "lambda return type", TREE_TYPE (auto_node),
21721 TREE_VEC_ELT (targs, 0));
21722 else
21723 error ("inconsistent deduction for %qT: %qT and then %qT",
21724 auto_node, TREE_TYPE (auto_node), TREE_VEC_ELT (targs, 0));
21725 return error_mark_node;
21727 TREE_TYPE (auto_node) = TREE_VEC_ELT (targs, 0);
21729 if (processing_template_decl)
21730 targs = add_to_template_args (current_template_args (), targs);
21731 return tsubst (type, targs, tf_warning_or_error, NULL_TREE);
21734 /* Substitutes LATE_RETURN_TYPE for 'auto' in TYPE and returns the
21735 result. */
21737 tree
21738 splice_late_return_type (tree type, tree late_return_type)
21740 tree argvec;
21742 if (late_return_type == NULL_TREE)
21743 return type;
21744 argvec = make_tree_vec (1);
21745 TREE_VEC_ELT (argvec, 0) = late_return_type;
21746 if (processing_template_parmlist)
21747 /* For a late-specified return type in a template type-parameter, we
21748 need to add a dummy argument level for its parmlist. */
21749 argvec = add_to_template_args
21750 (make_tree_vec (processing_template_parmlist), argvec);
21751 if (current_template_parms)
21752 argvec = add_to_template_args (current_template_args (), argvec);
21753 return tsubst (type, argvec, tf_warning_or_error, NULL_TREE);
21756 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto' or
21757 'decltype(auto)'. */
21759 bool
21760 is_auto (const_tree type)
21762 if (TREE_CODE (type) == TEMPLATE_TYPE_PARM
21763 && (TYPE_IDENTIFIER (type) == get_identifier ("auto")
21764 || TYPE_IDENTIFIER (type) == get_identifier ("decltype(auto)")))
21765 return true;
21766 else
21767 return false;
21770 /* Returns the TEMPLATE_TYPE_PARM in TYPE representing `auto' iff TYPE contains
21771 a use of `auto'. Returns NULL_TREE otherwise. */
21773 tree
21774 type_uses_auto (tree type)
21776 return find_type_usage (type, is_auto);
21779 /* Returns true iff TYPE is a TEMPLATE_TYPE_PARM representing 'auto',
21780 'decltype(auto)' or a concept. */
21782 bool
21783 is_auto_or_concept (const_tree type)
21785 return is_auto (type); // or concept
21788 /* Returns the TEMPLATE_TYPE_PARM in TYPE representing a generic type (`auto' or
21789 a concept identifier) iff TYPE contains a use of a generic type. Returns
21790 NULL_TREE otherwise. */
21792 tree
21793 type_uses_auto_or_concept (tree type)
21795 return find_type_usage (type, is_auto_or_concept);
21799 /* For a given template T, return the vector of typedefs referenced
21800 in T for which access check is needed at T instantiation time.
21801 T is either a FUNCTION_DECL or a RECORD_TYPE.
21802 Those typedefs were added to T by the function
21803 append_type_to_template_for_access_check. */
21805 vec<qualified_typedef_usage_t, va_gc> *
21806 get_types_needing_access_check (tree t)
21808 tree ti;
21809 vec<qualified_typedef_usage_t, va_gc> *result = NULL;
21811 if (!t || t == error_mark_node)
21812 return NULL;
21814 if (!(ti = get_template_info (t)))
21815 return NULL;
21817 if (CLASS_TYPE_P (t)
21818 || TREE_CODE (t) == FUNCTION_DECL)
21820 if (!TI_TEMPLATE (ti))
21821 return NULL;
21823 result = TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti);
21826 return result;
21829 /* Append the typedef TYPE_DECL used in template T to a list of typedefs
21830 tied to T. That list of typedefs will be access checked at
21831 T instantiation time.
21832 T is either a FUNCTION_DECL or a RECORD_TYPE.
21833 TYPE_DECL is a TYPE_DECL node representing a typedef.
21834 SCOPE is the scope through which TYPE_DECL is accessed.
21835 LOCATION is the location of the usage point of TYPE_DECL.
21837 This function is a subroutine of
21838 append_type_to_template_for_access_check. */
21840 static void
21841 append_type_to_template_for_access_check_1 (tree t,
21842 tree type_decl,
21843 tree scope,
21844 location_t location)
21846 qualified_typedef_usage_t typedef_usage;
21847 tree ti;
21849 if (!t || t == error_mark_node)
21850 return;
21852 gcc_assert ((TREE_CODE (t) == FUNCTION_DECL
21853 || CLASS_TYPE_P (t))
21854 && type_decl
21855 && TREE_CODE (type_decl) == TYPE_DECL
21856 && scope);
21858 if (!(ti = get_template_info (t)))
21859 return;
21861 gcc_assert (TI_TEMPLATE (ti));
21863 typedef_usage.typedef_decl = type_decl;
21864 typedef_usage.context = scope;
21865 typedef_usage.locus = location;
21867 vec_safe_push (TI_TYPEDEFS_NEEDING_ACCESS_CHECKING (ti), typedef_usage);
21870 /* Append TYPE_DECL to the template TEMPL.
21871 TEMPL is either a class type, a FUNCTION_DECL or a a TEMPLATE_DECL.
21872 At TEMPL instanciation time, TYPE_DECL will be checked to see
21873 if it can be accessed through SCOPE.
21874 LOCATION is the location of the usage point of TYPE_DECL.
21876 e.g. consider the following code snippet:
21878 class C
21880 typedef int myint;
21883 template<class U> struct S
21885 C::myint mi; // <-- usage point of the typedef C::myint
21888 S<char> s;
21890 At S<char> instantiation time, we need to check the access of C::myint
21891 In other words, we need to check the access of the myint typedef through
21892 the C scope. For that purpose, this function will add the myint typedef
21893 and the scope C through which its being accessed to a list of typedefs
21894 tied to the template S. That list will be walked at template instantiation
21895 time and access check performed on each typedefs it contains.
21896 Note that this particular code snippet should yield an error because
21897 myint is private to C. */
21899 void
21900 append_type_to_template_for_access_check (tree templ,
21901 tree type_decl,
21902 tree scope,
21903 location_t location)
21905 qualified_typedef_usage_t *iter;
21906 unsigned i;
21908 gcc_assert (type_decl && (TREE_CODE (type_decl) == TYPE_DECL));
21910 /* Make sure we don't append the type to the template twice. */
21911 FOR_EACH_VEC_SAFE_ELT (get_types_needing_access_check (templ), i, iter)
21912 if (iter->typedef_decl == type_decl && scope == iter->context)
21913 return;
21915 append_type_to_template_for_access_check_1 (templ, type_decl,
21916 scope, location);
21919 /* Convert the generic type parameters in PARM that match the types given in the
21920 range [START_IDX, END_IDX) from the current_template_parms into generic type
21921 packs. */
21923 tree
21924 convert_generic_types_to_packs (tree parm, int start_idx, int end_idx)
21926 tree current = current_template_parms;
21927 int depth = TMPL_PARMS_DEPTH (current);
21928 current = INNERMOST_TEMPLATE_PARMS (current);
21929 tree replacement = make_tree_vec (TREE_VEC_LENGTH (current));
21931 for (int i = 0; i < start_idx; ++i)
21932 TREE_VEC_ELT (replacement, i)
21933 = TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (current, i)));
21935 for (int i = start_idx; i < end_idx; ++i)
21937 /* Create a distinct parameter pack type from the current parm and add it
21938 to the replacement args to tsubst below into the generic function
21939 parameter. */
21941 tree o = TREE_TYPE (TREE_VALUE
21942 (TREE_VEC_ELT (current, i)));
21943 tree t = copy_type (o);
21944 TEMPLATE_TYPE_PARM_INDEX (t)
21945 = reduce_template_parm_level (TEMPLATE_TYPE_PARM_INDEX (o),
21946 o, 0, 0, tf_none);
21947 TREE_TYPE (TEMPLATE_TYPE_DECL (t)) = t;
21948 TYPE_STUB_DECL (t) = TYPE_NAME (t) = TEMPLATE_TYPE_DECL (t);
21949 TYPE_MAIN_VARIANT (t) = t;
21950 TEMPLATE_TYPE_PARAMETER_PACK (t) = true;
21951 TYPE_CANONICAL (t) = canonical_type_parameter (t);
21952 TREE_VEC_ELT (replacement, i) = t;
21953 TREE_VALUE (TREE_VEC_ELT (current, i)) = TREE_CHAIN (t);
21956 for (int i = end_idx, e = TREE_VEC_LENGTH (current); i < e; ++i)
21957 TREE_VEC_ELT (replacement, i)
21958 = TREE_TYPE (TREE_VALUE (TREE_VEC_ELT (current, i)));
21960 /* If there are more levels then build up the replacement with the outer
21961 template parms. */
21962 if (depth > 1)
21963 replacement = add_to_template_args (template_parms_to_args
21964 (TREE_CHAIN (current_template_parms)),
21965 replacement);
21967 return tsubst (parm, replacement, tf_none, NULL_TREE);
21971 /* Set up the hash tables for template instantiations. */
21973 void
21974 init_template_processing (void)
21976 decl_specializations = htab_create_ggc (37,
21977 hash_specialization,
21978 eq_specializations,
21979 ggc_free);
21980 type_specializations = htab_create_ggc (37,
21981 hash_specialization,
21982 eq_specializations,
21983 ggc_free);
21986 /* Print stats about the template hash tables for -fstats. */
21988 void
21989 print_template_statistics (void)
21991 fprintf (stderr, "decl_specializations: size %ld, %ld elements, "
21992 "%f collisions\n", (long) htab_size (decl_specializations),
21993 (long) htab_elements (decl_specializations),
21994 htab_collisions (decl_specializations));
21995 fprintf (stderr, "type_specializations: size %ld, %ld elements, "
21996 "%f collisions\n", (long) htab_size (type_specializations),
21997 (long) htab_elements (type_specializations),
21998 htab_collisions (type_specializations));
22001 #include "gt-cp-pt.h"